Skip to content
Snippets Groups Projects
Commit a5fbe742 authored by Valentin Longchamp's avatar Valentin Longchamp Committed by York Sun
Browse files

mpc85xx/kmp204x: raise u-boot size to 768KB


Until now this defined to be 512KB and the total binary size actually
was on the edge of this limit. Most of the powerpc boards have thus
moved to 768KB.

Since on the current kmp204x boards there is 1MB reserved for u-boot on
the SPI boot flash, there is no problem to set the limit to 768KB as
well to be on line with the other powerpc boards and to eventually
configure in some additional features (and binary size) to u-boot.

Signed-off-by: default avatarValentin Longchamp <valentin.longchamp@keymile.com>
Reviewed-by: default avatarYork Sun <yorksun@freescale.com>
parent 0d485b90
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
#define CONFIG_PHYS_64BIT #define CONFIG_PHYS_64BIT
#define CONFIG_PPC_P2041 #define CONFIG_PPC_P2041
#define CONFIG_SYS_TEXT_BASE 0xfff80000 #define CONFIG_SYS_TEXT_BASE 0xfff40000
#define CONFIG_KM_DEF_NETDEV "netdev=eth0\0" #define CONFIG_KM_DEF_NETDEV "netdev=eth0\0"
...@@ -235,7 +235,7 @@ unsigned long get_board_sys_clk(unsigned long dummy); ...@@ -235,7 +235,7 @@ unsigned long get_board_sys_clk(unsigned long dummy);
#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
#define CONFIG_SYS_MONITOR_LEN (512 * 1024) #define CONFIG_SYS_MONITOR_LEN (768 * 1024)
#define CONFIG_SYS_MALLOC_LEN (1024 * 1024) #define CONFIG_SYS_MALLOC_LEN (1024 * 1024)
/* Serial Port - controlled on board with jumper J8 /* Serial Port - controlled on board with jumper J8
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment