diff options
| author | David Hendricks <david.hendricks@gmail.com> | 2004-03-18 21:59:05 +0000 | 
|---|---|---|
| committer | David Hendricks <david.hendricks@gmail.com> | 2004-03-18 21:59:05 +0000 | 
| commit | 180850e2c05a19e5e160cb32c14c1c5192068130 (patch) | |
| tree | dcec2cb017e0143034076a23eac0b7424816abcb | |
| parent | 1f12810d330fb33440225b4204e31c581dab4816 (diff) | |
| download | flashrom-180850e2c05a19e5e160cb32c14c1c5192068130.tar.gz flashrom-180850e2c05a19e5e160cb32c14c1c5192068130.tar.bz2 flashrom-180850e2c05a19e5e160cb32c14c1c5192068130.zip | |
Add support for SST49LF0xxA parts
Corresponding to flashrom svn r13 and coreboot v2 svn r1439.
| -rw-r--r-- | flash_rom.c | 13 | 
1 files changed, 12 insertions, 1 deletions
| diff --git a/flash_rom.c b/flash_rom.c index c26958f4..fc940f99 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}, | 
