Skip to content

Commit

Permalink
targets/digilent_netfpga_sume.py: Limit mapped SDRAM size as on other…
Browse files Browse the repository at this point in the history
… targets.
  • Loading branch information
enjoy-digital committed Sep 20, 2024
1 parent 223367d commit 8f1350e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions litex_boards/targets/digilent_netfpga_sume.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,12 @@ def __init__(self, sys_clk_freq=125e6,
memtype = "DDR3",
nphases = 4,
sys_clk_freq = sys_clk_freq
)
)
self.add_sdram("sdram",
phy = self.ddrphy,
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 ---------------------------------------------------------------------
Expand Down

0 comments on commit 8f1350e

Please sign in to comment.