summaryrefslogtreecommitdiff
path: root/board/bluegiga/apx4devkit/u-boot.bd
diff options
context:
space:
mode:
authorVeli-Pekka Peltola <veli-pekka.peltola@bluegiga.com>2012-07-09 03:14:50 +0000
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>2012-09-01 14:58:16 +0200
commitc1393bb3def33b8ec154e4b6f06ed1ad81e052a1 (patch)
treefd77728fff9b67a7631b1f85ec5cef31e2d52187 /board/bluegiga/apx4devkit/u-boot.bd
parentb0261b121238c00be9793f9527e823f37025dea7 (diff)
downloadu-boot-imx-c1393bb3def33b8ec154e4b6f06ed1ad81e052a1.zip
u-boot-imx-c1393bb3def33b8ec154e4b6f06ed1ad81e052a1.tar.gz
u-boot-imx-c1393bb3def33b8ec154e4b6f06ed1ad81e052a1.tar.bz2
Add support for Bluegiga APX4 Development Kit
This adds support for Bluegiga APX4 Development Kit. It is built around Freescale i.MX28. Currently supported features are: ethernet, I2C, MMC, RTC and USB. APX4 has only one ethernet port. Signed-off-by: Veli-Pekka Peltola <veli-pekka.peltola@bluegiga.com> Signed-off-by: Lauri Hintsala <lauri.hintsala@bluegiga.com> Cc: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'board/bluegiga/apx4devkit/u-boot.bd')
-rw-r--r--board/bluegiga/apx4devkit/u-boot.bd14
1 files changed, 14 insertions, 0 deletions
diff --git a/board/bluegiga/apx4devkit/u-boot.bd b/board/bluegiga/apx4devkit/u-boot.bd
new file mode 100644
index 0000000..c60615a
--- /dev/null
+++ b/board/bluegiga/apx4devkit/u-boot.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;
+}