mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 14:33:18 +02:00
Add support for the 10b7:9058 3COM NIC (3C905B: Cyclone 10/100/BNC)
Also, add Atmel AT29C512 support. Both are tested on hardware by Maciej Pijanka. Corresponding to flashrom svn r566. Signed-off-by: Maciej Pijanka <maciej.pijanka@gmail.com> Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:

committed by
Uwe Hermann

parent
265c838924
commit
bc2bbd2851
16
flashchips.c
16
flashchips.c
@ -398,6 +398,22 @@ struct flashchip flashchips[] = {
|
||||
.read = spi_chip_read,
|
||||
},
|
||||
|
||||
{
|
||||
.vendor = "Atmel",
|
||||
.name = "AT29C512",
|
||||
.bustype = CHIP_BUSTYPE_NONSPI,
|
||||
.manufacture_id = ATMEL_ID,
|
||||
.model_id = AT_29C512,
|
||||
.total_size = 64,
|
||||
.page_size = 128,
|
||||
.tested = TEST_OK_PREW,
|
||||
.probe = probe_jedec,
|
||||
.erase = erase_chip_jedec,
|
||||
.write = write_jedec,
|
||||
.read = read_memmapped,
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
.vendor = "Atmel",
|
||||
.name = "AT29C010A",
|
||||
|
Reference in New Issue
Block a user