diff options
Diffstat (limited to 'include/configs/CANBT.h')
| -rw-r--r-- | include/configs/CANBT.h | 15 | 
1 files changed, 4 insertions, 11 deletions
| diff --git a/include/configs/CANBT.h b/include/configs/CANBT.h index ad075b80b..9c55805f1 100644 --- a/include/configs/CANBT.h +++ b/include/configs/CANBT.h @@ -37,6 +37,8 @@  #define CONFIG_4xx		1	/* ...member of PPC4xx family	*/  #define CONFIG_CANBT		1	/* ...on a CANBT board		*/ +#define	CONFIG_SYS_TEXT_BASE	0xFFFC0000 +  #define CONFIG_BOARD_EARLY_INIT_F 1	/* call board_early_init_f()	*/  #define CONFIG_SYS_CLK_FREQ	25000000 /* external frequency to pll	*/ @@ -127,8 +129,8 @@   */  #define CONFIG_SYS_SDRAM_BASE		0x00000000  #define CONFIG_SYS_FLASH_BASE		CONFIG_SYS_MONITOR_BASE -#define CONFIG_SYS_MONITOR_BASE		TEXT_BASE -#define CONFIG_SYS_MONITOR_LEN		(~(TEXT_BASE) + 1) +#define CONFIG_SYS_MONITOR_BASE		CONFIG_SYS_TEXT_BASE +#define CONFIG_SYS_MONITOR_LEN		(~(CONFIG_SYS_TEXT_BASE) + 1)  #define CONFIG_SYS_MALLOC_LEN		(128 * 1024)	/* Reserve 128 kB for malloc()	*/  /* @@ -226,13 +228,4 @@  #define CONFIG_SYS_GBL_DATA_OFFSET	(CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)  #define CONFIG_SYS_INIT_SP_OFFSET	CONFIG_SYS_GBL_DATA_OFFSET - -/* - * Internal Definitions - * - * Boot Flags - */ -#define BOOTFLAG_COLD	0x01		/* Normal Power-On: Boot from FLASH	*/ -#define BOOTFLAG_WARM	0x02		/* Software reboot			*/ -  #endif	/* __CONFIG_H */ |