def add_csr_bridge(self, origin):
self.submodules.csr_bridge = wishbone2csr.WB2CSR(
bus_csr = csr_bus.Interface(
- address_width = self.csr.address_width,
- data_width = self.csr.data_width))
+ address_width = self.csr.address_width,
+ data_width = self.csr.data_width))
csr_size = 2**(self.csr.address_width + 2)
csr_region = SoCRegion(origin=origin, size=csr_size, cached=False)
self.bus.add_slave("csr", self.csr_bridge.wishbone, csr_region)
}
def __init__(self, platform, clk_freq,
+ # Bus parameters
+ bus_standard = "wishbone",
+ bus_data_width = 32,
+ bus_address_width = 32,
+ bus_timeout = 1e6,
# CPU parameters
cpu_type = "vexriscv",
cpu_reset_address = None,
with_timer = True,
# Controller parameters
with_ctrl = True,
- # Wishbone parameters
- with_wishbone = True,
- wishbone_timeout_cycles = 1e6,
# Others
**kwargs):
# New LiteXSoC class ----------------------------------------------------------------------------
LiteXSoC.__init__(self, platform, clk_freq,
- bus_standard = "wishbone",
- bus_data_width = 32,
- bus_address_width = 32,
- bus_timeout = wishbone_timeout_cycles,
+ bus_standard = bus_standard,
+ bus_data_width = bus_data_width,
+ bus_address_width = bus_address_width,
+ bus_timeout = bus_timeout,
bus_reserved_regions = {},
csr_data_width = csr_data_width,
cpu_reset_address = None if cpu_reset_address == "None" else cpu_reset_address
cpu_variant = cpu.check_format_cpu_variant(cpu_variant)
- if not with_wishbone:
- self.mem_map["csr"] = 0x00000000
-
self.cpu_type = cpu_type
self.cpu_variant = cpu_variant
self.cpu_cls = cpu_cls
self.csr_data_width = csr_data_width
- self.with_wishbone = with_wishbone
- self.wishbone_timeout_cycles = wishbone_timeout_cycles
-
self.wb_slaves = {}
# Modules instances ------------------------------------------------------------------------
if with_timer:
self.add_timer(name="timer0")
- # Add Wishbone to CSR bridge
- if with_wishbone:
- self.add_csr_bridge(self.mem_map["csr"])
+ # Add CSR bridge
+ self.add_csr_bridge(self.mem_map["csr"])
# Methods --------------------------------------------------------------------------------------