1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 14:33:18 +02:00

Add support for Macronix MX23L3254 mask ROM

Corresponding to flashrom svn r1784.

Signed-off-by: Michael Coppola <michael.n.coppola@gmail.com>
Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
This commit is contained in:
Michael Coppola
2014-05-03 23:01:18 +00:00
committed by Stefan Tauner
parent c2eec2c920
commit 4e7f36ec30
3 changed files with 23 additions and 5 deletions

View File

@ -5907,6 +5907,22 @@ const struct flashchip flashchips[] = {
.voltage = {3000, 3600},
},
{
.vendor = "Macronix",
.name = "MX23L3254",
.bustype = BUS_SPI,
.manufacture_id = MACRONIX_ID,
.model_id = MACRONIX_MX23L3254,
.total_size = 4096,
.page_size = 256,
.tested = TEST_OK_PR | TEST_BAD_EW,
.probe = probe_spi_rdid,
.probe_timing = TIMING_ZERO,
.write = NULL, /* MX23L3254 is a mask ROM, so it is read-only */
.read = spi_chip_read, /* Fast read (0x0B) supported */
.voltage = {3000, 3600},
},
{
.vendor = "Macronix",
.name = "MX25L512(E)/MX25V512(C)",