diff options
author | Reinhard Arlt <reinhard.arlt@esd.eu> | 2010-04-13 09:59:09 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-05-06 00:22:53 +0200 |
commit | 0738e24e2c1d95bb94455d44485dc5d7b9c9d707 (patch) | |
tree | a8c21a257bcca92acb2b06a3e817a85098866e0d /include/configs | |
parent | 1f9f3cf6ccbccae1c1edff01ec20fe2a586b9701 (diff) | |
download | talos-obmc-uboot-0738e24e2c1d95bb94455d44485dc5d7b9c9d707.tar.gz talos-obmc-uboot-0738e24e2c1d95bb94455d44485dc5d7b9c9d707.zip |
74xx_7xx: CPCI750: Add ECC support on esd CPCI-CPU/750 board
Add ECC support for DDR RAM for MV64360 on esd CPCI-CPU/750 board.
This patch also adds the "pldver" command to display the CPLD
revision.
Signed-off-by: Reinhard Arlt <reinhard.arlt@esd.eu>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/CPCI750.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/configs/CPCI750.h b/include/configs/CPCI750.h index d516c3cb81..1c8c68b3e4 100644 --- a/include/configs/CPCI750.h +++ b/include/configs/CPCI750.h @@ -59,7 +59,7 @@ #define CONFIG_BAUDRATE 9600 /* console baudrate = 9600 */ -#undef CONFIG_ECC /* enable ECC support */ +#define CONFIG_MV64360_ECC /* enable ECC support */ #define CONFIG_HIGH_BATS 1 /* High BATs supported */ @@ -628,5 +628,7 @@ #define CONFIG_SYS_BOARD_ASM_INIT 1 #define CPCI750_SLAVE_TEST (((in8(0xf0300000) & 0x80) == 0) ? 0 : 1) +#define CPCI750_ECC_TEST (((in8(0xf0300000) & 0x02) == 0) ? 1 : 0) +#define CONFIG_SYS_PLD_VER 0xf0e00000 #endif /* __CONFIG_H */ |