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

Support Macronix MX2512805D flash chip

Corresponding to flashrom svn r437 and coreboot v2 svn r4150.

Signed-off-by: Stephan Guilloux <stephan.guilloux@free.fr>
Acked-by: Peter Stuge <peter@stuge.se>
This commit is contained in:
Stephan Guilloux
2009-04-21 01:47:16 +00:00
committed by Peter Stuge
parent 72cf565663
commit 2f132feabe
2 changed files with 15 additions and 0 deletions

View File

@ -853,6 +853,20 @@ struct flashchip flashchips[] = {
.read = spi_chip_read,
},
{
.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",