intel/dev: Set display_ver = 13 on all ADL/RPL/DG2

display_ver doesn't seem to be used anywhere, but if that were to
change, we'd want this to be consistent.

Fixes: c746bf4c5c8 ("intel/dev: Add display_ver and set adl-p to 13")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19354>
(cherry picked from commit 3ef88cd0a2de26e56def43db969f98c80235f065)
This commit is contained in:
Matt Turner 2022-10-27 13:07:02 -04:00 committed by Dylan Baker
parent 511013d313
commit 633ebd0c22
2 changed files with 5 additions and 1 deletions

View File

@ -2128,7 +2128,7 @@
"description": "intel/dev: Set display_ver = 13 on all ADL/RPL/DG2",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "c746bf4c5c811d7d5614ca13504e6412ac13e911"
},

View File

@ -1007,11 +1007,13 @@ static const struct intel_device_info intel_device_info_rkl_gt1 = {
static const struct intel_device_info intel_device_info_adl_gt05 = {
GFX12_GT05_FEATURES,
.platform = INTEL_PLATFORM_ADL,
.display_ver = 13,
};
static const struct intel_device_info intel_device_info_adl_gt1 = {
GFX12_GT_FEATURES(1),
.platform = INTEL_PLATFORM_ADL,
.display_ver = 13,
};
static const struct intel_device_info intel_device_info_adl_n = {
@ -1030,6 +1032,7 @@ static const struct intel_device_info intel_device_info_rpl = {
GFX12_FEATURES(1, 1, 4),
.num_subslices = dual_subslices(2),
.platform = INTEL_PLATFORM_RPL,
.display_ver = 13,
};
static const struct intel_device_info intel_device_info_rpl_p = {
@ -1067,6 +1070,7 @@ static const struct intel_device_info intel_device_info_sg1 = {
#define DG2_FEATURES \
/* (Sub)slice info comes from the kernel topology info */ \
XEHP_FEATURES(0, 1, 0), \
.display_ver = 13, \
.revision = 4, /* For offline compiler */ \
.num_subslices = dual_subslices(1), \
.has_lsc = true, \