From: Luke Kenneth Casson Leighton Date: Mon, 11 Apr 2022 17:54:32 +0000 (+0100) Subject: too big, shift down to 2MB offset X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=13bc0da2ea9ff11d3a80532d54bfe70798f70508;p=ls2.git too big, shift down to 2MB offset --- diff --git a/src/ls2.py b/src/ls2.py index 332e3d1..af66724 100644 --- a/src/ls2.py +++ b/src/ls2.py @@ -317,8 +317,8 @@ class DDR3SoC(SoC, Elaboratable): self._decoder.add(self.bootmem.bus, addr=fw_addr) # ROM at fw_addr # System Configuration info - # offset executable ELF payload at 6 megabyte offset (6<<20) - spi_offset = 6<<20 if (spi_0_pins is not None) else None + # offset executable ELF payload at 6 megabyte offset (2<<20) + spi_offset = 2<<20 if (spi_0_pins is not None) else None dram_offset = ddr_addr if (ddr_pins is not None) else None self.syscon = MicrowattSYSCON(sys_clk_freq=clk_freq, has_uart=(uart_pins is not None),