aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorHeikkila, Juha-pekka <juha-pekka.heikkila@intel.com>2024-10-28 12:30:14 -0700
committerMatt Roper <matthew.d.roper@intel.com>2024-10-29 07:36:34 -0700
commitf3759374ad6d96e80d9576e18084d23be682579f (patch)
treee2c8de2f94847378e4cd00910e93c9835e733533
parentdrm/i915/xe3: Underrun recovery does not exist post Xe2 (diff)
downloadwireguard-linux-f3759374ad6d96e80d9576e18084d23be682579f.tar.xz
wireguard-linux-f3759374ad6d96e80d9576e18084d23be682579f.zip
drm/i915/display/xe3: disable x-tiled framebuffers
Xe3 has no more support for x-tile on display. v2: Include up to display 29 for X-tiled support. (Gustavo) Signed-off-by: Heikkila, Juha-pekka <juha-pekka.heikkila@intel.com> Signed-off-by: Matt Atwood <matthew.s.atwood@intel.com> Signed-off-by: Clint Taylor <Clinton.A.Taylor@intel.com> Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com> Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20241028193015.3241858-9-clinton.a.taylor@intel.com
-rw-r--r--drivers/gpu/drm/i915/display/intel_fb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_fb.c b/drivers/gpu/drm/i915/display/intel_fb.c
index 70ced57ab102..e9441bb3d785 100644
--- a/drivers/gpu/drm/i915/display/intel_fb.c
+++ b/drivers/gpu/drm/i915/display/intel_fb.c
@@ -349,7 +349,7 @@ static const struct intel_modifier_desc intel_modifiers[] = {
.plane_caps = INTEL_PLANE_CAP_TILING_Y,
}, {
.modifier = I915_FORMAT_MOD_X_TILED,
- .display_ver = DISPLAY_VER_ALL,
+ .display_ver = { 0, 29 },
.plane_caps = INTEL_PLANE_CAP_TILING_X,
}, {
.modifier = DRM_FORMAT_MOD_LINEAR,