blob: 5dc5a5fa44f5319e8b78818d38a67dea2d58a3d3 [file] [log] [blame]
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001/*
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002 * DesignWare High-Definition Multimedia Interface (HDMI) driver
3 *
4 * Copyright (C) 2013-2015 Mentor Graphics Inc.
Fabio Estevam9aaf8802013-11-29 08:46:32 -02005 * Copyright (C) 2011-2013 Freescale Semiconductor, Inc.
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03006 * Copyright (C) 2010, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Fabio Estevam9aaf8802013-11-29 08:46:32 -02007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
Fabio Estevam9aaf8802013-11-29 08:46:32 -020013 */
Andy Yanb21f4b62014-12-05 14:26:31 +080014#include <linux/module.h>
Fabio Estevam9aaf8802013-11-29 08:46:32 -020015#include <linux/irq.h>
16#include <linux/delay.h>
17#include <linux/err.h>
18#include <linux/clk.h>
Sachin Kamat5a819ed2014-01-28 10:33:16 +053019#include <linux/hdmi.h>
Russell King6bcf4952015-02-02 11:01:08 +000020#include <linux/mutex.h>
Fabio Estevam9aaf8802013-11-29 08:46:32 -020021#include <linux/of_device.h>
Neil Armstrong80e2f972017-03-03 19:20:06 +020022#include <linux/regmap.h>
Russell Kingb90120a2015-03-27 12:59:58 +000023#include <linux/spinlock.h>
Fabio Estevam9aaf8802013-11-29 08:46:32 -020024
Andy Yan3d1b35a2014-12-05 14:25:05 +080025#include <drm/drm_of.h>
Fabio Estevam9aaf8802013-11-29 08:46:32 -020026#include <drm/drmP.h>
Mark Yao2c5b2cc2015-11-30 18:33:40 +080027#include <drm/drm_atomic_helper.h>
Fabio Estevam9aaf8802013-11-29 08:46:32 -020028#include <drm/drm_crtc_helper.h>
29#include <drm/drm_edid.h>
30#include <drm/drm_encoder_slave.h>
Andy Yanb21f4b62014-12-05 14:26:31 +080031#include <drm/bridge/dw_hdmi.h>
Fabio Estevam9aaf8802013-11-29 08:46:32 -020032
Neil Armstrongdef23aa2017-04-04 14:31:57 +020033#include <uapi/linux/media-bus-format.h>
34#include <uapi/linux/videodev2.h>
35
Thierry Reding248a86f2015-11-24 17:52:58 +010036#include "dw-hdmi.h"
37#include "dw-hdmi-audio.h"
Fabio Estevam9aaf8802013-11-29 08:46:32 -020038
Nickey Yang94bb4dc2017-03-20 10:57:31 +080039#define DDC_SEGMENT_ADDR 0x30
Fabio Estevam9aaf8802013-11-29 08:46:32 -020040#define HDMI_EDID_LEN 512
41
Fabio Estevam9aaf8802013-11-29 08:46:32 -020042enum hdmi_datamap {
43 RGB444_8B = 0x01,
44 RGB444_10B = 0x03,
45 RGB444_12B = 0x05,
46 RGB444_16B = 0x07,
47 YCbCr444_8B = 0x09,
48 YCbCr444_10B = 0x0B,
49 YCbCr444_12B = 0x0D,
50 YCbCr444_16B = 0x0F,
51 YCbCr422_8B = 0x16,
52 YCbCr422_10B = 0x14,
53 YCbCr422_12B = 0x12,
54};
55
Fabio Estevam9aaf8802013-11-29 08:46:32 -020056static const u16 csc_coeff_default[3][4] = {
57 { 0x2000, 0x0000, 0x0000, 0x0000 },
58 { 0x0000, 0x2000, 0x0000, 0x0000 },
59 { 0x0000, 0x0000, 0x2000, 0x0000 }
60};
61
62static const u16 csc_coeff_rgb_out_eitu601[3][4] = {
63 { 0x2000, 0x6926, 0x74fd, 0x010e },
64 { 0x2000, 0x2cdd, 0x0000, 0x7e9a },
65 { 0x2000, 0x0000, 0x38b4, 0x7e3b }
66};
67
68static const u16 csc_coeff_rgb_out_eitu709[3][4] = {
69 { 0x2000, 0x7106, 0x7a02, 0x00a7 },
70 { 0x2000, 0x3264, 0x0000, 0x7e6d },
71 { 0x2000, 0x0000, 0x3b61, 0x7e25 }
72};
73
74static const u16 csc_coeff_rgb_in_eitu601[3][4] = {
75 { 0x2591, 0x1322, 0x074b, 0x0000 },
76 { 0x6535, 0x2000, 0x7acc, 0x0200 },
77 { 0x6acd, 0x7534, 0x2000, 0x0200 }
78};
79
80static const u16 csc_coeff_rgb_in_eitu709[3][4] = {
81 { 0x2dc5, 0x0d9b, 0x049e, 0x0000 },
82 { 0x62f0, 0x2000, 0x7d11, 0x0200 },
83 { 0x6756, 0x78ab, 0x2000, 0x0200 }
84};
85
86struct hdmi_vmode {
Fabio Estevam9aaf8802013-11-29 08:46:32 -020087 bool mdataenablepolarity;
88
89 unsigned int mpixelclock;
90 unsigned int mpixelrepetitioninput;
91 unsigned int mpixelrepetitionoutput;
92};
93
94struct hdmi_data_info {
Neil Armstrongdef23aa2017-04-04 14:31:57 +020095 unsigned int enc_in_bus_format;
96 unsigned int enc_out_bus_format;
97 unsigned int enc_in_encoding;
98 unsigned int enc_out_encoding;
Fabio Estevam9aaf8802013-11-29 08:46:32 -020099 unsigned int pix_repet_factor;
100 unsigned int hdcp_enable;
101 struct hdmi_vmode video_mode;
102};
103
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300104struct dw_hdmi_i2c {
105 struct i2c_adapter adap;
106
107 struct mutex lock; /* used to serialize data transfers */
108 struct completion cmp;
109 u8 stat;
110
111 u8 slave_reg;
112 bool is_regaddr;
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800113 bool is_segment;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300114};
115
Laurent Pinchartfaba6c32017-01-17 10:29:06 +0200116struct dw_hdmi_phy_data {
117 enum dw_hdmi_phy_type type;
118 const char *name;
Laurent Pinchartb0e583e2017-03-06 01:35:39 +0200119 unsigned int gen;
Laurent Pinchartfaba6c32017-01-17 10:29:06 +0200120 bool has_svsret;
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +0200121 int (*configure)(struct dw_hdmi *hdmi,
122 const struct dw_hdmi_plat_data *pdata,
123 unsigned long mpixelclock);
Laurent Pinchartfaba6c32017-01-17 10:29:06 +0200124};
125
Andy Yanb21f4b62014-12-05 14:26:31 +0800126struct dw_hdmi {
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200127 struct drm_connector connector;
Laurent Pinchart70c963e2017-01-17 10:28:54 +0200128 struct drm_bridge bridge;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200129
Laurent Pinchartbe41fc52017-01-17 10:29:05 +0200130 unsigned int version;
131
132 struct platform_device *audio;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200133 struct device *dev;
134 struct clk *isfr_clk;
135 struct clk *iahb_clk;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300136 struct dw_hdmi_i2c *i2c;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200137
138 struct hdmi_data_info hdmi_data;
Andy Yanb21f4b62014-12-05 14:26:31 +0800139 const struct dw_hdmi_plat_data *plat_data;
140
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200141 int vic;
142
143 u8 edid[HDMI_EDID_LEN];
144 bool cable_plugin;
145
Laurent Pinchartf1585f62017-03-06 01:36:15 +0200146 struct {
147 const struct dw_hdmi_phy_ops *ops;
148 const char *name;
149 void *data;
150 bool enabled;
151 } phy;
Laurent Pinchartfaba6c32017-01-17 10:29:06 +0200152
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200153 struct drm_display_mode previous_mode;
154
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200155 struct i2c_adapter *ddc;
156 void __iomem *regs;
Russell King05b13422015-07-21 15:35:52 +0100157 bool sink_is_hdmi;
Russell Kingf709ec02015-07-21 16:09:39 +0100158 bool sink_has_audio;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200159
Russell Kingb872a8e2015-06-05 12:22:46 +0100160 struct mutex mutex; /* for state below and previous_mode */
Russell King381f05a2015-06-05 15:25:08 +0100161 enum drm_connector_force force; /* mutex-protected force state */
Russell Kingb872a8e2015-06-05 12:22:46 +0100162 bool disabled; /* DRM has disabled our bridge */
Russell King381f05a2015-06-05 15:25:08 +0100163 bool bridge_is_on; /* indicates the bridge is on */
Russell Kingaeac23b2015-06-05 13:46:22 +0100164 bool rxsense; /* rxsense state */
165 u8 phy_mask; /* desired phy int mask settings */
Russell Kingb872a8e2015-06-05 12:22:46 +0100166
Russell Kingb90120a2015-03-27 12:59:58 +0000167 spinlock_t audio_lock;
Russell King6bcf4952015-02-02 11:01:08 +0000168 struct mutex audio_mutex;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200169 unsigned int sample_rate;
Russell Kingb90120a2015-03-27 12:59:58 +0000170 unsigned int audio_cts;
171 unsigned int audio_n;
172 bool audio_enable;
Andy Yan0cd9d142014-12-05 14:28:24 +0800173
Neil Armstrong80e2f972017-03-03 19:20:06 +0200174 unsigned int reg_shift;
175 struct regmap *regm;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200176};
177
Russell Kingaeac23b2015-06-05 13:46:22 +0100178#define HDMI_IH_PHY_STAT0_RX_SENSE \
179 (HDMI_IH_PHY_STAT0_RX_SENSE0 | HDMI_IH_PHY_STAT0_RX_SENSE1 | \
180 HDMI_IH_PHY_STAT0_RX_SENSE2 | HDMI_IH_PHY_STAT0_RX_SENSE3)
181
182#define HDMI_PHY_RX_SENSE \
183 (HDMI_PHY_RX_SENSE0 | HDMI_PHY_RX_SENSE1 | \
184 HDMI_PHY_RX_SENSE2 | HDMI_PHY_RX_SENSE3)
185
Andy Yan0cd9d142014-12-05 14:28:24 +0800186static inline void hdmi_writeb(struct dw_hdmi *hdmi, u8 val, int offset)
187{
Neil Armstrong80e2f972017-03-03 19:20:06 +0200188 regmap_write(hdmi->regm, offset << hdmi->reg_shift, val);
Andy Yan0cd9d142014-12-05 14:28:24 +0800189}
190
191static inline u8 hdmi_readb(struct dw_hdmi *hdmi, int offset)
192{
Neil Armstrong80e2f972017-03-03 19:20:06 +0200193 unsigned int val = 0;
194
195 regmap_read(hdmi->regm, offset << hdmi->reg_shift, &val);
196
197 return val;
Andy Yan0cd9d142014-12-05 14:28:24 +0800198}
199
Andy Yanb21f4b62014-12-05 14:26:31 +0800200static void hdmi_modb(struct dw_hdmi *hdmi, u8 data, u8 mask, unsigned reg)
Russell King812bc612013-11-04 12:42:02 +0000201{
Neil Armstrong80e2f972017-03-03 19:20:06 +0200202 regmap_update_bits(hdmi->regm, reg << hdmi->reg_shift, mask, data);
Russell King812bc612013-11-04 12:42:02 +0000203}
204
Andy Yanb21f4b62014-12-05 14:26:31 +0800205static void hdmi_mask_writeb(struct dw_hdmi *hdmi, u8 data, unsigned int reg,
Andy Yanb5878332014-12-05 14:23:52 +0800206 u8 shift, u8 mask)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200207{
Russell King812bc612013-11-04 12:42:02 +0000208 hdmi_modb(hdmi, data << shift, mask, reg);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200209}
210
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300211static void dw_hdmi_i2c_init(struct dw_hdmi *hdmi)
212{
213 /* Software reset */
214 hdmi_writeb(hdmi, 0x00, HDMI_I2CM_SOFTRSTZ);
215
216 /* Set Standard Mode speed (determined to be 100KHz on iMX6) */
217 hdmi_writeb(hdmi, 0x00, HDMI_I2CM_DIV);
218
219 /* Set done, not acknowledged and arbitration interrupt polarities */
220 hdmi_writeb(hdmi, HDMI_I2CM_INT_DONE_POL, HDMI_I2CM_INT);
221 hdmi_writeb(hdmi, HDMI_I2CM_CTLINT_NAC_POL | HDMI_I2CM_CTLINT_ARB_POL,
222 HDMI_I2CM_CTLINT);
223
224 /* Clear DONE and ERROR interrupts */
225 hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
226 HDMI_IH_I2CM_STAT0);
227
228 /* Mute DONE and ERROR interrupts */
229 hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
230 HDMI_IH_MUTE_I2CM_STAT0);
231}
232
233static int dw_hdmi_i2c_read(struct dw_hdmi *hdmi,
234 unsigned char *buf, unsigned int length)
235{
236 struct dw_hdmi_i2c *i2c = hdmi->i2c;
237 int stat;
238
239 if (!i2c->is_regaddr) {
240 dev_dbg(hdmi->dev, "set read register address to 0\n");
241 i2c->slave_reg = 0x00;
242 i2c->is_regaddr = true;
243 }
244
245 while (length--) {
246 reinit_completion(&i2c->cmp);
247
248 hdmi_writeb(hdmi, i2c->slave_reg++, HDMI_I2CM_ADDRESS);
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800249 if (i2c->is_segment)
250 hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_READ_EXT,
251 HDMI_I2CM_OPERATION);
252 else
253 hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_READ,
254 HDMI_I2CM_OPERATION);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300255
256 stat = wait_for_completion_timeout(&i2c->cmp, HZ / 10);
257 if (!stat)
258 return -EAGAIN;
259
260 /* Check for error condition on the bus */
261 if (i2c->stat & HDMI_IH_I2CM_STAT0_ERROR)
262 return -EIO;
263
264 *buf++ = hdmi_readb(hdmi, HDMI_I2CM_DATAI);
265 }
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800266 i2c->is_segment = false;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300267
268 return 0;
269}
270
271static int dw_hdmi_i2c_write(struct dw_hdmi *hdmi,
272 unsigned char *buf, unsigned int length)
273{
274 struct dw_hdmi_i2c *i2c = hdmi->i2c;
275 int stat;
276
277 if (!i2c->is_regaddr) {
278 /* Use the first write byte as register address */
279 i2c->slave_reg = buf[0];
280 length--;
281 buf++;
282 i2c->is_regaddr = true;
283 }
284
285 while (length--) {
286 reinit_completion(&i2c->cmp);
287
288 hdmi_writeb(hdmi, *buf++, HDMI_I2CM_DATAO);
289 hdmi_writeb(hdmi, i2c->slave_reg++, HDMI_I2CM_ADDRESS);
290 hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_WRITE,
291 HDMI_I2CM_OPERATION);
292
293 stat = wait_for_completion_timeout(&i2c->cmp, HZ / 10);
294 if (!stat)
295 return -EAGAIN;
296
297 /* Check for error condition on the bus */
298 if (i2c->stat & HDMI_IH_I2CM_STAT0_ERROR)
299 return -EIO;
300 }
301
302 return 0;
303}
304
305static int dw_hdmi_i2c_xfer(struct i2c_adapter *adap,
306 struct i2c_msg *msgs, int num)
307{
308 struct dw_hdmi *hdmi = i2c_get_adapdata(adap);
309 struct dw_hdmi_i2c *i2c = hdmi->i2c;
310 u8 addr = msgs[0].addr;
311 int i, ret = 0;
312
313 dev_dbg(hdmi->dev, "xfer: num: %d, addr: %#x\n", num, addr);
314
315 for (i = 0; i < num; i++) {
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300316 if (msgs[i].len == 0) {
317 dev_dbg(hdmi->dev,
318 "unsupported transfer %d/%d, no data\n",
319 i + 1, num);
320 return -EOPNOTSUPP;
321 }
322 }
323
324 mutex_lock(&i2c->lock);
325
326 /* Unmute DONE and ERROR interrupts */
327 hdmi_writeb(hdmi, 0x00, HDMI_IH_MUTE_I2CM_STAT0);
328
329 /* Set slave device address taken from the first I2C message */
330 hdmi_writeb(hdmi, addr, HDMI_I2CM_SLAVE);
331
332 /* Set slave device register address on transfer */
333 i2c->is_regaddr = false;
334
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800335 /* Set segment pointer for I2C extended read mode operation */
336 i2c->is_segment = false;
337
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300338 for (i = 0; i < num; i++) {
339 dev_dbg(hdmi->dev, "xfer: num: %d/%d, len: %d, flags: %#x\n",
340 i + 1, num, msgs[i].len, msgs[i].flags);
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800341 if (msgs[i].addr == DDC_SEGMENT_ADDR && msgs[i].len == 1) {
342 i2c->is_segment = true;
343 hdmi_writeb(hdmi, DDC_SEGMENT_ADDR, HDMI_I2CM_SEGADDR);
344 hdmi_writeb(hdmi, *msgs[i].buf, HDMI_I2CM_SEGPTR);
345 } else {
346 if (msgs[i].flags & I2C_M_RD)
347 ret = dw_hdmi_i2c_read(hdmi, msgs[i].buf,
348 msgs[i].len);
349 else
350 ret = dw_hdmi_i2c_write(hdmi, msgs[i].buf,
351 msgs[i].len);
352 }
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300353 if (ret < 0)
354 break;
355 }
356
357 if (!ret)
358 ret = num;
359
360 /* Mute DONE and ERROR interrupts */
361 hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
362 HDMI_IH_MUTE_I2CM_STAT0);
363
364 mutex_unlock(&i2c->lock);
365
366 return ret;
367}
368
369static u32 dw_hdmi_i2c_func(struct i2c_adapter *adapter)
370{
371 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
372}
373
374static const struct i2c_algorithm dw_hdmi_algorithm = {
375 .master_xfer = dw_hdmi_i2c_xfer,
376 .functionality = dw_hdmi_i2c_func,
377};
378
379static struct i2c_adapter *dw_hdmi_i2c_adapter(struct dw_hdmi *hdmi)
380{
381 struct i2c_adapter *adap;
382 struct dw_hdmi_i2c *i2c;
383 int ret;
384
385 i2c = devm_kzalloc(hdmi->dev, sizeof(*i2c), GFP_KERNEL);
386 if (!i2c)
387 return ERR_PTR(-ENOMEM);
388
389 mutex_init(&i2c->lock);
390 init_completion(&i2c->cmp);
391
392 adap = &i2c->adap;
393 adap->class = I2C_CLASS_DDC;
394 adap->owner = THIS_MODULE;
395 adap->dev.parent = hdmi->dev;
396 adap->algo = &dw_hdmi_algorithm;
397 strlcpy(adap->name, "DesignWare HDMI", sizeof(adap->name));
398 i2c_set_adapdata(adap, hdmi);
399
400 ret = i2c_add_adapter(adap);
401 if (ret) {
402 dev_warn(hdmi->dev, "cannot add %s I2C adapter\n", adap->name);
403 devm_kfree(hdmi->dev, i2c);
404 return ERR_PTR(ret);
405 }
406
407 hdmi->i2c = i2c;
408
409 dev_info(hdmi->dev, "registered %s I2C bus driver\n", adap->name);
410
411 return adap;
412}
413
Russell King351e1352015-01-31 14:50:23 +0000414static void hdmi_set_cts_n(struct dw_hdmi *hdmi, unsigned int cts,
415 unsigned int n)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200416{
Russell King622494a2015-02-02 10:55:38 +0000417 /* Must be set/cleared first */
418 hdmi_modb(hdmi, 0, HDMI_AUD_CTS3_CTS_MANUAL, HDMI_AUD_CTS3);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200419
420 /* nshift factor = 0 */
Russell King812bc612013-11-04 12:42:02 +0000421 hdmi_modb(hdmi, 0, HDMI_AUD_CTS3_N_SHIFT_MASK, HDMI_AUD_CTS3);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200422
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200423 hdmi_writeb(hdmi, ((cts >> 16) & HDMI_AUD_CTS3_AUDCTS19_16_MASK) |
424 HDMI_AUD_CTS3_CTS_MANUAL, HDMI_AUD_CTS3);
Russell King622494a2015-02-02 10:55:38 +0000425 hdmi_writeb(hdmi, (cts >> 8) & 0xff, HDMI_AUD_CTS2);
426 hdmi_writeb(hdmi, cts & 0xff, HDMI_AUD_CTS1);
427
428 hdmi_writeb(hdmi, (n >> 16) & 0x0f, HDMI_AUD_N3);
429 hdmi_writeb(hdmi, (n >> 8) & 0xff, HDMI_AUD_N2);
430 hdmi_writeb(hdmi, n & 0xff, HDMI_AUD_N1);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200431}
432
Russell Kingb195fbd2015-07-22 11:28:16 +0100433static unsigned int hdmi_compute_n(unsigned int freq, unsigned long pixel_clk)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200434{
435 unsigned int n = (128 * freq) / 1000;
Russell Kingd0c96d12015-07-22 10:35:41 +0100436 unsigned int mult = 1;
437
438 while (freq > 48000) {
439 mult *= 2;
440 freq /= 2;
441 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200442
443 switch (freq) {
444 case 32000:
Russell King426701d2015-07-22 10:39:27 +0100445 if (pixel_clk == 25175000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100446 n = 4576;
Russell King426701d2015-07-22 10:39:27 +0100447 else if (pixel_clk == 27027000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100448 n = 4096;
Russell King426701d2015-07-22 10:39:27 +0100449 else if (pixel_clk == 74176000 || pixel_clk == 148352000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200450 n = 11648;
451 else
452 n = 4096;
Russell Kingd0c96d12015-07-22 10:35:41 +0100453 n *= mult;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200454 break;
455
456 case 44100:
Russell King426701d2015-07-22 10:39:27 +0100457 if (pixel_clk == 25175000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200458 n = 7007;
Russell King426701d2015-07-22 10:39:27 +0100459 else if (pixel_clk == 74176000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200460 n = 17836;
Russell King426701d2015-07-22 10:39:27 +0100461 else if (pixel_clk == 148352000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100462 n = 8918;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200463 else
464 n = 6272;
Russell Kingd0c96d12015-07-22 10:35:41 +0100465 n *= mult;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200466 break;
467
468 case 48000:
Russell King426701d2015-07-22 10:39:27 +0100469 if (pixel_clk == 25175000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100470 n = 6864;
Russell King426701d2015-07-22 10:39:27 +0100471 else if (pixel_clk == 27027000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100472 n = 6144;
Russell King426701d2015-07-22 10:39:27 +0100473 else if (pixel_clk == 74176000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200474 n = 11648;
Russell King426701d2015-07-22 10:39:27 +0100475 else if (pixel_clk == 148352000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100476 n = 5824;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200477 else
478 n = 6144;
Russell Kingd0c96d12015-07-22 10:35:41 +0100479 n *= mult;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200480 break;
481
482 default:
483 break;
484 }
485
486 return n;
487}
488
Andy Yanb21f4b62014-12-05 14:26:31 +0800489static void hdmi_set_clk_regenerator(struct dw_hdmi *hdmi,
Russell Kingb195fbd2015-07-22 11:28:16 +0100490 unsigned long pixel_clk, unsigned int sample_rate)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200491{
Russell Kingdfbdaf52015-07-22 16:54:37 +0100492 unsigned long ftdms = pixel_clk;
Russell Kingf879b382015-03-27 12:53:29 +0000493 unsigned int n, cts;
Russell Kingdfbdaf52015-07-22 16:54:37 +0100494 u64 tmp;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200495
Russell Kingb195fbd2015-07-22 11:28:16 +0100496 n = hdmi_compute_n(sample_rate, pixel_clk);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200497
Russell Kingdfbdaf52015-07-22 16:54:37 +0100498 /*
499 * Compute the CTS value from the N value. Note that CTS and N
500 * can be up to 20 bits in total, so we need 64-bit math. Also
501 * note that our TDMS clock is not fully accurate; it is accurate
502 * to kHz. This can introduce an unnecessary remainder in the
503 * calculation below, so we don't try to warn about that.
504 */
505 tmp = (u64)ftdms * n;
506 do_div(tmp, 128 * sample_rate);
507 cts = tmp;
508
509 dev_dbg(hdmi->dev, "%s: fs=%uHz ftdms=%lu.%03luMHz N=%d cts=%d\n",
510 __func__, sample_rate, ftdms / 1000000, (ftdms / 1000) % 1000,
511 n, cts);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200512
Russell Kingb90120a2015-03-27 12:59:58 +0000513 spin_lock_irq(&hdmi->audio_lock);
514 hdmi->audio_n = n;
515 hdmi->audio_cts = cts;
516 hdmi_set_cts_n(hdmi, cts, hdmi->audio_enable ? n : 0);
517 spin_unlock_irq(&hdmi->audio_lock);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200518}
519
Andy Yanb21f4b62014-12-05 14:26:31 +0800520static void hdmi_init_clk_regenerator(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200521{
Russell King6bcf4952015-02-02 11:01:08 +0000522 mutex_lock(&hdmi->audio_mutex);
Russell Kingb195fbd2015-07-22 11:28:16 +0100523 hdmi_set_clk_regenerator(hdmi, 74250000, hdmi->sample_rate);
Russell King6bcf4952015-02-02 11:01:08 +0000524 mutex_unlock(&hdmi->audio_mutex);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200525}
526
Andy Yanb21f4b62014-12-05 14:26:31 +0800527static void hdmi_clk_regenerator_update_pixel_clock(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200528{
Russell King6bcf4952015-02-02 11:01:08 +0000529 mutex_lock(&hdmi->audio_mutex);
Russell Kingf879b382015-03-27 12:53:29 +0000530 hdmi_set_clk_regenerator(hdmi, hdmi->hdmi_data.video_mode.mpixelclock,
Russell Kingb195fbd2015-07-22 11:28:16 +0100531 hdmi->sample_rate);
Russell King6bcf4952015-02-02 11:01:08 +0000532 mutex_unlock(&hdmi->audio_mutex);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200533}
534
Russell Kingb5814ff2015-03-27 12:50:58 +0000535void dw_hdmi_set_sample_rate(struct dw_hdmi *hdmi, unsigned int rate)
536{
537 mutex_lock(&hdmi->audio_mutex);
538 hdmi->sample_rate = rate;
539 hdmi_set_clk_regenerator(hdmi, hdmi->hdmi_data.video_mode.mpixelclock,
Russell Kingb195fbd2015-07-22 11:28:16 +0100540 hdmi->sample_rate);
Russell Kingb5814ff2015-03-27 12:50:58 +0000541 mutex_unlock(&hdmi->audio_mutex);
542}
543EXPORT_SYMBOL_GPL(dw_hdmi_set_sample_rate);
544
Russell Kingb90120a2015-03-27 12:59:58 +0000545void dw_hdmi_audio_enable(struct dw_hdmi *hdmi)
546{
547 unsigned long flags;
548
549 spin_lock_irqsave(&hdmi->audio_lock, flags);
550 hdmi->audio_enable = true;
551 hdmi_set_cts_n(hdmi, hdmi->audio_cts, hdmi->audio_n);
552 spin_unlock_irqrestore(&hdmi->audio_lock, flags);
553}
554EXPORT_SYMBOL_GPL(dw_hdmi_audio_enable);
555
556void dw_hdmi_audio_disable(struct dw_hdmi *hdmi)
557{
558 unsigned long flags;
559
560 spin_lock_irqsave(&hdmi->audio_lock, flags);
561 hdmi->audio_enable = false;
562 hdmi_set_cts_n(hdmi, hdmi->audio_cts, 0);
563 spin_unlock_irqrestore(&hdmi->audio_lock, flags);
564}
565EXPORT_SYMBOL_GPL(dw_hdmi_audio_disable);
566
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200567static bool hdmi_bus_fmt_is_rgb(unsigned int bus_format)
568{
569 switch (bus_format) {
570 case MEDIA_BUS_FMT_RGB888_1X24:
571 case MEDIA_BUS_FMT_RGB101010_1X30:
572 case MEDIA_BUS_FMT_RGB121212_1X36:
573 case MEDIA_BUS_FMT_RGB161616_1X48:
574 return true;
575
576 default:
577 return false;
578 }
579}
580
581static bool hdmi_bus_fmt_is_yuv444(unsigned int bus_format)
582{
583 switch (bus_format) {
584 case MEDIA_BUS_FMT_YUV8_1X24:
585 case MEDIA_BUS_FMT_YUV10_1X30:
586 case MEDIA_BUS_FMT_YUV12_1X36:
587 case MEDIA_BUS_FMT_YUV16_1X48:
588 return true;
589
590 default:
591 return false;
592 }
593}
594
595static bool hdmi_bus_fmt_is_yuv422(unsigned int bus_format)
596{
597 switch (bus_format) {
598 case MEDIA_BUS_FMT_UYVY8_1X16:
599 case MEDIA_BUS_FMT_UYVY10_1X20:
600 case MEDIA_BUS_FMT_UYVY12_1X24:
601 return true;
602
603 default:
604 return false;
605 }
606}
607
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200608static int hdmi_bus_fmt_color_depth(unsigned int bus_format)
609{
610 switch (bus_format) {
611 case MEDIA_BUS_FMT_RGB888_1X24:
612 case MEDIA_BUS_FMT_YUV8_1X24:
613 case MEDIA_BUS_FMT_UYVY8_1X16:
614 case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
615 return 8;
616
617 case MEDIA_BUS_FMT_RGB101010_1X30:
618 case MEDIA_BUS_FMT_YUV10_1X30:
619 case MEDIA_BUS_FMT_UYVY10_1X20:
620 case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
621 return 10;
622
623 case MEDIA_BUS_FMT_RGB121212_1X36:
624 case MEDIA_BUS_FMT_YUV12_1X36:
625 case MEDIA_BUS_FMT_UYVY12_1X24:
626 case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
627 return 12;
628
629 case MEDIA_BUS_FMT_RGB161616_1X48:
630 case MEDIA_BUS_FMT_YUV16_1X48:
631 case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
632 return 16;
633
634 default:
635 return 0;
636 }
637}
638
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200639/*
640 * this submodule is responsible for the video data synchronization.
641 * for example, for RGB 4:4:4 input, the data map is defined as
642 * pin{47~40} <==> R[7:0]
643 * pin{31~24} <==> G[7:0]
644 * pin{15~8} <==> B[7:0]
645 */
Andy Yanb21f4b62014-12-05 14:26:31 +0800646static void hdmi_video_sample(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200647{
648 int color_format = 0;
649 u8 val;
650
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200651 switch (hdmi->hdmi_data.enc_in_bus_format) {
652 case MEDIA_BUS_FMT_RGB888_1X24:
653 color_format = 0x01;
654 break;
655 case MEDIA_BUS_FMT_RGB101010_1X30:
656 color_format = 0x03;
657 break;
658 case MEDIA_BUS_FMT_RGB121212_1X36:
659 color_format = 0x05;
660 break;
661 case MEDIA_BUS_FMT_RGB161616_1X48:
662 color_format = 0x07;
663 break;
664
665 case MEDIA_BUS_FMT_YUV8_1X24:
666 case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
667 color_format = 0x09;
668 break;
669 case MEDIA_BUS_FMT_YUV10_1X30:
670 case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
671 color_format = 0x0B;
672 break;
673 case MEDIA_BUS_FMT_YUV12_1X36:
674 case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
675 color_format = 0x0D;
676 break;
677 case MEDIA_BUS_FMT_YUV16_1X48:
678 case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
679 color_format = 0x0F;
680 break;
681
682 case MEDIA_BUS_FMT_UYVY8_1X16:
683 color_format = 0x16;
684 break;
685 case MEDIA_BUS_FMT_UYVY10_1X20:
686 color_format = 0x14;
687 break;
688 case MEDIA_BUS_FMT_UYVY12_1X24:
689 color_format = 0x12;
690 break;
691
692 default:
693 return;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200694 }
695
696 val = HDMI_TX_INVID0_INTERNAL_DE_GENERATOR_DISABLE |
697 ((color_format << HDMI_TX_INVID0_VIDEO_MAPPING_OFFSET) &
698 HDMI_TX_INVID0_VIDEO_MAPPING_MASK);
699 hdmi_writeb(hdmi, val, HDMI_TX_INVID0);
700
701 /* Enable TX stuffing: When DE is inactive, fix the output data to 0 */
702 val = HDMI_TX_INSTUFFING_BDBDATA_STUFFING_ENABLE |
703 HDMI_TX_INSTUFFING_RCRDATA_STUFFING_ENABLE |
704 HDMI_TX_INSTUFFING_GYDATA_STUFFING_ENABLE;
705 hdmi_writeb(hdmi, val, HDMI_TX_INSTUFFING);
706 hdmi_writeb(hdmi, 0x0, HDMI_TX_GYDATA0);
707 hdmi_writeb(hdmi, 0x0, HDMI_TX_GYDATA1);
708 hdmi_writeb(hdmi, 0x0, HDMI_TX_RCRDATA0);
709 hdmi_writeb(hdmi, 0x0, HDMI_TX_RCRDATA1);
710 hdmi_writeb(hdmi, 0x0, HDMI_TX_BCBDATA0);
711 hdmi_writeb(hdmi, 0x0, HDMI_TX_BCBDATA1);
712}
713
Andy Yanb21f4b62014-12-05 14:26:31 +0800714static int is_color_space_conversion(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200715{
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200716 return hdmi->hdmi_data.enc_in_bus_format != hdmi->hdmi_data.enc_out_bus_format;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200717}
718
Andy Yanb21f4b62014-12-05 14:26:31 +0800719static int is_color_space_decimation(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200720{
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200721 if (!hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200722 return 0;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200723
724 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_in_bus_format) ||
725 hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_in_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200726 return 1;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200727
Fabio Estevamba92b222014-02-06 10:12:03 -0200728 return 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200729}
730
Andy Yanb21f4b62014-12-05 14:26:31 +0800731static int is_color_space_interpolation(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200732{
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200733 if (!hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_in_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200734 return 0;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200735
736 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format) ||
737 hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200738 return 1;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200739
Fabio Estevamba92b222014-02-06 10:12:03 -0200740 return 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200741}
742
Andy Yanb21f4b62014-12-05 14:26:31 +0800743static void dw_hdmi_update_csc_coeffs(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200744{
745 const u16 (*csc_coeff)[3][4] = &csc_coeff_default;
Russell Kingc082f9d2013-11-04 12:10:40 +0000746 unsigned i;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200747 u32 csc_scale = 1;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200748
749 if (is_color_space_conversion(hdmi)) {
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200750 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format)) {
751 if (hdmi->hdmi_data.enc_out_encoding ==
752 V4L2_YCBCR_ENC_601)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200753 csc_coeff = &csc_coeff_rgb_out_eitu601;
754 else
755 csc_coeff = &csc_coeff_rgb_out_eitu709;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200756 } else if (hdmi_bus_fmt_is_rgb(
757 hdmi->hdmi_data.enc_in_bus_format)) {
758 if (hdmi->hdmi_data.enc_out_encoding ==
759 V4L2_YCBCR_ENC_601)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200760 csc_coeff = &csc_coeff_rgb_in_eitu601;
761 else
762 csc_coeff = &csc_coeff_rgb_in_eitu709;
763 csc_scale = 0;
764 }
765 }
766
Russell Kingc082f9d2013-11-04 12:10:40 +0000767 /* The CSC registers are sequential, alternating MSB then LSB */
768 for (i = 0; i < ARRAY_SIZE(csc_coeff_default[0]); i++) {
769 u16 coeff_a = (*csc_coeff)[0][i];
770 u16 coeff_b = (*csc_coeff)[1][i];
771 u16 coeff_c = (*csc_coeff)[2][i];
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200772
Andy Yanb5878332014-12-05 14:23:52 +0800773 hdmi_writeb(hdmi, coeff_a & 0xff, HDMI_CSC_COEF_A1_LSB + i * 2);
Russell Kingc082f9d2013-11-04 12:10:40 +0000774 hdmi_writeb(hdmi, coeff_a >> 8, HDMI_CSC_COEF_A1_MSB + i * 2);
775 hdmi_writeb(hdmi, coeff_b & 0xff, HDMI_CSC_COEF_B1_LSB + i * 2);
776 hdmi_writeb(hdmi, coeff_b >> 8, HDMI_CSC_COEF_B1_MSB + i * 2);
Andy Yanb5878332014-12-05 14:23:52 +0800777 hdmi_writeb(hdmi, coeff_c & 0xff, HDMI_CSC_COEF_C1_LSB + i * 2);
Russell Kingc082f9d2013-11-04 12:10:40 +0000778 hdmi_writeb(hdmi, coeff_c >> 8, HDMI_CSC_COEF_C1_MSB + i * 2);
779 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200780
Russell King812bc612013-11-04 12:42:02 +0000781 hdmi_modb(hdmi, csc_scale, HDMI_CSC_SCALE_CSCSCALE_MASK,
782 HDMI_CSC_SCALE);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200783}
784
Andy Yanb21f4b62014-12-05 14:26:31 +0800785static void hdmi_video_csc(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200786{
787 int color_depth = 0;
788 int interpolation = HDMI_CSC_CFG_INTMODE_DISABLE;
789 int decimation = 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200790
791 /* YCC422 interpolation to 444 mode */
792 if (is_color_space_interpolation(hdmi))
793 interpolation = HDMI_CSC_CFG_INTMODE_CHROMA_INT_FORMULA1;
794 else if (is_color_space_decimation(hdmi))
795 decimation = HDMI_CSC_CFG_DECMODE_CHROMA_INT_FORMULA3;
796
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200797 switch (hdmi_bus_fmt_color_depth(hdmi->hdmi_data.enc_out_bus_format)) {
798 case 8:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200799 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_24BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200800 break;
801 case 10:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200802 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_30BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200803 break;
804 case 12:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200805 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_36BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200806 break;
807 case 16:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200808 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_48BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200809 break;
810
811 default:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200812 return;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200813 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200814
815 /* Configure the CSC registers */
816 hdmi_writeb(hdmi, interpolation | decimation, HDMI_CSC_CFG);
Russell King812bc612013-11-04 12:42:02 +0000817 hdmi_modb(hdmi, color_depth, HDMI_CSC_SCALE_CSC_COLORDE_PTH_MASK,
818 HDMI_CSC_SCALE);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200819
Andy Yanb21f4b62014-12-05 14:26:31 +0800820 dw_hdmi_update_csc_coeffs(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200821}
822
823/*
824 * HDMI video packetizer is used to packetize the data.
825 * for example, if input is YCC422 mode or repeater is used,
826 * data should be repacked this module can be bypassed.
827 */
Andy Yanb21f4b62014-12-05 14:26:31 +0800828static void hdmi_video_packetize(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200829{
830 unsigned int color_depth = 0;
831 unsigned int remap_size = HDMI_VP_REMAP_YCC422_16bit;
832 unsigned int output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_PP;
833 struct hdmi_data_info *hdmi_data = &hdmi->hdmi_data;
Russell Kingbebdf662013-11-04 12:55:30 +0000834 u8 val, vp_conf;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200835
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200836 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format) ||
837 hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format)) {
838 switch (hdmi_bus_fmt_color_depth(
839 hdmi->hdmi_data.enc_out_bus_format)) {
840 case 8:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200841 color_depth = 4;
842 output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200843 break;
844 case 10:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200845 color_depth = 5;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200846 break;
847 case 12:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200848 color_depth = 6;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200849 break;
850 case 16:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200851 color_depth = 7;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200852 break;
853 default:
854 output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS;
855 }
856 } else if (hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format)) {
857 switch (hdmi_bus_fmt_color_depth(
858 hdmi->hdmi_data.enc_out_bus_format)) {
859 case 0:
860 case 8:
861 remap_size = HDMI_VP_REMAP_YCC422_16bit;
862 break;
863 case 10:
864 remap_size = HDMI_VP_REMAP_YCC422_20bit;
865 break;
866 case 12:
867 remap_size = HDMI_VP_REMAP_YCC422_24bit;
868 break;
869
870 default:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200871 return;
Andy Yanb5878332014-12-05 14:23:52 +0800872 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200873 output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_YCC422;
Andy Yanb5878332014-12-05 14:23:52 +0800874 } else {
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200875 return;
Andy Yanb5878332014-12-05 14:23:52 +0800876 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200877
878 /* set the packetizer registers */
879 val = ((color_depth << HDMI_VP_PR_CD_COLOR_DEPTH_OFFSET) &
880 HDMI_VP_PR_CD_COLOR_DEPTH_MASK) |
881 ((hdmi_data->pix_repet_factor <<
882 HDMI_VP_PR_CD_DESIRED_PR_FACTOR_OFFSET) &
883 HDMI_VP_PR_CD_DESIRED_PR_FACTOR_MASK);
884 hdmi_writeb(hdmi, val, HDMI_VP_PR_CD);
885
Russell King812bc612013-11-04 12:42:02 +0000886 hdmi_modb(hdmi, HDMI_VP_STUFF_PR_STUFFING_STUFFING_MODE,
887 HDMI_VP_STUFF_PR_STUFFING_MASK, HDMI_VP_STUFF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200888
889 /* Data from pixel repeater block */
890 if (hdmi_data->pix_repet_factor > 1) {
Russell Kingbebdf662013-11-04 12:55:30 +0000891 vp_conf = HDMI_VP_CONF_PR_EN_ENABLE |
892 HDMI_VP_CONF_BYPASS_SELECT_PIX_REPEATER;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200893 } else { /* data from packetizer block */
Russell Kingbebdf662013-11-04 12:55:30 +0000894 vp_conf = HDMI_VP_CONF_PR_EN_DISABLE |
895 HDMI_VP_CONF_BYPASS_SELECT_VID_PACKETIZER;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200896 }
897
Russell Kingbebdf662013-11-04 12:55:30 +0000898 hdmi_modb(hdmi, vp_conf,
899 HDMI_VP_CONF_PR_EN_MASK |
900 HDMI_VP_CONF_BYPASS_SELECT_MASK, HDMI_VP_CONF);
901
Russell King812bc612013-11-04 12:42:02 +0000902 hdmi_modb(hdmi, 1 << HDMI_VP_STUFF_IDEFAULT_PHASE_OFFSET,
903 HDMI_VP_STUFF_IDEFAULT_PHASE_MASK, HDMI_VP_STUFF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200904
905 hdmi_writeb(hdmi, remap_size, HDMI_VP_REMAP);
906
907 if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_PP) {
Russell Kingbebdf662013-11-04 12:55:30 +0000908 vp_conf = HDMI_VP_CONF_BYPASS_EN_DISABLE |
909 HDMI_VP_CONF_PP_EN_ENABLE |
910 HDMI_VP_CONF_YCC422_EN_DISABLE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200911 } else if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_YCC422) {
Russell Kingbebdf662013-11-04 12:55:30 +0000912 vp_conf = HDMI_VP_CONF_BYPASS_EN_DISABLE |
913 HDMI_VP_CONF_PP_EN_DISABLE |
914 HDMI_VP_CONF_YCC422_EN_ENABLE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200915 } else if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS) {
Russell Kingbebdf662013-11-04 12:55:30 +0000916 vp_conf = HDMI_VP_CONF_BYPASS_EN_ENABLE |
917 HDMI_VP_CONF_PP_EN_DISABLE |
918 HDMI_VP_CONF_YCC422_EN_DISABLE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200919 } else {
920 return;
921 }
922
Russell Kingbebdf662013-11-04 12:55:30 +0000923 hdmi_modb(hdmi, vp_conf,
924 HDMI_VP_CONF_BYPASS_EN_MASK | HDMI_VP_CONF_PP_EN_ENMASK |
925 HDMI_VP_CONF_YCC422_EN_MASK, HDMI_VP_CONF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200926
Russell King812bc612013-11-04 12:42:02 +0000927 hdmi_modb(hdmi, HDMI_VP_STUFF_PP_STUFFING_STUFFING_MODE |
928 HDMI_VP_STUFF_YCC422_STUFFING_STUFFING_MODE,
929 HDMI_VP_STUFF_PP_STUFFING_MASK |
930 HDMI_VP_STUFF_YCC422_STUFFING_MASK, HDMI_VP_STUFF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200931
Russell King812bc612013-11-04 12:42:02 +0000932 hdmi_modb(hdmi, output_select, HDMI_VP_CONF_OUTPUT_SELECTOR_MASK,
933 HDMI_VP_CONF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200934}
935
Laurent Pinchartf1585f62017-03-06 01:36:15 +0200936/* -----------------------------------------------------------------------------
937 * Synopsys PHY Handling
938 */
939
Andy Yanb21f4b62014-12-05 14:26:31 +0800940static inline void hdmi_phy_test_clear(struct dw_hdmi *hdmi,
Andy Yanb5878332014-12-05 14:23:52 +0800941 unsigned char bit)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200942{
Russell King812bc612013-11-04 12:42:02 +0000943 hdmi_modb(hdmi, bit << HDMI_PHY_TST0_TSTCLR_OFFSET,
944 HDMI_PHY_TST0_TSTCLR_MASK, HDMI_PHY_TST0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200945}
946
Andy Yanb21f4b62014-12-05 14:26:31 +0800947static bool hdmi_phy_wait_i2c_done(struct dw_hdmi *hdmi, int msec)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200948{
Andy Yana4d3b8b2014-12-05 14:31:09 +0800949 u32 val;
950
951 while ((val = hdmi_readb(hdmi, HDMI_IH_I2CMPHY_STAT0) & 0x3) == 0) {
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200952 if (msec-- == 0)
953 return false;
Emil Renner Berthing0e6bcf32014-03-30 00:21:21 +0100954 udelay(1000);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200955 }
Andy Yana4d3b8b2014-12-05 14:31:09 +0800956 hdmi_writeb(hdmi, val, HDMI_IH_I2CMPHY_STAT0);
957
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200958 return true;
959}
960
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +0200961void dw_hdmi_phy_i2c_write(struct dw_hdmi *hdmi, unsigned short data,
962 unsigned char addr)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200963{
964 hdmi_writeb(hdmi, 0xFF, HDMI_IH_I2CMPHY_STAT0);
965 hdmi_writeb(hdmi, addr, HDMI_PHY_I2CM_ADDRESS_ADDR);
966 hdmi_writeb(hdmi, (unsigned char)(data >> 8),
Andy Yanb5878332014-12-05 14:23:52 +0800967 HDMI_PHY_I2CM_DATAO_1_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200968 hdmi_writeb(hdmi, (unsigned char)(data >> 0),
Andy Yanb5878332014-12-05 14:23:52 +0800969 HDMI_PHY_I2CM_DATAO_0_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200970 hdmi_writeb(hdmi, HDMI_PHY_I2CM_OPERATION_ADDR_WRITE,
Andy Yanb5878332014-12-05 14:23:52 +0800971 HDMI_PHY_I2CM_OPERATION_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200972 hdmi_phy_wait_i2c_done(hdmi, 1000);
973}
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +0200974EXPORT_SYMBOL_GPL(dw_hdmi_phy_i2c_write);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200975
Russell King2fada102015-07-28 12:21:34 +0100976static void dw_hdmi_phy_enable_powerdown(struct dw_hdmi *hdmi, bool enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200977{
Russell King2fada102015-07-28 12:21:34 +0100978 hdmi_mask_writeb(hdmi, !enable, HDMI_PHY_CONF0,
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200979 HDMI_PHY_CONF0_PDZ_OFFSET,
980 HDMI_PHY_CONF0_PDZ_MASK);
981}
982
Andy Yanb21f4b62014-12-05 14:26:31 +0800983static void dw_hdmi_phy_enable_tmds(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200984{
985 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
986 HDMI_PHY_CONF0_ENTMDS_OFFSET,
987 HDMI_PHY_CONF0_ENTMDS_MASK);
988}
989
Laurent Pinchartf4104e82017-01-17 10:29:02 +0200990static void dw_hdmi_phy_enable_svsret(struct dw_hdmi *hdmi, u8 enable)
Andy Yand346c142014-12-05 14:31:53 +0800991{
992 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
Laurent Pinchartf4104e82017-01-17 10:29:02 +0200993 HDMI_PHY_CONF0_SVSRET_OFFSET,
994 HDMI_PHY_CONF0_SVSRET_MASK);
Andy Yand346c142014-12-05 14:31:53 +0800995}
996
Andy Yanb21f4b62014-12-05 14:26:31 +0800997static void dw_hdmi_phy_gen2_pddq(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200998{
999 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1000 HDMI_PHY_CONF0_GEN2_PDDQ_OFFSET,
1001 HDMI_PHY_CONF0_GEN2_PDDQ_MASK);
1002}
1003
Andy Yanb21f4b62014-12-05 14:26:31 +08001004static void dw_hdmi_phy_gen2_txpwron(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001005{
1006 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1007 HDMI_PHY_CONF0_GEN2_TXPWRON_OFFSET,
1008 HDMI_PHY_CONF0_GEN2_TXPWRON_MASK);
1009}
1010
Andy Yanb21f4b62014-12-05 14:26:31 +08001011static void dw_hdmi_phy_sel_data_en_pol(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001012{
1013 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1014 HDMI_PHY_CONF0_SELDATAENPOL_OFFSET,
1015 HDMI_PHY_CONF0_SELDATAENPOL_MASK);
1016}
1017
Andy Yanb21f4b62014-12-05 14:26:31 +08001018static void dw_hdmi_phy_sel_interface_control(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001019{
1020 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1021 HDMI_PHY_CONF0_SELDIPIF_OFFSET,
1022 HDMI_PHY_CONF0_SELDIPIF_MASK);
1023}
1024
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02001025static void dw_hdmi_phy_power_off(struct dw_hdmi *hdmi)
1026{
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001027 const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02001028 unsigned int i;
1029 u16 val;
1030
1031 if (phy->gen == 1) {
1032 dw_hdmi_phy_enable_tmds(hdmi, 0);
1033 dw_hdmi_phy_enable_powerdown(hdmi, true);
1034 return;
1035 }
1036
1037 dw_hdmi_phy_gen2_txpwron(hdmi, 0);
1038
1039 /*
1040 * Wait for TX_PHY_LOCK to be deasserted to indicate that the PHY went
1041 * to low power mode.
1042 */
1043 for (i = 0; i < 5; ++i) {
1044 val = hdmi_readb(hdmi, HDMI_PHY_STAT0);
1045 if (!(val & HDMI_PHY_TX_PHY_LOCK))
1046 break;
1047
1048 usleep_range(1000, 2000);
1049 }
1050
1051 if (val & HDMI_PHY_TX_PHY_LOCK)
1052 dev_warn(hdmi->dev, "PHY failed to power down\n");
1053 else
1054 dev_dbg(hdmi->dev, "PHY powered down in %u iterations\n", i);
1055
1056 dw_hdmi_phy_gen2_pddq(hdmi, 1);
1057}
1058
Laurent Pinchart181e0ef2017-03-06 01:35:57 +02001059static int dw_hdmi_phy_power_on(struct dw_hdmi *hdmi)
1060{
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001061 const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
Laurent Pinchart181e0ef2017-03-06 01:35:57 +02001062 unsigned int i;
1063 u8 val;
1064
1065 if (phy->gen == 1) {
1066 dw_hdmi_phy_enable_powerdown(hdmi, false);
1067
1068 /* Toggle TMDS enable. */
1069 dw_hdmi_phy_enable_tmds(hdmi, 0);
1070 dw_hdmi_phy_enable_tmds(hdmi, 1);
1071 return 0;
1072 }
1073
1074 dw_hdmi_phy_gen2_txpwron(hdmi, 1);
1075 dw_hdmi_phy_gen2_pddq(hdmi, 0);
1076
1077 /* Wait for PHY PLL lock */
1078 for (i = 0; i < 5; ++i) {
1079 val = hdmi_readb(hdmi, HDMI_PHY_STAT0) & HDMI_PHY_TX_PHY_LOCK;
1080 if (val)
1081 break;
1082
1083 usleep_range(1000, 2000);
1084 }
1085
1086 if (!val) {
1087 dev_err(hdmi->dev, "PHY PLL failed to lock\n");
1088 return -ETIMEDOUT;
1089 }
1090
1091 dev_dbg(hdmi->dev, "PHY PLL locked %u iterations\n", i);
1092 return 0;
1093}
1094
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001095/*
1096 * PHY configuration function for the DWC HDMI 3D TX PHY. Based on the available
1097 * information the DWC MHL PHY has the same register layout and is thus also
1098 * supported by this function.
1099 */
1100static int hdmi_phy_configure_dwc_hdmi_3d_tx(struct dw_hdmi *hdmi,
1101 const struct dw_hdmi_plat_data *pdata,
1102 unsigned long mpixelclock)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001103{
Russell King39cc1532015-03-31 18:34:11 +01001104 const struct dw_hdmi_mpll_config *mpll_config = pdata->mpll_cfg;
1105 const struct dw_hdmi_curr_ctrl *curr_ctrl = pdata->cur_ctr;
1106 const struct dw_hdmi_phy_config *phy_config = pdata->phy_config;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001107
Russell King39cc1532015-03-31 18:34:11 +01001108 /* PLL/MPLL Cfg - always match on final entry */
1109 for (; mpll_config->mpixelclock != ~0UL; mpll_config++)
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001110 if (mpixelclock <= mpll_config->mpixelclock)
Russell King39cc1532015-03-31 18:34:11 +01001111 break;
1112
1113 for (; curr_ctrl->mpixelclock != ~0UL; curr_ctrl++)
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001114 if (mpixelclock <= curr_ctrl->mpixelclock)
Russell King39cc1532015-03-31 18:34:11 +01001115 break;
1116
1117 for (; phy_config->mpixelclock != ~0UL; phy_config++)
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001118 if (mpixelclock <= phy_config->mpixelclock)
Russell King39cc1532015-03-31 18:34:11 +01001119 break;
1120
1121 if (mpll_config->mpixelclock == ~0UL ||
1122 curr_ctrl->mpixelclock == ~0UL ||
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001123 phy_config->mpixelclock == ~0UL)
Russell King39cc1532015-03-31 18:34:11 +01001124 return -EINVAL;
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001125
1126 dw_hdmi_phy_i2c_write(hdmi, mpll_config->res[0].cpce,
1127 HDMI_3D_TX_PHY_CPCE_CTRL);
1128 dw_hdmi_phy_i2c_write(hdmi, mpll_config->res[0].gmp,
1129 HDMI_3D_TX_PHY_GMPCTRL);
1130 dw_hdmi_phy_i2c_write(hdmi, curr_ctrl->curr[0],
1131 HDMI_3D_TX_PHY_CURRCTRL);
1132
1133 dw_hdmi_phy_i2c_write(hdmi, 0, HDMI_3D_TX_PHY_PLLPHBYCTRL);
1134 dw_hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK,
1135 HDMI_3D_TX_PHY_MSM_CTRL);
1136
1137 dw_hdmi_phy_i2c_write(hdmi, phy_config->term, HDMI_3D_TX_PHY_TXTERM);
1138 dw_hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr,
1139 HDMI_3D_TX_PHY_CKSYMTXCTRL);
1140 dw_hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr,
1141 HDMI_3D_TX_PHY_VLEVCTRL);
1142
1143 /* Override and disable clock termination. */
1144 dw_hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE,
1145 HDMI_3D_TX_PHY_CKCALCTRL);
1146
1147 return 0;
1148}
1149
1150static int hdmi_phy_configure(struct dw_hdmi *hdmi)
1151{
1152 const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
1153 const struct dw_hdmi_plat_data *pdata = hdmi->plat_data;
1154 unsigned long mpixelclock = hdmi->hdmi_data.video_mode.mpixelclock;
1155 int ret;
Russell King39cc1532015-03-31 18:34:11 +01001156
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02001157 dw_hdmi_phy_power_off(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001158
Laurent Pinchart2668db32017-01-17 10:29:09 +02001159 /* Leave low power consumption mode by asserting SVSRET. */
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001160 if (phy->has_svsret)
Laurent Pinchart2668db32017-01-17 10:29:09 +02001161 dw_hdmi_phy_enable_svsret(hdmi, 1);
1162
Laurent Pinchart54d72732017-01-17 10:29:08 +02001163 /* PHY reset. The reset signal is active high on Gen2 PHYs. */
1164 hdmi_writeb(hdmi, HDMI_MC_PHYRSTZ_PHYRSTZ, HDMI_MC_PHYRSTZ);
1165 hdmi_writeb(hdmi, 0, HDMI_MC_PHYRSTZ);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001166
1167 hdmi_writeb(hdmi, HDMI_MC_HEACPHY_RST_ASSERT, HDMI_MC_HEACPHY_RST);
1168
1169 hdmi_phy_test_clear(hdmi, 1);
1170 hdmi_writeb(hdmi, HDMI_PHY_I2CM_SLAVE_ADDR_PHY_GEN2,
Andy Yanb5878332014-12-05 14:23:52 +08001171 HDMI_PHY_I2CM_SLAVE_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001172 hdmi_phy_test_clear(hdmi, 0);
1173
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001174 /* Write to the PHY as configured by the platform */
1175 if (pdata->configure_phy)
1176 ret = pdata->configure_phy(hdmi, pdata, mpixelclock);
1177 else
1178 ret = phy->configure(hdmi, pdata, mpixelclock);
1179 if (ret) {
1180 dev_err(hdmi->dev, "PHY configuration failed (clock %lu)\n",
1181 mpixelclock);
1182 return ret;
1183 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001184
Laurent Pinchart181e0ef2017-03-06 01:35:57 +02001185 return dw_hdmi_phy_power_on(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001186}
1187
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001188static int dw_hdmi_phy_init(struct dw_hdmi *hdmi, void *data,
1189 struct drm_display_mode *mode)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001190{
1191 int i, ret;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001192
1193 /* HDMI Phy spec says to do the phy initialization sequence twice */
1194 for (i = 0; i < 2; i++) {
Andy Yanb21f4b62014-12-05 14:26:31 +08001195 dw_hdmi_phy_sel_data_en_pol(hdmi, 1);
1196 dw_hdmi_phy_sel_interface_control(hdmi, 0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001197
Laurent Pinchart8b9e1c02017-03-03 19:19:59 +02001198 ret = hdmi_phy_configure(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001199 if (ret)
1200 return ret;
1201 }
1202
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001203 return 0;
1204}
1205
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001206static void dw_hdmi_phy_disable(struct dw_hdmi *hdmi, void *data)
1207{
1208 dw_hdmi_phy_power_off(hdmi);
1209}
1210
1211static enum drm_connector_status dw_hdmi_phy_read_hpd(struct dw_hdmi *hdmi,
1212 void *data)
1213{
1214 return hdmi_readb(hdmi, HDMI_PHY_STAT0) & HDMI_PHY_HPD ?
1215 connector_status_connected : connector_status_disconnected;
1216}
1217
Neil Armstrong386d3292017-04-04 14:31:59 +02001218static void dw_hdmi_phy_update_hpd(struct dw_hdmi *hdmi, void *data,
1219 bool force, bool disabled, bool rxsense)
1220{
1221 u8 old_mask = hdmi->phy_mask;
1222
1223 if (force || disabled || !rxsense)
1224 hdmi->phy_mask |= HDMI_PHY_RX_SENSE;
1225 else
1226 hdmi->phy_mask &= ~HDMI_PHY_RX_SENSE;
1227
1228 if (old_mask != hdmi->phy_mask)
1229 hdmi_writeb(hdmi, hdmi->phy_mask, HDMI_PHY_MASK0);
1230}
1231
1232static void dw_hdmi_phy_setup_hpd(struct dw_hdmi *hdmi, void *data)
1233{
1234 /*
1235 * Configure the PHY RX SENSE and HPD interrupts polarities and clear
1236 * any pending interrupt.
1237 */
1238 hdmi_writeb(hdmi, HDMI_PHY_HPD | HDMI_PHY_RX_SENSE, HDMI_PHY_POL0);
1239 hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE,
1240 HDMI_IH_PHY_STAT0);
1241
1242 /* Enable cable hot plug irq. */
1243 hdmi_writeb(hdmi, hdmi->phy_mask, HDMI_PHY_MASK0);
1244
1245 /* Clear and unmute interrupts. */
1246 hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE,
1247 HDMI_IH_PHY_STAT0);
1248 hdmi_writeb(hdmi, ~(HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE),
1249 HDMI_IH_MUTE_PHY_STAT0);
1250}
1251
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001252static const struct dw_hdmi_phy_ops dw_hdmi_synopsys_phy_ops = {
1253 .init = dw_hdmi_phy_init,
1254 .disable = dw_hdmi_phy_disable,
1255 .read_hpd = dw_hdmi_phy_read_hpd,
Neil Armstrong386d3292017-04-04 14:31:59 +02001256 .update_hpd = dw_hdmi_phy_update_hpd,
1257 .setup_hpd = dw_hdmi_phy_setup_hpd,
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001258};
1259
1260/* -----------------------------------------------------------------------------
1261 * HDMI TX Setup
1262 */
1263
Andy Yanb21f4b62014-12-05 14:26:31 +08001264static void hdmi_tx_hdcp_config(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001265{
Russell King812bc612013-11-04 12:42:02 +00001266 u8 de;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001267
1268 if (hdmi->hdmi_data.video_mode.mdataenablepolarity)
1269 de = HDMI_A_VIDPOLCFG_DATAENPOL_ACTIVE_HIGH;
1270 else
1271 de = HDMI_A_VIDPOLCFG_DATAENPOL_ACTIVE_LOW;
1272
1273 /* disable rx detect */
Russell King812bc612013-11-04 12:42:02 +00001274 hdmi_modb(hdmi, HDMI_A_HDCPCFG0_RXDETECT_DISABLE,
1275 HDMI_A_HDCPCFG0_RXDETECT_MASK, HDMI_A_HDCPCFG0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001276
Russell King812bc612013-11-04 12:42:02 +00001277 hdmi_modb(hdmi, de, HDMI_A_VIDPOLCFG_DATAENPOL_MASK, HDMI_A_VIDPOLCFG);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001278
Russell King812bc612013-11-04 12:42:02 +00001279 hdmi_modb(hdmi, HDMI_A_HDCPCFG1_ENCRYPTIONDISABLE_DISABLE,
1280 HDMI_A_HDCPCFG1_ENCRYPTIONDISABLE_MASK, HDMI_A_HDCPCFG1);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001281}
1282
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001283static void hdmi_config_AVI(struct dw_hdmi *hdmi, struct drm_display_mode *mode)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001284{
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001285 struct hdmi_avi_infoframe frame;
1286 u8 val;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001287
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001288 /* Initialise info frame from DRM mode */
1289 drm_hdmi_avi_infoframe_from_display_mode(&frame, mode);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001290
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001291 if (hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format))
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001292 frame.colorspace = HDMI_COLORSPACE_YUV444;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001293 else if (hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format))
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001294 frame.colorspace = HDMI_COLORSPACE_YUV422;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001295 else
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001296 frame.colorspace = HDMI_COLORSPACE_RGB;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001297
1298 /* Set up colorimetry */
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001299 switch (hdmi->hdmi_data.enc_out_encoding) {
1300 case V4L2_YCBCR_ENC_601:
1301 if (hdmi->hdmi_data.enc_in_encoding == V4L2_YCBCR_ENC_XV601)
1302 frame.colorimetry = HDMI_COLORIMETRY_EXTENDED;
1303 else
1304 frame.colorimetry = HDMI_COLORIMETRY_ITU_601;
1305 frame.extended_colorimetry =
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001306 HDMI_EXTENDED_COLORIMETRY_XV_YCC_601;
Dan Carpenterf40d6562017-04-06 08:21:32 +03001307 break;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001308 case V4L2_YCBCR_ENC_709:
1309 if (hdmi->hdmi_data.enc_in_encoding == V4L2_YCBCR_ENC_XV709)
1310 frame.colorimetry = HDMI_COLORIMETRY_EXTENDED;
1311 else
1312 frame.colorimetry = HDMI_COLORIMETRY_ITU_709;
1313 frame.extended_colorimetry =
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001314 HDMI_EXTENDED_COLORIMETRY_XV_YCC_709;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001315 break;
1316 default: /* Carries no data */
1317 frame.colorimetry = HDMI_COLORIMETRY_ITU_601;
1318 frame.extended_colorimetry =
1319 HDMI_EXTENDED_COLORIMETRY_XV_YCC_601;
1320 break;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001321 }
1322
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001323 frame.scan_mode = HDMI_SCAN_MODE_NONE;
1324
1325 /*
1326 * The Designware IP uses a different byte format from standard
1327 * AVI info frames, though generally the bits are in the correct
1328 * bytes.
1329 */
1330
1331 /*
Jose Abreub0118e72016-08-29 10:30:51 +01001332 * AVI data byte 1 differences: Colorspace in bits 0,1 rather than 5,6,
1333 * scan info in bits 4,5 rather than 0,1 and active aspect present in
1334 * bit 6 rather than 4.
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001335 */
Jose Abreub0118e72016-08-29 10:30:51 +01001336 val = (frame.scan_mode & 3) << 4 | (frame.colorspace & 3);
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001337 if (frame.active_aspect & 15)
1338 val |= HDMI_FC_AVICONF0_ACTIVE_FMT_INFO_PRESENT;
1339 if (frame.top_bar || frame.bottom_bar)
1340 val |= HDMI_FC_AVICONF0_BAR_DATA_HORIZ_BAR;
1341 if (frame.left_bar || frame.right_bar)
1342 val |= HDMI_FC_AVICONF0_BAR_DATA_VERT_BAR;
1343 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF0);
1344
1345 /* AVI data byte 2 differences: none */
1346 val = ((frame.colorimetry & 0x3) << 6) |
1347 ((frame.picture_aspect & 0x3) << 4) |
1348 (frame.active_aspect & 0xf);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001349 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF1);
1350
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001351 /* AVI data byte 3 differences: none */
1352 val = ((frame.extended_colorimetry & 0x7) << 4) |
1353 ((frame.quantization_range & 0x3) << 2) |
1354 (frame.nups & 0x3);
1355 if (frame.itc)
1356 val |= HDMI_FC_AVICONF2_IT_CONTENT_VALID;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001357 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF2);
1358
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001359 /* AVI data byte 4 differences: none */
1360 val = frame.video_code & 0x7f;
1361 hdmi_writeb(hdmi, val, HDMI_FC_AVIVID);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001362
1363 /* AVI Data Byte 5- set up input and output pixel repetition */
1364 val = (((hdmi->hdmi_data.video_mode.mpixelrepetitioninput + 1) <<
1365 HDMI_FC_PRCONF_INCOMING_PR_FACTOR_OFFSET) &
1366 HDMI_FC_PRCONF_INCOMING_PR_FACTOR_MASK) |
1367 ((hdmi->hdmi_data.video_mode.mpixelrepetitionoutput <<
1368 HDMI_FC_PRCONF_OUTPUT_PR_FACTOR_OFFSET) &
1369 HDMI_FC_PRCONF_OUTPUT_PR_FACTOR_MASK);
1370 hdmi_writeb(hdmi, val, HDMI_FC_PRCONF);
1371
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001372 /*
1373 * AVI data byte 5 differences: content type in 0,1 rather than 4,5,
1374 * ycc range in bits 2,3 rather than 6,7
1375 */
1376 val = ((frame.ycc_quantization_range & 0x3) << 2) |
1377 (frame.content_type & 0x3);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001378 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF3);
1379
1380 /* AVI Data Bytes 6-13 */
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001381 hdmi_writeb(hdmi, frame.top_bar & 0xff, HDMI_FC_AVIETB0);
1382 hdmi_writeb(hdmi, (frame.top_bar >> 8) & 0xff, HDMI_FC_AVIETB1);
1383 hdmi_writeb(hdmi, frame.bottom_bar & 0xff, HDMI_FC_AVISBB0);
1384 hdmi_writeb(hdmi, (frame.bottom_bar >> 8) & 0xff, HDMI_FC_AVISBB1);
1385 hdmi_writeb(hdmi, frame.left_bar & 0xff, HDMI_FC_AVIELB0);
1386 hdmi_writeb(hdmi, (frame.left_bar >> 8) & 0xff, HDMI_FC_AVIELB1);
1387 hdmi_writeb(hdmi, frame.right_bar & 0xff, HDMI_FC_AVISRB0);
1388 hdmi_writeb(hdmi, (frame.right_bar >> 8) & 0xff, HDMI_FC_AVISRB1);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001389}
1390
Nickey Yang9aa1eca2017-03-21 15:36:17 +08001391static void hdmi_config_vendor_specific_infoframe(struct dw_hdmi *hdmi,
1392 struct drm_display_mode *mode)
1393{
1394 struct hdmi_vendor_infoframe frame;
1395 u8 buffer[10];
1396 ssize_t err;
1397
1398 err = drm_hdmi_vendor_infoframe_from_display_mode(&frame, mode);
1399 if (err < 0)
1400 /*
1401 * Going into that statement does not means vendor infoframe
1402 * fails. It just informed us that vendor infoframe is not
1403 * needed for the selected mode. Only 4k or stereoscopic 3D
1404 * mode requires vendor infoframe. So just simply return.
1405 */
1406 return;
1407
1408 err = hdmi_vendor_infoframe_pack(&frame, buffer, sizeof(buffer));
1409 if (err < 0) {
1410 dev_err(hdmi->dev, "Failed to pack vendor infoframe: %zd\n",
1411 err);
1412 return;
1413 }
1414 hdmi_mask_writeb(hdmi, 0, HDMI_FC_DATAUTO0, HDMI_FC_DATAUTO0_VSD_OFFSET,
1415 HDMI_FC_DATAUTO0_VSD_MASK);
1416
1417 /* Set the length of HDMI vendor specific InfoFrame payload */
1418 hdmi_writeb(hdmi, buffer[2], HDMI_FC_VSDSIZE);
1419
1420 /* Set 24bit IEEE Registration Identifier */
1421 hdmi_writeb(hdmi, buffer[4], HDMI_FC_VSDIEEEID0);
1422 hdmi_writeb(hdmi, buffer[5], HDMI_FC_VSDIEEEID1);
1423 hdmi_writeb(hdmi, buffer[6], HDMI_FC_VSDIEEEID2);
1424
1425 /* Set HDMI_Video_Format and HDMI_VIC/3D_Structure */
1426 hdmi_writeb(hdmi, buffer[7], HDMI_FC_VSDPAYLOAD0);
1427 hdmi_writeb(hdmi, buffer[8], HDMI_FC_VSDPAYLOAD1);
1428
1429 if (frame.s3d_struct >= HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF)
1430 hdmi_writeb(hdmi, buffer[9], HDMI_FC_VSDPAYLOAD2);
1431
1432 /* Packet frame interpolation */
1433 hdmi_writeb(hdmi, 1, HDMI_FC_DATAUTO1);
1434
1435 /* Auto packets per frame and line spacing */
1436 hdmi_writeb(hdmi, 0x11, HDMI_FC_DATAUTO2);
1437
1438 /* Configures the Frame Composer On RDRB mode */
1439 hdmi_mask_writeb(hdmi, 1, HDMI_FC_DATAUTO0, HDMI_FC_DATAUTO0_VSD_OFFSET,
1440 HDMI_FC_DATAUTO0_VSD_MASK);
1441}
1442
Andy Yanb21f4b62014-12-05 14:26:31 +08001443static void hdmi_av_composer(struct dw_hdmi *hdmi,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001444 const struct drm_display_mode *mode)
1445{
1446 u8 inv_val;
1447 struct hdmi_vmode *vmode = &hdmi->hdmi_data.video_mode;
1448 int hblank, vblank, h_de_hs, v_de_vs, hsync_len, vsync_len;
Russell Kinge80b9f42015-07-21 11:08:25 +01001449 unsigned int vdisplay;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001450
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001451 vmode->mpixelclock = mode->clock * 1000;
1452
1453 dev_dbg(hdmi->dev, "final pixclk = %d\n", vmode->mpixelclock);
1454
1455 /* Set up HDMI_FC_INVIDCONF */
1456 inv_val = (hdmi->hdmi_data.hdcp_enable ?
1457 HDMI_FC_INVIDCONF_HDCP_KEEPOUT_ACTIVE :
1458 HDMI_FC_INVIDCONF_HDCP_KEEPOUT_INACTIVE);
1459
Russell Kingb91eee82015-03-27 23:27:17 +00001460 inv_val |= mode->flags & DRM_MODE_FLAG_PVSYNC ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001461 HDMI_FC_INVIDCONF_VSYNC_IN_POLARITY_ACTIVE_HIGH :
Russell Kingb91eee82015-03-27 23:27:17 +00001462 HDMI_FC_INVIDCONF_VSYNC_IN_POLARITY_ACTIVE_LOW;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001463
Russell Kingb91eee82015-03-27 23:27:17 +00001464 inv_val |= mode->flags & DRM_MODE_FLAG_PHSYNC ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001465 HDMI_FC_INVIDCONF_HSYNC_IN_POLARITY_ACTIVE_HIGH :
Russell Kingb91eee82015-03-27 23:27:17 +00001466 HDMI_FC_INVIDCONF_HSYNC_IN_POLARITY_ACTIVE_LOW;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001467
1468 inv_val |= (vmode->mdataenablepolarity ?
1469 HDMI_FC_INVIDCONF_DE_IN_POLARITY_ACTIVE_HIGH :
1470 HDMI_FC_INVIDCONF_DE_IN_POLARITY_ACTIVE_LOW);
1471
1472 if (hdmi->vic == 39)
1473 inv_val |= HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_HIGH;
1474 else
Russell Kingb91eee82015-03-27 23:27:17 +00001475 inv_val |= mode->flags & DRM_MODE_FLAG_INTERLACE ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001476 HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_HIGH :
Russell Kingb91eee82015-03-27 23:27:17 +00001477 HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_LOW;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001478
Russell Kingb91eee82015-03-27 23:27:17 +00001479 inv_val |= mode->flags & DRM_MODE_FLAG_INTERLACE ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001480 HDMI_FC_INVIDCONF_IN_I_P_INTERLACED :
Russell Kingb91eee82015-03-27 23:27:17 +00001481 HDMI_FC_INVIDCONF_IN_I_P_PROGRESSIVE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001482
Russell King05b13422015-07-21 15:35:52 +01001483 inv_val |= hdmi->sink_is_hdmi ?
1484 HDMI_FC_INVIDCONF_DVI_MODEZ_HDMI_MODE :
1485 HDMI_FC_INVIDCONF_DVI_MODEZ_DVI_MODE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001486
1487 hdmi_writeb(hdmi, inv_val, HDMI_FC_INVIDCONF);
1488
Russell Kinge80b9f42015-07-21 11:08:25 +01001489 vdisplay = mode->vdisplay;
1490 vblank = mode->vtotal - mode->vdisplay;
1491 v_de_vs = mode->vsync_start - mode->vdisplay;
1492 vsync_len = mode->vsync_end - mode->vsync_start;
1493
1494 /*
1495 * When we're setting an interlaced mode, we need
1496 * to adjust the vertical timing to suit.
1497 */
1498 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
1499 vdisplay /= 2;
1500 vblank /= 2;
1501 v_de_vs /= 2;
1502 vsync_len /= 2;
1503 }
1504
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001505 /* Set up horizontal active pixel width */
1506 hdmi_writeb(hdmi, mode->hdisplay >> 8, HDMI_FC_INHACTV1);
1507 hdmi_writeb(hdmi, mode->hdisplay, HDMI_FC_INHACTV0);
1508
1509 /* Set up vertical active lines */
Russell Kinge80b9f42015-07-21 11:08:25 +01001510 hdmi_writeb(hdmi, vdisplay >> 8, HDMI_FC_INVACTV1);
1511 hdmi_writeb(hdmi, vdisplay, HDMI_FC_INVACTV0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001512
1513 /* Set up horizontal blanking pixel region width */
1514 hblank = mode->htotal - mode->hdisplay;
1515 hdmi_writeb(hdmi, hblank >> 8, HDMI_FC_INHBLANK1);
1516 hdmi_writeb(hdmi, hblank, HDMI_FC_INHBLANK0);
1517
1518 /* Set up vertical blanking pixel region width */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001519 hdmi_writeb(hdmi, vblank, HDMI_FC_INVBLANK);
1520
1521 /* Set up HSYNC active edge delay width (in pixel clks) */
1522 h_de_hs = mode->hsync_start - mode->hdisplay;
1523 hdmi_writeb(hdmi, h_de_hs >> 8, HDMI_FC_HSYNCINDELAY1);
1524 hdmi_writeb(hdmi, h_de_hs, HDMI_FC_HSYNCINDELAY0);
1525
1526 /* Set up VSYNC active edge delay (in lines) */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001527 hdmi_writeb(hdmi, v_de_vs, HDMI_FC_VSYNCINDELAY);
1528
1529 /* Set up HSYNC active pulse width (in pixel clks) */
1530 hsync_len = mode->hsync_end - mode->hsync_start;
1531 hdmi_writeb(hdmi, hsync_len >> 8, HDMI_FC_HSYNCINWIDTH1);
1532 hdmi_writeb(hdmi, hsync_len, HDMI_FC_HSYNCINWIDTH0);
1533
1534 /* Set up VSYNC active edge delay (in lines) */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001535 hdmi_writeb(hdmi, vsync_len, HDMI_FC_VSYNCINWIDTH);
1536}
1537
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001538/* HDMI Initialization Step B.4 */
Andy Yanb21f4b62014-12-05 14:26:31 +08001539static void dw_hdmi_enable_video_path(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001540{
1541 u8 clkdis;
1542
1543 /* control period minimum duration */
1544 hdmi_writeb(hdmi, 12, HDMI_FC_CTRLDUR);
1545 hdmi_writeb(hdmi, 32, HDMI_FC_EXCTRLDUR);
1546 hdmi_writeb(hdmi, 1, HDMI_FC_EXCTRLSPAC);
1547
1548 /* Set to fill TMDS data channels */
1549 hdmi_writeb(hdmi, 0x0B, HDMI_FC_CH0PREAM);
1550 hdmi_writeb(hdmi, 0x16, HDMI_FC_CH1PREAM);
1551 hdmi_writeb(hdmi, 0x21, HDMI_FC_CH2PREAM);
1552
1553 /* Enable pixel clock and tmds data path */
1554 clkdis = 0x7F;
1555 clkdis &= ~HDMI_MC_CLKDIS_PIXELCLK_DISABLE;
1556 hdmi_writeb(hdmi, clkdis, HDMI_MC_CLKDIS);
1557
1558 clkdis &= ~HDMI_MC_CLKDIS_TMDSCLK_DISABLE;
1559 hdmi_writeb(hdmi, clkdis, HDMI_MC_CLKDIS);
1560
1561 /* Enable csc path */
1562 if (is_color_space_conversion(hdmi)) {
1563 clkdis &= ~HDMI_MC_CLKDIS_CSCCLK_DISABLE;
1564 hdmi_writeb(hdmi, clkdis, HDMI_MC_CLKDIS);
1565 }
Laurent Pinchart8b9e1c02017-03-03 19:19:59 +02001566
Neil Armstrong14247d72017-03-03 19:20:00 +02001567 /* Enable color space conversion if needed */
1568 if (is_color_space_conversion(hdmi))
Laurent Pinchart8b9e1c02017-03-03 19:19:59 +02001569 hdmi_writeb(hdmi, HDMI_MC_FLOWCTRL_FEED_THROUGH_OFF_CSC_IN_PATH,
1570 HDMI_MC_FLOWCTRL);
1571 else
1572 hdmi_writeb(hdmi, HDMI_MC_FLOWCTRL_FEED_THROUGH_OFF_CSC_BYPASS,
1573 HDMI_MC_FLOWCTRL);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001574}
1575
Andy Yanb21f4b62014-12-05 14:26:31 +08001576static void hdmi_enable_audio_clk(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001577{
Russell King812bc612013-11-04 12:42:02 +00001578 hdmi_modb(hdmi, 0, HDMI_MC_CLKDIS_AUDCLK_DISABLE, HDMI_MC_CLKDIS);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001579}
1580
1581/* Workaround to clear the overflow condition */
Andy Yanb21f4b62014-12-05 14:26:31 +08001582static void dw_hdmi_clear_overflow(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001583{
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02001584 unsigned int count;
1585 unsigned int i;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001586 u8 val;
1587
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02001588 /*
1589 * Under some circumstances the Frame Composer arithmetic unit can miss
1590 * an FC register write due to being busy processing the previous one.
1591 * The issue can be worked around by issuing a TMDS software reset and
1592 * then write one of the FC registers several times.
1593 *
1594 * The number of iterations matters and depends on the HDMI TX revision
1595 * (and possibly on the platform). So far only i.MX6Q (v1.30a) and
1596 * i.MX6DL (v1.31a) have been identified as needing the workaround, with
1597 * 4 and 1 iterations respectively.
1598 */
1599
1600 switch (hdmi->version) {
1601 case 0x130a:
1602 count = 4;
1603 break;
1604 case 0x131a:
1605 count = 1;
1606 break;
1607 default:
1608 return;
1609 }
1610
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001611 /* TMDS software reset */
1612 hdmi_writeb(hdmi, (u8)~HDMI_MC_SWRSTZ_TMDSSWRST_REQ, HDMI_MC_SWRSTZ);
1613
1614 val = hdmi_readb(hdmi, HDMI_FC_INVIDCONF);
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02001615 for (i = 0; i < count; i++)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001616 hdmi_writeb(hdmi, val, HDMI_FC_INVIDCONF);
1617}
1618
Andy Yanb21f4b62014-12-05 14:26:31 +08001619static void hdmi_enable_overflow_interrupts(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001620{
1621 hdmi_writeb(hdmi, 0, HDMI_FC_MASK2);
1622 hdmi_writeb(hdmi, 0, HDMI_IH_MUTE_FC_STAT2);
1623}
1624
Andy Yanb21f4b62014-12-05 14:26:31 +08001625static void hdmi_disable_overflow_interrupts(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001626{
1627 hdmi_writeb(hdmi, HDMI_IH_MUTE_FC_STAT2_OVERFLOW_MASK,
1628 HDMI_IH_MUTE_FC_STAT2);
1629}
1630
Andy Yanb21f4b62014-12-05 14:26:31 +08001631static int dw_hdmi_setup(struct dw_hdmi *hdmi, struct drm_display_mode *mode)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001632{
1633 int ret;
1634
1635 hdmi_disable_overflow_interrupts(hdmi);
1636
1637 hdmi->vic = drm_match_cea_mode(mode);
1638
1639 if (!hdmi->vic) {
1640 dev_dbg(hdmi->dev, "Non-CEA mode used in HDMI\n");
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001641 } else {
1642 dev_dbg(hdmi->dev, "CEA mode used vic=%d\n", hdmi->vic);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001643 }
1644
1645 if ((hdmi->vic == 6) || (hdmi->vic == 7) ||
Andy Yanb5878332014-12-05 14:23:52 +08001646 (hdmi->vic == 21) || (hdmi->vic == 22) ||
1647 (hdmi->vic == 2) || (hdmi->vic == 3) ||
1648 (hdmi->vic == 17) || (hdmi->vic == 18))
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001649 hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_601;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001650 else
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001651 hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_709;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001652
Russell Kingd10ca822015-07-21 11:25:00 +01001653 hdmi->hdmi_data.video_mode.mpixelrepetitionoutput = 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001654 hdmi->hdmi_data.video_mode.mpixelrepetitioninput = 0;
1655
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001656 /* TOFIX: Get input format from plat data or fallback to RGB888 */
1657 if (hdmi->plat_data->input_bus_format >= 0)
1658 hdmi->hdmi_data.enc_in_bus_format =
1659 hdmi->plat_data->input_bus_format;
1660 else
1661 hdmi->hdmi_data.enc_in_bus_format = MEDIA_BUS_FMT_RGB888_1X24;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001662
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001663 /* TOFIX: Get input encoding from plat data or fallback to none */
1664 if (hdmi->plat_data->input_bus_encoding >= 0)
1665 hdmi->hdmi_data.enc_in_encoding =
1666 hdmi->plat_data->input_bus_encoding;
1667 else
1668 hdmi->hdmi_data.enc_in_encoding = V4L2_YCBCR_ENC_DEFAULT;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001669
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001670 /* TOFIX: Default to RGB888 output format */
1671 hdmi->hdmi_data.enc_out_bus_format = MEDIA_BUS_FMT_RGB888_1X24;
1672
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001673 hdmi->hdmi_data.pix_repet_factor = 0;
1674 hdmi->hdmi_data.hdcp_enable = 0;
1675 hdmi->hdmi_data.video_mode.mdataenablepolarity = true;
1676
1677 /* HDMI Initialization Step B.1 */
1678 hdmi_av_composer(hdmi, mode);
1679
1680 /* HDMI Initializateion Step B.2 */
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001681 ret = hdmi->phy.ops->init(hdmi, hdmi->phy.data, &hdmi->previous_mode);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001682 if (ret)
1683 return ret;
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001684 hdmi->phy.enabled = true;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001685
1686 /* HDMI Initialization Step B.3 */
Andy Yanb21f4b62014-12-05 14:26:31 +08001687 dw_hdmi_enable_video_path(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001688
Russell Kingf709ec02015-07-21 16:09:39 +01001689 if (hdmi->sink_has_audio) {
1690 dev_dbg(hdmi->dev, "sink has audio support\n");
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001691
1692 /* HDMI Initialization Step E - Configure audio */
1693 hdmi_clk_regenerator_update_pixel_clock(hdmi);
1694 hdmi_enable_audio_clk(hdmi);
Russell Kingf709ec02015-07-21 16:09:39 +01001695 }
1696
1697 /* not for DVI mode */
1698 if (hdmi->sink_is_hdmi) {
1699 dev_dbg(hdmi->dev, "%s HDMI mode\n", __func__);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001700
1701 /* HDMI Initialization Step F - Configure AVI InfoFrame */
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001702 hdmi_config_AVI(hdmi, mode);
Nickey Yang9aa1eca2017-03-21 15:36:17 +08001703 hdmi_config_vendor_specific_infoframe(hdmi, mode);
Russell King05b13422015-07-21 15:35:52 +01001704 } else {
1705 dev_dbg(hdmi->dev, "%s DVI mode\n", __func__);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001706 }
1707
1708 hdmi_video_packetize(hdmi);
1709 hdmi_video_csc(hdmi);
1710 hdmi_video_sample(hdmi);
1711 hdmi_tx_hdcp_config(hdmi);
1712
Andy Yanb21f4b62014-12-05 14:26:31 +08001713 dw_hdmi_clear_overflow(hdmi);
Russell King05b13422015-07-21 15:35:52 +01001714 if (hdmi->cable_plugin && hdmi->sink_is_hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001715 hdmi_enable_overflow_interrupts(hdmi);
1716
1717 return 0;
1718}
1719
Laurent Pincharta23d6262017-04-04 14:31:56 +02001720static void dw_hdmi_setup_i2c(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001721{
1722 hdmi_writeb(hdmi, HDMI_PHY_I2CM_INT_ADDR_DONE_POL,
1723 HDMI_PHY_I2CM_INT_ADDR);
1724
1725 hdmi_writeb(hdmi, HDMI_PHY_I2CM_CTLINT_ADDR_NAC_POL |
1726 HDMI_PHY_I2CM_CTLINT_ADDR_ARBITRATION_POL,
1727 HDMI_PHY_I2CM_CTLINT_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001728}
1729
Andy Yanb21f4b62014-12-05 14:26:31 +08001730static void initialize_hdmi_ih_mutes(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001731{
1732 u8 ih_mute;
1733
1734 /*
1735 * Boot up defaults are:
1736 * HDMI_IH_MUTE = 0x03 (disabled)
1737 * HDMI_IH_MUTE_* = 0x00 (enabled)
1738 *
1739 * Disable top level interrupt bits in HDMI block
1740 */
1741 ih_mute = hdmi_readb(hdmi, HDMI_IH_MUTE) |
1742 HDMI_IH_MUTE_MUTE_WAKEUP_INTERRUPT |
1743 HDMI_IH_MUTE_MUTE_ALL_INTERRUPT;
1744
1745 hdmi_writeb(hdmi, ih_mute, HDMI_IH_MUTE);
1746
1747 /* by default mask all interrupts */
1748 hdmi_writeb(hdmi, 0xff, HDMI_VP_MASK);
1749 hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK0);
1750 hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK1);
1751 hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK2);
1752 hdmi_writeb(hdmi, 0xff, HDMI_PHY_MASK0);
1753 hdmi_writeb(hdmi, 0xff, HDMI_PHY_I2CM_INT_ADDR);
1754 hdmi_writeb(hdmi, 0xff, HDMI_PHY_I2CM_CTLINT_ADDR);
1755 hdmi_writeb(hdmi, 0xff, HDMI_AUD_INT);
1756 hdmi_writeb(hdmi, 0xff, HDMI_AUD_SPDIFINT);
1757 hdmi_writeb(hdmi, 0xff, HDMI_AUD_HBR_MASK);
1758 hdmi_writeb(hdmi, 0xff, HDMI_GP_MASK);
1759 hdmi_writeb(hdmi, 0xff, HDMI_A_APIINTMSK);
1760 hdmi_writeb(hdmi, 0xff, HDMI_CEC_MASK);
1761 hdmi_writeb(hdmi, 0xff, HDMI_I2CM_INT);
1762 hdmi_writeb(hdmi, 0xff, HDMI_I2CM_CTLINT);
1763
1764 /* Disable interrupts in the IH_MUTE_* registers */
1765 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT0);
1766 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT1);
1767 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT2);
1768 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_AS_STAT0);
1769 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_PHY_STAT0);
1770 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_I2CM_STAT0);
1771 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_CEC_STAT0);
1772 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_VP_STAT0);
1773 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_I2CMPHY_STAT0);
1774 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_AHBDMAAUD_STAT0);
1775
1776 /* Enable top level interrupt bits in HDMI block */
1777 ih_mute &= ~(HDMI_IH_MUTE_MUTE_WAKEUP_INTERRUPT |
1778 HDMI_IH_MUTE_MUTE_ALL_INTERRUPT);
1779 hdmi_writeb(hdmi, ih_mute, HDMI_IH_MUTE);
1780}
1781
Andy Yanb21f4b62014-12-05 14:26:31 +08001782static void dw_hdmi_poweron(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001783{
Russell King381f05a2015-06-05 15:25:08 +01001784 hdmi->bridge_is_on = true;
Andy Yanb21f4b62014-12-05 14:26:31 +08001785 dw_hdmi_setup(hdmi, &hdmi->previous_mode);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001786}
1787
Andy Yanb21f4b62014-12-05 14:26:31 +08001788static void dw_hdmi_poweroff(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001789{
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001790 if (hdmi->phy.enabled) {
1791 hdmi->phy.ops->disable(hdmi, hdmi->phy.data);
1792 hdmi->phy.enabled = false;
1793 }
1794
Russell King381f05a2015-06-05 15:25:08 +01001795 hdmi->bridge_is_on = false;
1796}
1797
1798static void dw_hdmi_update_power(struct dw_hdmi *hdmi)
1799{
1800 int force = hdmi->force;
1801
1802 if (hdmi->disabled) {
1803 force = DRM_FORCE_OFF;
1804 } else if (force == DRM_FORCE_UNSPECIFIED) {
Russell Kingaeac23b2015-06-05 13:46:22 +01001805 if (hdmi->rxsense)
Russell King381f05a2015-06-05 15:25:08 +01001806 force = DRM_FORCE_ON;
1807 else
1808 force = DRM_FORCE_OFF;
1809 }
1810
1811 if (force == DRM_FORCE_OFF) {
1812 if (hdmi->bridge_is_on)
1813 dw_hdmi_poweroff(hdmi);
1814 } else {
1815 if (!hdmi->bridge_is_on)
1816 dw_hdmi_poweron(hdmi);
1817 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001818}
1819
Russell Kingaeac23b2015-06-05 13:46:22 +01001820/*
1821 * Adjust the detection of RXSENSE according to whether we have a forced
1822 * connection mode enabled, or whether we have been disabled. There is
1823 * no point processing RXSENSE interrupts if we have a forced connection
1824 * state, or DRM has us disabled.
1825 *
1826 * We also disable rxsense interrupts when we think we're disconnected
1827 * to avoid floating TDMS signals giving false rxsense interrupts.
1828 *
1829 * Note: we still need to listen for HPD interrupts even when DRM has us
1830 * disabled so that we can detect a connect event.
1831 */
1832static void dw_hdmi_update_phy_mask(struct dw_hdmi *hdmi)
1833{
Neil Armstrong386d3292017-04-04 14:31:59 +02001834 if (hdmi->phy.ops->update_hpd)
1835 hdmi->phy.ops->update_hpd(hdmi, hdmi->phy.data,
1836 hdmi->force, hdmi->disabled,
1837 hdmi->rxsense);
Laurent Pincharta23d6262017-04-04 14:31:56 +02001838}
1839
Andy Yanb21f4b62014-12-05 14:26:31 +08001840static enum drm_connector_status
1841dw_hdmi_connector_detect(struct drm_connector *connector, bool force)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001842{
Andy Yanb21f4b62014-12-05 14:26:31 +08001843 struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
Russell Kingd94905e2013-11-03 22:23:24 +00001844 connector);
Russell King98dbead2014-04-18 10:46:45 +01001845
Russell King381f05a2015-06-05 15:25:08 +01001846 mutex_lock(&hdmi->mutex);
1847 hdmi->force = DRM_FORCE_UNSPECIFIED;
1848 dw_hdmi_update_power(hdmi);
Russell Kingaeac23b2015-06-05 13:46:22 +01001849 dw_hdmi_update_phy_mask(hdmi);
Russell King381f05a2015-06-05 15:25:08 +01001850 mutex_unlock(&hdmi->mutex);
1851
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001852 return hdmi->phy.ops->read_hpd(hdmi, hdmi->phy.data);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001853}
1854
Andy Yanb21f4b62014-12-05 14:26:31 +08001855static int dw_hdmi_connector_get_modes(struct drm_connector *connector)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001856{
Andy Yanb21f4b62014-12-05 14:26:31 +08001857 struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001858 connector);
1859 struct edid *edid;
Doug Anderson6c7e66e2015-06-04 11:04:36 -07001860 int ret = 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001861
1862 if (!hdmi->ddc)
1863 return 0;
1864
1865 edid = drm_get_edid(connector, hdmi->ddc);
1866 if (edid) {
1867 dev_dbg(hdmi->dev, "got edid: width[%d] x height[%d]\n",
1868 edid->width_cm, edid->height_cm);
1869
Russell King05b13422015-07-21 15:35:52 +01001870 hdmi->sink_is_hdmi = drm_detect_hdmi_monitor(edid);
Russell Kingf709ec02015-07-21 16:09:39 +01001871 hdmi->sink_has_audio = drm_detect_monitor_audio(edid);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001872 drm_mode_connector_update_edid_property(connector, edid);
1873 ret = drm_add_edid_modes(connector, edid);
Russell Kingf5ce4052013-11-07 16:06:01 +00001874 /* Store the ELD */
1875 drm_edid_to_eld(connector, edid);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001876 kfree(edid);
1877 } else {
1878 dev_dbg(hdmi->dev, "failed to get edid\n");
1879 }
1880
Doug Anderson6c7e66e2015-06-04 11:04:36 -07001881 return ret;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001882}
1883
Andy Yan632d0352014-12-05 14:30:21 +08001884static enum drm_mode_status
1885dw_hdmi_connector_mode_valid(struct drm_connector *connector,
1886 struct drm_display_mode *mode)
1887{
1888 struct dw_hdmi *hdmi = container_of(connector,
1889 struct dw_hdmi, connector);
1890 enum drm_mode_status mode_status = MODE_OK;
1891
Russell King8add4192015-07-22 11:14:00 +01001892 /* We don't support double-clocked modes */
1893 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
1894 return MODE_BAD;
1895
Andy Yan632d0352014-12-05 14:30:21 +08001896 if (hdmi->plat_data->mode_valid)
1897 mode_status = hdmi->plat_data->mode_valid(connector, mode);
1898
1899 return mode_status;
1900}
1901
Russell King381f05a2015-06-05 15:25:08 +01001902static void dw_hdmi_connector_force(struct drm_connector *connector)
1903{
1904 struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
1905 connector);
1906
1907 mutex_lock(&hdmi->mutex);
1908 hdmi->force = connector->force;
1909 dw_hdmi_update_power(hdmi);
Russell Kingaeac23b2015-06-05 13:46:22 +01001910 dw_hdmi_update_phy_mask(hdmi);
Russell King381f05a2015-06-05 15:25:08 +01001911 mutex_unlock(&hdmi->mutex);
1912}
1913
Ville Syrjälädae91e42015-12-15 12:21:02 +01001914static const struct drm_connector_funcs dw_hdmi_connector_funcs = {
Mark Yao2c5b2cc2015-11-30 18:33:40 +08001915 .dpms = drm_atomic_helper_connector_dpms,
1916 .fill_modes = drm_helper_probe_single_connector_modes,
1917 .detect = dw_hdmi_connector_detect,
Marek Vasutfdd83262016-10-05 16:31:33 +02001918 .destroy = drm_connector_cleanup,
Mark Yao2c5b2cc2015-11-30 18:33:40 +08001919 .force = dw_hdmi_connector_force,
1920 .reset = drm_atomic_helper_connector_reset,
1921 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
1922 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
1923};
1924
Ville Syrjälädae91e42015-12-15 12:21:02 +01001925static const struct drm_connector_helper_funcs dw_hdmi_connector_helper_funcs = {
Andy Yanb21f4b62014-12-05 14:26:31 +08001926 .get_modes = dw_hdmi_connector_get_modes,
Andy Yan632d0352014-12-05 14:30:21 +08001927 .mode_valid = dw_hdmi_connector_mode_valid,
Boris Brezillonc2a441f2016-06-07 13:48:15 +02001928 .best_encoder = drm_atomic_helper_best_encoder,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001929};
1930
Laurent Pinchartd2ae94a2017-01-17 10:28:59 +02001931static int dw_hdmi_bridge_attach(struct drm_bridge *bridge)
1932{
1933 struct dw_hdmi *hdmi = bridge->driver_private;
1934 struct drm_encoder *encoder = bridge->encoder;
1935 struct drm_connector *connector = &hdmi->connector;
1936
1937 connector->interlace_allowed = 1;
1938 connector->polled = DRM_CONNECTOR_POLL_HPD;
1939
1940 drm_connector_helper_add(connector, &dw_hdmi_connector_helper_funcs);
1941
1942 drm_connector_init(bridge->dev, connector, &dw_hdmi_connector_funcs,
1943 DRM_MODE_CONNECTOR_HDMIA);
1944
1945 drm_mode_connector_attach_encoder(connector, encoder);
1946
1947 return 0;
1948}
1949
Laurent Pinchartfd30b382017-01-17 10:28:58 +02001950static void dw_hdmi_bridge_mode_set(struct drm_bridge *bridge,
1951 struct drm_display_mode *orig_mode,
1952 struct drm_display_mode *mode)
1953{
1954 struct dw_hdmi *hdmi = bridge->driver_private;
1955
1956 mutex_lock(&hdmi->mutex);
1957
1958 /* Store the display mode for plugin/DKMS poweron events */
1959 memcpy(&hdmi->previous_mode, mode, sizeof(hdmi->previous_mode));
1960
1961 mutex_unlock(&hdmi->mutex);
1962}
1963
1964static void dw_hdmi_bridge_disable(struct drm_bridge *bridge)
1965{
1966 struct dw_hdmi *hdmi = bridge->driver_private;
1967
1968 mutex_lock(&hdmi->mutex);
1969 hdmi->disabled = true;
1970 dw_hdmi_update_power(hdmi);
1971 dw_hdmi_update_phy_mask(hdmi);
1972 mutex_unlock(&hdmi->mutex);
1973}
1974
1975static void dw_hdmi_bridge_enable(struct drm_bridge *bridge)
1976{
1977 struct dw_hdmi *hdmi = bridge->driver_private;
1978
1979 mutex_lock(&hdmi->mutex);
1980 hdmi->disabled = false;
1981 dw_hdmi_update_power(hdmi);
1982 dw_hdmi_update_phy_mask(hdmi);
1983 mutex_unlock(&hdmi->mutex);
1984}
1985
Ville Syrjälädae91e42015-12-15 12:21:02 +01001986static const struct drm_bridge_funcs dw_hdmi_bridge_funcs = {
Laurent Pinchartd2ae94a2017-01-17 10:28:59 +02001987 .attach = dw_hdmi_bridge_attach,
Andy Yanb21f4b62014-12-05 14:26:31 +08001988 .enable = dw_hdmi_bridge_enable,
1989 .disable = dw_hdmi_bridge_disable,
Andy Yanb21f4b62014-12-05 14:26:31 +08001990 .mode_set = dw_hdmi_bridge_mode_set,
Andy Yan3d1b35a2014-12-05 14:25:05 +08001991};
1992
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03001993static irqreturn_t dw_hdmi_i2c_irq(struct dw_hdmi *hdmi)
1994{
1995 struct dw_hdmi_i2c *i2c = hdmi->i2c;
1996 unsigned int stat;
1997
1998 stat = hdmi_readb(hdmi, HDMI_IH_I2CM_STAT0);
1999 if (!stat)
2000 return IRQ_NONE;
2001
2002 hdmi_writeb(hdmi, stat, HDMI_IH_I2CM_STAT0);
2003
2004 i2c->stat = stat;
2005
2006 complete(&i2c->cmp);
2007
2008 return IRQ_HANDLED;
2009}
2010
Andy Yanb21f4b62014-12-05 14:26:31 +08002011static irqreturn_t dw_hdmi_hardirq(int irq, void *dev_id)
Russell Kingd94905e2013-11-03 22:23:24 +00002012{
Andy Yanb21f4b62014-12-05 14:26:31 +08002013 struct dw_hdmi *hdmi = dev_id;
Russell Kingd94905e2013-11-03 22:23:24 +00002014 u8 intr_stat;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002015 irqreturn_t ret = IRQ_NONE;
2016
2017 if (hdmi->i2c)
2018 ret = dw_hdmi_i2c_irq(hdmi);
Russell Kingd94905e2013-11-03 22:23:24 +00002019
2020 intr_stat = hdmi_readb(hdmi, HDMI_IH_PHY_STAT0);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002021 if (intr_stat) {
Russell Kingd94905e2013-11-03 22:23:24 +00002022 hdmi_writeb(hdmi, ~0, HDMI_IH_MUTE_PHY_STAT0);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002023 return IRQ_WAKE_THREAD;
2024 }
Russell Kingd94905e2013-11-03 22:23:24 +00002025
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002026 return ret;
Russell Kingd94905e2013-11-03 22:23:24 +00002027}
2028
Neil Armstrong386d3292017-04-04 14:31:59 +02002029void __dw_hdmi_setup_rx_sense(struct dw_hdmi *hdmi, bool hpd, bool rx_sense)
2030{
2031 mutex_lock(&hdmi->mutex);
2032
2033 if (!hdmi->force) {
2034 /*
2035 * If the RX sense status indicates we're disconnected,
2036 * clear the software rxsense status.
2037 */
2038 if (!rx_sense)
2039 hdmi->rxsense = false;
2040
2041 /*
2042 * Only set the software rxsense status when both
2043 * rxsense and hpd indicates we're connected.
2044 * This avoids what seems to be bad behaviour in
2045 * at least iMX6S versions of the phy.
2046 */
2047 if (hpd)
2048 hdmi->rxsense = true;
2049
2050 dw_hdmi_update_power(hdmi);
2051 dw_hdmi_update_phy_mask(hdmi);
2052 }
2053 mutex_unlock(&hdmi->mutex);
2054}
2055
2056void dw_hdmi_setup_rx_sense(struct device *dev, bool hpd, bool rx_sense)
2057{
2058 struct dw_hdmi *hdmi = dev_get_drvdata(dev);
2059
2060 __dw_hdmi_setup_rx_sense(hdmi, hpd, rx_sense);
2061}
2062EXPORT_SYMBOL_GPL(dw_hdmi_setup_rx_sense);
2063
Andy Yanb21f4b62014-12-05 14:26:31 +08002064static irqreturn_t dw_hdmi_irq(int irq, void *dev_id)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002065{
Andy Yanb21f4b62014-12-05 14:26:31 +08002066 struct dw_hdmi *hdmi = dev_id;
Russell Kingaeac23b2015-06-05 13:46:22 +01002067 u8 intr_stat, phy_int_pol, phy_pol_mask, phy_stat;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002068
2069 intr_stat = hdmi_readb(hdmi, HDMI_IH_PHY_STAT0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002070 phy_int_pol = hdmi_readb(hdmi, HDMI_PHY_POL0);
Russell Kingaeac23b2015-06-05 13:46:22 +01002071 phy_stat = hdmi_readb(hdmi, HDMI_PHY_STAT0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002072
Russell Kingaeac23b2015-06-05 13:46:22 +01002073 phy_pol_mask = 0;
2074 if (intr_stat & HDMI_IH_PHY_STAT0_HPD)
2075 phy_pol_mask |= HDMI_PHY_HPD;
2076 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE0)
2077 phy_pol_mask |= HDMI_PHY_RX_SENSE0;
2078 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE1)
2079 phy_pol_mask |= HDMI_PHY_RX_SENSE1;
2080 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE2)
2081 phy_pol_mask |= HDMI_PHY_RX_SENSE2;
2082 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE3)
2083 phy_pol_mask |= HDMI_PHY_RX_SENSE3;
2084
2085 if (phy_pol_mask)
2086 hdmi_modb(hdmi, ~phy_int_pol, phy_pol_mask, HDMI_PHY_POL0);
2087
2088 /*
2089 * RX sense tells us whether the TDMS transmitters are detecting
2090 * load - in other words, there's something listening on the
2091 * other end of the link. Use this to decide whether we should
2092 * power on the phy as HPD may be toggled by the sink to merely
2093 * ask the source to re-read the EDID.
2094 */
2095 if (intr_stat &
Neil Armstrong386d3292017-04-04 14:31:59 +02002096 (HDMI_IH_PHY_STAT0_RX_SENSE | HDMI_IH_PHY_STAT0_HPD))
2097 __dw_hdmi_setup_rx_sense(hdmi,
2098 phy_stat & HDMI_PHY_HPD,
2099 phy_stat & HDMI_PHY_RX_SENSE);
Russell Kingaeac23b2015-06-05 13:46:22 +01002100
2101 if (intr_stat & HDMI_IH_PHY_STAT0_HPD) {
2102 dev_dbg(hdmi->dev, "EVENT=%s\n",
2103 phy_int_pol & HDMI_PHY_HPD ? "plugin" : "plugout");
Laurent Pinchartba5d7e62017-01-17 10:28:56 +02002104 if (hdmi->bridge.dev)
2105 drm_helper_hpd_irq_event(hdmi->bridge.dev);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002106 }
2107
2108 hdmi_writeb(hdmi, intr_stat, HDMI_IH_PHY_STAT0);
Russell Kingaeac23b2015-06-05 13:46:22 +01002109 hdmi_writeb(hdmi, ~(HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE),
2110 HDMI_IH_MUTE_PHY_STAT0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002111
2112 return IRQ_HANDLED;
2113}
2114
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002115static const struct dw_hdmi_phy_data dw_hdmi_phys[] = {
2116 {
2117 .type = DW_HDMI_PHY_DWC_HDMI_TX_PHY,
2118 .name = "DWC HDMI TX PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002119 .gen = 1,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002120 }, {
2121 .type = DW_HDMI_PHY_DWC_MHL_PHY_HEAC,
2122 .name = "DWC MHL PHY + HEAC PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002123 .gen = 2,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002124 .has_svsret = true,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002125 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002126 }, {
2127 .type = DW_HDMI_PHY_DWC_MHL_PHY,
2128 .name = "DWC MHL PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002129 .gen = 2,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002130 .has_svsret = true,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002131 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002132 }, {
2133 .type = DW_HDMI_PHY_DWC_HDMI_3D_TX_PHY_HEAC,
2134 .name = "DWC HDMI 3D TX PHY + HEAC PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002135 .gen = 2,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002136 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002137 }, {
2138 .type = DW_HDMI_PHY_DWC_HDMI_3D_TX_PHY,
2139 .name = "DWC HDMI 3D TX PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002140 .gen = 2,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002141 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002142 }, {
2143 .type = DW_HDMI_PHY_DWC_HDMI20_TX_PHY,
2144 .name = "DWC HDMI 2.0 TX PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002145 .gen = 2,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002146 .has_svsret = true,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002147 }, {
2148 .type = DW_HDMI_PHY_VENDOR_PHY,
2149 .name = "Vendor PHY",
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002150 }
2151};
2152
2153static int dw_hdmi_detect_phy(struct dw_hdmi *hdmi)
2154{
2155 unsigned int i;
2156 u8 phy_type;
2157
2158 phy_type = hdmi_readb(hdmi, HDMI_CONFIG2_ID);
2159
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002160 if (phy_type == DW_HDMI_PHY_VENDOR_PHY) {
2161 /* Vendor PHYs require support from the glue layer. */
2162 if (!hdmi->plat_data->phy_ops || !hdmi->plat_data->phy_name) {
2163 dev_err(hdmi->dev,
2164 "Vendor HDMI PHY not supported by glue layer\n");
2165 return -ENODEV;
2166 }
2167
2168 hdmi->phy.ops = hdmi->plat_data->phy_ops;
2169 hdmi->phy.data = hdmi->plat_data->phy_data;
2170 hdmi->phy.name = hdmi->plat_data->phy_name;
2171 return 0;
2172 }
2173
2174 /* Synopsys PHYs are handled internally. */
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002175 for (i = 0; i < ARRAY_SIZE(dw_hdmi_phys); ++i) {
2176 if (dw_hdmi_phys[i].type == phy_type) {
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002177 hdmi->phy.ops = &dw_hdmi_synopsys_phy_ops;
2178 hdmi->phy.name = dw_hdmi_phys[i].name;
2179 hdmi->phy.data = (void *)&dw_hdmi_phys[i];
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002180
2181 if (!dw_hdmi_phys[i].configure &&
2182 !hdmi->plat_data->configure_phy) {
2183 dev_err(hdmi->dev, "%s requires platform support\n",
2184 hdmi->phy.name);
2185 return -ENODEV;
2186 }
2187
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002188 return 0;
2189 }
2190 }
2191
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002192 dev_err(hdmi->dev, "Unsupported HDMI PHY type (%02x)\n", phy_type);
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002193 return -ENODEV;
2194}
2195
Neil Armstrong80e2f972017-03-03 19:20:06 +02002196static const struct regmap_config hdmi_regmap_8bit_config = {
2197 .reg_bits = 32,
2198 .val_bits = 8,
2199 .reg_stride = 1,
2200 .max_register = HDMI_I2CM_FS_SCL_LCNT_0_ADDR,
2201};
2202
2203static const struct regmap_config hdmi_regmap_32bit_config = {
2204 .reg_bits = 32,
2205 .val_bits = 32,
2206 .reg_stride = 4,
2207 .max_register = HDMI_I2CM_FS_SCL_LCNT_0_ADDR << 2,
2208};
2209
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002210static struct dw_hdmi *
2211__dw_hdmi_probe(struct platform_device *pdev,
2212 const struct dw_hdmi_plat_data *plat_data)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002213{
Laurent Pinchartc6081192017-01-17 10:28:57 +02002214 struct device *dev = &pdev->dev;
Russell King17b50012013-11-03 11:23:34 +00002215 struct device_node *np = dev->of_node;
Russell King7ed6c662013-11-07 16:01:45 +00002216 struct platform_device_info pdevinfo;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002217 struct device_node *ddc_node;
Andy Yanb21f4b62014-12-05 14:26:31 +08002218 struct dw_hdmi *hdmi;
Neil Armstrong80e2f972017-03-03 19:20:06 +02002219 struct resource *iores = NULL;
Laurent Pinchartc6081192017-01-17 10:28:57 +02002220 int irq;
Andy Yan3d1b35a2014-12-05 14:25:05 +08002221 int ret;
Andy Yan0cd9d142014-12-05 14:28:24 +08002222 u32 val = 1;
Laurent Pinchart0527e122017-01-17 10:29:03 +02002223 u8 prod_id0;
2224 u8 prod_id1;
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002225 u8 config0;
Laurent Pinchart0c674942017-01-17 10:29:04 +02002226 u8 config3;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002227
Russell King17b50012013-11-03 11:23:34 +00002228 hdmi = devm_kzalloc(dev, sizeof(*hdmi), GFP_KERNEL);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002229 if (!hdmi)
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002230 return ERR_PTR(-ENOMEM);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002231
Andy Yan3d1b35a2014-12-05 14:25:05 +08002232 hdmi->plat_data = plat_data;
Russell King17b50012013-11-03 11:23:34 +00002233 hdmi->dev = dev;
Russell King40678382013-11-07 15:35:06 +00002234 hdmi->sample_rate = 48000;
Russell Kingb872a8e2015-06-05 12:22:46 +01002235 hdmi->disabled = true;
Russell Kingaeac23b2015-06-05 13:46:22 +01002236 hdmi->rxsense = true;
2237 hdmi->phy_mask = (u8)~(HDMI_PHY_HPD | HDMI_PHY_RX_SENSE);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002238
Russell Kingb872a8e2015-06-05 12:22:46 +01002239 mutex_init(&hdmi->mutex);
Russell King6bcf4952015-02-02 11:01:08 +00002240 mutex_init(&hdmi->audio_mutex);
Russell Kingb90120a2015-03-27 12:59:58 +00002241 spin_lock_init(&hdmi->audio_lock);
Russell King6bcf4952015-02-02 11:01:08 +00002242
Philipp Zabelb5d45902014-03-05 10:20:56 +01002243 ddc_node = of_parse_phandle(np, "ddc-i2c-bus", 0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002244 if (ddc_node) {
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002245 hdmi->ddc = of_get_i2c_adapter_by_node(ddc_node);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002246 of_node_put(ddc_node);
Andy Yanc2c38482014-12-05 14:24:28 +08002247 if (!hdmi->ddc) {
2248 dev_dbg(hdmi->dev, "failed to read ddc node\n");
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002249 return ERR_PTR(-EPROBE_DEFER);
Andy Yanc2c38482014-12-05 14:24:28 +08002250 }
2251
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002252 } else {
2253 dev_dbg(hdmi->dev, "no ddc property found\n");
2254 }
2255
Neil Armstrong80e2f972017-03-03 19:20:06 +02002256 if (!plat_data->regm) {
2257 const struct regmap_config *reg_config;
2258
2259 of_property_read_u32(np, "reg-io-width", &val);
2260 switch (val) {
2261 case 4:
2262 reg_config = &hdmi_regmap_32bit_config;
2263 hdmi->reg_shift = 2;
2264 break;
2265 case 1:
2266 reg_config = &hdmi_regmap_8bit_config;
2267 break;
2268 default:
2269 dev_err(dev, "reg-io-width must be 1 or 4\n");
2270 return ERR_PTR(-EINVAL);
2271 }
2272
2273 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2274 hdmi->regs = devm_ioremap_resource(dev, iores);
2275 if (IS_ERR(hdmi->regs)) {
2276 ret = PTR_ERR(hdmi->regs);
2277 goto err_res;
2278 }
2279
2280 hdmi->regm = devm_regmap_init_mmio(dev, hdmi->regs, reg_config);
2281 if (IS_ERR(hdmi->regm)) {
2282 dev_err(dev, "Failed to configure regmap\n");
2283 ret = PTR_ERR(hdmi->regm);
2284 goto err_res;
2285 }
2286 } else {
2287 hdmi->regm = plat_data->regm;
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002288 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002289
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002290 hdmi->isfr_clk = devm_clk_get(hdmi->dev, "isfr");
2291 if (IS_ERR(hdmi->isfr_clk)) {
2292 ret = PTR_ERR(hdmi->isfr_clk);
Andy Yanb5878332014-12-05 14:23:52 +08002293 dev_err(hdmi->dev, "Unable to get HDMI isfr clk: %d\n", ret);
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002294 goto err_res;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002295 }
2296
2297 ret = clk_prepare_enable(hdmi->isfr_clk);
2298 if (ret) {
Andy Yanb5878332014-12-05 14:23:52 +08002299 dev_err(hdmi->dev, "Cannot enable HDMI isfr clock: %d\n", ret);
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002300 goto err_res;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002301 }
2302
2303 hdmi->iahb_clk = devm_clk_get(hdmi->dev, "iahb");
2304 if (IS_ERR(hdmi->iahb_clk)) {
2305 ret = PTR_ERR(hdmi->iahb_clk);
Andy Yanb5878332014-12-05 14:23:52 +08002306 dev_err(hdmi->dev, "Unable to get HDMI iahb clk: %d\n", ret);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002307 goto err_isfr;
2308 }
2309
2310 ret = clk_prepare_enable(hdmi->iahb_clk);
2311 if (ret) {
Andy Yanb5878332014-12-05 14:23:52 +08002312 dev_err(hdmi->dev, "Cannot enable HDMI iahb clock: %d\n", ret);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002313 goto err_isfr;
2314 }
2315
2316 /* Product and revision IDs */
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002317 hdmi->version = (hdmi_readb(hdmi, HDMI_DESIGN_ID) << 8)
2318 | (hdmi_readb(hdmi, HDMI_REVISION_ID) << 0);
Laurent Pinchart0527e122017-01-17 10:29:03 +02002319 prod_id0 = hdmi_readb(hdmi, HDMI_PRODUCT_ID0);
2320 prod_id1 = hdmi_readb(hdmi, HDMI_PRODUCT_ID1);
2321
2322 if (prod_id0 != HDMI_PRODUCT_ID0_HDMI_TX ||
2323 (prod_id1 & ~HDMI_PRODUCT_ID1_HDCP) != HDMI_PRODUCT_ID1_HDMI_TX) {
2324 dev_err(dev, "Unsupported HDMI controller (%04x:%02x:%02x)\n",
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002325 hdmi->version, prod_id0, prod_id1);
Laurent Pinchart0527e122017-01-17 10:29:03 +02002326 ret = -ENODEV;
2327 goto err_iahb;
2328 }
2329
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002330 ret = dw_hdmi_detect_phy(hdmi);
2331 if (ret < 0)
2332 goto err_iahb;
2333
2334 dev_info(dev, "Detected HDMI TX controller v%x.%03x %s HDCP (%s)\n",
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002335 hdmi->version >> 12, hdmi->version & 0xfff,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002336 prod_id1 & HDMI_PRODUCT_ID1_HDCP ? "with" : "without",
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002337 hdmi->phy.name);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002338
2339 initialize_hdmi_ih_mutes(hdmi);
2340
Laurent Pinchartc6081192017-01-17 10:28:57 +02002341 irq = platform_get_irq(pdev, 0);
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002342 if (irq < 0) {
2343 ret = irq;
Laurent Pinchartc6081192017-01-17 10:28:57 +02002344 goto err_iahb;
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002345 }
Laurent Pinchartc6081192017-01-17 10:28:57 +02002346
Philipp Zabel639a2022015-01-07 13:43:50 +01002347 ret = devm_request_threaded_irq(dev, irq, dw_hdmi_hardirq,
2348 dw_hdmi_irq, IRQF_SHARED,
2349 dev_name(dev), hdmi);
2350 if (ret)
Fabio Estevamb33ef612015-01-27 10:54:12 -02002351 goto err_iahb;
Philipp Zabel639a2022015-01-07 13:43:50 +01002352
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002353 /*
2354 * To prevent overflows in HDMI_IH_FC_STAT2, set the clk regenerator
2355 * N and cts values before enabling phy
2356 */
2357 hdmi_init_clk_regenerator(hdmi);
2358
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002359 /* If DDC bus is not specified, try to register HDMI I2C bus */
2360 if (!hdmi->ddc) {
2361 hdmi->ddc = dw_hdmi_i2c_adapter(hdmi);
2362 if (IS_ERR(hdmi->ddc))
2363 hdmi->ddc = NULL;
2364 }
2365
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002366 hdmi->bridge.driver_private = hdmi;
2367 hdmi->bridge.funcs = &dw_hdmi_bridge_funcs;
Arnd Bergmannd5ad7842017-01-23 13:20:38 +01002368#ifdef CONFIG_OF
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002369 hdmi->bridge.of_node = pdev->dev.of_node;
Arnd Bergmannd5ad7842017-01-23 13:20:38 +01002370#endif
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002371
Laurent Pincharta23d6262017-04-04 14:31:56 +02002372 dw_hdmi_setup_i2c(hdmi);
Neil Armstrong386d3292017-04-04 14:31:59 +02002373 if (hdmi->phy.ops->setup_hpd)
2374 hdmi->phy.ops->setup_hpd(hdmi, hdmi->phy.data);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002375
Russell King7ed6c662013-11-07 16:01:45 +00002376 memset(&pdevinfo, 0, sizeof(pdevinfo));
2377 pdevinfo.parent = dev;
2378 pdevinfo.id = PLATFORM_DEVID_AUTO;
2379
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002380 config0 = hdmi_readb(hdmi, HDMI_CONFIG0_ID);
Laurent Pinchart0c674942017-01-17 10:29:04 +02002381 config3 = hdmi_readb(hdmi, HDMI_CONFIG3_ID);
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002382
Neil Armstrong80e2f972017-03-03 19:20:06 +02002383 if (iores && config3 & HDMI_CONFIG3_AHBAUDDMA) {
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002384 struct dw_hdmi_audio_data audio;
2385
Russell King7ed6c662013-11-07 16:01:45 +00002386 audio.phys = iores->start;
2387 audio.base = hdmi->regs;
2388 audio.irq = irq;
2389 audio.hdmi = hdmi;
Russell Kingf5ce4052013-11-07 16:06:01 +00002390 audio.eld = hdmi->connector.eld;
Russell King7ed6c662013-11-07 16:01:45 +00002391
2392 pdevinfo.name = "dw-hdmi-ahb-audio";
2393 pdevinfo.data = &audio;
2394 pdevinfo.size_data = sizeof(audio);
2395 pdevinfo.dma_mask = DMA_BIT_MASK(32);
2396 hdmi->audio = platform_device_register_full(&pdevinfo);
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002397 } else if (config0 & HDMI_CONFIG0_I2S) {
2398 struct dw_hdmi_i2s_audio_data audio;
2399
2400 audio.hdmi = hdmi;
2401 audio.write = hdmi_writeb;
2402 audio.read = hdmi_readb;
2403
2404 pdevinfo.name = "dw-hdmi-i2s-audio";
2405 pdevinfo.data = &audio;
2406 pdevinfo.size_data = sizeof(audio);
2407 pdevinfo.dma_mask = DMA_BIT_MASK(32);
2408 hdmi->audio = platform_device_register_full(&pdevinfo);
Russell King7ed6c662013-11-07 16:01:45 +00002409 }
2410
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002411 /* Reset HDMI DDC I2C master controller and mute I2CM interrupts */
2412 if (hdmi->i2c)
2413 dw_hdmi_i2c_init(hdmi);
2414
Laurent Pinchartc6081192017-01-17 10:28:57 +02002415 platform_set_drvdata(pdev, hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002416
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002417 return hdmi;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002418
2419err_iahb:
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002420 if (hdmi->i2c) {
2421 i2c_del_adapter(&hdmi->i2c->adap);
2422 hdmi->ddc = NULL;
2423 }
2424
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002425 clk_disable_unprepare(hdmi->iahb_clk);
2426err_isfr:
2427 clk_disable_unprepare(hdmi->isfr_clk);
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002428err_res:
2429 i2c_put_adapter(hdmi->ddc);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002430
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002431 return ERR_PTR(ret);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002432}
2433
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002434static void __dw_hdmi_remove(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002435{
Russell King7ed6c662013-11-07 16:01:45 +00002436 if (hdmi->audio && !IS_ERR(hdmi->audio))
2437 platform_device_unregister(hdmi->audio);
2438
Russell Kingd94905e2013-11-03 22:23:24 +00002439 /* Disable all interrupts */
2440 hdmi_writeb(hdmi, ~0, HDMI_IH_MUTE_PHY_STAT0);
2441
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002442 clk_disable_unprepare(hdmi->iahb_clk);
2443 clk_disable_unprepare(hdmi->isfr_clk);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002444
2445 if (hdmi->i2c)
2446 i2c_del_adapter(&hdmi->i2c->adap);
2447 else
2448 i2c_put_adapter(hdmi->ddc);
Russell King17b50012013-11-03 11:23:34 +00002449}
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002450
2451/* -----------------------------------------------------------------------------
2452 * Probe/remove API, used from platforms based on the DRM bridge API.
2453 */
2454int dw_hdmi_probe(struct platform_device *pdev,
2455 const struct dw_hdmi_plat_data *plat_data)
2456{
2457 struct dw_hdmi *hdmi;
2458 int ret;
2459
2460 hdmi = __dw_hdmi_probe(pdev, plat_data);
2461 if (IS_ERR(hdmi))
2462 return PTR_ERR(hdmi);
2463
2464 ret = drm_bridge_add(&hdmi->bridge);
2465 if (ret < 0) {
2466 __dw_hdmi_remove(hdmi);
2467 return ret;
2468 }
2469
2470 return 0;
2471}
2472EXPORT_SYMBOL_GPL(dw_hdmi_probe);
2473
2474void dw_hdmi_remove(struct platform_device *pdev)
2475{
2476 struct dw_hdmi *hdmi = platform_get_drvdata(pdev);
2477
2478 drm_bridge_remove(&hdmi->bridge);
2479
2480 __dw_hdmi_remove(hdmi);
2481}
2482EXPORT_SYMBOL_GPL(dw_hdmi_remove);
2483
2484/* -----------------------------------------------------------------------------
2485 * Bind/unbind API, used from platforms based on the component framework.
2486 */
2487int dw_hdmi_bind(struct platform_device *pdev, struct drm_encoder *encoder,
2488 const struct dw_hdmi_plat_data *plat_data)
2489{
2490 struct dw_hdmi *hdmi;
2491 int ret;
2492
2493 hdmi = __dw_hdmi_probe(pdev, plat_data);
2494 if (IS_ERR(hdmi))
2495 return PTR_ERR(hdmi);
2496
2497 ret = drm_bridge_attach(encoder, &hdmi->bridge, NULL);
2498 if (ret) {
2499 dw_hdmi_remove(pdev);
2500 DRM_ERROR("Failed to initialize bridge with drm\n");
2501 return ret;
2502 }
2503
2504 return 0;
2505}
2506EXPORT_SYMBOL_GPL(dw_hdmi_bind);
2507
2508void dw_hdmi_unbind(struct device *dev)
2509{
2510 struct dw_hdmi *hdmi = dev_get_drvdata(dev);
2511
2512 __dw_hdmi_remove(hdmi);
2513}
Andy Yanb21f4b62014-12-05 14:26:31 +08002514EXPORT_SYMBOL_GPL(dw_hdmi_unbind);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002515
2516MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
Andy Yan3d1b35a2014-12-05 14:25:05 +08002517MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com>");
2518MODULE_AUTHOR("Yakir Yang <ykk@rock-chips.com>");
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002519MODULE_AUTHOR("Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com>");
Andy Yanb21f4b62014-12-05 14:26:31 +08002520MODULE_DESCRIPTION("DW HDMI transmitter driver");
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002521MODULE_LICENSE("GPL");
Andy Yanb21f4b62014-12-05 14:26:31 +08002522MODULE_ALIAS("platform:dw-hdmi");