From f8011107063014faf7342d59dbcf969cab64ae97 Mon Sep 17 00:00:00 2001 From: Zhang Yubing Date: Thu, 14 Aug 2025 11:54:00 +0800 Subject: [PATCH] drm/rockchip: dw-dp: fix rk3576 dp port max output height value The rk3576 dp port max output height value is the same as vop port. The detail config value as follow: DP0 is the same as VP0, set the max output height as 4096; DP1 is the same as VP1, set the max output height as 2560; DP2 is the same as VP2, set the max output height as 1920; Change-Id: Ie96cd8aba47ff5f4070ea902abd535a70e5608b4 Signed-off-by: Zhang Yubing --- drivers/gpu/drm/rockchip/dw-dp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/rockchip/dw-dp.c b/drivers/gpu/drm/rockchip/dw-dp.c index 44afcc3b4fbe..1feecb297866 100644 --- a/drivers/gpu/drm/rockchip/dw-dp.c +++ b/drivers/gpu/drm/rockchip/dw-dp.c @@ -6112,17 +6112,17 @@ static const struct dw_dp_chip_data rk3576_dp[] = { .caps = { { .max_hactive = 4096, - .max_vactive = 2160, + .max_vactive = 4096, .max_pixel_clock = 1188000, }, { .max_hactive = 2560, - .max_vactive = 1440, + .max_vactive = 2560, .max_pixel_clock = 300000, }, { .max_hactive = 1920, - .max_vactive = 1080, + .max_vactive = 1920, .max_pixel_clock = 150000, },