From 671d64fe352244374e8aa27186e7b8055446cb6b Mon Sep 17 00:00:00 2001 From: Andre Przywara Date: Mon, 6 Jan 2020 01:29:10 +0000 Subject: sunxi: move CONFIG_SYS_SPI_U_BOOT_OFFS out of defconfig For Allwinner SoCs the CONFIG_SYS_SPI_U_BOOT_OFFS value is not really a board choice: The boot ROM only loads the SPL from offset 0 of the SPI NOR flash, and loads at most 32KB. This is a similar situation as on MMC, so consequently we create our "joint" image (SPL + U-Boot proper) with that 32KB offset during the build. So define the value of this symbol to be 32KB by default for every Allwinner SoC. This removes the definition of this symbol from the _defconfig files, and avoids every board to define this over and over again. Signed-off-by: Andre Przywara Reviewed-by: Jagan Teki --- common/spl/Kconfig | 1 + 1 file changed, 1 insertion(+) (limited to 'common/spl/Kconfig') diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 76f39dc..b03a476 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -1100,6 +1100,7 @@ endif # SPL_SPI_FLASH_SUPPORT config SYS_SPI_U_BOOT_OFFS hex "address of u-boot payload in SPI flash" + default 0x8000 if ARCH_SUNXI default 0x0 depends on SPL_SPI_LOAD || SPL_SPI_SUNXI help -- cgit v1.1