From: Greg Kroah-Hartman Date: Tue, 18 Feb 2025 14:29:38 +0000 (+0100) Subject: 6.13-stable patches X-Git-Tag: v6.1.129~41 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6b7756739fa821dba8c46dc2fcf598ef7ff385db;p=thirdparty%2Fkernel%2Fstable-queue.git 6.13-stable patches added patches: drm-renesas-rz-du-increase-supported-resolutions.patch --- diff --git a/queue-6.13/drm-renesas-rz-du-increase-supported-resolutions.patch b/queue-6.13/drm-renesas-rz-du-increase-supported-resolutions.patch new file mode 100644 index 0000000000..ee3bd333b3 --- /dev/null +++ b/queue-6.13/drm-renesas-rz-du-increase-supported-resolutions.patch @@ -0,0 +1,41 @@ +From 226570680bbde0a698f2985db20d9faf4f23cc6e Mon Sep 17 00:00:00 2001 +From: Chris Brandt +Date: Wed, 20 Nov 2024 10:03:28 -0500 +Subject: drm: renesas: rz-du: Increase supported resolutions + +From: Chris Brandt + +commit 226570680bbde0a698f2985db20d9faf4f23cc6e upstream. + +The supported resolutions were misrepresented in earlier versions of +hardware manuals. + +Fixes: 768e9e61b3b9 ("drm: renesas: Add RZ/G2L DU Support") +Cc: stable@vger.kernel.org +Signed-off-by: Chris Brandt +Tested-by: Hugo Villeneuve +Reviewed-by: Biju Das +Signed-off-by: Biju Das +Link: https://patchwork.freedesktop.org/patch/msgid/20241120150328.4131525-1-chris.brandt@renesas.com +Signed-off-by: Greg Kroah-Hartman +--- + drivers/gpu/drm/renesas/rz-du/rzg2l_du_kms.c | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +--- a/drivers/gpu/drm/renesas/rz-du/rzg2l_du_kms.c ++++ b/drivers/gpu/drm/renesas/rz-du/rzg2l_du_kms.c +@@ -311,11 +311,11 @@ int rzg2l_du_modeset_init(struct rzg2l_d + dev->mode_config.helper_private = &rzg2l_du_mode_config_helper; + + /* +- * The RZ DU uses the VSP1 for memory access, and is limited +- * to frame sizes of 1920x1080. ++ * The RZ DU was designed to support a frame size of 1920x1200 (landscape) ++ * or 1200x1920 (portrait). + */ + dev->mode_config.max_width = 1920; +- dev->mode_config.max_height = 1080; ++ dev->mode_config.max_height = 1920; + + rcdu->num_crtcs = hweight8(rcdu->info->channels_mask); + diff --git a/queue-6.13/series b/queue-6.13/series index c8f1c8ee9f..ffd43d8d50 100644 --- a/queue-6.13/series +++ b/queue-6.13/series @@ -259,3 +259,4 @@ drm-msm-dpu1-don-t-choke-on-disabling-the-writeback-connector.patch drm-v3d-stop-active-perfmon-if-it-is-being-destroyed.patch drm-zynqmp_dp-fix-integer-overflow-in-zynqmp_dp_rate_get.patch drm-xe-tracing-fix-a-potential-tp_printk-uaf.patch +drm-renesas-rz-du-increase-supported-resolutions.patch