From 180850e2c05a19e5e160cb32c14c1c5192068130 Mon Sep 17 00:00:00 2001 From: David Hendricks Date: Thu, 18 Mar 2004 21:59:05 +0000 Subject: Add support for SST49LF0xxA parts Corresponding to flashrom svn r13 and coreboot v2 svn r1439. --- flash_rom.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'flash_rom.c') diff --git a/flash_rom.c b/flash_rom.c index c26958f..fc940f9 100644 --- a/flash_rom.c +++ b/flash_rom.c @@ -62,8 +62,19 @@ struct flashchip flashchips[] = { probe_39sf020, erase_39sf020, write_39sf020, NULL}, {"SST39VF020", SST_ID, SST_39VF020, NULL, 256, 4096, probe_39sf020, erase_39sf020, write_39sf020, NULL}, - {"SST49LF040", SST_ID, SST_49LF040, NULL, 512, 4096, + {"SST49LF040", SST_ID, SST_49LF040, NULL, 512, 4096, probe_49lf040, erase_49lf040, write_49lf040, NULL}, + {"SST49LF080A", SST_ID, SST_49LF080A, NULL, 1024, 4096, + probe_49lf040, erase_49lf040, write_49lf040, NULL}, + {"SST49LF002A", SST_ID, SST_49LF002A, NULL, 256, 4096, + probe_49lf040, erase_49lf040, write_49lf040, NULL}, + {"SST49LF003A", SST_ID, SST_49LF003A, NULL, 384, 4096, + probe_49lf040, erase_49lf040, write_49lf040, NULL}, + {"SST49LF004A", SST_ID, SST_49LF004A, NULL, 512, 4096, + probe_49lf040, erase_49lf040, write_49lf040, NULL}, + {"SST49LF008A", SST_ID, SST_49LF008A, NULL, 1024, 4096, + probe_49lf040, erase_49lf040, write_49lf040, NULL}, + //By LYH begin {"Pm49FL004", PMC_ID, PMC_49FL004, NULL, 512, 64*1024, probe_49fl004, erase_49fl004, write_49fl004, NULL}, -- cgit v1.1