mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 22:21:16 +02:00
Add support for MX29F001T and MX29F001B flash chips
Corresponding to flashrom svn r698. Signed-off-by: Mark Panajotovic <panajotovic.marko@gmail.com> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
This commit is contained in:

committed by
Carl-Daniel Hailfinger

parent
37181bebdd
commit
502a913791
32
flashchips.c
32
flashchips.c
@ -1394,6 +1394,38 @@ struct flashchip flashchips[] = {
|
||||
.read = spi_chip_read,
|
||||
},
|
||||
|
||||
{
|
||||
.vendor = "Macronix",
|
||||
.name = "MX29F001B",
|
||||
.bustype = CHIP_BUSTYPE_PARALLEL,
|
||||
.manufacture_id = MX_ID,
|
||||
.model_id = MX_29F001B,
|
||||
.total_size = 128,
|
||||
.page_size = 32 * 1024,
|
||||
.tested = TEST_UNTESTED,
|
||||
.probe = probe_29f002,
|
||||
.probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
|
||||
.erase = erase_29f002,
|
||||
.write = write_29f002,
|
||||
.read = read_memmapped,
|
||||
},
|
||||
|
||||
{
|
||||
.vendor = "Macronix",
|
||||
.name = "MX29F001T",
|
||||
.bustype = CHIP_BUSTYPE_PARALLEL,
|
||||
.manufacture_id = MX_ID,
|
||||
.model_id = MX_29F001T,
|
||||
.total_size = 128,
|
||||
.page_size = 32 * 1024,
|
||||
.tested = TEST_OK_PREW,
|
||||
.probe = probe_29f002,
|
||||
.probe_timing = TIMING_IGNORED, /* routine don't use probe_timing (mx29f002.c) */
|
||||
.erase = erase_29f002,
|
||||
.write = write_29f002,
|
||||
.read = read_memmapped,
|
||||
},
|
||||
|
||||
{
|
||||
.vendor = "Macronix",
|
||||
.name = "MX29F002B",
|
||||
|
Reference in New Issue
Block a user