diff --git a/include/pci_ids/iris_pci_ids.h b/include/pci_ids/iris_pci_ids.h index b70f84d9511..ba1ed77f411 100644 --- a/include/pci_ids/iris_pci_ids.h +++ b/include/pci_ids/iris_pci_ids.h @@ -186,6 +186,10 @@ CHIPSET(0x46c1, adl_gt2, "ADL GT2", "Intel(R) Graphics") CHIPSET(0x46c2, adl_gt2, "ADL GT2", "Intel(R) Graphics") CHIPSET(0x46c3, adl_gt2, "ADL GT2", "Intel(R) Graphics") +CHIPSET(0x46d0, adl_n, "ADL-N", "Intel(R) Graphics") +CHIPSET(0x46d1, adl_n, "ADL-N", "Intel(R) Graphics") +CHIPSET(0x46d2, adl_n, "ADL-N", "Intel(R) Graphics") + CHIPSET(0x9A40, tgl_gt2, "TGL GT2", "Intel(R) Xe Graphics") CHIPSET(0x9A49, tgl_gt2, "TGL GT2", "Intel(R) Xe Graphics") CHIPSET(0x9A59, tgl_gt2, "TGL GT2", "Intel(R) Graphics") diff --git a/src/intel/dev/intel_device_info.c b/src/intel/dev/intel_device_info.c index 64f73d64f6c..d41d5ca3598 100644 --- a/src/intel/dev/intel_device_info.c +++ b/src/intel/dev/intel_device_info.c @@ -1010,6 +1010,12 @@ static const struct intel_device_info intel_device_info_adl_gt1 = { .platform = INTEL_PLATFORM_ADL, }; +static const struct intel_device_info intel_device_info_adl_n = { + GFX12_GT_FEATURES(1), + .platform = INTEL_PLATFORM_ADL, + .display_ver = 13, +}; + static const struct intel_device_info intel_device_info_adl_gt2 = { GFX12_GT_FEATURES(2), .platform = INTEL_PLATFORM_ADL,