From: Ville Syrjälä Date: Thu, 9 Oct 2025 21:13:07 +0000 (+0300) Subject: drm/i915: Implement .min_plane_width() for PTL+ X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=299843cd7b907f55aa8c4f1affe7ec5cf53be691;p=thirdparty%2Fkernel%2Flinux.git drm/i915: Implement .min_plane_width() for PTL+ PTL+ spposedly still has the same plane min width limit as ADL. Check for it. Signed-off-by: Ville Syrjälä Link: https://patch.msgid.link/20251009211313.30234-4-ville.syrjala@linux.intel.com Reviewed-by: Juha-Pekka Heikkila --- diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c index a50d9c48b8cae..34b193d567633 100644 --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c @@ -2819,6 +2819,7 @@ skl_universal_plane_create(struct intel_display *display, intel_fbc_add_plane(skl_plane_fbc(display, pipe, plane_id), plane); if (DISPLAY_VER(display) >= 30) { + plane->min_width = adl_plane_min_width; plane->max_width = xe3_plane_max_width; plane->max_height = icl_plane_max_height; plane->min_cdclk = icl_plane_min_cdclk;