diff options
author | Pavel Sayekat <pavelsayekat@gmail.com> | 2019-07-28 23:09:08 +0600 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-07-29 18:06:13 +0000 |
commit | 9429b70f911f0ebab92a236234974bf0c8e6b565 (patch) | |
tree | 875cb88dfc7c52fa4704067b3b5dcc067707fa0e /util | |
parent | 90cf4bb02aac15a41873ef9435d826b143a0a04e (diff) |
util/inteltool: Add H110 GPIO support
Change-Id: I0ce22da3d201c2443bb5a7fcfd779c2c6ee71577
Signed-off-by: Pavel Sayekat <pavelsayekat@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/34602
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util')
-rw-r--r-- | util/inteltool/gpio.c | 1 | ||||
-rw-r--r-- | util/inteltool/gpio_groups.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/util/inteltool/gpio.c b/util/inteltool/gpio.c index e48a2c51f5..1dfb8964bf 100644 --- a/util/inteltool/gpio.c +++ b/util/inteltool/gpio.c @@ -1024,6 +1024,7 @@ int print_gpios(struct pci_dev *sb, int show_all, int show_diffs) gpio_registers = baytrail_score_ssus_gpio_registers; size = ARRAY_SIZE(baytrail_score_ssus_gpio_registers); break; + case PCI_DEVICE_ID_INTEL_H110: case PCI_DEVICE_ID_INTEL_B150: case PCI_DEVICE_ID_INTEL_CM236: case PCI_DEVICE_ID_INTEL_C236: diff --git a/util/inteltool/gpio_groups.c b/util/inteltool/gpio_groups.c index 3c0fedbfbf..24d6c8ed16 100644 --- a/util/inteltool/gpio_groups.c +++ b/util/inteltool/gpio_groups.c @@ -1772,6 +1772,7 @@ void print_gpio_groups(struct pci_dev *const sb) size_t pad_stepping = 8; switch (sb->device_id) { + case PCI_DEVICE_ID_INTEL_H110: case PCI_DEVICE_ID_INTEL_B150: case PCI_DEVICE_ID_INTEL_CM236: case PCI_DEVICE_ID_INTEL_C236: |