Skip to content
Snippets Groups Projects
Commit 1c69a51c authored by Alison Wang's avatar Alison Wang Committed by York Sun
Browse files

arm: ls102xa: Adjust the load address of U-Boot for NOR boot


The original load address of U-Boot is 0x67f80000. The address
space of NOR flash is 0x60000000 to 0x67ffffff. It will cause
the size of u-boot couldn't be larger than 512K. As more features
are supported in u-boot, the size of u-boot is larger than 512K.

To fix this issue, the load address of U-Boot for NOR boot is
adjusted to 0x60100000.

In RCW, the PBI command needs to change as follows:
 .pbi
-write 0xee0200, 0x67f80000
+write 0xee0200, 0x60100000
 .end

Signed-off-by: default avatarAlison Wang <alison.wang@freescale.com>
Reviewed-by: default avatarYork Sun <yorksun@freescale.com>
parent 0e6b7a28
Branches
Tags
No related merge requests found
...@@ -124,7 +124,7 @@ unsigned long get_board_ddr_clk(void); ...@@ -124,7 +124,7 @@ unsigned long get_board_ddr_clk(void);
#endif #endif
#ifndef CONFIG_SYS_TEXT_BASE #ifndef CONFIG_SYS_TEXT_BASE
#define CONFIG_SYS_TEXT_BASE 0x67f80000 #define CONFIG_SYS_TEXT_BASE 0x60100000
#endif #endif
#define CONFIG_NR_DRAM_BANKS 1 #define CONFIG_NR_DRAM_BANKS 1
......
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
#endif #endif
#ifndef CONFIG_SYS_TEXT_BASE #ifndef CONFIG_SYS_TEXT_BASE
#define CONFIG_SYS_TEXT_BASE 0x67f80000 #define CONFIG_SYS_TEXT_BASE 0x60100000
#endif #endif
#define CONFIG_NR_DRAM_BANKS 1 #define CONFIG_NR_DRAM_BANKS 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment