diff options
| author | Asen Dimov <dimov@ronetix.at> | 2010-12-12 12:41:30 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2010-12-16 22:46:05 +0100 | 
| commit | 4f81bf4368ced9b0469e1b387637d01cc510dba6 (patch) | |
| tree | 48955d2ded6ddd72c91cb84bd326b8544f6f05b9 | |
| parent | 6e110d295f70cc0821eedcce2adc67dd0f15d5f6 (diff) | |
| download | olio-uboot-2014.01-4f81bf4368ced9b0469e1b387637d01cc510dba6.tar.xz olio-uboot-2014.01-4f81bf4368ced9b0469e1b387637d01cc510dba6.zip | |
pm9261: ARM relocation support
Signed-off-by: Asen Dimov <dimov@ronetix.at>
| -rw-r--r-- | board/ronetix/pm9261/config.mk | 1 | ||||
| -rw-r--r-- | board/ronetix/pm9261/pm9261.c | 9 | ||||
| -rw-r--r-- | include/configs/pm9261.h | 6 | 
3 files changed, 14 insertions, 2 deletions
| diff --git a/board/ronetix/pm9261/config.mk b/board/ronetix/pm9261/config.mk deleted file mode 100644 index 975522a89..000000000 --- a/board/ronetix/pm9261/config.mk +++ /dev/null @@ -1 +0,0 @@ -CONFIG_SYS_TEXT_BASE = 0x23f00000
\ No newline at end of file diff --git a/board/ronetix/pm9261/pm9261.c b/board/ronetix/pm9261/pm9261.c index 53d8c4828..e0f44ddd1 100644 --- a/board/ronetix/pm9261/pm9261.c +++ b/board/ronetix/pm9261/pm9261.c @@ -281,9 +281,16 @@ int board_eth_init(bd_t *bis)  int dram_init(void)  { +	/* dram_init must store complete ramsize in gd->ram_size */ +	gd->ram_size = get_ram_size((volatile void *)PHYS_SDRAM, +				PHYS_SDRAM_SIZE); +	return 0; +} + +void dram_init_banksize(void) +{  	gd->bd->bi_dram[0].start = PHYS_SDRAM;  	gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE; -	return 0;  }  #ifdef CONFIG_RESET_PHY_R diff --git a/include/configs/pm9261.h b/include/configs/pm9261.h index 7fcc9babd..c7f0be91f 100644 --- a/include/configs/pm9261.h +++ b/include/configs/pm9261.h @@ -45,6 +45,8 @@  #define CONFIG_PM9261		1	/* on a Ronetix PM9261 Board	*/  #define CONFIG_ARCH_CPU_INIT  #undef CONFIG_USE_IRQ			/* we don't need IRQ/FIQ stuff	*/ +#define CONFIG_SYS_TEXT_BASE	0 +#define CONFIG_AT91FAMILY  /* clocks */  /* CKGR_MOR - enable main osc. */ @@ -370,6 +372,10 @@  #define CONFIG_SYS_MALLOC_LEN		\  		ROUND(3 * CONFIG_ENV_SIZE + 128 * 1024, 0x1000) +#define CONFIG_SYS_SDRAM_BASE	PHYS_SDRAM +#define CONFIG_SYS_INIT_SP_ADDR	(CONFIG_SYS_SDRAM_BASE + 0x1000 - \ +				GENERATED_GBL_DATA_SIZE) +  #define CONFIG_STACKSIZE		(32 * 1024)	/* regular stack */  #ifdef CONFIG_USE_IRQ |