diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-05-04 06:07:23 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-05-04 06:07:23 +0000 |
commit | bcee9361cb20d8222aa06a9d5ffd018a96e2cb8c (patch) | |
tree | d0bc3244f30d1a60a267759f7d94f6ec5a724945 | |
parent | f7aec79f0e72aaceb27d3776898b34d856078b71 (diff) |
intel/dev: Add device info for RPL-P
From Jordan Justen
d257494ec4d826aec8841845479215820e612917 in mainline Mesa
-rw-r--r-- | lib/mesa/include/pci_ids/iris_pci_ids.h | 7 | ||||
-rw-r--r-- | lib/mesa/src/intel/dev/intel_device_info.c | 6 |
2 files changed, 13 insertions, 0 deletions
diff --git a/lib/mesa/include/pci_ids/iris_pci_ids.h b/lib/mesa/include/pci_ids/iris_pci_ids.h index 1422c3bb0..c76187eb7 100644 --- a/lib/mesa/include/pci_ids/iris_pci_ids.h +++ b/lib/mesa/include/pci_ids/iris_pci_ids.h @@ -57,6 +57,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/lib/mesa/src/intel/dev/intel_device_info.c b/lib/mesa/src/intel/dev/intel_device_info.c index f987e45fb..7aedabcc8 100644 --- a/lib/mesa/src/intel/dev/intel_device_info.c +++ b/lib/mesa/src/intel/dev/intel_device_info.c @@ -1012,6 +1012,12 @@ static const struct intel_device_info intel_device_info_rpl = { .is_raptorlake = true, }; +static const struct intel_device_info intel_device_info_rpl_p = { + GFX12_GT_FEATURES(2), + .is_raptorlake = true, + .display_ver = 13, +}; + #define GFX12_DG1_SG1_FEATURES \ GFX12_GT_FEATURES(2), \ .is_dg1 = true, \ |