aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-04-27 11:25:54 +0200
committerNico Huber <nico.h@gmx.de>2021-04-28 14:14:46 +0000
commit49c20c00e43bf28bbe6d20a9863212d597fdc33c (patch)
tree41b654c6c59a6c4606c95ab9c7d581ba37d66f6d
parentb45a769939a7c7b6016a29bf1c27c9794453c9f4 (diff)
soc/intel: Add Z370, H310C and B365 device IDs
Intel document 335192-004 contains the PCI device IDs for Z370 and H310C, but lacks the ID for B365. The ID appears on some websites: https://linux-hardware.org/index.php?id=pci:8086-a2cc-1849-a2cc Change-Id: Iea3c435713c46854c5271fbc266f47ba4573db52 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/52703 Reviewed-by: Timofey Komarov <happycorsair@yandex.ru> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Felix Singer <felixsinger@posteo.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/include/device/pci_ids.h3
-rw-r--r--src/soc/intel/common/block/lpc/lpc.c3
-rw-r--r--src/soc/intel/skylake/bootblock/report_platform.c3
3 files changed, 9 insertions, 0 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h
index 496745b0b0..a3ee558f76 100644
--- a/src/include/device/pci_ids.h
+++ b/src/include/device/pci_ids.h
@@ -2856,6 +2856,9 @@
#define PCI_DEVICE_ID_INTEL_UPT_H_Q270 0xa2c6
#define PCI_DEVICE_ID_INTEL_UPT_H_Q250 0xa2c7
#define PCI_DEVICE_ID_INTEL_UPT_H_B250 0xa2c8
+#define PCI_DEVICE_ID_INTEL_UPT_H_Z370 0xa2c9
+#define PCI_DEVICE_ID_INTEL_UPT_H_H310C 0xa2ca
+#define PCI_DEVICE_ID_INTEL_UPT_H_B365 0xa2cc
#define PCI_DEVICE_ID_INTEL_SPT_LP_Y_PREMIUM_HDCP22 0x9d4b
#define PCI_DEVICE_ID_INTEL_SPT_LP_U_PREMIUM_HDCP22 0x9d4e
#define PCI_DEVICE_ID_INTEL_SPT_LP_U_BASE_HDCP22 0x9d50
diff --git a/src/soc/intel/common/block/lpc/lpc.c b/src/soc/intel/common/block/lpc/lpc.c
index 0fb627adad..00a2bc785f 100644
--- a/src/soc/intel/common/block/lpc/lpc.c
+++ b/src/soc/intel/common/block/lpc/lpc.c
@@ -149,6 +149,9 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_UPT_H_Z270,
PCI_DEVICE_ID_INTEL_UPT_H_Q250,
PCI_DEVICE_ID_INTEL_UPT_H_B250,
+ PCI_DEVICE_ID_INTEL_UPT_H_Z370,
+ PCI_DEVICE_ID_INTEL_UPT_H_H310C,
+ PCI_DEVICE_ID_INTEL_UPT_H_B365,
PCI_DEVICE_ID_INTEL_SPT_LP_Y_PREMIUM_HDCP22,
PCI_DEVICE_ID_INTEL_SPT_LP_U_PREMIUM_HDCP22,
PCI_DEVICE_ID_INTEL_SPT_LP_U_BASE_HDCP22,
diff --git a/src/soc/intel/skylake/bootblock/report_platform.c b/src/soc/intel/skylake/bootblock/report_platform.c
index c1b993a431..df3d4c83f1 100644
--- a/src/soc/intel/skylake/bootblock/report_platform.c
+++ b/src/soc/intel/skylake/bootblock/report_platform.c
@@ -78,6 +78,9 @@ static struct {
{ PCI_DEVICE_ID_INTEL_UPT_H_Z270, "Z270" },
{ PCI_DEVICE_ID_INTEL_UPT_H_B250, "B250" },
{ PCI_DEVICE_ID_INTEL_UPT_H_Q250, "Q250" },
+ { PCI_DEVICE_ID_INTEL_UPT_H_Z370, "Z370" },
+ { PCI_DEVICE_ID_INTEL_UPT_H_H310C, "H310C" },
+ { PCI_DEVICE_ID_INTEL_UPT_H_B365, "B365" },
{ PCI_DEVICE_ID_INTEL_UPT_LP_U_BASE, "Kabylake-U Base" },
{ PCI_DEVICE_ID_INTEL_UPT_LP_U_PREMIUM, "Kabylake-U Premium" },
{ PCI_DEVICE_ID_INTEL_UPT_LP_Y_PREMIUM, "Kabylake-Y Premium" },