summaryrefslogtreecommitdiffstats
path: root/include/configs/mxs.h
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2014-03-05 20:01:13 +0100
committerStefano Babic <sbabic@denx.de>2014-03-31 18:28:50 +0200
commit9c2c8a3129ff357b0bd052e1bc248c4c3368c49c (patch)
treec38ad67e8f7147a6589929ffb3f4dd296544ba52 /include/configs/mxs.h
parent81a1d6173cd255c5c04c332ed69498c6e173515f (diff)
downloadtalos-obmc-uboot-9c2c8a3129ff357b0bd052e1bc248c4c3368c49c.tar.gz
talos-obmc-uboot-9c2c8a3129ff357b0bd052e1bc248c4c3368c49c.zip
arm: mxs: Adjust the load address of U-Boot and SPL for HAB
When using HAB, there are additional special requirements on the placement of U-Boot and the U-Boot SPL in memory. To fullfill these, this patch moves the U-Boot binary a little further from the begining of the DRAM, so the HAB CST and IVT can be placed in front of the U-Boot binary. This is necessary, since both the U-Boot and the IVT must be contained in single CST signature. To make things worse, the IVT must be concatenated with one more entry at it's end, that is the length of the entire CST signature, IVT and U-Boot binary in memory. By placing the blocks in this order -- CST, IVT, U-Boot, we can easily align them all and then produce the length field as needed. As for the SPL, on i.MX23/i.MX28, the SPL size is limited to 32 KiB, thus we place the IVT at 0x8000 offset, CST right past IVT and claim the size is correct. The HAB library accepts this setup. Finally, to make sure the vectoring in SPL still works even after moving the SPL from 0x0 to 0x1000, we add a small function which copies the vectoring code and tables to 0x0. This is fine, since the vectoring code is position independent. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'include/configs/mxs.h')
-rw-r--r--include/configs/mxs.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/configs/mxs.h b/include/configs/mxs.h
index 55ecef92a9..a9f4d894b8 100644
--- a/include/configs/mxs.h
+++ b/include/configs/mxs.h
@@ -80,8 +80,16 @@
* We need to sacrifice first 4 bytes of RAM here to avoid triggering some
* strange BUG in ROM corrupting first 4 bytes of RAM when loading U-Boot
* binary. In case there was more of this mess, 0x100 bytes are skipped.
+ *
+ * In case of a HAB boot, we cannot for some weird reason use the first 4KiB
+ * of DRAM when loading. Moreover, we use the first 4 KiB for IVT and CST
+ * blocks, thus U-Boot starts at offset +8 KiB of DRAM start.
+ *
+ * As for the SPL, we must avoid the first 4 KiB as well, but we load the
+ * IVT and CST to 0x8000, so we don't need to waste the subsequent 4 KiB.
*/
-#define CONFIG_SYS_TEXT_BASE 0x40000100
+#define CONFIG_SYS_TEXT_BASE 0x40002000
+#define CONFIG_SPL_TEXT_BASE 0x00001000
/* U-Boot general configuration */
#define CONFIG_SYS_LONGHELP
OpenPOWER on IntegriCloud