diff options
author | Stefan Roese <sr@denx.de> | 2009-08-17 16:57:53 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2009-08-18 09:16:33 +0200 |
commit | 514bab6609acd1a2a19fdd75c2f6255178db7c96 (patch) | |
tree | 3865a6578ec15d52d075fbb9db7824aa10d5538d /include/configs/canyonlands.h | |
parent | 7dedefdf749ff02c1086f7ddb8cb83a77b00d030 (diff) | |
download | u-boot-514bab6609acd1a2a19fdd75c2f6255178db7c96.tar.gz |
ppc4xx: Fix "chip_config" command for AMCC Arches
This patch fixes the "chip_config" command for I2C bootstrap EEPROM
configuration. First it changes the I2C bootstrap EEPROM address to
0x54 as this is used on Arches (instead of 0x52 on Canyonlands/
Glacier). Additionally, the NAND bootstrap settings are removed
for Arches since Arches doesn't support NAND-booting.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/configs/canyonlands.h')
-rw-r--r-- | include/configs/canyonlands.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/configs/canyonlands.h b/include/configs/canyonlands.h index 217a8ee009..3dddccfe7e 100644 --- a/include/configs/canyonlands.h +++ b/include/configs/canyonlands.h @@ -331,7 +331,11 @@ #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 10 /* I2C bootstrap EEPROM */ +#if defined(CONFIG_ARCHES) +#define CONFIG_4xx_CONFIG_I2C_EEPROM_ADDR 0x54 +#else #define CONFIG_4xx_CONFIG_I2C_EEPROM_ADDR 0x52 +#endif #define CONFIG_4xx_CONFIG_I2C_EEPROM_OFFSET 0 #define CONFIG_4xx_CONFIG_BLOCKSIZE 16 |