boards/targets/sim: desactivate refresh for simulation

This commit is contained in:
Florent Kermarrec 2016-06-20 16:00:19 +02:00
parent f193873bb8
commit 3bb2bc35e2
1 changed files with 3 additions and 1 deletions

View File

@ -15,6 +15,7 @@ from litex.soc.integration.soc_core import mem_decoder
from litedram.common import PhySettings
from litedram.modules import IS42S16160
from litedram.phy.model import SDRAMPHYModel
from litedram.core.controller import ControllerSettings
from liteeth.phy.model import LiteEthPHYModel
from liteeth.core.mac import LiteEthMAC
@ -49,7 +50,8 @@ class BaseSoC(SoCSDRAM):
self.submodules.sdrphy = SDRAMPHYModel(sdram_module, phy_settings)
self.register_sdram(self.sdrphy,
sdram_module.geom_settings,
sdram_module.timing_settings)
sdram_module.timing_settings,
ControllerSettings(with_refresh=False))
# reduce memtest size to speed up simulation
self.add_constant("MEMTEST_DATA_SIZE", 8*1024)
self.add_constant("MEMTEST_ADDR_SIZE", 8*1024)