diff options
| author | Holger Brunck <[email protected]> | 2012-07-25 06:26:03 +0000 |
|---|---|---|
| committer | Prafulla Wadaskar <[email protected]> | 2012-10-03 16:43:13 +0530 |
| commit | 3a5b9fe64949e5cf1dab49db4656096a0d6905cd (patch) | |
| tree | 3b458595cdb0ea6351e757d4f5de7900c7f7c8b0 | |
| parent | b3168f4be86ef02905281ff7531960112e10cc7e (diff) | |
arm/km: use kw_sdram_size_adjust to adjust SDRAM size
Some boards may differ only in the SDRAM size. This function allows to
fix the size accordingly and we can use the same u-boot binary for both
boards.
Signed-off-by: Holger Brunck <[email protected]>
Signed-off-by: Gerlando Falauto <[email protected]>
cc: Prafulla Wadaskar <[email protected]>
cc: Valentin Longchamp <[email protected]>
| -rw-r--r-- | board/keymile/km_arm/km_arm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/board/keymile/km_arm/km_arm.c b/board/keymile/km_arm/km_arm.c index be8f51c2fc4..8b5fc568f4a 100644 --- a/board/keymile/km_arm/km_arm.c +++ b/board/keymile/km_arm/km_arm.c @@ -250,7 +250,8 @@ int board_early_init_f(void) tmp = readl(KW_GPIO0_BASE + 4); writel(tmp & (~KM_KIRKWOOD_SOFT_I2C_GPIOS) , KW_GPIO0_BASE + 4); #endif - + /* adjust SDRAM size for bank 0 */ + kw_sdram_size_adjust(0); kirkwood_mpp_conf(kwmpp_config, NULL); return 0; } |
