Mesa (main): intel/dev: Add device ids for ADL-N

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Jan 25 11:56:20 UTC 2022


Module: Mesa
Branch: main
Commit: 03cc5a8295e239b45623c89faac88030b33a4a14
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=03cc5a8295e239b45623c89faac88030b33a4a14

Author: Jordan Justen <jordan.l.justen at intel.com>
Date:   Sun Jan 23 01:28:52 2022 -0800

intel/dev: Add device ids for ADL-N

Ref: https://cgit.freedesktop.org/drm/drm-tip/commit/?id=7e28d0b26759846485978ada860ef4a427e06c8f
Signed-off-by: Jordan Justen <jordan.l.justen at intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14666>

---

 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,



More information about the mesa-commit mailing list