targets/digilent_netfpga_sume.py: Limit mapped SDRAM size as on other targets.
This commit is contained in:
parent
223367d6b6
commit
8f1350ec40
|
@ -74,11 +74,12 @@ class BaseSoC(SoCCore):
|
||||||
memtype = "DDR3",
|
memtype = "DDR3",
|
||||||
nphases = 4,
|
nphases = 4,
|
||||||
sys_clk_freq = sys_clk_freq
|
sys_clk_freq = sys_clk_freq
|
||||||
)
|
)
|
||||||
self.add_sdram("sdram",
|
self.add_sdram("sdram",
|
||||||
phy = self.ddrphy,
|
phy = self.ddrphy,
|
||||||
module = MT8KTF51264(sys_clk_freq, "1:4"),
|
module = MT8KTF51264(sys_clk_freq, "1:4"),
|
||||||
l2_cache_size = kwargs.get("l2_size", 8192)
|
size = 0x40000000,
|
||||||
|
l2_cache_size = kwargs.get("l2_size", 8192),
|
||||||
)
|
)
|
||||||
|
|
||||||
# Ethernet / Etherbone ---------------------------------------------------------------------
|
# Ethernet / Etherbone ---------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue