From d257494ec4d826aec8841845479215820e612917 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Fri, 25 Mar 2022 12:03:08 -0700 Subject: [PATCH] intel/dev: Add device info for RPL-P Cc: mesa-stable Ref: https://patchwork.freedesktop.org/series/102701/ Signed-off-by: Jordan Justen Reviewed-by: Lionel Landwerlin Part-of: --- include/pci_ids/iris_pci_ids.h | 7 +++++++ src/intel/dev/intel_device_info.c | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/include/pci_ids/iris_pci_ids.h b/include/pci_ids/iris_pci_ids.h index 6d4bfa7..4bdd514 100644 --- a/include/pci_ids/iris_pci_ids.h +++ b/include/pci_ids/iris_pci_ids.h @@ -209,6 +209,13 @@ CHIPSET(0xa783, rpl, "RPL-S", "Intel(R) Graphics") CHIPSET(0xa788, rpl, "RPL-S", "Intel(R) Graphics") CHIPSET(0xa789, rpl, "RPL-S", "Intel(R) Graphics") +CHIPSET(0xa720, rpl_p, "RPL-P", "Intel(R) Graphics") +CHIPSET(0xa721, rpl_p, "RPL-P", "Intel(R) Graphics") +CHIPSET(0xa7a0, rpl_p, "RPL-P", "Intel(R) Graphics") +CHIPSET(0xa7a1, rpl_p, "RPL-P", "Intel(R) Graphics") +CHIPSET(0xa7a8, rpl_p, "RPL-P", "Intel(R) Graphics") +CHIPSET(0xa7a9, rpl_p, "RPL-P", "Intel(R) Graphics") + CHIPSET(0x4905, dg1, "DG1", "Intel(R) Graphics") CHIPSET(0x4906, dg1, "DG1", "Intel(R) Graphics") CHIPSET(0x4907, sg1, "SG1", "Intel(R) Graphics") diff --git a/src/intel/dev/intel_device_info.c b/src/intel/dev/intel_device_info.c index 42938e3..2f07ba1 100644 --- a/src/intel/dev/intel_device_info.c +++ b/src/intel/dev/intel_device_info.c @@ -1029,6 +1029,12 @@ static const struct intel_device_info intel_device_info_rpl = { .platform = INTEL_PLATFORM_RPL, }; +static const struct intel_device_info intel_device_info_rpl_p = { + GFX12_GT_FEATURES(2), + .platform = INTEL_PLATFORM_RPL, + .display_ver = 13, +}; + #define GFX12_DG1_SG1_FEATURES \ GFX12_GT_FEATURES(2), \ .platform = INTEL_PLATFORM_DG1, \ -- 2.7.4