diff options
author | Maxim Polyakov <max.senia.poliak@gmail.com> | 2020-07-17 00:19:41 +0300 |
---|---|---|
committer | David Hendricks <david.hendricks@gmail.com> | 2020-07-21 16:40:48 +0000 |
commit | de7092b8a3f863bd974e76f88358a779ba20a6e2 (patch) | |
tree | 03f702815e25502608f42cd3276e15b8b4b49a83 /util/inteltool/gpio.c | |
parent | ec0551c6b061d0bef1f9a8ec3027f7eabd088cbb (diff) | |
download | coreboot-de7092b8a3f863bd974e76f88358a779ba20a6e2.tar.xz |
inteltool/gpio: Add support for new Lewisburg chipsets
- Add SKUs and Super SKUs of new Lewisburg series chipsets:
C621A, C627A, C629A [1].
- These changes allow the utility to generate the GPIO config
registers dump.
[1] https://review.coreboot.org/c/coreboot/+/40395
Change-Id: I9b63c0a3860a901e58af0c0d5184361661bab5e3
Signed-off-by: Maxim Polyakov <max.senia.poliak@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/43534
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/inteltool/gpio.c')
-rw-r--r-- | util/inteltool/gpio.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util/inteltool/gpio.c b/util/inteltool/gpio.c index b4f3edad15..91f8ebdab9 100644 --- a/util/inteltool/gpio.c +++ b/util/inteltool/gpio.c @@ -1045,11 +1045,17 @@ int print_gpios(struct pci_dev *sb, int show_all, int show_diffs) case PCI_DEVICE_ID_INTEL_C627: case PCI_DEVICE_ID_INTEL_C628: case PCI_DEVICE_ID_INTEL_C629: + case PCI_DEVICE_ID_INTEL_C621A: + case PCI_DEVICE_ID_INTEL_C627A: + case PCI_DEVICE_ID_INTEL_C629A: case PCI_DEVICE_ID_INTEL_C624_SUPER: case PCI_DEVICE_ID_INTEL_C627_SUPER_1: case PCI_DEVICE_ID_INTEL_C621_SUPER: case PCI_DEVICE_ID_INTEL_C627_SUPER_2: case PCI_DEVICE_ID_INTEL_C628_SUPER: + case PCI_DEVICE_ID_INTEL_C621A_SUPER: + case PCI_DEVICE_ID_INTEL_C627A_SUPER: + case PCI_DEVICE_ID_INTEL_C629A_SUPER: case PCI_DEVICE_ID_INTEL_H310: case PCI_DEVICE_ID_INTEL_H370: case PCI_DEVICE_ID_INTEL_Z390: |