intel: Add support for RPLP

Add RPLP platform support and PCIIDs

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Tejas Upadhyay <tejaskumarx.surendrakumar.upadhyay@intel.com>
Signed-off-by: Raviteja Goud Talla <ravitejax.goud.talla@intel.com>
main
Tejas Upadhyay 2022-04-21 22:34:52 +05:30 committed by Raviteja Goud Talla
parent 62e25c8baa
commit d95b12e7e3
2 changed files with 11 additions and 1 deletions

View File

@ -666,6 +666,15 @@
INTEL_VGA_DEVICE(0x46C2, info), \ INTEL_VGA_DEVICE(0x46C2, info), \
INTEL_VGA_DEVICE(0x46C3, 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 */ /* ADL-N */
#define INTEL_ADLN_IDS(info) \ #define INTEL_ADLN_IDS(info) \
INTEL_VGA_DEVICE(0x46D0, info), \ INTEL_VGA_DEVICE(0x46D0, info), \

View File

@ -35,9 +35,10 @@ static const struct pci_device {
uint16_t gen; uint16_t gen;
} pciids[] = { } pciids[] = {
/* Keep ids sorted by gen; latest gen first */ /* Keep ids sorted by gen; latest gen first */
INTEL_RPLS_IDS(12),
INTEL_ADLN_IDS(12), INTEL_ADLN_IDS(12),
INTEL_RPLP_IDS(12),
INTEL_ADLP_IDS(12), INTEL_ADLP_IDS(12),
INTEL_RPLS_IDS(12),
INTEL_ADLS_IDS(12), INTEL_ADLS_IDS(12),
INTEL_RKL_IDS(12), INTEL_RKL_IDS(12),
INTEL_DG1_IDS(12), INTEL_DG1_IDS(12),