mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 12:39:22 -04:00
i.MX31: Fix Litekit board to use new ARM relocation support.
Tested on hardware. Boots Linux nicely. Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
This commit is contained in:
parent
65e62d6941
commit
68a75d0b54
@ -1 +1 @@
|
|||||||
TEXT_BASE = 0x87f00000
|
TEXT_BASE = 0xa0000000
|
||||||
|
@ -31,12 +31,18 @@ DECLARE_GLOBAL_DATA_PTR;
|
|||||||
|
|
||||||
int dram_init (void)
|
int dram_init (void)
|
||||||
{
|
{
|
||||||
gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
|
gd->ram_size = PHYS_SDRAM_1_SIZE;
|
||||||
gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
dram_init_banksize (void)
|
||||||
|
{
|
||||||
|
gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
|
||||||
|
gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
|
||||||
|
}
|
||||||
|
|
||||||
int board_init (void)
|
int board_init (void)
|
||||||
{
|
{
|
||||||
__REG(CSCR_U(0)) = 0x0000cf03; /* CS0: Nor Flash */
|
__REG(CSCR_U(0)) = 0x0000cf03; /* CS0: Nor Flash */
|
||||||
|
@ -147,6 +147,13 @@
|
|||||||
#define PHYS_SDRAM_1 CSD0_BASE
|
#define PHYS_SDRAM_1 CSD0_BASE
|
||||||
#define PHYS_SDRAM_1_SIZE (128 * 1024 * 1024)
|
#define PHYS_SDRAM_1_SIZE (128 * 1024 * 1024)
|
||||||
|
|
||||||
|
#undef CONFIG_SYS_ARM_WITHOUT_RELOC
|
||||||
|
#define CONFIG_SYS_SDRAM_BASE CSD0_BASE
|
||||||
|
#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
|
||||||
|
#define CONFIG_SYS_INIT_RAM_END IRAM_SIZE
|
||||||
|
#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
|
||||||
|
#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET)
|
||||||
|
|
||||||
/*-----------------------------------------------------------------------
|
/*-----------------------------------------------------------------------
|
||||||
* FLASH and environment organization
|
* FLASH and environment organization
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user