mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-17 23:37:01 +00:00
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>
This commit is contained in:
parent
40ad4c4b1f
commit
5e165b258f
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue