diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-06-13 12:48:36 +0200 | 
|---|---|---|
| committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-06-21 16:18:11 +0200 | 
| commit | 1b3b7c640d04df2ba9a9d947117d112a75fee7f4 (patch) | |
| tree | 269693529e6646969a4424d55b21582c8e015026 /board/atmel/at91sam9263ek/at91sam9263ek.c | |
| parent | 329492329700812c6df275aa0fda09d609cd0fd4 (diff) | |
| download | olio-uboot-2014.01-1b3b7c640d04df2ba9a9d947117d112a75fee7f4.tar.xz olio-uboot-2014.01-1b3b7c640d04df2ba9a9d947117d112a75fee7f4.zip | |
at91sam9263ek: add nor flash support
this will allow you to store use it for the env and to boot directly U-Boot from
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/atmel/at91sam9263ek/at91sam9263ek.c')
| -rw-r--r-- | board/atmel/at91sam9263ek/at91sam9263ek.c | 19 | 
1 files changed, 18 insertions, 1 deletions
| diff --git a/board/atmel/at91sam9263ek/at91sam9263ek.c b/board/atmel/at91sam9263ek/at91sam9263ek.c index 57d5c953f..660c47344 100644 --- a/board/atmel/at91sam9263ek/at91sam9263ek.c +++ b/board/atmel/at91sam9263ek/at91sam9263ek.c @@ -196,9 +196,16 @@ static void at91sam9263ek_lcd_hw_init(void)  #include <nand.h>  #include <version.h> +#ifndef CONFIG_SYS_NO_FLASH +extern flash_info_t flash_info[]; +#endif +  void lcd_show_board_info(void)  {  	ulong dram_size, nand_size; +#ifndef CONFIG_SYS_NO_FLASH +	ulong flash_size; +#endif  	int i;  	char temp[32]; @@ -215,9 +222,19 @@ void lcd_show_board_info(void)  	nand_size = 0;  	for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)  		nand_size += nand_info[i].size; -	lcd_printf ("  %ld MB SDRAM, %ld MB NAND\n", +#ifndef CONFIG_SYS_NO_FLASH +	flash_size = 0; +	for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) +		flash_size += flash_info[i].size; +#endif +	lcd_printf ("  %ld MB SDRAM, %ld MB NAND",  		dram_size >> 20,  		nand_size >> 20 ); +#ifndef CONFIG_SYS_NO_FLASH +	lcd_printf (",\n  %ld MB NOR", +		flash_size >> 20); +#endif +	lcd_puts ("\n");  }  #endif /* CONFIG_LCD_INFO */  #endif |