colorlight_5a_75x: Disable full_memory_we for l2 cache by default
Leads to an increase in DP16KD, first noticed in https://github.com/enjoy-digital/liteeth/issues/70. With full_mem_we: ``` Info: DP16KD: 41/ 56 73% ``` Without: ``` Info: DP16KD: 29/ 56 51% ```
This commit is contained in:
parent
4d20cfe5cd
commit
9f5e8d4864
|
@ -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 ---------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue