summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhailfinger <hailfinger@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2009-04-22 13:33:43 +0000
committerhailfinger <hailfinger@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2009-04-22 13:33:43 +0000
commit1785968dd811b3e415d37d66c9b2f33f7b8b9ba8 (patch)
treea74a6b18258bf2dc80d0726ce420fe3cb061ac9a
parent518acda4023b483e67bcba026c17771401f00b94 (diff)
downloadflashrom-1785968dd811b3e415d37d66c9b2f33f7b8b9ba8.tar.gz
Original v2 revision: 4177
All "unknown xy SPI chip" entries claim to have status UNTESTED for probe/read/erase/write. That is incorrect. A bit of confusion comes from how the #defines are named. We call them TEST_BAD_*, but the message printed by flashrom says: "This flash part has status NOT WORKING for operations:" Something that is unimplemented is definitely not working. Neither of the chip entries mentioned above has erase or write functions implemented, so erase and write are not working. Since their size is unknown, we can't read them in. That means read is not working as well. Probing is a different matter. If a chip-specific probe function had matched, we wouldn't have to handle the chip with the "unknown xy SPI chip" fallback. I'm tempted to call that "not working" as well, but I'm open to discussion on this point. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@439 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r--flashchips.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/flashchips.c b/flashchips.c
index 911457f..bc16b2e 100644
--- a/flashchips.c
+++ b/flashchips.c
@@ -2167,7 +2167,7 @@ struct flashchip flashchips[] = {
.model_id = GENERIC_DEVICE_ID,
.total_size = 0,
.page_size = 256,
- .tested = TEST_UNTESTED,
+ .tested = TEST_BAD_PREW,
.probe = probe_spi_rdid,
.erase = NULL,
.write = NULL,
@@ -2180,7 +2180,7 @@ struct flashchip flashchips[] = {
.model_id = GENERIC_DEVICE_ID,
.total_size = 0,
.page_size = 256,
- .tested = TEST_UNTESTED,
+ .tested = TEST_BAD_PREW,
.probe = probe_spi_rdid,
.erase = NULL,
.write = NULL,
@@ -2193,7 +2193,7 @@ struct flashchip flashchips[] = {
.model_id = GENERIC_DEVICE_ID,
.total_size = 0,
.page_size = 256,
- .tested = TEST_UNTESTED,
+ .tested = TEST_BAD_PREW,
.probe = probe_spi_rdid,
.erase = NULL,
.write = NULL,
@@ -2206,7 +2206,7 @@ struct flashchip flashchips[] = {
.model_id = GENERIC_DEVICE_ID,
.total_size = 0,
.page_size = 256,
- .tested = TEST_UNTESTED,
+ .tested = TEST_BAD_PREW,
.probe = probe_spi_rdid,
.erase = NULL,
.write = NULL,
@@ -2219,7 +2219,7 @@ struct flashchip flashchips[] = {
.model_id = GENERIC_DEVICE_ID,
.total_size = 0,
.page_size = 256,
- .tested = TEST_UNTESTED,
+ .tested = TEST_BAD_PREW,
.probe = probe_spi_rdid,
.erase = NULL,
.write = NULL,
@@ -2232,7 +2232,7 @@ struct flashchip flashchips[] = {
.model_id = GENERIC_DEVICE_ID,
.total_size = 0,
.page_size = 256,
- .tested = TEST_UNTESTED,
+ .tested = TEST_BAD_PREW,
.probe = probe_spi_rdid,
.erase = NULL,
.write = NULL,