1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 14:33:18 +02:00

Flashrom update from Stefan, resolve issue 21

Corresponding to flashrom svn r34 and coreboot v2 svn r2111.
This commit is contained in:
Ollie Lho
2005-11-26 21:55:36 +00:00
parent 8a10d5a631
commit 184a404033
38 changed files with 1098 additions and 511 deletions

11
flash.h
View File

@ -3,25 +3,28 @@
#include <sys/io.h>
#include <unistd.h>
#include <stdint.h>
struct flashchip {
char *name;
int manufacture_id;
int model_id;
volatile char *virt_addr;
volatile uint8_t *virt_addr;
int total_size;
int page_size;
int (*probe) (struct flashchip * flash);
int (*erase) (struct flashchip * flash);
int (*write) (struct flashchip * flash, unsigned char *buf);
int (*read) (struct flashchip * flash, unsigned char *buf);
int (*write) (struct flashchip * flash, uint8_t *buf);
int (*read) (struct flashchip * flash, uint8_t *buf);
int fd_mem;
volatile char *virt_addr_2;
volatile uint8_t *virt_addr_2;
};
extern struct flashchip flashchips[];
#define AMD_ID 0x01
#define AM_29F040B 0xA4