Skip to content
Snippets Groups Projects
Commit 22657068 authored by Chris Brandt's avatar Chris Brandt Committed by Biju Das
Browse files

drm: renesas: rz-du: Increase supported resolutions


The supported resolutions were misrepresented in earlier versions of
hardware manuals.

Fixes: 768e9e61 ("drm: renesas: Add RZ/G2L DU Support")
Cc: stable@vger.kernel.org
Signed-off-by: default avatarChris Brandt <chris.brandt@renesas.com>
Tested-by: default avatarHugo Villeneuve <hvilleneuve@dimonoff.com>
Reviewed-by: default avatarBiju Das <biju.das.jz@bp.renesas.com>
Signed-off-by: default avatarBiju Das <biju.das.jz@bp.renesas.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241120150328.4131525-1-chris.brandt@renesas.com
parent 3aba2eba
Branches
No related tags found
No related merge requests found
...@@ -311,11 +311,11 @@ int rzg2l_du_modeset_init(struct rzg2l_du_device *rcdu) ...@@ -311,11 +311,11 @@ int rzg2l_du_modeset_init(struct rzg2l_du_device *rcdu)
dev->mode_config.helper_private = &rzg2l_du_mode_config_helper; dev->mode_config.helper_private = &rzg2l_du_mode_config_helper;
/* /*
* The RZ DU uses the VSP1 for memory access, and is limited * The RZ DU was designed to support a frame size of 1920x1200 (landscape)
* to frame sizes of 1920x1080. * or 1200x1920 (portrait).
*/ */
dev->mode_config.max_width = 1920; 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); rcdu->num_crtcs = hweight8(rcdu->info->channels_mask);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment