mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
AVR32: Initialize bi_flash* in board_init_r
The ATSTK1000-specific flash driver intializes bi_flashstart, bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI driver, don't. Initialize these in board_init_r instead so that things will still be set up correctly when we switch to the CFI driver. Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
This commit is contained in:
parent
9add9884b1
commit
7b624ad254
2 changed files with 11 additions and 5 deletions
|
@ -55,10 +55,6 @@ unsigned long flash_init(void)
|
|||
unsigned long addr;
|
||||
unsigned int i;
|
||||
|
||||
gd->bd->bi_flashstart = CFG_FLASH_BASE;
|
||||
gd->bd->bi_flashsize = CFG_FLASH_SIZE;
|
||||
gd->bd->bi_flashoffset = _edata - _text;
|
||||
|
||||
flash_info[0].size = CFG_FLASH_SIZE;
|
||||
flash_info[0].sector_count = 135;
|
||||
|
||||
|
|
|
@ -310,10 +310,20 @@ void board_init_r(gd_t *new_gd, ulong dest_addr)
|
|||
malloc_bin_reloc();
|
||||
dma_alloc_init();
|
||||
board_init_info();
|
||||
flash_init();
|
||||
|
||||
bd->bi_flashstart = 0;
|
||||
bd->bi_flashsize = 0;
|
||||
bd->bi_flashoffset = 0;
|
||||
|
||||
#ifndef CFG_NO_FLASH
|
||||
bd->bi_flashstart = CFG_FLASH_BASE;
|
||||
bd->bi_flashsize = flash_init();
|
||||
bd->bi_flashoffset = (unsigned long)_edata - (unsigned long)_text;
|
||||
|
||||
if (bd->bi_flashsize)
|
||||
display_flash_config();
|
||||
#endif
|
||||
|
||||
if (bd->bi_dram[0].size)
|
||||
display_dram_config();
|
||||
|
||||
|
|
Loading…
Reference in a new issue