aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--util/inteltool/gpio.c3
-rw-r--r--util/inteltool/gpio_groups.c3
-rw-r--r--util/inteltool/inteltool.c3
-rw-r--r--util/inteltool/inteltool.h3
-rw-r--r--util/inteltool/pcr.c3
5 files changed, 15 insertions, 0 deletions
diff --git a/util/inteltool/gpio.c b/util/inteltool/gpio.c
index 0a9fe1844a..fe5287aecb 100644
--- a/util/inteltool/gpio.c
+++ b/util/inteltool/gpio.c
@@ -1100,6 +1100,9 @@ int print_gpios(struct pci_dev *sb, int show_all, int show_diffs)
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 7afe682f91..752cb7d80c 100644
--- a/util/inteltool/gpio_groups.c
+++ b/util/inteltool/gpio_groups.c
@@ -213,6 +213,9 @@ const struct gpio_community *const *get_gpio_communities(struct pci_dev *const s
*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 e627570f50..9d40148e59 100644
--- a/util/inteltool/inteltool.c
+++ b/util/inteltool/inteltool.c
@@ -393,6 +393,9 @@ static const struct {
{ 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 f5b90ba5e6..41a9957454 100644
--- a/util/inteltool/inteltool.h
+++ b/util/inteltool/inteltool.h
@@ -223,6 +223,9 @@ static inline uint32_t inl(unsigned port)
#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 52c59ae191..b0b4389080 100644
--- a/util/inteltool/pcr.c
+++ b/util/inteltool/pcr.c
@@ -159,6 +159,9 @@ void pcr_init(struct pci_dev *const sb)
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: