1
0
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:
Uwe Hermann
2009-06-14 21:53:26 +00:00
parent 38a059d6ef
commit f983d9ffea
4 changed files with 91 additions and 1 deletions

View File

@ -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",