summaryrefslogtreecommitdiff
path: root/arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2012-08-18 07:25:25 +0000
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2012-09-01 14:58:27 +0200
commita54535551d7f37054c73c79b6f0417e7e244db89 (patch)
tree2fc508d301b66d4d163d94f51e89326b6133c95c /arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd
parent09bc3d04d95c7a2be965d4f173a5e2946ca903c3 (diff)
downloadu-boot-imx-a54535551d7f37054c73c79b6f0417e7e244db89.zip
u-boot-imx-a54535551d7f37054c73c79b6f0417e7e244db89.tar.gz
u-boot-imx-a54535551d7f37054c73c79b6f0417e7e244db89.tar.bz2
MX28: config: Allow different target generation in elftosb call
The elftosb call needs to use a target param specific for i.MX28. This patch allow for later addition of i.MX233. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd')
-rw-r--r--arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd b/arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd
new file mode 100644
index 0000000..c60615a
--- /dev/null
+++ b/arch/arm/cpu/arm926ejs/mxs/u-boot-imx28.bd
@@ -0,0 +1,14 @@
+sources {
+ u_boot_spl="spl/u-boot-spl.bin";
+ u_boot="u-boot.bin";
+}
+
+section (0) {
+ load u_boot_spl > 0x0000;
+ load ivt (entry = 0x0014) > 0x8000;
+ hab call 0x8000;
+
+ load u_boot > 0x40000100;
+ load ivt (entry = 0x40000100) > 0x8000;
+ hab call 0x8000;
+}