inteltool: Add GPIO support for Skylake-H chipsets
PCH IDs: - H170, Z170, Q170, Q150, C232, QM170, HM170 Used documents: - Intel 332690-005EN Change-Id: I33bf67c0c9d8a5a079fcc78f24a43bc421b2910c Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34618 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
7706a04c60
commit
f98dc48386
|
@ -1025,9 +1025,16 @@ int print_gpios(struct pci_dev *sb, int show_all, int show_diffs)
|
||||||
size = ARRAY_SIZE(baytrail_score_ssus_gpio_registers);
|
size = ARRAY_SIZE(baytrail_score_ssus_gpio_registers);
|
||||||
break;
|
break;
|
||||||
case PCI_DEVICE_ID_INTEL_H110:
|
case PCI_DEVICE_ID_INTEL_H110:
|
||||||
|
case PCI_DEVICE_ID_INTEL_H170:
|
||||||
|
case PCI_DEVICE_ID_INTEL_Z170:
|
||||||
|
case PCI_DEVICE_ID_INTEL_Q170:
|
||||||
|
case PCI_DEVICE_ID_INTEL_Q150:
|
||||||
case PCI_DEVICE_ID_INTEL_B150:
|
case PCI_DEVICE_ID_INTEL_B150:
|
||||||
case PCI_DEVICE_ID_INTEL_CM236:
|
|
||||||
case PCI_DEVICE_ID_INTEL_C236:
|
case PCI_DEVICE_ID_INTEL_C236:
|
||||||
|
case PCI_DEVICE_ID_INTEL_C232:
|
||||||
|
case PCI_DEVICE_ID_INTEL_QM170:
|
||||||
|
case PCI_DEVICE_ID_INTEL_HM170:
|
||||||
|
case PCI_DEVICE_ID_INTEL_CM236:
|
||||||
case PCI_DEVICE_ID_INTEL_APL_LPC:
|
case PCI_DEVICE_ID_INTEL_APL_LPC:
|
||||||
case PCI_DEVICE_ID_INTEL_DNV_LPC:
|
case PCI_DEVICE_ID_INTEL_DNV_LPC:
|
||||||
case PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_PRE:
|
case PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_PRE:
|
||||||
|
|
|
@ -1773,9 +1773,16 @@ void print_gpio_groups(struct pci_dev *const sb)
|
||||||
|
|
||||||
switch (sb->device_id) {
|
switch (sb->device_id) {
|
||||||
case PCI_DEVICE_ID_INTEL_H110:
|
case PCI_DEVICE_ID_INTEL_H110:
|
||||||
|
case PCI_DEVICE_ID_INTEL_H170:
|
||||||
|
case PCI_DEVICE_ID_INTEL_Z170:
|
||||||
|
case PCI_DEVICE_ID_INTEL_Q170:
|
||||||
|
case PCI_DEVICE_ID_INTEL_Q150:
|
||||||
case PCI_DEVICE_ID_INTEL_B150:
|
case PCI_DEVICE_ID_INTEL_B150:
|
||||||
case PCI_DEVICE_ID_INTEL_CM236:
|
|
||||||
case PCI_DEVICE_ID_INTEL_C236:
|
case PCI_DEVICE_ID_INTEL_C236:
|
||||||
|
case PCI_DEVICE_ID_INTEL_C232:
|
||||||
|
case PCI_DEVICE_ID_INTEL_QM170:
|
||||||
|
case PCI_DEVICE_ID_INTEL_HM170:
|
||||||
|
case PCI_DEVICE_ID_INTEL_CM236:
|
||||||
community_count = ARRAY_SIZE(sunrise_communities);
|
community_count = ARRAY_SIZE(sunrise_communities);
|
||||||
communities = sunrise_communities;
|
communities = sunrise_communities;
|
||||||
pcr_init(sb);
|
pcr_init(sb);
|
||||||
|
|
Loading…
Reference in New Issue