summaryrefslogtreecommitdiffstats
path: root/flash.h
diff options
context:
space:
mode:
authorOllie Lho <ollie@sis.com.tw>2005-11-26 21:55:36 +0000
committerOllie Lho <ollie@sis.com.tw>2005-11-26 21:55:36 +0000
commit184a4040333ccfe624d8765864458b21bb55d1e1 (patch)
tree730168012ceeb517f9c3d14e02f21be6c75cf107 /flash.h
parent8a10d5a631bddff703fdcfd5b33ac76cdc02fb63 (diff)
downloadast2050-flashrom-184a4040333ccfe624d8765864458b21bb55d1e1.zip
ast2050-flashrom-184a4040333ccfe624d8765864458b21bb55d1e1.tar.gz
Flashrom update from Stefan, resolve issue 21
Corresponding to flashrom svn r34 and coreboot v2 svn r2111.
Diffstat (limited to 'flash.h')
-rw-r--r--flash.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/flash.h b/flash.h
index 3dfefe2..f477da5 100644
--- a/flash.h
+++ b/flash.h
@@ -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
OpenPOWER on IntegriCloud