phy/rpc/arty: Remove calls to add_csrs (No longer required) and fix build.

This commit is contained in:
Florent Kermarrec 2022-04-29 13:13:31 +02:00
parent 9e0d5ca22d
commit b313fe5224
1 changed files with 4 additions and 17 deletions

21
litedram/phy/rpc/arty.py Normal file → Executable file
View File

@ -158,14 +158,11 @@ class BaseSoC(SoCCore):
kwargs["uart_name"] = "crossover" kwargs["uart_name"] = "crossover"
SoCCore.__init__(self, platform, sys_clk_freq, SoCCore.__init__(self, platform, sys_clk_freq,
ident = "LiteX SoC on Arty A7", ident = "LiteX SoC on Arty A7",
ident_version = True,
integrated_rom_mode = "rw", # to allow reloading BIOS integrated_rom_mode = "rw", # to allow reloading BIOS
**kwargs) **kwargs)
# CRG -------------------------------------------------------------------------------------- # CRG --------------------------------------------------------------------------------------
self.submodules.crg = _CRG(platform, sys_clk_freq, dynamic=dynamic_freq) self.submodules.crg = _CRG(platform, sys_clk_freq, dynamic=dynamic_freq)
if dynamic_freq:
self.add_csr("crg")
# DDR3 SDRAM ------------------------------------------------------------------------------- # DDR3 SDRAM -------------------------------------------------------------------------------
if debug_pmod: if debug_pmod:
@ -198,16 +195,10 @@ class BaseSoC(SoCCore):
controller_settings.auto_precharge = False controller_settings.auto_precharge = False
controller_settings.with_refresh = self.ddrphy.refresh_enable.storage controller_settings.with_refresh = self.ddrphy.refresh_enable.storage
self.add_csr("ddrphy")
self.add_sdram("sdram", self.add_sdram("sdram",
phy = self.ddrphy, phy = self.ddrphy,
module = module, module = module,
origin = self.mem_map["main_ram"], controller_settings = controller_settings,
size = kwargs.get("max_sdram_size", 0x40000000),
l2_cache_size = kwargs.get("l2_size", 8192),
l2_cache_min_data_width = kwargs.get("min_l2_data_width", 256),
l2_cache_reverse = True,
controller_settings = controller_settings,
) )
self.add_constant("SET_DDR_VCC_15") self.add_constant("SET_DDR_VCC_15")
@ -227,7 +218,6 @@ class BaseSoC(SoCCore):
self.platform.add_extension(pmic_i2c_io()) self.platform.add_extension(pmic_i2c_io())
# self.submodules.i2c = I2CMaster(platform.request("pmic_i2c"), tristate_scl=True) # self.submodules.i2c = I2CMaster(platform.request("pmic_i2c"), tristate_scl=True)
self.submodules.i2c = I2CMaster(platform.request("pmic_i2c")) self.submodules.i2c = I2CMaster(platform.request("pmic_i2c"))
self.add_csr("i2c")
if dynamic_freq: if dynamic_freq:
# UartBone ----------------------------------------------------------------------------- # UartBone -----------------------------------------------------------------------------
@ -237,14 +227,12 @@ class BaseSoC(SoCCore):
self.submodules.ethphy = LiteEthPHYMII( self.submodules.ethphy = LiteEthPHYMII(
clock_pads = self.platform.request("eth_clocks"), clock_pads = self.platform.request("eth_clocks"),
pads = self.platform.request("eth")) pads = self.platform.request("eth"))
self.add_csr("ethphy")
self.add_etherbone(phy=self.ethphy, ip_address=ip_address) self.add_etherbone(phy=self.ethphy, ip_address=ip_address)
# Leds ------------------------------------------------------------------------------------- # Leds -------------------------------------------------------------------------------------
self.submodules.leds = LedChaser( self.submodules.leds = LedChaser(
pads = Cat(*[platform.request("user_led", i) for i in range(4)]), pads = Cat(*[platform.request("user_led", i) for i in range(4)]),
sys_clk_freq = sys_clk_freq) sys_clk_freq = sys_clk_freq)
self.add_csr("leds")
# Analyzer --------------------------------------------------------------------------------- # Analyzer ---------------------------------------------------------------------------------
@ -281,7 +269,6 @@ class BaseSoC(SoCCore):
register = True, register = True,
clock_domain = "sys", clock_domain = "sys",
csr_csv = "analyzer.csv") csr_csv = "analyzer.csv")
self.add_csr("analyzer")
self.add_constant("SDRAM_DEBUG") self.add_constant("SDRAM_DEBUG")
@ -346,7 +333,7 @@ def main():
soc = BaseSoC(ip_address=args.ip_address, dynamic_freq=args.dynamic_freq, soc = BaseSoC(ip_address=args.ip_address, dynamic_freq=args.dynamic_freq,
debug_pmod=args.debug_pmod, sys_clk_freq=int(float(args.sys_clk_freq)), debug_pmod=args.debug_pmod, sys_clk_freq=int(float(args.sys_clk_freq)),
no_sdram_init=args.no_sdram_init, with_analyzer=not args.no_analyzer, no_sdram_init=args.no_sdram_init, with_analyzer=not args.no_analyzer,
l2_size=args.l2_size, **soc_core_argdict(args)) **soc_core_argdict(args))
assert not (args.with_spi_sdcard and args.with_sdcard) assert not (args.with_spi_sdcard and args.with_sdcard)
soc.platform.add_extension(arty._sdcard_pmod_io) soc.platform.add_extension(arty._sdcard_pmod_io)
if args.with_spi_sdcard: if args.with_spi_sdcard: