diff options
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/alderlake/bootblock/report_platform.c | 6 | ||||
-rw-r--r-- | src/soc/intel/common/block/graphics/graphics.c | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/soc/intel/alderlake/bootblock/report_platform.c b/src/soc/intel/alderlake/bootblock/report_platform.c index 01be2aad50..c4863b9703 100644 --- a/src/soc/intel/alderlake/bootblock/report_platform.c +++ b/src/soc/intel/alderlake/bootblock/report_platform.c @@ -224,7 +224,11 @@ static struct { { PCI_DID_INTEL_RPL_P_GT3, "Raptorlake P GT3" }, { PCI_DID_INTEL_RPL_P_GT4, "Raptorlake P GT4" }, { PCI_DID_INTEL_RPL_P_GT5, "Raptorlake P GT5" }, - { PCI_DID_INTEL_RPL_P_GT6, "Raptorlake P GT6" }, + { PCI_DID_INTEL_RPL_U_GT1, "Raptorlake U GT1" }, + { PCI_DID_INTEL_RPL_U_GT2, "Raptorlake U GT2" }, + { PCI_DID_INTEL_RPL_U_GT3, "Raptorlake U GT3" }, + { PCI_DID_INTEL_RPL_U_GT4, "Raptorlake U GT4" }, + { PCI_DID_INTEL_RPL_U_GT5, "Raptorlake U GT5" }, { PCI_DID_INTEL_RPL_S_GT0, "Raptorlake S GT0" }, { PCI_DID_INTEL_RPL_S_GT1_1, "Raptorlake S GT1" }, { PCI_DID_INTEL_RPL_S_GT1_2, "Raptorlake S GT1" }, diff --git a/src/soc/intel/common/block/graphics/graphics.c b/src/soc/intel/common/block/graphics/graphics.c index 9b48e1d850..69754fdc93 100644 --- a/src/soc/intel/common/block/graphics/graphics.c +++ b/src/soc/intel/common/block/graphics/graphics.c @@ -201,12 +201,16 @@ const struct device_operations graphics_ops = { }; static const unsigned short pci_device_ids[] = { + PCI_DID_INTEL_RPL_U_GT1, + PCI_DID_INTEL_RPL_U_GT2, + PCI_DID_INTEL_RPL_U_GT3, + PCI_DID_INTEL_RPL_U_GT4, + PCI_DID_INTEL_RPL_U_GT5, PCI_DID_INTEL_RPL_P_GT1, PCI_DID_INTEL_RPL_P_GT2, PCI_DID_INTEL_RPL_P_GT3, PCI_DID_INTEL_RPL_P_GT4, PCI_DID_INTEL_RPL_P_GT5, - PCI_DID_INTEL_RPL_P_GT6, PCI_DID_INTEL_MTL_M_GT2, PCI_DID_INTEL_MTL_P_GT2_1, PCI_DID_INTEL_MTL_P_GT2_2, |