1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2018 Jernej Skrabec <jernej.skrabec@siol.net>
6 #include <linux/delay.h>
7 #include <linux/of_address.h>
8 #include <linux/of_platform.h>
10 #include "sun8i_dw_hdmi.h"
13 * Address can be actually any value. Here is set to same value as
14 * it is set in BSP driver.
18 static const struct dw_hdmi_mpll_config sun50i_h6_mpll_cfg[] = {
106 static const struct dw_hdmi_curr_ctrl sun50i_h6_cur_ctr[] = {
107 /* pixelclk bpp8 bpp10 bpp12 */
108 { 27000000, { 0x0012, 0x0000, 0x0000 }, },
109 { 74250000, { 0x0013, 0x001a, 0x001b }, },
110 { 148500000, { 0x0019, 0x0033, 0x0034 }, },
111 { 297000000, { 0x0019, 0x001b, 0x001b }, },
112 { 594000000, { 0x0010, 0x001b, 0x001b }, },
113 { ~0UL, { 0x0000, 0x0000, 0x0000 }, }
116 static const struct dw_hdmi_phy_config sun50i_h6_phy_config[] = {
117 /*pixelclk symbol term vlev*/
118 { 27000000, 0x8009, 0x0007, 0x02b0 },
119 { 74250000, 0x8009, 0x0006, 0x022d },
120 { 148500000, 0x8029, 0x0006, 0x0270 },
121 { 297000000, 0x8039, 0x0005, 0x01ab },
122 { 594000000, 0x8029, 0x0000, 0x008a },
123 { ~0UL, 0x0000, 0x0000, 0x0000}
126 static int sun8i_hdmi_phy_config_a83t(struct dw_hdmi *hdmi,
127 struct sun8i_hdmi_phy *phy,
128 unsigned int clk_rate)
130 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_REXT_CTRL_REG,
131 SUN8I_HDMI_PHY_REXT_CTRL_REXT_EN,
132 SUN8I_HDMI_PHY_REXT_CTRL_REXT_EN);
135 dw_hdmi_phy_gen2_txpwron(hdmi, 0);
136 dw_hdmi_phy_gen2_pddq(hdmi, 1);
138 dw_hdmi_phy_reset(hdmi);
140 dw_hdmi_phy_gen2_pddq(hdmi, 0);
142 dw_hdmi_phy_i2c_set_addr(hdmi, I2C_ADDR);
145 * Values are taken from BSP HDMI driver. Although AW didn't
146 * release any documentation, explanation of this values can
147 * be found in i.MX 6Dual/6Quad Reference Manual.
149 if (clk_rate <= 27000000) {
150 dw_hdmi_phy_i2c_write(hdmi, 0x01e0, 0x06);
151 dw_hdmi_phy_i2c_write(hdmi, 0x0000, 0x15);
152 dw_hdmi_phy_i2c_write(hdmi, 0x08da, 0x10);
153 dw_hdmi_phy_i2c_write(hdmi, 0x0007, 0x19);
154 dw_hdmi_phy_i2c_write(hdmi, 0x0318, 0x0e);
155 dw_hdmi_phy_i2c_write(hdmi, 0x8009, 0x09);
156 } else if (clk_rate <= 74250000) {
157 dw_hdmi_phy_i2c_write(hdmi, 0x0540, 0x06);
158 dw_hdmi_phy_i2c_write(hdmi, 0x0005, 0x15);
159 dw_hdmi_phy_i2c_write(hdmi, 0x0000, 0x10);
160 dw_hdmi_phy_i2c_write(hdmi, 0x0007, 0x19);
161 dw_hdmi_phy_i2c_write(hdmi, 0x02b5, 0x0e);
162 dw_hdmi_phy_i2c_write(hdmi, 0x8009, 0x09);
163 } else if (clk_rate <= 148500000) {
164 dw_hdmi_phy_i2c_write(hdmi, 0x04a0, 0x06);
165 dw_hdmi_phy_i2c_write(hdmi, 0x000a, 0x15);
166 dw_hdmi_phy_i2c_write(hdmi, 0x0000, 0x10);
167 dw_hdmi_phy_i2c_write(hdmi, 0x0002, 0x19);
168 dw_hdmi_phy_i2c_write(hdmi, 0x0021, 0x0e);
169 dw_hdmi_phy_i2c_write(hdmi, 0x8029, 0x09);
171 dw_hdmi_phy_i2c_write(hdmi, 0x0000, 0x06);
172 dw_hdmi_phy_i2c_write(hdmi, 0x000f, 0x15);
173 dw_hdmi_phy_i2c_write(hdmi, 0x0000, 0x10);
174 dw_hdmi_phy_i2c_write(hdmi, 0x0002, 0x19);
175 dw_hdmi_phy_i2c_write(hdmi, 0x0000, 0x0e);
176 dw_hdmi_phy_i2c_write(hdmi, 0x802b, 0x09);
179 dw_hdmi_phy_i2c_write(hdmi, 0x0000, 0x1e);
180 dw_hdmi_phy_i2c_write(hdmi, 0x0000, 0x13);
181 dw_hdmi_phy_i2c_write(hdmi, 0x0000, 0x17);
183 dw_hdmi_phy_gen2_txpwron(hdmi, 1);
188 static int sun8i_hdmi_phy_config_h3(struct dw_hdmi *hdmi,
189 struct sun8i_hdmi_phy *phy,
190 unsigned int clk_rate)
200 /* bandwidth / frequency independent settings */
202 pll_cfg1_init = SUN8I_HDMI_PHY_PLL_CFG1_LDO2_EN |
203 SUN8I_HDMI_PHY_PLL_CFG1_LDO1_EN |
204 SUN8I_HDMI_PHY_PLL_CFG1_LDO_VSET(7) |
205 SUN8I_HDMI_PHY_PLL_CFG1_UNKNOWN(1) |
206 SUN8I_HDMI_PHY_PLL_CFG1_PLLDBEN |
207 SUN8I_HDMI_PHY_PLL_CFG1_CS |
208 SUN8I_HDMI_PHY_PLL_CFG1_CP_S(2) |
209 SUN8I_HDMI_PHY_PLL_CFG1_CNT_INT(63) |
210 SUN8I_HDMI_PHY_PLL_CFG1_BWS;
212 pll_cfg2_init = SUN8I_HDMI_PHY_PLL_CFG2_SV_H |
213 SUN8I_HDMI_PHY_PLL_CFG2_VCOGAIN_EN |
214 SUN8I_HDMI_PHY_PLL_CFG2_SDIV2;
216 ana_cfg1_end = SUN8I_HDMI_PHY_ANA_CFG1_REG_SVBH(1) |
217 SUN8I_HDMI_PHY_ANA_CFG1_AMP_OPT |
218 SUN8I_HDMI_PHY_ANA_CFG1_EMP_OPT |
219 SUN8I_HDMI_PHY_ANA_CFG1_AMPCK_OPT |
220 SUN8I_HDMI_PHY_ANA_CFG1_EMPCK_OPT |
221 SUN8I_HDMI_PHY_ANA_CFG1_ENRCAL |
222 SUN8I_HDMI_PHY_ANA_CFG1_ENCALOG |
223 SUN8I_HDMI_PHY_ANA_CFG1_REG_SCKTMDS |
224 SUN8I_HDMI_PHY_ANA_CFG1_TMDSCLK_EN |
225 SUN8I_HDMI_PHY_ANA_CFG1_TXEN_MASK |
226 SUN8I_HDMI_PHY_ANA_CFG1_TXEN_ALL |
227 SUN8I_HDMI_PHY_ANA_CFG1_BIASEN_TMDSCLK |
228 SUN8I_HDMI_PHY_ANA_CFG1_BIASEN_TMDS2 |
229 SUN8I_HDMI_PHY_ANA_CFG1_BIASEN_TMDS1 |
230 SUN8I_HDMI_PHY_ANA_CFG1_BIASEN_TMDS0 |
231 SUN8I_HDMI_PHY_ANA_CFG1_ENP2S_TMDS2 |
232 SUN8I_HDMI_PHY_ANA_CFG1_ENP2S_TMDS1 |
233 SUN8I_HDMI_PHY_ANA_CFG1_ENP2S_TMDS0 |
234 SUN8I_HDMI_PHY_ANA_CFG1_CKEN |
235 SUN8I_HDMI_PHY_ANA_CFG1_LDOEN |
236 SUN8I_HDMI_PHY_ANA_CFG1_ENVBS |
237 SUN8I_HDMI_PHY_ANA_CFG1_ENBI;
239 ana_cfg2_init = SUN8I_HDMI_PHY_ANA_CFG2_M_EN |
240 SUN8I_HDMI_PHY_ANA_CFG2_REG_DENCK |
241 SUN8I_HDMI_PHY_ANA_CFG2_REG_DEN |
242 SUN8I_HDMI_PHY_ANA_CFG2_REG_CKSS(1) |
243 SUN8I_HDMI_PHY_ANA_CFG2_REG_CSMPS(1);
245 ana_cfg3_init = SUN8I_HDMI_PHY_ANA_CFG3_REG_WIRE(0x3e0) |
246 SUN8I_HDMI_PHY_ANA_CFG3_SDAEN |
247 SUN8I_HDMI_PHY_ANA_CFG3_SCLEN;
249 /* bandwidth / frequency dependent settings */
250 if (clk_rate <= 27000000) {
251 pll_cfg1_init |= SUN8I_HDMI_PHY_PLL_CFG1_HV_IS_33 |
252 SUN8I_HDMI_PHY_PLL_CFG1_CNT_INT(32);
253 pll_cfg2_init |= SUN8I_HDMI_PHY_PLL_CFG2_VCO_S(4) |
254 SUN8I_HDMI_PHY_PLL_CFG2_S(4);
255 ana_cfg1_end |= SUN8I_HDMI_PHY_ANA_CFG1_REG_CALSW;
256 ana_cfg2_init |= SUN8I_HDMI_PHY_ANA_CFG2_REG_SLV(4) |
257 SUN8I_HDMI_PHY_ANA_CFG2_REG_RESDI(phy->rcal);
258 ana_cfg3_init |= SUN8I_HDMI_PHY_ANA_CFG3_REG_AMPCK(3) |
259 SUN8I_HDMI_PHY_ANA_CFG3_REG_AMP(5);
260 } else if (clk_rate <= 74250000) {
261 pll_cfg1_init |= SUN8I_HDMI_PHY_PLL_CFG1_HV_IS_33 |
262 SUN8I_HDMI_PHY_PLL_CFG1_CNT_INT(32);
263 pll_cfg2_init |= SUN8I_HDMI_PHY_PLL_CFG2_VCO_S(4) |
264 SUN8I_HDMI_PHY_PLL_CFG2_S(5);
265 ana_cfg1_end |= SUN8I_HDMI_PHY_ANA_CFG1_REG_CALSW;
266 ana_cfg2_init |= SUN8I_HDMI_PHY_ANA_CFG2_REG_SLV(4) |
267 SUN8I_HDMI_PHY_ANA_CFG2_REG_RESDI(phy->rcal);
268 ana_cfg3_init |= SUN8I_HDMI_PHY_ANA_CFG3_REG_AMPCK(5) |
269 SUN8I_HDMI_PHY_ANA_CFG3_REG_AMP(7);
270 } else if (clk_rate <= 148500000) {
271 pll_cfg1_init |= SUN8I_HDMI_PHY_PLL_CFG1_HV_IS_33 |
272 SUN8I_HDMI_PHY_PLL_CFG1_CNT_INT(32);
273 pll_cfg2_init |= SUN8I_HDMI_PHY_PLL_CFG2_VCO_S(4) |
274 SUN8I_HDMI_PHY_PLL_CFG2_S(6);
275 ana_cfg2_init |= SUN8I_HDMI_PHY_ANA_CFG2_REG_BIGSWCK |
276 SUN8I_HDMI_PHY_ANA_CFG2_REG_BIGSW |
277 SUN8I_HDMI_PHY_ANA_CFG2_REG_SLV(2);
278 ana_cfg3_init |= SUN8I_HDMI_PHY_ANA_CFG3_REG_AMPCK(7) |
279 SUN8I_HDMI_PHY_ANA_CFG3_REG_AMP(9);
282 pll_cfg1_init |= SUN8I_HDMI_PHY_PLL_CFG1_CNT_INT(63);
283 pll_cfg2_init |= SUN8I_HDMI_PHY_PLL_CFG2_VCO_S(6) |
284 SUN8I_HDMI_PHY_PLL_CFG2_S(7);
285 ana_cfg2_init |= SUN8I_HDMI_PHY_ANA_CFG2_REG_BIGSWCK |
286 SUN8I_HDMI_PHY_ANA_CFG2_REG_BIGSW |
287 SUN8I_HDMI_PHY_ANA_CFG2_REG_SLV(4);
288 ana_cfg3_init |= SUN8I_HDMI_PHY_ANA_CFG3_REG_AMPCK(9) |
289 SUN8I_HDMI_PHY_ANA_CFG3_REG_AMP(13) |
290 SUN8I_HDMI_PHY_ANA_CFG3_REG_EMP(3);
293 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG,
294 SUN8I_HDMI_PHY_ANA_CFG1_TXEN_MASK, 0);
297 * NOTE: We have to be careful not to overwrite PHY parent
298 * clock selection bit and clock divider.
300 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_PLL_CFG1_REG,
301 (u32)~SUN8I_HDMI_PHY_PLL_CFG1_CKIN_SEL_MSK,
303 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_PLL_CFG2_REG,
304 (u32)~SUN8I_HDMI_PHY_PLL_CFG2_PREDIV_MSK,
306 usleep_range(10000, 15000);
307 regmap_write(phy->regs, SUN8I_HDMI_PHY_PLL_CFG3_REG,
308 SUN8I_HDMI_PHY_PLL_CFG3_SOUT_DIV2);
309 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_PLL_CFG1_REG,
310 SUN8I_HDMI_PHY_PLL_CFG1_PLLEN,
311 SUN8I_HDMI_PHY_PLL_CFG1_PLLEN);
315 regmap_read(phy->regs, SUN8I_HDMI_PHY_ANA_STS_REG, &val);
316 val = (val & SUN8I_HDMI_PHY_ANA_STS_B_OUT_MSK) >>
317 SUN8I_HDMI_PHY_ANA_STS_B_OUT_SHIFT;
318 val = min(val + b_offset, (u32)0x3f);
320 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_PLL_CFG1_REG,
321 SUN8I_HDMI_PHY_PLL_CFG1_REG_OD1 |
322 SUN8I_HDMI_PHY_PLL_CFG1_REG_OD,
323 SUN8I_HDMI_PHY_PLL_CFG1_REG_OD1 |
324 SUN8I_HDMI_PHY_PLL_CFG1_REG_OD);
325 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_PLL_CFG1_REG,
326 SUN8I_HDMI_PHY_PLL_CFG1_B_IN_MSK,
327 val << SUN8I_HDMI_PHY_PLL_CFG1_B_IN_SHIFT);
329 regmap_write(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG, ana_cfg1_end);
330 regmap_write(phy->regs, SUN8I_HDMI_PHY_ANA_CFG2_REG, ana_cfg2_init);
331 regmap_write(phy->regs, SUN8I_HDMI_PHY_ANA_CFG3_REG, ana_cfg3_init);
336 static int sun8i_hdmi_phy_config(struct dw_hdmi *hdmi, void *data,
337 const struct drm_display_info *display,
338 const struct drm_display_mode *mode)
340 struct sun8i_hdmi_phy *phy = (struct sun8i_hdmi_phy *)data;
343 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
344 val |= SUN8I_HDMI_PHY_DBG_CTRL_POL_NHSYNC;
346 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
347 val |= SUN8I_HDMI_PHY_DBG_CTRL_POL_NVSYNC;
349 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_DBG_CTRL_REG,
350 SUN8I_HDMI_PHY_DBG_CTRL_POL_MASK, val);
352 if (phy->variant->has_phy_clk)
353 clk_set_rate(phy->clk_phy, mode->crtc_clock * 1000);
355 return phy->variant->phy_config(hdmi, phy, mode->crtc_clock * 1000);
358 static void sun8i_hdmi_phy_disable_a83t(struct dw_hdmi *hdmi,
359 struct sun8i_hdmi_phy *phy)
361 dw_hdmi_phy_gen2_txpwron(hdmi, 0);
362 dw_hdmi_phy_gen2_pddq(hdmi, 1);
364 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_REXT_CTRL_REG,
365 SUN8I_HDMI_PHY_REXT_CTRL_REXT_EN, 0);
368 static void sun8i_hdmi_phy_disable_h3(struct dw_hdmi *hdmi,
369 struct sun8i_hdmi_phy *phy)
371 regmap_write(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG,
372 SUN8I_HDMI_PHY_ANA_CFG1_LDOEN |
373 SUN8I_HDMI_PHY_ANA_CFG1_ENVBS |
374 SUN8I_HDMI_PHY_ANA_CFG1_ENBI);
375 regmap_write(phy->regs, SUN8I_HDMI_PHY_PLL_CFG1_REG, 0);
378 static void sun8i_hdmi_phy_disable(struct dw_hdmi *hdmi, void *data)
380 struct sun8i_hdmi_phy *phy = (struct sun8i_hdmi_phy *)data;
382 phy->variant->phy_disable(hdmi, phy);
385 static const struct dw_hdmi_phy_ops sun8i_hdmi_phy_ops = {
386 .init = &sun8i_hdmi_phy_config,
387 .disable = &sun8i_hdmi_phy_disable,
388 .read_hpd = &dw_hdmi_phy_read_hpd,
389 .update_hpd = &dw_hdmi_phy_update_hpd,
390 .setup_hpd = &dw_hdmi_phy_setup_hpd,
393 static void sun8i_hdmi_phy_unlock(struct sun8i_hdmi_phy *phy)
395 /* enable read access to HDMI controller */
396 regmap_write(phy->regs, SUN8I_HDMI_PHY_READ_EN_REG,
397 SUN8I_HDMI_PHY_READ_EN_MAGIC);
399 /* unscramble register offsets */
400 regmap_write(phy->regs, SUN8I_HDMI_PHY_UNSCRAMBLE_REG,
401 SUN8I_HDMI_PHY_UNSCRAMBLE_MAGIC);
404 static void sun50i_hdmi_phy_init_h6(struct sun8i_hdmi_phy *phy)
406 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_REXT_CTRL_REG,
407 SUN8I_HDMI_PHY_REXT_CTRL_REXT_EN,
408 SUN8I_HDMI_PHY_REXT_CTRL_REXT_EN);
410 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_REXT_CTRL_REG,
411 0xffff0000, 0x80c00000);
414 static void sun8i_hdmi_phy_init_a83t(struct sun8i_hdmi_phy *phy)
416 sun8i_hdmi_phy_unlock(phy);
418 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_DBG_CTRL_REG,
419 SUN8I_HDMI_PHY_DBG_CTRL_PX_LOCK,
420 SUN8I_HDMI_PHY_DBG_CTRL_PX_LOCK);
423 * Set PHY I2C address. It must match to the address set by
424 * dw_hdmi_phy_set_slave_addr().
426 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_DBG_CTRL_REG,
427 SUN8I_HDMI_PHY_DBG_CTRL_ADDR_MASK,
428 SUN8I_HDMI_PHY_DBG_CTRL_ADDR(I2C_ADDR));
431 static void sun8i_hdmi_phy_init_h3(struct sun8i_hdmi_phy *phy)
435 sun8i_hdmi_phy_unlock(phy);
437 regmap_write(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG, 0);
438 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG,
439 SUN8I_HDMI_PHY_ANA_CFG1_ENBI,
440 SUN8I_HDMI_PHY_ANA_CFG1_ENBI);
442 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG,
443 SUN8I_HDMI_PHY_ANA_CFG1_TMDSCLK_EN,
444 SUN8I_HDMI_PHY_ANA_CFG1_TMDSCLK_EN);
445 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG,
446 SUN8I_HDMI_PHY_ANA_CFG1_ENVBS,
447 SUN8I_HDMI_PHY_ANA_CFG1_ENVBS);
448 usleep_range(10, 20);
449 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG,
450 SUN8I_HDMI_PHY_ANA_CFG1_LDOEN,
451 SUN8I_HDMI_PHY_ANA_CFG1_LDOEN);
453 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG,
454 SUN8I_HDMI_PHY_ANA_CFG1_CKEN,
455 SUN8I_HDMI_PHY_ANA_CFG1_CKEN);
456 usleep_range(40, 100);
457 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG,
458 SUN8I_HDMI_PHY_ANA_CFG1_ENRCAL,
459 SUN8I_HDMI_PHY_ANA_CFG1_ENRCAL);
460 usleep_range(100, 200);
461 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG,
462 SUN8I_HDMI_PHY_ANA_CFG1_ENCALOG,
463 SUN8I_HDMI_PHY_ANA_CFG1_ENCALOG);
464 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG,
465 SUN8I_HDMI_PHY_ANA_CFG1_ENP2S_TMDS0 |
466 SUN8I_HDMI_PHY_ANA_CFG1_ENP2S_TMDS1 |
467 SUN8I_HDMI_PHY_ANA_CFG1_ENP2S_TMDS2,
468 SUN8I_HDMI_PHY_ANA_CFG1_ENP2S_TMDS0 |
469 SUN8I_HDMI_PHY_ANA_CFG1_ENP2S_TMDS1 |
470 SUN8I_HDMI_PHY_ANA_CFG1_ENP2S_TMDS2);
472 /* wait for calibration to finish */
473 regmap_read_poll_timeout(phy->regs, SUN8I_HDMI_PHY_ANA_STS_REG, val,
474 (val & SUN8I_HDMI_PHY_ANA_STS_RCALEND2D),
477 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG,
478 SUN8I_HDMI_PHY_ANA_CFG1_ENP2S_TMDSCLK,
479 SUN8I_HDMI_PHY_ANA_CFG1_ENP2S_TMDSCLK);
480 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_ANA_CFG1_REG,
481 SUN8I_HDMI_PHY_ANA_CFG1_BIASEN_TMDS0 |
482 SUN8I_HDMI_PHY_ANA_CFG1_BIASEN_TMDS1 |
483 SUN8I_HDMI_PHY_ANA_CFG1_BIASEN_TMDS2 |
484 SUN8I_HDMI_PHY_ANA_CFG1_BIASEN_TMDSCLK,
485 SUN8I_HDMI_PHY_ANA_CFG1_BIASEN_TMDS0 |
486 SUN8I_HDMI_PHY_ANA_CFG1_BIASEN_TMDS1 |
487 SUN8I_HDMI_PHY_ANA_CFG1_BIASEN_TMDS2 |
488 SUN8I_HDMI_PHY_ANA_CFG1_BIASEN_TMDSCLK);
490 /* enable DDC communication */
491 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_ANA_CFG3_REG,
492 SUN8I_HDMI_PHY_ANA_CFG3_SCLEN |
493 SUN8I_HDMI_PHY_ANA_CFG3_SDAEN,
494 SUN8I_HDMI_PHY_ANA_CFG3_SCLEN |
495 SUN8I_HDMI_PHY_ANA_CFG3_SDAEN);
497 /* reset PHY PLL clock parent */
498 regmap_update_bits(phy->regs, SUN8I_HDMI_PHY_PLL_CFG1_REG,
499 SUN8I_HDMI_PHY_PLL_CFG1_CKIN_SEL_MSK, 0);
501 /* set HW control of CEC pins */
502 regmap_write(phy->regs, SUN8I_HDMI_PHY_CEC_REG, 0);
504 /* read calibration data */
505 regmap_read(phy->regs, SUN8I_HDMI_PHY_ANA_STS_REG, &val);
506 phy->rcal = (val & SUN8I_HDMI_PHY_ANA_STS_RCAL_MASK) >> 2;
509 int sun8i_hdmi_phy_init(struct sun8i_hdmi_phy *phy)
513 ret = reset_control_deassert(phy->rst_phy);
515 dev_err(phy->dev, "Cannot deassert phy reset control: %d\n", ret);
519 ret = clk_prepare_enable(phy->clk_bus);
521 dev_err(phy->dev, "Cannot enable bus clock: %d\n", ret);
522 goto err_assert_rst_phy;
525 ret = clk_prepare_enable(phy->clk_mod);
527 dev_err(phy->dev, "Cannot enable mod clock: %d\n", ret);
528 goto err_disable_clk_bus;
531 if (phy->variant->has_phy_clk) {
532 ret = sun8i_phy_clk_create(phy, phy->dev,
533 phy->variant->has_second_pll);
535 dev_err(phy->dev, "Couldn't create the PHY clock\n");
536 goto err_disable_clk_mod;
539 clk_prepare_enable(phy->clk_phy);
542 phy->variant->phy_init(phy);
547 clk_disable_unprepare(phy->clk_mod);
549 clk_disable_unprepare(phy->clk_bus);
551 reset_control_assert(phy->rst_phy);
556 void sun8i_hdmi_phy_deinit(struct sun8i_hdmi_phy *phy)
558 clk_disable_unprepare(phy->clk_mod);
559 clk_disable_unprepare(phy->clk_bus);
560 clk_disable_unprepare(phy->clk_phy);
562 reset_control_assert(phy->rst_phy);
565 void sun8i_hdmi_phy_set_ops(struct sun8i_hdmi_phy *phy,
566 struct dw_hdmi_plat_data *plat_data)
568 struct sun8i_hdmi_phy_variant *variant = phy->variant;
570 if (variant->is_custom_phy) {
571 plat_data->phy_ops = &sun8i_hdmi_phy_ops;
572 plat_data->phy_name = "sun8i_dw_hdmi_phy";
573 plat_data->phy_data = phy;
575 plat_data->mpll_cfg = variant->mpll_cfg;
576 plat_data->cur_ctr = variant->cur_ctr;
577 plat_data->phy_config = variant->phy_cfg;
581 static const struct regmap_config sun8i_hdmi_phy_regmap_config = {
585 .max_register = SUN8I_HDMI_PHY_CEC_REG,
589 static const struct sun8i_hdmi_phy_variant sun8i_a83t_hdmi_phy = {
590 .is_custom_phy = true,
591 .phy_init = &sun8i_hdmi_phy_init_a83t,
592 .phy_disable = &sun8i_hdmi_phy_disable_a83t,
593 .phy_config = &sun8i_hdmi_phy_config_a83t,
596 static const struct sun8i_hdmi_phy_variant sun8i_h3_hdmi_phy = {
598 .is_custom_phy = true,
599 .phy_init = &sun8i_hdmi_phy_init_h3,
600 .phy_disable = &sun8i_hdmi_phy_disable_h3,
601 .phy_config = &sun8i_hdmi_phy_config_h3,
604 static const struct sun8i_hdmi_phy_variant sun8i_r40_hdmi_phy = {
606 .has_second_pll = true,
607 .is_custom_phy = true,
608 .phy_init = &sun8i_hdmi_phy_init_h3,
609 .phy_disable = &sun8i_hdmi_phy_disable_h3,
610 .phy_config = &sun8i_hdmi_phy_config_h3,
613 static const struct sun8i_hdmi_phy_variant sun50i_a64_hdmi_phy = {
615 .is_custom_phy = true,
616 .phy_init = &sun8i_hdmi_phy_init_h3,
617 .phy_disable = &sun8i_hdmi_phy_disable_h3,
618 .phy_config = &sun8i_hdmi_phy_config_h3,
621 static const struct sun8i_hdmi_phy_variant sun50i_h6_hdmi_phy = {
622 .cur_ctr = sun50i_h6_cur_ctr,
623 .mpll_cfg = sun50i_h6_mpll_cfg,
624 .phy_cfg = sun50i_h6_phy_config,
625 .phy_init = &sun50i_hdmi_phy_init_h6,
628 static const struct of_device_id sun8i_hdmi_phy_of_table[] = {
630 .compatible = "allwinner,sun8i-a83t-hdmi-phy",
631 .data = &sun8i_a83t_hdmi_phy,
634 .compatible = "allwinner,sun8i-h3-hdmi-phy",
635 .data = &sun8i_h3_hdmi_phy,
638 .compatible = "allwinner,sun8i-r40-hdmi-phy",
639 .data = &sun8i_r40_hdmi_phy,
642 .compatible = "allwinner,sun50i-a64-hdmi-phy",
643 .data = &sun50i_a64_hdmi_phy,
646 .compatible = "allwinner,sun50i-h6-hdmi-phy",
647 .data = &sun50i_h6_hdmi_phy,
652 int sun8i_hdmi_phy_get(struct sun8i_dw_hdmi *hdmi, struct device_node *node)
654 struct platform_device *pdev = of_find_device_by_node(node);
655 struct sun8i_hdmi_phy *phy;
658 return -EPROBE_DEFER;
660 phy = platform_get_drvdata(pdev);
662 return -EPROBE_DEFER;
666 put_device(&pdev->dev);
671 static int sun8i_hdmi_phy_probe(struct platform_device *pdev)
673 const struct of_device_id *match;
674 struct device *dev = &pdev->dev;
675 struct device_node *node = dev->of_node;
676 struct sun8i_hdmi_phy *phy;
681 match = of_match_node(sun8i_hdmi_phy_of_table, node);
683 dev_err(dev, "Incompatible HDMI PHY\n");
687 phy = devm_kzalloc(dev, sizeof(*phy), GFP_KERNEL);
691 phy->variant = (struct sun8i_hdmi_phy_variant *)match->data;
694 ret = of_address_to_resource(node, 0, &res);
696 dev_err(dev, "phy: Couldn't get our resources\n");
700 regs = devm_ioremap_resource(dev, &res);
702 dev_err(dev, "Couldn't map the HDMI PHY registers\n");
703 return PTR_ERR(regs);
706 phy->regs = devm_regmap_init_mmio(dev, regs,
707 &sun8i_hdmi_phy_regmap_config);
708 if (IS_ERR(phy->regs)) {
709 dev_err(dev, "Couldn't create the HDMI PHY regmap\n");
710 return PTR_ERR(phy->regs);
713 phy->clk_bus = of_clk_get_by_name(node, "bus");
714 if (IS_ERR(phy->clk_bus)) {
715 dev_err(dev, "Could not get bus clock\n");
716 return PTR_ERR(phy->clk_bus);
719 phy->clk_mod = of_clk_get_by_name(node, "mod");
720 if (IS_ERR(phy->clk_mod)) {
721 dev_err(dev, "Could not get mod clock\n");
722 ret = PTR_ERR(phy->clk_mod);
723 goto err_put_clk_bus;
726 if (phy->variant->has_phy_clk) {
727 phy->clk_pll0 = of_clk_get_by_name(node, "pll-0");
728 if (IS_ERR(phy->clk_pll0)) {
729 dev_err(dev, "Could not get pll-0 clock\n");
730 ret = PTR_ERR(phy->clk_pll0);
731 goto err_put_clk_mod;
734 if (phy->variant->has_second_pll) {
735 phy->clk_pll1 = of_clk_get_by_name(node, "pll-1");
736 if (IS_ERR(phy->clk_pll1)) {
737 dev_err(dev, "Could not get pll-1 clock\n");
738 ret = PTR_ERR(phy->clk_pll1);
739 goto err_put_clk_pll0;
744 phy->rst_phy = of_reset_control_get_shared(node, "phy");
745 if (IS_ERR(phy->rst_phy)) {
746 dev_err(dev, "Could not get phy reset control\n");
747 ret = PTR_ERR(phy->rst_phy);
748 goto err_put_clk_pll1;
751 platform_set_drvdata(pdev, phy);
756 clk_put(phy->clk_pll1);
758 clk_put(phy->clk_pll0);
760 clk_put(phy->clk_mod);
762 clk_put(phy->clk_bus);
767 static int sun8i_hdmi_phy_remove(struct platform_device *pdev)
769 struct sun8i_hdmi_phy *phy = platform_get_drvdata(pdev);
771 reset_control_put(phy->rst_phy);
773 clk_put(phy->clk_pll0);
774 clk_put(phy->clk_pll1);
775 clk_put(phy->clk_mod);
776 clk_put(phy->clk_bus);
780 struct platform_driver sun8i_hdmi_phy_driver = {
781 .probe = sun8i_hdmi_phy_probe,
782 .remove = sun8i_hdmi_phy_remove,
784 .name = "sun8i-hdmi-phy",
785 .of_match_table = sun8i_hdmi_phy_of_table,