summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2015-01-06 14:18:57 +0900
committerMasahiro Yamada <yamada.m@jp.panasonic.com>2015-01-08 23:01:21 +0900
commit5e165b258f4231d8f9d07e773f19aaa57587f45a (patch)
tree35f96d788a0ed6f1a2accc8ff31d3188fe0f3db7 /arch
parent40ad4c4b1fea2497bc019ee82163b76d4b076730 (diff)
downloadtalos-obmc-uboot-5e165b258f4231d8f9d07e773f19aaa57587f45a.tar.gz
talos-obmc-uboot-5e165b258f4231d8f9d07e773f19aaa57587f45a.zip
ARM: UniPhier: fix SRAM size on support card
The max size of available memories on slot0 and slot1 is 32MB because - EA[25] signal is not output on the save-pin mode which is used PH1-LD4 or later SoCs. - EA[25] signal is not connected by the limitation (or bug?) of the PLD logic of DCC support card. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/cpu/armv7/uniphier/support_card.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/cpu/armv7/uniphier/support_card.c b/arch/arm/cpu/armv7/uniphier/support_card.c
index 419012e1ab..443224c451 100644
--- a/arch/arm/cpu/armv7/uniphier/support_card.c
+++ b/arch/arm/cpu/armv7/uniphier/support_card.c
@@ -160,12 +160,12 @@ static const struct memory_bank memory_banks_boot_swap_on[] = {
#if defined(CONFIG_DCC_MICRO_SUPPORT_CARD)
static const struct memory_bank memory_banks_boot_swap_off[] = {
- {0x04000000, 0x04000000},
+ {0x04000000, 0x02000000},
};
static const struct memory_bank memory_banks_boot_swap_on[] = {
- {0x00000000, 0x04000000},
- {0x04000000, 0x04000000},
+ {0x00000000, 0x02000000},
+ {0x04000000, 0x02000000},
};
#endif
OpenPOWER on IntegriCloud