We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aba2eb commit 2265706Copy full SHA for 2265706
drivers/gpu/drm/renesas/rz-du/rzg2l_du_kms.c
@@ -311,11 +311,11 @@ int rzg2l_du_modeset_init(struct rzg2l_du_device *rcdu)
311
dev->mode_config.helper_private = &rzg2l_du_mode_config_helper;
312
313
/*
314
- * The RZ DU uses the VSP1 for memory access, and is limited
315
- * to frame sizes of 1920x1080.
+ * The RZ DU was designed to support a frame size of 1920x1200 (landscape)
+ * or 1200x1920 (portrait).
316
*/
317
dev->mode_config.max_width = 1920;
318
- dev->mode_config.max_height = 1080;
+ dev->mode_config.max_height = 1920;
319
320
rcdu->num_crtcs = hweight8(rcdu->info->channels_mask);
321
0 commit comments