diff options
author | Stephan Guilloux <stephan.guilloux@free.fr> | 2009-04-23 22:51:56 +0000 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2009-04-23 22:51:56 +0000 |
commit | 6a30a5f891885daafd548e3cb3ab16ea94b781d3 (patch) | |
tree | 2295d4d3e6f2b25757ab30de3aae16af83a20d21 /util/flashrom/flashchips.c | |
parent | 424638e7bbd7b47118ed515f6fb32162dbd0c201 (diff) |
flashrom: Support MX25L3235D
Signed-off-by: Stephan Guilloux <stephan.guilloux@free.fr>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4200 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/flashchips.c')
-rw-r--r-- | util/flashrom/flashchips.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/util/flashrom/flashchips.c b/util/flashrom/flashchips.c index bc16b2e455..b9c87ad77a 100644 --- a/util/flashrom/flashchips.c +++ b/util/flashrom/flashchips.c @@ -841,6 +841,20 @@ struct flashchip flashchips[] = { { .vendor = "Macronix", + .name = "MX25L3235D", + .manufacture_id = MX_ID, + .model_id = MX_25L3235D, + .total_size = 4096, + .page_size = 256, + .tested = TEST_UNTESTED, + .probe = probe_spi_rdid, + .erase = spi_chip_erase_60_c7, + .write = spi_chip_write, + .read = spi_chip_read, + }, + + { + .vendor = "Macronix", .name = "MX25L6405", .manufacture_id = MX_ID, .model_id = MX_25L6405, |