From 03cc5a8295e239b45623c89faac88030b33a4a14 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Sun, 23 Jan 2022 01:28:52 -0800 Subject: [PATCH] intel/dev: Add device ids for ADL-N Ref: https://cgit.freedesktop.org/drm/drm-tip/commit/?id=7e28d0b26759846485978ada860ef4a427e06c8f Signed-off-by: Jordan Justen Reviewed-by: Lionel Landwerlin Part-of: --- include/pci_ids/iris_pci_ids.h | 4 ++++ src/intel/dev/intel_device_info.c | 6 ++++++ 2 files changed, 10 insertions(+) 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,