diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-03-17 22:59:40 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-03-17 22:59:40 +0000 |
commit | 012ed48bf2c28af293c1868f8e0d0371e20ed8ec (patch) | |
tree | 0be4e162021cf0a87a5b7a2a489ee6ffada29bf6 /util/flashrom/flash.h | |
parent | 2ce4e4caa9c2856c77b666299b9551dfd10a0dab (diff) | |
download | coreboot-012ed48bf2c28af293c1868f8e0d0371e20ed8ec.tar.xz |
Support for the Winbond W39V080FA series of chips.
Support for flashing on the Kontron 986LCD-M board.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3165 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/flash.h')
-rw-r--r-- | util/flashrom/flash.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/util/flashrom/flash.h b/util/flashrom/flash.h index 5b800ce5ec..930bf6dba9 100644 --- a/util/flashrom/flash.h +++ b/util/flashrom/flash.h @@ -276,6 +276,8 @@ extern struct flashchip flashchips[]; #define W_39V040A 0x3D #define W_39V040B 0x54 #define W_39V080A 0xD0 +#define W_39V080FA 0xD3 +#define W_39V080FA_DM 0x93 #define W_49F002U 0x0B #define W_49V002A 0xB0 #define W_49V002FA 0x32 @@ -414,6 +416,11 @@ int probe_sst_fwhub(struct flashchip *flash); int erase_sst_fwhub(struct flashchip *flash); int write_sst_fwhub(struct flashchip *flash, uint8_t *buf); +/* w39V080fa.c */ +int probe_winbond_fwhub(struct flashchip *flash); +int erase_winbond_fwhub(struct flashchip *flash); +int write_winbond_fwhub(struct flashchip *flash, uint8_t *buf); + /* w29ee011.c */ int probe_w29ee011(struct flashchip *flash); |