intel: Add support for ADL-N
Add ADL-N platform support and PCIIDs Align with kernel commit: 7e28d0b26759 ("drm/i915/adl-n: Enable ADL-N platform") Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Signed-off-by: Tejas Upadhyay <tejaskumarx.surendrakumar.upadhyay@intel.com>main
parent
287cdb0390
commit
440e2d7a34
|
@ -666,6 +666,12 @@
|
|||
INTEL_VGA_DEVICE(0x46C2, info), \
|
||||
INTEL_VGA_DEVICE(0x46C3, info)
|
||||
|
||||
/* ADL-N */
|
||||
#define INTEL_ADLN_IDS(info) \
|
||||
INTEL_VGA_DEVICE(0x46D0, info), \
|
||||
INTEL_VGA_DEVICE(0x46D1, info), \
|
||||
INTEL_VGA_DEVICE(0x46D2, info)
|
||||
|
||||
/* RPL-S */
|
||||
#define INTEL_RPLS_IDS(info) \
|
||||
INTEL_VGA_DEVICE(0xA780, info), \
|
||||
|
|
|
@ -36,6 +36,7 @@ static const struct pci_device {
|
|||
} pciids[] = {
|
||||
/* Keep ids sorted by gen; latest gen first */
|
||||
INTEL_RPLS_IDS(12),
|
||||
INTEL_ADLN_IDS(12),
|
||||
INTEL_ADLP_IDS(12),
|
||||
INTEL_ADLS_IDS(12),
|
||||
INTEL_RKL_IDS(12),
|
||||
|
|
Loading…
Reference in New Issue