diff options
author | York Sun <yorksun@freescale.com> | 2015-08-17 13:31:51 -0700 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2015-09-01 20:42:54 -0500 |
commit | b3142e2cf82ab207a88868264d709a40e83f065e (patch) | |
tree | ca931aa2068430211f8055c2df2e79f8c90117e9 /include/configs/T208xRDB.h | |
parent | 293194c8bef96bf09f23f8412e8aba673d87fdfd (diff) | |
download | u-boot-b3142e2cf82ab207a88868264d709a40e83f065e.tar.gz |
powerpc: configs: Fix init_ram physical address for several boards
For e6500 and e5500 SoCs, it was intended to put init_ram address in
ccsr reserved space. It is no longer true since SerDes module took the
space. Move it to another reserved space at CCSR + 0x03c000.
Signed-off-by: York Sun <yorksun@freescale.com>
Diffstat (limited to 'include/configs/T208xRDB.h')
-rw-r--r-- | include/configs/T208xRDB.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/T208xRDB.h b/include/configs/T208xRDB.h index b0d8399fdd..ef42b88854 100644 --- a/include/configs/T208xRDB.h +++ b/include/configs/T208xRDB.h @@ -390,7 +390,7 @@ unsigned long get_board_ddr_clk(void); #define CONFIG_SYS_INIT_RAM_LOCK #define CONFIG_SYS_INIT_RAM_ADDR 0xfdd00000 /* Initial L1 address */ #define CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH 0xf -#define CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW 0xfe0ec000 +#define CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW 0xfe03c000 /* The assembler doesn't like typecast */ #define CONFIG_SYS_INIT_RAM_ADDR_PHYS \ ((CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH * 1ull << 32) | \ |