diff options
Diffstat (limited to 'include/configs/Total5200.h')
| -rw-r--r-- | include/configs/Total5200.h | 17 | 
1 files changed, 12 insertions, 5 deletions
| diff --git a/include/configs/Total5200.h b/include/configs/Total5200.h index 7510ab10e..c518d6e74 100644 --- a/include/configs/Total5200.h +++ b/include/configs/Total5200.h @@ -44,10 +44,17 @@  #define CONFIG_MPC5200		1	/* (more precisely a MPC5200 CPU) */  #define CONFIG_TOTAL5200	1	/* ... on Total5200 board */ -#define CONFIG_SYS_MPC5XXX_CLKIN	33000000 /* ... running at 33.000000MHz */ +/* + * Valid values for CONFIG_SYS_TEXT_BASE are: + * 0xFFF00000	boot high (standard configuration) + * 0xFE000000	boot low + * 0x00100000	boot from RAM (for testing only) + */ +#ifndef CONFIG_SYS_TEXT_BASE +#define	CONFIG_SYS_TEXT_BASE	0xFFF00000 +#endif -#define BOOTFLAG_COLD		0x01	/* Normal Power-On: Boot from FLASH  */ -#define BOOTFLAG_WARM		0x02	/* Software reboot	     */ +#define CONFIG_SYS_MPC5XXX_CLKIN	33000000 /* ... running at 33.000000MHz */  #define CONFIG_HIGH_BATS	1	/* High BATs supported */ @@ -132,7 +139,7 @@  #define CONFIG_CMD_USB -#if (TEXT_BASE == 0xFE000000)		/* Boot low */ +#if (CONFIG_SYS_TEXT_BASE == 0xFE000000)		/* Boot low */  #   define CONFIG_SYS_LOWBOOT		1  #endif @@ -245,7 +252,7 @@  #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 -#define CONFIG_SYS_MONITOR_BASE    TEXT_BASE +#define CONFIG_SYS_MONITOR_BASE    CONFIG_SYS_TEXT_BASE  #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)  #   define CONFIG_SYS_RAMBOOT		1  #endif |