diff options
author | Jens Scharsig <js_at_ng@scharsoft.de> | 2010-02-03 22:47:35 +0100 |
---|---|---|
committer | Tom Rix <Tom.Rix@windriver.com> | 2010-02-12 12:31:55 -0600 |
commit | 98250e8e17fc76b3981708c6e63d41f875bf0359 (patch) | |
tree | 65125964ebf59637e493f173b64e06587d365eee /cpu/arm920t/cpu.c | |
parent | 1b34f00c28a3023693d9b31e7bd1a9212af8352f (diff) | |
download | u-boot-imx-98250e8e17fc76b3981708c6e63d41f875bf0359.zip u-boot-imx-98250e8e17fc76b3981708c6e63d41f875bf0359.tar.gz u-boot-imx-98250e8e17fc76b3981708c6e63d41f875bf0359.tar.bz2 |
prepare joining at91rm9200 into at91
* prepare joining at91 and at91rm9200
* add modified copy of soc files to cpu/arm920t/at91 to make
possible to compile at91rm9200 boards in at91 tree instead
of at91rm9200
* add header files with c structure defs for AT91 MC, ST and TC
* the new cpu files are using at91 c structure soc access
* please read README.soc-at91 for details
Signed-off-by: Jens Scharsig <js_at_ng@scharsoft.de>
Diffstat (limited to 'cpu/arm920t/cpu.c')
-rw-r--r-- | cpu/arm920t/cpu.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpu/arm920t/cpu.c b/cpu/arm920t/cpu.c index 34adb11..be82c87 100644 --- a/cpu/arm920t/cpu.c +++ b/cpu/arm920t/cpu.c @@ -33,6 +33,10 @@ #include <command.h> #include <asm/system.h> +#ifdef CONFIG_AT91_LEGACY +#warning Your board is using legacy AT91RM9200 SoC access. Please update! +#endif + static void cache_flush(void); int cleanup_before_linux (void) |