integration/soc/add_sdram: Set default l2_cache_reverse value to False.

For correct operation of Framebuffer + CPU writes, l2_cache_reverse has to be
set to False on targets. Set it to False by default in LiteX to avoid this.
This commit is contained in:
Florent Kermarrec 2022-01-18 11:34:12 +01:00
parent b958453105
commit 07c7f664cf
1 changed files with 1 additions and 1 deletions

View File

@ -1262,7 +1262,7 @@ class LiteXSoC(SoC):
def add_sdram(self, name, phy, module, origin=None, size=None, with_bist=False, with_soc_interconnect=True,
l2_cache_size = 8192,
l2_cache_min_data_width = 128,
l2_cache_reverse = True,
l2_cache_reverse = False,
l2_cache_full_memory_we = True,
**kwargs):