Some boards have only 256MB DRAM, so putting the SPL_BSS at 0x50000000 puts it outside the DRAM, things likely still work because the addresses just wrap, but that makes the BSS conflict with the boot_params memory, potentially breaking falcon boot.
Signed-off-by: Hans de Goede <[email protected]> --- include/configs/sunxi-common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/sunxi-common.h b/include/configs/sunxi-common.h index 8d21119..f8dda7c 100644 --- a/include/configs/sunxi-common.h +++ b/include/configs/sunxi-common.h @@ -289,7 +289,7 @@ #else /* CONFIG_SPL */ -#define CONFIG_SPL_BSS_START_ADDR 0x50000000 +#define CONFIG_SPL_BSS_START_ADDR 0x4ff80000 #define CONFIG_SPL_BSS_MAX_SIZE 0x80000 /* 512 KiB */ #define CONFIG_SPL_TEXT_BASE 0x20 /* sram start+header */ -- 1.9.0 -- You received this message because you are subscribed to the Google Groups "linux-sunxi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
