Merge pull request #250 from david-sawatzke/fullmemwe

colorlight_5a_75x: Disable full_memory_we for l2 cache by default
This commit is contained in:
enjoy-digital 2021-08-11 09:53:47 +02:00 committed by GitHub
commit b77b1514ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -154,7 +154,9 @@ class BaseSoC(SoCCore):
self.add_sdram("sdram",
phy = self.sdrphy,
module = sdram_cls(sys_clk_freq, sdram_rate),
l2_cache_size = kwargs.get("l2_size", 8192)
l2_cache_size = kwargs.get("l2_size", 8192),
l2_cache_full_memory_we = False,
)
# Ethernet / Etherbone ---------------------------------------------------------------------