diff options
author | Fabio Estevam <festevam@gmail.com> | 2011-12-20 05:46:34 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-01-16 08:40:09 +0100 |
commit | 29f75a5ce5800cf39d29e7669b27e6deb4038f28 (patch) | |
tree | 14280036da7683edca3615058e28f93cec29a54d /board/freescale/mx28evk/u-boot.bd | |
parent | 5bcc6a8901020ce22a996ef438cfc7be7a0c3995 (diff) | |
download | u-boot-imx-29f75a5ce5800cf39d29e7669b27e6deb4038f28.zip u-boot-imx-29f75a5ce5800cf39d29e7669b27e6deb4038f28.tar.gz u-boot-imx-29f75a5ce5800cf39d29e7669b27e6deb4038f28.tar.bz2 |
mx28evk: Add initial support for MX28EVK board
Add initial support for Freescale MX28EVK board.
Tested boot via SD card and by loading a kernel via TFTP through
the FEC interface.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Marek Vasut <marek.vasut@gmail.com>
Acked-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'board/freescale/mx28evk/u-boot.bd')
-rw-r--r-- | board/freescale/mx28evk/u-boot.bd | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/board/freescale/mx28evk/u-boot.bd b/board/freescale/mx28evk/u-boot.bd new file mode 100644 index 0000000..c60615a --- /dev/null +++ b/board/freescale/mx28evk/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; +} |