diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2006-11-21 15:02:27 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2006-11-21 15:02:27 +0000 |
commit | 800745de15f43f57b9ae62942321d61e662516bb (patch) | |
tree | 38b7306f2c8b5e515957d150a7af63e25807180d /flashchips.c | |
parent | 5b55dc10806f8e42205385911e9cb61984d374f4 (diff) | |
download | flashrom-800745de15f43f57b9ae62942321d61e662516bb.zip flashrom-800745de15f43f57b9ae62942321d61e662516bb.tar.gz |
Add support for the SyncMOS S29C51001T, S29C51004T, and S29C31004T
Corresponding to flashrom svn r74 and coreboot v2 svn r2501.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'flashchips.c')
-rw-r--r-- | flashchips.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/flashchips.c b/flashchips.c index 1400918..c1ee4eb 100644 --- a/flashchips.c +++ b/flashchips.c @@ -114,8 +114,14 @@ struct flashchip flashchips[] = { #endif {"LHF00L04", SHARP_ID, SHARP_LHF00L04, NULL, 1024, 64 * 1024, probe_lhf00l04, erase_lhf00l04, write_lhf00l04, NULL}, + {"S29C51001T", SM_ID, S29C51001T, NULL, 128, 128, + probe_jedec, erase_chip_jedec, write_49f002, NULL}, {"S29C51002T", SM_ID, S29C51002T, NULL, 256, 128, probe_jedec, erase_chip_jedec, write_49f002, NULL}, + {"S29C51004T", SM_ID, S29C51004T, NULL, 512, 128, + probe_jedec, erase_chip_jedec, write_49f002, NULL}, + {"S29C31004T", SM_ID, S29C31004T, NULL, 512, 128, + probe_jedec, erase_chip_jedec, write_49f002, NULL}, {NULL,} }; |