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/flashchips.c | |
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/flashchips.c')
-rw-r--r-- | util/flashrom/flashchips.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/flashrom/flashchips.c b/util/flashrom/flashchips.c index e33813f04c..4b9d4c2cb0 100644 --- a/util/flashrom/flashchips.c +++ b/util/flashrom/flashchips.c @@ -129,6 +129,8 @@ struct flashchip flashchips[] = { {"Winbond", "W49F002U", WINBOND_ID, W_49F002U, 256, 128, probe_jedec, erase_chip_jedec, write_49f002}, {"Winbond", "W49V002A", WINBOND_ID, W_49V002A, 256, 128, probe_jedec, erase_chip_jedec, write_49f002}, {"Winbond", "W49V002FA", WINBOND_ID, W_49V002FA, 256, 128, probe_jedec, erase_chip_jedec, write_49f002}, + {"Winbond", "W39V080FA", WINBOND_ID, W_39V080FA, 1024, 64*1024, probe_winbond_fwhub, erase_winbond_fwhub, write_winbond_fwhub}, + {"Winbond", "W39V080FA (dual mode)",WINBOND_ID, W_39V080FA_DM, 512, 64*1024, probe_winbond_fwhub, erase_winbond_fwhub, write_winbond_fwhub}, {"EON", "unknown SPI chip", EON_ID_NOPREFIX,GENERIC_DEVICE_ID, 0, 0, probe_spi, NULL, NULL}, {"Macronix", "unknown SPI chip", MX_ID, GENERIC_DEVICE_ID, 0, 0, probe_spi, NULL, NULL}, |