Skip to content

Commit 2265706

Browse files
seebebijudas
authored andcommitted
drm: renesas: rz-du: Increase supported resolutions
The supported resolutions were misrepresented in earlier versions of hardware manuals. Fixes: 768e9e6 ("drm: renesas: Add RZ/G2L DU Support") Cc: [email protected] Signed-off-by: Chris Brandt <[email protected]> Tested-by: Hugo Villeneuve <[email protected]> Reviewed-by: Biju Das <[email protected]> Signed-off-by: Biju Das <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 3aba2eb commit 2265706

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/gpu/drm/renesas/rz-du/rzg2l_du_kms.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,11 +311,11 @@ int rzg2l_du_modeset_init(struct rzg2l_du_device *rcdu)
311311
dev->mode_config.helper_private = &rzg2l_du_mode_config_helper;
312312

313313
/*
314-
* The RZ DU uses the VSP1 for memory access, and is limited
315-
* to frame sizes of 1920x1080.
314+
* The RZ DU was designed to support a frame size of 1920x1200 (landscape)
315+
* or 1200x1920 (portrait).
316316
*/
317317
dev->mode_config.max_width = 1920;
318-
dev->mode_config.max_height = 1080;
318+
dev->mode_config.max_height = 1920;
319319

320320
rcdu->num_crtcs = hweight8(rcdu->info->channels_mask);
321321

0 commit comments

Comments
 (0)