diff options
Diffstat (limited to 'include/configs/TOP5200.h')
| -rw-r--r-- | include/configs/TOP5200.h | 17 | 
1 files changed, 11 insertions, 6 deletions
| diff --git a/include/configs/TOP5200.h b/include/configs/TOP5200.h index 50197f4c5..ab1773c36 100644 --- a/include/configs/TOP5200.h +++ b/include/configs/TOP5200.h @@ -45,10 +45,15 @@  #define CONFIG_MPC5200		1	/* More exactly a MPC5200 */  #define CONFIG_TOP5200		1	/* ... on TOP5200 board - we need this for FEC.C */ -#define CONFIG_SYS_MPC5XXX_CLKIN	33000000 /* ... running at 33.000000MHz */ +/* + * allowed and functional CONFIG_SYS_TEXT_BASE values: + * 0xff000000	low boot at 0x00000100 (default board setting) + * 0xfff00000	high boot at 0xfff00100 (board needs modification) + * 0x00100000	RAM load and test + */ +#define	CONFIG_SYS_TEXT_BASE	0xff000000 -#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 */ @@ -138,11 +143,11 @@  /*   * MUST be low boot - HIGHBOOT is not supported anymore   */ -#if (TEXT_BASE == 0xFF000000)		/* Boot low with 16 MB Flash */ +#if (CONFIG_SYS_TEXT_BASE == 0xFF000000)		/* Boot low with 16 MB Flash */  #   define CONFIG_SYS_LOWBOOT		1  #   define CONFIG_SYS_LOWBOOT16	1  #else -#   error "TEXT_BASE must be 0xff000000" +#   error "CONFIG_SYS_TEXT_BASE must be 0xff000000"  #endif  /* @@ -299,7 +304,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 |