diff options
| author | Sandeep Paulraj <s-paulraj@ti.com> | 2010-12-11 20:38:12 -0500 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-12-17 10:07:35 +0100 | 
| commit | ebc3c6cfe69883a55aa2ffaa6106a955da32d31f (patch) | |
| tree | 2b173e9202c850066f7e9916c018217318714a08 | |
| parent | f74e142eaa398b0025ccfddebc60a30bc34bcdfd (diff) | |
| download | olio-uboot-2014.01-ebc3c6cfe69883a55aa2ffaa6106a955da32d31f.tar.xz olio-uboot-2014.01-ebc3c6cfe69883a55aa2ffaa6106a955da32d31f.zip | |
DaVinci sffsdr: Add ARM Relocation Support
Add ARM Relocation Support
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
| -rw-r--r-- | include/configs/davinci_sffsdr.h | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/include/configs/davinci_sffsdr.h b/include/configs/davinci_sffsdr.h index 336d606a0..307b9f274 100644 --- a/include/configs/davinci_sffsdr.h +++ b/include/configs/davinci_sffsdr.h @@ -143,4 +143,13 @@  #undef CONFIG_CMD_SETGETDCR  #undef CONFIG_CMD_FLASH  #undef CONFIG_CMD_IMLS + +#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 */ |