Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/exynos/mixer: enable HDMI-PHY before configuring MIXER

According to documentation HDMI-PHY must be on prior to MIXER configuration.

Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>

authored by

Andrzej Hajda and committed by
Inki Dae
a121d179 c60230eb

+4
+4
drivers/gpu/drm/exynos/exynos_mixer.c
··· 1065 1065 1066 1066 pm_runtime_get_sync(ctx->dev); 1067 1067 1068 + exynos_drm_pipe_clk_enable(crtc, true); 1069 + 1068 1070 mixer_vsync_set_update(ctx, false); 1069 1071 1070 1072 mixer_reg_writemask(res, MXR_STATUS, ~0, MXR_STATUS_SOFT_RESET); ··· 1095 1093 1096 1094 for (i = 0; i < MIXER_WIN_NR; i++) 1097 1095 mixer_disable_plane(crtc, &ctx->planes[i]); 1096 + 1097 + exynos_drm_pipe_clk_enable(crtc, false); 1098 1098 1099 1099 pm_runtime_put(ctx->dev); 1100 1100