Import upstream u-boot 1.1.4
[u-boot.git] / board / MAI / AmigaOneG3SE / flash.c
1 #include <common.h>
2 #include <flash.h>
3
4 flash_info_t    flash_info[CFG_MAX_FLASH_BANKS];
5
6
7 unsigned long flash_init(void)
8 {
9     int i;
10
11     for (i = 0; i < CFG_MAX_FLASH_BANKS; i++)
12     {
13         flash_info[i].flash_id = FLASH_UNKNOWN;
14         flash_info[i].sector_count = 0;
15         flash_info[i].size = 0;
16     }
17
18
19     return 1;
20 }
21
22 int flash_erase(flash_info_t *info, int s_first, int s_last)
23 {
24     return 1;
25 }
26
27 void flash_print_info(flash_info_t *info)
28 {
29     printf("No flashrom installed\n");
30 }
31
32 int write_buff (flash_info_t *info, uchar *src, ulong addr, ulong cnt)
33 {
34     return 0;
35 }