mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 22:21:16 +02:00
Add support for the PMC Pm29F002T/B chips
I sucessfully tested all operations on a Pm29F002T chip. The Pm29F002B is untested but I assume it should also work. Corresponding to flashrom svn r590. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
This commit is contained in:
32
flashchips.c
32
flashchips.c
@ -1512,6 +1512,38 @@ struct flashchip flashchips[] = {
|
||||
.read = spi_chip_read,
|
||||
},
|
||||
|
||||
{
|
||||
.vendor = "PMC",
|
||||
.name = "Pm29F0002T",
|
||||
.bustype = CHIP_BUSTYPE_PARALLEL,
|
||||
.manufacture_id = PMC_ID_NOPREFIX,
|
||||
.model_id = PMC_29F002T,
|
||||
.total_size = 256,
|
||||
.page_size = 8192,
|
||||
.tested = TEST_OK_PREW,
|
||||
.probe = probe_29f040b,
|
||||
.probe_timing = TIMING_FIXME,
|
||||
.erase = erase_29f040b,
|
||||
.write = write_pm29f002,
|
||||
.read = read_memmapped,
|
||||
},
|
||||
|
||||
{
|
||||
.vendor = "PMC",
|
||||
.name = "Pm29F0002B",
|
||||
.bustype = CHIP_BUSTYPE_PARALLEL,
|
||||
.manufacture_id = PMC_ID_NOPREFIX,
|
||||
.model_id = PMC_29F002B,
|
||||
.total_size = 256,
|
||||
.page_size = 8192,
|
||||
.tested = TEST_UNTESTED,
|
||||
.probe = probe_29f040b,
|
||||
.probe_timing = TIMING_FIXME,
|
||||
.erase = erase_29f040b,
|
||||
.write = write_pm29f002,
|
||||
.read = read_memmapped,
|
||||
},
|
||||
|
||||
{
|
||||
.vendor = "PMC",
|
||||
.name = "Pm39LV010",
|
||||
|
Reference in New Issue
Block a user