mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
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 <yubing.zhang@rock-chips.com>
This commit is contained in:
@@ -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,
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user