Maximilian Brune has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/74360 )
Change subject: util/inteltool: Add ADL-S device identifications ......................................................................
util/inteltool: Add ADL-S device identifications
R680E, Q670E, H610E are the ADL-S IoT variants
see also: a0bc90e4abfe2ed87865d365436ed99311954e27
Signed-off-by: Maximilian Brune maximilian.brune@9elements.com Change-Id: I1dbfa0464bc22f9bcf91d9e9fa9eb79132600175 --- M util/inteltool/gpio.c M util/inteltool/gpio_groups.c M util/inteltool/inteltool.c M util/inteltool/inteltool.h M util/inteltool/pcr.c 5 files changed, 29 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/60/74360/1
diff --git a/util/inteltool/gpio.c b/util/inteltool/gpio.c index bf4156c..4080ad4 100644 --- a/util/inteltool/gpio.c +++ b/util/inteltool/gpio.c @@ -1100,6 +1100,9 @@ case PCI_DEVICE_ID_INTEL_C256: case PCI_DEVICE_ID_INTEL_W580: case PCI_DEVICE_ID_INTEL_ICELAKE_LP_U: + case PCI_DEVICE_ID_INTEL_H610E: + case PCI_DEVICE_ID_INTEL_Q670E: + case PCI_DEVICE_ID_INTEL_R680E: case PCI_DEVICE_ID_INTEL_H610: case PCI_DEVICE_ID_INTEL_B660: case PCI_DEVICE_ID_INTEL_H670: diff --git a/util/inteltool/gpio_groups.c b/util/inteltool/gpio_groups.c index fd5be73..4b1f0b0 100644 --- a/util/inteltool/gpio_groups.c +++ b/util/inteltool/gpio_groups.c @@ -212,6 +212,9 @@ *community_count = ARRAY_SIZE(tigerlake_pch_h_communities); *pad_stepping = 16; return tigerlake_pch_h_communities; + case PCI_DEVICE_ID_INTEL_H610E: + case PCI_DEVICE_ID_INTEL_Q670E: + case PCI_DEVICE_ID_INTEL_R680E: case PCI_DEVICE_ID_INTEL_H610: case PCI_DEVICE_ID_INTEL_B660: case PCI_DEVICE_ID_INTEL_H670: diff --git a/util/inteltool/inteltool.c b/util/inteltool/inteltool.c index 92a981a..332b676 100644 --- a/util/inteltool/inteltool.c +++ b/util/inteltool/inteltool.c @@ -393,6 +393,9 @@ { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_HM570, "HM570" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_QM580, "QM580" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_WM590, "WM590" }, + { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_H610E, "H610E" }, + { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_Q670E, "Q670E" }, + { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_R680E, "R680E" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_H610, "H610" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_B660, "B660" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_H670, "H670" }, diff --git a/util/inteltool/inteltool.h b/util/inteltool/inteltool.h index 02c1692..0be183f 100644 --- a/util/inteltool/inteltool.h +++ b/util/inteltool/inteltool.h @@ -223,6 +223,9 @@ #define PCI_DEVICE_ID_INTEL_C256 0x438d #define PCI_DEVICE_ID_INTEL_W580 0x438f
+#define PCI_DEVICE_ID_INTEL_H610E 0x7a92 +#define PCI_DEVICE_ID_INTEL_Q670E 0x7a91 +#define PCI_DEVICE_ID_INTEL_R680E 0x7a90 #define PCI_DEVICE_ID_INTEL_H610 0x7a87 #define PCI_DEVICE_ID_INTEL_B660 0x7a86 #define PCI_DEVICE_ID_INTEL_H670 0x7a85 diff --git a/util/inteltool/pcr.c b/util/inteltool/pcr.c index d1c5b27..cd668f6 100644 --- a/util/inteltool/pcr.c +++ b/util/inteltool/pcr.c @@ -158,6 +158,9 @@ sbbar_phys = 0xfd000000; use_p2sb = false; break; + case PCI_DEVICE_ID_INTEL_H610E: + case PCI_DEVICE_ID_INTEL_Q670E: + case PCI_DEVICE_ID_INTEL_R680E: case PCI_DEVICE_ID_INTEL_H610: case PCI_DEVICE_ID_INTEL_B660: case PCI_DEVICE_ID_INTEL_H670: