tec0117: disable BIOS XIP from SPI Flash for now since not working (SPÏ Flash set to power down mode with bitstream?).

This commit is contained in:
Florent Kermarrec 2021-02-01 13:18:16 +01:00
parent 6cce07d9db
commit 538878ce13
1 changed files with 6 additions and 5 deletions

View File

@ -53,11 +53,12 @@ class BaseSoC(SoCCore):
self.add_spi_flash(mode="1x", dummy_cycles=8)
# Add ROM linker region --------------------------------------------------------------------
self.bus.add_region("rom", SoCRegion(
origin = self.mem_map["spiflash"] + bios_flash_offset,
size = 8*mB,
linker = True)
)
# FIXME: SPI Flash does not seem responding, power down set after loading bitstream?
#self.bus.add_region("rom", SoCRegion(
# origin = self.mem_map["spiflash"] + bios_flash_offset,
# size = 32*kB,
# linker = True)
#)
# SDR SDRAM (WIP) --------------------------------------------------------------------------
if with_sdram: