diff options
author | york <yorksun@freescale.com> | 2010-07-02 22:25:59 +0000 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2010-08-19 02:06:14 -0500 |
commit | 90870d9846e6a302823712acf6d40f947e60ed75 (patch) | |
tree | 951920838a019cdade7f443a1b46d521efdeee2c /include/configs | |
parent | ed062e0f6c7ee8c56eb096fdd3e01712c53fc2e4 (diff) | |
download | u-boot-imx-90870d9846e6a302823712acf6d40f947e60ed75.zip u-boot-imx-90870d9846e6a302823712acf6d40f947e60ed75.tar.gz u-boot-imx-90870d9846e6a302823712acf6d40f947e60ed75.tar.bz2 |
powerpc/8xxx: Fix quad-rank DIMMs support on corenet_ds board.
The board specific parameters associated with quad rank dimms where
missing. This fixes it so the board will function if quad rank dimms
are placed in it.
Signed-off-by: York Sun <yorksun@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/corenet_ds.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/corenet_ds.h b/include/configs/corenet_ds.h index dd609da..3dcee85 100644 --- a/include/configs/corenet_ds.h +++ b/include/configs/corenet_ds.h @@ -124,7 +124,7 @@ #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE #define CONFIG_DIMM_SLOTS_PER_CTLR 1 -#define CONFIG_CHIP_SELECTS_PER_CTRL (2 * CONFIG_DIMM_SLOTS_PER_CTLR) +#define CONFIG_CHIP_SELECTS_PER_CTRL (4 * CONFIG_DIMM_SLOTS_PER_CTLR) #define CONFIG_DDR_SPD #define CONFIG_FSL_DDR3 |