targets: always use sys_clk_freq on SDRAM modules.
This commit is contained in:
parent
ae6ef923af
commit
930679efd7
|
@ -87,7 +87,7 @@ class BaseSoC(SoCCore):
|
|||
self.submodules.sdrphy = GENSDRPHY(platform.request("sdram"))
|
||||
self.add_sdram("sdram",
|
||||
phy = self.sdrphy,
|
||||
module = IS42S16160(self.clk_freq, "1:1"),
|
||||
module = IS42S16160(sys_clk_freq, "1:1"),
|
||||
origin = self.mem_map["main_ram"],
|
||||
size = kwargs.get("max_sdram_size", 0x40000000),
|
||||
l2_cache_size = kwargs.get("l2_size", 8192),
|
||||
|
|
|
@ -61,7 +61,7 @@ class BaseSoC(SoCCore):
|
|||
self.add_csr("ddrphy")
|
||||
self.add_sdram("sdram",
|
||||
phy = self.ddrphy,
|
||||
module = MT41J256M16(self.clk_freq, "1:4"),
|
||||
module = MT41J256M16(sys_clk_freq, "1:4"),
|
||||
origin = self.mem_map["main_ram"],
|
||||
size = kwargs.get("max_sdram_size", 0x40000000),
|
||||
l2_cache_size = kwargs.get("l2_size", 8192),
|
||||
|
|
Loading…
Reference in New Issue