diff options
author | Stephan Guilloux <stephan.guilloux@free.fr> | 2009-04-19 23:04:00 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2009-04-19 23:04:00 +0000 |
commit | f5c7090b4dfb5794d0d94655b937443f6bb416c4 (patch) | |
tree | 797d9f100af632d135d431e8336de59ff4a199b7 /flashchips.c | |
parent | 94f221f97020a3a482aa99cc3693dedfd3dd9d3d (diff) | |
download | flashrom-f5c7090b4dfb5794d0d94655b937443f6bb416c4.tar.gz flashrom-f5c7090b4dfb5794d0d94655b937443f6bb416c4.tar.bz2 flashrom-f5c7090b4dfb5794d0d94655b937443f6bb416c4.zip |
Add MX25L1635D support, as discussed on #coreboot
Corresponding to flashrom svn r431 and coreboot v2 svn r4138.
Signed-off-by: Stephan Guilloux <stephan.guilloux@free.fr>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Diffstat (limited to 'flashchips.c')
-rw-r--r-- | flashchips.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/flashchips.c b/flashchips.c index f650067fe..0345959bb 100644 --- a/flashchips.c +++ b/flashchips.c @@ -813,6 +813,19 @@ struct flashchip flashchips[] = { { .vendor = "Macronix", + .name = "MX25L1635D", + .manufacture_id = MX_ID, + .model_id = MX_25L1635D, + .total_size = 2048, + .page_size = 256, + .tested = TEST_UNTESTED, + .probe = probe_spi_rdid, + .erase = spi_chip_erase_c7, + .write = spi_chip_write, + .read = spi_chip_read, + }, + { + .vendor = "Macronix", .name = "MX25L3205", .manufacture_id = MX_ID, .model_id = MX_25L3205, |