diff --git a/intel/i915_pciids.h b/intel/i915_pciids.h index 8076d40c..33017726 100644 --- a/intel/i915_pciids.h +++ b/intel/i915_pciids.h @@ -666,6 +666,15 @@ INTEL_VGA_DEVICE(0x46C2, info), \ INTEL_VGA_DEVICE(0x46C3, info) +/* RPL-P */ +#define INTEL_RPLP_IDS(info) \ + INTEL_VGA_DEVICE(0xA720, info), \ + INTEL_VGA_DEVICE(0xA721, info), \ + INTEL_VGA_DEVICE(0xA7A0, info), \ + INTEL_VGA_DEVICE(0xA7A1, info), \ + INTEL_VGA_DEVICE(0xA7A8, info), \ + INTEL_VGA_DEVICE(0xA7A9, info) + /* ADL-N */ #define INTEL_ADLN_IDS(info) \ INTEL_VGA_DEVICE(0x46D0, info), \ diff --git a/intel/intel_chipset.c b/intel/intel_chipset.c index 99ad04ae..ee8866c1 100644 --- a/intel/intel_chipset.c +++ b/intel/intel_chipset.c @@ -35,9 +35,10 @@ static const struct pci_device { uint16_t gen; } pciids[] = { /* Keep ids sorted by gen; latest gen first */ - INTEL_RPLS_IDS(12), INTEL_ADLN_IDS(12), + INTEL_RPLP_IDS(12), INTEL_ADLP_IDS(12), + INTEL_RPLS_IDS(12), INTEL_ADLS_IDS(12), INTEL_RKL_IDS(12), INTEL_DG1_IDS(12),