summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/device/pci_ids.h5
-rw-r--r--src/soc/intel/elkhartlake/tsn_gbe.c7
2 files changed, 11 insertions, 1 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h
index 79decbe5a3..ddc055fdf2 100644
--- a/src/include/device/pci_ids.h
+++ b/src/include/device/pci_ids.h
@@ -4482,6 +4482,11 @@
#define PCI_DID_INTEL_MTL_CRASHLOG_SRAM 0x7d0d
#define PCI_DID_INTEL_RPL_CPU_CRASHLOG_SRAM 0xa77d
+/* Intel Ethernet Controller device Ids */
+#define PCI_DID_INTEL_EHL_GBE_HOST 0x4B32
+#define PCI_DID_INTEL_EHL_GBE_PSE_0 0x4BA0
+#define PCI_DID_INTEL_EHL_GBE_PSE_1 0x4BB0
+
#define PCI_VID_COMPUTONE 0x8e0e
#define PCI_DID_COMPUTONE_IP2EX 0x0291
#define PCI_DID_COMPUTONE_PG 0x0302
diff --git a/src/soc/intel/elkhartlake/tsn_gbe.c b/src/soc/intel/elkhartlake/tsn_gbe.c
index 4d8944a6b4..a90c4af25e 100644
--- a/src/soc/intel/elkhartlake/tsn_gbe.c
+++ b/src/soc/intel/elkhartlake/tsn_gbe.c
@@ -43,7 +43,12 @@ static struct device_operations gbe_tsn_ops = {
.init = gbe_tsn_init,
};
-static const unsigned short gbe_tsn_device_ids[] = { 0x4b32, 0x4ba0, 0x4bb0, 0 };
+static const unsigned short gbe_tsn_device_ids[] = {
+ PCI_DID_INTEL_EHL_GBE_HOST,
+ PCI_DID_INTEL_EHL_GBE_PSE_0,
+ PCI_DID_INTEL_EHL_GBE_PSE_1,
+ 0
+};
static const struct pci_driver gbe_tsn_driver __pci_driver = {
.ops = &gbe_tsn_ops,