summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStefan Herbrechtsmeier <[email protected]>2022-06-07 09:43:14 +0200
committerMichal Simek <[email protected]>2022-06-24 14:11:06 +0200
commitff5d9065ed58718283b10ae229043bde8fa9c4f3 (patch)
tree83e3bbb2765ed1542944410a07030697dd16f9c2 /include
parentbaba22addd2c08789325f798a22c2b568538cacb (diff)
xilinx: zynqmp: Do not use 0 as spl bss start address
Do not use 0 as address for memory because of the special meaning for pointers (null pointer). Change the spl bss start address to the second page. Signed-off-by: Stefan Herbrechtsmeier <[email protected]> Link: https://lore.kernel.org/r/20220607074314.27125-1-stefan.herbrechtsmeier-oss@weidmueller.com Signed-off-by: Michal Simek <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/configs/xilinx_zynqmp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/xilinx_zynqmp.h b/include/configs/xilinx_zynqmp.h
index f25d796a1e7..21a5cf1617b 100644
--- a/include/configs/xilinx_zynqmp.h
+++ b/include/configs/xilinx_zynqmp.h
@@ -209,7 +209,7 @@
#define CONFIG_SPL_MAX_SIZE 0x40000
/* Just random location in OCM */
-#define CONFIG_SPL_BSS_START_ADDR 0x0
+#define CONFIG_SPL_BSS_START_ADDR 0x1000
#define CONFIG_SPL_BSS_MAX_SIZE 0x80000
#if defined(CONFIG_SPL_SPI_FLASH_SUPPORT)