Felix Singer has uploaded this change for review.

View Change

flashchips.c: Fix voltage ranges for MX23L1654 and MX23L6454

An user reported incorrect voltage ranges for the following flash chips:

* MX23L1654
* MX23L6454

Currently, their low end is at 3.0V, while 2.7V is allowed according to
their datasheets. Thus, fix their voltage ranges.

Signed-off-by: Felix Singer <felixsinger@posteo.net>
Change-Id: I91dd6058d5951868b154c8bc8818cb0c412f2499
---
M flashchips.c
1 file changed, 2 insertions(+), 2 deletions(-)

git pull ssh://review.coreboot.org:29418/flashrom refs/changes/24/63124/1
diff --git a/flashchips.c b/flashchips.c
index acb7718..806d010 100644
--- a/flashchips.c
+++ b/flashchips.c
@@ -8279,7 +8279,7 @@
.probe_timing = TIMING_ZERO,
.write = NULL, /* MX23L1654 is a mask ROM, so it is read-only */
.read = spi_chip_read, /* Fast read (0x0B) supported */
- .voltage = {3000, 3600},
+ .voltage = {2700, 3600},
},

{
@@ -8311,7 +8311,7 @@
.probe_timing = TIMING_ZERO,
.write = NULL, /* MX23L6454 is a mask ROM, so it is read-only */
.read = spi_chip_read, /* Fast read (0x0B) supported */
- .voltage = {3000, 3600},
+ .voltage = {2700, 3600},
},

{

To view, visit change 63124. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-Change-Id: I91dd6058d5951868b154c8bc8818cb0c412f2499
Gerrit-Change-Number: 63124
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Singer <felixsinger@posteo.net>
Gerrit-MessageType: newchange