mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
intel/dev: Add device info for RPL-P
Cc: mesa-stable
Ref: https://patchwork.freedesktop.org/series/102701/
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16054>
(cherry picked from commit d257494ec4)
This commit is contained in:
parent
2af5c609be
commit
503440f0dc
3 changed files with 14 additions and 1 deletions
|
|
@ -274,7 +274,7 @@
|
|||
"description": "intel/dev: Add device info for RPL-P",
|
||||
"nominated": true,
|
||||
"nomination_type": 0,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": null
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
|
|
@ -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, \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue