blob: f9802399cc0de27dae4131a20ceab434b370114f [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;
Pierre-Hugues Hussonebe32c32017-11-25 21:18:44 +0100141 struct clk *cec_clk;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300142 struct dw_hdmi_i2c *i2c;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200143
144 struct hdmi_data_info hdmi_data;
Andy Yanb21f4b62014-12-05 14:26:31 +0800145 const struct dw_hdmi_plat_data *plat_data;
146
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200147 int vic;
148
149 u8 edid[HDMI_EDID_LEN];
150 bool cable_plugin;
151
Laurent Pinchartf1585f62017-03-06 01:36:15 +0200152 struct {
153 const struct dw_hdmi_phy_ops *ops;
154 const char *name;
155 void *data;
156 bool enabled;
157 } phy;
Laurent Pinchartfaba6c32017-01-17 10:29:06 +0200158
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200159 struct drm_display_mode previous_mode;
160
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200161 struct i2c_adapter *ddc;
162 void __iomem *regs;
Russell King05b13422015-07-21 15:35:52 +0100163 bool sink_is_hdmi;
Russell Kingf709ec02015-07-21 16:09:39 +0100164 bool sink_has_audio;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200165
Russell Kingb872a8e2015-06-05 12:22:46 +0100166 struct mutex mutex; /* for state below and previous_mode */
Russell King381f05a2015-06-05 15:25:08 +0100167 enum drm_connector_force force; /* mutex-protected force state */
Russell Kingb872a8e2015-06-05 12:22:46 +0100168 bool disabled; /* DRM has disabled our bridge */
Russell King381f05a2015-06-05 15:25:08 +0100169 bool bridge_is_on; /* indicates the bridge is on */
Russell Kingaeac23b2015-06-05 13:46:22 +0100170 bool rxsense; /* rxsense state */
171 u8 phy_mask; /* desired phy int mask settings */
Russell King7cc4ab22017-07-31 15:29:46 +0100172 u8 mc_clkdis; /* clock disable register */
Russell Kingb872a8e2015-06-05 12:22:46 +0100173
Russell Kingb90120a2015-03-27 12:59:58 +0000174 spinlock_t audio_lock;
Russell King6bcf4952015-02-02 11:01:08 +0000175 struct mutex audio_mutex;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200176 unsigned int sample_rate;
Russell Kingb90120a2015-03-27 12:59:58 +0000177 unsigned int audio_cts;
178 unsigned int audio_n;
179 bool audio_enable;
Andy Yan0cd9d142014-12-05 14:28:24 +0800180
Neil Armstrong80e2f972017-03-03 19:20:06 +0200181 unsigned int reg_shift;
182 struct regmap *regm;
Romain Periera7d555d2017-04-14 10:31:12 +0200183 void (*enable_audio)(struct dw_hdmi *hdmi);
184 void (*disable_audio)(struct dw_hdmi *hdmi);
Russell Kinge84b8d72017-07-31 15:29:41 +0100185
186 struct cec_notifier *cec_notifier;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200187};
188
Russell Kingaeac23b2015-06-05 13:46:22 +0100189#define HDMI_IH_PHY_STAT0_RX_SENSE \
190 (HDMI_IH_PHY_STAT0_RX_SENSE0 | HDMI_IH_PHY_STAT0_RX_SENSE1 | \
191 HDMI_IH_PHY_STAT0_RX_SENSE2 | HDMI_IH_PHY_STAT0_RX_SENSE3)
192
193#define HDMI_PHY_RX_SENSE \
194 (HDMI_PHY_RX_SENSE0 | HDMI_PHY_RX_SENSE1 | \
195 HDMI_PHY_RX_SENSE2 | HDMI_PHY_RX_SENSE3)
196
Andy Yan0cd9d142014-12-05 14:28:24 +0800197static inline void hdmi_writeb(struct dw_hdmi *hdmi, u8 val, int offset)
198{
Neil Armstrong80e2f972017-03-03 19:20:06 +0200199 regmap_write(hdmi->regm, offset << hdmi->reg_shift, val);
Andy Yan0cd9d142014-12-05 14:28:24 +0800200}
201
202static inline u8 hdmi_readb(struct dw_hdmi *hdmi, int offset)
203{
Neil Armstrong80e2f972017-03-03 19:20:06 +0200204 unsigned int val = 0;
205
206 regmap_read(hdmi->regm, offset << hdmi->reg_shift, &val);
207
208 return val;
Andy Yan0cd9d142014-12-05 14:28:24 +0800209}
210
Andy Yanb21f4b62014-12-05 14:26:31 +0800211static void hdmi_modb(struct dw_hdmi *hdmi, u8 data, u8 mask, unsigned reg)
Russell King812bc612013-11-04 12:42:02 +0000212{
Neil Armstrong80e2f972017-03-03 19:20:06 +0200213 regmap_update_bits(hdmi->regm, reg << hdmi->reg_shift, mask, data);
Russell King812bc612013-11-04 12:42:02 +0000214}
215
Andy Yanb21f4b62014-12-05 14:26:31 +0800216static void hdmi_mask_writeb(struct dw_hdmi *hdmi, u8 data, unsigned int reg,
Andy Yanb5878332014-12-05 14:23:52 +0800217 u8 shift, u8 mask)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200218{
Russell King812bc612013-11-04 12:42:02 +0000219 hdmi_modb(hdmi, data << shift, mask, reg);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200220}
221
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300222static void dw_hdmi_i2c_init(struct dw_hdmi *hdmi)
223{
224 /* Software reset */
225 hdmi_writeb(hdmi, 0x00, HDMI_I2CM_SOFTRSTZ);
226
227 /* Set Standard Mode speed (determined to be 100KHz on iMX6) */
228 hdmi_writeb(hdmi, 0x00, HDMI_I2CM_DIV);
229
230 /* Set done, not acknowledged and arbitration interrupt polarities */
231 hdmi_writeb(hdmi, HDMI_I2CM_INT_DONE_POL, HDMI_I2CM_INT);
232 hdmi_writeb(hdmi, HDMI_I2CM_CTLINT_NAC_POL | HDMI_I2CM_CTLINT_ARB_POL,
233 HDMI_I2CM_CTLINT);
234
235 /* Clear DONE and ERROR interrupts */
236 hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
237 HDMI_IH_I2CM_STAT0);
238
239 /* Mute DONE and ERROR interrupts */
240 hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
241 HDMI_IH_MUTE_I2CM_STAT0);
242}
243
244static int dw_hdmi_i2c_read(struct dw_hdmi *hdmi,
245 unsigned char *buf, unsigned int length)
246{
247 struct dw_hdmi_i2c *i2c = hdmi->i2c;
248 int stat;
249
250 if (!i2c->is_regaddr) {
251 dev_dbg(hdmi->dev, "set read register address to 0\n");
252 i2c->slave_reg = 0x00;
253 i2c->is_regaddr = true;
254 }
255
256 while (length--) {
257 reinit_completion(&i2c->cmp);
258
259 hdmi_writeb(hdmi, i2c->slave_reg++, HDMI_I2CM_ADDRESS);
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800260 if (i2c->is_segment)
261 hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_READ_EXT,
262 HDMI_I2CM_OPERATION);
263 else
264 hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_READ,
265 HDMI_I2CM_OPERATION);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300266
267 stat = wait_for_completion_timeout(&i2c->cmp, HZ / 10);
268 if (!stat)
269 return -EAGAIN;
270
271 /* Check for error condition on the bus */
272 if (i2c->stat & HDMI_IH_I2CM_STAT0_ERROR)
273 return -EIO;
274
275 *buf++ = hdmi_readb(hdmi, HDMI_I2CM_DATAI);
276 }
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800277 i2c->is_segment = false;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300278
279 return 0;
280}
281
282static int dw_hdmi_i2c_write(struct dw_hdmi *hdmi,
283 unsigned char *buf, unsigned int length)
284{
285 struct dw_hdmi_i2c *i2c = hdmi->i2c;
286 int stat;
287
288 if (!i2c->is_regaddr) {
289 /* Use the first write byte as register address */
290 i2c->slave_reg = buf[0];
291 length--;
292 buf++;
293 i2c->is_regaddr = true;
294 }
295
296 while (length--) {
297 reinit_completion(&i2c->cmp);
298
299 hdmi_writeb(hdmi, *buf++, HDMI_I2CM_DATAO);
300 hdmi_writeb(hdmi, i2c->slave_reg++, HDMI_I2CM_ADDRESS);
301 hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_WRITE,
302 HDMI_I2CM_OPERATION);
303
304 stat = wait_for_completion_timeout(&i2c->cmp, HZ / 10);
305 if (!stat)
306 return -EAGAIN;
307
308 /* Check for error condition on the bus */
309 if (i2c->stat & HDMI_IH_I2CM_STAT0_ERROR)
310 return -EIO;
311 }
312
313 return 0;
314}
315
316static int dw_hdmi_i2c_xfer(struct i2c_adapter *adap,
317 struct i2c_msg *msgs, int num)
318{
319 struct dw_hdmi *hdmi = i2c_get_adapdata(adap);
320 struct dw_hdmi_i2c *i2c = hdmi->i2c;
321 u8 addr = msgs[0].addr;
322 int i, ret = 0;
323
324 dev_dbg(hdmi->dev, "xfer: num: %d, addr: %#x\n", num, addr);
325
326 for (i = 0; i < num; i++) {
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300327 if (msgs[i].len == 0) {
328 dev_dbg(hdmi->dev,
329 "unsupported transfer %d/%d, no data\n",
330 i + 1, num);
331 return -EOPNOTSUPP;
332 }
333 }
334
335 mutex_lock(&i2c->lock);
336
337 /* Unmute DONE and ERROR interrupts */
338 hdmi_writeb(hdmi, 0x00, HDMI_IH_MUTE_I2CM_STAT0);
339
340 /* Set slave device address taken from the first I2C message */
341 hdmi_writeb(hdmi, addr, HDMI_I2CM_SLAVE);
342
343 /* Set slave device register address on transfer */
344 i2c->is_regaddr = false;
345
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800346 /* Set segment pointer for I2C extended read mode operation */
347 i2c->is_segment = false;
348
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300349 for (i = 0; i < num; i++) {
350 dev_dbg(hdmi->dev, "xfer: num: %d/%d, len: %d, flags: %#x\n",
351 i + 1, num, msgs[i].len, msgs[i].flags);
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800352 if (msgs[i].addr == DDC_SEGMENT_ADDR && msgs[i].len == 1) {
353 i2c->is_segment = true;
354 hdmi_writeb(hdmi, DDC_SEGMENT_ADDR, HDMI_I2CM_SEGADDR);
355 hdmi_writeb(hdmi, *msgs[i].buf, HDMI_I2CM_SEGPTR);
356 } else {
357 if (msgs[i].flags & I2C_M_RD)
358 ret = dw_hdmi_i2c_read(hdmi, msgs[i].buf,
359 msgs[i].len);
360 else
361 ret = dw_hdmi_i2c_write(hdmi, msgs[i].buf,
362 msgs[i].len);
363 }
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300364 if (ret < 0)
365 break;
366 }
367
368 if (!ret)
369 ret = num;
370
371 /* Mute DONE and ERROR interrupts */
372 hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
373 HDMI_IH_MUTE_I2CM_STAT0);
374
375 mutex_unlock(&i2c->lock);
376
377 return ret;
378}
379
380static u32 dw_hdmi_i2c_func(struct i2c_adapter *adapter)
381{
382 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
383}
384
385static const struct i2c_algorithm dw_hdmi_algorithm = {
386 .master_xfer = dw_hdmi_i2c_xfer,
387 .functionality = dw_hdmi_i2c_func,
388};
389
390static struct i2c_adapter *dw_hdmi_i2c_adapter(struct dw_hdmi *hdmi)
391{
392 struct i2c_adapter *adap;
393 struct dw_hdmi_i2c *i2c;
394 int ret;
395
396 i2c = devm_kzalloc(hdmi->dev, sizeof(*i2c), GFP_KERNEL);
397 if (!i2c)
398 return ERR_PTR(-ENOMEM);
399
400 mutex_init(&i2c->lock);
401 init_completion(&i2c->cmp);
402
403 adap = &i2c->adap;
404 adap->class = I2C_CLASS_DDC;
405 adap->owner = THIS_MODULE;
406 adap->dev.parent = hdmi->dev;
407 adap->algo = &dw_hdmi_algorithm;
408 strlcpy(adap->name, "DesignWare HDMI", sizeof(adap->name));
409 i2c_set_adapdata(adap, hdmi);
410
411 ret = i2c_add_adapter(adap);
412 if (ret) {
413 dev_warn(hdmi->dev, "cannot add %s I2C adapter\n", adap->name);
414 devm_kfree(hdmi->dev, i2c);
415 return ERR_PTR(ret);
416 }
417
418 hdmi->i2c = i2c;
419
420 dev_info(hdmi->dev, "registered %s I2C bus driver\n", adap->name);
421
422 return adap;
423}
424
Russell King351e1352015-01-31 14:50:23 +0000425static void hdmi_set_cts_n(struct dw_hdmi *hdmi, unsigned int cts,
426 unsigned int n)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200427{
Russell King622494a2015-02-02 10:55:38 +0000428 /* Must be set/cleared first */
429 hdmi_modb(hdmi, 0, HDMI_AUD_CTS3_CTS_MANUAL, HDMI_AUD_CTS3);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200430
431 /* nshift factor = 0 */
Russell King812bc612013-11-04 12:42:02 +0000432 hdmi_modb(hdmi, 0, HDMI_AUD_CTS3_N_SHIFT_MASK, HDMI_AUD_CTS3);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200433
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200434 hdmi_writeb(hdmi, ((cts >> 16) & HDMI_AUD_CTS3_AUDCTS19_16_MASK) |
435 HDMI_AUD_CTS3_CTS_MANUAL, HDMI_AUD_CTS3);
Russell King622494a2015-02-02 10:55:38 +0000436 hdmi_writeb(hdmi, (cts >> 8) & 0xff, HDMI_AUD_CTS2);
437 hdmi_writeb(hdmi, cts & 0xff, HDMI_AUD_CTS1);
438
439 hdmi_writeb(hdmi, (n >> 16) & 0x0f, HDMI_AUD_N3);
440 hdmi_writeb(hdmi, (n >> 8) & 0xff, HDMI_AUD_N2);
441 hdmi_writeb(hdmi, n & 0xff, HDMI_AUD_N1);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200442}
443
Russell Kingb195fbd2015-07-22 11:28:16 +0100444static unsigned int hdmi_compute_n(unsigned int freq, unsigned long pixel_clk)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200445{
446 unsigned int n = (128 * freq) / 1000;
Russell Kingd0c96d12015-07-22 10:35:41 +0100447 unsigned int mult = 1;
448
449 while (freq > 48000) {
450 mult *= 2;
451 freq /= 2;
452 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200453
454 switch (freq) {
455 case 32000:
Russell King426701d2015-07-22 10:39:27 +0100456 if (pixel_clk == 25175000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100457 n = 4576;
Russell King426701d2015-07-22 10:39:27 +0100458 else if (pixel_clk == 27027000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100459 n = 4096;
Russell King426701d2015-07-22 10:39:27 +0100460 else if (pixel_clk == 74176000 || pixel_clk == 148352000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200461 n = 11648;
462 else
463 n = 4096;
Russell Kingd0c96d12015-07-22 10:35:41 +0100464 n *= mult;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200465 break;
466
467 case 44100:
Russell King426701d2015-07-22 10:39:27 +0100468 if (pixel_clk == 25175000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200469 n = 7007;
Russell King426701d2015-07-22 10:39:27 +0100470 else if (pixel_clk == 74176000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200471 n = 17836;
Russell King426701d2015-07-22 10:39:27 +0100472 else if (pixel_clk == 148352000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100473 n = 8918;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200474 else
475 n = 6272;
Russell Kingd0c96d12015-07-22 10:35:41 +0100476 n *= mult;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200477 break;
478
479 case 48000:
Russell King426701d2015-07-22 10:39:27 +0100480 if (pixel_clk == 25175000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100481 n = 6864;
Russell King426701d2015-07-22 10:39:27 +0100482 else if (pixel_clk == 27027000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100483 n = 6144;
Russell King426701d2015-07-22 10:39:27 +0100484 else if (pixel_clk == 74176000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200485 n = 11648;
Russell King426701d2015-07-22 10:39:27 +0100486 else if (pixel_clk == 148352000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100487 n = 5824;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200488 else
489 n = 6144;
Russell Kingd0c96d12015-07-22 10:35:41 +0100490 n *= mult;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200491 break;
492
493 default:
494 break;
495 }
496
497 return n;
498}
499
Andy Yanb21f4b62014-12-05 14:26:31 +0800500static void hdmi_set_clk_regenerator(struct dw_hdmi *hdmi,
Russell Kingb195fbd2015-07-22 11:28:16 +0100501 unsigned long pixel_clk, unsigned int sample_rate)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200502{
Russell Kingdfbdaf52015-07-22 16:54:37 +0100503 unsigned long ftdms = pixel_clk;
Russell Kingf879b382015-03-27 12:53:29 +0000504 unsigned int n, cts;
Russell Kingdfbdaf52015-07-22 16:54:37 +0100505 u64 tmp;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200506
Russell Kingb195fbd2015-07-22 11:28:16 +0100507 n = hdmi_compute_n(sample_rate, pixel_clk);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200508
Russell Kingdfbdaf52015-07-22 16:54:37 +0100509 /*
510 * Compute the CTS value from the N value. Note that CTS and N
511 * can be up to 20 bits in total, so we need 64-bit math. Also
512 * note that our TDMS clock is not fully accurate; it is accurate
513 * to kHz. This can introduce an unnecessary remainder in the
514 * calculation below, so we don't try to warn about that.
515 */
516 tmp = (u64)ftdms * n;
517 do_div(tmp, 128 * sample_rate);
518 cts = tmp;
519
520 dev_dbg(hdmi->dev, "%s: fs=%uHz ftdms=%lu.%03luMHz N=%d cts=%d\n",
521 __func__, sample_rate, ftdms / 1000000, (ftdms / 1000) % 1000,
522 n, cts);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200523
Russell Kingb90120a2015-03-27 12:59:58 +0000524 spin_lock_irq(&hdmi->audio_lock);
525 hdmi->audio_n = n;
526 hdmi->audio_cts = cts;
527 hdmi_set_cts_n(hdmi, cts, hdmi->audio_enable ? n : 0);
528 spin_unlock_irq(&hdmi->audio_lock);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200529}
530
Andy Yanb21f4b62014-12-05 14:26:31 +0800531static void hdmi_init_clk_regenerator(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200532{
Russell King6bcf4952015-02-02 11:01:08 +0000533 mutex_lock(&hdmi->audio_mutex);
Russell Kingb195fbd2015-07-22 11:28:16 +0100534 hdmi_set_clk_regenerator(hdmi, 74250000, hdmi->sample_rate);
Russell King6bcf4952015-02-02 11:01:08 +0000535 mutex_unlock(&hdmi->audio_mutex);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200536}
537
Andy Yanb21f4b62014-12-05 14:26:31 +0800538static void hdmi_clk_regenerator_update_pixel_clock(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200539{
Russell King6bcf4952015-02-02 11:01:08 +0000540 mutex_lock(&hdmi->audio_mutex);
Russell Kingf879b382015-03-27 12:53:29 +0000541 hdmi_set_clk_regenerator(hdmi, hdmi->hdmi_data.video_mode.mpixelclock,
Russell Kingb195fbd2015-07-22 11:28:16 +0100542 hdmi->sample_rate);
Russell King6bcf4952015-02-02 11:01:08 +0000543 mutex_unlock(&hdmi->audio_mutex);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200544}
545
Russell Kingb5814ff2015-03-27 12:50:58 +0000546void dw_hdmi_set_sample_rate(struct dw_hdmi *hdmi, unsigned int rate)
547{
548 mutex_lock(&hdmi->audio_mutex);
549 hdmi->sample_rate = rate;
550 hdmi_set_clk_regenerator(hdmi, hdmi->hdmi_data.video_mode.mpixelclock,
Russell Kingb195fbd2015-07-22 11:28:16 +0100551 hdmi->sample_rate);
Russell Kingb5814ff2015-03-27 12:50:58 +0000552 mutex_unlock(&hdmi->audio_mutex);
553}
554EXPORT_SYMBOL_GPL(dw_hdmi_set_sample_rate);
555
Romain Perier57fbc052017-04-20 14:34:34 +0530556static void hdmi_enable_audio_clk(struct dw_hdmi *hdmi, bool enable)
557{
Russell King7cc4ab22017-07-31 15:29:46 +0100558 if (enable)
559 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_AUDCLK_DISABLE;
560 else
561 hdmi->mc_clkdis |= HDMI_MC_CLKDIS_AUDCLK_DISABLE;
562 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
Romain Perier57fbc052017-04-20 14:34:34 +0530563}
564
Romain Periera7d555d2017-04-14 10:31:12 +0200565static void dw_hdmi_ahb_audio_enable(struct dw_hdmi *hdmi)
566{
567 hdmi_set_cts_n(hdmi, hdmi->audio_cts, hdmi->audio_n);
568}
569
570static void dw_hdmi_ahb_audio_disable(struct dw_hdmi *hdmi)
571{
572 hdmi_set_cts_n(hdmi, hdmi->audio_cts, 0);
573}
574
575static void dw_hdmi_i2s_audio_enable(struct dw_hdmi *hdmi)
576{
577 hdmi_set_cts_n(hdmi, hdmi->audio_cts, hdmi->audio_n);
Romain Perier57fbc052017-04-20 14:34:34 +0530578 hdmi_enable_audio_clk(hdmi, true);
579}
580
581static void dw_hdmi_i2s_audio_disable(struct dw_hdmi *hdmi)
582{
583 hdmi_enable_audio_clk(hdmi, false);
Romain Periera7d555d2017-04-14 10:31:12 +0200584}
585
Russell Kingb90120a2015-03-27 12:59:58 +0000586void dw_hdmi_audio_enable(struct dw_hdmi *hdmi)
587{
588 unsigned long flags;
589
590 spin_lock_irqsave(&hdmi->audio_lock, flags);
591 hdmi->audio_enable = true;
Romain Periera7d555d2017-04-14 10:31:12 +0200592 if (hdmi->enable_audio)
593 hdmi->enable_audio(hdmi);
Russell Kingb90120a2015-03-27 12:59:58 +0000594 spin_unlock_irqrestore(&hdmi->audio_lock, flags);
595}
596EXPORT_SYMBOL_GPL(dw_hdmi_audio_enable);
597
598void dw_hdmi_audio_disable(struct dw_hdmi *hdmi)
599{
600 unsigned long flags;
601
602 spin_lock_irqsave(&hdmi->audio_lock, flags);
603 hdmi->audio_enable = false;
Romain Periera7d555d2017-04-14 10:31:12 +0200604 if (hdmi->disable_audio)
605 hdmi->disable_audio(hdmi);
Russell Kingb90120a2015-03-27 12:59:58 +0000606 spin_unlock_irqrestore(&hdmi->audio_lock, flags);
607}
608EXPORT_SYMBOL_GPL(dw_hdmi_audio_disable);
609
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200610static bool hdmi_bus_fmt_is_rgb(unsigned int bus_format)
611{
612 switch (bus_format) {
613 case MEDIA_BUS_FMT_RGB888_1X24:
614 case MEDIA_BUS_FMT_RGB101010_1X30:
615 case MEDIA_BUS_FMT_RGB121212_1X36:
616 case MEDIA_BUS_FMT_RGB161616_1X48:
617 return true;
618
619 default:
620 return false;
621 }
622}
623
624static bool hdmi_bus_fmt_is_yuv444(unsigned int bus_format)
625{
626 switch (bus_format) {
627 case MEDIA_BUS_FMT_YUV8_1X24:
628 case MEDIA_BUS_FMT_YUV10_1X30:
629 case MEDIA_BUS_FMT_YUV12_1X36:
630 case MEDIA_BUS_FMT_YUV16_1X48:
631 return true;
632
633 default:
634 return false;
635 }
636}
637
638static bool hdmi_bus_fmt_is_yuv422(unsigned int bus_format)
639{
640 switch (bus_format) {
641 case MEDIA_BUS_FMT_UYVY8_1X16:
642 case MEDIA_BUS_FMT_UYVY10_1X20:
643 case MEDIA_BUS_FMT_UYVY12_1X24:
644 return true;
645
646 default:
647 return false;
648 }
649}
650
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200651static int hdmi_bus_fmt_color_depth(unsigned int bus_format)
652{
653 switch (bus_format) {
654 case MEDIA_BUS_FMT_RGB888_1X24:
655 case MEDIA_BUS_FMT_YUV8_1X24:
656 case MEDIA_BUS_FMT_UYVY8_1X16:
657 case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
658 return 8;
659
660 case MEDIA_BUS_FMT_RGB101010_1X30:
661 case MEDIA_BUS_FMT_YUV10_1X30:
662 case MEDIA_BUS_FMT_UYVY10_1X20:
663 case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
664 return 10;
665
666 case MEDIA_BUS_FMT_RGB121212_1X36:
667 case MEDIA_BUS_FMT_YUV12_1X36:
668 case MEDIA_BUS_FMT_UYVY12_1X24:
669 case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
670 return 12;
671
672 case MEDIA_BUS_FMT_RGB161616_1X48:
673 case MEDIA_BUS_FMT_YUV16_1X48:
674 case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
675 return 16;
676
677 default:
678 return 0;
679 }
680}
681
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200682/*
683 * this submodule is responsible for the video data synchronization.
684 * for example, for RGB 4:4:4 input, the data map is defined as
685 * pin{47~40} <==> R[7:0]
686 * pin{31~24} <==> G[7:0]
687 * pin{15~8} <==> B[7:0]
688 */
Andy Yanb21f4b62014-12-05 14:26:31 +0800689static void hdmi_video_sample(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200690{
691 int color_format = 0;
692 u8 val;
693
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200694 switch (hdmi->hdmi_data.enc_in_bus_format) {
695 case MEDIA_BUS_FMT_RGB888_1X24:
696 color_format = 0x01;
697 break;
698 case MEDIA_BUS_FMT_RGB101010_1X30:
699 color_format = 0x03;
700 break;
701 case MEDIA_BUS_FMT_RGB121212_1X36:
702 color_format = 0x05;
703 break;
704 case MEDIA_BUS_FMT_RGB161616_1X48:
705 color_format = 0x07;
706 break;
707
708 case MEDIA_BUS_FMT_YUV8_1X24:
709 case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
710 color_format = 0x09;
711 break;
712 case MEDIA_BUS_FMT_YUV10_1X30:
713 case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
714 color_format = 0x0B;
715 break;
716 case MEDIA_BUS_FMT_YUV12_1X36:
717 case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
718 color_format = 0x0D;
719 break;
720 case MEDIA_BUS_FMT_YUV16_1X48:
721 case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
722 color_format = 0x0F;
723 break;
724
725 case MEDIA_BUS_FMT_UYVY8_1X16:
726 color_format = 0x16;
727 break;
728 case MEDIA_BUS_FMT_UYVY10_1X20:
729 color_format = 0x14;
730 break;
731 case MEDIA_BUS_FMT_UYVY12_1X24:
732 color_format = 0x12;
733 break;
734
735 default:
736 return;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200737 }
738
739 val = HDMI_TX_INVID0_INTERNAL_DE_GENERATOR_DISABLE |
740 ((color_format << HDMI_TX_INVID0_VIDEO_MAPPING_OFFSET) &
741 HDMI_TX_INVID0_VIDEO_MAPPING_MASK);
742 hdmi_writeb(hdmi, val, HDMI_TX_INVID0);
743
744 /* Enable TX stuffing: When DE is inactive, fix the output data to 0 */
745 val = HDMI_TX_INSTUFFING_BDBDATA_STUFFING_ENABLE |
746 HDMI_TX_INSTUFFING_RCRDATA_STUFFING_ENABLE |
747 HDMI_TX_INSTUFFING_GYDATA_STUFFING_ENABLE;
748 hdmi_writeb(hdmi, val, HDMI_TX_INSTUFFING);
749 hdmi_writeb(hdmi, 0x0, HDMI_TX_GYDATA0);
750 hdmi_writeb(hdmi, 0x0, HDMI_TX_GYDATA1);
751 hdmi_writeb(hdmi, 0x0, HDMI_TX_RCRDATA0);
752 hdmi_writeb(hdmi, 0x0, HDMI_TX_RCRDATA1);
753 hdmi_writeb(hdmi, 0x0, HDMI_TX_BCBDATA0);
754 hdmi_writeb(hdmi, 0x0, HDMI_TX_BCBDATA1);
755}
756
Andy Yanb21f4b62014-12-05 14:26:31 +0800757static int is_color_space_conversion(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200758{
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200759 return hdmi->hdmi_data.enc_in_bus_format != hdmi->hdmi_data.enc_out_bus_format;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200760}
761
Andy Yanb21f4b62014-12-05 14:26:31 +0800762static int is_color_space_decimation(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200763{
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200764 if (!hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200765 return 0;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200766
767 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_in_bus_format) ||
768 hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_in_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200769 return 1;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200770
Fabio Estevamba92b222014-02-06 10:12:03 -0200771 return 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200772}
773
Andy Yanb21f4b62014-12-05 14:26:31 +0800774static int is_color_space_interpolation(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200775{
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200776 if (!hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_in_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200777 return 0;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200778
779 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format) ||
780 hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200781 return 1;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200782
Fabio Estevamba92b222014-02-06 10:12:03 -0200783 return 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200784}
785
Andy Yanb21f4b62014-12-05 14:26:31 +0800786static void dw_hdmi_update_csc_coeffs(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200787{
788 const u16 (*csc_coeff)[3][4] = &csc_coeff_default;
Russell Kingc082f9d2013-11-04 12:10:40 +0000789 unsigned i;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200790 u32 csc_scale = 1;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200791
792 if (is_color_space_conversion(hdmi)) {
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200793 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format)) {
794 if (hdmi->hdmi_data.enc_out_encoding ==
795 V4L2_YCBCR_ENC_601)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200796 csc_coeff = &csc_coeff_rgb_out_eitu601;
797 else
798 csc_coeff = &csc_coeff_rgb_out_eitu709;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200799 } else if (hdmi_bus_fmt_is_rgb(
800 hdmi->hdmi_data.enc_in_bus_format)) {
801 if (hdmi->hdmi_data.enc_out_encoding ==
802 V4L2_YCBCR_ENC_601)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200803 csc_coeff = &csc_coeff_rgb_in_eitu601;
804 else
805 csc_coeff = &csc_coeff_rgb_in_eitu709;
806 csc_scale = 0;
807 }
808 }
809
Russell Kingc082f9d2013-11-04 12:10:40 +0000810 /* The CSC registers are sequential, alternating MSB then LSB */
811 for (i = 0; i < ARRAY_SIZE(csc_coeff_default[0]); i++) {
812 u16 coeff_a = (*csc_coeff)[0][i];
813 u16 coeff_b = (*csc_coeff)[1][i];
814 u16 coeff_c = (*csc_coeff)[2][i];
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200815
Andy Yanb5878332014-12-05 14:23:52 +0800816 hdmi_writeb(hdmi, coeff_a & 0xff, HDMI_CSC_COEF_A1_LSB + i * 2);
Russell Kingc082f9d2013-11-04 12:10:40 +0000817 hdmi_writeb(hdmi, coeff_a >> 8, HDMI_CSC_COEF_A1_MSB + i * 2);
818 hdmi_writeb(hdmi, coeff_b & 0xff, HDMI_CSC_COEF_B1_LSB + i * 2);
819 hdmi_writeb(hdmi, coeff_b >> 8, HDMI_CSC_COEF_B1_MSB + i * 2);
Andy Yanb5878332014-12-05 14:23:52 +0800820 hdmi_writeb(hdmi, coeff_c & 0xff, HDMI_CSC_COEF_C1_LSB + i * 2);
Russell Kingc082f9d2013-11-04 12:10:40 +0000821 hdmi_writeb(hdmi, coeff_c >> 8, HDMI_CSC_COEF_C1_MSB + i * 2);
822 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200823
Russell King812bc612013-11-04 12:42:02 +0000824 hdmi_modb(hdmi, csc_scale, HDMI_CSC_SCALE_CSCSCALE_MASK,
825 HDMI_CSC_SCALE);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200826}
827
Andy Yanb21f4b62014-12-05 14:26:31 +0800828static void hdmi_video_csc(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200829{
830 int color_depth = 0;
831 int interpolation = HDMI_CSC_CFG_INTMODE_DISABLE;
832 int decimation = 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200833
834 /* YCC422 interpolation to 444 mode */
835 if (is_color_space_interpolation(hdmi))
836 interpolation = HDMI_CSC_CFG_INTMODE_CHROMA_INT_FORMULA1;
837 else if (is_color_space_decimation(hdmi))
838 decimation = HDMI_CSC_CFG_DECMODE_CHROMA_INT_FORMULA3;
839
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200840 switch (hdmi_bus_fmt_color_depth(hdmi->hdmi_data.enc_out_bus_format)) {
841 case 8:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200842 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_24BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200843 break;
844 case 10:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200845 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_30BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200846 break;
847 case 12:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200848 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_36BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200849 break;
850 case 16:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200851 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_48BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200852 break;
853
854 default:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200855 return;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200856 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200857
858 /* Configure the CSC registers */
859 hdmi_writeb(hdmi, interpolation | decimation, HDMI_CSC_CFG);
Russell King812bc612013-11-04 12:42:02 +0000860 hdmi_modb(hdmi, color_depth, HDMI_CSC_SCALE_CSC_COLORDE_PTH_MASK,
861 HDMI_CSC_SCALE);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200862
Andy Yanb21f4b62014-12-05 14:26:31 +0800863 dw_hdmi_update_csc_coeffs(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200864}
865
866/*
867 * HDMI video packetizer is used to packetize the data.
868 * for example, if input is YCC422 mode or repeater is used,
869 * data should be repacked this module can be bypassed.
870 */
Andy Yanb21f4b62014-12-05 14:26:31 +0800871static void hdmi_video_packetize(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200872{
873 unsigned int color_depth = 0;
874 unsigned int remap_size = HDMI_VP_REMAP_YCC422_16bit;
875 unsigned int output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_PP;
876 struct hdmi_data_info *hdmi_data = &hdmi->hdmi_data;
Russell Kingbebdf662013-11-04 12:55:30 +0000877 u8 val, vp_conf;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200878
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200879 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format) ||
880 hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format)) {
881 switch (hdmi_bus_fmt_color_depth(
882 hdmi->hdmi_data.enc_out_bus_format)) {
883 case 8:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200884 color_depth = 4;
885 output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200886 break;
887 case 10:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200888 color_depth = 5;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200889 break;
890 case 12:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200891 color_depth = 6;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200892 break;
893 case 16:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200894 color_depth = 7;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200895 break;
896 default:
897 output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS;
898 }
899 } else if (hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format)) {
900 switch (hdmi_bus_fmt_color_depth(
901 hdmi->hdmi_data.enc_out_bus_format)) {
902 case 0:
903 case 8:
904 remap_size = HDMI_VP_REMAP_YCC422_16bit;
905 break;
906 case 10:
907 remap_size = HDMI_VP_REMAP_YCC422_20bit;
908 break;
909 case 12:
910 remap_size = HDMI_VP_REMAP_YCC422_24bit;
911 break;
912
913 default:
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200914 return;
Andy Yanb5878332014-12-05 14:23:52 +0800915 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200916 output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_YCC422;
Andy Yanb5878332014-12-05 14:23:52 +0800917 } else {
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200918 return;
Andy Yanb5878332014-12-05 14:23:52 +0800919 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200920
921 /* set the packetizer registers */
922 val = ((color_depth << HDMI_VP_PR_CD_COLOR_DEPTH_OFFSET) &
923 HDMI_VP_PR_CD_COLOR_DEPTH_MASK) |
924 ((hdmi_data->pix_repet_factor <<
925 HDMI_VP_PR_CD_DESIRED_PR_FACTOR_OFFSET) &
926 HDMI_VP_PR_CD_DESIRED_PR_FACTOR_MASK);
927 hdmi_writeb(hdmi, val, HDMI_VP_PR_CD);
928
Russell King812bc612013-11-04 12:42:02 +0000929 hdmi_modb(hdmi, HDMI_VP_STUFF_PR_STUFFING_STUFFING_MODE,
930 HDMI_VP_STUFF_PR_STUFFING_MASK, HDMI_VP_STUFF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200931
932 /* Data from pixel repeater block */
933 if (hdmi_data->pix_repet_factor > 1) {
Russell Kingbebdf662013-11-04 12:55:30 +0000934 vp_conf = HDMI_VP_CONF_PR_EN_ENABLE |
935 HDMI_VP_CONF_BYPASS_SELECT_PIX_REPEATER;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200936 } else { /* data from packetizer block */
Russell Kingbebdf662013-11-04 12:55:30 +0000937 vp_conf = HDMI_VP_CONF_PR_EN_DISABLE |
938 HDMI_VP_CONF_BYPASS_SELECT_VID_PACKETIZER;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200939 }
940
Russell Kingbebdf662013-11-04 12:55:30 +0000941 hdmi_modb(hdmi, vp_conf,
942 HDMI_VP_CONF_PR_EN_MASK |
943 HDMI_VP_CONF_BYPASS_SELECT_MASK, HDMI_VP_CONF);
944
Russell King812bc612013-11-04 12:42:02 +0000945 hdmi_modb(hdmi, 1 << HDMI_VP_STUFF_IDEFAULT_PHASE_OFFSET,
946 HDMI_VP_STUFF_IDEFAULT_PHASE_MASK, HDMI_VP_STUFF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200947
948 hdmi_writeb(hdmi, remap_size, HDMI_VP_REMAP);
949
950 if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_PP) {
Russell Kingbebdf662013-11-04 12:55:30 +0000951 vp_conf = HDMI_VP_CONF_BYPASS_EN_DISABLE |
952 HDMI_VP_CONF_PP_EN_ENABLE |
953 HDMI_VP_CONF_YCC422_EN_DISABLE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200954 } else if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_YCC422) {
Russell Kingbebdf662013-11-04 12:55:30 +0000955 vp_conf = HDMI_VP_CONF_BYPASS_EN_DISABLE |
956 HDMI_VP_CONF_PP_EN_DISABLE |
957 HDMI_VP_CONF_YCC422_EN_ENABLE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200958 } else if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS) {
Russell Kingbebdf662013-11-04 12:55:30 +0000959 vp_conf = HDMI_VP_CONF_BYPASS_EN_ENABLE |
960 HDMI_VP_CONF_PP_EN_DISABLE |
961 HDMI_VP_CONF_YCC422_EN_DISABLE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200962 } else {
963 return;
964 }
965
Russell Kingbebdf662013-11-04 12:55:30 +0000966 hdmi_modb(hdmi, vp_conf,
967 HDMI_VP_CONF_BYPASS_EN_MASK | HDMI_VP_CONF_PP_EN_ENMASK |
968 HDMI_VP_CONF_YCC422_EN_MASK, HDMI_VP_CONF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200969
Russell King812bc612013-11-04 12:42:02 +0000970 hdmi_modb(hdmi, HDMI_VP_STUFF_PP_STUFFING_STUFFING_MODE |
971 HDMI_VP_STUFF_YCC422_STUFFING_STUFFING_MODE,
972 HDMI_VP_STUFF_PP_STUFFING_MASK |
973 HDMI_VP_STUFF_YCC422_STUFFING_MASK, HDMI_VP_STUFF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200974
Russell King812bc612013-11-04 12:42:02 +0000975 hdmi_modb(hdmi, output_select, HDMI_VP_CONF_OUTPUT_SELECTOR_MASK,
976 HDMI_VP_CONF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200977}
978
Laurent Pinchartf1585f62017-03-06 01:36:15 +0200979/* -----------------------------------------------------------------------------
980 * Synopsys PHY Handling
981 */
982
Andy Yanb21f4b62014-12-05 14:26:31 +0800983static inline void hdmi_phy_test_clear(struct dw_hdmi *hdmi,
Andy Yanb5878332014-12-05 14:23:52 +0800984 unsigned char bit)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200985{
Russell King812bc612013-11-04 12:42:02 +0000986 hdmi_modb(hdmi, bit << HDMI_PHY_TST0_TSTCLR_OFFSET,
987 HDMI_PHY_TST0_TSTCLR_MASK, HDMI_PHY_TST0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200988}
989
Andy Yanb21f4b62014-12-05 14:26:31 +0800990static bool hdmi_phy_wait_i2c_done(struct dw_hdmi *hdmi, int msec)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200991{
Andy Yana4d3b8b2014-12-05 14:31:09 +0800992 u32 val;
993
994 while ((val = hdmi_readb(hdmi, HDMI_IH_I2CMPHY_STAT0) & 0x3) == 0) {
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200995 if (msec-- == 0)
996 return false;
Emil Renner Berthing0e6bcf32014-03-30 00:21:21 +0100997 udelay(1000);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200998 }
Andy Yana4d3b8b2014-12-05 14:31:09 +0800999 hdmi_writeb(hdmi, val, HDMI_IH_I2CMPHY_STAT0);
1000
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001001 return true;
1002}
1003
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001004void dw_hdmi_phy_i2c_write(struct dw_hdmi *hdmi, unsigned short data,
1005 unsigned char addr)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001006{
1007 hdmi_writeb(hdmi, 0xFF, HDMI_IH_I2CMPHY_STAT0);
1008 hdmi_writeb(hdmi, addr, HDMI_PHY_I2CM_ADDRESS_ADDR);
1009 hdmi_writeb(hdmi, (unsigned char)(data >> 8),
Andy Yanb5878332014-12-05 14:23:52 +08001010 HDMI_PHY_I2CM_DATAO_1_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001011 hdmi_writeb(hdmi, (unsigned char)(data >> 0),
Andy Yanb5878332014-12-05 14:23:52 +08001012 HDMI_PHY_I2CM_DATAO_0_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001013 hdmi_writeb(hdmi, HDMI_PHY_I2CM_OPERATION_ADDR_WRITE,
Andy Yanb5878332014-12-05 14:23:52 +08001014 HDMI_PHY_I2CM_OPERATION_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001015 hdmi_phy_wait_i2c_done(hdmi, 1000);
1016}
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001017EXPORT_SYMBOL_GPL(dw_hdmi_phy_i2c_write);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001018
Russell King2fada102015-07-28 12:21:34 +01001019static void dw_hdmi_phy_enable_powerdown(struct dw_hdmi *hdmi, bool enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001020{
Russell King2fada102015-07-28 12:21:34 +01001021 hdmi_mask_writeb(hdmi, !enable, HDMI_PHY_CONF0,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001022 HDMI_PHY_CONF0_PDZ_OFFSET,
1023 HDMI_PHY_CONF0_PDZ_MASK);
1024}
1025
Andy Yanb21f4b62014-12-05 14:26:31 +08001026static void dw_hdmi_phy_enable_tmds(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001027{
1028 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1029 HDMI_PHY_CONF0_ENTMDS_OFFSET,
1030 HDMI_PHY_CONF0_ENTMDS_MASK);
1031}
1032
Laurent Pinchartf4104e82017-01-17 10:29:02 +02001033static void dw_hdmi_phy_enable_svsret(struct dw_hdmi *hdmi, u8 enable)
Andy Yand346c142014-12-05 14:31:53 +08001034{
1035 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
Laurent Pinchartf4104e82017-01-17 10:29:02 +02001036 HDMI_PHY_CONF0_SVSRET_OFFSET,
1037 HDMI_PHY_CONF0_SVSRET_MASK);
Andy Yand346c142014-12-05 14:31:53 +08001038}
1039
Jernej Skrabec57659162018-02-14 21:08:58 +01001040void dw_hdmi_phy_gen2_pddq(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001041{
1042 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1043 HDMI_PHY_CONF0_GEN2_PDDQ_OFFSET,
1044 HDMI_PHY_CONF0_GEN2_PDDQ_MASK);
1045}
Jernej Skrabec57659162018-02-14 21:08:58 +01001046EXPORT_SYMBOL_GPL(dw_hdmi_phy_gen2_pddq);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001047
Jernej Skrabec57659162018-02-14 21:08:58 +01001048void dw_hdmi_phy_gen2_txpwron(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001049{
1050 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1051 HDMI_PHY_CONF0_GEN2_TXPWRON_OFFSET,
1052 HDMI_PHY_CONF0_GEN2_TXPWRON_MASK);
1053}
Jernej Skrabec57659162018-02-14 21:08:58 +01001054EXPORT_SYMBOL_GPL(dw_hdmi_phy_gen2_txpwron);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001055
Andy Yanb21f4b62014-12-05 14:26:31 +08001056static void dw_hdmi_phy_sel_data_en_pol(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001057{
1058 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1059 HDMI_PHY_CONF0_SELDATAENPOL_OFFSET,
1060 HDMI_PHY_CONF0_SELDATAENPOL_MASK);
1061}
1062
Andy Yanb21f4b62014-12-05 14:26:31 +08001063static void dw_hdmi_phy_sel_interface_control(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001064{
1065 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1066 HDMI_PHY_CONF0_SELDIPIF_OFFSET,
1067 HDMI_PHY_CONF0_SELDIPIF_MASK);
1068}
1069
Jernej Skrabec57659162018-02-14 21:08:58 +01001070void dw_hdmi_phy_reset(struct dw_hdmi *hdmi)
1071{
1072 /* PHY reset. The reset signal is active high on Gen2 PHYs. */
1073 hdmi_writeb(hdmi, HDMI_MC_PHYRSTZ_PHYRSTZ, HDMI_MC_PHYRSTZ);
1074 hdmi_writeb(hdmi, 0, HDMI_MC_PHYRSTZ);
1075}
1076EXPORT_SYMBOL_GPL(dw_hdmi_phy_reset);
1077
1078void dw_hdmi_phy_i2c_set_addr(struct dw_hdmi *hdmi, u8 address)
1079{
1080 hdmi_phy_test_clear(hdmi, 1);
1081 hdmi_writeb(hdmi, address, HDMI_PHY_I2CM_SLAVE_ADDR);
1082 hdmi_phy_test_clear(hdmi, 0);
1083}
1084EXPORT_SYMBOL_GPL(dw_hdmi_phy_i2c_set_addr);
1085
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02001086static void dw_hdmi_phy_power_off(struct dw_hdmi *hdmi)
1087{
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001088 const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02001089 unsigned int i;
1090 u16 val;
1091
1092 if (phy->gen == 1) {
1093 dw_hdmi_phy_enable_tmds(hdmi, 0);
1094 dw_hdmi_phy_enable_powerdown(hdmi, true);
1095 return;
1096 }
1097
1098 dw_hdmi_phy_gen2_txpwron(hdmi, 0);
1099
1100 /*
1101 * Wait for TX_PHY_LOCK to be deasserted to indicate that the PHY went
1102 * to low power mode.
1103 */
1104 for (i = 0; i < 5; ++i) {
1105 val = hdmi_readb(hdmi, HDMI_PHY_STAT0);
1106 if (!(val & HDMI_PHY_TX_PHY_LOCK))
1107 break;
1108
1109 usleep_range(1000, 2000);
1110 }
1111
1112 if (val & HDMI_PHY_TX_PHY_LOCK)
1113 dev_warn(hdmi->dev, "PHY failed to power down\n");
1114 else
1115 dev_dbg(hdmi->dev, "PHY powered down in %u iterations\n", i);
1116
1117 dw_hdmi_phy_gen2_pddq(hdmi, 1);
1118}
1119
Laurent Pinchart181e0ef2017-03-06 01:35:57 +02001120static int dw_hdmi_phy_power_on(struct dw_hdmi *hdmi)
1121{
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001122 const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
Laurent Pinchart181e0ef2017-03-06 01:35:57 +02001123 unsigned int i;
1124 u8 val;
1125
1126 if (phy->gen == 1) {
1127 dw_hdmi_phy_enable_powerdown(hdmi, false);
1128
1129 /* Toggle TMDS enable. */
1130 dw_hdmi_phy_enable_tmds(hdmi, 0);
1131 dw_hdmi_phy_enable_tmds(hdmi, 1);
1132 return 0;
1133 }
1134
1135 dw_hdmi_phy_gen2_txpwron(hdmi, 1);
1136 dw_hdmi_phy_gen2_pddq(hdmi, 0);
1137
1138 /* Wait for PHY PLL lock */
1139 for (i = 0; i < 5; ++i) {
1140 val = hdmi_readb(hdmi, HDMI_PHY_STAT0) & HDMI_PHY_TX_PHY_LOCK;
1141 if (val)
1142 break;
1143
1144 usleep_range(1000, 2000);
1145 }
1146
1147 if (!val) {
1148 dev_err(hdmi->dev, "PHY PLL failed to lock\n");
1149 return -ETIMEDOUT;
1150 }
1151
1152 dev_dbg(hdmi->dev, "PHY PLL locked %u iterations\n", i);
1153 return 0;
1154}
1155
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001156/*
1157 * PHY configuration function for the DWC HDMI 3D TX PHY. Based on the available
1158 * information the DWC MHL PHY has the same register layout and is thus also
1159 * supported by this function.
1160 */
1161static int hdmi_phy_configure_dwc_hdmi_3d_tx(struct dw_hdmi *hdmi,
1162 const struct dw_hdmi_plat_data *pdata,
1163 unsigned long mpixelclock)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001164{
Russell King39cc1532015-03-31 18:34:11 +01001165 const struct dw_hdmi_mpll_config *mpll_config = pdata->mpll_cfg;
1166 const struct dw_hdmi_curr_ctrl *curr_ctrl = pdata->cur_ctr;
1167 const struct dw_hdmi_phy_config *phy_config = pdata->phy_config;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001168
Russell King39cc1532015-03-31 18:34:11 +01001169 /* PLL/MPLL Cfg - always match on final entry */
1170 for (; mpll_config->mpixelclock != ~0UL; mpll_config++)
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001171 if (mpixelclock <= mpll_config->mpixelclock)
Russell King39cc1532015-03-31 18:34:11 +01001172 break;
1173
1174 for (; curr_ctrl->mpixelclock != ~0UL; curr_ctrl++)
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001175 if (mpixelclock <= curr_ctrl->mpixelclock)
Russell King39cc1532015-03-31 18:34:11 +01001176 break;
1177
1178 for (; phy_config->mpixelclock != ~0UL; phy_config++)
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001179 if (mpixelclock <= phy_config->mpixelclock)
Russell King39cc1532015-03-31 18:34:11 +01001180 break;
1181
1182 if (mpll_config->mpixelclock == ~0UL ||
1183 curr_ctrl->mpixelclock == ~0UL ||
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001184 phy_config->mpixelclock == ~0UL)
Russell King39cc1532015-03-31 18:34:11 +01001185 return -EINVAL;
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001186
1187 dw_hdmi_phy_i2c_write(hdmi, mpll_config->res[0].cpce,
1188 HDMI_3D_TX_PHY_CPCE_CTRL);
1189 dw_hdmi_phy_i2c_write(hdmi, mpll_config->res[0].gmp,
1190 HDMI_3D_TX_PHY_GMPCTRL);
1191 dw_hdmi_phy_i2c_write(hdmi, curr_ctrl->curr[0],
1192 HDMI_3D_TX_PHY_CURRCTRL);
1193
1194 dw_hdmi_phy_i2c_write(hdmi, 0, HDMI_3D_TX_PHY_PLLPHBYCTRL);
1195 dw_hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK,
1196 HDMI_3D_TX_PHY_MSM_CTRL);
1197
1198 dw_hdmi_phy_i2c_write(hdmi, phy_config->term, HDMI_3D_TX_PHY_TXTERM);
1199 dw_hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr,
1200 HDMI_3D_TX_PHY_CKSYMTXCTRL);
1201 dw_hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr,
1202 HDMI_3D_TX_PHY_VLEVCTRL);
1203
1204 /* Override and disable clock termination. */
1205 dw_hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE,
1206 HDMI_3D_TX_PHY_CKCALCTRL);
1207
1208 return 0;
1209}
1210
1211static int hdmi_phy_configure(struct dw_hdmi *hdmi)
1212{
1213 const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
1214 const struct dw_hdmi_plat_data *pdata = hdmi->plat_data;
1215 unsigned long mpixelclock = hdmi->hdmi_data.video_mode.mpixelclock;
1216 int ret;
Russell King39cc1532015-03-31 18:34:11 +01001217
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02001218 dw_hdmi_phy_power_off(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001219
Laurent Pinchart2668db32017-01-17 10:29:09 +02001220 /* Leave low power consumption mode by asserting SVSRET. */
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001221 if (phy->has_svsret)
Laurent Pinchart2668db32017-01-17 10:29:09 +02001222 dw_hdmi_phy_enable_svsret(hdmi, 1);
1223
Jernej Skrabec57659162018-02-14 21:08:58 +01001224 dw_hdmi_phy_reset(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001225
1226 hdmi_writeb(hdmi, HDMI_MC_HEACPHY_RST_ASSERT, HDMI_MC_HEACPHY_RST);
1227
Jernej Skrabec57659162018-02-14 21:08:58 +01001228 dw_hdmi_phy_i2c_set_addr(hdmi, HDMI_PHY_I2CM_SLAVE_ADDR_PHY_GEN2);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001229
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001230 /* Write to the PHY as configured by the platform */
1231 if (pdata->configure_phy)
1232 ret = pdata->configure_phy(hdmi, pdata, mpixelclock);
1233 else
1234 ret = phy->configure(hdmi, pdata, mpixelclock);
1235 if (ret) {
1236 dev_err(hdmi->dev, "PHY configuration failed (clock %lu)\n",
1237 mpixelclock);
1238 return ret;
1239 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001240
Laurent Pinchart181e0ef2017-03-06 01:35:57 +02001241 return dw_hdmi_phy_power_on(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001242}
1243
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001244static int dw_hdmi_phy_init(struct dw_hdmi *hdmi, void *data,
1245 struct drm_display_mode *mode)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001246{
1247 int i, ret;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001248
1249 /* HDMI Phy spec says to do the phy initialization sequence twice */
1250 for (i = 0; i < 2; i++) {
Andy Yanb21f4b62014-12-05 14:26:31 +08001251 dw_hdmi_phy_sel_data_en_pol(hdmi, 1);
1252 dw_hdmi_phy_sel_interface_control(hdmi, 0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001253
Laurent Pinchart8b9e1c02017-03-03 19:19:59 +02001254 ret = hdmi_phy_configure(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001255 if (ret)
1256 return ret;
1257 }
1258
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001259 return 0;
1260}
1261
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001262static void dw_hdmi_phy_disable(struct dw_hdmi *hdmi, void *data)
1263{
1264 dw_hdmi_phy_power_off(hdmi);
1265}
1266
Jernej Skrabec57659162018-02-14 21:08:58 +01001267enum drm_connector_status dw_hdmi_phy_read_hpd(struct dw_hdmi *hdmi,
1268 void *data)
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001269{
1270 return hdmi_readb(hdmi, HDMI_PHY_STAT0) & HDMI_PHY_HPD ?
1271 connector_status_connected : connector_status_disconnected;
1272}
Jernej Skrabec57659162018-02-14 21:08:58 +01001273EXPORT_SYMBOL_GPL(dw_hdmi_phy_read_hpd);
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001274
Jernej Skrabec57659162018-02-14 21:08:58 +01001275void dw_hdmi_phy_update_hpd(struct dw_hdmi *hdmi, void *data,
1276 bool force, bool disabled, bool rxsense)
Neil Armstrong386d3292017-04-04 14:31:59 +02001277{
1278 u8 old_mask = hdmi->phy_mask;
1279
1280 if (force || disabled || !rxsense)
1281 hdmi->phy_mask |= HDMI_PHY_RX_SENSE;
1282 else
1283 hdmi->phy_mask &= ~HDMI_PHY_RX_SENSE;
1284
1285 if (old_mask != hdmi->phy_mask)
1286 hdmi_writeb(hdmi, hdmi->phy_mask, HDMI_PHY_MASK0);
1287}
Jernej Skrabec57659162018-02-14 21:08:58 +01001288EXPORT_SYMBOL_GPL(dw_hdmi_phy_update_hpd);
Neil Armstrong386d3292017-04-04 14:31:59 +02001289
Jernej Skrabec57659162018-02-14 21:08:58 +01001290void dw_hdmi_phy_setup_hpd(struct dw_hdmi *hdmi, void *data)
Neil Armstrong386d3292017-04-04 14:31:59 +02001291{
1292 /*
1293 * Configure the PHY RX SENSE and HPD interrupts polarities and clear
1294 * any pending interrupt.
1295 */
1296 hdmi_writeb(hdmi, HDMI_PHY_HPD | HDMI_PHY_RX_SENSE, HDMI_PHY_POL0);
1297 hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE,
1298 HDMI_IH_PHY_STAT0);
1299
1300 /* Enable cable hot plug irq. */
1301 hdmi_writeb(hdmi, hdmi->phy_mask, HDMI_PHY_MASK0);
1302
1303 /* Clear and unmute interrupts. */
1304 hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE,
1305 HDMI_IH_PHY_STAT0);
1306 hdmi_writeb(hdmi, ~(HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE),
1307 HDMI_IH_MUTE_PHY_STAT0);
1308}
Jernej Skrabec57659162018-02-14 21:08:58 +01001309EXPORT_SYMBOL_GPL(dw_hdmi_phy_setup_hpd);
Neil Armstrong386d3292017-04-04 14:31:59 +02001310
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001311static const struct dw_hdmi_phy_ops dw_hdmi_synopsys_phy_ops = {
1312 .init = dw_hdmi_phy_init,
1313 .disable = dw_hdmi_phy_disable,
1314 .read_hpd = dw_hdmi_phy_read_hpd,
Neil Armstrong386d3292017-04-04 14:31:59 +02001315 .update_hpd = dw_hdmi_phy_update_hpd,
1316 .setup_hpd = dw_hdmi_phy_setup_hpd,
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001317};
1318
1319/* -----------------------------------------------------------------------------
1320 * HDMI TX Setup
1321 */
1322
Andy Yanb21f4b62014-12-05 14:26:31 +08001323static void hdmi_tx_hdcp_config(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001324{
Russell King812bc612013-11-04 12:42:02 +00001325 u8 de;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001326
1327 if (hdmi->hdmi_data.video_mode.mdataenablepolarity)
1328 de = HDMI_A_VIDPOLCFG_DATAENPOL_ACTIVE_HIGH;
1329 else
1330 de = HDMI_A_VIDPOLCFG_DATAENPOL_ACTIVE_LOW;
1331
1332 /* disable rx detect */
Russell King812bc612013-11-04 12:42:02 +00001333 hdmi_modb(hdmi, HDMI_A_HDCPCFG0_RXDETECT_DISABLE,
1334 HDMI_A_HDCPCFG0_RXDETECT_MASK, HDMI_A_HDCPCFG0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001335
Russell King812bc612013-11-04 12:42:02 +00001336 hdmi_modb(hdmi, de, HDMI_A_VIDPOLCFG_DATAENPOL_MASK, HDMI_A_VIDPOLCFG);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001337
Russell King812bc612013-11-04 12:42:02 +00001338 hdmi_modb(hdmi, HDMI_A_HDCPCFG1_ENCRYPTIONDISABLE_DISABLE,
1339 HDMI_A_HDCPCFG1_ENCRYPTIONDISABLE_MASK, HDMI_A_HDCPCFG1);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001340}
1341
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001342static void hdmi_config_AVI(struct dw_hdmi *hdmi, struct drm_display_mode *mode)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001343{
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001344 struct hdmi_avi_infoframe frame;
1345 u8 val;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001346
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001347 /* Initialise info frame from DRM mode */
Shashank Sharma0c1f5282017-07-13 21:03:07 +05301348 drm_hdmi_avi_infoframe_from_display_mode(&frame, mode, false);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001349
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001350 if (hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format))
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001351 frame.colorspace = HDMI_COLORSPACE_YUV444;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001352 else if (hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format))
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001353 frame.colorspace = HDMI_COLORSPACE_YUV422;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001354 else
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001355 frame.colorspace = HDMI_COLORSPACE_RGB;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001356
1357 /* Set up colorimetry */
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001358 switch (hdmi->hdmi_data.enc_out_encoding) {
1359 case V4L2_YCBCR_ENC_601:
1360 if (hdmi->hdmi_data.enc_in_encoding == V4L2_YCBCR_ENC_XV601)
1361 frame.colorimetry = HDMI_COLORIMETRY_EXTENDED;
1362 else
1363 frame.colorimetry = HDMI_COLORIMETRY_ITU_601;
1364 frame.extended_colorimetry =
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001365 HDMI_EXTENDED_COLORIMETRY_XV_YCC_601;
Dan Carpenterf40d6562017-04-06 08:21:32 +03001366 break;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001367 case V4L2_YCBCR_ENC_709:
1368 if (hdmi->hdmi_data.enc_in_encoding == V4L2_YCBCR_ENC_XV709)
1369 frame.colorimetry = HDMI_COLORIMETRY_EXTENDED;
1370 else
1371 frame.colorimetry = HDMI_COLORIMETRY_ITU_709;
1372 frame.extended_colorimetry =
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001373 HDMI_EXTENDED_COLORIMETRY_XV_YCC_709;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001374 break;
1375 default: /* Carries no data */
1376 frame.colorimetry = HDMI_COLORIMETRY_ITU_601;
1377 frame.extended_colorimetry =
1378 HDMI_EXTENDED_COLORIMETRY_XV_YCC_601;
1379 break;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001380 }
1381
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001382 frame.scan_mode = HDMI_SCAN_MODE_NONE;
1383
1384 /*
1385 * The Designware IP uses a different byte format from standard
1386 * AVI info frames, though generally the bits are in the correct
1387 * bytes.
1388 */
1389
1390 /*
Jose Abreub0118e72016-08-29 10:30:51 +01001391 * AVI data byte 1 differences: Colorspace in bits 0,1 rather than 5,6,
1392 * scan info in bits 4,5 rather than 0,1 and active aspect present in
1393 * bit 6 rather than 4.
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001394 */
Jose Abreub0118e72016-08-29 10:30:51 +01001395 val = (frame.scan_mode & 3) << 4 | (frame.colorspace & 3);
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001396 if (frame.active_aspect & 15)
1397 val |= HDMI_FC_AVICONF0_ACTIVE_FMT_INFO_PRESENT;
1398 if (frame.top_bar || frame.bottom_bar)
1399 val |= HDMI_FC_AVICONF0_BAR_DATA_HORIZ_BAR;
1400 if (frame.left_bar || frame.right_bar)
1401 val |= HDMI_FC_AVICONF0_BAR_DATA_VERT_BAR;
1402 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF0);
1403
1404 /* AVI data byte 2 differences: none */
1405 val = ((frame.colorimetry & 0x3) << 6) |
1406 ((frame.picture_aspect & 0x3) << 4) |
1407 (frame.active_aspect & 0xf);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001408 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF1);
1409
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001410 /* AVI data byte 3 differences: none */
1411 val = ((frame.extended_colorimetry & 0x7) << 4) |
1412 ((frame.quantization_range & 0x3) << 2) |
1413 (frame.nups & 0x3);
1414 if (frame.itc)
1415 val |= HDMI_FC_AVICONF2_IT_CONTENT_VALID;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001416 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF2);
1417
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001418 /* AVI data byte 4 differences: none */
1419 val = frame.video_code & 0x7f;
1420 hdmi_writeb(hdmi, val, HDMI_FC_AVIVID);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001421
1422 /* AVI Data Byte 5- set up input and output pixel repetition */
1423 val = (((hdmi->hdmi_data.video_mode.mpixelrepetitioninput + 1) <<
1424 HDMI_FC_PRCONF_INCOMING_PR_FACTOR_OFFSET) &
1425 HDMI_FC_PRCONF_INCOMING_PR_FACTOR_MASK) |
1426 ((hdmi->hdmi_data.video_mode.mpixelrepetitionoutput <<
1427 HDMI_FC_PRCONF_OUTPUT_PR_FACTOR_OFFSET) &
1428 HDMI_FC_PRCONF_OUTPUT_PR_FACTOR_MASK);
1429 hdmi_writeb(hdmi, val, HDMI_FC_PRCONF);
1430
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001431 /*
1432 * AVI data byte 5 differences: content type in 0,1 rather than 4,5,
1433 * ycc range in bits 2,3 rather than 6,7
1434 */
1435 val = ((frame.ycc_quantization_range & 0x3) << 2) |
1436 (frame.content_type & 0x3);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001437 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF3);
1438
1439 /* AVI Data Bytes 6-13 */
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001440 hdmi_writeb(hdmi, frame.top_bar & 0xff, HDMI_FC_AVIETB0);
1441 hdmi_writeb(hdmi, (frame.top_bar >> 8) & 0xff, HDMI_FC_AVIETB1);
1442 hdmi_writeb(hdmi, frame.bottom_bar & 0xff, HDMI_FC_AVISBB0);
1443 hdmi_writeb(hdmi, (frame.bottom_bar >> 8) & 0xff, HDMI_FC_AVISBB1);
1444 hdmi_writeb(hdmi, frame.left_bar & 0xff, HDMI_FC_AVIELB0);
1445 hdmi_writeb(hdmi, (frame.left_bar >> 8) & 0xff, HDMI_FC_AVIELB1);
1446 hdmi_writeb(hdmi, frame.right_bar & 0xff, HDMI_FC_AVISRB0);
1447 hdmi_writeb(hdmi, (frame.right_bar >> 8) & 0xff, HDMI_FC_AVISRB1);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001448}
1449
Nickey Yang9aa1eca2017-03-21 15:36:17 +08001450static void hdmi_config_vendor_specific_infoframe(struct dw_hdmi *hdmi,
1451 struct drm_display_mode *mode)
1452{
1453 struct hdmi_vendor_infoframe frame;
1454 u8 buffer[10];
1455 ssize_t err;
1456
Ville Syrjäläf1781e92017-11-13 19:04:19 +02001457 err = drm_hdmi_vendor_infoframe_from_display_mode(&frame,
1458 &hdmi->connector,
1459 mode);
Nickey Yang9aa1eca2017-03-21 15:36:17 +08001460 if (err < 0)
1461 /*
1462 * Going into that statement does not means vendor infoframe
1463 * fails. It just informed us that vendor infoframe is not
1464 * needed for the selected mode. Only 4k or stereoscopic 3D
1465 * mode requires vendor infoframe. So just simply return.
1466 */
1467 return;
1468
1469 err = hdmi_vendor_infoframe_pack(&frame, buffer, sizeof(buffer));
1470 if (err < 0) {
1471 dev_err(hdmi->dev, "Failed to pack vendor infoframe: %zd\n",
1472 err);
1473 return;
1474 }
1475 hdmi_mask_writeb(hdmi, 0, HDMI_FC_DATAUTO0, HDMI_FC_DATAUTO0_VSD_OFFSET,
1476 HDMI_FC_DATAUTO0_VSD_MASK);
1477
1478 /* Set the length of HDMI vendor specific InfoFrame payload */
1479 hdmi_writeb(hdmi, buffer[2], HDMI_FC_VSDSIZE);
1480
1481 /* Set 24bit IEEE Registration Identifier */
1482 hdmi_writeb(hdmi, buffer[4], HDMI_FC_VSDIEEEID0);
1483 hdmi_writeb(hdmi, buffer[5], HDMI_FC_VSDIEEEID1);
1484 hdmi_writeb(hdmi, buffer[6], HDMI_FC_VSDIEEEID2);
1485
1486 /* Set HDMI_Video_Format and HDMI_VIC/3D_Structure */
1487 hdmi_writeb(hdmi, buffer[7], HDMI_FC_VSDPAYLOAD0);
1488 hdmi_writeb(hdmi, buffer[8], HDMI_FC_VSDPAYLOAD1);
1489
1490 if (frame.s3d_struct >= HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF)
1491 hdmi_writeb(hdmi, buffer[9], HDMI_FC_VSDPAYLOAD2);
1492
1493 /* Packet frame interpolation */
1494 hdmi_writeb(hdmi, 1, HDMI_FC_DATAUTO1);
1495
1496 /* Auto packets per frame and line spacing */
1497 hdmi_writeb(hdmi, 0x11, HDMI_FC_DATAUTO2);
1498
1499 /* Configures the Frame Composer On RDRB mode */
1500 hdmi_mask_writeb(hdmi, 1, HDMI_FC_DATAUTO0, HDMI_FC_DATAUTO0_VSD_OFFSET,
1501 HDMI_FC_DATAUTO0_VSD_MASK);
1502}
1503
Andy Yanb21f4b62014-12-05 14:26:31 +08001504static void hdmi_av_composer(struct dw_hdmi *hdmi,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001505 const struct drm_display_mode *mode)
1506{
1507 u8 inv_val;
1508 struct hdmi_vmode *vmode = &hdmi->hdmi_data.video_mode;
1509 int hblank, vblank, h_de_hs, v_de_vs, hsync_len, vsync_len;
Russell Kinge80b9f42015-07-21 11:08:25 +01001510 unsigned int vdisplay;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001511
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001512 vmode->mpixelclock = mode->clock * 1000;
1513
1514 dev_dbg(hdmi->dev, "final pixclk = %d\n", vmode->mpixelclock);
1515
1516 /* Set up HDMI_FC_INVIDCONF */
1517 inv_val = (hdmi->hdmi_data.hdcp_enable ?
1518 HDMI_FC_INVIDCONF_HDCP_KEEPOUT_ACTIVE :
1519 HDMI_FC_INVIDCONF_HDCP_KEEPOUT_INACTIVE);
1520
Russell Kingb91eee82015-03-27 23:27:17 +00001521 inv_val |= mode->flags & DRM_MODE_FLAG_PVSYNC ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001522 HDMI_FC_INVIDCONF_VSYNC_IN_POLARITY_ACTIVE_HIGH :
Russell Kingb91eee82015-03-27 23:27:17 +00001523 HDMI_FC_INVIDCONF_VSYNC_IN_POLARITY_ACTIVE_LOW;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001524
Russell Kingb91eee82015-03-27 23:27:17 +00001525 inv_val |= mode->flags & DRM_MODE_FLAG_PHSYNC ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001526 HDMI_FC_INVIDCONF_HSYNC_IN_POLARITY_ACTIVE_HIGH :
Russell Kingb91eee82015-03-27 23:27:17 +00001527 HDMI_FC_INVIDCONF_HSYNC_IN_POLARITY_ACTIVE_LOW;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001528
1529 inv_val |= (vmode->mdataenablepolarity ?
1530 HDMI_FC_INVIDCONF_DE_IN_POLARITY_ACTIVE_HIGH :
1531 HDMI_FC_INVIDCONF_DE_IN_POLARITY_ACTIVE_LOW);
1532
1533 if (hdmi->vic == 39)
1534 inv_val |= HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_HIGH;
1535 else
Russell Kingb91eee82015-03-27 23:27:17 +00001536 inv_val |= mode->flags & DRM_MODE_FLAG_INTERLACE ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001537 HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_HIGH :
Russell Kingb91eee82015-03-27 23:27:17 +00001538 HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_LOW;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001539
Russell Kingb91eee82015-03-27 23:27:17 +00001540 inv_val |= mode->flags & DRM_MODE_FLAG_INTERLACE ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001541 HDMI_FC_INVIDCONF_IN_I_P_INTERLACED :
Russell Kingb91eee82015-03-27 23:27:17 +00001542 HDMI_FC_INVIDCONF_IN_I_P_PROGRESSIVE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001543
Russell King05b13422015-07-21 15:35:52 +01001544 inv_val |= hdmi->sink_is_hdmi ?
1545 HDMI_FC_INVIDCONF_DVI_MODEZ_HDMI_MODE :
1546 HDMI_FC_INVIDCONF_DVI_MODEZ_DVI_MODE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001547
1548 hdmi_writeb(hdmi, inv_val, HDMI_FC_INVIDCONF);
1549
Russell Kinge80b9f42015-07-21 11:08:25 +01001550 vdisplay = mode->vdisplay;
1551 vblank = mode->vtotal - mode->vdisplay;
1552 v_de_vs = mode->vsync_start - mode->vdisplay;
1553 vsync_len = mode->vsync_end - mode->vsync_start;
1554
1555 /*
1556 * When we're setting an interlaced mode, we need
1557 * to adjust the vertical timing to suit.
1558 */
1559 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
1560 vdisplay /= 2;
1561 vblank /= 2;
1562 v_de_vs /= 2;
1563 vsync_len /= 2;
1564 }
1565
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001566 /* Set up horizontal active pixel width */
1567 hdmi_writeb(hdmi, mode->hdisplay >> 8, HDMI_FC_INHACTV1);
1568 hdmi_writeb(hdmi, mode->hdisplay, HDMI_FC_INHACTV0);
1569
1570 /* Set up vertical active lines */
Russell Kinge80b9f42015-07-21 11:08:25 +01001571 hdmi_writeb(hdmi, vdisplay >> 8, HDMI_FC_INVACTV1);
1572 hdmi_writeb(hdmi, vdisplay, HDMI_FC_INVACTV0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001573
1574 /* Set up horizontal blanking pixel region width */
1575 hblank = mode->htotal - mode->hdisplay;
1576 hdmi_writeb(hdmi, hblank >> 8, HDMI_FC_INHBLANK1);
1577 hdmi_writeb(hdmi, hblank, HDMI_FC_INHBLANK0);
1578
1579 /* Set up vertical blanking pixel region width */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001580 hdmi_writeb(hdmi, vblank, HDMI_FC_INVBLANK);
1581
1582 /* Set up HSYNC active edge delay width (in pixel clks) */
1583 h_de_hs = mode->hsync_start - mode->hdisplay;
1584 hdmi_writeb(hdmi, h_de_hs >> 8, HDMI_FC_HSYNCINDELAY1);
1585 hdmi_writeb(hdmi, h_de_hs, HDMI_FC_HSYNCINDELAY0);
1586
1587 /* Set up VSYNC active edge delay (in lines) */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001588 hdmi_writeb(hdmi, v_de_vs, HDMI_FC_VSYNCINDELAY);
1589
1590 /* Set up HSYNC active pulse width (in pixel clks) */
1591 hsync_len = mode->hsync_end - mode->hsync_start;
1592 hdmi_writeb(hdmi, hsync_len >> 8, HDMI_FC_HSYNCINWIDTH1);
1593 hdmi_writeb(hdmi, hsync_len, HDMI_FC_HSYNCINWIDTH0);
1594
1595 /* Set up VSYNC active edge delay (in lines) */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001596 hdmi_writeb(hdmi, vsync_len, HDMI_FC_VSYNCINWIDTH);
1597}
1598
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001599/* HDMI Initialization Step B.4 */
Andy Yanb21f4b62014-12-05 14:26:31 +08001600static void dw_hdmi_enable_video_path(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001601{
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001602 /* control period minimum duration */
1603 hdmi_writeb(hdmi, 12, HDMI_FC_CTRLDUR);
1604 hdmi_writeb(hdmi, 32, HDMI_FC_EXCTRLDUR);
1605 hdmi_writeb(hdmi, 1, HDMI_FC_EXCTRLSPAC);
1606
1607 /* Set to fill TMDS data channels */
1608 hdmi_writeb(hdmi, 0x0B, HDMI_FC_CH0PREAM);
1609 hdmi_writeb(hdmi, 0x16, HDMI_FC_CH1PREAM);
1610 hdmi_writeb(hdmi, 0x21, HDMI_FC_CH2PREAM);
1611
1612 /* Enable pixel clock and tmds data path */
Russell King7cc4ab22017-07-31 15:29:46 +01001613 hdmi->mc_clkdis |= HDMI_MC_CLKDIS_HDCPCLK_DISABLE |
1614 HDMI_MC_CLKDIS_CSCCLK_DISABLE |
1615 HDMI_MC_CLKDIS_AUDCLK_DISABLE |
1616 HDMI_MC_CLKDIS_PREPCLK_DISABLE |
1617 HDMI_MC_CLKDIS_TMDSCLK_DISABLE;
1618 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_PIXELCLK_DISABLE;
1619 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001620
Russell King7cc4ab22017-07-31 15:29:46 +01001621 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_TMDSCLK_DISABLE;
1622 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001623
1624 /* Enable csc path */
1625 if (is_color_space_conversion(hdmi)) {
Russell King7cc4ab22017-07-31 15:29:46 +01001626 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_CSCCLK_DISABLE;
1627 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001628 }
Laurent Pinchart8b9e1c02017-03-03 19:19:59 +02001629
Neil Armstrong14247d72017-03-03 19:20:00 +02001630 /* Enable color space conversion if needed */
1631 if (is_color_space_conversion(hdmi))
Laurent Pinchart8b9e1c02017-03-03 19:19:59 +02001632 hdmi_writeb(hdmi, HDMI_MC_FLOWCTRL_FEED_THROUGH_OFF_CSC_IN_PATH,
1633 HDMI_MC_FLOWCTRL);
1634 else
1635 hdmi_writeb(hdmi, HDMI_MC_FLOWCTRL_FEED_THROUGH_OFF_CSC_BYPASS,
1636 HDMI_MC_FLOWCTRL);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001637}
1638
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001639/* Workaround to clear the overflow condition */
Andy Yanb21f4b62014-12-05 14:26:31 +08001640static void dw_hdmi_clear_overflow(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001641{
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02001642 unsigned int count;
1643 unsigned int i;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001644 u8 val;
1645
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02001646 /*
1647 * Under some circumstances the Frame Composer arithmetic unit can miss
1648 * an FC register write due to being busy processing the previous one.
1649 * The issue can be worked around by issuing a TMDS software reset and
1650 * then write one of the FC registers several times.
1651 *
1652 * The number of iterations matters and depends on the HDMI TX revision
Jernej Skrabec46d1b422018-02-14 21:08:57 +01001653 * (and possibly on the platform). So far i.MX6Q (v1.30a), i.MX6DL
1654 * (v1.31a) and multiple Allwinner SoCs (v1.32a) have been identified
1655 * as needing the workaround, with 4 iterations for v1.30a and 1
1656 * iteration for others.
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02001657 */
1658
1659 switch (hdmi->version) {
1660 case 0x130a:
1661 count = 4;
1662 break;
1663 case 0x131a:
Jernej Skrabec46d1b422018-02-14 21:08:57 +01001664 case 0x132a:
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02001665 count = 1;
1666 break;
1667 default:
1668 return;
1669 }
1670
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001671 /* TMDS software reset */
1672 hdmi_writeb(hdmi, (u8)~HDMI_MC_SWRSTZ_TMDSSWRST_REQ, HDMI_MC_SWRSTZ);
1673
1674 val = hdmi_readb(hdmi, HDMI_FC_INVIDCONF);
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02001675 for (i = 0; i < count; i++)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001676 hdmi_writeb(hdmi, val, HDMI_FC_INVIDCONF);
1677}
1678
Andy Yanb21f4b62014-12-05 14:26:31 +08001679static void hdmi_enable_overflow_interrupts(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001680{
1681 hdmi_writeb(hdmi, 0, HDMI_FC_MASK2);
1682 hdmi_writeb(hdmi, 0, HDMI_IH_MUTE_FC_STAT2);
1683}
1684
Andy Yanb21f4b62014-12-05 14:26:31 +08001685static void hdmi_disable_overflow_interrupts(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001686{
1687 hdmi_writeb(hdmi, HDMI_IH_MUTE_FC_STAT2_OVERFLOW_MASK,
1688 HDMI_IH_MUTE_FC_STAT2);
1689}
1690
Andy Yanb21f4b62014-12-05 14:26:31 +08001691static int dw_hdmi_setup(struct dw_hdmi *hdmi, struct drm_display_mode *mode)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001692{
1693 int ret;
1694
1695 hdmi_disable_overflow_interrupts(hdmi);
1696
1697 hdmi->vic = drm_match_cea_mode(mode);
1698
1699 if (!hdmi->vic) {
1700 dev_dbg(hdmi->dev, "Non-CEA mode used in HDMI\n");
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001701 } else {
1702 dev_dbg(hdmi->dev, "CEA mode used vic=%d\n", hdmi->vic);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001703 }
1704
1705 if ((hdmi->vic == 6) || (hdmi->vic == 7) ||
Andy Yanb5878332014-12-05 14:23:52 +08001706 (hdmi->vic == 21) || (hdmi->vic == 22) ||
1707 (hdmi->vic == 2) || (hdmi->vic == 3) ||
1708 (hdmi->vic == 17) || (hdmi->vic == 18))
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001709 hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_601;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001710 else
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001711 hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_709;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001712
Russell Kingd10ca822015-07-21 11:25:00 +01001713 hdmi->hdmi_data.video_mode.mpixelrepetitionoutput = 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001714 hdmi->hdmi_data.video_mode.mpixelrepetitioninput = 0;
1715
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001716 /* TOFIX: Get input format from plat data or fallback to RGB888 */
Neil Armstronge20c29a2017-04-06 11:34:04 +02001717 if (hdmi->plat_data->input_bus_format)
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001718 hdmi->hdmi_data.enc_in_bus_format =
1719 hdmi->plat_data->input_bus_format;
1720 else
1721 hdmi->hdmi_data.enc_in_bus_format = MEDIA_BUS_FMT_RGB888_1X24;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001722
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001723 /* TOFIX: Get input encoding from plat data or fallback to none */
Neil Armstronge20c29a2017-04-06 11:34:04 +02001724 if (hdmi->plat_data->input_bus_encoding)
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001725 hdmi->hdmi_data.enc_in_encoding =
1726 hdmi->plat_data->input_bus_encoding;
1727 else
1728 hdmi->hdmi_data.enc_in_encoding = V4L2_YCBCR_ENC_DEFAULT;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001729
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001730 /* TOFIX: Default to RGB888 output format */
1731 hdmi->hdmi_data.enc_out_bus_format = MEDIA_BUS_FMT_RGB888_1X24;
1732
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001733 hdmi->hdmi_data.pix_repet_factor = 0;
1734 hdmi->hdmi_data.hdcp_enable = 0;
1735 hdmi->hdmi_data.video_mode.mdataenablepolarity = true;
1736
1737 /* HDMI Initialization Step B.1 */
1738 hdmi_av_composer(hdmi, mode);
1739
1740 /* HDMI Initializateion Step B.2 */
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001741 ret = hdmi->phy.ops->init(hdmi, hdmi->phy.data, &hdmi->previous_mode);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001742 if (ret)
1743 return ret;
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001744 hdmi->phy.enabled = true;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001745
1746 /* HDMI Initialization Step B.3 */
Andy Yanb21f4b62014-12-05 14:26:31 +08001747 dw_hdmi_enable_video_path(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001748
Russell Kingf709ec02015-07-21 16:09:39 +01001749 if (hdmi->sink_has_audio) {
1750 dev_dbg(hdmi->dev, "sink has audio support\n");
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001751
1752 /* HDMI Initialization Step E - Configure audio */
1753 hdmi_clk_regenerator_update_pixel_clock(hdmi);
Romain Perier57fbc052017-04-20 14:34:34 +05301754 hdmi_enable_audio_clk(hdmi, true);
Russell Kingf709ec02015-07-21 16:09:39 +01001755 }
1756
1757 /* not for DVI mode */
1758 if (hdmi->sink_is_hdmi) {
1759 dev_dbg(hdmi->dev, "%s HDMI mode\n", __func__);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001760
1761 /* HDMI Initialization Step F - Configure AVI InfoFrame */
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001762 hdmi_config_AVI(hdmi, mode);
Nickey Yang9aa1eca2017-03-21 15:36:17 +08001763 hdmi_config_vendor_specific_infoframe(hdmi, mode);
Russell King05b13422015-07-21 15:35:52 +01001764 } else {
1765 dev_dbg(hdmi->dev, "%s DVI mode\n", __func__);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001766 }
1767
1768 hdmi_video_packetize(hdmi);
1769 hdmi_video_csc(hdmi);
1770 hdmi_video_sample(hdmi);
1771 hdmi_tx_hdcp_config(hdmi);
1772
Andy Yanb21f4b62014-12-05 14:26:31 +08001773 dw_hdmi_clear_overflow(hdmi);
Russell King05b13422015-07-21 15:35:52 +01001774 if (hdmi->cable_plugin && hdmi->sink_is_hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001775 hdmi_enable_overflow_interrupts(hdmi);
1776
1777 return 0;
1778}
1779
Laurent Pincharta23d6262017-04-04 14:31:56 +02001780static void dw_hdmi_setup_i2c(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001781{
1782 hdmi_writeb(hdmi, HDMI_PHY_I2CM_INT_ADDR_DONE_POL,
1783 HDMI_PHY_I2CM_INT_ADDR);
1784
1785 hdmi_writeb(hdmi, HDMI_PHY_I2CM_CTLINT_ADDR_NAC_POL |
1786 HDMI_PHY_I2CM_CTLINT_ADDR_ARBITRATION_POL,
1787 HDMI_PHY_I2CM_CTLINT_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001788}
1789
Andy Yanb21f4b62014-12-05 14:26:31 +08001790static void initialize_hdmi_ih_mutes(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001791{
1792 u8 ih_mute;
1793
1794 /*
1795 * Boot up defaults are:
1796 * HDMI_IH_MUTE = 0x03 (disabled)
1797 * HDMI_IH_MUTE_* = 0x00 (enabled)
1798 *
1799 * Disable top level interrupt bits in HDMI block
1800 */
1801 ih_mute = hdmi_readb(hdmi, HDMI_IH_MUTE) |
1802 HDMI_IH_MUTE_MUTE_WAKEUP_INTERRUPT |
1803 HDMI_IH_MUTE_MUTE_ALL_INTERRUPT;
1804
1805 hdmi_writeb(hdmi, ih_mute, HDMI_IH_MUTE);
1806
1807 /* by default mask all interrupts */
1808 hdmi_writeb(hdmi, 0xff, HDMI_VP_MASK);
1809 hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK0);
1810 hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK1);
1811 hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK2);
1812 hdmi_writeb(hdmi, 0xff, HDMI_PHY_MASK0);
1813 hdmi_writeb(hdmi, 0xff, HDMI_PHY_I2CM_INT_ADDR);
1814 hdmi_writeb(hdmi, 0xff, HDMI_PHY_I2CM_CTLINT_ADDR);
1815 hdmi_writeb(hdmi, 0xff, HDMI_AUD_INT);
1816 hdmi_writeb(hdmi, 0xff, HDMI_AUD_SPDIFINT);
1817 hdmi_writeb(hdmi, 0xff, HDMI_AUD_HBR_MASK);
1818 hdmi_writeb(hdmi, 0xff, HDMI_GP_MASK);
1819 hdmi_writeb(hdmi, 0xff, HDMI_A_APIINTMSK);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001820 hdmi_writeb(hdmi, 0xff, HDMI_I2CM_INT);
1821 hdmi_writeb(hdmi, 0xff, HDMI_I2CM_CTLINT);
1822
1823 /* Disable interrupts in the IH_MUTE_* registers */
1824 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT0);
1825 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT1);
1826 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT2);
1827 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_AS_STAT0);
1828 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_PHY_STAT0);
1829 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_I2CM_STAT0);
1830 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_CEC_STAT0);
1831 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_VP_STAT0);
1832 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_I2CMPHY_STAT0);
1833 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_AHBDMAAUD_STAT0);
1834
1835 /* Enable top level interrupt bits in HDMI block */
1836 ih_mute &= ~(HDMI_IH_MUTE_MUTE_WAKEUP_INTERRUPT |
1837 HDMI_IH_MUTE_MUTE_ALL_INTERRUPT);
1838 hdmi_writeb(hdmi, ih_mute, HDMI_IH_MUTE);
1839}
1840
Andy Yanb21f4b62014-12-05 14:26:31 +08001841static void dw_hdmi_poweron(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001842{
Russell King381f05a2015-06-05 15:25:08 +01001843 hdmi->bridge_is_on = true;
Andy Yanb21f4b62014-12-05 14:26:31 +08001844 dw_hdmi_setup(hdmi, &hdmi->previous_mode);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001845}
1846
Andy Yanb21f4b62014-12-05 14:26:31 +08001847static void dw_hdmi_poweroff(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001848{
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001849 if (hdmi->phy.enabled) {
1850 hdmi->phy.ops->disable(hdmi, hdmi->phy.data);
1851 hdmi->phy.enabled = false;
1852 }
1853
Russell King381f05a2015-06-05 15:25:08 +01001854 hdmi->bridge_is_on = false;
1855}
1856
1857static void dw_hdmi_update_power(struct dw_hdmi *hdmi)
1858{
1859 int force = hdmi->force;
1860
1861 if (hdmi->disabled) {
1862 force = DRM_FORCE_OFF;
1863 } else if (force == DRM_FORCE_UNSPECIFIED) {
Russell Kingaeac23b2015-06-05 13:46:22 +01001864 if (hdmi->rxsense)
Russell King381f05a2015-06-05 15:25:08 +01001865 force = DRM_FORCE_ON;
1866 else
1867 force = DRM_FORCE_OFF;
1868 }
1869
1870 if (force == DRM_FORCE_OFF) {
1871 if (hdmi->bridge_is_on)
1872 dw_hdmi_poweroff(hdmi);
1873 } else {
1874 if (!hdmi->bridge_is_on)
1875 dw_hdmi_poweron(hdmi);
1876 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001877}
1878
Russell Kingaeac23b2015-06-05 13:46:22 +01001879/*
1880 * Adjust the detection of RXSENSE according to whether we have a forced
1881 * connection mode enabled, or whether we have been disabled. There is
1882 * no point processing RXSENSE interrupts if we have a forced connection
1883 * state, or DRM has us disabled.
1884 *
1885 * We also disable rxsense interrupts when we think we're disconnected
1886 * to avoid floating TDMS signals giving false rxsense interrupts.
1887 *
1888 * Note: we still need to listen for HPD interrupts even when DRM has us
1889 * disabled so that we can detect a connect event.
1890 */
1891static void dw_hdmi_update_phy_mask(struct dw_hdmi *hdmi)
1892{
Neil Armstrong386d3292017-04-04 14:31:59 +02001893 if (hdmi->phy.ops->update_hpd)
1894 hdmi->phy.ops->update_hpd(hdmi, hdmi->phy.data,
1895 hdmi->force, hdmi->disabled,
1896 hdmi->rxsense);
Laurent Pincharta23d6262017-04-04 14:31:56 +02001897}
1898
Andy Yanb21f4b62014-12-05 14:26:31 +08001899static enum drm_connector_status
1900dw_hdmi_connector_detect(struct drm_connector *connector, bool force)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001901{
Andy Yanb21f4b62014-12-05 14:26:31 +08001902 struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
Russell Kingd94905e2013-11-03 22:23:24 +00001903 connector);
Russell King98dbead2014-04-18 10:46:45 +01001904
Russell King381f05a2015-06-05 15:25:08 +01001905 mutex_lock(&hdmi->mutex);
1906 hdmi->force = DRM_FORCE_UNSPECIFIED;
1907 dw_hdmi_update_power(hdmi);
Russell Kingaeac23b2015-06-05 13:46:22 +01001908 dw_hdmi_update_phy_mask(hdmi);
Russell King381f05a2015-06-05 15:25:08 +01001909 mutex_unlock(&hdmi->mutex);
1910
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001911 return hdmi->phy.ops->read_hpd(hdmi, hdmi->phy.data);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001912}
1913
Andy Yanb21f4b62014-12-05 14:26:31 +08001914static int dw_hdmi_connector_get_modes(struct drm_connector *connector)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001915{
Andy Yanb21f4b62014-12-05 14:26:31 +08001916 struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001917 connector);
1918 struct edid *edid;
Doug Anderson6c7e66e2015-06-04 11:04:36 -07001919 int ret = 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001920
1921 if (!hdmi->ddc)
1922 return 0;
1923
1924 edid = drm_get_edid(connector, hdmi->ddc);
1925 if (edid) {
1926 dev_dbg(hdmi->dev, "got edid: width[%d] x height[%d]\n",
1927 edid->width_cm, edid->height_cm);
1928
Russell King05b13422015-07-21 15:35:52 +01001929 hdmi->sink_is_hdmi = drm_detect_hdmi_monitor(edid);
Russell Kingf709ec02015-07-21 16:09:39 +01001930 hdmi->sink_has_audio = drm_detect_monitor_audio(edid);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001931 drm_mode_connector_update_edid_property(connector, edid);
Russell Kinge84b8d72017-07-31 15:29:41 +01001932 cec_notifier_set_phys_addr_from_edid(hdmi->cec_notifier, edid);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001933 ret = drm_add_edid_modes(connector, edid);
1934 kfree(edid);
1935 } else {
1936 dev_dbg(hdmi->dev, "failed to get edid\n");
1937 }
1938
Doug Anderson6c7e66e2015-06-04 11:04:36 -07001939 return ret;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001940}
1941
Russell King381f05a2015-06-05 15:25:08 +01001942static void dw_hdmi_connector_force(struct drm_connector *connector)
1943{
1944 struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
1945 connector);
1946
1947 mutex_lock(&hdmi->mutex);
1948 hdmi->force = connector->force;
1949 dw_hdmi_update_power(hdmi);
Russell Kingaeac23b2015-06-05 13:46:22 +01001950 dw_hdmi_update_phy_mask(hdmi);
Russell King381f05a2015-06-05 15:25:08 +01001951 mutex_unlock(&hdmi->mutex);
1952}
1953
Ville Syrjälädae91e42015-12-15 12:21:02 +01001954static const struct drm_connector_funcs dw_hdmi_connector_funcs = {
Mark Yao2c5b2cc2015-11-30 18:33:40 +08001955 .fill_modes = drm_helper_probe_single_connector_modes,
1956 .detect = dw_hdmi_connector_detect,
Marek Vasutfdd83262016-10-05 16:31:33 +02001957 .destroy = drm_connector_cleanup,
Mark Yao2c5b2cc2015-11-30 18:33:40 +08001958 .force = dw_hdmi_connector_force,
1959 .reset = drm_atomic_helper_connector_reset,
1960 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
1961 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
1962};
1963
Ville Syrjälädae91e42015-12-15 12:21:02 +01001964static const struct drm_connector_helper_funcs dw_hdmi_connector_helper_funcs = {
Andy Yanb21f4b62014-12-05 14:26:31 +08001965 .get_modes = dw_hdmi_connector_get_modes,
Boris Brezillonc2a441f2016-06-07 13:48:15 +02001966 .best_encoder = drm_atomic_helper_best_encoder,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001967};
1968
Laurent Pinchartd2ae94a2017-01-17 10:28:59 +02001969static int dw_hdmi_bridge_attach(struct drm_bridge *bridge)
1970{
1971 struct dw_hdmi *hdmi = bridge->driver_private;
1972 struct drm_encoder *encoder = bridge->encoder;
1973 struct drm_connector *connector = &hdmi->connector;
1974
1975 connector->interlace_allowed = 1;
1976 connector->polled = DRM_CONNECTOR_POLL_HPD;
1977
1978 drm_connector_helper_add(connector, &dw_hdmi_connector_helper_funcs);
1979
1980 drm_connector_init(bridge->dev, connector, &dw_hdmi_connector_funcs,
1981 DRM_MODE_CONNECTOR_HDMIA);
1982
1983 drm_mode_connector_attach_encoder(connector, encoder);
1984
1985 return 0;
1986}
1987
Jose Abreub0febde2017-05-25 15:19:19 +01001988static enum drm_mode_status
1989dw_hdmi_bridge_mode_valid(struct drm_bridge *bridge,
1990 const struct drm_display_mode *mode)
Romain Perier6ce2ca52017-04-07 14:17:43 +02001991{
1992 struct dw_hdmi *hdmi = bridge->driver_private;
1993 struct drm_connector *connector = &hdmi->connector;
Jose Abreub0febde2017-05-25 15:19:19 +01001994 enum drm_mode_status mode_status = MODE_OK;
Romain Perier6ce2ca52017-04-07 14:17:43 +02001995
Jose Abreub0febde2017-05-25 15:19:19 +01001996 /* We don't support double-clocked modes */
1997 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
1998 return MODE_BAD;
1999
2000 if (hdmi->plat_data->mode_valid)
2001 mode_status = hdmi->plat_data->mode_valid(connector, mode);
2002
2003 return mode_status;
Romain Perier6ce2ca52017-04-07 14:17:43 +02002004}
2005
Laurent Pinchartfd30b382017-01-17 10:28:58 +02002006static void dw_hdmi_bridge_mode_set(struct drm_bridge *bridge,
2007 struct drm_display_mode *orig_mode,
2008 struct drm_display_mode *mode)
2009{
2010 struct dw_hdmi *hdmi = bridge->driver_private;
2011
2012 mutex_lock(&hdmi->mutex);
2013
2014 /* Store the display mode for plugin/DKMS poweron events */
2015 memcpy(&hdmi->previous_mode, mode, sizeof(hdmi->previous_mode));
2016
2017 mutex_unlock(&hdmi->mutex);
2018}
2019
2020static void dw_hdmi_bridge_disable(struct drm_bridge *bridge)
2021{
2022 struct dw_hdmi *hdmi = bridge->driver_private;
2023
2024 mutex_lock(&hdmi->mutex);
2025 hdmi->disabled = true;
2026 dw_hdmi_update_power(hdmi);
2027 dw_hdmi_update_phy_mask(hdmi);
2028 mutex_unlock(&hdmi->mutex);
2029}
2030
2031static void dw_hdmi_bridge_enable(struct drm_bridge *bridge)
2032{
2033 struct dw_hdmi *hdmi = bridge->driver_private;
2034
2035 mutex_lock(&hdmi->mutex);
2036 hdmi->disabled = false;
2037 dw_hdmi_update_power(hdmi);
2038 dw_hdmi_update_phy_mask(hdmi);
2039 mutex_unlock(&hdmi->mutex);
2040}
2041
Ville Syrjälädae91e42015-12-15 12:21:02 +01002042static const struct drm_bridge_funcs dw_hdmi_bridge_funcs = {
Laurent Pinchartd2ae94a2017-01-17 10:28:59 +02002043 .attach = dw_hdmi_bridge_attach,
Andy Yanb21f4b62014-12-05 14:26:31 +08002044 .enable = dw_hdmi_bridge_enable,
2045 .disable = dw_hdmi_bridge_disable,
Andy Yanb21f4b62014-12-05 14:26:31 +08002046 .mode_set = dw_hdmi_bridge_mode_set,
Jose Abreub0febde2017-05-25 15:19:19 +01002047 .mode_valid = dw_hdmi_bridge_mode_valid,
Andy Yan3d1b35a2014-12-05 14:25:05 +08002048};
2049
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002050static irqreturn_t dw_hdmi_i2c_irq(struct dw_hdmi *hdmi)
2051{
2052 struct dw_hdmi_i2c *i2c = hdmi->i2c;
2053 unsigned int stat;
2054
2055 stat = hdmi_readb(hdmi, HDMI_IH_I2CM_STAT0);
2056 if (!stat)
2057 return IRQ_NONE;
2058
2059 hdmi_writeb(hdmi, stat, HDMI_IH_I2CM_STAT0);
2060
2061 i2c->stat = stat;
2062
2063 complete(&i2c->cmp);
2064
2065 return IRQ_HANDLED;
2066}
2067
Andy Yanb21f4b62014-12-05 14:26:31 +08002068static irqreturn_t dw_hdmi_hardirq(int irq, void *dev_id)
Russell Kingd94905e2013-11-03 22:23:24 +00002069{
Andy Yanb21f4b62014-12-05 14:26:31 +08002070 struct dw_hdmi *hdmi = dev_id;
Russell Kingd94905e2013-11-03 22:23:24 +00002071 u8 intr_stat;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002072 irqreturn_t ret = IRQ_NONE;
2073
2074 if (hdmi->i2c)
2075 ret = dw_hdmi_i2c_irq(hdmi);
Russell Kingd94905e2013-11-03 22:23:24 +00002076
2077 intr_stat = hdmi_readb(hdmi, HDMI_IH_PHY_STAT0);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002078 if (intr_stat) {
Russell Kingd94905e2013-11-03 22:23:24 +00002079 hdmi_writeb(hdmi, ~0, HDMI_IH_MUTE_PHY_STAT0);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002080 return IRQ_WAKE_THREAD;
2081 }
Russell Kingd94905e2013-11-03 22:23:24 +00002082
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002083 return ret;
Russell Kingd94905e2013-11-03 22:23:24 +00002084}
2085
Neil Armstrong386d3292017-04-04 14:31:59 +02002086void __dw_hdmi_setup_rx_sense(struct dw_hdmi *hdmi, bool hpd, bool rx_sense)
2087{
2088 mutex_lock(&hdmi->mutex);
2089
2090 if (!hdmi->force) {
2091 /*
2092 * If the RX sense status indicates we're disconnected,
2093 * clear the software rxsense status.
2094 */
2095 if (!rx_sense)
2096 hdmi->rxsense = false;
2097
2098 /*
2099 * Only set the software rxsense status when both
2100 * rxsense and hpd indicates we're connected.
2101 * This avoids what seems to be bad behaviour in
2102 * at least iMX6S versions of the phy.
2103 */
2104 if (hpd)
2105 hdmi->rxsense = true;
2106
2107 dw_hdmi_update_power(hdmi);
2108 dw_hdmi_update_phy_mask(hdmi);
2109 }
2110 mutex_unlock(&hdmi->mutex);
2111}
2112
2113void dw_hdmi_setup_rx_sense(struct device *dev, bool hpd, bool rx_sense)
2114{
2115 struct dw_hdmi *hdmi = dev_get_drvdata(dev);
2116
2117 __dw_hdmi_setup_rx_sense(hdmi, hpd, rx_sense);
2118}
2119EXPORT_SYMBOL_GPL(dw_hdmi_setup_rx_sense);
2120
Andy Yanb21f4b62014-12-05 14:26:31 +08002121static irqreturn_t dw_hdmi_irq(int irq, void *dev_id)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002122{
Andy Yanb21f4b62014-12-05 14:26:31 +08002123 struct dw_hdmi *hdmi = dev_id;
Russell Kingaeac23b2015-06-05 13:46:22 +01002124 u8 intr_stat, phy_int_pol, phy_pol_mask, phy_stat;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002125
2126 intr_stat = hdmi_readb(hdmi, HDMI_IH_PHY_STAT0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002127 phy_int_pol = hdmi_readb(hdmi, HDMI_PHY_POL0);
Russell Kingaeac23b2015-06-05 13:46:22 +01002128 phy_stat = hdmi_readb(hdmi, HDMI_PHY_STAT0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002129
Russell Kingaeac23b2015-06-05 13:46:22 +01002130 phy_pol_mask = 0;
2131 if (intr_stat & HDMI_IH_PHY_STAT0_HPD)
2132 phy_pol_mask |= HDMI_PHY_HPD;
2133 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE0)
2134 phy_pol_mask |= HDMI_PHY_RX_SENSE0;
2135 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE1)
2136 phy_pol_mask |= HDMI_PHY_RX_SENSE1;
2137 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE2)
2138 phy_pol_mask |= HDMI_PHY_RX_SENSE2;
2139 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE3)
2140 phy_pol_mask |= HDMI_PHY_RX_SENSE3;
2141
2142 if (phy_pol_mask)
2143 hdmi_modb(hdmi, ~phy_int_pol, phy_pol_mask, HDMI_PHY_POL0);
2144
2145 /*
2146 * RX sense tells us whether the TDMS transmitters are detecting
2147 * load - in other words, there's something listening on the
2148 * other end of the link. Use this to decide whether we should
2149 * power on the phy as HPD may be toggled by the sink to merely
2150 * ask the source to re-read the EDID.
2151 */
2152 if (intr_stat &
Russell Kinge84b8d72017-07-31 15:29:41 +01002153 (HDMI_IH_PHY_STAT0_RX_SENSE | HDMI_IH_PHY_STAT0_HPD)) {
Neil Armstrong386d3292017-04-04 14:31:59 +02002154 __dw_hdmi_setup_rx_sense(hdmi,
2155 phy_stat & HDMI_PHY_HPD,
2156 phy_stat & HDMI_PHY_RX_SENSE);
Russell Kingaeac23b2015-06-05 13:46:22 +01002157
Russell Kinge84b8d72017-07-31 15:29:41 +01002158 if ((phy_stat & (HDMI_PHY_RX_SENSE | HDMI_PHY_HPD)) == 0)
2159 cec_notifier_set_phys_addr(hdmi->cec_notifier,
2160 CEC_PHYS_ADDR_INVALID);
2161 }
2162
Russell Kingaeac23b2015-06-05 13:46:22 +01002163 if (intr_stat & HDMI_IH_PHY_STAT0_HPD) {
2164 dev_dbg(hdmi->dev, "EVENT=%s\n",
2165 phy_int_pol & HDMI_PHY_HPD ? "plugin" : "plugout");
Laurent Pinchartba5d7e62017-01-17 10:28:56 +02002166 if (hdmi->bridge.dev)
2167 drm_helper_hpd_irq_event(hdmi->bridge.dev);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002168 }
2169
2170 hdmi_writeb(hdmi, intr_stat, HDMI_IH_PHY_STAT0);
Russell Kingaeac23b2015-06-05 13:46:22 +01002171 hdmi_writeb(hdmi, ~(HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE),
2172 HDMI_IH_MUTE_PHY_STAT0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002173
2174 return IRQ_HANDLED;
2175}
2176
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002177static const struct dw_hdmi_phy_data dw_hdmi_phys[] = {
2178 {
2179 .type = DW_HDMI_PHY_DWC_HDMI_TX_PHY,
2180 .name = "DWC HDMI TX PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002181 .gen = 1,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002182 }, {
2183 .type = DW_HDMI_PHY_DWC_MHL_PHY_HEAC,
2184 .name = "DWC MHL PHY + HEAC PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002185 .gen = 2,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002186 .has_svsret = true,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002187 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002188 }, {
2189 .type = DW_HDMI_PHY_DWC_MHL_PHY,
2190 .name = "DWC MHL PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002191 .gen = 2,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002192 .has_svsret = true,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002193 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002194 }, {
2195 .type = DW_HDMI_PHY_DWC_HDMI_3D_TX_PHY_HEAC,
2196 .name = "DWC HDMI 3D TX PHY + HEAC PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002197 .gen = 2,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002198 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002199 }, {
2200 .type = DW_HDMI_PHY_DWC_HDMI_3D_TX_PHY,
2201 .name = "DWC HDMI 3D TX PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002202 .gen = 2,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002203 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002204 }, {
2205 .type = DW_HDMI_PHY_DWC_HDMI20_TX_PHY,
2206 .name = "DWC HDMI 2.0 TX PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02002207 .gen = 2,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002208 .has_svsret = true,
Jose Abreuc93f6092017-06-23 10:36:44 +01002209 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002210 }, {
2211 .type = DW_HDMI_PHY_VENDOR_PHY,
2212 .name = "Vendor PHY",
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002213 }
2214};
2215
2216static int dw_hdmi_detect_phy(struct dw_hdmi *hdmi)
2217{
2218 unsigned int i;
2219 u8 phy_type;
2220
2221 phy_type = hdmi_readb(hdmi, HDMI_CONFIG2_ID);
2222
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002223 if (phy_type == DW_HDMI_PHY_VENDOR_PHY) {
2224 /* Vendor PHYs require support from the glue layer. */
2225 if (!hdmi->plat_data->phy_ops || !hdmi->plat_data->phy_name) {
2226 dev_err(hdmi->dev,
2227 "Vendor HDMI PHY not supported by glue layer\n");
2228 return -ENODEV;
2229 }
2230
2231 hdmi->phy.ops = hdmi->plat_data->phy_ops;
2232 hdmi->phy.data = hdmi->plat_data->phy_data;
2233 hdmi->phy.name = hdmi->plat_data->phy_name;
2234 return 0;
2235 }
2236
2237 /* Synopsys PHYs are handled internally. */
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002238 for (i = 0; i < ARRAY_SIZE(dw_hdmi_phys); ++i) {
2239 if (dw_hdmi_phys[i].type == phy_type) {
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002240 hdmi->phy.ops = &dw_hdmi_synopsys_phy_ops;
2241 hdmi->phy.name = dw_hdmi_phys[i].name;
2242 hdmi->phy.data = (void *)&dw_hdmi_phys[i];
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02002243
2244 if (!dw_hdmi_phys[i].configure &&
2245 !hdmi->plat_data->configure_phy) {
2246 dev_err(hdmi->dev, "%s requires platform support\n",
2247 hdmi->phy.name);
2248 return -ENODEV;
2249 }
2250
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002251 return 0;
2252 }
2253 }
2254
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002255 dev_err(hdmi->dev, "Unsupported HDMI PHY type (%02x)\n", phy_type);
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002256 return -ENODEV;
2257}
2258
Russell Kinga616e632017-08-02 20:41:07 +02002259static void dw_hdmi_cec_enable(struct dw_hdmi *hdmi)
2260{
2261 mutex_lock(&hdmi->mutex);
2262 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_CECCLK_DISABLE;
2263 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
2264 mutex_unlock(&hdmi->mutex);
2265}
2266
2267static void dw_hdmi_cec_disable(struct dw_hdmi *hdmi)
2268{
2269 mutex_lock(&hdmi->mutex);
2270 hdmi->mc_clkdis |= HDMI_MC_CLKDIS_CECCLK_DISABLE;
2271 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
2272 mutex_unlock(&hdmi->mutex);
2273}
2274
2275static const struct dw_hdmi_cec_ops dw_hdmi_cec_ops = {
2276 .write = hdmi_writeb,
2277 .read = hdmi_readb,
2278 .enable = dw_hdmi_cec_enable,
2279 .disable = dw_hdmi_cec_disable,
2280};
2281
Neil Armstrong80e2f972017-03-03 19:20:06 +02002282static const struct regmap_config hdmi_regmap_8bit_config = {
2283 .reg_bits = 32,
2284 .val_bits = 8,
2285 .reg_stride = 1,
2286 .max_register = HDMI_I2CM_FS_SCL_LCNT_0_ADDR,
2287};
2288
2289static const struct regmap_config hdmi_regmap_32bit_config = {
2290 .reg_bits = 32,
2291 .val_bits = 32,
2292 .reg_stride = 4,
2293 .max_register = HDMI_I2CM_FS_SCL_LCNT_0_ADDR << 2,
2294};
2295
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002296static struct dw_hdmi *
2297__dw_hdmi_probe(struct platform_device *pdev,
2298 const struct dw_hdmi_plat_data *plat_data)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002299{
Laurent Pinchartc6081192017-01-17 10:28:57 +02002300 struct device *dev = &pdev->dev;
Russell King17b50012013-11-03 11:23:34 +00002301 struct device_node *np = dev->of_node;
Russell King7ed6c662013-11-07 16:01:45 +00002302 struct platform_device_info pdevinfo;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002303 struct device_node *ddc_node;
Russell Kinga616e632017-08-02 20:41:07 +02002304 struct dw_hdmi_cec_data cec;
Andy Yanb21f4b62014-12-05 14:26:31 +08002305 struct dw_hdmi *hdmi;
Neil Armstrong80e2f972017-03-03 19:20:06 +02002306 struct resource *iores = NULL;
Laurent Pinchartc6081192017-01-17 10:28:57 +02002307 int irq;
Andy Yan3d1b35a2014-12-05 14:25:05 +08002308 int ret;
Andy Yan0cd9d142014-12-05 14:28:24 +08002309 u32 val = 1;
Laurent Pinchart0527e122017-01-17 10:29:03 +02002310 u8 prod_id0;
2311 u8 prod_id1;
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002312 u8 config0;
Laurent Pinchart0c674942017-01-17 10:29:04 +02002313 u8 config3;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002314
Russell King17b50012013-11-03 11:23:34 +00002315 hdmi = devm_kzalloc(dev, sizeof(*hdmi), GFP_KERNEL);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002316 if (!hdmi)
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002317 return ERR_PTR(-ENOMEM);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002318
Andy Yan3d1b35a2014-12-05 14:25:05 +08002319 hdmi->plat_data = plat_data;
Russell King17b50012013-11-03 11:23:34 +00002320 hdmi->dev = dev;
Russell King40678382013-11-07 15:35:06 +00002321 hdmi->sample_rate = 48000;
Russell Kingb872a8e2015-06-05 12:22:46 +01002322 hdmi->disabled = true;
Russell Kingaeac23b2015-06-05 13:46:22 +01002323 hdmi->rxsense = true;
2324 hdmi->phy_mask = (u8)~(HDMI_PHY_HPD | HDMI_PHY_RX_SENSE);
Russell King7cc4ab22017-07-31 15:29:46 +01002325 hdmi->mc_clkdis = 0x7f;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002326
Russell Kingb872a8e2015-06-05 12:22:46 +01002327 mutex_init(&hdmi->mutex);
Russell King6bcf4952015-02-02 11:01:08 +00002328 mutex_init(&hdmi->audio_mutex);
Russell Kingb90120a2015-03-27 12:59:58 +00002329 spin_lock_init(&hdmi->audio_lock);
Russell King6bcf4952015-02-02 11:01:08 +00002330
Philipp Zabelb5d45902014-03-05 10:20:56 +01002331 ddc_node = of_parse_phandle(np, "ddc-i2c-bus", 0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002332 if (ddc_node) {
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002333 hdmi->ddc = of_get_i2c_adapter_by_node(ddc_node);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002334 of_node_put(ddc_node);
Andy Yanc2c38482014-12-05 14:24:28 +08002335 if (!hdmi->ddc) {
2336 dev_dbg(hdmi->dev, "failed to read ddc node\n");
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002337 return ERR_PTR(-EPROBE_DEFER);
Andy Yanc2c38482014-12-05 14:24:28 +08002338 }
2339
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002340 } else {
2341 dev_dbg(hdmi->dev, "no ddc property found\n");
2342 }
2343
Neil Armstrong80e2f972017-03-03 19:20:06 +02002344 if (!plat_data->regm) {
2345 const struct regmap_config *reg_config;
2346
2347 of_property_read_u32(np, "reg-io-width", &val);
2348 switch (val) {
2349 case 4:
2350 reg_config = &hdmi_regmap_32bit_config;
2351 hdmi->reg_shift = 2;
2352 break;
2353 case 1:
2354 reg_config = &hdmi_regmap_8bit_config;
2355 break;
2356 default:
2357 dev_err(dev, "reg-io-width must be 1 or 4\n");
2358 return ERR_PTR(-EINVAL);
2359 }
2360
2361 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2362 hdmi->regs = devm_ioremap_resource(dev, iores);
2363 if (IS_ERR(hdmi->regs)) {
2364 ret = PTR_ERR(hdmi->regs);
2365 goto err_res;
2366 }
2367
2368 hdmi->regm = devm_regmap_init_mmio(dev, hdmi->regs, reg_config);
2369 if (IS_ERR(hdmi->regm)) {
2370 dev_err(dev, "Failed to configure regmap\n");
2371 ret = PTR_ERR(hdmi->regm);
2372 goto err_res;
2373 }
2374 } else {
2375 hdmi->regm = plat_data->regm;
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002376 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002377
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002378 hdmi->isfr_clk = devm_clk_get(hdmi->dev, "isfr");
2379 if (IS_ERR(hdmi->isfr_clk)) {
2380 ret = PTR_ERR(hdmi->isfr_clk);
Andy Yanb5878332014-12-05 14:23:52 +08002381 dev_err(hdmi->dev, "Unable to get HDMI isfr clk: %d\n", ret);
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002382 goto err_res;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002383 }
2384
2385 ret = clk_prepare_enable(hdmi->isfr_clk);
2386 if (ret) {
Andy Yanb5878332014-12-05 14:23:52 +08002387 dev_err(hdmi->dev, "Cannot enable HDMI isfr clock: %d\n", ret);
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002388 goto err_res;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002389 }
2390
2391 hdmi->iahb_clk = devm_clk_get(hdmi->dev, "iahb");
2392 if (IS_ERR(hdmi->iahb_clk)) {
2393 ret = PTR_ERR(hdmi->iahb_clk);
Andy Yanb5878332014-12-05 14:23:52 +08002394 dev_err(hdmi->dev, "Unable to get HDMI iahb clk: %d\n", ret);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002395 goto err_isfr;
2396 }
2397
2398 ret = clk_prepare_enable(hdmi->iahb_clk);
2399 if (ret) {
Andy Yanb5878332014-12-05 14:23:52 +08002400 dev_err(hdmi->dev, "Cannot enable HDMI iahb clock: %d\n", ret);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002401 goto err_isfr;
2402 }
2403
Pierre-Hugues Hussonebe32c32017-11-25 21:18:44 +01002404 hdmi->cec_clk = devm_clk_get(hdmi->dev, "cec");
2405 if (PTR_ERR(hdmi->cec_clk) == -ENOENT) {
2406 hdmi->cec_clk = NULL;
2407 } else if (IS_ERR(hdmi->cec_clk)) {
2408 ret = PTR_ERR(hdmi->cec_clk);
2409 if (ret != -EPROBE_DEFER)
2410 dev_err(hdmi->dev, "Cannot get HDMI cec clock: %d\n",
2411 ret);
2412
2413 hdmi->cec_clk = NULL;
2414 goto err_iahb;
2415 } else {
2416 ret = clk_prepare_enable(hdmi->cec_clk);
2417 if (ret) {
2418 dev_err(hdmi->dev, "Cannot enable HDMI cec clock: %d\n",
2419 ret);
2420 goto err_iahb;
2421 }
2422 }
2423
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002424 /* Product and revision IDs */
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002425 hdmi->version = (hdmi_readb(hdmi, HDMI_DESIGN_ID) << 8)
2426 | (hdmi_readb(hdmi, HDMI_REVISION_ID) << 0);
Laurent Pinchart0527e122017-01-17 10:29:03 +02002427 prod_id0 = hdmi_readb(hdmi, HDMI_PRODUCT_ID0);
2428 prod_id1 = hdmi_readb(hdmi, HDMI_PRODUCT_ID1);
2429
2430 if (prod_id0 != HDMI_PRODUCT_ID0_HDMI_TX ||
2431 (prod_id1 & ~HDMI_PRODUCT_ID1_HDCP) != HDMI_PRODUCT_ID1_HDMI_TX) {
2432 dev_err(dev, "Unsupported HDMI controller (%04x:%02x:%02x)\n",
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002433 hdmi->version, prod_id0, prod_id1);
Laurent Pinchart0527e122017-01-17 10:29:03 +02002434 ret = -ENODEV;
2435 goto err_iahb;
2436 }
2437
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002438 ret = dw_hdmi_detect_phy(hdmi);
2439 if (ret < 0)
2440 goto err_iahb;
2441
2442 dev_info(dev, "Detected HDMI TX controller v%x.%03x %s HDCP (%s)\n",
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002443 hdmi->version >> 12, hdmi->version & 0xfff,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02002444 prod_id1 & HDMI_PRODUCT_ID1_HDCP ? "with" : "without",
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002445 hdmi->phy.name);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002446
2447 initialize_hdmi_ih_mutes(hdmi);
2448
Laurent Pinchartc6081192017-01-17 10:28:57 +02002449 irq = platform_get_irq(pdev, 0);
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002450 if (irq < 0) {
2451 ret = irq;
Laurent Pinchartc6081192017-01-17 10:28:57 +02002452 goto err_iahb;
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002453 }
Laurent Pinchartc6081192017-01-17 10:28:57 +02002454
Philipp Zabel639a2022015-01-07 13:43:50 +01002455 ret = devm_request_threaded_irq(dev, irq, dw_hdmi_hardirq,
2456 dw_hdmi_irq, IRQF_SHARED,
2457 dev_name(dev), hdmi);
2458 if (ret)
Fabio Estevamb33ef612015-01-27 10:54:12 -02002459 goto err_iahb;
Philipp Zabel639a2022015-01-07 13:43:50 +01002460
Russell Kinge84b8d72017-07-31 15:29:41 +01002461 hdmi->cec_notifier = cec_notifier_get(dev);
2462 if (!hdmi->cec_notifier) {
2463 ret = -ENOMEM;
2464 goto err_iahb;
2465 }
2466
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002467 /*
2468 * To prevent overflows in HDMI_IH_FC_STAT2, set the clk regenerator
2469 * N and cts values before enabling phy
2470 */
2471 hdmi_init_clk_regenerator(hdmi);
2472
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002473 /* If DDC bus is not specified, try to register HDMI I2C bus */
2474 if (!hdmi->ddc) {
2475 hdmi->ddc = dw_hdmi_i2c_adapter(hdmi);
2476 if (IS_ERR(hdmi->ddc))
2477 hdmi->ddc = NULL;
2478 }
2479
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002480 hdmi->bridge.driver_private = hdmi;
2481 hdmi->bridge.funcs = &dw_hdmi_bridge_funcs;
Arnd Bergmannd5ad7842017-01-23 13:20:38 +01002482#ifdef CONFIG_OF
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002483 hdmi->bridge.of_node = pdev->dev.of_node;
Arnd Bergmannd5ad7842017-01-23 13:20:38 +01002484#endif
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002485
Laurent Pincharta23d6262017-04-04 14:31:56 +02002486 dw_hdmi_setup_i2c(hdmi);
Neil Armstrong386d3292017-04-04 14:31:59 +02002487 if (hdmi->phy.ops->setup_hpd)
2488 hdmi->phy.ops->setup_hpd(hdmi, hdmi->phy.data);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002489
Russell King7ed6c662013-11-07 16:01:45 +00002490 memset(&pdevinfo, 0, sizeof(pdevinfo));
2491 pdevinfo.parent = dev;
2492 pdevinfo.id = PLATFORM_DEVID_AUTO;
2493
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002494 config0 = hdmi_readb(hdmi, HDMI_CONFIG0_ID);
Laurent Pinchart0c674942017-01-17 10:29:04 +02002495 config3 = hdmi_readb(hdmi, HDMI_CONFIG3_ID);
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002496
Neil Armstrong80e2f972017-03-03 19:20:06 +02002497 if (iores && config3 & HDMI_CONFIG3_AHBAUDDMA) {
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002498 struct dw_hdmi_audio_data audio;
2499
Russell King7ed6c662013-11-07 16:01:45 +00002500 audio.phys = iores->start;
2501 audio.base = hdmi->regs;
2502 audio.irq = irq;
2503 audio.hdmi = hdmi;
Russell Kingf5ce4052013-11-07 16:06:01 +00002504 audio.eld = hdmi->connector.eld;
Romain Periera7d555d2017-04-14 10:31:12 +02002505 hdmi->enable_audio = dw_hdmi_ahb_audio_enable;
2506 hdmi->disable_audio = dw_hdmi_ahb_audio_disable;
Russell King7ed6c662013-11-07 16:01:45 +00002507
2508 pdevinfo.name = "dw-hdmi-ahb-audio";
2509 pdevinfo.data = &audio;
2510 pdevinfo.size_data = sizeof(audio);
2511 pdevinfo.dma_mask = DMA_BIT_MASK(32);
2512 hdmi->audio = platform_device_register_full(&pdevinfo);
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002513 } else if (config0 & HDMI_CONFIG0_I2S) {
2514 struct dw_hdmi_i2s_audio_data audio;
2515
2516 audio.hdmi = hdmi;
2517 audio.write = hdmi_writeb;
2518 audio.read = hdmi_readb;
Romain Periera7d555d2017-04-14 10:31:12 +02002519 hdmi->enable_audio = dw_hdmi_i2s_audio_enable;
Romain Perier57fbc052017-04-20 14:34:34 +05302520 hdmi->disable_audio = dw_hdmi_i2s_audio_disable;
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00002521
2522 pdevinfo.name = "dw-hdmi-i2s-audio";
2523 pdevinfo.data = &audio;
2524 pdevinfo.size_data = sizeof(audio);
2525 pdevinfo.dma_mask = DMA_BIT_MASK(32);
2526 hdmi->audio = platform_device_register_full(&pdevinfo);
Russell King7ed6c662013-11-07 16:01:45 +00002527 }
2528
Russell Kinga616e632017-08-02 20:41:07 +02002529 if (config0 & HDMI_CONFIG0_CEC) {
2530 cec.hdmi = hdmi;
2531 cec.ops = &dw_hdmi_cec_ops;
2532 cec.irq = irq;
2533
2534 pdevinfo.name = "dw-hdmi-cec";
2535 pdevinfo.data = &cec;
2536 pdevinfo.size_data = sizeof(cec);
2537 pdevinfo.dma_mask = 0;
2538
2539 hdmi->cec = platform_device_register_full(&pdevinfo);
2540 }
2541
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002542 /* Reset HDMI DDC I2C master controller and mute I2CM interrupts */
2543 if (hdmi->i2c)
2544 dw_hdmi_i2c_init(hdmi);
2545
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002546 return hdmi;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002547
2548err_iahb:
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002549 if (hdmi->i2c) {
2550 i2c_del_adapter(&hdmi->i2c->adap);
2551 hdmi->ddc = NULL;
2552 }
2553
Russell Kinge84b8d72017-07-31 15:29:41 +01002554 if (hdmi->cec_notifier)
2555 cec_notifier_put(hdmi->cec_notifier);
2556
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002557 clk_disable_unprepare(hdmi->iahb_clk);
Pierre-Hugues Hussonebe32c32017-11-25 21:18:44 +01002558 if (hdmi->cec_clk)
2559 clk_disable_unprepare(hdmi->cec_clk);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002560err_isfr:
2561 clk_disable_unprepare(hdmi->isfr_clk);
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03002562err_res:
2563 i2c_put_adapter(hdmi->ddc);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002564
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002565 return ERR_PTR(ret);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002566}
2567
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002568static void __dw_hdmi_remove(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002569{
Russell King7ed6c662013-11-07 16:01:45 +00002570 if (hdmi->audio && !IS_ERR(hdmi->audio))
2571 platform_device_unregister(hdmi->audio);
Russell Kinga616e632017-08-02 20:41:07 +02002572 if (!IS_ERR(hdmi->cec))
2573 platform_device_unregister(hdmi->cec);
Russell King7ed6c662013-11-07 16:01:45 +00002574
Russell Kingd94905e2013-11-03 22:23:24 +00002575 /* Disable all interrupts */
2576 hdmi_writeb(hdmi, ~0, HDMI_IH_MUTE_PHY_STAT0);
2577
Hans Verkuile383bf82017-08-07 09:20:35 +02002578 if (hdmi->cec_notifier)
2579 cec_notifier_put(hdmi->cec_notifier);
2580
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002581 clk_disable_unprepare(hdmi->iahb_clk);
2582 clk_disable_unprepare(hdmi->isfr_clk);
Pierre-Hugues Hussonebe32c32017-11-25 21:18:44 +01002583 if (hdmi->cec_clk)
2584 clk_disable_unprepare(hdmi->cec_clk);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002585
2586 if (hdmi->i2c)
2587 i2c_del_adapter(&hdmi->i2c->adap);
2588 else
2589 i2c_put_adapter(hdmi->ddc);
Russell King17b50012013-11-03 11:23:34 +00002590}
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002591
2592/* -----------------------------------------------------------------------------
2593 * Probe/remove API, used from platforms based on the DRM bridge API.
2594 */
Jernej Skrabeceea034a2018-02-14 21:08:59 +01002595struct dw_hdmi *dw_hdmi_probe(struct platform_device *pdev,
2596 const struct dw_hdmi_plat_data *plat_data)
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002597{
2598 struct dw_hdmi *hdmi;
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002599
2600 hdmi = __dw_hdmi_probe(pdev, plat_data);
2601 if (IS_ERR(hdmi))
Jernej Skrabeceea034a2018-02-14 21:08:59 +01002602 return hdmi;
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002603
Inki Daeb6786822017-07-03 17:42:25 +09002604 drm_bridge_add(&hdmi->bridge);
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002605
Jernej Skrabeceea034a2018-02-14 21:08:59 +01002606 return hdmi;
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002607}
2608EXPORT_SYMBOL_GPL(dw_hdmi_probe);
2609
Jernej Skrabeceea034a2018-02-14 21:08:59 +01002610void dw_hdmi_remove(struct dw_hdmi *hdmi)
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002611{
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002612 drm_bridge_remove(&hdmi->bridge);
2613
2614 __dw_hdmi_remove(hdmi);
2615}
2616EXPORT_SYMBOL_GPL(dw_hdmi_remove);
2617
2618/* -----------------------------------------------------------------------------
2619 * Bind/unbind API, used from platforms based on the component framework.
2620 */
Jernej Skrabeceea034a2018-02-14 21:08:59 +01002621struct dw_hdmi *dw_hdmi_bind(struct platform_device *pdev,
2622 struct drm_encoder *encoder,
2623 const struct dw_hdmi_plat_data *plat_data)
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002624{
2625 struct dw_hdmi *hdmi;
2626 int ret;
2627
2628 hdmi = __dw_hdmi_probe(pdev, plat_data);
2629 if (IS_ERR(hdmi))
Jernej Skrabeceea034a2018-02-14 21:08:59 +01002630 return hdmi;
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002631
2632 ret = drm_bridge_attach(encoder, &hdmi->bridge, NULL);
2633 if (ret) {
Jernej Skrabeceea034a2018-02-14 21:08:59 +01002634 dw_hdmi_remove(hdmi);
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002635 DRM_ERROR("Failed to initialize bridge with drm\n");
Jernej Skrabeceea034a2018-02-14 21:08:59 +01002636 return ERR_PTR(ret);
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002637 }
2638
Jernej Skrabeceea034a2018-02-14 21:08:59 +01002639 return hdmi;
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002640}
2641EXPORT_SYMBOL_GPL(dw_hdmi_bind);
2642
Jernej Skrabeceea034a2018-02-14 21:08:59 +01002643void dw_hdmi_unbind(struct dw_hdmi *hdmi)
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002644{
Laurent Pinchart69497eb2017-01-17 10:29:00 +02002645 __dw_hdmi_remove(hdmi);
2646}
Andy Yanb21f4b62014-12-05 14:26:31 +08002647EXPORT_SYMBOL_GPL(dw_hdmi_unbind);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002648
2649MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
Andy Yan3d1b35a2014-12-05 14:25:05 +08002650MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com>");
2651MODULE_AUTHOR("Yakir Yang <ykk@rock-chips.com>");
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002652MODULE_AUTHOR("Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com>");
Andy Yanb21f4b62014-12-05 14:26:31 +08002653MODULE_DESCRIPTION("DW HDMI transmitter driver");
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002654MODULE_LICENSE("GPL");
Andy Yanb21f4b62014-12-05 14:26:31 +08002655MODULE_ALIAS("platform:dw-hdmi");