diff options
author | Sandeep Paulraj <s-paulraj@ti.com> | 2010-12-11 20:37:54 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-12-17 10:07:27 +0100 |
commit | f74e142eaa398b0025ccfddebc60a30bc34bcdfd (patch) | |
tree | 941da3fa780f578eb33ed2e4b06abc3ee9770840 /include/configs | |
parent | 39041a40a650e9df0a6cd85b3a6e6747584f727c (diff) | |
download | u-boot-imx-f74e142eaa398b0025ccfddebc60a30bc34bcdfd.zip u-boot-imx-f74e142eaa398b0025ccfddebc60a30bc34bcdfd.tar.gz u-boot-imx-f74e142eaa398b0025ccfddebc60a30bc34bcdfd.tar.bz2 |
DaVinci Sonata: Add ARM Relocation Support
Add ARM Relocation Support
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/davinci_sonata.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/configs/davinci_sonata.h b/include/configs/davinci_sonata.h index 1059ebe..ebfdafa 100644 --- a/include/configs/davinci_sonata.h +++ b/include/configs/davinci_sonata.h @@ -198,4 +198,13 @@ #else #error "Either CONFIG_SYS_USE_NAND or CONFIG_SYS_USE_NOR _MUST_ be defined !!!" #endif + +#define CONFIG_MAX_RAM_BANK_SIZE (256 << 20) /* 256 MB */ + +#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 +#define CONFIG_SYS_INIT_RAM_SIZE 0x1000 +#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \ + CONFIG_SYS_INIT_RAM_SIZE - \ + GENERATED_GBL_DATA_SIZE) + #endif /* __CONFIG_H */ |