Ao Zhong has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/63596 )
Change subject: Add voltage data to chips without that ......................................................................
Add voltage data to chips without that
Eon EN25Q128 Datasheet: https://www.netcheif.com/Reviews/DSL-7850U/pdf/EN25Q128.pdf
Intel 28F002BC/BL/BV/BX-T Datasheet: https://datasheet.octopart.com/E28F002BC-T80-Intel-datasheet-111286.pdf
Intel 28F004B5/BE/BV/BX-B Datasheet: https://cdn.datasheetspdf.com/pdf-down/2/8/F/28F200B5_IntelCorporation.pdf
Intel 28F004B5/BE/BV/BX-T Datasheet: https://cdn.datasheetspdf.com/pdf-down/2/8/F/28F200B5_IntelCorporation.pdf
Intel 28F008S3/S5/SC Datasheet: https://cdn.datasheetspdf.com/pdf-down/2/8/F/28F004S3_IntelCorporation.pdf Datasheet: https://www.digchip.com/datasheets/download_datasheet.php?id=38424&part-... Datasheet: https://cdn.datasheetspdf.com/pdf-down/2/8/F/28F004SC_IntelCorporation.pdf
Intel 28F400BV/BX/CE/CV-B Datasheet: https://cdn.datasheetspdf.com/pdf-down/2/8/F/28F400BX-TB_IntelCorporation.pd...
Intel 28F400BV/BX/CE/CV-T Datasheet: https://cdn.datasheetspdf.com/pdf-down/2/8/F/28F400BV-TB_IntelCorporation.pd...
Micron/Numonyx/ST M25P40-old Datasheet: https://www.farnell.com/datasheets/40267.pdf
SyncMOS/MoselVitelic {F,S,V}29C51002B Datasheet: https://cdn.datasheetspdf.com/pdf-down/F/2/9/F29C51002T_SyncMOS.pdf
SyncMOS/MoselVitelic {F,S,V}29C51002T Datasheet: https://cdn.datasheetspdf.com/pdf-down/F/2/9/F29C51002T_SyncMOS.pdf
Winbond W29C010(M)/W29C011A/W29EE011/W29EE012 Datasheet: https://tz.micro-semiconductor.hk/datasheet/fb-W29EE011P90Z.pdf
Winbond W29C010(M)/W29C011A/W29EE011/W29EE012-old Datasheet: http://www.romservice.ru/datashee/W29C010.PDF
Signe-by: Ao Zhong hacc1225@gmail.com Change-Id: I4aa2e71cf327ad5a5025a411689d77c6f6546a2e --- M flashchips.c 1 file changed, 12 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/96/63596/1
diff --git a/flashchips.c b/flashchips.c index 3224142..5e7934c 100644 --- a/flashchips.c +++ b/flashchips.c @@ -4953,6 +4953,7 @@ .unlock = spi_disable_blockprotect, .write = spi_chip_write_256, .read = spi_chip_read, + .voltage = {2700, 3600}, },
{ @@ -8112,6 +8113,7 @@ }, .write = write_82802ab, .read = read_memmapped, + .voltage = {4500, 5500}, },
{ @@ -8139,6 +8141,7 @@ }, .write = write_82802ab, .read = read_memmapped, + .voltage = {4500, 5500}, },
{ @@ -8166,6 +8169,7 @@ }, .write = write_82802ab, .read = read_memmapped, + .voltage = {4500, 5500}, },
{ @@ -8189,6 +8193,7 @@ .unlock = unlock_28f004s5, .write = write_82802ab, .read = read_memmapped, + .voltage = {3000, 3600}, },
{ @@ -8217,6 +8222,7 @@ }, .write = write_82802ab, .read = read_memmapped, + .voltage = {4500, 5500}, },
{ @@ -8245,6 +8251,7 @@ }, .write = write_82802ab, .read = read_memmapped, + .voltage = {4500, 5500}, },
{ @@ -10521,6 +10528,7 @@ .unlock = spi_disable_blockprotect_bp3_srwd, .write = spi_chip_write_256, .read = spi_chip_read, + .voltage = {2700, 3600}, },
{ @@ -16884,6 +16892,7 @@ }, .write = write_jedec_1, .read = read_memmapped, + .voltage = {4500, 5500}, },
{ @@ -16910,6 +16919,7 @@ }, .write = write_jedec_1, .read = read_memmapped, + .voltage = {4500, 5500}, },
{ @@ -18535,6 +18545,7 @@ }, .write = write_jedec, .read = read_memmapped, + .voltage = {4500, 5500}, },
{ @@ -18558,6 +18569,7 @@ }, .write = write_jedec, .read = read_memmapped, + .voltage = {4500, 5500}, },
{