diff options
author | Fabio Estevam <festevam@gmail.com> | 2011-06-11 15:16:11 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-06-21 22:26:21 +0200 |
commit | 953ee4d09e62cd3c0f7a0916187963ad9e3a8b91 (patch) | |
tree | 6a1a206f4853a0a111821a61f1e2510d592c1c29 /include | |
parent | e845f9006a617eb4449e7dea9fd7493438db804e (diff) | |
download | talos-obmc-uboot-953ee4d09e62cd3c0f7a0916187963ad9e3a8b91.tar.gz talos-obmc-uboot-953ee4d09e62cd3c0f7a0916187963ad9e3a8b91.zip |
imx31_phycore: Fix build by using new relocation scheme
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/imx31_phycore.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/configs/imx31_phycore.h b/include/configs/imx31_phycore.h index 4d11f97d6f..a0c0f1b4a1 100644 --- a/include/configs/imx31_phycore.h +++ b/include/configs/imx31_phycore.h @@ -28,6 +28,8 @@ #ifndef __CONFIG_H #define __CONFIG_H +#include <asm/arch/imx-regs.h> + /* High Level Configuration Options */ #define CONFIG_ARM1136 1 /* This is an arm1136 CPU core */ #define CONFIG_MX31 1 /* in a mx31 */ @@ -143,6 +145,16 @@ #define CONFIG_NR_DRAM_BANKS 1 #define PHYS_SDRAM_1 0x80000000 #define PHYS_SDRAM_1_SIZE (128 * 1024 * 1024) +#define CONFIG_BOARD_EARLY_INIT_F +#define CONFIG_SYS_TEXT_BASE 0xA0000000 + +#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 +#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR +#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE +#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - \ + GENERATED_GBL_DATA_SIZE) +#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \ + CONFIG_SYS_GBL_DATA_OFFSET) /*----------------------------------------------------------------------- * FLASH and environment organization |