diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index b4a8a5331e..bef8609239 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -4366,6 +4366,10 @@ #define PCI_DID_INTEL_ADP_M_CSE1 0x54e1 #define PCI_DID_INTEL_ADP_M_CSE2 0x54e4 #define PCI_DID_INTEL_ADP_M_CSE3 0x54e5 +#define PCI_DID_INTEL_RPP_S_CSE0 0x7a68 +#define PCI_DID_INTEL_RPP_S_CSE1 0x7a69 +#define PCI_DID_INTEL_RPP_S_CSE2 0x7a6c +#define PCI_DID_INTEL_RPP_S_CSE3 0x7a6d #define PCI_DID_INTEL_MTL_CSE0 0x7e70 /* Intel XDCI device Ids */ diff --git a/src/soc/intel/common/block/cse/cse.c b/src/soc/intel/common/block/cse/cse.c index d697c84a97..3d7169cdfb 100644 --- a/src/soc/intel/common/block/cse/cse.c +++ b/src/soc/intel/common/block/cse/cse.c @@ -1336,6 +1336,10 @@ static const unsigned short pci_device_ids[] = { PCI_DID_INTEL_ADP_M_CSE1, PCI_DID_INTEL_ADP_M_CSE2, PCI_DID_INTEL_ADP_M_CSE3, + PCI_DID_INTEL_RPP_S_CSE0, + PCI_DID_INTEL_RPP_S_CSE1, + PCI_DID_INTEL_RPP_S_CSE2, + PCI_DID_INTEL_RPP_S_CSE3, 0, };