diff options
Diffstat (limited to 'include/configs/CRAYL1.h')
| -rw-r--r-- | include/configs/CRAYL1.h | 17 | 
1 files changed, 8 insertions, 9 deletions
| diff --git a/include/configs/CRAYL1.h b/include/configs/CRAYL1.h index f6cd76081..6ababa1c5 100644 --- a/include/configs/CRAYL1.h +++ b/include/configs/CRAYL1.h @@ -36,6 +36,13 @@  #define CONFIG_405GP		1	/* This is a PPC405 CPU	*/  #define CONFIG_4xx		    1   /* ...member of PPC405 family */ + +/* + * Note: I make an "image" from U-Boot itself, which prefixes 0x40 + * bytes of header info, hence start address is thus shifted. + */ +#define	CONFIG_SYS_TEXT_BASE	0xFFFD0040 +  #define CONFIG_SYS_CLK_FREQ 25000000  #define CONFIG_BAUDRATE		9600  #define CONFIG_BOOTDELAY	5	/* autoboot after 5 seconds	*/ @@ -159,7 +166,7 @@   */  #define CONFIG_SYS_SDRAM_BASE		0x00000000  #define CONFIG_SYS_FLASH_BASE		0xFFC00000 -#define CONFIG_SYS_MONITOR_BASE	TEXT_BASE +#define CONFIG_SYS_MONITOR_BASE	CONFIG_SYS_TEXT_BASE  #define CONFIG_SYS_MONITOR_LEN		(192 * 1024)	/* Reserve 192 kB for Monitor	*/ @@ -241,12 +248,4 @@  #define EEPROM_WRITE_ADDRESS 0xA0  #define EEPROM_READ_ADDRESS  0xA1 -/* - * Internal Definitions - * - * Boot Flags - */ -#define BOOTFLAG_COLD	0x01		/* Normal Power-On: Boot from FLASH	*/ -#define BOOTFLAG_WARM	0x02		/* Software reboot			*/ -  #endif	/* __CONFIG_H */ |