summaryrefslogtreecommitdiff
path: root/src/soc/intel/common/block/graphics
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2024-07-16 14:07:45 +0000
committerSubrata Banik <subratabanik@google.com>2024-07-19 03:54:44 +0000
commita52e8e7b86e7d324bc4a5995f17f4d5dc4768a75 (patch)
tree85c48bea40ed78a6c335d5a45a7c2cbce33007bb /src/soc/intel/common/block/graphics
parent9106a5a346fe6946bcf26b6427f7ace48ed48c44 (diff)
device/pci_ids: Add new Intel PTL device IDs for DID2
This patch adds new DID2 PCI device IDs for Intel PTL-U and PTL-H. Additionally, updates the graphics 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: Iab499070c87e020e36901b4ea453a1893bd16ea0 Signed-off-by: Subrata Banik <subratabanik@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/83491 Reviewed-by: Eric Lai <ericllai@google.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/common/block/graphics')
-rw-r--r--src/soc/intel/common/block/graphics/graphics.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/graphics/graphics.c b/src/soc/intel/common/block/graphics/graphics.c
index 1606b96485..f1e7d7e547 100644
--- a/src/soc/intel/common/block/graphics/graphics.c
+++ b/src/soc/intel/common/block/graphics/graphics.c
@@ -343,7 +343,9 @@ const struct device_operations graphics_ops = {
};
static const unsigned short pci_device_ids[] = {
- PCI_DID_INTEL_PTL_GT2,
+ PCI_DID_INTEL_PTL_U_GT2_1,
+ PCI_DID_INTEL_PTL_H_GT2_1,
+ PCI_DID_INTEL_PTL_H_GT2_2,
PCI_DID_INTEL_LNL_M_GT2,
PCI_DID_INTEL_RPL_U_GT1,
PCI_DID_INTEL_RPL_U_GT2,