blob: a64ce71122881696fae983ed008998ce3883db8b [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"
Russell Kinga616e632017-08-02 20:41:07 +020038#include "dw-hdmi-cec.h"
Fabio Estevam9aaf8802013-11-29 08:46:32 -020039
Russell Kinge84b8d72017-07-31 15:29:41 +010040#include <media/cec-notifier.h>
41
Nickey Yang94bb4dc2017-03-20 10:57:31 +080042#define DDC_SEGMENT_ADDR 0x30
Russell Kinge84b8d72017-07-31 15:29:41 +010043
Fabio Estevam9aaf8802013-11-29 08:46:32 -020044#define HDMI_EDID_LEN 512
45
Fabio Estevam9aaf8802013-11-29 08:46:32 -020046enum hdmi_datamap {
47 RGB444_8B = 0x01,
48 RGB444_10B = 0x03,
49 RGB444_12B = 0x05,
50 RGB444_16B = 0x07,
51 YCbCr444_8B = 0x09,
52 YCbCr444_10B = 0x0B,
53 YCbCr444_12B = 0x0D,
54 YCbCr444_16B = 0x0F,
55 YCbCr422_8B = 0x16,
56 YCbCr422_10B = 0x14,
57 YCbCr422_12B = 0x12,
58};
59
Fabio Estevam9aaf8802013-11-29 08:46:32 -020060static const u16 csc_coeff_default[3][4] = {
61 { 0x2000, 0x0000, 0x0000, 0x0000 },
62 { 0x0000, 0x2000, 0x0000, 0x0000 },
63 { 0x0000, 0x0000, 0x2000, 0x0000 }
64};
65
66static const u16 csc_coeff_rgb_out_eitu601[3][4] = {
67 { 0x2000, 0x6926, 0x74fd, 0x010e },
68 { 0x2000, 0x2cdd, 0x0000, 0x7e9a },
69 { 0x2000, 0x0000, 0x38b4, 0x7e3b }
70};
71
72static const u16 csc_coeff_rgb_out_eitu709[3][4] = {
73 { 0x2000, 0x7106, 0x7a02, 0x00a7 },
74 { 0x2000, 0x3264, 0x0000, 0x7e6d },
75 { 0x2000, 0x0000, 0x3b61, 0x7e25 }
76};
77
78static const u16 csc_coeff_rgb_in_eitu601[3][4] = {
79 { 0x2591, 0x1322, 0x074b, 0x0000 },
80 { 0x6535, 0x2000, 0x7acc, 0x0200 },
81 { 0x6acd, 0x7534, 0x2000, 0x0200 }
82};
83
84static const u16 csc_coeff_rgb_in_eitu709[3][4] = {
85 { 0x2dc5, 0x0d9b, 0x049e, 0x0000 },
86 { 0x62f0, 0x2000, 0x7d11, 0x0200 },
87 { 0x6756, 0x78ab, 0x2000, 0x0200 }
88};
89
90struct hdmi_vmode {
Fabio Estevam9aaf8802013-11-29 08:46:32 -020091 bool mdataenablepolarity;
92
93 unsigned int mpixelclock;
94 unsigned int mpixelrepetitioninput;
95 unsigned int mpixelrepetitionoutput;
96};
97
98struct hdmi_data_info {
Neil Armstrongdef23aa2017-04-04 14:31:57 +020099 unsigned int enc_in_bus_format;
100 unsigned int enc_out_bus_format;
101 unsigned int enc_in_encoding;
102 unsigned int enc_out_encoding;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200103 unsigned int pix_repet_factor;
104 unsigned int hdcp_enable;
105 struct hdmi_vmode video_mode;
106};
107
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300108struct dw_hdmi_i2c {
109 struct i2c_adapter adap;
110
111 struct mutex lock; /* used to serialize data transfers */
112 struct completion cmp;
113 u8 stat;
114
115 u8 slave_reg;
116 bool is_regaddr;
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800117 bool is_segment;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300118};
119
Laurent Pinchartfaba6c32017-01-17 10:29:06 +0200120struct dw_hdmi_phy_data {
121 enum dw_hdmi_phy_type type;
122 const char *name;
Laurent Pinchartb0e583e2017-03-06 01:35:39 +0200123 unsigned int gen;
Laurent Pinchartfaba6c32017-01-17 10:29:06 +0200124 bool has_svsret;
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +0200125 int (*configure)(struct dw_hdmi *hdmi,
126 const struct dw_hdmi_plat_data *pdata,
127 unsigned long mpixelclock);
Laurent Pinchartfaba6c32017-01-17 10:29:06 +0200128};
129
Andy Yanb21f4b62014-12-05 14:26:31 +0800130struct dw_hdmi {
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200131 struct drm_connector connector;
Laurent Pinchart70c963e2017-01-17 10:28:54 +0200132 struct drm_bridge bridge;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200133
Laurent Pinchartbe41fc52017-01-17 10:29:05 +0200134 unsigned int version;
135
136 struct platform_device *audio;
Russell Kinga616e632017-08-02 20:41:07 +0200137 struct platform_device *cec;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200138 struct device *dev;
139 struct clk *isfr_clk;
140 struct clk *iahb_clk;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300141 struct dw_hdmi_i2c *i2c;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200142
143 struct hdmi_data_info hdmi_data;
Andy Yanb21f4b62014-12-05 14:26:31 +0800144 const struct dw_hdmi_plat_data *plat_data;
145
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200146 int vic;
147
148 u8 edid[HDMI_EDID_LEN];
149 bool cable_plugin;
150
Laurent Pinchartf1585f62017-03-06 01:36:15 +0200151 struct {
152 const struct dw_hdmi_phy_ops *ops;
153 const char *name;
154 void *data;
155 bool enabled;
156 } phy;
Laurent Pinchartfaba6c32017-01-17 10:29:06 +0200157
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200158 struct drm_display_mode previous_mode;
159
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200160 struct i2c_adapter *ddc;
161 void __iomem *regs;
Russell King05b13422015-07-21 15:35:52 +0100162 bool sink_is_hdmi;
Russell Kingf709ec02015-07-21 16:09:39 +0100163 bool sink_has_audio;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200164
Russell Kingb872a8e2015-06-05 12:22:46 +0100165 struct mutex mutex; /* for state below and previous_mode */
Russell King381f05a2015-06-05 15:25:08 +0100166 enum drm_connector_force force; /* mutex-protected force state */
Russell Kingb872a8e2015-06-05 12:22:46 +0100167 bool disabled; /* DRM has disabled our bridge */
Russell King381f05a2015-06-05 15:25:08 +0100168 bool bridge_is_on; /* indicates the bridge is on */
Russell Kingaeac23b2015-06-05 13:46:22 +0100169 bool rxsense; /* rxsense state */
170 u8 phy_mask; /* desired phy int mask settings */
Russell King7cc4ab22017-07-31 15:29:46 +0100171 u8 mc_clkdis; /* clock disable register */
Russell Kingb872a8e2015-06-05 12:22:46 +0100172
Russell Kingb90120a2015-03-27 12:59:58 +0000173 spinlock_t audio_lock;
Russell King6bcf4952015-02-02 11:01:08 +0000174 struct mutex audio_mutex;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200175 unsigned int sample_rate;
Russell Kingb90120a2015-03-27 12:59:58 +0000176 unsigned int audio_cts;
177 unsigned int audio_n;
178 bool audio_enable;
Andy Yan0cd9d142014-12-05 14:28:24 +0800179
Neil Armstrong80e2f972017-03-03 19:20:06 +0200180 unsigned int reg_shift;
181 struct regmap *regm;
Romain Periera7d555d2017-04-14 10:31:12 +0200182 void (*enable_audio)(struct dw_hdmi *hdmi);
183 void (*disable_audio)(struct dw_hdmi *hdmi);
Russell Kinge84b8d72017-07-31 15:29:41 +0100184
185 struct cec_notifier *cec_notifier;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200186};
187
Russell Kingaeac23b2015-06-05 13:46:22 +0100188#define HDMI_IH_PHY_STAT0_RX_SENSE \
189 (HDMI_IH_PHY_STAT0_RX_SENSE0 | HDMI_IH_PHY_STAT0_RX_SENSE1 | \
190 HDMI_IH_PHY_STAT0_RX_SENSE2 | HDMI_IH_PHY_STAT0_RX_SENSE3)
191
192#define HDMI_PHY_RX_SENSE \
193 (HDMI_PHY_RX_SENSE0 | HDMI_PHY_RX_SENSE1 | \
194 HDMI_PHY_RX_SENSE2 | HDMI_PHY_RX_SENSE3)
195
Andy Yan0cd9d142014-12-05 14:28:24 +0800196static inline void hdmi_writeb(struct dw_hdmi *hdmi, u8 val, int offset)
197{
Neil Armstrong80e2f972017-03-03 19:20:06 +0200198 regmap_write(hdmi->regm, offset << hdmi->reg_shift, val);
Andy Yan0cd9d142014-12-05 14:28:24 +0800199}
200
201static inline u8 hdmi_readb(struct dw_hdmi *hdmi, int offset)
202{
Neil Armstrong80e2f972017-03-03 19:20:06 +0200203 unsigned int val = 0;
204
205 regmap_read(hdmi->regm, offset << hdmi->reg_shift, &val);
206
207 return val;
Andy Yan0cd9d142014-12-05 14:28:24 +0800208}
209
Andy Yanb21f4b62014-12-05 14:26:31 +0800210static void hdmi_modb(struct dw_hdmi *hdmi, u8 data, u8 mask, unsigned reg)
Russell King812bc612013-11-04 12:42:02 +0000211{
Neil Armstrong80e2f972017-03-03 19:20:06 +0200212 regmap_update_bits(hdmi->regm, reg << hdmi->reg_shift, mask, data);
Russell King812bc612013-11-04 12:42:02 +0000213}
214
Andy Yanb21f4b62014-12-05 14:26:31 +0800215static void hdmi_mask_writeb(struct dw_hdmi *hdmi, u8 data, unsigned int reg,
Andy Yanb5878332014-12-05 14:23:52 +0800216 u8 shift, u8 mask)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200217{
Russell King812bc612013-11-04 12:42:02 +0000218 hdmi_modb(hdmi, data << shift, mask, reg);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200219}
220
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300221static void dw_hdmi_i2c_init(struct dw_hdmi *hdmi)
222{
223 /* Software reset */
224 hdmi_writeb(hdmi, 0x00, HDMI_I2CM_SOFTRSTZ);
225
226 /* Set Standard Mode speed (determined to be 100KHz on iMX6) */
227 hdmi_writeb(hdmi, 0x00, HDMI_I2CM_DIV);
228
229 /* Set done, not acknowledged and arbitration interrupt polarities */
230 hdmi_writeb(hdmi, HDMI_I2CM_INT_DONE_POL, HDMI_I2CM_INT);
231 hdmi_writeb(hdmi, HDMI_I2CM_CTLINT_NAC_POL | HDMI_I2CM_CTLINT_ARB_POL,
232 HDMI_I2CM_CTLINT);
233
234 /* Clear DONE and ERROR interrupts */
235 hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
236 HDMI_IH_I2CM_STAT0);
237
238 /* Mute DONE and ERROR interrupts */
239 hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
240 HDMI_IH_MUTE_I2CM_STAT0);
241}
242
243static int dw_hdmi_i2c_read(struct dw_hdmi *hdmi,
244 unsigned char *buf, unsigned int length)
245{
246 struct dw_hdmi_i2c *i2c = hdmi->i2c;
247 int stat;
248
249 if (!i2c->is_regaddr) {
250 dev_dbg(hdmi->dev, "set read register address to 0\n");
251 i2c->slave_reg = 0x00;
252 i2c->is_regaddr = true;
253 }
254
255 while (length--) {
256 reinit_completion(&i2c->cmp);
257
258 hdmi_writeb(hdmi, i2c->slave_reg++, HDMI_I2CM_ADDRESS);
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800259 if (i2c->is_segment)
260 hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_READ_EXT,
261 HDMI_I2CM_OPERATION);
262 else
263 hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_READ,
264 HDMI_I2CM_OPERATION);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300265
266 stat = wait_for_completion_timeout(&i2c->cmp, HZ / 10);
267 if (!stat)
268 return -EAGAIN;
269
270 /* Check for error condition on the bus */
271 if (i2c->stat & HDMI_IH_I2CM_STAT0_ERROR)
272 return -EIO;
273
274 *buf++ = hdmi_readb(hdmi, HDMI_I2CM_DATAI);
275 }
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800276 i2c->is_segment = false;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300277
278 return 0;
279}
280
281static int dw_hdmi_i2c_write(struct dw_hdmi *hdmi,
282 unsigned char *buf, unsigned int length)
283{
284 struct dw_hdmi_i2c *i2c = hdmi->i2c;
285 int stat;
286
287 if (!i2c->is_regaddr) {
288 /* Use the first write byte as register address */
289 i2c->slave_reg = buf[0];
290 length--;
291 buf++;
292 i2c->is_regaddr = true;
293 }
294
295 while (length--) {
296 reinit_completion(&i2c->cmp);
297
298 hdmi_writeb(hdmi, *buf++, HDMI_I2CM_DATAO);
299 hdmi_writeb(hdmi, i2c->slave_reg++, HDMI_I2CM_ADDRESS);
300 hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_WRITE,
301 HDMI_I2CM_OPERATION);
302
303 stat = wait_for_completion_timeout(&i2c->cmp, HZ / 10);
304 if (!stat)
305 return -EAGAIN;
306
307 /* Check for error condition on the bus */
308 if (i2c->stat & HDMI_IH_I2CM_STAT0_ERROR)
309 return -EIO;
310 }
311
312 return 0;
313}
314
315static int dw_hdmi_i2c_xfer(struct i2c_adapter *adap,
316 struct i2c_msg *msgs, int num)
317{
318 struct dw_hdmi *hdmi = i2c_get_adapdata(adap);
319 struct dw_hdmi_i2c *i2c = hdmi->i2c;
320 u8 addr = msgs[0].addr;
321 int i, ret = 0;
322
323 dev_dbg(hdmi->dev, "xfer: num: %d, addr: %#x\n", num, addr);
324
325 for (i = 0; i < num; i++) {
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300326 if (msgs[i].len == 0) {
327 dev_dbg(hdmi->dev,
328 "unsupported transfer %d/%d, no data\n",
329 i + 1, num);
330 return -EOPNOTSUPP;
331 }
332 }
333
334 mutex_lock(&i2c->lock);
335
336 /* Unmute DONE and ERROR interrupts */
337 hdmi_writeb(hdmi, 0x00, HDMI_IH_MUTE_I2CM_STAT0);
338
339 /* Set slave device address taken from the first I2C message */
340 hdmi_writeb(hdmi, addr, HDMI_I2CM_SLAVE);
341
342 /* Set slave device register address on transfer */
343 i2c->is_regaddr = false;
344
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800345 /* Set segment pointer for I2C extended read mode operation */
346 i2c->is_segment = false;
347
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300348 for (i = 0; i < num; i++) {
349 dev_dbg(hdmi->dev, "xfer: num: %d/%d, len: %d, flags: %#x\n",
350 i + 1, num, msgs[i].len, msgs[i].flags);
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800351 if (msgs[i].addr == DDC_SEGMENT_ADDR && msgs[i].len == 1) {
352 i2c->is_segment = true;
353 hdmi_writeb(hdmi, DDC_SEGMENT_ADDR, HDMI_I2CM_SEGADDR);
354 hdmi_writeb(hdmi, *msgs[i].buf, HDMI_I2CM_SEGPTR);
355 } else {
356 if (msgs[i].flags & I2C_M_RD)
357 ret = dw_hdmi_i2c_read(hdmi, msgs[i].buf,
358 msgs[i].len);
359 else
360 ret = dw_hdmi_i2c_write(hdmi, msgs[i].buf,
361 msgs[i].len);
362 }
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300363 if (ret < 0)
364 break;
365 }
366
367 if (!ret)
368 ret = num;
369
370 /* Mute DONE and ERROR interrupts */
371 hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
372 HDMI_IH_MUTE_I2CM_STAT0);
373
374 mutex_unlock(&i2c->lock);
375
376 return ret;
377}
378
379static u32 dw_hdmi_i2c_func(struct i2c_adapter *adapter)
380{
381 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
382}
383
384static const struct i2c_algorithm dw_hdmi_algorithm = {
385 .master_xfer = dw_hdmi_i2c_xfer,
386 .functionality = dw_hdmi_i2c_func,
387};
388
389static struct i2c_adapter *dw_hdmi_i2c_adapter(struct dw_hdmi *hdmi)
390{
391 struct i2c_adapter *adap;
392 struct dw_hdmi_i2c *i2c;
393 int ret;
394
395 i2c = devm_kzalloc(hdmi->dev, sizeof(*i2c), GFP_KERNEL);
396 if (!i2c)
397 return ERR_PTR(-ENOMEM);
398
399 mutex_init(&i2c->lock);
400 init_completion(&i2c->cmp);
401
402 adap = &i2c->adap;
403 adap->class = I2C_CLASS_DDC;
404 adap->owner = THIS_MODULE;
405 adap->dev.parent = hdmi->dev;
406 adap->algo = &dw_hdmi_algorithm;
407 strlcpy(adap->name, "DesignWare HDMI", sizeof(adap->name));
408 i2c_set_adapdata(adap, hdmi);
409
410 ret = i2c_add_adapter(adap);
411 if (ret) {
412 dev_warn(hdmi->dev, "cannot add %s I2C adapter\n", adap->name);
413 devm_kfree(hdmi->dev, i2c);
414 return ERR_PTR(ret);
415 }
416
417 hdmi->i2c = i2c;
418
419 dev_info(hdmi->dev, "registered %s I2C bus driver\n", adap->name);
420
421 return adap;
422}
423
Russell King351e1352015-01-31 14:50:23 +0000424static void hdmi_set_cts_n(struct dw_hdmi *hdmi, unsigned int cts,
425 unsigned int n)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200426{
Russell King622494a2015-02-02 10:55:38 +0000427 /* Must be set/cleared first */
428 hdmi_modb(hdmi, 0, HDMI_AUD_CTS3_CTS_MANUAL, HDMI_AUD_CTS3);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200429
430 /* nshift factor = 0 */
Russell King812bc612013-11-04 12:42:02 +0000431 hdmi_modb(hdmi, 0, HDMI_AUD_CTS3_N_SHIFT_MASK, HDMI_AUD_CTS3);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200432
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200433 hdmi_writeb(hdmi, ((cts >> 16) & HDMI_AUD_CTS3_AUDCTS19_16_MASK) |
434 HDMI_AUD_CTS3_CTS_MANUAL, HDMI_AUD_CTS3);
Russell King622494a2015-02-02 10:55:38 +0000435 hdmi_writeb(hdmi, (cts >> 8) & 0xff, HDMI_AUD_CTS2);
436 hdmi_writeb(hdmi, cts & 0xff, HDMI_AUD_CTS1);
437
438 hdmi_writeb(hdmi, (n >> 16) & 0x0f, HDMI_AUD_N3);
439 hdmi_writeb(hdmi, (n >> 8) & 0xff, HDMI_AUD_N2);
440 hdmi_writeb(hdmi, n & 0xff, HDMI_AUD_N1);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200441}
442
Russell Kingb195fbd2015-07-22 11:28:16 +0100443static unsigned int hdmi_compute_n(unsigned int freq, unsigned long pixel_clk)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200444{
445 unsigned int n = (128 * freq) / 1000;
Russell Kingd0c96d12015-07-22 10:35:41 +0100446 unsigned int mult = 1;
447
448 while (freq > 48000) {
449 mult *= 2;
450 freq /= 2;
451 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200452
453 switch (freq) {
454 case 32000:
Russell King426701d2015-07-22 10:39:27 +0100455 if (pixel_clk == 25175000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100456 n = 4576;
Russell King426701d2015-07-22 10:39:27 +0100457 else if (pixel_clk == 27027000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100458 n = 4096;
Russell King426701d2015-07-22 10:39:27 +0100459 else if (pixel_clk == 74176000 || pixel_clk == 148352000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200460 n = 11648;
461 else
462 n = 4096;
Russell Kingd0c96d12015-07-22 10:35:41 +0100463 n *= mult;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200464 break;
465
466 case 44100:
Russell King426701d2015-07-22 10:39:27 +0100467 if (pixel_clk == 25175000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200468 n = 7007;
Russell King426701d2015-07-22 10:39:27 +0100469 else if (pixel_clk == 74176000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200470 n = 17836;
Russell King426701d2015-07-22 10:39:27 +0100471 else if (pixel_clk == 148352000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100472 n = 8918;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200473 else
474 n = 6272;
Russell Kingd0c96d12015-07-22 10:35:41 +0100475 n *= mult;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200476 break;
477
478 case 48000:
Russell King426701d2015-07-22 10:39:27 +0100479 if (pixel_clk == 25175000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100480 n = 6864;
Russell King426701d2015-07-22 10:39:27 +0100481 else if (pixel_clk == 27027000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100482 n = 6144;
Russell King426701d2015-07-22 10:39:27 +0100483 else if (pixel_clk == 74176000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200484 n = 11648;
Russell King426701d2015-07-22 10:39:27 +0100485 else if (pixel_clk == 148352000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100486 n = 5824;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200487 else
488 n = 6144;
Russell Kingd0c96d12015-07-22 10:35:41 +0100489 n *= mult;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200490 break;
491
492 default:
493 break;
494 }
495
496 return n;
497}
498
Andy Yanb21f4b62014-12-05 14:26:31 +0800499static void hdmi_set_clk_regenerator(struct dw_hdmi *hdmi,
Russell Kingb195fbd2015-07-22 11:28:16 +0100500 unsigned long pixel_clk, unsigned int sample_rate)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200501{
Russell Kingdfbdaf52015-07-22 16:54:37 +0100502 unsigned long ftdms = pixel_clk;
Russell Kingf879b382015-03-27 12:53:29 +0000503 unsigned int n, cts;
Russell Kingdfbdaf52015-07-22 16:54:37 +0100504 u64 tmp;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200505
Russell Kingb195fbd2015-07-22 11:28:16 +0100506 n = hdmi_compute_n(sample_rate, pixel_clk);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200507
Russell Kingdfbdaf52015-07-22 16:54:37 +0100508 /*
509 * Compute the CTS value from the N value. Note that CTS and N
510 * can be up to 20 bits in total, so we need 64-bit math. Also
511 * note that our TDMS clock is not fully accurate; it is accurate
512 * to kHz. This can introduce an unnecessary remainder in the
513 * calculation below, so we don't try to warn about that.
514 */
515 tmp = (u64)ftdms * n;
516 do_div(tmp, 128 * sample_rate);
517 cts = tmp;
518
519 dev_dbg(hdmi->dev, "%s: fs=%uHz ftdms=%lu.%03luMHz N=%d cts=%d\n",
520 __func__, sample_rate, ftdms / 1000000, (ftdms / 1000) % 1000,
521 n, cts);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200522
Russell Kingb90120a2015-03-27 12:59:58 +0000523 spin_lock_irq(&hdmi->audio_lock);
524 hdmi->audio_n = n;
525 hdmi->audio_cts = cts;
526 hdmi_set_cts_n(hdmi, cts, hdmi->audio_enable ? n : 0);
527 spin_unlock_irq(&hdmi->audio_lock);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200528}
529
Andy Yanb21f4b62014-12-05 14:26:31 +0800530static void hdmi_init_clk_regenerator(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200531{
Russell King6bcf4952015-02-02 11:01:08 +0000532 mutex_lock(&hdmi->audio_mutex);
Russell Kingb195fbd2015-07-22 11:28:16 +0100533 hdmi_set_clk_regenerator(hdmi, 74250000, hdmi->sample_rate);
Russell King6bcf4952015-02-02 11:01:08 +0000534 mutex_unlock(&hdmi->audio_mutex);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200535}
536
Andy Yanb21f4b62014-12-05 14:26:31 +0800537static void hdmi_clk_regenerator_update_pixel_clock(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200538{
Russell King6bcf4952015-02-02 11:01:08 +0000539 mutex_lock(&hdmi->audio_mutex);
Russell Kingf879b382015-03-27 12:53:29 +0000540 hdmi_set_clk_regenerator(hdmi, hdmi->hdmi_data.video_mode.mpixelclock,
Russell Kingb195fbd2015-07-22 11:28:16 +0100541 hdmi->sample_rate);
Russell King6bcf4952015-02-02 11:01:08 +0000542 mutex_unlock(&hdmi->audio_mutex);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200543}
544
Russell Kingb5814ff2015-03-27 12:50:58 +0000545void dw_hdmi_set_sample_rate(struct dw_hdmi *hdmi, unsigned int rate)
546{
547 mutex_lock(&hdmi->audio_mutex);
548 hdmi->sample_rate = rate;
549 hdmi_set_clk_regenerator(hdmi, hdmi->hdmi_data.video_mode.mpixelclock,
Russell Kingb195fbd2015-07-22 11:28:16 +0100550 hdmi->sample_rate);
Russell Kingb5814ff2015-03-27 12:50:58 +0000551 mutex_unlock(&hdmi->audio_mutex);
552}
553EXPORT_SYMBOL_GPL(dw_hdmi_set_sample_rate);
554
Romain Perier57fbc052017-04-20 14:34:34 +0530555static void hdmi_enable_audio_clk(struct dw_hdmi *hdmi, bool enable)
556{
Russell King7cc4ab22017-07-31 15:29:46 +0100557 if (enable)
558 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_AUDCLK_DISABLE;
559 else
560 hdmi->mc_clkdis |= HDMI_MC_CLKDIS_AUDCLK_DISABLE;
561 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
Romain Perier57fbc052017-04-20 14:34:34 +0530562}
563
Romain Periera7d555d2017-04-14 10:31:12 +0200564static void dw_hdmi_ahb_audio_enable(struct dw_hdmi *hdmi)
565{
566 hdmi_set_cts_n(hdmi, hdmi->audio_cts, hdmi->audio_n);
567}
568
569static void dw_hdmi_ahb_audio_disable(struct dw_hdmi *hdmi)
570{
571 hdmi_set_cts_n(hdmi, hdmi->audio_cts, 0);
572}
573
574static void dw_hdmi_i2s_audio_enable(struct dw_hdmi *hdmi)
575{
576 hdmi_set_cts_n(hdmi, hdmi->audio_cts, hdmi->audio_n);
Romain Perier57fbc052017-04-20 14:34:34 +0530577 hdmi_enable_audio_clk(hdmi, true);
578}
579
580static void dw_hdmi_i2s_audio_disable(struct dw_hdmi *hdmi)
581{
582 hdmi_enable_audio_clk(hdmi, false);
Romain Periera7d555d2017-04-14 10:31:12 +0200583}
584
Russell Kingb90120a2015-03-27 12:59:58 +0000585void dw_hdmi_audio_enable(struct dw_hdmi *hdmi)
586{
587 unsigned long flags;
588
589 spin_lock_irqsave(&hdmi->audio_lock, flags);
590 hdmi->audio_enable = true;
Romain Periera7d555d2017-04-14 10:31:12 +0200591 if (hdmi->enable_audio)
592 hdmi->enable_audio(hdmi);
Russell Kingb90120a2015-03-27 12:59:58 +0000593 spin_unlock_irqrestore(&hdmi->audio_lock, flags);
594}
595EXPORT_SYMBOL_GPL(dw_hdmi_audio_enable);
596
597void dw_hdmi_audio_disable(struct dw_hdmi *hdmi)
598{
599 unsigned long flags;
600
601 spin_lock_irqsave(&hdmi->audio_lock, flags);
602 hdmi->audio_enable = false;
Romain Periera7d555d2017-04-14 10:31:12 +0200603 if (hdmi->disable_audio)
604 hdmi->disable_audio(hdmi);
Russell Kingb90120a2015-03-27 12:59:58 +0000605 spin_unlock_irqrestore(&hdmi->audio_lock, flags);
606}
607EXPORT_SYMBOL_GPL(dw_hdmi_audio_disable);
608
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200609static bool hdmi_bus_fmt_is_rgb(unsigned int bus_format)
610{
611 switch (bus_format) {
612 case MEDIA_BUS_FMT_RGB888_1X24:
613 case MEDIA_BUS_FMT_RGB101010_1X30:
614 case MEDIA_BUS_FMT_RGB121212_1X36:
615 case MEDIA_BUS_FMT_RGB161616_1X48:
616 return true;
617
618 default:
619 return false;
620 }
621}
622
623static bool hdmi_bus_fmt_is_yuv444(unsigned int bus_format)
624{
625 switch (bus_format) {
626 case MEDIA_BUS_FMT_YUV8_1X24:
627 case MEDIA_BUS_FMT_YUV10_1X30:
628 case MEDIA_BUS_FMT_YUV12_1X36:
629 case MEDIA_BUS_FMT_YUV16_1X48:
630 return true;
631
632 default:
633 return false;
634 }
635}
636
637static bool hdmi_bus_fmt_is_yuv422(unsigned int bus_format)
638{
639 switch (bus_format) {
640 case MEDIA_BUS_FMT_UYVY8_1X16:
641 case MEDIA_BUS_FMT_UYVY10_1X20:
642 case MEDIA_BUS_FMT_UYVY12_1X24:
643 return true;
644
645 default:
646 return false;
647 }
648}
649
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200650static int hdmi_bus_fmt_color_depth(unsigned int bus_format)
651{
652 switch (bus_format) {
653 case MEDIA_BUS_FMT_RGB888_1X24:
654 case MEDIA_BUS_FMT_YUV8_1X24:
655 case MEDIA_BUS_FMT_UYVY8_1X16:
656 case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
657 return 8;
658
659 case MEDIA_BUS_FMT_RGB101010_1X30:
660 case MEDIA_BUS_FMT_YUV10_1X30:
661 case MEDIA_BUS_FMT_UYVY10_1X20:
662 case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
663 return 10;
664
665 case MEDIA_BUS_FMT_RGB121212_1X36:
666 case MEDIA_BUS_FMT_YUV12_1X36:
667 case MEDIA_BUS_FMT_UYVY12_1X24:
668 case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
669 return 12;
670
671 case MEDIA_BUS_FMT_RGB161616_1X48:
672 case MEDIA_BUS_FMT_YUV16_1X48:
673 case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
674 return 16;
675
676 default:
677 return 0;
678 }
679}
680
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200681/*
682 * this submodule is responsible for the video data synchronization.
683 * for example, for RGB 4:4:4 input, the data map is defined as
684 * pin{47~40} <==> R[7:0]
685 * pin{31~24} <==> G[7:0]
686 * pin{15~8} <==> B[7:0]
687 */
Andy Yanb21f4b62014-12-05 14:26:31 +0800688static void hdmi_video_sample(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200689{
690 int color_format = 0;
691 u8 val;
692
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200693 switch (hdmi->hdmi_data.enc_in_bus_format) {
694 case MEDIA_BUS_FMT_RGB888_1X24:
695 color_format = 0x01;
696 break;
697 case MEDIA_BUS_FMT_RGB101010_1X30:
698 color_format = 0x03;
699 break;
700 case MEDIA_BUS_FMT_RGB121212_1X36:
701 color_format = 0x05;
702 break;
703 case MEDIA_BUS_FMT_RGB161616_1X48:
704 color_format = 0x07;
705 break;
706
707 case MEDIA_BUS_FMT_YUV8_1X24:
708 case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
709 color_format = 0x09;
710 break;
711 case MEDIA_BUS_FMT_YUV10_1X30:
712 case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
713 color_format = 0x0B;
714 break;
715 case MEDIA_BUS_FMT_YUV12_1X36:
716 case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
717 color_format = 0x0D;
718 break;
719 case MEDIA_BUS_FMT_YUV16_1X48:
720 case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
721 color_format = 0x0F;
722 break;
723
724 case MEDIA_BUS_FMT_UYVY8_1X16:
725 color_format = 0x16;
726 break;
727 case MEDIA_BUS_FMT_UYVY10_1X20:
728 color_format = 0x14;
729 break;
730 case MEDIA_BUS_FMT_UYVY12_1X24:
731 color_format = 0x12;
732 break;
733
734 default:
735 return;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200736 }
737
738 val = HDMI_TX_INVID0_INTERNAL_DE_GENERATOR_DISABLE |
739 ((color_format << HDMI_TX_INVID0_VIDEO_MAPPING_OFFSET) &
740 HDMI_TX_INVID0_VIDEO_MAPPING_MASK);
741 hdmi_writeb(hdmi, val, HDMI_TX_INVID0);
742
743 /* Enable TX stuffing: When DE is inactive, fix the output data to 0 */
744 val = HDMI_TX_INSTUFFING_BDBDATA_STUFFING_ENABLE |
745 HDMI_TX_INSTUFFING_RCRDATA_STUFFING_ENABLE |
746 HDMI_TX_INSTUFFING_GYDATA_STUFFING_ENABLE;
747 hdmi_writeb(hdmi, val, HDMI_TX_INSTUFFING);
748 hdmi_writeb(hdmi, 0x0, HDMI_TX_GYDATA0);
749 hdmi_writeb(hdmi, 0x0, HDMI_TX_GYDATA1);
750 hdmi_writeb(hdmi, 0x0, HDMI_TX_RCRDATA0);
751 hdmi_writeb(hdmi, 0x0, HDMI_TX_RCRDATA1);
752 hdmi_writeb(hdmi, 0x0, HDMI_TX_BCBDATA0);
753 hdmi_writeb(hdmi, 0x0, HDMI_TX_BCBDATA1);
754}
755
Andy Yanb21f4b62014-12-05 14:26:31 +0800756static int is_color_space_conversion(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200757{
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200758 return hdmi->hdmi_data.enc_in_bus_format != hdmi->hdmi_data.enc_out_bus_format;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200759}
760
Andy Yanb21f4b62014-12-05 14:26:31 +0800761static int is_color_space_decimation(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200762{
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200763 if (!hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200764 return 0;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200765
766 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_in_bus_format) ||
767 hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_in_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200768 return 1;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200769
Fabio Estevamba92b222014-02-06 10:12:03 -0200770 return 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200771}
772
Andy Yanb21f4b62014-12-05 14:26:31 +0800773static int is_color_space_interpolation(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200774{
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200775 if (!hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_in_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200776 return 0;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200777
778 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format) ||
779 hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200780 return 1;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200781
Fabio Estevamba92b222014-02-06 10:12:03 -0200782 return 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200783}
784
Andy Yanb21f4b62014-12-05 14:26:31 +0800785static void dw_hdmi_update_csc_coeffs(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200786{
787 const u16 (*csc_coeff)[3][4] = &csc_coeff_default;
Russell Kingc082f9d2013-11-04 12:10:40 +0000788 unsigned i;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200789 u32 csc_scale = 1;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200790
791 if (is_color_space_conversion(hdmi)) {
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200792 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format)) {
793 if (hdmi->hdmi_data.enc_out_encoding ==
794 V4L2_YCBCR_ENC_601)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200795 csc_coeff = &csc_coeff_rgb_out_eitu601;
796 else
797 csc_coeff = &csc_coeff_rgb_out_eitu709;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200798 } else if (hdmi_bus_fmt_is_rgb(
799 hdmi->hdmi_data.enc_in_bus_format)) {
800 if (hdmi->hdmi_data.enc_out_encoding ==
801 V4L2_YCBCR_ENC_601)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200802 csc_coeff = &csc_coeff_rgb_in_eitu601;
803 else
804 csc_coeff = &csc_coeff_rgb_in_eitu709;
805 csc_scale = 0;
806 }
807 }
808
Russell Kingc082f9d2013-11-04 12:10:40 +0000809 /* The CSC registers are sequential, alternating MSB then LSB */
810 for (i = 0; i < ARRAY_SIZE(csc_coeff_default[0]); i++) {
811 u16 coeff_a = (*csc_coeff)[0][i];
812 u16 coeff_b = (*csc_coeff)[1][i];
813 u16 coeff_c = (*csc_coeff)[2][i];
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200814
Andy Yanb5878332014-12-05 14:23:52 +0800815 hdmi_writeb(hdmi, coeff_a & 0xff, HDMI_CSC_COEF_A1_LSB + i * 2);
Russell Kingc082f9d2013-11-04 12:10:40 +0000816 hdmi_writeb(hdmi, coeff_a >> 8, HDMI_CSC_COEF_A1_MSB + i * 2);
817 hdmi_writeb(hdmi, coeff_b & 0xff, HDMI_CSC_COEF_B1_LSB + i * 2);
818 hdmi_writeb(hdmi, coeff_b >> 8, HDMI_CSC_COEF_B1_MSB + i * 2);
Andy Yanb5878332014-12-05 14:23:52 +0800819 hdmi_writeb(hdmi, coeff_c & 0xff, HDMI_CSC_COEF_C1_LSB + i * 2);
Russell Kingc082f9d2013-11-04 12:10:40 +0000820 hdmi_writeb(hdmi, coeff_c >> 8, HDMI_CSC_COEF_C1_MSB + i * 2);
821 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200822
Russell King812bc612013-11-04 12:42:02 +0000823 hdmi_modb(hdmi, csc_scale, HDMI_CSC_SCALE_CSCSCALE_MASK,
824 HDMI_CSC_SCALE);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200825}
826
Andy Yanb21f4b62014-12-05 14:26:31 +0800827static void hdmi_video_csc(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200828{
829 int color_depth = 0;
830 int interpolation = HDMI_CSC_CFG_INTMODE_DISABLE;
831 int decimation = 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200832
833 /* YCC422 interpolation to 444 mode */
834 if (is_color_space_interpolation(hdmi))
835 interpolation = HDMI_CSC_CFG_INTMODE_CHROMA_INT_FORMULA1;
836 else if (is_color_space_decimation(hdmi))
837 decimation = HDMI_CSC_CFG_DECMODE_CHROMA_INT_FORMULA3;
838
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200839 switch (hdmi_bus_fmt_color_depth(hdmi->hdmi_data.enc_out_bus_format)) {
840 case 8:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200841 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_24BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200842 break;
843 case 10:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200844 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_30BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200845 break;
846 case 12:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200847 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_36BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200848 break;
849 case 16:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200850 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_48BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200851 break;
852
853 default:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200854 return;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200855 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200856
857 /* Configure the CSC registers */
858 hdmi_writeb(hdmi, interpolation | decimation, HDMI_CSC_CFG);
Russell King812bc612013-11-04 12:42:02 +0000859 hdmi_modb(hdmi, color_depth, HDMI_CSC_SCALE_CSC_COLORDE_PTH_MASK,
860 HDMI_CSC_SCALE);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200861
Andy Yanb21f4b62014-12-05 14:26:31 +0800862 dw_hdmi_update_csc_coeffs(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200863}
864
865/*
866 * HDMI video packetizer is used to packetize the data.
867 * for example, if input is YCC422 mode or repeater is used,
868 * data should be repacked this module can be bypassed.
869 */
Andy Yanb21f4b62014-12-05 14:26:31 +0800870static void hdmi_video_packetize(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200871{
872 unsigned int color_depth = 0;
873 unsigned int remap_size = HDMI_VP_REMAP_YCC422_16bit;
874 unsigned int output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_PP;
875 struct hdmi_data_info *hdmi_data = &hdmi->hdmi_data;
Russell Kingbebdf662013-11-04 12:55:30 +0000876 u8 val, vp_conf;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200877
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200878 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format) ||
879 hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format)) {
880 switch (hdmi_bus_fmt_color_depth(
881 hdmi->hdmi_data.enc_out_bus_format)) {
882 case 8:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200883 color_depth = 4;
884 output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200885 break;
886 case 10:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200887 color_depth = 5;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200888 break;
889 case 12:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200890 color_depth = 6;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200891 break;
892 case 16:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200893 color_depth = 7;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200894 break;
895 default:
896 output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS;
897 }
898 } else if (hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format)) {
899 switch (hdmi_bus_fmt_color_depth(
900 hdmi->hdmi_data.enc_out_bus_format)) {
901 case 0:
902 case 8:
903 remap_size = HDMI_VP_REMAP_YCC422_16bit;
904 break;
905 case 10:
906 remap_size = HDMI_VP_REMAP_YCC422_20bit;
907 break;
908 case 12:
909 remap_size = HDMI_VP_REMAP_YCC422_24bit;
910 break;
911
912 default:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200913 return;
Andy Yanb5878332014-12-05 14:23:52 +0800914 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200915 output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_YCC422;
Andy Yanb5878332014-12-05 14:23:52 +0800916 } else {
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200917 return;
Andy Yanb5878332014-12-05 14:23:52 +0800918 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200919
920 /* set the packetizer registers */
921 val = ((color_depth << HDMI_VP_PR_CD_COLOR_DEPTH_OFFSET) &
922 HDMI_VP_PR_CD_COLOR_DEPTH_MASK) |
923 ((hdmi_data->pix_repet_factor <<
924 HDMI_VP_PR_CD_DESIRED_PR_FACTOR_OFFSET) &
925 HDMI_VP_PR_CD_DESIRED_PR_FACTOR_MASK);
926 hdmi_writeb(hdmi, val, HDMI_VP_PR_CD);
927
Russell King812bc612013-11-04 12:42:02 +0000928 hdmi_modb(hdmi, HDMI_VP_STUFF_PR_STUFFING_STUFFING_MODE,
929 HDMI_VP_STUFF_PR_STUFFING_MASK, HDMI_VP_STUFF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200930
931 /* Data from pixel repeater block */
932 if (hdmi_data->pix_repet_factor > 1) {
Russell Kingbebdf662013-11-04 12:55:30 +0000933 vp_conf = HDMI_VP_CONF_PR_EN_ENABLE |
934 HDMI_VP_CONF_BYPASS_SELECT_PIX_REPEATER;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200935 } else { /* data from packetizer block */
Russell Kingbebdf662013-11-04 12:55:30 +0000936 vp_conf = HDMI_VP_CONF_PR_EN_DISABLE |
937 HDMI_VP_CONF_BYPASS_SELECT_VID_PACKETIZER;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200938 }
939
Russell Kingbebdf662013-11-04 12:55:30 +0000940 hdmi_modb(hdmi, vp_conf,
941 HDMI_VP_CONF_PR_EN_MASK |
942 HDMI_VP_CONF_BYPASS_SELECT_MASK, HDMI_VP_CONF);
943
Russell King812bc612013-11-04 12:42:02 +0000944 hdmi_modb(hdmi, 1 << HDMI_VP_STUFF_IDEFAULT_PHASE_OFFSET,
945 HDMI_VP_STUFF_IDEFAULT_PHASE_MASK, HDMI_VP_STUFF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200946
947 hdmi_writeb(hdmi, remap_size, HDMI_VP_REMAP);
948
949 if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_PP) {
Russell Kingbebdf662013-11-04 12:55:30 +0000950 vp_conf = HDMI_VP_CONF_BYPASS_EN_DISABLE |
951 HDMI_VP_CONF_PP_EN_ENABLE |
952 HDMI_VP_CONF_YCC422_EN_DISABLE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200953 } else if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_YCC422) {
Russell Kingbebdf662013-11-04 12:55:30 +0000954 vp_conf = HDMI_VP_CONF_BYPASS_EN_DISABLE |
955 HDMI_VP_CONF_PP_EN_DISABLE |
956 HDMI_VP_CONF_YCC422_EN_ENABLE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200957 } else if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS) {
Russell Kingbebdf662013-11-04 12:55:30 +0000958 vp_conf = HDMI_VP_CONF_BYPASS_EN_ENABLE |
959 HDMI_VP_CONF_PP_EN_DISABLE |
960 HDMI_VP_CONF_YCC422_EN_DISABLE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200961 } else {
962 return;
963 }
964
Russell Kingbebdf662013-11-04 12:55:30 +0000965 hdmi_modb(hdmi, vp_conf,
966 HDMI_VP_CONF_BYPASS_EN_MASK | HDMI_VP_CONF_PP_EN_ENMASK |
967 HDMI_VP_CONF_YCC422_EN_MASK, HDMI_VP_CONF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200968
Russell King812bc612013-11-04 12:42:02 +0000969 hdmi_modb(hdmi, HDMI_VP_STUFF_PP_STUFFING_STUFFING_MODE |
970 HDMI_VP_STUFF_YCC422_STUFFING_STUFFING_MODE,
971 HDMI_VP_STUFF_PP_STUFFING_MASK |
972 HDMI_VP_STUFF_YCC422_STUFFING_MASK, HDMI_VP_STUFF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200973
Russell King812bc612013-11-04 12:42:02 +0000974 hdmi_modb(hdmi, output_select, HDMI_VP_CONF_OUTPUT_SELECTOR_MASK,
975 HDMI_VP_CONF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200976}
977
Laurent Pinchartf1585f62017-03-06 01:36:15 +0200978/* -----------------------------------------------------------------------------
979 * Synopsys PHY Handling
980 */
981
Andy Yanb21f4b62014-12-05 14:26:31 +0800982static inline void hdmi_phy_test_clear(struct dw_hdmi *hdmi,
Andy Yanb5878332014-12-05 14:23:52 +0800983 unsigned char bit)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200984{
Russell King812bc612013-11-04 12:42:02 +0000985 hdmi_modb(hdmi, bit << HDMI_PHY_TST0_TSTCLR_OFFSET,
986 HDMI_PHY_TST0_TSTCLR_MASK, HDMI_PHY_TST0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200987}
988
Andy Yanb21f4b62014-12-05 14:26:31 +0800989static bool hdmi_phy_wait_i2c_done(struct dw_hdmi *hdmi, int msec)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200990{
Andy Yana4d3b8b2014-12-05 14:31:09 +0800991 u32 val;
992
993 while ((val = hdmi_readb(hdmi, HDMI_IH_I2CMPHY_STAT0) & 0x3) == 0) {
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200994 if (msec-- == 0)
995 return false;
Emil Renner Berthing0e6bcf32014-03-30 00:21:21 +0100996 udelay(1000);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200997 }
Andy Yana4d3b8b2014-12-05 14:31:09 +0800998 hdmi_writeb(hdmi, val, HDMI_IH_I2CMPHY_STAT0);
999
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001000 return true;
1001}
1002
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001003void dw_hdmi_phy_i2c_write(struct dw_hdmi *hdmi, unsigned short data,
1004 unsigned char addr)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001005{
1006 hdmi_writeb(hdmi, 0xFF, HDMI_IH_I2CMPHY_STAT0);
1007 hdmi_writeb(hdmi, addr, HDMI_PHY_I2CM_ADDRESS_ADDR);
1008 hdmi_writeb(hdmi, (unsigned char)(data >> 8),
Andy Yanb5878332014-12-05 14:23:52 +08001009 HDMI_PHY_I2CM_DATAO_1_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001010 hdmi_writeb(hdmi, (unsigned char)(data >> 0),
Andy Yanb5878332014-12-05 14:23:52 +08001011 HDMI_PHY_I2CM_DATAO_0_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001012 hdmi_writeb(hdmi, HDMI_PHY_I2CM_OPERATION_ADDR_WRITE,
Andy Yanb5878332014-12-05 14:23:52 +08001013 HDMI_PHY_I2CM_OPERATION_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001014 hdmi_phy_wait_i2c_done(hdmi, 1000);
1015}
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001016EXPORT_SYMBOL_GPL(dw_hdmi_phy_i2c_write);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001017
Russell King2fada102015-07-28 12:21:34 +01001018static void dw_hdmi_phy_enable_powerdown(struct dw_hdmi *hdmi, bool enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001019{
Russell King2fada102015-07-28 12:21:34 +01001020 hdmi_mask_writeb(hdmi, !enable, HDMI_PHY_CONF0,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001021 HDMI_PHY_CONF0_PDZ_OFFSET,
1022 HDMI_PHY_CONF0_PDZ_MASK);
1023}
1024
Andy Yanb21f4b62014-12-05 14:26:31 +08001025static void dw_hdmi_phy_enable_tmds(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001026{
1027 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1028 HDMI_PHY_CONF0_ENTMDS_OFFSET,
1029 HDMI_PHY_CONF0_ENTMDS_MASK);
1030}
1031
Laurent Pinchartf4104e82017-01-17 10:29:02 +02001032static void dw_hdmi_phy_enable_svsret(struct dw_hdmi *hdmi, u8 enable)
Andy Yand346c142014-12-05 14:31:53 +08001033{
1034 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
Laurent Pinchartf4104e82017-01-17 10:29:02 +02001035 HDMI_PHY_CONF0_SVSRET_OFFSET,
1036 HDMI_PHY_CONF0_SVSRET_MASK);
Andy Yand346c142014-12-05 14:31:53 +08001037}
1038
Andy Yanb21f4b62014-12-05 14:26:31 +08001039static void dw_hdmi_phy_gen2_pddq(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001040{
1041 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1042 HDMI_PHY_CONF0_GEN2_PDDQ_OFFSET,
1043 HDMI_PHY_CONF0_GEN2_PDDQ_MASK);
1044}
1045
Andy Yanb21f4b62014-12-05 14:26:31 +08001046static void dw_hdmi_phy_gen2_txpwron(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001047{
1048 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1049 HDMI_PHY_CONF0_GEN2_TXPWRON_OFFSET,
1050 HDMI_PHY_CONF0_GEN2_TXPWRON_MASK);
1051}
1052
Andy Yanb21f4b62014-12-05 14:26:31 +08001053static void dw_hdmi_phy_sel_data_en_pol(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001054{
1055 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1056 HDMI_PHY_CONF0_SELDATAENPOL_OFFSET,
1057 HDMI_PHY_CONF0_SELDATAENPOL_MASK);
1058}
1059
Andy Yanb21f4b62014-12-05 14:26:31 +08001060static void dw_hdmi_phy_sel_interface_control(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001061{
1062 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1063 HDMI_PHY_CONF0_SELDIPIF_OFFSET,
1064 HDMI_PHY_CONF0_SELDIPIF_MASK);
1065}
1066
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02001067static void dw_hdmi_phy_power_off(struct dw_hdmi *hdmi)
1068{
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001069 const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02001070 unsigned int i;
1071 u16 val;
1072
1073 if (phy->gen == 1) {
1074 dw_hdmi_phy_enable_tmds(hdmi, 0);
1075 dw_hdmi_phy_enable_powerdown(hdmi, true);
1076 return;
1077 }
1078
1079 dw_hdmi_phy_gen2_txpwron(hdmi, 0);
1080
1081 /*
1082 * Wait for TX_PHY_LOCK to be deasserted to indicate that the PHY went
1083 * to low power mode.
1084 */
1085 for (i = 0; i < 5; ++i) {
1086 val = hdmi_readb(hdmi, HDMI_PHY_STAT0);
1087 if (!(val & HDMI_PHY_TX_PHY_LOCK))
1088 break;
1089
1090 usleep_range(1000, 2000);
1091 }
1092
1093 if (val & HDMI_PHY_TX_PHY_LOCK)
1094 dev_warn(hdmi->dev, "PHY failed to power down\n");
1095 else
1096 dev_dbg(hdmi->dev, "PHY powered down in %u iterations\n", i);
1097
1098 dw_hdmi_phy_gen2_pddq(hdmi, 1);
1099}
1100
Laurent Pinchart181e0ef2017-03-06 01:35:57 +02001101static int dw_hdmi_phy_power_on(struct dw_hdmi *hdmi)
1102{
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001103 const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
Laurent Pinchart181e0ef2017-03-06 01:35:57 +02001104 unsigned int i;
1105 u8 val;
1106
1107 if (phy->gen == 1) {
1108 dw_hdmi_phy_enable_powerdown(hdmi, false);
1109
1110 /* Toggle TMDS enable. */
1111 dw_hdmi_phy_enable_tmds(hdmi, 0);
1112 dw_hdmi_phy_enable_tmds(hdmi, 1);
1113 return 0;
1114 }
1115
1116 dw_hdmi_phy_gen2_txpwron(hdmi, 1);
1117 dw_hdmi_phy_gen2_pddq(hdmi, 0);
1118
1119 /* Wait for PHY PLL lock */
1120 for (i = 0; i < 5; ++i) {
1121 val = hdmi_readb(hdmi, HDMI_PHY_STAT0) & HDMI_PHY_TX_PHY_LOCK;
1122 if (val)
1123 break;
1124
1125 usleep_range(1000, 2000);
1126 }
1127
1128 if (!val) {
1129 dev_err(hdmi->dev, "PHY PLL failed to lock\n");
1130 return -ETIMEDOUT;
1131 }
1132
1133 dev_dbg(hdmi->dev, "PHY PLL locked %u iterations\n", i);
1134 return 0;
1135}
1136
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001137/*
1138 * PHY configuration function for the DWC HDMI 3D TX PHY. Based on the available
1139 * information the DWC MHL PHY has the same register layout and is thus also
1140 * supported by this function.
1141 */
1142static int hdmi_phy_configure_dwc_hdmi_3d_tx(struct dw_hdmi *hdmi,
1143 const struct dw_hdmi_plat_data *pdata,
1144 unsigned long mpixelclock)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001145{
Russell King39cc1532015-03-31 18:34:11 +01001146 const struct dw_hdmi_mpll_config *mpll_config = pdata->mpll_cfg;
1147 const struct dw_hdmi_curr_ctrl *curr_ctrl = pdata->cur_ctr;
1148 const struct dw_hdmi_phy_config *phy_config = pdata->phy_config;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001149
Russell King39cc1532015-03-31 18:34:11 +01001150 /* PLL/MPLL Cfg - always match on final entry */
1151 for (; mpll_config->mpixelclock != ~0UL; mpll_config++)
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001152 if (mpixelclock <= mpll_config->mpixelclock)
Russell King39cc1532015-03-31 18:34:11 +01001153 break;
1154
1155 for (; curr_ctrl->mpixelclock != ~0UL; curr_ctrl++)
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001156 if (mpixelclock <= curr_ctrl->mpixelclock)
Russell King39cc1532015-03-31 18:34:11 +01001157 break;
1158
1159 for (; phy_config->mpixelclock != ~0UL; phy_config++)
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001160 if (mpixelclock <= phy_config->mpixelclock)
Russell King39cc1532015-03-31 18:34:11 +01001161 break;
1162
1163 if (mpll_config->mpixelclock == ~0UL ||
1164 curr_ctrl->mpixelclock == ~0UL ||
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001165 phy_config->mpixelclock == ~0UL)
Russell King39cc1532015-03-31 18:34:11 +01001166 return -EINVAL;
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001167
1168 dw_hdmi_phy_i2c_write(hdmi, mpll_config->res[0].cpce,
1169 HDMI_3D_TX_PHY_CPCE_CTRL);
1170 dw_hdmi_phy_i2c_write(hdmi, mpll_config->res[0].gmp,
1171 HDMI_3D_TX_PHY_GMPCTRL);
1172 dw_hdmi_phy_i2c_write(hdmi, curr_ctrl->curr[0],
1173 HDMI_3D_TX_PHY_CURRCTRL);
1174
1175 dw_hdmi_phy_i2c_write(hdmi, 0, HDMI_3D_TX_PHY_PLLPHBYCTRL);
1176 dw_hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK,
1177 HDMI_3D_TX_PHY_MSM_CTRL);
1178
1179 dw_hdmi_phy_i2c_write(hdmi, phy_config->term, HDMI_3D_TX_PHY_TXTERM);
1180 dw_hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr,
1181 HDMI_3D_TX_PHY_CKSYMTXCTRL);
1182 dw_hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr,
1183 HDMI_3D_TX_PHY_VLEVCTRL);
1184
1185 /* Override and disable clock termination. */
1186 dw_hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE,
1187 HDMI_3D_TX_PHY_CKCALCTRL);
1188
1189 return 0;
1190}
1191
1192static int hdmi_phy_configure(struct dw_hdmi *hdmi)
1193{
1194 const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
1195 const struct dw_hdmi_plat_data *pdata = hdmi->plat_data;
1196 unsigned long mpixelclock = hdmi->hdmi_data.video_mode.mpixelclock;
1197 int ret;
Russell King39cc1532015-03-31 18:34:11 +01001198
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02001199 dw_hdmi_phy_power_off(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001200
Laurent Pinchart2668db32017-01-17 10:29:09 +02001201 /* Leave low power consumption mode by asserting SVSRET. */
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001202 if (phy->has_svsret)
Laurent Pinchart2668db32017-01-17 10:29:09 +02001203 dw_hdmi_phy_enable_svsret(hdmi, 1);
1204
Laurent Pinchart54d72732017-01-17 10:29:08 +02001205 /* PHY reset. The reset signal is active high on Gen2 PHYs. */
1206 hdmi_writeb(hdmi, HDMI_MC_PHYRSTZ_PHYRSTZ, HDMI_MC_PHYRSTZ);
1207 hdmi_writeb(hdmi, 0, HDMI_MC_PHYRSTZ);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001208
1209 hdmi_writeb(hdmi, HDMI_MC_HEACPHY_RST_ASSERT, HDMI_MC_HEACPHY_RST);
1210
1211 hdmi_phy_test_clear(hdmi, 1);
1212 hdmi_writeb(hdmi, HDMI_PHY_I2CM_SLAVE_ADDR_PHY_GEN2,
Andy Yanb5878332014-12-05 14:23:52 +08001213 HDMI_PHY_I2CM_SLAVE_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001214 hdmi_phy_test_clear(hdmi, 0);
1215
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001216 /* Write to the PHY as configured by the platform */
1217 if (pdata->configure_phy)
1218 ret = pdata->configure_phy(hdmi, pdata, mpixelclock);
1219 else
1220 ret = phy->configure(hdmi, pdata, mpixelclock);
1221 if (ret) {
1222 dev_err(hdmi->dev, "PHY configuration failed (clock %lu)\n",
1223 mpixelclock);
1224 return ret;
1225 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001226
Laurent Pinchart181e0ef2017-03-06 01:35:57 +02001227 return dw_hdmi_phy_power_on(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001228}
1229
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001230static int dw_hdmi_phy_init(struct dw_hdmi *hdmi, void *data,
1231 struct drm_display_mode *mode)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001232{
1233 int i, ret;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001234
1235 /* HDMI Phy spec says to do the phy initialization sequence twice */
1236 for (i = 0; i < 2; i++) {
Andy Yanb21f4b62014-12-05 14:26:31 +08001237 dw_hdmi_phy_sel_data_en_pol(hdmi, 1);
1238 dw_hdmi_phy_sel_interface_control(hdmi, 0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001239
Laurent Pinchart8b9e1c02017-03-03 19:19:59 +02001240 ret = hdmi_phy_configure(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001241 if (ret)
1242 return ret;
1243 }
1244
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001245 return 0;
1246}
1247
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001248static void dw_hdmi_phy_disable(struct dw_hdmi *hdmi, void *data)
1249{
1250 dw_hdmi_phy_power_off(hdmi);
1251}
1252
1253static enum drm_connector_status dw_hdmi_phy_read_hpd(struct dw_hdmi *hdmi,
1254 void *data)
1255{
1256 return hdmi_readb(hdmi, HDMI_PHY_STAT0) & HDMI_PHY_HPD ?
1257 connector_status_connected : connector_status_disconnected;
1258}
1259
Neil Armstrong386d3292017-04-04 14:31:59 +02001260static void dw_hdmi_phy_update_hpd(struct dw_hdmi *hdmi, void *data,
1261 bool force, bool disabled, bool rxsense)
1262{
1263 u8 old_mask = hdmi->phy_mask;
1264
1265 if (force || disabled || !rxsense)
1266 hdmi->phy_mask |= HDMI_PHY_RX_SENSE;
1267 else
1268 hdmi->phy_mask &= ~HDMI_PHY_RX_SENSE;
1269
1270 if (old_mask != hdmi->phy_mask)
1271 hdmi_writeb(hdmi, hdmi->phy_mask, HDMI_PHY_MASK0);
1272}
1273
1274static void dw_hdmi_phy_setup_hpd(struct dw_hdmi *hdmi, void *data)
1275{
1276 /*
1277 * Configure the PHY RX SENSE and HPD interrupts polarities and clear
1278 * any pending interrupt.
1279 */
1280 hdmi_writeb(hdmi, HDMI_PHY_HPD | HDMI_PHY_RX_SENSE, HDMI_PHY_POL0);
1281 hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE,
1282 HDMI_IH_PHY_STAT0);
1283
1284 /* Enable cable hot plug irq. */
1285 hdmi_writeb(hdmi, hdmi->phy_mask, HDMI_PHY_MASK0);
1286
1287 /* Clear and unmute interrupts. */
1288 hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE,
1289 HDMI_IH_PHY_STAT0);
1290 hdmi_writeb(hdmi, ~(HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE),
1291 HDMI_IH_MUTE_PHY_STAT0);
1292}
1293
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001294static const struct dw_hdmi_phy_ops dw_hdmi_synopsys_phy_ops = {
1295 .init = dw_hdmi_phy_init,
1296 .disable = dw_hdmi_phy_disable,
1297 .read_hpd = dw_hdmi_phy_read_hpd,
Neil Armstrong386d3292017-04-04 14:31:59 +02001298 .update_hpd = dw_hdmi_phy_update_hpd,
1299 .setup_hpd = dw_hdmi_phy_setup_hpd,
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001300};
1301
1302/* -----------------------------------------------------------------------------
1303 * HDMI TX Setup
1304 */
1305
Andy Yanb21f4b62014-12-05 14:26:31 +08001306static void hdmi_tx_hdcp_config(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001307{
Russell King812bc612013-11-04 12:42:02 +00001308 u8 de;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001309
1310 if (hdmi->hdmi_data.video_mode.mdataenablepolarity)
1311 de = HDMI_A_VIDPOLCFG_DATAENPOL_ACTIVE_HIGH;
1312 else
1313 de = HDMI_A_VIDPOLCFG_DATAENPOL_ACTIVE_LOW;
1314
1315 /* disable rx detect */
Russell King812bc612013-11-04 12:42:02 +00001316 hdmi_modb(hdmi, HDMI_A_HDCPCFG0_RXDETECT_DISABLE,
1317 HDMI_A_HDCPCFG0_RXDETECT_MASK, HDMI_A_HDCPCFG0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001318
Russell King812bc612013-11-04 12:42:02 +00001319 hdmi_modb(hdmi, de, HDMI_A_VIDPOLCFG_DATAENPOL_MASK, HDMI_A_VIDPOLCFG);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001320
Russell King812bc612013-11-04 12:42:02 +00001321 hdmi_modb(hdmi, HDMI_A_HDCPCFG1_ENCRYPTIONDISABLE_DISABLE,
1322 HDMI_A_HDCPCFG1_ENCRYPTIONDISABLE_MASK, HDMI_A_HDCPCFG1);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001323}
1324
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001325static void hdmi_config_AVI(struct dw_hdmi *hdmi, struct drm_display_mode *mode)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001326{
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001327 struct hdmi_avi_infoframe frame;
1328 u8 val;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001329
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001330 /* Initialise info frame from DRM mode */
Shashank Sharma0c1f5282017-07-13 21:03:07 +05301331 drm_hdmi_avi_infoframe_from_display_mode(&frame, mode, false);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001332
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001333 if (hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format))
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001334 frame.colorspace = HDMI_COLORSPACE_YUV444;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001335 else if (hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format))
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001336 frame.colorspace = HDMI_COLORSPACE_YUV422;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001337 else
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001338 frame.colorspace = HDMI_COLORSPACE_RGB;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001339
1340 /* Set up colorimetry */
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001341 switch (hdmi->hdmi_data.enc_out_encoding) {
1342 case V4L2_YCBCR_ENC_601:
1343 if (hdmi->hdmi_data.enc_in_encoding == V4L2_YCBCR_ENC_XV601)
1344 frame.colorimetry = HDMI_COLORIMETRY_EXTENDED;
1345 else
1346 frame.colorimetry = HDMI_COLORIMETRY_ITU_601;
1347 frame.extended_colorimetry =
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001348 HDMI_EXTENDED_COLORIMETRY_XV_YCC_601;
Dan Carpenterf40d6562017-04-06 08:21:32 +03001349 break;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001350 case V4L2_YCBCR_ENC_709:
1351 if (hdmi->hdmi_data.enc_in_encoding == V4L2_YCBCR_ENC_XV709)
1352 frame.colorimetry = HDMI_COLORIMETRY_EXTENDED;
1353 else
1354 frame.colorimetry = HDMI_COLORIMETRY_ITU_709;
1355 frame.extended_colorimetry =
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001356 HDMI_EXTENDED_COLORIMETRY_XV_YCC_709;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001357 break;
1358 default: /* Carries no data */
1359 frame.colorimetry = HDMI_COLORIMETRY_ITU_601;
1360 frame.extended_colorimetry =
1361 HDMI_EXTENDED_COLORIMETRY_XV_YCC_601;
1362 break;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001363 }
1364
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001365 frame.scan_mode = HDMI_SCAN_MODE_NONE;
1366
1367 /*
1368 * The Designware IP uses a different byte format from standard
1369 * AVI info frames, though generally the bits are in the correct
1370 * bytes.
1371 */
1372
1373 /*
Jose Abreub0118e72016-08-29 10:30:51 +01001374 * AVI data byte 1 differences: Colorspace in bits 0,1 rather than 5,6,
1375 * scan info in bits 4,5 rather than 0,1 and active aspect present in
1376 * bit 6 rather than 4.
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001377 */
Jose Abreub0118e72016-08-29 10:30:51 +01001378 val = (frame.scan_mode & 3) << 4 | (frame.colorspace & 3);
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001379 if (frame.active_aspect & 15)
1380 val |= HDMI_FC_AVICONF0_ACTIVE_FMT_INFO_PRESENT;
1381 if (frame.top_bar || frame.bottom_bar)
1382 val |= HDMI_FC_AVICONF0_BAR_DATA_HORIZ_BAR;
1383 if (frame.left_bar || frame.right_bar)
1384 val |= HDMI_FC_AVICONF0_BAR_DATA_VERT_BAR;
1385 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF0);
1386
1387 /* AVI data byte 2 differences: none */
1388 val = ((frame.colorimetry & 0x3) << 6) |
1389 ((frame.picture_aspect & 0x3) << 4) |
1390 (frame.active_aspect & 0xf);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001391 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF1);
1392
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001393 /* AVI data byte 3 differences: none */
1394 val = ((frame.extended_colorimetry & 0x7) << 4) |
1395 ((frame.quantization_range & 0x3) << 2) |
1396 (frame.nups & 0x3);
1397 if (frame.itc)
1398 val |= HDMI_FC_AVICONF2_IT_CONTENT_VALID;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001399 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF2);
1400
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001401 /* AVI data byte 4 differences: none */
1402 val = frame.video_code & 0x7f;
1403 hdmi_writeb(hdmi, val, HDMI_FC_AVIVID);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001404
1405 /* AVI Data Byte 5- set up input and output pixel repetition */
1406 val = (((hdmi->hdmi_data.video_mode.mpixelrepetitioninput + 1) <<
1407 HDMI_FC_PRCONF_INCOMING_PR_FACTOR_OFFSET) &
1408 HDMI_FC_PRCONF_INCOMING_PR_FACTOR_MASK) |
1409 ((hdmi->hdmi_data.video_mode.mpixelrepetitionoutput <<
1410 HDMI_FC_PRCONF_OUTPUT_PR_FACTOR_OFFSET) &
1411 HDMI_FC_PRCONF_OUTPUT_PR_FACTOR_MASK);
1412 hdmi_writeb(hdmi, val, HDMI_FC_PRCONF);
1413
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001414 /*
1415 * AVI data byte 5 differences: content type in 0,1 rather than 4,5,
1416 * ycc range in bits 2,3 rather than 6,7
1417 */
1418 val = ((frame.ycc_quantization_range & 0x3) << 2) |
1419 (frame.content_type & 0x3);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001420 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF3);
1421
1422 /* AVI Data Bytes 6-13 */
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001423 hdmi_writeb(hdmi, frame.top_bar & 0xff, HDMI_FC_AVIETB0);
1424 hdmi_writeb(hdmi, (frame.top_bar >> 8) & 0xff, HDMI_FC_AVIETB1);
1425 hdmi_writeb(hdmi, frame.bottom_bar & 0xff, HDMI_FC_AVISBB0);
1426 hdmi_writeb(hdmi, (frame.bottom_bar >> 8) & 0xff, HDMI_FC_AVISBB1);
1427 hdmi_writeb(hdmi, frame.left_bar & 0xff, HDMI_FC_AVIELB0);
1428 hdmi_writeb(hdmi, (frame.left_bar >> 8) & 0xff, HDMI_FC_AVIELB1);
1429 hdmi_writeb(hdmi, frame.right_bar & 0xff, HDMI_FC_AVISRB0);
1430 hdmi_writeb(hdmi, (frame.right_bar >> 8) & 0xff, HDMI_FC_AVISRB1);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001431}
1432
Nickey Yang9aa1eca2017-03-21 15:36:17 +08001433static void hdmi_config_vendor_specific_infoframe(struct dw_hdmi *hdmi,
1434 struct drm_display_mode *mode)
1435{
1436 struct hdmi_vendor_infoframe frame;
1437 u8 buffer[10];
1438 ssize_t err;
1439
1440 err = drm_hdmi_vendor_infoframe_from_display_mode(&frame, mode);
1441 if (err < 0)
1442 /*
1443 * Going into that statement does not means vendor infoframe
1444 * fails. It just informed us that vendor infoframe is not
1445 * needed for the selected mode. Only 4k or stereoscopic 3D
1446 * mode requires vendor infoframe. So just simply return.
1447 */
1448 return;
1449
1450 err = hdmi_vendor_infoframe_pack(&frame, buffer, sizeof(buffer));
1451 if (err < 0) {
1452 dev_err(hdmi->dev, "Failed to pack vendor infoframe: %zd\n",
1453 err);
1454 return;
1455 }
1456 hdmi_mask_writeb(hdmi, 0, HDMI_FC_DATAUTO0, HDMI_FC_DATAUTO0_VSD_OFFSET,
1457 HDMI_FC_DATAUTO0_VSD_MASK);
1458
1459 /* Set the length of HDMI vendor specific InfoFrame payload */
1460 hdmi_writeb(hdmi, buffer[2], HDMI_FC_VSDSIZE);
1461
1462 /* Set 24bit IEEE Registration Identifier */
1463 hdmi_writeb(hdmi, buffer[4], HDMI_FC_VSDIEEEID0);
1464 hdmi_writeb(hdmi, buffer[5], HDMI_FC_VSDIEEEID1);
1465 hdmi_writeb(hdmi, buffer[6], HDMI_FC_VSDIEEEID2);
1466
1467 /* Set HDMI_Video_Format and HDMI_VIC/3D_Structure */
1468 hdmi_writeb(hdmi, buffer[7], HDMI_FC_VSDPAYLOAD0);
1469 hdmi_writeb(hdmi, buffer[8], HDMI_FC_VSDPAYLOAD1);
1470
1471 if (frame.s3d_struct >= HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF)
1472 hdmi_writeb(hdmi, buffer[9], HDMI_FC_VSDPAYLOAD2);
1473
1474 /* Packet frame interpolation */
1475 hdmi_writeb(hdmi, 1, HDMI_FC_DATAUTO1);
1476
1477 /* Auto packets per frame and line spacing */
1478 hdmi_writeb(hdmi, 0x11, HDMI_FC_DATAUTO2);
1479
1480 /* Configures the Frame Composer On RDRB mode */
1481 hdmi_mask_writeb(hdmi, 1, HDMI_FC_DATAUTO0, HDMI_FC_DATAUTO0_VSD_OFFSET,
1482 HDMI_FC_DATAUTO0_VSD_MASK);
1483}
1484
Andy Yanb21f4b62014-12-05 14:26:31 +08001485static void hdmi_av_composer(struct dw_hdmi *hdmi,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001486 const struct drm_display_mode *mode)
1487{
1488 u8 inv_val;
1489 struct hdmi_vmode *vmode = &hdmi->hdmi_data.video_mode;
1490 int hblank, vblank, h_de_hs, v_de_vs, hsync_len, vsync_len;
Russell Kinge80b9f42015-07-21 11:08:25 +01001491 unsigned int vdisplay;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001492
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001493 vmode->mpixelclock = mode->clock * 1000;
1494
1495 dev_dbg(hdmi->dev, "final pixclk = %d\n", vmode->mpixelclock);
1496
1497 /* Set up HDMI_FC_INVIDCONF */
1498 inv_val = (hdmi->hdmi_data.hdcp_enable ?
1499 HDMI_FC_INVIDCONF_HDCP_KEEPOUT_ACTIVE :
1500 HDMI_FC_INVIDCONF_HDCP_KEEPOUT_INACTIVE);
1501
Russell Kingb91eee82015-03-27 23:27:17 +00001502 inv_val |= mode->flags & DRM_MODE_FLAG_PVSYNC ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001503 HDMI_FC_INVIDCONF_VSYNC_IN_POLARITY_ACTIVE_HIGH :
Russell Kingb91eee82015-03-27 23:27:17 +00001504 HDMI_FC_INVIDCONF_VSYNC_IN_POLARITY_ACTIVE_LOW;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001505
Russell Kingb91eee82015-03-27 23:27:17 +00001506 inv_val |= mode->flags & DRM_MODE_FLAG_PHSYNC ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001507 HDMI_FC_INVIDCONF_HSYNC_IN_POLARITY_ACTIVE_HIGH :
Russell Kingb91eee82015-03-27 23:27:17 +00001508 HDMI_FC_INVIDCONF_HSYNC_IN_POLARITY_ACTIVE_LOW;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001509
1510 inv_val |= (vmode->mdataenablepolarity ?
1511 HDMI_FC_INVIDCONF_DE_IN_POLARITY_ACTIVE_HIGH :
1512 HDMI_FC_INVIDCONF_DE_IN_POLARITY_ACTIVE_LOW);
1513
1514 if (hdmi->vic == 39)
1515 inv_val |= HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_HIGH;
1516 else
Russell Kingb91eee82015-03-27 23:27:17 +00001517 inv_val |= mode->flags & DRM_MODE_FLAG_INTERLACE ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001518 HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_HIGH :
Russell Kingb91eee82015-03-27 23:27:17 +00001519 HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_LOW;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001520
Russell Kingb91eee82015-03-27 23:27:17 +00001521 inv_val |= mode->flags & DRM_MODE_FLAG_INTERLACE ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001522 HDMI_FC_INVIDCONF_IN_I_P_INTERLACED :
Russell Kingb91eee82015-03-27 23:27:17 +00001523 HDMI_FC_INVIDCONF_IN_I_P_PROGRESSIVE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001524
Russell King05b13422015-07-21 15:35:52 +01001525 inv_val |= hdmi->sink_is_hdmi ?
1526 HDMI_FC_INVIDCONF_DVI_MODEZ_HDMI_MODE :
1527 HDMI_FC_INVIDCONF_DVI_MODEZ_DVI_MODE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001528
1529 hdmi_writeb(hdmi, inv_val, HDMI_FC_INVIDCONF);
1530
Russell Kinge80b9f42015-07-21 11:08:25 +01001531 vdisplay = mode->vdisplay;
1532 vblank = mode->vtotal - mode->vdisplay;
1533 v_de_vs = mode->vsync_start - mode->vdisplay;
1534 vsync_len = mode->vsync_end - mode->vsync_start;
1535
1536 /*
1537 * When we're setting an interlaced mode, we need
1538 * to adjust the vertical timing to suit.
1539 */
1540 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
1541 vdisplay /= 2;
1542 vblank /= 2;
1543 v_de_vs /= 2;
1544 vsync_len /= 2;
1545 }
1546
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001547 /* Set up horizontal active pixel width */
1548 hdmi_writeb(hdmi, mode->hdisplay >> 8, HDMI_FC_INHACTV1);
1549 hdmi_writeb(hdmi, mode->hdisplay, HDMI_FC_INHACTV0);
1550
1551 /* Set up vertical active lines */
Russell Kinge80b9f42015-07-21 11:08:25 +01001552 hdmi_writeb(hdmi, vdisplay >> 8, HDMI_FC_INVACTV1);
1553 hdmi_writeb(hdmi, vdisplay, HDMI_FC_INVACTV0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001554
1555 /* Set up horizontal blanking pixel region width */
1556 hblank = mode->htotal - mode->hdisplay;
1557 hdmi_writeb(hdmi, hblank >> 8, HDMI_FC_INHBLANK1);
1558 hdmi_writeb(hdmi, hblank, HDMI_FC_INHBLANK0);
1559
1560 /* Set up vertical blanking pixel region width */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001561 hdmi_writeb(hdmi, vblank, HDMI_FC_INVBLANK);
1562
1563 /* Set up HSYNC active edge delay width (in pixel clks) */
1564 h_de_hs = mode->hsync_start - mode->hdisplay;
1565 hdmi_writeb(hdmi, h_de_hs >> 8, HDMI_FC_HSYNCINDELAY1);
1566 hdmi_writeb(hdmi, h_de_hs, HDMI_FC_HSYNCINDELAY0);
1567
1568 /* Set up VSYNC active edge delay (in lines) */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001569 hdmi_writeb(hdmi, v_de_vs, HDMI_FC_VSYNCINDELAY);
1570
1571 /* Set up HSYNC active pulse width (in pixel clks) */
1572 hsync_len = mode->hsync_end - mode->hsync_start;
1573 hdmi_writeb(hdmi, hsync_len >> 8, HDMI_FC_HSYNCINWIDTH1);
1574 hdmi_writeb(hdmi, hsync_len, HDMI_FC_HSYNCINWIDTH0);
1575
1576 /* Set up VSYNC active edge delay (in lines) */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001577 hdmi_writeb(hdmi, vsync_len, HDMI_FC_VSYNCINWIDTH);
1578}
1579
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001580/* HDMI Initialization Step B.4 */
Andy Yanb21f4b62014-12-05 14:26:31 +08001581static void dw_hdmi_enable_video_path(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001582{
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001583 /* control period minimum duration */
1584 hdmi_writeb(hdmi, 12, HDMI_FC_CTRLDUR);
1585 hdmi_writeb(hdmi, 32, HDMI_FC_EXCTRLDUR);
1586 hdmi_writeb(hdmi, 1, HDMI_FC_EXCTRLSPAC);
1587
1588 /* Set to fill TMDS data channels */
1589 hdmi_writeb(hdmi, 0x0B, HDMI_FC_CH0PREAM);
1590 hdmi_writeb(hdmi, 0x16, HDMI_FC_CH1PREAM);
1591 hdmi_writeb(hdmi, 0x21, HDMI_FC_CH2PREAM);
1592
1593 /* Enable pixel clock and tmds data path */
Russell King7cc4ab22017-07-31 15:29:46 +01001594 hdmi->mc_clkdis |= HDMI_MC_CLKDIS_HDCPCLK_DISABLE |
1595 HDMI_MC_CLKDIS_CSCCLK_DISABLE |
1596 HDMI_MC_CLKDIS_AUDCLK_DISABLE |
1597 HDMI_MC_CLKDIS_PREPCLK_DISABLE |
1598 HDMI_MC_CLKDIS_TMDSCLK_DISABLE;
1599 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_PIXELCLK_DISABLE;
1600 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001601
Russell King7cc4ab22017-07-31 15:29:46 +01001602 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_TMDSCLK_DISABLE;
1603 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001604
1605 /* Enable csc path */
1606 if (is_color_space_conversion(hdmi)) {
Russell King7cc4ab22017-07-31 15:29:46 +01001607 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_CSCCLK_DISABLE;
1608 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001609 }
Laurent Pinchart8b9e1c02017-03-03 19:19:59 +02001610
Neil Armstrong14247d72017-03-03 19:20:00 +02001611 /* Enable color space conversion if needed */
1612 if (is_color_space_conversion(hdmi))
Laurent Pinchart8b9e1c02017-03-03 19:19:59 +02001613 hdmi_writeb(hdmi, HDMI_MC_FLOWCTRL_FEED_THROUGH_OFF_CSC_IN_PATH,
1614 HDMI_MC_FLOWCTRL);
1615 else
1616 hdmi_writeb(hdmi, HDMI_MC_FLOWCTRL_FEED_THROUGH_OFF_CSC_BYPASS,
1617 HDMI_MC_FLOWCTRL);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001618}
1619
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001620/* Workaround to clear the overflow condition */
Andy Yanb21f4b62014-12-05 14:26:31 +08001621static void dw_hdmi_clear_overflow(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001622{
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02001623 unsigned int count;
1624 unsigned int i;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001625 u8 val;
1626
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02001627 /*
1628 * Under some circumstances the Frame Composer arithmetic unit can miss
1629 * an FC register write due to being busy processing the previous one.
1630 * The issue can be worked around by issuing a TMDS software reset and
1631 * then write one of the FC registers several times.
1632 *
1633 * The number of iterations matters and depends on the HDMI TX revision
1634 * (and possibly on the platform). So far only i.MX6Q (v1.30a) and
1635 * i.MX6DL (v1.31a) have been identified as needing the workaround, with
1636 * 4 and 1 iterations respectively.
1637 */
1638
1639 switch (hdmi->version) {
1640 case 0x130a:
1641 count = 4;
1642 break;
1643 case 0x131a:
1644 count = 1;
1645 break;
1646 default:
1647 return;
1648 }
1649
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001650 /* TMDS software reset */
1651 hdmi_writeb(hdmi, (u8)~HDMI_MC_SWRSTZ_TMDSSWRST_REQ, HDMI_MC_SWRSTZ);
1652
1653 val = hdmi_readb(hdmi, HDMI_FC_INVIDCONF);
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02001654 for (i = 0; i < count; i++)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001655 hdmi_writeb(hdmi, val, HDMI_FC_INVIDCONF);
1656}
1657
Andy Yanb21f4b62014-12-05 14:26:31 +08001658static void hdmi_enable_overflow_interrupts(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001659{
1660 hdmi_writeb(hdmi, 0, HDMI_FC_MASK2);
1661 hdmi_writeb(hdmi, 0, HDMI_IH_MUTE_FC_STAT2);
1662}
1663
Andy Yanb21f4b62014-12-05 14:26:31 +08001664static void hdmi_disable_overflow_interrupts(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001665{
1666 hdmi_writeb(hdmi, HDMI_IH_MUTE_FC_STAT2_OVERFLOW_MASK,
1667 HDMI_IH_MUTE_FC_STAT2);
1668}
1669
Andy Yanb21f4b62014-12-05 14:26:31 +08001670static int dw_hdmi_setup(struct dw_hdmi *hdmi, struct drm_display_mode *mode)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001671{
1672 int ret;
1673
1674 hdmi_disable_overflow_interrupts(hdmi);
1675
1676 hdmi->vic = drm_match_cea_mode(mode);
1677
1678 if (!hdmi->vic) {
1679 dev_dbg(hdmi->dev, "Non-CEA mode used in HDMI\n");
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001680 } else {
1681 dev_dbg(hdmi->dev, "CEA mode used vic=%d\n", hdmi->vic);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001682 }
1683
1684 if ((hdmi->vic == 6) || (hdmi->vic == 7) ||
Andy Yanb5878332014-12-05 14:23:52 +08001685 (hdmi->vic == 21) || (hdmi->vic == 22) ||
1686 (hdmi->vic == 2) || (hdmi->vic == 3) ||
1687 (hdmi->vic == 17) || (hdmi->vic == 18))
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001688 hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_601;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001689 else
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001690 hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_709;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001691
Russell Kingd10ca822015-07-21 11:25:00 +01001692 hdmi->hdmi_data.video_mode.mpixelrepetitionoutput = 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001693 hdmi->hdmi_data.video_mode.mpixelrepetitioninput = 0;
1694
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001695 /* TOFIX: Get input format from plat data or fallback to RGB888 */
Neil Armstronge20c29a2017-04-06 11:34:04 +02001696 if (hdmi->plat_data->input_bus_format)
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001697 hdmi->hdmi_data.enc_in_bus_format =
1698 hdmi->plat_data->input_bus_format;
1699 else
1700 hdmi->hdmi_data.enc_in_bus_format = MEDIA_BUS_FMT_RGB888_1X24;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001701
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001702 /* TOFIX: Get input encoding from plat data or fallback to none */
Neil Armstronge20c29a2017-04-06 11:34:04 +02001703 if (hdmi->plat_data->input_bus_encoding)
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001704 hdmi->hdmi_data.enc_in_encoding =
1705 hdmi->plat_data->input_bus_encoding;
1706 else
1707 hdmi->hdmi_data.enc_in_encoding = V4L2_YCBCR_ENC_DEFAULT;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001708
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001709 /* TOFIX: Default to RGB888 output format */
1710 hdmi->hdmi_data.enc_out_bus_format = MEDIA_BUS_FMT_RGB888_1X24;
1711
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001712 hdmi->hdmi_data.pix_repet_factor = 0;
1713 hdmi->hdmi_data.hdcp_enable = 0;
1714 hdmi->hdmi_data.video_mode.mdataenablepolarity = true;
1715
1716 /* HDMI Initialization Step B.1 */
1717 hdmi_av_composer(hdmi, mode);
1718
1719 /* HDMI Initializateion Step B.2 */
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001720 ret = hdmi->phy.ops->init(hdmi, hdmi->phy.data, &hdmi->previous_mode);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001721 if (ret)
1722 return ret;
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001723 hdmi->phy.enabled = true;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001724
1725 /* HDMI Initialization Step B.3 */
Andy Yanb21f4b62014-12-05 14:26:31 +08001726 dw_hdmi_enable_video_path(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001727
Russell Kingf709ec02015-07-21 16:09:39 +01001728 if (hdmi->sink_has_audio) {
1729 dev_dbg(hdmi->dev, "sink has audio support\n");
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001730
1731 /* HDMI Initialization Step E - Configure audio */
1732 hdmi_clk_regenerator_update_pixel_clock(hdmi);
Romain Perier57fbc052017-04-20 14:34:34 +05301733 hdmi_enable_audio_clk(hdmi, true);
Russell Kingf709ec02015-07-21 16:09:39 +01001734 }
1735
1736 /* not for DVI mode */
1737 if (hdmi->sink_is_hdmi) {
1738 dev_dbg(hdmi->dev, "%s HDMI mode\n", __func__);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001739
1740 /* HDMI Initialization Step F - Configure AVI InfoFrame */
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001741 hdmi_config_AVI(hdmi, mode);
Nickey Yang9aa1eca2017-03-21 15:36:17 +08001742 hdmi_config_vendor_specific_infoframe(hdmi, mode);
Russell King05b13422015-07-21 15:35:52 +01001743 } else {
1744 dev_dbg(hdmi->dev, "%s DVI mode\n", __func__);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001745 }
1746
1747 hdmi_video_packetize(hdmi);
1748 hdmi_video_csc(hdmi);
1749 hdmi_video_sample(hdmi);
1750 hdmi_tx_hdcp_config(hdmi);
1751
Andy Yanb21f4b62014-12-05 14:26:31 +08001752 dw_hdmi_clear_overflow(hdmi);
Russell King05b13422015-07-21 15:35:52 +01001753 if (hdmi->cable_plugin && hdmi->sink_is_hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001754 hdmi_enable_overflow_interrupts(hdmi);
1755
1756 return 0;
1757}
1758
Laurent Pincharta23d6262017-04-04 14:31:56 +02001759static void dw_hdmi_setup_i2c(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001760{
1761 hdmi_writeb(hdmi, HDMI_PHY_I2CM_INT_ADDR_DONE_POL,
1762 HDMI_PHY_I2CM_INT_ADDR);
1763
1764 hdmi_writeb(hdmi, HDMI_PHY_I2CM_CTLINT_ADDR_NAC_POL |
1765 HDMI_PHY_I2CM_CTLINT_ADDR_ARBITRATION_POL,
1766 HDMI_PHY_I2CM_CTLINT_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001767}
1768
Andy Yanb21f4b62014-12-05 14:26:31 +08001769static void initialize_hdmi_ih_mutes(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001770{
1771 u8 ih_mute;
1772
1773 /*
1774 * Boot up defaults are:
1775 * HDMI_IH_MUTE = 0x03 (disabled)
1776 * HDMI_IH_MUTE_* = 0x00 (enabled)
1777 *
1778 * Disable top level interrupt bits in HDMI block
1779 */
1780 ih_mute = hdmi_readb(hdmi, HDMI_IH_MUTE) |
1781 HDMI_IH_MUTE_MUTE_WAKEUP_INTERRUPT |
1782 HDMI_IH_MUTE_MUTE_ALL_INTERRUPT;
1783
1784 hdmi_writeb(hdmi, ih_mute, HDMI_IH_MUTE);
1785
1786 /* by default mask all interrupts */
1787 hdmi_writeb(hdmi, 0xff, HDMI_VP_MASK);
1788 hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK0);
1789 hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK1);
1790 hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK2);
1791 hdmi_writeb(hdmi, 0xff, HDMI_PHY_MASK0);
1792 hdmi_writeb(hdmi, 0xff, HDMI_PHY_I2CM_INT_ADDR);
1793 hdmi_writeb(hdmi, 0xff, HDMI_PHY_I2CM_CTLINT_ADDR);
1794 hdmi_writeb(hdmi, 0xff, HDMI_AUD_INT);
1795 hdmi_writeb(hdmi, 0xff, HDMI_AUD_SPDIFINT);
1796 hdmi_writeb(hdmi, 0xff, HDMI_AUD_HBR_MASK);
1797 hdmi_writeb(hdmi, 0xff, HDMI_GP_MASK);
1798 hdmi_writeb(hdmi, 0xff, HDMI_A_APIINTMSK);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001799 hdmi_writeb(hdmi, 0xff, HDMI_I2CM_INT);
1800 hdmi_writeb(hdmi, 0xff, HDMI_I2CM_CTLINT);
1801
1802 /* Disable interrupts in the IH_MUTE_* registers */
1803 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT0);
1804 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT1);
1805 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT2);
1806 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_AS_STAT0);
1807 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_PHY_STAT0);
1808 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_I2CM_STAT0);
1809 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_CEC_STAT0);
1810 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_VP_STAT0);
1811 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_I2CMPHY_STAT0);
1812 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_AHBDMAAUD_STAT0);
1813
1814 /* Enable top level interrupt bits in HDMI block */
1815 ih_mute &= ~(HDMI_IH_MUTE_MUTE_WAKEUP_INTERRUPT |
1816 HDMI_IH_MUTE_MUTE_ALL_INTERRUPT);
1817 hdmi_writeb(hdmi, ih_mute, HDMI_IH_MUTE);
1818}
1819
Andy Yanb21f4b62014-12-05 14:26:31 +08001820static void dw_hdmi_poweron(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001821{
Russell King381f05a2015-06-05 15:25:08 +01001822 hdmi->bridge_is_on = true;
Andy Yanb21f4b62014-12-05 14:26:31 +08001823 dw_hdmi_setup(hdmi, &hdmi->previous_mode);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001824}
1825
Andy Yanb21f4b62014-12-05 14:26:31 +08001826static void dw_hdmi_poweroff(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001827{
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001828 if (hdmi->phy.enabled) {
1829 hdmi->phy.ops->disable(hdmi, hdmi->phy.data);
1830 hdmi->phy.enabled = false;
1831 }
1832
Russell King381f05a2015-06-05 15:25:08 +01001833 hdmi->bridge_is_on = false;
1834}
1835
1836static void dw_hdmi_update_power(struct dw_hdmi *hdmi)
1837{
1838 int force = hdmi->force;
1839
1840 if (hdmi->disabled) {
1841 force = DRM_FORCE_OFF;
1842 } else if (force == DRM_FORCE_UNSPECIFIED) {
Russell Kingaeac23b2015-06-05 13:46:22 +01001843 if (hdmi->rxsense)
Russell King381f05a2015-06-05 15:25:08 +01001844 force = DRM_FORCE_ON;
1845 else
1846 force = DRM_FORCE_OFF;
1847 }
1848
1849 if (force == DRM_FORCE_OFF) {
1850 if (hdmi->bridge_is_on)
1851 dw_hdmi_poweroff(hdmi);
1852 } else {
1853 if (!hdmi->bridge_is_on)
1854 dw_hdmi_poweron(hdmi);
1855 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001856}
1857
Russell Kingaeac23b2015-06-05 13:46:22 +01001858/*
1859 * Adjust the detection of RXSENSE according to whether we have a forced
1860 * connection mode enabled, or whether we have been disabled. There is
1861 * no point processing RXSENSE interrupts if we have a forced connection
1862 * state, or DRM has us disabled.
1863 *
1864 * We also disable rxsense interrupts when we think we're disconnected
1865 * to avoid floating TDMS signals giving false rxsense interrupts.
1866 *
1867 * Note: we still need to listen for HPD interrupts even when DRM has us
1868 * disabled so that we can detect a connect event.
1869 */
1870static void dw_hdmi_update_phy_mask(struct dw_hdmi *hdmi)
1871{
Neil Armstrong386d3292017-04-04 14:31:59 +02001872 if (hdmi->phy.ops->update_hpd)
1873 hdmi->phy.ops->update_hpd(hdmi, hdmi->phy.data,
1874 hdmi->force, hdmi->disabled,
1875 hdmi->rxsense);
Laurent Pincharta23d6262017-04-04 14:31:56 +02001876}
1877
Andy Yanb21f4b62014-12-05 14:26:31 +08001878static enum drm_connector_status
1879dw_hdmi_connector_detect(struct drm_connector *connector, bool force)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001880{
Andy Yanb21f4b62014-12-05 14:26:31 +08001881 struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
Russell Kingd94905e2013-11-03 22:23:24 +00001882 connector);
Russell King98dbead2014-04-18 10:46:45 +01001883
Russell King381f05a2015-06-05 15:25:08 +01001884 mutex_lock(&hdmi->mutex);
1885 hdmi->force = DRM_FORCE_UNSPECIFIED;
1886 dw_hdmi_update_power(hdmi);
Russell Kingaeac23b2015-06-05 13:46:22 +01001887 dw_hdmi_update_phy_mask(hdmi);
Russell King381f05a2015-06-05 15:25:08 +01001888 mutex_unlock(&hdmi->mutex);
1889
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001890 return hdmi->phy.ops->read_hpd(hdmi, hdmi->phy.data);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001891}
1892
Andy Yanb21f4b62014-12-05 14:26:31 +08001893static int dw_hdmi_connector_get_modes(struct drm_connector *connector)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001894{
Andy Yanb21f4b62014-12-05 14:26:31 +08001895 struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001896 connector);
1897 struct edid *edid;
Doug Anderson6c7e66e2015-06-04 11:04:36 -07001898 int ret = 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001899
1900 if (!hdmi->ddc)
1901 return 0;
1902
1903 edid = drm_get_edid(connector, hdmi->ddc);
1904 if (edid) {
1905 dev_dbg(hdmi->dev, "got edid: width[%d] x height[%d]\n",
1906 edid->width_cm, edid->height_cm);
1907
Russell King05b13422015-07-21 15:35:52 +01001908 hdmi->sink_is_hdmi = drm_detect_hdmi_monitor(edid);
Russell Kingf709ec02015-07-21 16:09:39 +01001909 hdmi->sink_has_audio = drm_detect_monitor_audio(edid);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001910 drm_mode_connector_update_edid_property(connector, edid);
Russell Kinge84b8d72017-07-31 15:29:41 +01001911 cec_notifier_set_phys_addr_from_edid(hdmi->cec_notifier, edid);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001912 ret = drm_add_edid_modes(connector, edid);
1913 kfree(edid);
1914 } else {
1915 dev_dbg(hdmi->dev, "failed to get edid\n");
1916 }
1917
Doug Anderson6c7e66e2015-06-04 11:04:36 -07001918 return ret;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001919}
1920
Russell King381f05a2015-06-05 15:25:08 +01001921static void dw_hdmi_connector_force(struct drm_connector *connector)
1922{
1923 struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
1924 connector);
1925
1926 mutex_lock(&hdmi->mutex);
1927 hdmi->force = connector->force;
1928 dw_hdmi_update_power(hdmi);
Russell Kingaeac23b2015-06-05 13:46:22 +01001929 dw_hdmi_update_phy_mask(hdmi);
Russell King381f05a2015-06-05 15:25:08 +01001930 mutex_unlock(&hdmi->mutex);
1931}
1932
Ville Syrjälädae91e42015-12-15 12:21:02 +01001933static const struct drm_connector_funcs dw_hdmi_connector_funcs = {
Mark Yao2c5b2cc2015-11-30 18:33:40 +08001934 .fill_modes = drm_helper_probe_single_connector_modes,
1935 .detect = dw_hdmi_connector_detect,
Marek Vasutfdd83262016-10-05 16:31:33 +02001936 .destroy = drm_connector_cleanup,
Mark Yao2c5b2cc2015-11-30 18:33:40 +08001937 .force = dw_hdmi_connector_force,
1938 .reset = drm_atomic_helper_connector_reset,
1939 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
1940 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
1941};
1942
Ville Syrjälädae91e42015-12-15 12:21:02 +01001943static const struct drm_connector_helper_funcs dw_hdmi_connector_helper_funcs = {
Andy Yanb21f4b62014-12-05 14:26:31 +08001944 .get_modes = dw_hdmi_connector_get_modes,
Boris Brezillonc2a441f2016-06-07 13:48:15 +02001945 .best_encoder = drm_atomic_helper_best_encoder,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001946};
1947
Laurent Pinchartd2ae94a2017-01-17 10:28:59 +02001948static int dw_hdmi_bridge_attach(struct drm_bridge *bridge)
1949{
1950 struct dw_hdmi *hdmi = bridge->driver_private;
1951 struct drm_encoder *encoder = bridge->encoder;
1952 struct drm_connector *connector = &hdmi->connector;
1953
1954 connector->interlace_allowed = 1;
1955 connector->polled = DRM_CONNECTOR_POLL_HPD;
1956
1957 drm_connector_helper_add(connector, &dw_hdmi_connector_helper_funcs);
1958
1959 drm_connector_init(bridge->dev, connector, &dw_hdmi_connector_funcs,
1960 DRM_MODE_CONNECTOR_HDMIA);
1961
1962 drm_mode_connector_attach_encoder(connector, encoder);
1963
1964 return 0;
1965}
1966
Jose Abreub0febde2017-05-25 15:19:19 +01001967static enum drm_mode_status
1968dw_hdmi_bridge_mode_valid(struct drm_bridge *bridge,
1969 const struct drm_display_mode *mode)
Romain Perier6ce2ca52017-04-07 14:17:43 +02001970{
1971 struct dw_hdmi *hdmi = bridge->driver_private;
1972 struct drm_connector *connector = &hdmi->connector;
Jose Abreub0febde2017-05-25 15:19:19 +01001973 enum drm_mode_status mode_status = MODE_OK;
Romain Perier6ce2ca52017-04-07 14:17:43 +02001974
Jose Abreub0febde2017-05-25 15:19:19 +01001975 /* We don't support double-clocked modes */
1976 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
1977 return MODE_BAD;
1978
1979 if (hdmi->plat_data->mode_valid)
1980 mode_status = hdmi->plat_data->mode_valid(connector, mode);
1981
1982 return mode_status;
Romain Perier6ce2ca52017-04-07 14:17:43 +02001983}
1984
Laurent Pinchartfd30b382017-01-17 10:28:58 +02001985static void dw_hdmi_bridge_mode_set(struct drm_bridge *bridge,
1986 struct drm_display_mode *orig_mode,
1987 struct drm_display_mode *mode)
1988{
1989 struct dw_hdmi *hdmi = bridge->driver_private;
1990
1991 mutex_lock(&hdmi->mutex);
1992
1993 /* Store the display mode for plugin/DKMS poweron events */
1994 memcpy(&hdmi->previous_mode, mode, sizeof(hdmi->previous_mode));
1995
1996 mutex_unlock(&hdmi->mutex);
1997}
1998
1999static void dw_hdmi_bridge_disable(struct drm_bridge *bridge)
2000{
2001 struct dw_hdmi *hdmi = bridge->driver_private;
2002
2003 mutex_lock(&hdmi->mutex);
2004 hdmi->disabled = true;
2005 dw_hdmi_update_power(hdmi);
2006 dw_hdmi_update_phy_mask(hdmi);
2007 mutex_unlock(&hdmi->mutex);
2008}
2009
2010static void dw_hdmi_bridge_enable(struct drm_bridge *bridge)
2011{
2012 struct dw_hdmi *hdmi = bridge->driver_private;
2013
2014 mutex_lock(&hdmi->mutex);
2015 hdmi->disabled = false;
2016 dw_hdmi_update_power(hdmi);
2017 dw_hdmi_update_phy_mask(hdmi);
2018 mutex_unlock(&hdmi->mutex);
2019}
2020
Ville Syrjälädae91e42015-12-15 12:21:02 +01002021static const struct drm_bridge_funcs dw_hdmi_bridge_funcs = {
Laurent Pinchartd2ae94a2017-01-17 10:28:59 +02002022 .attach = dw_hdmi_bridge_attach,
Andy Yanb21f4b62014-12-05 14:26:31 +08002023 .enable = dw_hdmi_bridge_enable,
2024 .disable = dw_hdmi_bridge_disable,
Andy Yanb21f4b62014-12-05 14:26:31 +08002025 .mode_set = dw_hdmi_bridge_mode_set,
Jose Abreub0febde2017-05-25 15:19:19 +01002026 .mode_valid = dw_hdmi_bridge_mode_valid,
Andy Yan3d1b35a2014-12-05 14:25:05 +08002027};
2028
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002029static irqreturn_t dw_hdmi_i2c_irq(struct dw_hdmi *hdmi)
2030{
2031 struct dw_hdmi_i2c *i2c = hdmi->i2c;
2032 unsigned int stat;
2033
2034 stat = hdmi_readb(hdmi, HDMI_IH_I2CM_STAT0);
2035 if (!stat)
2036 return IRQ_NONE;
2037
2038 hdmi_writeb(hdmi, stat, HDMI_IH_I2CM_STAT0);
2039
2040 i2c->stat = stat;
2041
2042 complete(&i2c->cmp);
2043
2044 return IRQ_HANDLED;
2045}
2046
Andy Yanb21f4b62014-12-05 14:26:31 +08002047static irqreturn_t dw_hdmi_hardirq(int irq, void *dev_id)
Russell Kingd94905e2013-11-03 22:23:24 +00002048{
Andy Yanb21f4b62014-12-05 14:26:31 +08002049 struct dw_hdmi *hdmi = dev_id;
Russell Kingd94905e2013-11-03 22:23:24 +00002050 u8 intr_stat;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002051 irqreturn_t ret = IRQ_NONE;
2052
2053 if (hdmi->i2c)
2054 ret = dw_hdmi_i2c_irq(hdmi);
Russell Kingd94905e2013-11-03 22:23:24 +00002055
2056 intr_stat = hdmi_readb(hdmi, HDMI_IH_PHY_STAT0);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002057 if (intr_stat) {
Russell Kingd94905e2013-11-03 22:23:24 +00002058 hdmi_writeb(hdmi, ~0, HDMI_IH_MUTE_PHY_STAT0);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002059 return IRQ_WAKE_THREAD;
2060 }
Russell Kingd94905e2013-11-03 22:23:24 +00002061
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002062 return ret;
Russell Kingd94905e2013-11-03 22:23:24 +00002063}
2064
Neil Armstrong386d3292017-04-04 14:31:59 +02002065void __dw_hdmi_setup_rx_sense(struct dw_hdmi *hdmi, bool hpd, bool rx_sense)
2066{
2067 mutex_lock(&hdmi->mutex);
2068
2069 if (!hdmi->force) {
2070 /*
2071 * If the RX sense status indicates we're disconnected,
2072 * clear the software rxsense status.
2073 */
2074 if (!rx_sense)
2075 hdmi->rxsense = false;
2076
2077 /*
2078 * Only set the software rxsense status when both
2079 * rxsense and hpd indicates we're connected.
2080 * This avoids what seems to be bad behaviour in
2081 * at least iMX6S versions of the phy.
2082 */
2083 if (hpd)
2084 hdmi->rxsense = true;
2085
2086 dw_hdmi_update_power(hdmi);
2087 dw_hdmi_update_phy_mask(hdmi);
2088 }
2089 mutex_unlock(&hdmi->mutex);
2090}
2091
2092void dw_hdmi_setup_rx_sense(struct device *dev, bool hpd, bool rx_sense)
2093{
2094 struct dw_hdmi *hdmi = dev_get_drvdata(dev);
2095
2096 __dw_hdmi_setup_rx_sense(hdmi, hpd, rx_sense);
2097}
2098EXPORT_SYMBOL_GPL(dw_hdmi_setup_rx_sense);
2099
Andy Yanb21f4b62014-12-05 14:26:31 +08002100static irqreturn_t dw_hdmi_irq(int irq, void *dev_id)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002101{
Andy Yanb21f4b62014-12-05 14:26:31 +08002102 struct dw_hdmi *hdmi = dev_id;
Russell Kingaeac23b2015-06-05 13:46:22 +01002103 u8 intr_stat, phy_int_pol, phy_pol_mask, phy_stat;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002104
2105 intr_stat = hdmi_readb(hdmi, HDMI_IH_PHY_STAT0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002106 phy_int_pol = hdmi_readb(hdmi, HDMI_PHY_POL0);
Russell Kingaeac23b2015-06-05 13:46:22 +01002107 phy_stat = hdmi_readb(hdmi, HDMI_PHY_STAT0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002108
Russell Kingaeac23b2015-06-05 13:46:22 +01002109 phy_pol_mask = 0;
2110 if (intr_stat & HDMI_IH_PHY_STAT0_HPD)
2111 phy_pol_mask |= HDMI_PHY_HPD;
2112 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE0)
2113 phy_pol_mask |= HDMI_PHY_RX_SENSE0;
2114 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE1)
2115 phy_pol_mask |= HDMI_PHY_RX_SENSE1;
2116 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE2)
2117 phy_pol_mask |= HDMI_PHY_RX_SENSE2;
2118 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE3)
2119 phy_pol_mask |= HDMI_PHY_RX_SENSE3;
2120
2121 if (phy_pol_mask)
2122 hdmi_modb(hdmi, ~phy_int_pol, phy_pol_mask, HDMI_PHY_POL0);
2123
2124 /*
2125 * RX sense tells us whether the TDMS transmitters are detecting
2126 * load - in other words, there's something listening on the
2127 * other end of the link. Use this to decide whether we should
2128 * power on the phy as HPD may be toggled by the sink to merely
2129 * ask the source to re-read the EDID.
2130 */
2131 if (intr_stat &
Russell Kinge84b8d72017-07-31 15:29:41 +01002132 (HDMI_IH_PHY_STAT0_RX_SENSE | HDMI_IH_PHY_STAT0_HPD)) {
Neil Armstrong386d3292017-04-04 14:31:59 +02002133 __dw_hdmi_setup_rx_sense(hdmi,
2134 phy_stat & HDMI_PHY_HPD,
2135 phy_stat & HDMI_PHY_RX_SENSE);
Russell Kingaeac23b2015-06-05 13:46:22 +01002136
Russell Kinge84b8d72017-07-31 15:29:41 +01002137 if ((phy_stat & (HDMI_PHY_RX_SENSE | HDMI_PHY_HPD)) == 0)
2138 cec_notifier_set_phys_addr(hdmi->cec_notifier,
2139 CEC_PHYS_ADDR_INVALID);
2140 }
2141
Russell Kingaeac23b2015-06-05 13:46:22 +01002142 if (intr_stat & HDMI_IH_PHY_STAT0_HPD) {
2143 dev_dbg(hdmi->dev, "EVENT=%s\n",
2144 phy_int_pol & HDMI_PHY_HPD ? "plugin" : "plugout");
Laurent Pinchartba5d7e62017-01-17 10:28:56 +02002145 if (hdmi->bridge.dev)
2146 drm_helper_hpd_irq_event(hdmi->bridge.dev);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002147 }
2148
2149 hdmi_writeb(hdmi, intr_stat, HDMI_IH_PHY_STAT0);
Russell Kingaeac23b2015-06-05 13:46:22 +01002150 hdmi_writeb(hdmi, ~(HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE),
2151 HDMI_IH_MUTE_PHY_STAT0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002152
2153 return IRQ_HANDLED;
2154}
2155
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002156static const struct dw_hdmi_phy_data dw_hdmi_phys[] = {
2157 {
2158 .type = DW_HDMI_PHY_DWC_HDMI_TX_PHY,
2159 .name = "DWC HDMI TX PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002160 .gen = 1,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002161 }, {
2162 .type = DW_HDMI_PHY_DWC_MHL_PHY_HEAC,
2163 .name = "DWC MHL PHY + HEAC PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002164 .gen = 2,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002165 .has_svsret = true,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002166 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002167 }, {
2168 .type = DW_HDMI_PHY_DWC_MHL_PHY,
2169 .name = "DWC MHL PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002170 .gen = 2,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002171 .has_svsret = true,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002172 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002173 }, {
2174 .type = DW_HDMI_PHY_DWC_HDMI_3D_TX_PHY_HEAC,
2175 .name = "DWC HDMI 3D TX PHY + HEAC PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002176 .gen = 2,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002177 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002178 }, {
2179 .type = DW_HDMI_PHY_DWC_HDMI_3D_TX_PHY,
2180 .name = "DWC HDMI 3D TX PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002181 .gen = 2,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002182 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002183 }, {
2184 .type = DW_HDMI_PHY_DWC_HDMI20_TX_PHY,
2185 .name = "DWC HDMI 2.0 TX PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002186 .gen = 2,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002187 .has_svsret = true,
Jose Abreuc93f6092017-06-23 10:36:44 +01002188 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002189 }, {
2190 .type = DW_HDMI_PHY_VENDOR_PHY,
2191 .name = "Vendor PHY",
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002192 }
2193};
2194
2195static int dw_hdmi_detect_phy(struct dw_hdmi *hdmi)
2196{
2197 unsigned int i;
2198 u8 phy_type;
2199
2200 phy_type = hdmi_readb(hdmi, HDMI_CONFIG2_ID);
2201
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002202 if (phy_type == DW_HDMI_PHY_VENDOR_PHY) {
2203 /* Vendor PHYs require support from the glue layer. */
2204 if (!hdmi->plat_data->phy_ops || !hdmi->plat_data->phy_name) {
2205 dev_err(hdmi->dev,
2206 "Vendor HDMI PHY not supported by glue layer\n");
2207 return -ENODEV;
2208 }
2209
2210 hdmi->phy.ops = hdmi->plat_data->phy_ops;
2211 hdmi->phy.data = hdmi->plat_data->phy_data;
2212 hdmi->phy.name = hdmi->plat_data->phy_name;
2213 return 0;
2214 }
2215
2216 /* Synopsys PHYs are handled internally. */
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002217 for (i = 0; i < ARRAY_SIZE(dw_hdmi_phys); ++i) {
2218 if (dw_hdmi_phys[i].type == phy_type) {
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002219 hdmi->phy.ops = &dw_hdmi_synopsys_phy_ops;
2220 hdmi->phy.name = dw_hdmi_phys[i].name;
2221 hdmi->phy.data = (void *)&dw_hdmi_phys[i];
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002222
2223 if (!dw_hdmi_phys[i].configure &&
2224 !hdmi->plat_data->configure_phy) {
2225 dev_err(hdmi->dev, "%s requires platform support\n",
2226 hdmi->phy.name);
2227 return -ENODEV;
2228 }
2229
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002230 return 0;
2231 }
2232 }
2233
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002234 dev_err(hdmi->dev, "Unsupported HDMI PHY type (%02x)\n", phy_type);
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002235 return -ENODEV;
2236}
2237
Russell Kinga616e632017-08-02 20:41:07 +02002238static void dw_hdmi_cec_enable(struct dw_hdmi *hdmi)
2239{
2240 mutex_lock(&hdmi->mutex);
2241 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_CECCLK_DISABLE;
2242 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
2243 mutex_unlock(&hdmi->mutex);
2244}
2245
2246static void dw_hdmi_cec_disable(struct dw_hdmi *hdmi)
2247{
2248 mutex_lock(&hdmi->mutex);
2249 hdmi->mc_clkdis |= HDMI_MC_CLKDIS_CECCLK_DISABLE;
2250 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
2251 mutex_unlock(&hdmi->mutex);
2252}
2253
2254static const struct dw_hdmi_cec_ops dw_hdmi_cec_ops = {
2255 .write = hdmi_writeb,
2256 .read = hdmi_readb,
2257 .enable = dw_hdmi_cec_enable,
2258 .disable = dw_hdmi_cec_disable,
2259};
2260
Neil Armstrong80e2f972017-03-03 19:20:06 +02002261static const struct regmap_config hdmi_regmap_8bit_config = {
2262 .reg_bits = 32,
2263 .val_bits = 8,
2264 .reg_stride = 1,
2265 .max_register = HDMI_I2CM_FS_SCL_LCNT_0_ADDR,
2266};
2267
2268static const struct regmap_config hdmi_regmap_32bit_config = {
2269 .reg_bits = 32,
2270 .val_bits = 32,
2271 .reg_stride = 4,
2272 .max_register = HDMI_I2CM_FS_SCL_LCNT_0_ADDR << 2,
2273};
2274
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002275static struct dw_hdmi *
2276__dw_hdmi_probe(struct platform_device *pdev,
2277 const struct dw_hdmi_plat_data *plat_data)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002278{
Laurent Pinchartc6081192017-01-17 10:28:57 +02002279 struct device *dev = &pdev->dev;
Russell King17b50012013-11-03 11:23:34 +00002280 struct device_node *np = dev->of_node;
Russell King7ed6c662013-11-07 16:01:45 +00002281 struct platform_device_info pdevinfo;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002282 struct device_node *ddc_node;
Russell Kinga616e632017-08-02 20:41:07 +02002283 struct dw_hdmi_cec_data cec;
Andy Yanb21f4b62014-12-05 14:26:31 +08002284 struct dw_hdmi *hdmi;
Neil Armstrong80e2f972017-03-03 19:20:06 +02002285 struct resource *iores = NULL;
Laurent Pinchartc6081192017-01-17 10:28:57 +02002286 int irq;
Andy Yan3d1b35a2014-12-05 14:25:05 +08002287 int ret;
Andy Yan0cd9d142014-12-05 14:28:24 +08002288 u32 val = 1;
Laurent Pinchart0527e122017-01-17 10:29:03 +02002289 u8 prod_id0;
2290 u8 prod_id1;
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002291 u8 config0;
Laurent Pinchart0c674942017-01-17 10:29:04 +02002292 u8 config3;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002293
Russell King17b50012013-11-03 11:23:34 +00002294 hdmi = devm_kzalloc(dev, sizeof(*hdmi), GFP_KERNEL);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002295 if (!hdmi)
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002296 return ERR_PTR(-ENOMEM);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002297
Andy Yan3d1b35a2014-12-05 14:25:05 +08002298 hdmi->plat_data = plat_data;
Russell King17b50012013-11-03 11:23:34 +00002299 hdmi->dev = dev;
Russell King40678382013-11-07 15:35:06 +00002300 hdmi->sample_rate = 48000;
Russell Kingb872a8e2015-06-05 12:22:46 +01002301 hdmi->disabled = true;
Russell Kingaeac23b2015-06-05 13:46:22 +01002302 hdmi->rxsense = true;
2303 hdmi->phy_mask = (u8)~(HDMI_PHY_HPD | HDMI_PHY_RX_SENSE);
Russell King7cc4ab22017-07-31 15:29:46 +01002304 hdmi->mc_clkdis = 0x7f;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002305
Russell Kingb872a8e2015-06-05 12:22:46 +01002306 mutex_init(&hdmi->mutex);
Russell King6bcf4952015-02-02 11:01:08 +00002307 mutex_init(&hdmi->audio_mutex);
Russell Kingb90120a2015-03-27 12:59:58 +00002308 spin_lock_init(&hdmi->audio_lock);
Russell King6bcf4952015-02-02 11:01:08 +00002309
Philipp Zabelb5d45902014-03-05 10:20:56 +01002310 ddc_node = of_parse_phandle(np, "ddc-i2c-bus", 0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002311 if (ddc_node) {
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002312 hdmi->ddc = of_get_i2c_adapter_by_node(ddc_node);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002313 of_node_put(ddc_node);
Andy Yanc2c38482014-12-05 14:24:28 +08002314 if (!hdmi->ddc) {
2315 dev_dbg(hdmi->dev, "failed to read ddc node\n");
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002316 return ERR_PTR(-EPROBE_DEFER);
Andy Yanc2c38482014-12-05 14:24:28 +08002317 }
2318
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002319 } else {
2320 dev_dbg(hdmi->dev, "no ddc property found\n");
2321 }
2322
Neil Armstrong80e2f972017-03-03 19:20:06 +02002323 if (!plat_data->regm) {
2324 const struct regmap_config *reg_config;
2325
2326 of_property_read_u32(np, "reg-io-width", &val);
2327 switch (val) {
2328 case 4:
2329 reg_config = &hdmi_regmap_32bit_config;
2330 hdmi->reg_shift = 2;
2331 break;
2332 case 1:
2333 reg_config = &hdmi_regmap_8bit_config;
2334 break;
2335 default:
2336 dev_err(dev, "reg-io-width must be 1 or 4\n");
2337 return ERR_PTR(-EINVAL);
2338 }
2339
2340 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2341 hdmi->regs = devm_ioremap_resource(dev, iores);
2342 if (IS_ERR(hdmi->regs)) {
2343 ret = PTR_ERR(hdmi->regs);
2344 goto err_res;
2345 }
2346
2347 hdmi->regm = devm_regmap_init_mmio(dev, hdmi->regs, reg_config);
2348 if (IS_ERR(hdmi->regm)) {
2349 dev_err(dev, "Failed to configure regmap\n");
2350 ret = PTR_ERR(hdmi->regm);
2351 goto err_res;
2352 }
2353 } else {
2354 hdmi->regm = plat_data->regm;
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002355 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002356
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002357 hdmi->isfr_clk = devm_clk_get(hdmi->dev, "isfr");
2358 if (IS_ERR(hdmi->isfr_clk)) {
2359 ret = PTR_ERR(hdmi->isfr_clk);
Andy Yanb5878332014-12-05 14:23:52 +08002360 dev_err(hdmi->dev, "Unable to get HDMI isfr clk: %d\n", ret);
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002361 goto err_res;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002362 }
2363
2364 ret = clk_prepare_enable(hdmi->isfr_clk);
2365 if (ret) {
Andy Yanb5878332014-12-05 14:23:52 +08002366 dev_err(hdmi->dev, "Cannot enable HDMI isfr clock: %d\n", ret);
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002367 goto err_res;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002368 }
2369
2370 hdmi->iahb_clk = devm_clk_get(hdmi->dev, "iahb");
2371 if (IS_ERR(hdmi->iahb_clk)) {
2372 ret = PTR_ERR(hdmi->iahb_clk);
Andy Yanb5878332014-12-05 14:23:52 +08002373 dev_err(hdmi->dev, "Unable to get HDMI iahb clk: %d\n", ret);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002374 goto err_isfr;
2375 }
2376
2377 ret = clk_prepare_enable(hdmi->iahb_clk);
2378 if (ret) {
Andy Yanb5878332014-12-05 14:23:52 +08002379 dev_err(hdmi->dev, "Cannot enable HDMI iahb clock: %d\n", ret);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002380 goto err_isfr;
2381 }
2382
2383 /* Product and revision IDs */
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002384 hdmi->version = (hdmi_readb(hdmi, HDMI_DESIGN_ID) << 8)
2385 | (hdmi_readb(hdmi, HDMI_REVISION_ID) << 0);
Laurent Pinchart0527e122017-01-17 10:29:03 +02002386 prod_id0 = hdmi_readb(hdmi, HDMI_PRODUCT_ID0);
2387 prod_id1 = hdmi_readb(hdmi, HDMI_PRODUCT_ID1);
2388
2389 if (prod_id0 != HDMI_PRODUCT_ID0_HDMI_TX ||
2390 (prod_id1 & ~HDMI_PRODUCT_ID1_HDCP) != HDMI_PRODUCT_ID1_HDMI_TX) {
2391 dev_err(dev, "Unsupported HDMI controller (%04x:%02x:%02x)\n",
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002392 hdmi->version, prod_id0, prod_id1);
Laurent Pinchart0527e122017-01-17 10:29:03 +02002393 ret = -ENODEV;
2394 goto err_iahb;
2395 }
2396
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002397 ret = dw_hdmi_detect_phy(hdmi);
2398 if (ret < 0)
2399 goto err_iahb;
2400
2401 dev_info(dev, "Detected HDMI TX controller v%x.%03x %s HDCP (%s)\n",
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002402 hdmi->version >> 12, hdmi->version & 0xfff,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002403 prod_id1 & HDMI_PRODUCT_ID1_HDCP ? "with" : "without",
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002404 hdmi->phy.name);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002405
2406 initialize_hdmi_ih_mutes(hdmi);
2407
Laurent Pinchartc6081192017-01-17 10:28:57 +02002408 irq = platform_get_irq(pdev, 0);
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002409 if (irq < 0) {
2410 ret = irq;
Laurent Pinchartc6081192017-01-17 10:28:57 +02002411 goto err_iahb;
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002412 }
Laurent Pinchartc6081192017-01-17 10:28:57 +02002413
Philipp Zabel639a2022015-01-07 13:43:50 +01002414 ret = devm_request_threaded_irq(dev, irq, dw_hdmi_hardirq,
2415 dw_hdmi_irq, IRQF_SHARED,
2416 dev_name(dev), hdmi);
2417 if (ret)
Fabio Estevamb33ef612015-01-27 10:54:12 -02002418 goto err_iahb;
Philipp Zabel639a2022015-01-07 13:43:50 +01002419
Russell Kinge84b8d72017-07-31 15:29:41 +01002420 hdmi->cec_notifier = cec_notifier_get(dev);
2421 if (!hdmi->cec_notifier) {
2422 ret = -ENOMEM;
2423 goto err_iahb;
2424 }
2425
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002426 /*
2427 * To prevent overflows in HDMI_IH_FC_STAT2, set the clk regenerator
2428 * N and cts values before enabling phy
2429 */
2430 hdmi_init_clk_regenerator(hdmi);
2431
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002432 /* If DDC bus is not specified, try to register HDMI I2C bus */
2433 if (!hdmi->ddc) {
2434 hdmi->ddc = dw_hdmi_i2c_adapter(hdmi);
2435 if (IS_ERR(hdmi->ddc))
2436 hdmi->ddc = NULL;
2437 }
2438
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002439 hdmi->bridge.driver_private = hdmi;
2440 hdmi->bridge.funcs = &dw_hdmi_bridge_funcs;
Arnd Bergmannd5ad7842017-01-23 13:20:38 +01002441#ifdef CONFIG_OF
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002442 hdmi->bridge.of_node = pdev->dev.of_node;
Arnd Bergmannd5ad7842017-01-23 13:20:38 +01002443#endif
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002444
Laurent Pincharta23d6262017-04-04 14:31:56 +02002445 dw_hdmi_setup_i2c(hdmi);
Neil Armstrong386d3292017-04-04 14:31:59 +02002446 if (hdmi->phy.ops->setup_hpd)
2447 hdmi->phy.ops->setup_hpd(hdmi, hdmi->phy.data);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002448
Russell King7ed6c662013-11-07 16:01:45 +00002449 memset(&pdevinfo, 0, sizeof(pdevinfo));
2450 pdevinfo.parent = dev;
2451 pdevinfo.id = PLATFORM_DEVID_AUTO;
2452
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002453 config0 = hdmi_readb(hdmi, HDMI_CONFIG0_ID);
Laurent Pinchart0c674942017-01-17 10:29:04 +02002454 config3 = hdmi_readb(hdmi, HDMI_CONFIG3_ID);
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002455
Neil Armstrong80e2f972017-03-03 19:20:06 +02002456 if (iores && config3 & HDMI_CONFIG3_AHBAUDDMA) {
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002457 struct dw_hdmi_audio_data audio;
2458
Russell King7ed6c662013-11-07 16:01:45 +00002459 audio.phys = iores->start;
2460 audio.base = hdmi->regs;
2461 audio.irq = irq;
2462 audio.hdmi = hdmi;
Russell Kingf5ce4052013-11-07 16:06:01 +00002463 audio.eld = hdmi->connector.eld;
Romain Periera7d555d2017-04-14 10:31:12 +02002464 hdmi->enable_audio = dw_hdmi_ahb_audio_enable;
2465 hdmi->disable_audio = dw_hdmi_ahb_audio_disable;
Russell King7ed6c662013-11-07 16:01:45 +00002466
2467 pdevinfo.name = "dw-hdmi-ahb-audio";
2468 pdevinfo.data = &audio;
2469 pdevinfo.size_data = sizeof(audio);
2470 pdevinfo.dma_mask = DMA_BIT_MASK(32);
2471 hdmi->audio = platform_device_register_full(&pdevinfo);
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002472 } else if (config0 & HDMI_CONFIG0_I2S) {
2473 struct dw_hdmi_i2s_audio_data audio;
2474
2475 audio.hdmi = hdmi;
2476 audio.write = hdmi_writeb;
2477 audio.read = hdmi_readb;
Romain Periera7d555d2017-04-14 10:31:12 +02002478 hdmi->enable_audio = dw_hdmi_i2s_audio_enable;
Romain Perier57fbc052017-04-20 14:34:34 +05302479 hdmi->disable_audio = dw_hdmi_i2s_audio_disable;
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002480
2481 pdevinfo.name = "dw-hdmi-i2s-audio";
2482 pdevinfo.data = &audio;
2483 pdevinfo.size_data = sizeof(audio);
2484 pdevinfo.dma_mask = DMA_BIT_MASK(32);
2485 hdmi->audio = platform_device_register_full(&pdevinfo);
Russell King7ed6c662013-11-07 16:01:45 +00002486 }
2487
Russell Kinga616e632017-08-02 20:41:07 +02002488 if (config0 & HDMI_CONFIG0_CEC) {
2489 cec.hdmi = hdmi;
2490 cec.ops = &dw_hdmi_cec_ops;
2491 cec.irq = irq;
2492
2493 pdevinfo.name = "dw-hdmi-cec";
2494 pdevinfo.data = &cec;
2495 pdevinfo.size_data = sizeof(cec);
2496 pdevinfo.dma_mask = 0;
2497
2498 hdmi->cec = platform_device_register_full(&pdevinfo);
2499 }
2500
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002501 /* Reset HDMI DDC I2C master controller and mute I2CM interrupts */
2502 if (hdmi->i2c)
2503 dw_hdmi_i2c_init(hdmi);
2504
Laurent Pinchartc6081192017-01-17 10:28:57 +02002505 platform_set_drvdata(pdev, hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002506
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002507 return hdmi;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002508
2509err_iahb:
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002510 if (hdmi->i2c) {
2511 i2c_del_adapter(&hdmi->i2c->adap);
2512 hdmi->ddc = NULL;
2513 }
2514
Russell Kinge84b8d72017-07-31 15:29:41 +01002515 if (hdmi->cec_notifier)
2516 cec_notifier_put(hdmi->cec_notifier);
2517
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002518 clk_disable_unprepare(hdmi->iahb_clk);
2519err_isfr:
2520 clk_disable_unprepare(hdmi->isfr_clk);
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002521err_res:
2522 i2c_put_adapter(hdmi->ddc);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002523
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002524 return ERR_PTR(ret);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002525}
2526
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002527static void __dw_hdmi_remove(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002528{
Russell King7ed6c662013-11-07 16:01:45 +00002529 if (hdmi->audio && !IS_ERR(hdmi->audio))
2530 platform_device_unregister(hdmi->audio);
Russell Kinga616e632017-08-02 20:41:07 +02002531 if (!IS_ERR(hdmi->cec))
2532 platform_device_unregister(hdmi->cec);
Russell King7ed6c662013-11-07 16:01:45 +00002533
Russell Kingd94905e2013-11-03 22:23:24 +00002534 /* Disable all interrupts */
2535 hdmi_writeb(hdmi, ~0, HDMI_IH_MUTE_PHY_STAT0);
2536
Hans Verkuile383bf82017-08-07 09:20:35 +02002537 if (hdmi->cec_notifier)
2538 cec_notifier_put(hdmi->cec_notifier);
2539
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002540 clk_disable_unprepare(hdmi->iahb_clk);
2541 clk_disable_unprepare(hdmi->isfr_clk);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002542
2543 if (hdmi->i2c)
2544 i2c_del_adapter(&hdmi->i2c->adap);
2545 else
2546 i2c_put_adapter(hdmi->ddc);
Russell King17b50012013-11-03 11:23:34 +00002547}
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002548
2549/* -----------------------------------------------------------------------------
2550 * Probe/remove API, used from platforms based on the DRM bridge API.
2551 */
2552int dw_hdmi_probe(struct platform_device *pdev,
2553 const struct dw_hdmi_plat_data *plat_data)
2554{
2555 struct dw_hdmi *hdmi;
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002556
2557 hdmi = __dw_hdmi_probe(pdev, plat_data);
2558 if (IS_ERR(hdmi))
2559 return PTR_ERR(hdmi);
2560
Inki Daeb6786822017-07-03 17:42:25 +09002561 drm_bridge_add(&hdmi->bridge);
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002562
2563 return 0;
2564}
2565EXPORT_SYMBOL_GPL(dw_hdmi_probe);
2566
2567void dw_hdmi_remove(struct platform_device *pdev)
2568{
2569 struct dw_hdmi *hdmi = platform_get_drvdata(pdev);
2570
2571 drm_bridge_remove(&hdmi->bridge);
2572
2573 __dw_hdmi_remove(hdmi);
2574}
2575EXPORT_SYMBOL_GPL(dw_hdmi_remove);
2576
2577/* -----------------------------------------------------------------------------
2578 * Bind/unbind API, used from platforms based on the component framework.
2579 */
2580int dw_hdmi_bind(struct platform_device *pdev, struct drm_encoder *encoder,
2581 const struct dw_hdmi_plat_data *plat_data)
2582{
2583 struct dw_hdmi *hdmi;
2584 int ret;
2585
2586 hdmi = __dw_hdmi_probe(pdev, plat_data);
2587 if (IS_ERR(hdmi))
2588 return PTR_ERR(hdmi);
2589
2590 ret = drm_bridge_attach(encoder, &hdmi->bridge, NULL);
2591 if (ret) {
2592 dw_hdmi_remove(pdev);
2593 DRM_ERROR("Failed to initialize bridge with drm\n");
2594 return ret;
2595 }
2596
2597 return 0;
2598}
2599EXPORT_SYMBOL_GPL(dw_hdmi_bind);
2600
2601void dw_hdmi_unbind(struct device *dev)
2602{
2603 struct dw_hdmi *hdmi = dev_get_drvdata(dev);
2604
2605 __dw_hdmi_remove(hdmi);
2606}
Andy Yanb21f4b62014-12-05 14:26:31 +08002607EXPORT_SYMBOL_GPL(dw_hdmi_unbind);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002608
2609MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
Andy Yan3d1b35a2014-12-05 14:25:05 +08002610MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com>");
2611MODULE_AUTHOR("Yakir Yang <ykk@rock-chips.com>");
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002612MODULE_AUTHOR("Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com>");
Andy Yanb21f4b62014-12-05 14:26:31 +08002613MODULE_DESCRIPTION("DW HDMI transmitter driver");
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002614MODULE_LICENSE("GPL");
Andy Yanb21f4b62014-12-05 14:26:31 +08002615MODULE_ALIAS("platform:dw-hdmi");