diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-02-18 05:26:48 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-03-15 22:14:14 -0400 |
commit | f7ce12cb65a30c6e152eecf26f0304b7d78cf39d (patch) | |
tree | 8e3127b578efdae718284988364f13055debec9a /include/configs/bf533-ezkit.h | |
parent | 86a20fb920bd198105acf7b1191117f566d637ed (diff) | |
download | u-boot-imx-f7ce12cb65a30c6e152eecf26f0304b7d78cf39d.zip u-boot-imx-f7ce12cb65a30c6e152eecf26f0304b7d78cf39d.tar.gz u-boot-imx-f7ce12cb65a30c6e152eecf26f0304b7d78cf39d.tar.bz2 |
Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
Stop tying things to the processor that should be tied to other defines and
change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
system to select the -mcpu option.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/configs/bf533-ezkit.h')
-rw-r--r-- | include/configs/bf533-ezkit.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/configs/bf533-ezkit.h b/include/configs/bf533-ezkit.h index 6cb6bc4..f2c8703 100644 --- a/include/configs/bf533-ezkit.h +++ b/include/configs/bf533-ezkit.h @@ -5,6 +5,8 @@ #ifndef __CONFIG_EZKIT533_H__ #define __CONFIG_EZKIT533_H__ +#include <asm/blackfin-config-pre.h> + #define CONFIG_BAUDRATE 57600 #define CONFIG_STAMP 1 @@ -41,10 +43,7 @@ #define CONFIG_PANIC_HANG 1 -#define ADSP_BF531 0x31 -#define ADSP_BF532 0x32 -#define ADSP_BF533 0x33 -#define BFIN_CPU ADSP_BF533 +#define CONFIG_BFIN_CPU bf533-0.3 /* This sets the default state of the cache on U-Boot's boot */ #define CONFIG_ICACHE_ON @@ -120,7 +119,7 @@ #define CONFIG_BOOTARGS "root=/dev/mtdblock0 ip=192.168.0.15:192.168.0.2:192.168.0.1:255.255.255.0:ezkit:eth0:off console=ttyBF0,57600" -#define CFG_PROMPT "ezkit> " /* Monitor Command Prompt */ +#define CFG_PROMPT "bfin> " /* Monitor Command Prompt */ #if defined(CONFIG_CMD_KGDB) #define CFG_CBSIZE 1024 /* Console I/O Buffer Size */ #else |