aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/imx/dw_hdmi-imx.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/imx/dw_hdmi-imx.c')
-rw-r--r--drivers/gpu/drm/imx/dw_hdmi-imx.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/gpu/drm/imx/dw_hdmi-imx.c b/drivers/gpu/drm/imx/dw_hdmi-imx.c
index 1834ac8998cc..a3ecf1069b76 100644
--- a/drivers/gpu/drm/imx/dw_hdmi-imx.c
+++ b/drivers/gpu/drm/imx/dw_hdmi-imx.c
@@ -75,10 +75,10 @@ static const struct dw_hdmi_curr_ctrl imx_cur_ctr[] = {
75 }, 75 },
76}; 76};
77 77
78static const struct dw_hdmi_sym_term imx_sym_term[] = { 78static const struct dw_hdmi_phy_config imx_phy_config[] = {
79 /*pixelclk symbol term*/ 79 /*pixelclk symbol term vlev */
80 { 148500000, 0x800d, 0x0005 }, 80 { 148500000, 0x800d, 0x0005, 0x01ad},
81 { ~0UL, 0x0000, 0x0000 } 81 { ~0UL, 0x0000, 0x0000, 0x0000}
82}; 82};
83 83
84static int dw_hdmi_imx_parse_dt(struct imx_hdmi *hdmi) 84static int dw_hdmi_imx_parse_dt(struct imx_hdmi *hdmi)
@@ -163,7 +163,7 @@ static enum drm_mode_status imx6dl_hdmi_mode_valid(struct drm_connector *con,
163static struct dw_hdmi_plat_data imx6q_hdmi_drv_data = { 163static struct dw_hdmi_plat_data imx6q_hdmi_drv_data = {
164 .mpll_cfg = imx_mpll_cfg, 164 .mpll_cfg = imx_mpll_cfg,
165 .cur_ctr = imx_cur_ctr, 165 .cur_ctr = imx_cur_ctr,
166 .sym_term = imx_sym_term, 166 .phy_config = imx_phy_config,
167 .dev_type = IMX6Q_HDMI, 167 .dev_type = IMX6Q_HDMI,
168 .mode_valid = imx6q_hdmi_mode_valid, 168 .mode_valid = imx6q_hdmi_mode_valid,
169}; 169};
@@ -171,7 +171,7 @@ static struct dw_hdmi_plat_data imx6q_hdmi_drv_data = {
171static struct dw_hdmi_plat_data imx6dl_hdmi_drv_data = { 171static struct dw_hdmi_plat_data imx6dl_hdmi_drv_data = {
172 .mpll_cfg = imx_mpll_cfg, 172 .mpll_cfg = imx_mpll_cfg,
173 .cur_ctr = imx_cur_ctr, 173 .cur_ctr = imx_cur_ctr,
174 .sym_term = imx_sym_term, 174 .phy_config = imx_phy_config,
175 .dev_type = IMX6DL_HDMI, 175 .dev_type = IMX6DL_HDMI,
176 .mode_valid = imx6dl_hdmi_mode_valid, 176 .mode_valid = imx6dl_hdmi_mode_valid,
177}; 177};