From 2d8edebc97f5d2cd05968d6df8d3fb3e9878396a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Kope=C4=87?= Date: Tue, 5 Apr 2022 10:40:03 +0200 Subject: util/inteltool: Add support for Alder Lake chips detection and GPIOs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add PCI IDs for Alder Lake H devices and their GPIO tables. PCI IDs as per Intel PCH-H EDS Vol1 (doc #619362). TEST=dump GPIOs on i5-12600K with Z690 chipset Change-Id: I0001395517e1e7977b0f808d5d74cf85c52298d6 Signed-off-by: Michał Kopeć Reviewed-on: https://review.coreboot.org/c/coreboot/+/63374 Tested-by: build bot (Jenkins) Reviewed-by: Michał Żygowski --- util/inteltool/gpio.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'util/inteltool/gpio.c') diff --git a/util/inteltool/gpio.c b/util/inteltool/gpio.c index 708a59aedb..dc2ed77a02 100644 --- a/util/inteltool/gpio.c +++ b/util/inteltool/gpio.c @@ -1095,6 +1095,17 @@ 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_H610: + case PCI_DEVICE_ID_INTEL_B660: + case PCI_DEVICE_ID_INTEL_H670: + case PCI_DEVICE_ID_INTEL_Q670: + case PCI_DEVICE_ID_INTEL_Z690: + case PCI_DEVICE_ID_INTEL_W680: + case PCI_DEVICE_ID_INTEL_W685: + case PCI_DEVICE_ID_INTEL_WM690: + case PCI_DEVICE_ID_INTEL_HM670: + case PCI_DEVICE_ID_INTEL_WM790: + case PCI_DEVICE_ID_INTEL_HM770: print_gpio_groups(sb); return 0; case PCI_DEVICE_ID_INTEL_82371XX: -- cgit v1.2.3