summaryrefslogtreecommitdiffstats
path: root/flashchips.c
diff options
context:
space:
mode:
authorCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2009-11-20 01:12:45 +0000
committerCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2009-11-20 01:12:45 +0000
commit31b3779d971b66d52eb4d54e19a53c3f53ef5653 (patch)
treebf814fbd7d2cccd943299f00e2ef5277b16e36ae /flashchips.c
parent462c33f7231a52fd7d6e821f54bfec2401965d64 (diff)
downloadflashrom-31b3779d971b66d52eb4d54e19a53c3f53ef5653.zip
flashrom-31b3779d971b66d52eb4d54e19a53c3f53ef5653.tar.gz
If a chip is not on the RDID generic vendor list nor on the REMS specific ID list, flashrom will claim that no chip is there
Handle these cases gracefully. flashrom will ignore generic matches if a specific chip was found, so this will have no impact on supported chips, but help a lot for a first quick analysis by the user or developer. The only drawback is that unknown chips may be recognized multiple times until they are added to flashchips.[ch]. Corresponding to flashrom svn r767. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Marc Jones <marcj303@gmail.com>
Diffstat (limited to 'flashchips.c')
-rw-r--r--flashchips.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/flashchips.c b/flashchips.c
index 65eb7f0..e97786f 100644
--- a/flashchips.c
+++ b/flashchips.c
@@ -3340,5 +3340,32 @@ struct flashchip flashchips[] = {
.read = NULL,
},
+ {
+ .vendor = "Generic",
+ .name = "unknown SPI chip (RDID)",
+ .bustype = CHIP_BUSTYPE_SPI,
+ .manufacture_id = GENERIC_MANUF_ID,
+ .model_id = GENERIC_DEVICE_ID,
+ .total_size = 0,
+ .page_size = 256,
+ .tested = TEST_BAD_PREW,
+ .probe = probe_spi_rdid,
+ .erase = NULL,
+ .write = NULL,
+ },
+ {
+ .vendor = "Generic",
+ .name = "unknown SPI chip (REMS)",
+ .bustype = CHIP_BUSTYPE_SPI,
+ .manufacture_id = GENERIC_MANUF_ID,
+ .model_id = GENERIC_DEVICE_ID,
+ .total_size = 0,
+ .page_size = 256,
+ .tested = TEST_BAD_PREW,
+ .probe = probe_spi_rems,
+ .erase = NULL,
+ .write = NULL,
+ },
+
{ NULL }
};
OpenPOWER on IntegriCloud