summaryrefslogtreecommitdiff
path: root/src/soc/intel
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2024-07-17 10:36:03 +0000
committerSubrata Banik <subratabanik@google.com>2024-07-19 03:55:29 +0000
commitc27ccb98b59c8c3040662630f0be78727bd91eff (patch)
treeeee1b2f9e3114b958e32a0c65747867fa9477c89 /src/soc/intel
parent42c1f9c5fa24da7a932c0c1e66db3d683c99077b (diff)
device/pci_ids: Add new Intel PTL device IDs for SMBUS
This patch adds new SMBUS PCI device IDs for Intel PTL-U and PTL-H. Additionally, updates the SMBUS driver's `pci_device_ids` list to include these new IDs. Source: Intel PTL-EDS vol 1. Document Number 815002, Rev 0.51 Chapter 2 BUG=b:347669091 TEST=Able to build google/fatcat. Change-Id: I4b8b59cf4e005f0e17a25d0fbe761404dab432b3 Signed-off-by: Subrata Banik <subratabanik@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/83512 Reviewed-by: Eric Lai <ericllai@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/intel')
-rw-r--r--src/soc/intel/common/block/smbus/smbus.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/smbus/smbus.c b/src/soc/intel/common/block/smbus/smbus.c
index 7f87a523e8..37e0cd2305 100644
--- a/src/soc/intel/common/block/smbus/smbus.c
+++ b/src/soc/intel/common/block/smbus/smbus.c
@@ -49,7 +49,8 @@ struct device_operations smbus_ops = {
};
static const unsigned short pci_device_ids[] = {
- PCI_DID_INTEL_PTL_SMBUS,
+ PCI_DID_INTEL_PTL_H_SMBUS,
+ PCI_DID_INTEL_PTL_U_H_SMBUS,
PCI_DID_INTEL_LNL_SMBUS,
PCI_DID_INTEL_MTL_SMBUS,
PCI_DID_INTEL_RPP_P_SMBUS,