From: Ondrej Jirman Date: Tue, 16 Nov 2021 21:19:42 +0100 Subject: [PATCH 08/36] drm: panel: hx8394: Fix mode clock for the pinephone pro panel The actual rate that was set by CRU was 66.333 MHz The panel does not actually work at 69 MHz, now that CRU can generate the requested clock rate precisely. Change the clock rate. Signed-off-by: Ondrej Jirman --- drivers/gpu/drm/panel/panel-himax-hx8394.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/panel/panel-himax-hx8394.c b/drivers/gpu/drm/panel/panel-himax-hx8394.c index 2f69b94..7a2f74a 100644 --- a/drivers/gpu/drm/panel/panel-himax-hx8394.c +++ b/drivers/gpu/drm/panel/panel-himax-hx8394.c @@ -101,7 +101,7 @@ static const struct drm_display_mode hsd060bhw4_mode = { .vsync_start = 1440 + 18, .vsync_end = 1440 + 18 + 10, .vtotal = 1440 + 18 + 10 + 17, - .clock = 69000, + .clock = 66000, /*XXX: only 66MHz works */ .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC, .width_mm = 68, .height_mm = 136,