diff options
author | Zheng Bao <zheng.bao@amd.com> | 2009-02-25 08:07:33 +0000 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2009-02-25 08:07:33 +0000 |
commit | 0677dfffc67ad2d0e973f558be86e66f225b4ddc (patch) | |
tree | 4db92166ceb3dcf98574270285a289c1b6354c24 | |
parent | b27d0a2c342ad13118c54352afbd4c8013c4ea43 (diff) | |
download | flashrom-0677dfffc67ad2d0e973f558be86e66f225b4ddc.tar.gz flashrom-0677dfffc67ad2d0e973f558be86e66f225b4ddc.tar.bz2 flashrom-0677dfffc67ad2d0e973f558be86e66f225b4ddc.zip |
Add SST25VF040.REMS with TEST_OK_ PROBE READ
Corresponding to flashrom svn r417 and coreboot v2 svn r3958.
Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Acked-by: Peter Stuge <peter@stuge.se>
-rw-r--r-- | flashchips.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/flashchips.c b/flashchips.c index 182f90a7..1fcb30af 100644 --- a/flashchips.c +++ b/flashchips.c @@ -1128,6 +1128,20 @@ struct flashchip flashchips[] = { { .vendor = "SST", + .name = "SST25VF040.REMS", + .manufacture_id = 0xbf, + .model_id = 0x44, + .total_size = 512, + .page_size = 64*1024, + .tested = TEST_OK_PR, + .probe = probe_spi_rems, + .erase = spi_chip_erase_60, + .write = spi_chip_write, + .read = spi_chip_read, + }, + + { + .vendor = "SST", .name = "SST25VF040B.REMS", .manufacture_id = 0xbf, .model_id = 0x8d, |