Skip to content

Commit b985905

Browse files
ashinlinjamess-huang
authored andcommitted
HDMI : Refine the clock limitation from 594000 to 300000 to prevent the 4k@59.94Hz show up
We didn't support the 4k@60, so the item 4k@59.94Hz is invalid. Change-Id: I7a7544caf5f5f9b9ecfa56e1422e6d68c242622b Reviewed-on: https://tp-biosrd-v02/gerrit/82102 Reviewed-by: Jamess Huang(黃以民) <Jamess_Huang@asus.com> Tested-by: Jamess Huang(黃以民) <Jamess_Huang@asus.com>
1 parent 58dc6ad commit b985905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/rockchip/rockchip_drm_vop.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2056,7 +2056,7 @@ vop_crtc_mode_valid(struct drm_crtc *crtc, const struct drm_display_mode *mode,
20562056
int request_clock = mode->clock;
20572057
int clock;
20582058

2059-
if (mode->clock >= 594000 || mode->clock <= 27500)
2059+
if (mode->clock >= 300000 || mode->clock <= 27500)
20602060
return MODE_CLOCK_RANGE;
20612061

20622062
if (mode->hdisplay > vop_data->max_output.width)

0 commit comments

Comments
 (0)