blob: 409b955fd59864fab9eaa1b0462058d704f78ebe [file] [log] [blame]
wdenkc7de8292002-11-19 11:04:11 +00001#include <common.h>
2#include <flash.h>
3
4flash_info_t flash_info[CFG_MAX_FLASH_BANKS];
5
6
7unsigned 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
22int flash_erase(flash_info_t *info, int s_first, int s_last)
23{
24 return 1;
25}
26
27void flash_print_info(flash_info_t *info)
28{
29 printf("No flashrom installed\n");
30}
31
32int write_buff (flash_info_t *info, uchar *src, ulong addr, ulong cnt)
33{
34 return 0;
35}