diff options
author | Ulf Samuelsson <ulf@atmel.com> | 2009-03-27 23:26:43 +0100 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-04-04 20:42:20 +0200 |
commit | cb82a532669f6b02225ec3429ea4d49ff2b97d0a (patch) | |
tree | 3b08f9ce44bac5fcee84ffd44ea1dfb0c16580e4 /cpu/arm920t/start.S | |
parent | b9c0e4c29e3ec12668ac50e954e7c9ba8f7aa10a (diff) | |
download | u-boot-imx-cb82a532669f6b02225ec3429ea4d49ff2b97d0a.zip u-boot-imx-cb82a532669f6b02225ec3429ea4d49ff2b97d0a.tar.gz u-boot-imx-cb82a532669f6b02225ec3429ea4d49ff2b97d0a.tar.bz2 |
Add support for the AT91RM9200EK Board.
The AT91RM9200-EK Evaluation Board supports the AT91RM9200
ARM9-based 32-bit RISC microcontroller and enables real-time code development
and evaluation.
Here is the chip page on Atmel website:
http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507
with
- NOR (cfi driver)
- DataFlash
- USB OHCI
- Net
- I2C (hard)
Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'cpu/arm920t/start.S')
-rw-r--r-- | cpu/arm920t/start.S | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cpu/arm920t/start.S b/cpu/arm920t/start.S index fbcfe6d..f610e9f 100644 --- a/cpu/arm920t/start.S +++ b/cpu/arm920t/start.S @@ -258,11 +258,9 @@ cpu_init_crit: * find a lowlevel_init.S in your board directory. */ mov ip, lr -#if defined(CONFIG_AT91RM9200EK) -#else bl lowlevel_init -#endif + mov lr, ip mov pc, lr #endif /* CONFIG_SKIP_LOWLEVEL_INIT */ |