summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Crawford <tcrawford@system76.com>2021-11-17 06:23:25 -0700
committerAngel Pons <th3fanbus@gmail.com>2022-01-05 16:27:57 +0000
commitb5dc7418e22c15b83e412419099a6d311c5f9f66 (patch)
tree1d76f758f468db8d7d982fe8e9a8848d3930e1a6
parentcad512f9169835b6254d9a015a7e14cb5e7047d2 (diff)
downloadflashrom-b5dc7418e22c15b83e412419099a6d311c5f9f66.tar.gz
flashrom-b5dc7418e22c15b83e412419099a6d311c5f9f66.tar.bz2
flashrom-b5dc7418e22c15b83e412419099a6d311c5f9f66.zip
chipset_enable.c: Add TGP-H IDs
Add IDs for: H510, B560, H570, Q570, Z590, W580, HM570, QM570, WM590 Tested on system76/oryp8 (HM570). flashrom is able to read the image using the internal programmer. Change-Id: I96f63253d42578151f99dcbb42347afecc03f49d Signed-off-by: Tim Crawford <tcrawford@system76.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/57533 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Benjamin Doron <benjamin.doron00@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--chipset_enable.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/chipset_enable.c b/chipset_enable.c
index e216722da..02a93a852 100644
--- a/chipset_enable.c
+++ b/chipset_enable.c
@@ -2123,6 +2123,15 @@ const struct penable chipset_enables[] = {
{0x8086, 0x068d, B_S, NT, "Intel", "HM470", enable_flash_pch400},
{0x8086, 0x068e, B_S, NT, "Intel", "WM490", enable_flash_pch400},
{0x8086, 0x0697, B_S, NT, "Intel", "W480", enable_flash_pch400},
+ {0x8086, 0x4384, B_S, NT, "Intel", "Q570", enable_flash_pch500},
+ {0x8086, 0x4385, B_S, NT, "Intel", "Z590", enable_flash_pch500},
+ {0x8086, 0x4386, B_S, NT, "Intel", "H570", enable_flash_pch500},
+ {0x8086, 0x4387, B_S, NT, "Intel", "B560", enable_flash_pch500},
+ {0x8086, 0x4388, B_S, NT, "Intel", "H510", enable_flash_pch500},
+ {0x8086, 0x438f, B_S, NT, "Intel", "W580", enable_flash_pch500},
+ {0x8086, 0x4389, B_S, NT, "Intel", "WM590", enable_flash_pch500},
+ {0x8086, 0x438a, B_S, NT, "Intel", "QM580", enable_flash_pch500},
+ {0x8086, 0x438b, B_S, DEP, "Intel", "HM570", enable_flash_pch500},
#endif
{0},
};