diff options
author | Stephan Guilloux <stephan.guilloux@free.fr> | 2009-04-21 01:47:16 +0000 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2009-04-21 01:47:16 +0000 |
commit | 7bd658873c5b4066b4f247255cb7a98ba1750cd1 (patch) | |
tree | eb1c755441cfe2b398ce5283740253741d685eb4 /util/flashrom/flashchips.c | |
parent | b9ceb65434731223ce01c1c741a7736c1d29cfc1 (diff) |
flashrom: Support Macronix MX2512805D flash chip
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@4150 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 32230c3f0d..911457f228 100644 --- a/util/flashrom/flashchips.c +++ b/util/flashrom/flashchips.c @@ -855,6 +855,20 @@ struct flashchip flashchips[] = { { .vendor = "Macronix", + .name = "MX25L12805", + .manufacture_id = MX_ID, + .model_id = MX_25L12805, + .total_size = 16384, + .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 = "MX29F002B", .manufacture_id = MX_ID, .model_id = MX_29F002B, |