diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2010-10-03 01:05:55 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-10-19 23:05:09 +0200 |
commit | 20ae5193e325ad005ca9e15377838e0763069658 (patch) | |
tree | 69b58544ce58de4073edf928177dcf6a4a79415d /include/configs/balloon3.h | |
parent | 24e84c3dcbfc732888fecc502b7b560b4e372876 (diff) |
PXA: Fix Balloon3 for Reloc
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Diffstat (limited to 'include/configs/balloon3.h')
-rw-r--r-- | include/configs/balloon3.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/configs/balloon3.h b/include/configs/balloon3.h index 5e2a2851f12..ae60f2eb3c1 100644 --- a/include/configs/balloon3.h +++ b/include/configs/balloon3.h @@ -34,18 +34,19 @@ #define CONFIG_ENV_OVERWRITE #define CONFIG_SYS_MALLOC_LEN (128*1024) #define CONFIG_SYS_GBL_DATA_SIZE 128 - +#define CONFIG_ARCH_CPU_INIT #define CONFIG_BOOTCOMMAND \ + "fpga load 0x0 0x50000 0x62638; " \ "if usb reset && fatload usb 0 0xa4000000 uImage; then " \ "bootm 0xa4000000; " \ "fi; " \ - "bootm 0x40000;" + "bootm 0xd0000;" #define CONFIG_BOOTARGS "console=tty0 console=ttyS2,115200" #define CONFIG_TIMESTAMP #define CONFIG_BOOTDELAY 2 /* Autoboot delay */ #define CONFIG_CMDLINE_TAG #define CONFIG_SETUP_MEMORY_TAGS - +#define CONFIG_SYS_TEXT_BASE 0x0 #define CONFIG_LZMA /* LZMA compression support */ /* @@ -131,7 +132,8 @@ #define CONFIG_SYS_LOAD_ADDR 0xa1000000 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 -#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_GBL_DATA_SIZE + PHYS_SDRAM_1) +#define CONFIG_SYS_INIT_SP_ADDR \ + (PHYS_SDRAM_1 + CONFIG_SYS_GBL_DATA_SIZE + 2048) /* * NOR FLASH |