summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorNemesa Garg <nemesa.garg@intel.com>2025-08-13 08:20:17 +0300
committerAnimesh Manna <animesh.manna@intel.com>2025-09-19 11:37:55 +0300
commitcef58ce505a04a896d59cb207f0a0ccea1eec5ca (patch)
tree6057545b4cd2f1b68043d77b2ddceb9577a8f8c5 /drivers
parent4c26361cc68f72299a8d0eea48734e39eb3b78b3 (diff)
downloadlinux-cef58ce505a04a896d59cb207f0a0ccea1eec5ca.tar.xz
drm/i915: Soft defeature of cursor size reduction
From display 14 onward do not enable the cursor size reduction bit as it has been defeatured. Bspec: 50372 Signed-off-by: Nemesa Garg <nemesa.garg@intel.com> Reviewed-by: Chaitanya Kumar Borah <chaitanya.kumar.borah@intel.com> Signed-off-by: Animesh Manna <animesh.manna@intel.com> Link: https://lore.kernel.org/r/20250813052017.3591331-1-nemesa.garg@intel.com
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/i915/display/intel_cursor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
index d4d181f9dca5..c47c84935871 100644
--- a/drivers/gpu/drm/i915/display/intel_cursor.c
+++ b/drivers/gpu/drm/i915/display/intel_cursor.c
@@ -662,7 +662,7 @@ static void i9xx_cursor_update_arm(struct intel_dsb *dsb,
cntl = plane_state->ctl |
i9xx_cursor_ctl_crtc(crtc_state);
- if (width != height)
+ if (DISPLAY_VER(display) < 14 && width != height)
fbc_ctl = CUR_FBC_EN | CUR_FBC_HEIGHT(height - 1);
base = plane_state->surf;