xref: /linux/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c (revision 1fd1dc41724319406b0aff221a352a400b0ddfc5)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * DesignWare High-Definition Multimedia Interface (HDMI) driver
4  *
5  * Copyright (C) 2013-2015 Mentor Graphics Inc.
6  * Copyright (C) 2011-2013 Freescale Semiconductor, Inc.
7  * Copyright (C) 2010, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
8  */
9 #include <linux/clk.h>
10 #include <linux/delay.h>
11 #include <linux/err.h>
12 #include <linux/export.h>
13 #include <linux/hdmi.h>
14 #include <linux/i2c.h>
15 #include <linux/irq.h>
16 #include <linux/module.h>
17 #include <linux/mutex.h>
18 #include <linux/of.h>
19 #include <linux/pinctrl/consumer.h>
20 #include <linux/regmap.h>
21 #include <linux/dma-mapping.h>
22 #include <linux/spinlock.h>
23 
24 #include <media/cec-notifier.h>
25 
26 #include <linux/media-bus-format.h>
27 #include <linux/videodev2.h>
28 
29 #include <drm/bridge/dw_hdmi.h>
30 #include <drm/display/drm_hdmi_helper.h>
31 #include <drm/display/drm_scdc_helper.h>
32 #include <drm/drm_atomic.h>
33 #include <drm/drm_atomic_helper.h>
34 #include <drm/drm_bridge.h>
35 #include <drm/drm_edid.h>
36 #include <drm/drm_of.h>
37 #include <drm/drm_print.h>
38 #include <drm/drm_probe_helper.h>
39 
40 #include "dw-hdmi-audio.h"
41 #include "dw-hdmi-cec.h"
42 #include "dw-hdmi.h"
43 
44 #define DDC_CI_ADDR		0x37
45 #define DDC_SEGMENT_ADDR	0x30
46 
47 #define HDMI_EDID_LEN		512
48 
49 /* DW-HDMI Controller >= 0x200a are at least compliant with SCDC version 1 */
50 #define SCDC_MIN_SOURCE_VERSION	0x1
51 
52 #define HDMI14_MAX_TMDSCLK	340000000
53 
54 static const u16 csc_coeff_default[3][4] = {
55 	{ 0x2000, 0x0000, 0x0000, 0x0000 },
56 	{ 0x0000, 0x2000, 0x0000, 0x0000 },
57 	{ 0x0000, 0x0000, 0x2000, 0x0000 }
58 };
59 
60 static const u16 csc_coeff_rgb_out_eitu601[3][4] = {
61 	{ 0x2000, 0x6926, 0x74fd, 0x010e },
62 	{ 0x2000, 0x2cdd, 0x0000, 0x7e9a },
63 	{ 0x2000, 0x0000, 0x38b4, 0x7e3b }
64 };
65 
66 static const u16 csc_coeff_rgb_out_eitu709[3][4] = {
67 	{ 0x2000, 0x7106, 0x7a02, 0x00a7 },
68 	{ 0x2000, 0x3264, 0x0000, 0x7e6d },
69 	{ 0x2000, 0x0000, 0x3b61, 0x7e25 }
70 };
71 
72 static const u16 csc_coeff_rgb_in_eitu601[3][4] = {
73 	{ 0x2591, 0x1322, 0x074b, 0x0000 },
74 	{ 0x6535, 0x2000, 0x7acc, 0x0200 },
75 	{ 0x6acd, 0x7534, 0x2000, 0x0200 }
76 };
77 
78 static const u16 csc_coeff_rgb_in_eitu709[3][4] = {
79 	{ 0x2dc5, 0x0d9b, 0x049e, 0x0000 },
80 	{ 0x62f0, 0x2000, 0x7d11, 0x0200 },
81 	{ 0x6756, 0x78ab, 0x2000, 0x0200 }
82 };
83 
84 static const u16 csc_coeff_rgb_full_to_rgb_limited[3][4] = {
85 	{ 0x1b7c, 0x0000, 0x0000, 0x0020 },
86 	{ 0x0000, 0x1b7c, 0x0000, 0x0020 },
87 	{ 0x0000, 0x0000, 0x1b7c, 0x0020 }
88 };
89 
90 struct hdmi_vmode {
91 	bool mdataenablepolarity;
92 
93 	unsigned int mpixelclock;
94 	unsigned int mpixelrepetitioninput;
95 	unsigned int mpixelrepetitionoutput;
96 	unsigned int mtmdsclock;
97 };
98 
99 struct hdmi_data_info {
100 	unsigned int enc_in_bus_format;
101 	unsigned int enc_out_bus_format;
102 	unsigned int enc_in_encoding;
103 	unsigned int enc_out_encoding;
104 	unsigned int pix_repet_factor;
105 	unsigned int hdcp_enable;
106 	struct hdmi_vmode video_mode;
107 	bool rgb_limited_range;
108 };
109 
110 struct dw_hdmi_i2c {
111 	struct i2c_adapter	adap;
112 
113 	struct mutex		lock;	/* used to serialize data transfers */
114 	struct completion	cmp;
115 	u8			stat;
116 
117 	u8			slave_reg;
118 	bool			is_regaddr;
119 	bool			is_segment;
120 };
121 
122 struct dw_hdmi_phy_data {
123 	enum dw_hdmi_phy_type type;
124 	const char *name;
125 	unsigned int gen;
126 	bool has_svsret;
127 	int (*configure)(struct dw_hdmi *hdmi,
128 			 const struct dw_hdmi_plat_data *pdata,
129 			 unsigned long mpixelclock);
130 };
131 
132 struct dw_hdmi {
133 	struct drm_connector connector;
134 	struct drm_bridge bridge;
135 
136 	unsigned int version;
137 
138 	struct platform_device *audio;
139 	struct platform_device *cec;
140 	struct device *dev;
141 	struct dw_hdmi_i2c *i2c;
142 
143 	struct hdmi_data_info hdmi_data;
144 	const struct dw_hdmi_plat_data *plat_data;
145 
146 	int vic;
147 
148 	u8 edid[HDMI_EDID_LEN];
149 
150 	struct {
151 		const struct dw_hdmi_phy_ops *ops;
152 		const char *name;
153 		void *data;
154 		bool enabled;
155 	} phy;
156 
157 	struct drm_display_mode previous_mode;
158 
159 	struct i2c_adapter *ddc;
160 	void __iomem *regs;
161 	bool sink_is_hdmi;
162 	bool sink_has_audio;
163 
164 	struct pinctrl *pinctrl;
165 	struct pinctrl_state *default_state;
166 	struct pinctrl_state *unwedge_state;
167 
168 	struct mutex mutex;		/* for state below and previous_mode */
169 	enum drm_connector_force force;	/* mutex-protected force state */
170 	struct drm_connector *curr_conn;/* current connector (only valid when !disabled) */
171 	bool disabled;			/* DRM has disabled our bridge */
172 	bool bridge_is_on;		/* indicates the bridge is on */
173 	bool rxsense;			/* rxsense state */
174 	u8 phy_mask;			/* desired phy int mask settings */
175 	u8 mc_clkdis;			/* clock disable register */
176 
177 	spinlock_t audio_lock;
178 	struct mutex audio_mutex;
179 	unsigned int sample_iec958;
180 	unsigned int sample_non_pcm;
181 	unsigned int sample_width;
182 	unsigned int sample_rate;
183 	unsigned int channels;
184 	unsigned int audio_cts;
185 	unsigned int audio_n;
186 	bool audio_enable;
187 
188 	unsigned int reg_shift;
189 	struct regmap *regm;
190 	void (*enable_audio)(struct dw_hdmi *hdmi);
191 	void (*disable_audio)(struct dw_hdmi *hdmi);
192 
193 	struct mutex cec_notifier_mutex;
194 	struct cec_notifier *cec_notifier;
195 
196 	hdmi_codec_plugged_cb plugged_cb;
197 	struct device *codec_dev;
198 	enum drm_connector_status last_connector_result;
199 };
200 
201 const struct dw_hdmi_plat_data *dw_hdmi_to_plat_data(struct dw_hdmi *hdmi)
202 {
203 	return hdmi->plat_data;
204 }
205 EXPORT_SYMBOL_GPL(dw_hdmi_to_plat_data);
206 
207 #define HDMI_IH_PHY_STAT0_RX_SENSE \
208 	(HDMI_IH_PHY_STAT0_RX_SENSE0 | HDMI_IH_PHY_STAT0_RX_SENSE1 | \
209 	 HDMI_IH_PHY_STAT0_RX_SENSE2 | HDMI_IH_PHY_STAT0_RX_SENSE3)
210 
211 #define HDMI_PHY_RX_SENSE \
212 	(HDMI_PHY_RX_SENSE0 | HDMI_PHY_RX_SENSE1 | \
213 	 HDMI_PHY_RX_SENSE2 | HDMI_PHY_RX_SENSE3)
214 
215 static inline void hdmi_writeb(struct dw_hdmi *hdmi, u8 val, int offset)
216 {
217 	regmap_write(hdmi->regm, offset << hdmi->reg_shift, val);
218 }
219 
220 static inline u8 hdmi_readb(struct dw_hdmi *hdmi, int offset)
221 {
222 	unsigned int val = 0;
223 
224 	regmap_read(hdmi->regm, offset << hdmi->reg_shift, &val);
225 
226 	return val;
227 }
228 
229 static void handle_plugged_change(struct dw_hdmi *hdmi, bool plugged)
230 {
231 	if (hdmi->plugged_cb && hdmi->codec_dev)
232 		hdmi->plugged_cb(hdmi->codec_dev, plugged);
233 }
234 
235 int dw_hdmi_set_plugged_cb(struct dw_hdmi *hdmi, hdmi_codec_plugged_cb fn,
236 			   struct device *codec_dev)
237 {
238 	bool plugged;
239 
240 	mutex_lock(&hdmi->mutex);
241 	hdmi->plugged_cb = fn;
242 	hdmi->codec_dev = codec_dev;
243 	plugged = hdmi->last_connector_result == connector_status_connected;
244 	handle_plugged_change(hdmi, plugged);
245 	mutex_unlock(&hdmi->mutex);
246 
247 	return 0;
248 }
249 EXPORT_SYMBOL_GPL(dw_hdmi_set_plugged_cb);
250 
251 static void hdmi_modb(struct dw_hdmi *hdmi, u8 data, u8 mask, unsigned reg)
252 {
253 	regmap_update_bits(hdmi->regm, reg << hdmi->reg_shift, mask, data);
254 }
255 
256 static void hdmi_mask_writeb(struct dw_hdmi *hdmi, u8 data, unsigned int reg,
257 			     u8 shift, u8 mask)
258 {
259 	hdmi_modb(hdmi, data << shift, mask, reg);
260 }
261 
262 static void dw_hdmi_i2c_init(struct dw_hdmi *hdmi)
263 {
264 	hdmi_writeb(hdmi, HDMI_PHY_I2CM_INT_ADDR_DONE_POL,
265 		    HDMI_PHY_I2CM_INT_ADDR);
266 
267 	hdmi_writeb(hdmi, HDMI_PHY_I2CM_CTLINT_ADDR_NAC_POL |
268 		    HDMI_PHY_I2CM_CTLINT_ADDR_ARBITRATION_POL,
269 		    HDMI_PHY_I2CM_CTLINT_ADDR);
270 
271 	/* Software reset */
272 	hdmi_writeb(hdmi, 0x00, HDMI_I2CM_SOFTRSTZ);
273 
274 	/* Set Standard Mode speed (determined to be 100KHz on iMX6) */
275 	hdmi_writeb(hdmi, 0x00, HDMI_I2CM_DIV);
276 
277 	/* Set done, not acknowledged and arbitration interrupt polarities */
278 	hdmi_writeb(hdmi, HDMI_I2CM_INT_DONE_POL, HDMI_I2CM_INT);
279 	hdmi_writeb(hdmi, HDMI_I2CM_CTLINT_NAC_POL | HDMI_I2CM_CTLINT_ARB_POL,
280 		    HDMI_I2CM_CTLINT);
281 
282 	/* Clear DONE and ERROR interrupts */
283 	hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
284 		    HDMI_IH_I2CM_STAT0);
285 
286 	/* Mute DONE and ERROR interrupts */
287 	hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
288 		    HDMI_IH_MUTE_I2CM_STAT0);
289 }
290 
291 static bool dw_hdmi_i2c_unwedge(struct dw_hdmi *hdmi)
292 {
293 	/* If no unwedge state then give up */
294 	if (!hdmi->unwedge_state)
295 		return false;
296 
297 	dev_info(hdmi->dev, "Attempting to unwedge stuck i2c bus\n");
298 
299 	/*
300 	 * This is a huge hack to workaround a problem where the dw_hdmi i2c
301 	 * bus could sometimes get wedged.  Once wedged there doesn't appear
302 	 * to be any way to unwedge it (including the HDMI_I2CM_SOFTRSTZ)
303 	 * other than pulsing the SDA line.
304 	 *
305 	 * We appear to be able to pulse the SDA line (in the eyes of dw_hdmi)
306 	 * by:
307 	 * 1. Remux the pin as a GPIO output, driven low.
308 	 * 2. Wait a little while.  1 ms seems to work, but we'll do 10.
309 	 * 3. Immediately jump to remux the pin as dw_hdmi i2c again.
310 	 *
311 	 * At the moment of remuxing, the line will still be low due to its
312 	 * recent stint as an output, but then it will be pulled high by the
313 	 * (presumed) external pullup.  dw_hdmi seems to see this as a rising
314 	 * edge and that seems to get it out of its jam.
315 	 *
316 	 * This wedging was only ever seen on one TV, and only on one of
317 	 * its HDMI ports.  It happened when the TV was powered on while the
318 	 * device was plugged in.  A scope trace shows the TV bringing both SDA
319 	 * and SCL low, then bringing them both back up at roughly the same
320 	 * time.  Presumably this confuses dw_hdmi because it saw activity but
321 	 * no real STOP (maybe it thinks there's another master on the bus?).
322 	 * Giving it a clean rising edge of SDA while SCL is already high
323 	 * presumably makes dw_hdmi see a STOP which seems to bring dw_hdmi out
324 	 * of its stupor.
325 	 *
326 	 * Note that after coming back alive, transfers seem to immediately
327 	 * resume, so if we unwedge due to a timeout we should wait a little
328 	 * longer for our transfer to finish, since it might have just started
329 	 * now.
330 	 */
331 	pinctrl_select_state(hdmi->pinctrl, hdmi->unwedge_state);
332 	msleep(10);
333 	pinctrl_select_state(hdmi->pinctrl, hdmi->default_state);
334 
335 	return true;
336 }
337 
338 static int dw_hdmi_i2c_wait(struct dw_hdmi *hdmi)
339 {
340 	struct dw_hdmi_i2c *i2c = hdmi->i2c;
341 	int stat;
342 
343 	stat = wait_for_completion_timeout(&i2c->cmp, HZ / 10);
344 	if (!stat) {
345 		/* If we can't unwedge, return timeout */
346 		if (!dw_hdmi_i2c_unwedge(hdmi))
347 			return -EAGAIN;
348 
349 		/* We tried to unwedge; give it another chance */
350 		stat = wait_for_completion_timeout(&i2c->cmp, HZ / 10);
351 		if (!stat)
352 			return -EAGAIN;
353 	}
354 
355 	/* Check for error condition on the bus */
356 	if (i2c->stat & HDMI_IH_I2CM_STAT0_ERROR)
357 		return -EIO;
358 
359 	return 0;
360 }
361 
362 static int dw_hdmi_i2c_read(struct dw_hdmi *hdmi,
363 			    unsigned char *buf, unsigned int length)
364 {
365 	struct dw_hdmi_i2c *i2c = hdmi->i2c;
366 	int ret;
367 
368 	if (!i2c->is_regaddr) {
369 		dev_dbg(hdmi->dev, "set read register address to 0\n");
370 		i2c->slave_reg = 0x00;
371 		i2c->is_regaddr = true;
372 	}
373 
374 	while (length--) {
375 		reinit_completion(&i2c->cmp);
376 
377 		hdmi_writeb(hdmi, i2c->slave_reg++, HDMI_I2CM_ADDRESS);
378 		if (i2c->is_segment)
379 			hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_READ_EXT,
380 				    HDMI_I2CM_OPERATION);
381 		else
382 			hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_READ,
383 				    HDMI_I2CM_OPERATION);
384 
385 		ret = dw_hdmi_i2c_wait(hdmi);
386 		if (ret)
387 			return ret;
388 
389 		*buf++ = hdmi_readb(hdmi, HDMI_I2CM_DATAI);
390 	}
391 	i2c->is_segment = false;
392 
393 	return 0;
394 }
395 
396 static int dw_hdmi_i2c_write(struct dw_hdmi *hdmi,
397 			     unsigned char *buf, unsigned int length)
398 {
399 	struct dw_hdmi_i2c *i2c = hdmi->i2c;
400 	int ret;
401 
402 	if (!i2c->is_regaddr) {
403 		/* Use the first write byte as register address */
404 		i2c->slave_reg = buf[0];
405 		length--;
406 		buf++;
407 		i2c->is_regaddr = true;
408 	}
409 
410 	while (length--) {
411 		reinit_completion(&i2c->cmp);
412 
413 		hdmi_writeb(hdmi, *buf++, HDMI_I2CM_DATAO);
414 		hdmi_writeb(hdmi, i2c->slave_reg++, HDMI_I2CM_ADDRESS);
415 		hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_WRITE,
416 			    HDMI_I2CM_OPERATION);
417 
418 		ret = dw_hdmi_i2c_wait(hdmi);
419 		if (ret)
420 			return ret;
421 	}
422 
423 	return 0;
424 }
425 
426 static int dw_hdmi_i2c_xfer(struct i2c_adapter *adap,
427 			    struct i2c_msg *msgs, int num)
428 {
429 	struct dw_hdmi *hdmi = i2c_get_adapdata(adap);
430 	struct dw_hdmi_i2c *i2c = hdmi->i2c;
431 	u8 addr = msgs[0].addr;
432 	int i, ret = 0;
433 
434 	if (addr == DDC_CI_ADDR)
435 		/*
436 		 * The internal I2C controller does not support the multi-byte
437 		 * read and write operations needed for DDC/CI.
438 		 * TOFIX: Blacklist the DDC/CI address until we filter out
439 		 * unsupported I2C operations.
440 		 */
441 		return -EOPNOTSUPP;
442 
443 	dev_dbg(hdmi->dev, "xfer: num: %d, addr: %#x\n", num, addr);
444 
445 	for (i = 0; i < num; i++) {
446 		if (msgs[i].len == 0) {
447 			dev_dbg(hdmi->dev,
448 				"unsupported transfer %d/%d, no data\n",
449 				i + 1, num);
450 			return -EOPNOTSUPP;
451 		}
452 	}
453 
454 	mutex_lock(&i2c->lock);
455 
456 	/* Unmute DONE and ERROR interrupts */
457 	hdmi_writeb(hdmi, 0x00, HDMI_IH_MUTE_I2CM_STAT0);
458 
459 	/* Set slave device address taken from the first I2C message */
460 	hdmi_writeb(hdmi, addr, HDMI_I2CM_SLAVE);
461 
462 	/* Set slave device register address on transfer */
463 	i2c->is_regaddr = false;
464 
465 	/* Set segment pointer for I2C extended read mode operation */
466 	i2c->is_segment = false;
467 
468 	for (i = 0; i < num; i++) {
469 		dev_dbg(hdmi->dev, "xfer: num: %d/%d, len: %d, flags: %#x\n",
470 			i + 1, num, msgs[i].len, msgs[i].flags);
471 		if (msgs[i].addr == DDC_SEGMENT_ADDR && msgs[i].len == 1) {
472 			i2c->is_segment = true;
473 			hdmi_writeb(hdmi, DDC_SEGMENT_ADDR, HDMI_I2CM_SEGADDR);
474 			hdmi_writeb(hdmi, *msgs[i].buf, HDMI_I2CM_SEGPTR);
475 		} else {
476 			if (msgs[i].flags & I2C_M_RD)
477 				ret = dw_hdmi_i2c_read(hdmi, msgs[i].buf,
478 						       msgs[i].len);
479 			else
480 				ret = dw_hdmi_i2c_write(hdmi, msgs[i].buf,
481 							msgs[i].len);
482 		}
483 		if (ret < 0)
484 			break;
485 	}
486 
487 	if (!ret)
488 		ret = num;
489 
490 	/* Mute DONE and ERROR interrupts */
491 	hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
492 		    HDMI_IH_MUTE_I2CM_STAT0);
493 
494 	mutex_unlock(&i2c->lock);
495 
496 	return ret;
497 }
498 
499 static u32 dw_hdmi_i2c_func(struct i2c_adapter *adapter)
500 {
501 	return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
502 }
503 
504 static const struct i2c_algorithm dw_hdmi_algorithm = {
505 	.master_xfer	= dw_hdmi_i2c_xfer,
506 	.functionality	= dw_hdmi_i2c_func,
507 };
508 
509 static struct i2c_adapter *dw_hdmi_i2c_adapter(struct dw_hdmi *hdmi)
510 {
511 	struct i2c_adapter *adap;
512 	struct dw_hdmi_i2c *i2c;
513 	int ret;
514 
515 	i2c = devm_kzalloc(hdmi->dev, sizeof(*i2c), GFP_KERNEL);
516 	if (!i2c)
517 		return ERR_PTR(-ENOMEM);
518 
519 	mutex_init(&i2c->lock);
520 	init_completion(&i2c->cmp);
521 
522 	adap = &i2c->adap;
523 	adap->owner = THIS_MODULE;
524 	adap->dev.parent = hdmi->dev;
525 	adap->algo = &dw_hdmi_algorithm;
526 	strscpy(adap->name, "DesignWare HDMI", sizeof(adap->name));
527 	i2c_set_adapdata(adap, hdmi);
528 
529 	ret = i2c_add_adapter(adap);
530 	if (ret) {
531 		dev_warn(hdmi->dev, "cannot add %s I2C adapter\n", adap->name);
532 		devm_kfree(hdmi->dev, i2c);
533 		return ERR_PTR(ret);
534 	}
535 
536 	hdmi->i2c = i2c;
537 
538 	dev_info(hdmi->dev, "registered %s I2C bus driver\n", adap->name);
539 
540 	return adap;
541 }
542 
543 static void hdmi_set_cts_n(struct dw_hdmi *hdmi, unsigned int cts,
544 			   unsigned int n)
545 {
546 	/* Must be set/cleared first */
547 	hdmi_modb(hdmi, 0, HDMI_AUD_CTS3_CTS_MANUAL, HDMI_AUD_CTS3);
548 
549 	/* nshift factor = 0 */
550 	hdmi_modb(hdmi, 0, HDMI_AUD_CTS3_N_SHIFT_MASK, HDMI_AUD_CTS3);
551 
552 	/* Use automatic CTS generation mode when CTS is not set */
553 	if (cts)
554 		hdmi_writeb(hdmi, ((cts >> 16) &
555 				   HDMI_AUD_CTS3_AUDCTS19_16_MASK) |
556 				  HDMI_AUD_CTS3_CTS_MANUAL,
557 			    HDMI_AUD_CTS3);
558 	else
559 		hdmi_writeb(hdmi, 0, HDMI_AUD_CTS3);
560 	hdmi_writeb(hdmi, (cts >> 8) & 0xff, HDMI_AUD_CTS2);
561 	hdmi_writeb(hdmi, cts & 0xff, HDMI_AUD_CTS1);
562 
563 	hdmi_writeb(hdmi, (n >> 16) & 0x0f, HDMI_AUD_N3);
564 	hdmi_writeb(hdmi, (n >> 8) & 0xff, HDMI_AUD_N2);
565 	hdmi_writeb(hdmi, n & 0xff, HDMI_AUD_N1);
566 }
567 
568 static unsigned int hdmi_compute_n(unsigned int freq, unsigned long pixel_clk)
569 {
570 	unsigned int n = (128 * freq) / 1000;
571 	unsigned int mult = 1;
572 
573 	while (freq > 48000) {
574 		mult *= 2;
575 		freq /= 2;
576 	}
577 
578 	switch (freq) {
579 	case 32000:
580 		if (pixel_clk == 25175000)
581 			n = 4576;
582 		else if (pixel_clk == 27027000)
583 			n = 4096;
584 		else if (pixel_clk == 74176000 || pixel_clk == 148352000)
585 			n = 11648;
586 		else if (pixel_clk == 297000000)
587 			n = 3072;
588 		else
589 			n = 4096;
590 		n *= mult;
591 		break;
592 
593 	case 44100:
594 		if (pixel_clk == 25175000)
595 			n = 7007;
596 		else if (pixel_clk == 74176000)
597 			n = 17836;
598 		else if (pixel_clk == 148352000)
599 			n = 8918;
600 		else if (pixel_clk == 297000000)
601 			n = 4704;
602 		else
603 			n = 6272;
604 		n *= mult;
605 		break;
606 
607 	case 48000:
608 		if (pixel_clk == 25175000)
609 			n = 6864;
610 		else if (pixel_clk == 27027000)
611 			n = 6144;
612 		else if (pixel_clk == 74176000)
613 			n = 11648;
614 		else if (pixel_clk == 148352000)
615 			n = 5824;
616 		else if (pixel_clk == 297000000)
617 			n = 5120;
618 		else
619 			n = 6144;
620 		n *= mult;
621 		break;
622 
623 	default:
624 		break;
625 	}
626 
627 	return n;
628 }
629 
630 /*
631  * When transmitting IEC60958 linear PCM audio, these registers allow to
632  * configure the channel status information of all the channel status
633  * bits in the IEC60958 frame. For the moment this configuration is only
634  * used when the I2S audio interface, General Purpose Audio (GPA),
635  * or AHB audio DMA (AHBAUDDMA) interface is active
636  * (for S/PDIF interface this information comes from the stream).
637  */
638 void dw_hdmi_set_channel_status(struct dw_hdmi *hdmi,
639 				u8 *channel_status)
640 {
641 	/*
642 	 * Set channel status register for frequency and word length.
643 	 * Use default values for other registers.
644 	 */
645 	hdmi_writeb(hdmi, channel_status[3], HDMI_FC_AUDSCHNLS7);
646 	hdmi_writeb(hdmi, channel_status[4], HDMI_FC_AUDSCHNLS8);
647 }
648 EXPORT_SYMBOL_GPL(dw_hdmi_set_channel_status);
649 
650 static void hdmi_set_clk_regenerator(struct dw_hdmi *hdmi,
651 	unsigned long pixel_clk, unsigned int sample_rate)
652 {
653 	unsigned long ftdms = pixel_clk;
654 	unsigned int n, cts;
655 	u8 config3;
656 	u64 tmp;
657 
658 	n = hdmi_compute_n(sample_rate, pixel_clk);
659 
660 	config3 = hdmi_readb(hdmi, HDMI_CONFIG3_ID);
661 
662 	/* Compute CTS when using internal AHB audio or General Parallel audio*/
663 	if ((config3 & HDMI_CONFIG3_AHBAUDDMA) || (config3 & HDMI_CONFIG3_GPAUD)) {
664 		/*
665 		 * Compute the CTS value from the N value.  Note that CTS and N
666 		 * can be up to 20 bits in total, so we need 64-bit math.  Also
667 		 * note that our TDMS clock is not fully accurate; it is
668 		 * accurate to kHz.  This can introduce an unnecessary remainder
669 		 * in the calculation below, so we don't try to warn about that.
670 		 */
671 		tmp = (u64)ftdms * n;
672 		do_div(tmp, 128 * sample_rate);
673 		cts = tmp;
674 
675 		dev_dbg(hdmi->dev, "%s: fs=%uHz ftdms=%lu.%03luMHz N=%d cts=%d\n",
676 			__func__, sample_rate,
677 			ftdms / 1000000, (ftdms / 1000) % 1000,
678 			n, cts);
679 	} else {
680 		cts = 0;
681 	}
682 
683 	spin_lock_irq(&hdmi->audio_lock);
684 	hdmi->audio_n = n;
685 	hdmi->audio_cts = cts;
686 	hdmi_set_cts_n(hdmi, cts, hdmi->audio_enable ? n : 0);
687 	spin_unlock_irq(&hdmi->audio_lock);
688 }
689 
690 static void hdmi_init_clk_regenerator(struct dw_hdmi *hdmi)
691 {
692 	mutex_lock(&hdmi->audio_mutex);
693 	hdmi_set_clk_regenerator(hdmi, 74250000, hdmi->sample_rate);
694 	mutex_unlock(&hdmi->audio_mutex);
695 }
696 
697 static void hdmi_clk_regenerator_update_pixel_clock(struct dw_hdmi *hdmi)
698 {
699 	mutex_lock(&hdmi->audio_mutex);
700 	hdmi_set_clk_regenerator(hdmi, hdmi->hdmi_data.video_mode.mtmdsclock,
701 				 hdmi->sample_rate);
702 	mutex_unlock(&hdmi->audio_mutex);
703 }
704 
705 void dw_hdmi_set_sample_width(struct dw_hdmi *hdmi, unsigned int width)
706 {
707 	mutex_lock(&hdmi->audio_mutex);
708 	hdmi->sample_width = width;
709 	mutex_unlock(&hdmi->audio_mutex);
710 }
711 EXPORT_SYMBOL_GPL(dw_hdmi_set_sample_width);
712 
713 void dw_hdmi_set_sample_non_pcm(struct dw_hdmi *hdmi, unsigned int non_pcm)
714 {
715 	mutex_lock(&hdmi->audio_mutex);
716 	hdmi->sample_non_pcm = non_pcm;
717 	mutex_unlock(&hdmi->audio_mutex);
718 }
719 EXPORT_SYMBOL_GPL(dw_hdmi_set_sample_non_pcm);
720 
721 void dw_hdmi_set_sample_iec958(struct dw_hdmi *hdmi, unsigned int iec958)
722 {
723 	mutex_lock(&hdmi->audio_mutex);
724 	hdmi->sample_iec958 = iec958;
725 	mutex_unlock(&hdmi->audio_mutex);
726 }
727 EXPORT_SYMBOL_GPL(dw_hdmi_set_sample_iec958);
728 
729 void dw_hdmi_set_sample_rate(struct dw_hdmi *hdmi, unsigned int rate)
730 {
731 	mutex_lock(&hdmi->audio_mutex);
732 	hdmi->sample_rate = rate;
733 	hdmi_set_clk_regenerator(hdmi, hdmi->hdmi_data.video_mode.mtmdsclock,
734 				 hdmi->sample_rate);
735 	mutex_unlock(&hdmi->audio_mutex);
736 }
737 EXPORT_SYMBOL_GPL(dw_hdmi_set_sample_rate);
738 
739 void dw_hdmi_set_channel_count(struct dw_hdmi *hdmi, unsigned int cnt)
740 {
741 	u8 layout;
742 
743 	mutex_lock(&hdmi->audio_mutex);
744 	hdmi->channels = cnt;
745 
746 	/*
747 	 * For >2 channel PCM audio, we need to select layout 1
748 	 * and set an appropriate channel map.
749 	 */
750 	if (cnt > 2)
751 		layout = HDMI_FC_AUDSCONF_AUD_PACKET_LAYOUT_LAYOUT1;
752 	else
753 		layout = HDMI_FC_AUDSCONF_AUD_PACKET_LAYOUT_LAYOUT0;
754 
755 	hdmi_modb(hdmi, layout, HDMI_FC_AUDSCONF_AUD_PACKET_LAYOUT_MASK,
756 		  HDMI_FC_AUDSCONF);
757 
758 	/* Set the audio infoframes channel count */
759 	hdmi_modb(hdmi, (cnt - 1) << HDMI_FC_AUDICONF0_CC_OFFSET,
760 		  HDMI_FC_AUDICONF0_CC_MASK, HDMI_FC_AUDICONF0);
761 
762 	mutex_unlock(&hdmi->audio_mutex);
763 }
764 EXPORT_SYMBOL_GPL(dw_hdmi_set_channel_count);
765 
766 void dw_hdmi_set_channel_allocation(struct dw_hdmi *hdmi, unsigned int ca)
767 {
768 	mutex_lock(&hdmi->audio_mutex);
769 
770 	hdmi_writeb(hdmi, ca, HDMI_FC_AUDICONF2);
771 
772 	mutex_unlock(&hdmi->audio_mutex);
773 }
774 EXPORT_SYMBOL_GPL(dw_hdmi_set_channel_allocation);
775 
776 static void hdmi_enable_audio_clk(struct dw_hdmi *hdmi, bool enable)
777 {
778 	if (enable)
779 		hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_AUDCLK_DISABLE;
780 	else
781 		hdmi->mc_clkdis |= HDMI_MC_CLKDIS_AUDCLK_DISABLE;
782 	hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
783 }
784 
785 static u8 *hdmi_audio_get_eld(struct dw_hdmi *hdmi)
786 {
787 	if (!hdmi->curr_conn)
788 		return NULL;
789 
790 	return hdmi->curr_conn->eld;
791 }
792 
793 static void dw_hdmi_gp_audio_enable(struct dw_hdmi *hdmi)
794 {
795 	const struct dw_hdmi_plat_data *pdata = hdmi->plat_data;
796 	int sample_freq = 0x2, org_sample_freq = 0xD;
797 	int ch_mask = BIT(hdmi->channels) - 1;
798 
799 	switch (hdmi->sample_rate) {
800 	case 32000:
801 		sample_freq = 0x03;
802 		org_sample_freq = 0x0C;
803 		break;
804 	case 44100:
805 		sample_freq = 0x00;
806 		org_sample_freq = 0x0F;
807 		break;
808 	case 48000:
809 		sample_freq = 0x02;
810 		org_sample_freq = 0x0D;
811 		break;
812 	case 88200:
813 		sample_freq = 0x08;
814 		org_sample_freq = 0x07;
815 		break;
816 	case 96000:
817 		sample_freq = 0x0A;
818 		org_sample_freq = 0x05;
819 		break;
820 	case 176400:
821 		sample_freq = 0x0C;
822 		org_sample_freq = 0x03;
823 		break;
824 	case 192000:
825 		sample_freq = 0x0E;
826 		org_sample_freq = 0x01;
827 		break;
828 	default:
829 		break;
830 	}
831 
832 	hdmi_set_cts_n(hdmi, hdmi->audio_cts, hdmi->audio_n);
833 	hdmi_enable_audio_clk(hdmi, true);
834 
835 	hdmi_writeb(hdmi, 0x1, HDMI_FC_AUDSCHNLS0);
836 	hdmi_writeb(hdmi, hdmi->channels, HDMI_FC_AUDSCHNLS2);
837 	hdmi_writeb(hdmi, 0x22, HDMI_FC_AUDSCHNLS3);
838 	hdmi_writeb(hdmi, 0x22, HDMI_FC_AUDSCHNLS4);
839 	hdmi_writeb(hdmi, 0x11, HDMI_FC_AUDSCHNLS5);
840 	hdmi_writeb(hdmi, 0x11, HDMI_FC_AUDSCHNLS6);
841 	hdmi_writeb(hdmi, (0x3 << 4) | sample_freq, HDMI_FC_AUDSCHNLS7);
842 	hdmi_writeb(hdmi, (org_sample_freq << 4) | 0xb, HDMI_FC_AUDSCHNLS8);
843 
844 	hdmi_writeb(hdmi, ch_mask, HDMI_GP_CONF1);
845 	hdmi_writeb(hdmi, 0x02, HDMI_GP_CONF2);
846 	hdmi_writeb(hdmi, 0x01, HDMI_GP_CONF0);
847 
848 	hdmi_modb(hdmi,  0x3, 0x3, HDMI_FC_DATAUTO3);
849 
850 	/* hbr */
851 	if (hdmi->sample_rate == 192000 && hdmi->channels == 8 &&
852 	    hdmi->sample_width == 32 && hdmi->sample_non_pcm)
853 		hdmi_modb(hdmi, 0x01, 0x01, HDMI_GP_CONF2);
854 
855 	if (pdata->enable_audio)
856 		pdata->enable_audio(hdmi,
857 				    hdmi->channels,
858 				    hdmi->sample_width,
859 				    hdmi->sample_rate,
860 				    hdmi->sample_non_pcm,
861 				    hdmi->sample_iec958);
862 }
863 
864 static void dw_hdmi_gp_audio_disable(struct dw_hdmi *hdmi)
865 {
866 	const struct dw_hdmi_plat_data *pdata = hdmi->plat_data;
867 
868 	hdmi_set_cts_n(hdmi, hdmi->audio_cts, 0);
869 
870 	hdmi_modb(hdmi,  0, 0x3, HDMI_FC_DATAUTO3);
871 	if (pdata->disable_audio)
872 		pdata->disable_audio(hdmi);
873 
874 	hdmi_enable_audio_clk(hdmi, false);
875 }
876 
877 static void dw_hdmi_ahb_audio_enable(struct dw_hdmi *hdmi)
878 {
879 	hdmi_set_cts_n(hdmi, hdmi->audio_cts, hdmi->audio_n);
880 }
881 
882 static void dw_hdmi_ahb_audio_disable(struct dw_hdmi *hdmi)
883 {
884 	hdmi_set_cts_n(hdmi, hdmi->audio_cts, 0);
885 }
886 
887 static void dw_hdmi_i2s_audio_enable(struct dw_hdmi *hdmi)
888 {
889 	hdmi_set_cts_n(hdmi, hdmi->audio_cts, hdmi->audio_n);
890 	hdmi_enable_audio_clk(hdmi, true);
891 }
892 
893 static void dw_hdmi_i2s_audio_disable(struct dw_hdmi *hdmi)
894 {
895 	hdmi_enable_audio_clk(hdmi, false);
896 }
897 
898 void dw_hdmi_audio_enable(struct dw_hdmi *hdmi)
899 {
900 	unsigned long flags;
901 
902 	spin_lock_irqsave(&hdmi->audio_lock, flags);
903 	hdmi->audio_enable = true;
904 	if (hdmi->enable_audio)
905 		hdmi->enable_audio(hdmi);
906 	spin_unlock_irqrestore(&hdmi->audio_lock, flags);
907 }
908 EXPORT_SYMBOL_GPL(dw_hdmi_audio_enable);
909 
910 void dw_hdmi_audio_disable(struct dw_hdmi *hdmi)
911 {
912 	unsigned long flags;
913 
914 	spin_lock_irqsave(&hdmi->audio_lock, flags);
915 	hdmi->audio_enable = false;
916 	if (hdmi->disable_audio)
917 		hdmi->disable_audio(hdmi);
918 	spin_unlock_irqrestore(&hdmi->audio_lock, flags);
919 }
920 EXPORT_SYMBOL_GPL(dw_hdmi_audio_disable);
921 
922 static bool hdmi_bus_fmt_is_rgb(unsigned int bus_format)
923 {
924 	switch (bus_format) {
925 	case MEDIA_BUS_FMT_RGB888_1X24:
926 	case MEDIA_BUS_FMT_RGB101010_1X30:
927 	case MEDIA_BUS_FMT_RGB121212_1X36:
928 	case MEDIA_BUS_FMT_RGB161616_1X48:
929 		return true;
930 
931 	default:
932 		return false;
933 	}
934 }
935 
936 static bool hdmi_bus_fmt_is_yuv444(unsigned int bus_format)
937 {
938 	switch (bus_format) {
939 	case MEDIA_BUS_FMT_YUV8_1X24:
940 	case MEDIA_BUS_FMT_YUV10_1X30:
941 	case MEDIA_BUS_FMT_YUV12_1X36:
942 	case MEDIA_BUS_FMT_YUV16_1X48:
943 		return true;
944 
945 	default:
946 		return false;
947 	}
948 }
949 
950 static bool hdmi_bus_fmt_is_yuv422(unsigned int bus_format)
951 {
952 	switch (bus_format) {
953 	case MEDIA_BUS_FMT_UYVY8_1X16:
954 	case MEDIA_BUS_FMT_UYVY10_1X20:
955 	case MEDIA_BUS_FMT_UYVY12_1X24:
956 		return true;
957 
958 	default:
959 		return false;
960 	}
961 }
962 
963 static bool hdmi_bus_fmt_is_yuv420(unsigned int bus_format)
964 {
965 	switch (bus_format) {
966 	case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
967 	case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
968 	case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
969 	case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
970 		return true;
971 
972 	default:
973 		return false;
974 	}
975 }
976 
977 static int hdmi_bus_fmt_color_depth(unsigned int bus_format)
978 {
979 	switch (bus_format) {
980 	case MEDIA_BUS_FMT_RGB888_1X24:
981 	case MEDIA_BUS_FMT_YUV8_1X24:
982 	case MEDIA_BUS_FMT_UYVY8_1X16:
983 	case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
984 		return 8;
985 
986 	case MEDIA_BUS_FMT_RGB101010_1X30:
987 	case MEDIA_BUS_FMT_YUV10_1X30:
988 	case MEDIA_BUS_FMT_UYVY10_1X20:
989 	case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
990 		return 10;
991 
992 	case MEDIA_BUS_FMT_RGB121212_1X36:
993 	case MEDIA_BUS_FMT_YUV12_1X36:
994 	case MEDIA_BUS_FMT_UYVY12_1X24:
995 	case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
996 		return 12;
997 
998 	case MEDIA_BUS_FMT_RGB161616_1X48:
999 	case MEDIA_BUS_FMT_YUV16_1X48:
1000 	case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
1001 		return 16;
1002 
1003 	default:
1004 		return 0;
1005 	}
1006 }
1007 
1008 /*
1009  * this submodule is responsible for the video data synchronization.
1010  * for example, for RGB 4:4:4 input, the data map is defined as
1011  *			pin{47~40} <==> R[7:0]
1012  *			pin{31~24} <==> G[7:0]
1013  *			pin{15~8}  <==> B[7:0]
1014  */
1015 static void hdmi_video_sample(struct dw_hdmi *hdmi)
1016 {
1017 	int color_format = 0;
1018 	u8 val;
1019 
1020 	switch (hdmi->hdmi_data.enc_in_bus_format) {
1021 	case MEDIA_BUS_FMT_RGB888_1X24:
1022 		color_format = 0x01;
1023 		break;
1024 	case MEDIA_BUS_FMT_RGB101010_1X30:
1025 		color_format = 0x03;
1026 		break;
1027 	case MEDIA_BUS_FMT_RGB121212_1X36:
1028 		color_format = 0x05;
1029 		break;
1030 	case MEDIA_BUS_FMT_RGB161616_1X48:
1031 		color_format = 0x07;
1032 		break;
1033 
1034 	case MEDIA_BUS_FMT_YUV8_1X24:
1035 	case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
1036 		color_format = 0x09;
1037 		break;
1038 	case MEDIA_BUS_FMT_YUV10_1X30:
1039 	case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
1040 		color_format = 0x0B;
1041 		break;
1042 	case MEDIA_BUS_FMT_YUV12_1X36:
1043 	case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
1044 		color_format = 0x0D;
1045 		break;
1046 	case MEDIA_BUS_FMT_YUV16_1X48:
1047 	case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
1048 		color_format = 0x0F;
1049 		break;
1050 
1051 	case MEDIA_BUS_FMT_UYVY8_1X16:
1052 		color_format = 0x16;
1053 		break;
1054 	case MEDIA_BUS_FMT_UYVY10_1X20:
1055 		color_format = 0x14;
1056 		break;
1057 	case MEDIA_BUS_FMT_UYVY12_1X24:
1058 		color_format = 0x12;
1059 		break;
1060 
1061 	default:
1062 		return;
1063 	}
1064 
1065 	val = HDMI_TX_INVID0_INTERNAL_DE_GENERATOR_DISABLE |
1066 		((color_format << HDMI_TX_INVID0_VIDEO_MAPPING_OFFSET) &
1067 		HDMI_TX_INVID0_VIDEO_MAPPING_MASK);
1068 	hdmi_writeb(hdmi, val, HDMI_TX_INVID0);
1069 
1070 	/* Enable TX stuffing: When DE is inactive, fix the output data to 0 */
1071 	val = HDMI_TX_INSTUFFING_BDBDATA_STUFFING_ENABLE |
1072 		HDMI_TX_INSTUFFING_RCRDATA_STUFFING_ENABLE |
1073 		HDMI_TX_INSTUFFING_GYDATA_STUFFING_ENABLE;
1074 	hdmi_writeb(hdmi, val, HDMI_TX_INSTUFFING);
1075 	hdmi_writeb(hdmi, 0x0, HDMI_TX_GYDATA0);
1076 	hdmi_writeb(hdmi, 0x0, HDMI_TX_GYDATA1);
1077 	hdmi_writeb(hdmi, 0x0, HDMI_TX_RCRDATA0);
1078 	hdmi_writeb(hdmi, 0x0, HDMI_TX_RCRDATA1);
1079 	hdmi_writeb(hdmi, 0x0, HDMI_TX_BCBDATA0);
1080 	hdmi_writeb(hdmi, 0x0, HDMI_TX_BCBDATA1);
1081 }
1082 
1083 static int is_color_space_conversion(struct dw_hdmi *hdmi)
1084 {
1085 	struct hdmi_data_info *hdmi_data = &hdmi->hdmi_data;
1086 	bool is_input_rgb, is_output_rgb;
1087 
1088 	is_input_rgb = hdmi_bus_fmt_is_rgb(hdmi_data->enc_in_bus_format);
1089 	is_output_rgb = hdmi_bus_fmt_is_rgb(hdmi_data->enc_out_bus_format);
1090 
1091 	return (is_input_rgb != is_output_rgb) ||
1092 	       (is_input_rgb && is_output_rgb && hdmi_data->rgb_limited_range);
1093 }
1094 
1095 static int is_color_space_decimation(struct dw_hdmi *hdmi)
1096 {
1097 	if (!hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format))
1098 		return 0;
1099 
1100 	if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_in_bus_format) ||
1101 	    hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_in_bus_format))
1102 		return 1;
1103 
1104 	return 0;
1105 }
1106 
1107 static int is_color_space_interpolation(struct dw_hdmi *hdmi)
1108 {
1109 	if (!hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_in_bus_format))
1110 		return 0;
1111 
1112 	if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format) ||
1113 	    hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format))
1114 		return 1;
1115 
1116 	return 0;
1117 }
1118 
1119 static bool is_csc_needed(struct dw_hdmi *hdmi)
1120 {
1121 	return is_color_space_conversion(hdmi) ||
1122 	       is_color_space_decimation(hdmi) ||
1123 	       is_color_space_interpolation(hdmi);
1124 }
1125 
1126 static void dw_hdmi_update_csc_coeffs(struct dw_hdmi *hdmi)
1127 {
1128 	const u16 (*csc_coeff)[3][4] = &csc_coeff_default;
1129 	bool is_input_rgb, is_output_rgb;
1130 	unsigned i;
1131 	u32 csc_scale = 1;
1132 
1133 	is_input_rgb = hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_in_bus_format);
1134 	is_output_rgb = hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format);
1135 
1136 	if (!is_input_rgb && is_output_rgb) {
1137 		if (hdmi->hdmi_data.enc_out_encoding == V4L2_YCBCR_ENC_601)
1138 			csc_coeff = &csc_coeff_rgb_out_eitu601;
1139 		else
1140 			csc_coeff = &csc_coeff_rgb_out_eitu709;
1141 	} else if (is_input_rgb && !is_output_rgb) {
1142 		if (hdmi->hdmi_data.enc_out_encoding == V4L2_YCBCR_ENC_601)
1143 			csc_coeff = &csc_coeff_rgb_in_eitu601;
1144 		else
1145 			csc_coeff = &csc_coeff_rgb_in_eitu709;
1146 		csc_scale = 0;
1147 	} else if (is_input_rgb && is_output_rgb &&
1148 		   hdmi->hdmi_data.rgb_limited_range) {
1149 		csc_coeff = &csc_coeff_rgb_full_to_rgb_limited;
1150 	}
1151 
1152 	/* The CSC registers are sequential, alternating MSB then LSB */
1153 	for (i = 0; i < ARRAY_SIZE(csc_coeff_default[0]); i++) {
1154 		u16 coeff_a = (*csc_coeff)[0][i];
1155 		u16 coeff_b = (*csc_coeff)[1][i];
1156 		u16 coeff_c = (*csc_coeff)[2][i];
1157 
1158 		hdmi_writeb(hdmi, coeff_a & 0xff, HDMI_CSC_COEF_A1_LSB + i * 2);
1159 		hdmi_writeb(hdmi, coeff_a >> 8, HDMI_CSC_COEF_A1_MSB + i * 2);
1160 		hdmi_writeb(hdmi, coeff_b & 0xff, HDMI_CSC_COEF_B1_LSB + i * 2);
1161 		hdmi_writeb(hdmi, coeff_b >> 8, HDMI_CSC_COEF_B1_MSB + i * 2);
1162 		hdmi_writeb(hdmi, coeff_c & 0xff, HDMI_CSC_COEF_C1_LSB + i * 2);
1163 		hdmi_writeb(hdmi, coeff_c >> 8, HDMI_CSC_COEF_C1_MSB + i * 2);
1164 	}
1165 
1166 	hdmi_modb(hdmi, csc_scale, HDMI_CSC_SCALE_CSCSCALE_MASK,
1167 		  HDMI_CSC_SCALE);
1168 }
1169 
1170 static void hdmi_video_csc(struct dw_hdmi *hdmi)
1171 {
1172 	int color_depth = 0;
1173 	int interpolation = HDMI_CSC_CFG_INTMODE_DISABLE;
1174 	int decimation = 0;
1175 
1176 	/* YCC422 interpolation to 444 mode */
1177 	if (is_color_space_interpolation(hdmi))
1178 		interpolation = HDMI_CSC_CFG_INTMODE_CHROMA_INT_FORMULA1;
1179 	else if (is_color_space_decimation(hdmi))
1180 		decimation = HDMI_CSC_CFG_DECMODE_CHROMA_INT_FORMULA3;
1181 
1182 	switch (hdmi_bus_fmt_color_depth(hdmi->hdmi_data.enc_out_bus_format)) {
1183 	case 8:
1184 		color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_24BPP;
1185 		break;
1186 	case 10:
1187 		color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_30BPP;
1188 		break;
1189 	case 12:
1190 		color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_36BPP;
1191 		break;
1192 	case 16:
1193 		color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_48BPP;
1194 		break;
1195 
1196 	default:
1197 		return;
1198 	}
1199 
1200 	/* Configure the CSC registers */
1201 	hdmi_writeb(hdmi, interpolation | decimation, HDMI_CSC_CFG);
1202 	hdmi_modb(hdmi, color_depth, HDMI_CSC_SCALE_CSC_COLORDE_PTH_MASK,
1203 		  HDMI_CSC_SCALE);
1204 
1205 	dw_hdmi_update_csc_coeffs(hdmi);
1206 }
1207 
1208 /*
1209  * HDMI video packetizer is used to packetize the data.
1210  * for example, if input is YCC422 mode or repeater is used,
1211  * data should be repacked this module can be bypassed.
1212  */
1213 static void hdmi_video_packetize(struct dw_hdmi *hdmi)
1214 {
1215 	unsigned int color_depth = 0;
1216 	unsigned int remap_size = HDMI_VP_REMAP_YCC422_16bit;
1217 	unsigned int output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_PP;
1218 	struct hdmi_data_info *hdmi_data = &hdmi->hdmi_data;
1219 	u8 val, vp_conf;
1220 	u8 clear_gcp_auto = 0;
1221 
1222 
1223 	if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format) ||
1224 	    hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format) ||
1225 	    hdmi_bus_fmt_is_yuv420(hdmi->hdmi_data.enc_out_bus_format)) {
1226 		switch (hdmi_bus_fmt_color_depth(
1227 					hdmi->hdmi_data.enc_out_bus_format)) {
1228 		case 8:
1229 			color_depth = 4;
1230 			output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS;
1231 			clear_gcp_auto = 1;
1232 			break;
1233 		case 10:
1234 			color_depth = 5;
1235 			break;
1236 		case 12:
1237 			color_depth = 6;
1238 			break;
1239 		case 16:
1240 			color_depth = 7;
1241 			break;
1242 		default:
1243 			output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS;
1244 		}
1245 	} else if (hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format)) {
1246 		switch (hdmi_bus_fmt_color_depth(
1247 					hdmi->hdmi_data.enc_out_bus_format)) {
1248 		case 0:
1249 		case 8:
1250 			remap_size = HDMI_VP_REMAP_YCC422_16bit;
1251 			clear_gcp_auto = 1;
1252 			break;
1253 		case 10:
1254 			remap_size = HDMI_VP_REMAP_YCC422_20bit;
1255 			break;
1256 		case 12:
1257 			remap_size = HDMI_VP_REMAP_YCC422_24bit;
1258 			break;
1259 
1260 		default:
1261 			return;
1262 		}
1263 		output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_YCC422;
1264 	} else {
1265 		return;
1266 	}
1267 
1268 	/* set the packetizer registers */
1269 	val = ((color_depth << HDMI_VP_PR_CD_COLOR_DEPTH_OFFSET) &
1270 		HDMI_VP_PR_CD_COLOR_DEPTH_MASK) |
1271 		((hdmi_data->pix_repet_factor <<
1272 		HDMI_VP_PR_CD_DESIRED_PR_FACTOR_OFFSET) &
1273 		HDMI_VP_PR_CD_DESIRED_PR_FACTOR_MASK);
1274 	hdmi_writeb(hdmi, val, HDMI_VP_PR_CD);
1275 
1276 	/* HDMI1.4b specification section 6.5.3:
1277 	 * Source shall only send GCPs with non-zero CD to sinks
1278 	 * that indicate support for Deep Color.
1279 	 * GCP only transmit CD and do not handle AVMUTE, PP norDefault_Phase (yet).
1280 	 * Disable Auto GCP when 24-bit color for sinks that not support Deep Color.
1281 	 */
1282 	val = hdmi_readb(hdmi, HDMI_FC_DATAUTO3);
1283 	if (clear_gcp_auto == 1)
1284 		val &= ~HDMI_FC_DATAUTO3_GCP_AUTO;
1285 	else
1286 		val |= HDMI_FC_DATAUTO3_GCP_AUTO;
1287 	hdmi_writeb(hdmi, val, HDMI_FC_DATAUTO3);
1288 
1289 	hdmi_modb(hdmi, HDMI_VP_STUFF_PR_STUFFING_STUFFING_MODE,
1290 		  HDMI_VP_STUFF_PR_STUFFING_MASK, HDMI_VP_STUFF);
1291 
1292 	/* Data from pixel repeater block */
1293 	if (hdmi_data->pix_repet_factor > 1) {
1294 		vp_conf = HDMI_VP_CONF_PR_EN_ENABLE |
1295 			  HDMI_VP_CONF_BYPASS_SELECT_PIX_REPEATER;
1296 	} else { /* data from packetizer block */
1297 		vp_conf = HDMI_VP_CONF_PR_EN_DISABLE |
1298 			  HDMI_VP_CONF_BYPASS_SELECT_VID_PACKETIZER;
1299 	}
1300 
1301 	hdmi_modb(hdmi, vp_conf,
1302 		  HDMI_VP_CONF_PR_EN_MASK |
1303 		  HDMI_VP_CONF_BYPASS_SELECT_MASK, HDMI_VP_CONF);
1304 
1305 	hdmi_modb(hdmi, 1 << HDMI_VP_STUFF_IDEFAULT_PHASE_OFFSET,
1306 		  HDMI_VP_STUFF_IDEFAULT_PHASE_MASK, HDMI_VP_STUFF);
1307 
1308 	hdmi_writeb(hdmi, remap_size, HDMI_VP_REMAP);
1309 
1310 	if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_PP) {
1311 		vp_conf = HDMI_VP_CONF_BYPASS_EN_DISABLE |
1312 			  HDMI_VP_CONF_PP_EN_ENABLE |
1313 			  HDMI_VP_CONF_YCC422_EN_DISABLE;
1314 	} else if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_YCC422) {
1315 		vp_conf = HDMI_VP_CONF_BYPASS_EN_DISABLE |
1316 			  HDMI_VP_CONF_PP_EN_DISABLE |
1317 			  HDMI_VP_CONF_YCC422_EN_ENABLE;
1318 	} else if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS) {
1319 		vp_conf = HDMI_VP_CONF_BYPASS_EN_ENABLE |
1320 			  HDMI_VP_CONF_PP_EN_DISABLE |
1321 			  HDMI_VP_CONF_YCC422_EN_DISABLE;
1322 	} else {
1323 		return;
1324 	}
1325 
1326 	hdmi_modb(hdmi, vp_conf,
1327 		  HDMI_VP_CONF_BYPASS_EN_MASK | HDMI_VP_CONF_PP_EN_ENMASK |
1328 		  HDMI_VP_CONF_YCC422_EN_MASK, HDMI_VP_CONF);
1329 
1330 	hdmi_modb(hdmi, HDMI_VP_STUFF_PP_STUFFING_STUFFING_MODE |
1331 			HDMI_VP_STUFF_YCC422_STUFFING_STUFFING_MODE,
1332 		  HDMI_VP_STUFF_PP_STUFFING_MASK |
1333 		  HDMI_VP_STUFF_YCC422_STUFFING_MASK, HDMI_VP_STUFF);
1334 
1335 	hdmi_modb(hdmi, output_select, HDMI_VP_CONF_OUTPUT_SELECTOR_MASK,
1336 		  HDMI_VP_CONF);
1337 }
1338 
1339 /* -----------------------------------------------------------------------------
1340  * Synopsys PHY Handling
1341  */
1342 
1343 static inline void hdmi_phy_test_clear(struct dw_hdmi *hdmi,
1344 				       unsigned char bit)
1345 {
1346 	hdmi_modb(hdmi, bit << HDMI_PHY_TST0_TSTCLR_OFFSET,
1347 		  HDMI_PHY_TST0_TSTCLR_MASK, HDMI_PHY_TST0);
1348 }
1349 
1350 static bool hdmi_phy_wait_i2c_done(struct dw_hdmi *hdmi, int msec)
1351 {
1352 	u32 val;
1353 
1354 	while ((val = hdmi_readb(hdmi, HDMI_IH_I2CMPHY_STAT0) & 0x3) == 0) {
1355 		if (msec-- == 0)
1356 			return false;
1357 		udelay(1000);
1358 	}
1359 	hdmi_writeb(hdmi, val, HDMI_IH_I2CMPHY_STAT0);
1360 
1361 	return true;
1362 }
1363 
1364 void dw_hdmi_phy_i2c_write(struct dw_hdmi *hdmi, unsigned short data,
1365 			   unsigned char addr)
1366 {
1367 	hdmi_writeb(hdmi, 0xFF, HDMI_IH_I2CMPHY_STAT0);
1368 	hdmi_writeb(hdmi, addr, HDMI_PHY_I2CM_ADDRESS_ADDR);
1369 	hdmi_writeb(hdmi, (unsigned char)(data >> 8),
1370 		    HDMI_PHY_I2CM_DATAO_1_ADDR);
1371 	hdmi_writeb(hdmi, (unsigned char)(data >> 0),
1372 		    HDMI_PHY_I2CM_DATAO_0_ADDR);
1373 	hdmi_writeb(hdmi, HDMI_PHY_I2CM_OPERATION_ADDR_WRITE,
1374 		    HDMI_PHY_I2CM_OPERATION_ADDR);
1375 	hdmi_phy_wait_i2c_done(hdmi, 1000);
1376 }
1377 EXPORT_SYMBOL_GPL(dw_hdmi_phy_i2c_write);
1378 
1379 /* Filter out invalid setups to avoid configuring SCDC and scrambling */
1380 static bool dw_hdmi_support_scdc(struct dw_hdmi *hdmi,
1381 				 const struct drm_display_info *display)
1382 {
1383 	/* Completely disable SCDC support for older controllers */
1384 	if (hdmi->version < 0x200a)
1385 		return false;
1386 
1387 	/* Disable if no DDC bus */
1388 	if (!hdmi->ddc)
1389 		return false;
1390 
1391 	/* Disable if SCDC is not supported, or if an HF-VSDB block is absent */
1392 	if (!display->hdmi.scdc.supported ||
1393 	    !display->hdmi.scdc.scrambling.supported)
1394 		return false;
1395 
1396 	/*
1397 	 * Disable if display only support low TMDS rates and scrambling
1398 	 * for low rates is not supported either
1399 	 */
1400 	if (!display->hdmi.scdc.scrambling.low_rates &&
1401 	    display->max_tmds_clock <= 340000)
1402 		return false;
1403 
1404 	return true;
1405 }
1406 
1407 /*
1408  * HDMI2.0 Specifies the following procedure for High TMDS Bit Rates:
1409  * - The Source shall suspend transmission of the TMDS clock and data
1410  * - The Source shall write to the TMDS_Bit_Clock_Ratio bit to change it
1411  * from a 0 to a 1 or from a 1 to a 0
1412  * - The Source shall allow a minimum of 1 ms and a maximum of 100 ms from
1413  * the time the TMDS_Bit_Clock_Ratio bit is written until resuming
1414  * transmission of TMDS clock and data
1415  *
1416  * To respect the 100ms maximum delay, the dw_hdmi_set_high_tmds_clock_ratio()
1417  * helper should called right before enabling the TMDS Clock and Data in
1418  * the PHY configuration callback.
1419  */
1420 void dw_hdmi_set_high_tmds_clock_ratio(struct dw_hdmi *hdmi,
1421 				       const struct drm_display_info *display)
1422 {
1423 	unsigned long mtmdsclock = hdmi->hdmi_data.video_mode.mtmdsclock;
1424 
1425 	/* Control for TMDS Bit Period/TMDS Clock-Period Ratio */
1426 	if (dw_hdmi_support_scdc(hdmi, display)) {
1427 		if (mtmdsclock > HDMI14_MAX_TMDSCLK)
1428 			drm_scdc_set_high_tmds_clock_ratio(hdmi->curr_conn, 1);
1429 		else
1430 			drm_scdc_set_high_tmds_clock_ratio(hdmi->curr_conn, 0);
1431 	}
1432 }
1433 EXPORT_SYMBOL_GPL(dw_hdmi_set_high_tmds_clock_ratio);
1434 
1435 static void dw_hdmi_phy_enable_powerdown(struct dw_hdmi *hdmi, bool enable)
1436 {
1437 	hdmi_mask_writeb(hdmi, !enable, HDMI_PHY_CONF0,
1438 			 HDMI_PHY_CONF0_PDZ_OFFSET,
1439 			 HDMI_PHY_CONF0_PDZ_MASK);
1440 }
1441 
1442 static void dw_hdmi_phy_enable_tmds(struct dw_hdmi *hdmi, u8 enable)
1443 {
1444 	hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1445 			 HDMI_PHY_CONF0_ENTMDS_OFFSET,
1446 			 HDMI_PHY_CONF0_ENTMDS_MASK);
1447 }
1448 
1449 static void dw_hdmi_phy_enable_svsret(struct dw_hdmi *hdmi, u8 enable)
1450 {
1451 	hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1452 			 HDMI_PHY_CONF0_SVSRET_OFFSET,
1453 			 HDMI_PHY_CONF0_SVSRET_MASK);
1454 }
1455 
1456 void dw_hdmi_phy_gen2_pddq(struct dw_hdmi *hdmi, u8 enable)
1457 {
1458 	hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1459 			 HDMI_PHY_CONF0_GEN2_PDDQ_OFFSET,
1460 			 HDMI_PHY_CONF0_GEN2_PDDQ_MASK);
1461 }
1462 EXPORT_SYMBOL_GPL(dw_hdmi_phy_gen2_pddq);
1463 
1464 void dw_hdmi_phy_gen2_txpwron(struct dw_hdmi *hdmi, u8 enable)
1465 {
1466 	hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1467 			 HDMI_PHY_CONF0_GEN2_TXPWRON_OFFSET,
1468 			 HDMI_PHY_CONF0_GEN2_TXPWRON_MASK);
1469 }
1470 EXPORT_SYMBOL_GPL(dw_hdmi_phy_gen2_txpwron);
1471 
1472 static void dw_hdmi_phy_sel_data_en_pol(struct dw_hdmi *hdmi, u8 enable)
1473 {
1474 	hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1475 			 HDMI_PHY_CONF0_SELDATAENPOL_OFFSET,
1476 			 HDMI_PHY_CONF0_SELDATAENPOL_MASK);
1477 }
1478 
1479 static void dw_hdmi_phy_sel_interface_control(struct dw_hdmi *hdmi, u8 enable)
1480 {
1481 	hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1482 			 HDMI_PHY_CONF0_SELDIPIF_OFFSET,
1483 			 HDMI_PHY_CONF0_SELDIPIF_MASK);
1484 }
1485 
1486 void dw_hdmi_phy_gen1_reset(struct dw_hdmi *hdmi)
1487 {
1488 	/* PHY reset. The reset signal is active low on Gen1 PHYs. */
1489 	hdmi_writeb(hdmi, 0, HDMI_MC_PHYRSTZ);
1490 	hdmi_writeb(hdmi, HDMI_MC_PHYRSTZ_PHYRSTZ, HDMI_MC_PHYRSTZ);
1491 }
1492 EXPORT_SYMBOL_GPL(dw_hdmi_phy_gen1_reset);
1493 
1494 void dw_hdmi_phy_gen2_reset(struct dw_hdmi *hdmi)
1495 {
1496 	/* PHY reset. The reset signal is active high on Gen2 PHYs. */
1497 	hdmi_writeb(hdmi, HDMI_MC_PHYRSTZ_PHYRSTZ, HDMI_MC_PHYRSTZ);
1498 	hdmi_writeb(hdmi, 0, HDMI_MC_PHYRSTZ);
1499 }
1500 EXPORT_SYMBOL_GPL(dw_hdmi_phy_gen2_reset);
1501 
1502 void dw_hdmi_phy_i2c_set_addr(struct dw_hdmi *hdmi, u8 address)
1503 {
1504 	hdmi_phy_test_clear(hdmi, 1);
1505 	hdmi_writeb(hdmi, address, HDMI_PHY_I2CM_SLAVE_ADDR);
1506 	hdmi_phy_test_clear(hdmi, 0);
1507 }
1508 EXPORT_SYMBOL_GPL(dw_hdmi_phy_i2c_set_addr);
1509 
1510 static void dw_hdmi_phy_power_off(struct dw_hdmi *hdmi)
1511 {
1512 	const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
1513 	unsigned int i;
1514 	u16 val;
1515 
1516 	if (phy->gen == 1) {
1517 		dw_hdmi_phy_enable_tmds(hdmi, 0);
1518 		dw_hdmi_phy_enable_powerdown(hdmi, true);
1519 		return;
1520 	}
1521 
1522 	dw_hdmi_phy_gen2_txpwron(hdmi, 0);
1523 
1524 	/*
1525 	 * Wait for TX_PHY_LOCK to be deasserted to indicate that the PHY went
1526 	 * to low power mode.
1527 	 */
1528 	for (i = 0; i < 5; ++i) {
1529 		val = hdmi_readb(hdmi, HDMI_PHY_STAT0);
1530 		if (!(val & HDMI_PHY_TX_PHY_LOCK))
1531 			break;
1532 
1533 		usleep_range(1000, 2000);
1534 	}
1535 
1536 	if (val & HDMI_PHY_TX_PHY_LOCK)
1537 		dev_warn(hdmi->dev, "PHY failed to power down\n");
1538 	else
1539 		dev_dbg(hdmi->dev, "PHY powered down in %u iterations\n", i);
1540 
1541 	dw_hdmi_phy_gen2_pddq(hdmi, 1);
1542 }
1543 
1544 static int dw_hdmi_phy_power_on(struct dw_hdmi *hdmi)
1545 {
1546 	const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
1547 	unsigned int i;
1548 	u8 val;
1549 
1550 	if (phy->gen == 1) {
1551 		dw_hdmi_phy_enable_powerdown(hdmi, false);
1552 
1553 		/* Toggle TMDS enable. */
1554 		dw_hdmi_phy_enable_tmds(hdmi, 0);
1555 		dw_hdmi_phy_enable_tmds(hdmi, 1);
1556 		return 0;
1557 	}
1558 
1559 	dw_hdmi_phy_gen2_txpwron(hdmi, 1);
1560 	dw_hdmi_phy_gen2_pddq(hdmi, 0);
1561 
1562 	/* Wait for PHY PLL lock */
1563 	for (i = 0; i < 5; ++i) {
1564 		val = hdmi_readb(hdmi, HDMI_PHY_STAT0) & HDMI_PHY_TX_PHY_LOCK;
1565 		if (val)
1566 			break;
1567 
1568 		usleep_range(1000, 2000);
1569 	}
1570 
1571 	if (!val) {
1572 		dev_err(hdmi->dev, "PHY PLL failed to lock\n");
1573 		return -ETIMEDOUT;
1574 	}
1575 
1576 	dev_dbg(hdmi->dev, "PHY PLL locked %u iterations\n", i);
1577 	return 0;
1578 }
1579 
1580 /*
1581  * PHY configuration function for the DWC HDMI 3D TX PHY. Based on the available
1582  * information the DWC MHL PHY has the same register layout and is thus also
1583  * supported by this function.
1584  */
1585 static int hdmi_phy_configure_dwc_hdmi_3d_tx(struct dw_hdmi *hdmi,
1586 		const struct dw_hdmi_plat_data *pdata,
1587 		unsigned long mpixelclock)
1588 {
1589 	const struct dw_hdmi_mpll_config *mpll_config = pdata->mpll_cfg;
1590 	const struct dw_hdmi_curr_ctrl *curr_ctrl = pdata->cur_ctr;
1591 	const struct dw_hdmi_phy_config *phy_config = pdata->phy_config;
1592 
1593 	/* TOFIX Will need 420 specific PHY configuration tables */
1594 
1595 	/* PLL/MPLL Cfg - always match on final entry */
1596 	for (; mpll_config->mpixelclock != ~0UL; mpll_config++)
1597 		if (mpixelclock <= mpll_config->mpixelclock)
1598 			break;
1599 
1600 	for (; curr_ctrl->mpixelclock != ~0UL; curr_ctrl++)
1601 		if (mpixelclock <= curr_ctrl->mpixelclock)
1602 			break;
1603 
1604 	for (; phy_config->mpixelclock != ~0UL; phy_config++)
1605 		if (mpixelclock <= phy_config->mpixelclock)
1606 			break;
1607 
1608 	if (mpll_config->mpixelclock == ~0UL ||
1609 	    curr_ctrl->mpixelclock == ~0UL ||
1610 	    phy_config->mpixelclock == ~0UL)
1611 		return -EINVAL;
1612 
1613 	dw_hdmi_phy_i2c_write(hdmi, mpll_config->res[0].cpce,
1614 			      HDMI_3D_TX_PHY_CPCE_CTRL);
1615 	dw_hdmi_phy_i2c_write(hdmi, mpll_config->res[0].gmp,
1616 			      HDMI_3D_TX_PHY_GMPCTRL);
1617 	dw_hdmi_phy_i2c_write(hdmi, curr_ctrl->curr[0],
1618 			      HDMI_3D_TX_PHY_CURRCTRL);
1619 
1620 	dw_hdmi_phy_i2c_write(hdmi, 0, HDMI_3D_TX_PHY_PLLPHBYCTRL);
1621 	dw_hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK,
1622 			      HDMI_3D_TX_PHY_MSM_CTRL);
1623 
1624 	dw_hdmi_phy_i2c_write(hdmi, phy_config->term, HDMI_3D_TX_PHY_TXTERM);
1625 	dw_hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr,
1626 			      HDMI_3D_TX_PHY_CKSYMTXCTRL);
1627 	dw_hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr,
1628 			      HDMI_3D_TX_PHY_VLEVCTRL);
1629 
1630 	/* Override and disable clock termination. */
1631 	dw_hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE,
1632 			      HDMI_3D_TX_PHY_CKCALCTRL);
1633 
1634 	return 0;
1635 }
1636 
1637 static int hdmi_phy_configure(struct dw_hdmi *hdmi,
1638 			      const struct drm_display_info *display)
1639 {
1640 	const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
1641 	const struct dw_hdmi_plat_data *pdata = hdmi->plat_data;
1642 	unsigned long mpixelclock = hdmi->hdmi_data.video_mode.mpixelclock;
1643 	unsigned long mtmdsclock = hdmi->hdmi_data.video_mode.mtmdsclock;
1644 	int ret;
1645 
1646 	dw_hdmi_phy_power_off(hdmi);
1647 
1648 	dw_hdmi_set_high_tmds_clock_ratio(hdmi, display);
1649 
1650 	/* Leave low power consumption mode by asserting SVSRET. */
1651 	if (phy->has_svsret)
1652 		dw_hdmi_phy_enable_svsret(hdmi, 1);
1653 
1654 	dw_hdmi_phy_gen2_reset(hdmi);
1655 
1656 	hdmi_writeb(hdmi, HDMI_MC_HEACPHY_RST_ASSERT, HDMI_MC_HEACPHY_RST);
1657 
1658 	dw_hdmi_phy_i2c_set_addr(hdmi, HDMI_PHY_I2CM_SLAVE_ADDR_PHY_GEN2);
1659 
1660 	/* Write to the PHY as configured by the platform */
1661 	if (pdata->configure_phy)
1662 		ret = pdata->configure_phy(hdmi, pdata->priv_data, mpixelclock);
1663 	else
1664 		ret = phy->configure(hdmi, pdata, mpixelclock);
1665 	if (ret) {
1666 		dev_err(hdmi->dev, "PHY configuration failed (clock %lu)\n",
1667 			mpixelclock);
1668 		return ret;
1669 	}
1670 
1671 	/* Wait for resuming transmission of TMDS clock and data */
1672 	if (mtmdsclock > HDMI14_MAX_TMDSCLK)
1673 		msleep(100);
1674 
1675 	return dw_hdmi_phy_power_on(hdmi);
1676 }
1677 
1678 static int dw_hdmi_phy_init(struct dw_hdmi *hdmi, void *data,
1679 			    const struct drm_display_info *display,
1680 			    const struct drm_display_mode *mode)
1681 {
1682 	int i, ret;
1683 
1684 	/* HDMI Phy spec says to do the phy initialization sequence twice */
1685 	for (i = 0; i < 2; i++) {
1686 		dw_hdmi_phy_sel_data_en_pol(hdmi, 1);
1687 		dw_hdmi_phy_sel_interface_control(hdmi, 0);
1688 
1689 		ret = hdmi_phy_configure(hdmi, display);
1690 		if (ret)
1691 			return ret;
1692 	}
1693 
1694 	return 0;
1695 }
1696 
1697 static void dw_hdmi_phy_disable(struct dw_hdmi *hdmi, void *data)
1698 {
1699 	dw_hdmi_phy_power_off(hdmi);
1700 }
1701 
1702 enum drm_connector_status dw_hdmi_phy_read_hpd(struct dw_hdmi *hdmi,
1703 					       void *data)
1704 {
1705 	return hdmi_readb(hdmi, HDMI_PHY_STAT0) & HDMI_PHY_HPD ?
1706 		connector_status_connected : connector_status_disconnected;
1707 }
1708 EXPORT_SYMBOL_GPL(dw_hdmi_phy_read_hpd);
1709 
1710 void dw_hdmi_phy_update_hpd(struct dw_hdmi *hdmi, void *data,
1711 			    bool force, bool disabled, bool rxsense)
1712 {
1713 	u8 old_mask = hdmi->phy_mask;
1714 
1715 	if (force || disabled || !rxsense)
1716 		hdmi->phy_mask |= HDMI_PHY_RX_SENSE;
1717 	else
1718 		hdmi->phy_mask &= ~HDMI_PHY_RX_SENSE;
1719 
1720 	if (old_mask != hdmi->phy_mask)
1721 		hdmi_writeb(hdmi, hdmi->phy_mask, HDMI_PHY_MASK0);
1722 }
1723 EXPORT_SYMBOL_GPL(dw_hdmi_phy_update_hpd);
1724 
1725 void dw_hdmi_phy_setup_hpd(struct dw_hdmi *hdmi, void *data)
1726 {
1727 	/*
1728 	 * Configure the PHY RX SENSE and HPD interrupts polarities and clear
1729 	 * any pending interrupt.
1730 	 */
1731 	hdmi_writeb(hdmi, HDMI_PHY_HPD | HDMI_PHY_RX_SENSE, HDMI_PHY_POL0);
1732 	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE,
1733 		    HDMI_IH_PHY_STAT0);
1734 
1735 	/* Enable cable hot plug irq. */
1736 	hdmi_writeb(hdmi, hdmi->phy_mask, HDMI_PHY_MASK0);
1737 
1738 	/* Clear and unmute interrupts. */
1739 	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE,
1740 		    HDMI_IH_PHY_STAT0);
1741 	hdmi_writeb(hdmi, ~(HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE),
1742 		    HDMI_IH_MUTE_PHY_STAT0);
1743 }
1744 EXPORT_SYMBOL_GPL(dw_hdmi_phy_setup_hpd);
1745 
1746 static const struct dw_hdmi_phy_ops dw_hdmi_synopsys_phy_ops = {
1747 	.init = dw_hdmi_phy_init,
1748 	.disable = dw_hdmi_phy_disable,
1749 	.read_hpd = dw_hdmi_phy_read_hpd,
1750 	.update_hpd = dw_hdmi_phy_update_hpd,
1751 	.setup_hpd = dw_hdmi_phy_setup_hpd,
1752 };
1753 
1754 /* -----------------------------------------------------------------------------
1755  * HDMI TX Setup
1756  */
1757 
1758 static void hdmi_tx_hdcp_config(struct dw_hdmi *hdmi)
1759 {
1760 	u8 de;
1761 
1762 	if (hdmi->hdmi_data.video_mode.mdataenablepolarity)
1763 		de = HDMI_A_VIDPOLCFG_DATAENPOL_ACTIVE_HIGH;
1764 	else
1765 		de = HDMI_A_VIDPOLCFG_DATAENPOL_ACTIVE_LOW;
1766 
1767 	/* disable rx detect */
1768 	hdmi_modb(hdmi, HDMI_A_HDCPCFG0_RXDETECT_DISABLE,
1769 		  HDMI_A_HDCPCFG0_RXDETECT_MASK, HDMI_A_HDCPCFG0);
1770 
1771 	hdmi_modb(hdmi, de, HDMI_A_VIDPOLCFG_DATAENPOL_MASK, HDMI_A_VIDPOLCFG);
1772 
1773 	hdmi_modb(hdmi, HDMI_A_HDCPCFG1_ENCRYPTIONDISABLE_DISABLE,
1774 		  HDMI_A_HDCPCFG1_ENCRYPTIONDISABLE_MASK, HDMI_A_HDCPCFG1);
1775 }
1776 
1777 static void hdmi_config_AVI(struct dw_hdmi *hdmi,
1778 			    const struct drm_connector *connector,
1779 			    const struct drm_display_mode *mode)
1780 {
1781 	struct hdmi_avi_infoframe frame;
1782 	u8 val;
1783 
1784 	/* Initialise info frame from DRM mode */
1785 	drm_hdmi_avi_infoframe_from_display_mode(&frame, connector, mode);
1786 
1787 	if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format)) {
1788 		drm_hdmi_avi_infoframe_quant_range(&frame, connector, mode,
1789 						   hdmi->hdmi_data.rgb_limited_range ?
1790 						   HDMI_QUANTIZATION_RANGE_LIMITED :
1791 						   HDMI_QUANTIZATION_RANGE_FULL);
1792 	} else {
1793 		frame.quantization_range = HDMI_QUANTIZATION_RANGE_DEFAULT;
1794 		frame.ycc_quantization_range =
1795 			HDMI_YCC_QUANTIZATION_RANGE_LIMITED;
1796 	}
1797 
1798 	if (hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format))
1799 		frame.colorspace = HDMI_COLORSPACE_YUV444;
1800 	else if (hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format))
1801 		frame.colorspace = HDMI_COLORSPACE_YUV422;
1802 	else if (hdmi_bus_fmt_is_yuv420(hdmi->hdmi_data.enc_out_bus_format))
1803 		frame.colorspace = HDMI_COLORSPACE_YUV420;
1804 	else
1805 		frame.colorspace = HDMI_COLORSPACE_RGB;
1806 
1807 	/* Set up colorimetry */
1808 	if (!hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format)) {
1809 		switch (hdmi->hdmi_data.enc_out_encoding) {
1810 		case V4L2_YCBCR_ENC_601:
1811 			if (hdmi->hdmi_data.enc_in_encoding == V4L2_YCBCR_ENC_XV601)
1812 				frame.colorimetry = HDMI_COLORIMETRY_EXTENDED;
1813 			else
1814 				frame.colorimetry = HDMI_COLORIMETRY_ITU_601;
1815 			frame.extended_colorimetry =
1816 					HDMI_EXTENDED_COLORIMETRY_XV_YCC_601;
1817 			break;
1818 		case V4L2_YCBCR_ENC_709:
1819 			if (hdmi->hdmi_data.enc_in_encoding == V4L2_YCBCR_ENC_XV709)
1820 				frame.colorimetry = HDMI_COLORIMETRY_EXTENDED;
1821 			else
1822 				frame.colorimetry = HDMI_COLORIMETRY_ITU_709;
1823 			frame.extended_colorimetry =
1824 					HDMI_EXTENDED_COLORIMETRY_XV_YCC_709;
1825 			break;
1826 		default: /* Carries no data */
1827 			frame.colorimetry = HDMI_COLORIMETRY_ITU_601;
1828 			frame.extended_colorimetry =
1829 					HDMI_EXTENDED_COLORIMETRY_XV_YCC_601;
1830 			break;
1831 		}
1832 	} else {
1833 		frame.colorimetry = HDMI_COLORIMETRY_NONE;
1834 		frame.extended_colorimetry =
1835 			HDMI_EXTENDED_COLORIMETRY_XV_YCC_601;
1836 	}
1837 
1838 	/*
1839 	 * The Designware IP uses a different byte format from standard
1840 	 * AVI info frames, though generally the bits are in the correct
1841 	 * bytes.
1842 	 */
1843 
1844 	/*
1845 	 * AVI data byte 1 differences: Colorspace in bits 0,1 rather than 5,6,
1846 	 * scan info in bits 4,5 rather than 0,1 and active aspect present in
1847 	 * bit 6 rather than 4.
1848 	 */
1849 	val = (frame.scan_mode & 3) << 4 | (frame.colorspace & 3);
1850 	if (frame.active_aspect & 15)
1851 		val |= HDMI_FC_AVICONF0_ACTIVE_FMT_INFO_PRESENT;
1852 	if (frame.top_bar || frame.bottom_bar)
1853 		val |= HDMI_FC_AVICONF0_BAR_DATA_HORIZ_BAR;
1854 	if (frame.left_bar || frame.right_bar)
1855 		val |= HDMI_FC_AVICONF0_BAR_DATA_VERT_BAR;
1856 	hdmi_writeb(hdmi, val, HDMI_FC_AVICONF0);
1857 
1858 	/* AVI data byte 2 differences: none */
1859 	val = ((frame.colorimetry & 0x3) << 6) |
1860 	      ((frame.picture_aspect & 0x3) << 4) |
1861 	      (frame.active_aspect & 0xf);
1862 	hdmi_writeb(hdmi, val, HDMI_FC_AVICONF1);
1863 
1864 	/* AVI data byte 3 differences: none */
1865 	val = ((frame.extended_colorimetry & 0x7) << 4) |
1866 	      ((frame.quantization_range & 0x3) << 2) |
1867 	      (frame.nups & 0x3);
1868 	if (frame.itc)
1869 		val |= HDMI_FC_AVICONF2_IT_CONTENT_VALID;
1870 	hdmi_writeb(hdmi, val, HDMI_FC_AVICONF2);
1871 
1872 	/* AVI data byte 4 differences: none */
1873 	val = frame.video_code & 0x7f;
1874 	hdmi_writeb(hdmi, val, HDMI_FC_AVIVID);
1875 
1876 	/* AVI Data Byte 5- set up input and output pixel repetition */
1877 	val = (((hdmi->hdmi_data.video_mode.mpixelrepetitioninput + 1) <<
1878 		HDMI_FC_PRCONF_INCOMING_PR_FACTOR_OFFSET) &
1879 		HDMI_FC_PRCONF_INCOMING_PR_FACTOR_MASK) |
1880 		((hdmi->hdmi_data.video_mode.mpixelrepetitionoutput <<
1881 		HDMI_FC_PRCONF_OUTPUT_PR_FACTOR_OFFSET) &
1882 		HDMI_FC_PRCONF_OUTPUT_PR_FACTOR_MASK);
1883 	hdmi_writeb(hdmi, val, HDMI_FC_PRCONF);
1884 
1885 	/*
1886 	 * AVI data byte 5 differences: content type in 0,1 rather than 4,5,
1887 	 * ycc range in bits 2,3 rather than 6,7
1888 	 */
1889 	val = ((frame.ycc_quantization_range & 0x3) << 2) |
1890 	      (frame.content_type & 0x3);
1891 	hdmi_writeb(hdmi, val, HDMI_FC_AVICONF3);
1892 
1893 	/* AVI Data Bytes 6-13 */
1894 	hdmi_writeb(hdmi, frame.top_bar & 0xff, HDMI_FC_AVIETB0);
1895 	hdmi_writeb(hdmi, (frame.top_bar >> 8) & 0xff, HDMI_FC_AVIETB1);
1896 	hdmi_writeb(hdmi, frame.bottom_bar & 0xff, HDMI_FC_AVISBB0);
1897 	hdmi_writeb(hdmi, (frame.bottom_bar >> 8) & 0xff, HDMI_FC_AVISBB1);
1898 	hdmi_writeb(hdmi, frame.left_bar & 0xff, HDMI_FC_AVIELB0);
1899 	hdmi_writeb(hdmi, (frame.left_bar >> 8) & 0xff, HDMI_FC_AVIELB1);
1900 	hdmi_writeb(hdmi, frame.right_bar & 0xff, HDMI_FC_AVISRB0);
1901 	hdmi_writeb(hdmi, (frame.right_bar >> 8) & 0xff, HDMI_FC_AVISRB1);
1902 }
1903 
1904 static void hdmi_config_vendor_specific_infoframe(struct dw_hdmi *hdmi,
1905 						  const struct drm_connector *connector,
1906 						  const struct drm_display_mode *mode)
1907 {
1908 	struct hdmi_vendor_infoframe frame;
1909 	u8 buffer[10];
1910 	ssize_t err;
1911 
1912 	err = drm_hdmi_vendor_infoframe_from_display_mode(&frame, connector,
1913 							  mode);
1914 	if (err < 0)
1915 		/*
1916 		 * Going into that statement does not means vendor infoframe
1917 		 * fails. It just informed us that vendor infoframe is not
1918 		 * needed for the selected mode. Only 4k or stereoscopic 3D
1919 		 * mode requires vendor infoframe. So just simply return.
1920 		 */
1921 		return;
1922 
1923 	err = hdmi_vendor_infoframe_pack(&frame, buffer, sizeof(buffer));
1924 	if (err < 0) {
1925 		dev_err(hdmi->dev, "Failed to pack vendor infoframe: %zd\n",
1926 			err);
1927 		return;
1928 	}
1929 	hdmi_mask_writeb(hdmi, 0, HDMI_FC_DATAUTO0, HDMI_FC_DATAUTO0_VSD_OFFSET,
1930 			HDMI_FC_DATAUTO0_VSD_MASK);
1931 
1932 	/* Set the length of HDMI vendor specific InfoFrame payload */
1933 	hdmi_writeb(hdmi, buffer[2], HDMI_FC_VSDSIZE);
1934 
1935 	/* Set 24bit IEEE Registration Identifier */
1936 	hdmi_writeb(hdmi, buffer[4], HDMI_FC_VSDIEEEID0);
1937 	hdmi_writeb(hdmi, buffer[5], HDMI_FC_VSDIEEEID1);
1938 	hdmi_writeb(hdmi, buffer[6], HDMI_FC_VSDIEEEID2);
1939 
1940 	/* Set HDMI_Video_Format and HDMI_VIC/3D_Structure */
1941 	hdmi_writeb(hdmi, buffer[7], HDMI_FC_VSDPAYLOAD0);
1942 	hdmi_writeb(hdmi, buffer[8], HDMI_FC_VSDPAYLOAD1);
1943 
1944 	if (frame.s3d_struct >= HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF)
1945 		hdmi_writeb(hdmi, buffer[9], HDMI_FC_VSDPAYLOAD2);
1946 
1947 	/* Packet frame interpolation */
1948 	hdmi_writeb(hdmi, 1, HDMI_FC_DATAUTO1);
1949 
1950 	/* Auto packets per frame and line spacing */
1951 	hdmi_writeb(hdmi, 0x11, HDMI_FC_DATAUTO2);
1952 
1953 	/* Configures the Frame Composer On RDRB mode */
1954 	hdmi_mask_writeb(hdmi, 1, HDMI_FC_DATAUTO0, HDMI_FC_DATAUTO0_VSD_OFFSET,
1955 			HDMI_FC_DATAUTO0_VSD_MASK);
1956 }
1957 
1958 static void hdmi_config_drm_infoframe(struct dw_hdmi *hdmi,
1959 				      const struct drm_connector *connector)
1960 {
1961 	const struct drm_connector_state *conn_state = connector->state;
1962 	struct hdmi_drm_infoframe frame;
1963 	u8 buffer[30];
1964 	ssize_t err;
1965 	int i;
1966 
1967 	if (!hdmi->plat_data->use_drm_infoframe)
1968 		return;
1969 
1970 	hdmi_modb(hdmi, HDMI_FC_PACKET_TX_EN_DRM_DISABLE,
1971 		  HDMI_FC_PACKET_TX_EN_DRM_MASK, HDMI_FC_PACKET_TX_EN);
1972 
1973 	err = drm_hdmi_infoframe_set_hdr_metadata(&frame, conn_state);
1974 	if (err < 0)
1975 		return;
1976 
1977 	err = hdmi_drm_infoframe_pack(&frame, buffer, sizeof(buffer));
1978 	if (err < 0) {
1979 		dev_err(hdmi->dev, "Failed to pack drm infoframe: %zd\n", err);
1980 		return;
1981 	}
1982 
1983 	hdmi_writeb(hdmi, frame.version, HDMI_FC_DRM_HB0);
1984 	hdmi_writeb(hdmi, frame.length, HDMI_FC_DRM_HB1);
1985 
1986 	for (i = 0; i < frame.length; i++)
1987 		hdmi_writeb(hdmi, buffer[4 + i], HDMI_FC_DRM_PB0 + i);
1988 
1989 	hdmi_writeb(hdmi, 1, HDMI_FC_DRM_UP);
1990 	hdmi_modb(hdmi, HDMI_FC_PACKET_TX_EN_DRM_ENABLE,
1991 		  HDMI_FC_PACKET_TX_EN_DRM_MASK, HDMI_FC_PACKET_TX_EN);
1992 }
1993 
1994 static void hdmi_av_composer(struct dw_hdmi *hdmi,
1995 			     const struct drm_display_info *display,
1996 			     const struct drm_display_mode *mode)
1997 {
1998 	u8 inv_val, bytes;
1999 	const struct drm_hdmi_info *hdmi_info = &display->hdmi;
2000 	struct hdmi_vmode *vmode = &hdmi->hdmi_data.video_mode;
2001 	int hblank, vblank, h_de_hs, v_de_vs, hsync_len, vsync_len;
2002 	unsigned int vdisplay, hdisplay;
2003 
2004 	vmode->mpixelclock = mode->clock * 1000;
2005 
2006 	dev_dbg(hdmi->dev, "final pixclk = %d\n", vmode->mpixelclock);
2007 
2008 	vmode->mtmdsclock = vmode->mpixelclock;
2009 
2010 	if (!hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format)) {
2011 		switch (hdmi_bus_fmt_color_depth(
2012 				hdmi->hdmi_data.enc_out_bus_format)) {
2013 		case 16:
2014 			vmode->mtmdsclock = vmode->mpixelclock * 2;
2015 			break;
2016 		case 12:
2017 			vmode->mtmdsclock = vmode->mpixelclock * 3 / 2;
2018 			break;
2019 		case 10:
2020 			vmode->mtmdsclock = vmode->mpixelclock * 5 / 4;
2021 			break;
2022 		}
2023 	}
2024 
2025 	if (hdmi_bus_fmt_is_yuv420(hdmi->hdmi_data.enc_out_bus_format))
2026 		vmode->mtmdsclock /= 2;
2027 
2028 	dev_dbg(hdmi->dev, "final tmdsclock = %d\n", vmode->mtmdsclock);
2029 
2030 	/* Set up HDMI_FC_INVIDCONF */
2031 	inv_val = (hdmi->hdmi_data.hdcp_enable ||
2032 		   (dw_hdmi_support_scdc(hdmi, display) &&
2033 		    (vmode->mtmdsclock > HDMI14_MAX_TMDSCLK ||
2034 		     hdmi_info->scdc.scrambling.low_rates)) ?
2035 		HDMI_FC_INVIDCONF_HDCP_KEEPOUT_ACTIVE :
2036 		HDMI_FC_INVIDCONF_HDCP_KEEPOUT_INACTIVE);
2037 
2038 	inv_val |= mode->flags & DRM_MODE_FLAG_PVSYNC ?
2039 		HDMI_FC_INVIDCONF_VSYNC_IN_POLARITY_ACTIVE_HIGH :
2040 		HDMI_FC_INVIDCONF_VSYNC_IN_POLARITY_ACTIVE_LOW;
2041 
2042 	inv_val |= mode->flags & DRM_MODE_FLAG_PHSYNC ?
2043 		HDMI_FC_INVIDCONF_HSYNC_IN_POLARITY_ACTIVE_HIGH :
2044 		HDMI_FC_INVIDCONF_HSYNC_IN_POLARITY_ACTIVE_LOW;
2045 
2046 	inv_val |= (vmode->mdataenablepolarity ?
2047 		HDMI_FC_INVIDCONF_DE_IN_POLARITY_ACTIVE_HIGH :
2048 		HDMI_FC_INVIDCONF_DE_IN_POLARITY_ACTIVE_LOW);
2049 
2050 	if (hdmi->vic == 39)
2051 		inv_val |= HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_HIGH;
2052 	else
2053 		inv_val |= mode->flags & DRM_MODE_FLAG_INTERLACE ?
2054 			HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_HIGH :
2055 			HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_LOW;
2056 
2057 	inv_val |= mode->flags & DRM_MODE_FLAG_INTERLACE ?
2058 		HDMI_FC_INVIDCONF_IN_I_P_INTERLACED :
2059 		HDMI_FC_INVIDCONF_IN_I_P_PROGRESSIVE;
2060 
2061 	inv_val |= hdmi->sink_is_hdmi ?
2062 		HDMI_FC_INVIDCONF_DVI_MODEZ_HDMI_MODE :
2063 		HDMI_FC_INVIDCONF_DVI_MODEZ_DVI_MODE;
2064 
2065 	hdmi_writeb(hdmi, inv_val, HDMI_FC_INVIDCONF);
2066 
2067 	hdisplay = mode->hdisplay;
2068 	hblank = mode->htotal - mode->hdisplay;
2069 	h_de_hs = mode->hsync_start - mode->hdisplay;
2070 	hsync_len = mode->hsync_end - mode->hsync_start;
2071 
2072 	/*
2073 	 * When we're setting a YCbCr420 mode, we need
2074 	 * to adjust the horizontal timing to suit.
2075 	 */
2076 	if (hdmi_bus_fmt_is_yuv420(hdmi->hdmi_data.enc_out_bus_format)) {
2077 		hdisplay /= 2;
2078 		hblank /= 2;
2079 		h_de_hs /= 2;
2080 		hsync_len /= 2;
2081 	}
2082 
2083 	vdisplay = mode->vdisplay;
2084 	vblank = mode->vtotal - mode->vdisplay;
2085 	v_de_vs = mode->vsync_start - mode->vdisplay;
2086 	vsync_len = mode->vsync_end - mode->vsync_start;
2087 
2088 	/*
2089 	 * When we're setting an interlaced mode, we need
2090 	 * to adjust the vertical timing to suit.
2091 	 */
2092 	if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
2093 		vdisplay /= 2;
2094 		vblank /= 2;
2095 		v_de_vs /= 2;
2096 		vsync_len /= 2;
2097 	}
2098 
2099 	/* Scrambling Control */
2100 	if (dw_hdmi_support_scdc(hdmi, display)) {
2101 		if (vmode->mtmdsclock > HDMI14_MAX_TMDSCLK ||
2102 		    hdmi_info->scdc.scrambling.low_rates) {
2103 			/*
2104 			 * HDMI2.0 Specifies the following procedure:
2105 			 * After the Source Device has determined that
2106 			 * SCDC_Present is set (=1), the Source Device should
2107 			 * write the accurate Version of the Source Device
2108 			 * to the Source Version field in the SCDCS.
2109 			 * Source Devices compliant shall set the
2110 			 * Source Version = 1.
2111 			 */
2112 			drm_scdc_readb(hdmi->ddc, SCDC_SINK_VERSION,
2113 				       &bytes);
2114 			drm_scdc_writeb(hdmi->ddc, SCDC_SOURCE_VERSION,
2115 				min_t(u8, bytes, SCDC_MIN_SOURCE_VERSION));
2116 
2117 			/* Enabled Scrambling in the Sink */
2118 			drm_scdc_set_scrambling(hdmi->curr_conn, 1);
2119 
2120 			/*
2121 			 * To activate the scrambler feature, you must ensure
2122 			 * that the quasi-static configuration bit
2123 			 * fc_invidconf.HDCP_keepout is set at configuration
2124 			 * time, before the required mc_swrstzreq.tmdsswrst_req
2125 			 * reset request is issued.
2126 			 */
2127 			hdmi_writeb(hdmi, (u8)~HDMI_MC_SWRSTZ_TMDSSWRST_REQ,
2128 				    HDMI_MC_SWRSTZ);
2129 			hdmi_writeb(hdmi, 1, HDMI_FC_SCRAMBLER_CTRL);
2130 		} else {
2131 			hdmi_writeb(hdmi, 0, HDMI_FC_SCRAMBLER_CTRL);
2132 			hdmi_writeb(hdmi, (u8)~HDMI_MC_SWRSTZ_TMDSSWRST_REQ,
2133 				    HDMI_MC_SWRSTZ);
2134 			drm_scdc_set_scrambling(hdmi->curr_conn, 0);
2135 		}
2136 	}
2137 
2138 	/* Set up horizontal active pixel width */
2139 	hdmi_writeb(hdmi, hdisplay >> 8, HDMI_FC_INHACTV1);
2140 	hdmi_writeb(hdmi, hdisplay, HDMI_FC_INHACTV0);
2141 
2142 	/* Set up vertical active lines */
2143 	hdmi_writeb(hdmi, vdisplay >> 8, HDMI_FC_INVACTV1);
2144 	hdmi_writeb(hdmi, vdisplay, HDMI_FC_INVACTV0);
2145 
2146 	/* Set up horizontal blanking pixel region width */
2147 	hdmi_writeb(hdmi, hblank >> 8, HDMI_FC_INHBLANK1);
2148 	hdmi_writeb(hdmi, hblank, HDMI_FC_INHBLANK0);
2149 
2150 	/* Set up vertical blanking pixel region width */
2151 	hdmi_writeb(hdmi, vblank, HDMI_FC_INVBLANK);
2152 
2153 	/* Set up HSYNC active edge delay width (in pixel clks) */
2154 	hdmi_writeb(hdmi, h_de_hs >> 8, HDMI_FC_HSYNCINDELAY1);
2155 	hdmi_writeb(hdmi, h_de_hs, HDMI_FC_HSYNCINDELAY0);
2156 
2157 	/* Set up VSYNC active edge delay (in lines) */
2158 	hdmi_writeb(hdmi, v_de_vs, HDMI_FC_VSYNCINDELAY);
2159 
2160 	/* Set up HSYNC active pulse width (in pixel clks) */
2161 	hdmi_writeb(hdmi, hsync_len >> 8, HDMI_FC_HSYNCINWIDTH1);
2162 	hdmi_writeb(hdmi, hsync_len, HDMI_FC_HSYNCINWIDTH0);
2163 
2164 	/* Set up VSYNC active edge delay (in lines) */
2165 	hdmi_writeb(hdmi, vsync_len, HDMI_FC_VSYNCINWIDTH);
2166 }
2167 
2168 /* HDMI Initialization Step B.4 */
2169 static void dw_hdmi_enable_video_path(struct dw_hdmi *hdmi)
2170 {
2171 	/* control period minimum duration */
2172 	hdmi_writeb(hdmi, 12, HDMI_FC_CTRLDUR);
2173 	hdmi_writeb(hdmi, 32, HDMI_FC_EXCTRLDUR);
2174 	hdmi_writeb(hdmi, 1, HDMI_FC_EXCTRLSPAC);
2175 
2176 	/* Set to fill TMDS data channels */
2177 	hdmi_writeb(hdmi, 0x0B, HDMI_FC_CH0PREAM);
2178 	hdmi_writeb(hdmi, 0x16, HDMI_FC_CH1PREAM);
2179 	hdmi_writeb(hdmi, 0x21, HDMI_FC_CH2PREAM);
2180 
2181 	/* Enable pixel clock and tmds data path */
2182 	hdmi->mc_clkdis |= HDMI_MC_CLKDIS_HDCPCLK_DISABLE |
2183 			   HDMI_MC_CLKDIS_CSCCLK_DISABLE |
2184 			   HDMI_MC_CLKDIS_AUDCLK_DISABLE |
2185 			   HDMI_MC_CLKDIS_PREPCLK_DISABLE |
2186 			   HDMI_MC_CLKDIS_TMDSCLK_DISABLE;
2187 	hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_PIXELCLK_DISABLE;
2188 	hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
2189 
2190 	hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_TMDSCLK_DISABLE;
2191 	hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
2192 
2193 	/* Enable csc path */
2194 	if (is_csc_needed(hdmi)) {
2195 		hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_CSCCLK_DISABLE;
2196 		hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
2197 
2198 		hdmi_writeb(hdmi, HDMI_MC_FLOWCTRL_FEED_THROUGH_OFF_CSC_IN_PATH,
2199 			    HDMI_MC_FLOWCTRL);
2200 	} else {
2201 		hdmi->mc_clkdis |= HDMI_MC_CLKDIS_CSCCLK_DISABLE;
2202 		hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
2203 
2204 		hdmi_writeb(hdmi, HDMI_MC_FLOWCTRL_FEED_THROUGH_OFF_CSC_BYPASS,
2205 			    HDMI_MC_FLOWCTRL);
2206 	}
2207 }
2208 
2209 /* Workaround to clear the overflow condition */
2210 static void dw_hdmi_clear_overflow(struct dw_hdmi *hdmi)
2211 {
2212 	unsigned int count;
2213 	unsigned int i;
2214 	u8 val;
2215 
2216 	/*
2217 	 * Under some circumstances the Frame Composer arithmetic unit can miss
2218 	 * an FC register write due to being busy processing the previous one.
2219 	 * The issue can be worked around by issuing a TMDS software reset and
2220 	 * then write one of the FC registers several times.
2221 	 *
2222 	 * The number of iterations matters and depends on the HDMI TX revision
2223 	 * (and possibly on the platform).
2224 	 * 4 iterations for i.MX6Q(v1.30a) and 1 iteration for others.
2225 	 * i.MX6DL (v1.31a), Allwinner SoCs (v1.32a), Rockchip RK3288 SoC (v2.00a),
2226 	 * Amlogic Meson GX SoCs (v2.01a), RK3328/RK3399 SoCs (v2.11a)
2227 	 * and i.MX8MPlus (v2.13a) have been identified as needing the workaround
2228 	 * with a single iteration.
2229 	 */
2230 
2231 	switch (hdmi->version) {
2232 	case 0x130a:
2233 		count = 4;
2234 		break;
2235 	default:
2236 		count = 1;
2237 		break;
2238 	}
2239 
2240 	/* TMDS software reset */
2241 	hdmi_writeb(hdmi, (u8)~HDMI_MC_SWRSTZ_TMDSSWRST_REQ, HDMI_MC_SWRSTZ);
2242 
2243 	val = hdmi_readb(hdmi, HDMI_FC_INVIDCONF);
2244 	for (i = 0; i < count; i++)
2245 		hdmi_writeb(hdmi, val, HDMI_FC_INVIDCONF);
2246 }
2247 
2248 static void hdmi_disable_overflow_interrupts(struct dw_hdmi *hdmi)
2249 {
2250 	hdmi_writeb(hdmi, HDMI_IH_MUTE_FC_STAT2_OVERFLOW_MASK,
2251 		    HDMI_IH_MUTE_FC_STAT2);
2252 }
2253 
2254 static int dw_hdmi_setup(struct dw_hdmi *hdmi,
2255 			 const struct drm_connector *connector,
2256 			 const struct drm_display_mode *mode)
2257 {
2258 	int ret;
2259 
2260 	hdmi_disable_overflow_interrupts(hdmi);
2261 
2262 	hdmi->vic = drm_match_cea_mode(mode);
2263 
2264 	if (!hdmi->vic) {
2265 		dev_dbg(hdmi->dev, "Non-CEA mode used in HDMI\n");
2266 	} else {
2267 		dev_dbg(hdmi->dev, "CEA mode used vic=%d\n", hdmi->vic);
2268 	}
2269 
2270 	if ((hdmi->vic == 6) || (hdmi->vic == 7) ||
2271 	    (hdmi->vic == 21) || (hdmi->vic == 22) ||
2272 	    (hdmi->vic == 2) || (hdmi->vic == 3) ||
2273 	    (hdmi->vic == 17) || (hdmi->vic == 18))
2274 		hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_601;
2275 	else
2276 		hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_709;
2277 
2278 	hdmi->hdmi_data.video_mode.mpixelrepetitionoutput = 0;
2279 	hdmi->hdmi_data.video_mode.mpixelrepetitioninput = 0;
2280 
2281 	if (hdmi->hdmi_data.enc_in_bus_format == MEDIA_BUS_FMT_FIXED)
2282 		hdmi->hdmi_data.enc_in_bus_format = MEDIA_BUS_FMT_RGB888_1X24;
2283 
2284 	/* TOFIX: Get input encoding from plat data or fallback to none */
2285 	if (hdmi->plat_data->input_bus_encoding)
2286 		hdmi->hdmi_data.enc_in_encoding =
2287 			hdmi->plat_data->input_bus_encoding;
2288 	else
2289 		hdmi->hdmi_data.enc_in_encoding = V4L2_YCBCR_ENC_DEFAULT;
2290 
2291 	if (hdmi->hdmi_data.enc_out_bus_format == MEDIA_BUS_FMT_FIXED)
2292 		hdmi->hdmi_data.enc_out_bus_format = MEDIA_BUS_FMT_RGB888_1X24;
2293 
2294 	hdmi->hdmi_data.rgb_limited_range = hdmi->sink_is_hdmi &&
2295 		drm_default_rgb_quant_range(mode) ==
2296 		HDMI_QUANTIZATION_RANGE_LIMITED;
2297 
2298 	hdmi->hdmi_data.pix_repet_factor = 0;
2299 	hdmi->hdmi_data.hdcp_enable = 0;
2300 	hdmi->hdmi_data.video_mode.mdataenablepolarity = true;
2301 
2302 	/* HDMI Initialization Step B.1 */
2303 	hdmi_av_composer(hdmi, &connector->display_info, mode);
2304 
2305 	/* HDMI Initializateion Step B.2 */
2306 	ret = hdmi->phy.ops->init(hdmi, hdmi->phy.data,
2307 				  &connector->display_info,
2308 				  &hdmi->previous_mode);
2309 	if (ret)
2310 		return ret;
2311 	hdmi->phy.enabled = true;
2312 
2313 	/* HDMI Initialization Step B.3 */
2314 	dw_hdmi_enable_video_path(hdmi);
2315 
2316 	if (hdmi->sink_has_audio) {
2317 		dev_dbg(hdmi->dev, "sink has audio support\n");
2318 
2319 		/* HDMI Initialization Step E - Configure audio */
2320 		hdmi_clk_regenerator_update_pixel_clock(hdmi);
2321 		hdmi_enable_audio_clk(hdmi, hdmi->audio_enable);
2322 	}
2323 
2324 	/* not for DVI mode */
2325 	if (hdmi->sink_is_hdmi) {
2326 		dev_dbg(hdmi->dev, "%s HDMI mode\n", __func__);
2327 
2328 		/* HDMI Initialization Step F - Configure AVI InfoFrame */
2329 		hdmi_config_AVI(hdmi, connector, mode);
2330 		hdmi_config_vendor_specific_infoframe(hdmi, connector, mode);
2331 		hdmi_config_drm_infoframe(hdmi, connector);
2332 	} else {
2333 		dev_dbg(hdmi->dev, "%s DVI mode\n", __func__);
2334 	}
2335 
2336 	hdmi_video_packetize(hdmi);
2337 	hdmi_video_csc(hdmi);
2338 	hdmi_video_sample(hdmi);
2339 	hdmi_tx_hdcp_config(hdmi);
2340 
2341 	dw_hdmi_clear_overflow(hdmi);
2342 
2343 	return 0;
2344 }
2345 
2346 static void initialize_hdmi_ih_mutes(struct dw_hdmi *hdmi)
2347 {
2348 	u8 ih_mute;
2349 
2350 	/*
2351 	 * Boot up defaults are:
2352 	 * HDMI_IH_MUTE   = 0x03 (disabled)
2353 	 * HDMI_IH_MUTE_* = 0x00 (enabled)
2354 	 *
2355 	 * Disable top level interrupt bits in HDMI block
2356 	 */
2357 	ih_mute = hdmi_readb(hdmi, HDMI_IH_MUTE) |
2358 		  HDMI_IH_MUTE_MUTE_WAKEUP_INTERRUPT |
2359 		  HDMI_IH_MUTE_MUTE_ALL_INTERRUPT;
2360 
2361 	hdmi_writeb(hdmi, ih_mute, HDMI_IH_MUTE);
2362 
2363 	/* by default mask all interrupts */
2364 	hdmi_writeb(hdmi, 0xff, HDMI_VP_MASK);
2365 	hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK0);
2366 	hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK1);
2367 	hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK2);
2368 	hdmi_writeb(hdmi, 0xff, HDMI_PHY_MASK0);
2369 	hdmi_writeb(hdmi, 0xff, HDMI_PHY_I2CM_INT_ADDR);
2370 	hdmi_writeb(hdmi, 0xff, HDMI_PHY_I2CM_CTLINT_ADDR);
2371 	hdmi_writeb(hdmi, 0xff, HDMI_AUD_INT);
2372 	hdmi_writeb(hdmi, 0xff, HDMI_AUD_SPDIFINT);
2373 	hdmi_writeb(hdmi, 0xff, HDMI_AUD_HBR_MASK);
2374 	hdmi_writeb(hdmi, 0xff, HDMI_GP_MASK);
2375 	hdmi_writeb(hdmi, 0xff, HDMI_A_APIINTMSK);
2376 	hdmi_writeb(hdmi, 0xff, HDMI_I2CM_INT);
2377 	hdmi_writeb(hdmi, 0xff, HDMI_I2CM_CTLINT);
2378 
2379 	/* Disable interrupts in the IH_MUTE_* registers */
2380 	hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT0);
2381 	hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT1);
2382 	hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT2);
2383 	hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_AS_STAT0);
2384 	hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_PHY_STAT0);
2385 	hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_I2CM_STAT0);
2386 	hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_CEC_STAT0);
2387 	hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_VP_STAT0);
2388 	hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_I2CMPHY_STAT0);
2389 	hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_AHBDMAAUD_STAT0);
2390 
2391 	/* Enable top level interrupt bits in HDMI block */
2392 	ih_mute &= ~(HDMI_IH_MUTE_MUTE_WAKEUP_INTERRUPT |
2393 		    HDMI_IH_MUTE_MUTE_ALL_INTERRUPT);
2394 	hdmi_writeb(hdmi, ih_mute, HDMI_IH_MUTE);
2395 }
2396 
2397 static void dw_hdmi_poweron(struct dw_hdmi *hdmi)
2398 {
2399 	hdmi->bridge_is_on = true;
2400 
2401 	/*
2402 	 * The curr_conn field is guaranteed to be valid here, as this function
2403 	 * is only be called when !hdmi->disabled.
2404 	 */
2405 	dw_hdmi_setup(hdmi, hdmi->curr_conn, &hdmi->previous_mode);
2406 }
2407 
2408 static void dw_hdmi_poweroff(struct dw_hdmi *hdmi)
2409 {
2410 	if (hdmi->phy.enabled) {
2411 		hdmi->phy.ops->disable(hdmi, hdmi->phy.data);
2412 		hdmi->phy.enabled = false;
2413 	}
2414 
2415 	hdmi->bridge_is_on = false;
2416 }
2417 
2418 static void dw_hdmi_update_power(struct dw_hdmi *hdmi)
2419 {
2420 	int force = hdmi->force;
2421 
2422 	if (hdmi->disabled) {
2423 		force = DRM_FORCE_OFF;
2424 	} else if (force == DRM_FORCE_UNSPECIFIED) {
2425 		if (hdmi->rxsense)
2426 			force = DRM_FORCE_ON;
2427 		else
2428 			force = DRM_FORCE_OFF;
2429 	}
2430 
2431 	if (force == DRM_FORCE_OFF) {
2432 		if (hdmi->bridge_is_on)
2433 			dw_hdmi_poweroff(hdmi);
2434 	} else {
2435 		if (!hdmi->bridge_is_on)
2436 			dw_hdmi_poweron(hdmi);
2437 	}
2438 }
2439 
2440 /*
2441  * Adjust the detection of RXSENSE according to whether we have a forced
2442  * connection mode enabled, or whether we have been disabled.  There is
2443  * no point processing RXSENSE interrupts if we have a forced connection
2444  * state, or DRM has us disabled.
2445  *
2446  * We also disable rxsense interrupts when we think we're disconnected
2447  * to avoid floating TDMS signals giving false rxsense interrupts.
2448  *
2449  * Note: we still need to listen for HPD interrupts even when DRM has us
2450  * disabled so that we can detect a connect event.
2451  */
2452 static void dw_hdmi_update_phy_mask(struct dw_hdmi *hdmi)
2453 {
2454 	if (hdmi->phy.ops->update_hpd)
2455 		hdmi->phy.ops->update_hpd(hdmi, hdmi->phy.data,
2456 					  hdmi->force, hdmi->disabled,
2457 					  hdmi->rxsense);
2458 }
2459 
2460 static enum drm_connector_status dw_hdmi_detect(struct dw_hdmi *hdmi)
2461 {
2462 	enum drm_connector_status result;
2463 
2464 	result = hdmi->phy.ops->read_hpd(hdmi, hdmi->phy.data);
2465 	hdmi->last_connector_result = result;
2466 
2467 	return result;
2468 }
2469 
2470 static const struct drm_edid *dw_hdmi_edid_read(struct dw_hdmi *hdmi,
2471 						struct drm_connector *connector)
2472 {
2473 	const struct drm_edid *drm_edid;
2474 	const struct edid *edid;
2475 
2476 	if (!hdmi->ddc)
2477 		return NULL;
2478 
2479 	drm_edid = drm_edid_read_ddc(connector, hdmi->ddc);
2480 	if (!drm_edid) {
2481 		dev_dbg(hdmi->dev, "failed to get edid\n");
2482 		return NULL;
2483 	}
2484 
2485 	/*
2486 	 * FIXME: This should use connector->display_info.is_hdmi and
2487 	 * connector->display_info.has_audio from a path that has read the EDID
2488 	 * and called drm_edid_connector_update().
2489 	 */
2490 	edid = drm_edid_raw(drm_edid);
2491 
2492 	dev_dbg(hdmi->dev, "got edid: width[%d] x height[%d]\n",
2493 		edid->width_cm, edid->height_cm);
2494 
2495 	hdmi->sink_is_hdmi = drm_detect_hdmi_monitor(edid);
2496 	hdmi->sink_has_audio = drm_detect_monitor_audio(edid);
2497 
2498 	return drm_edid;
2499 }
2500 
2501 /* -----------------------------------------------------------------------------
2502  * DRM Connector Operations
2503  */
2504 
2505 static enum drm_connector_status
2506 dw_hdmi_connector_detect(struct drm_connector *connector, bool force)
2507 {
2508 	struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
2509 					     connector);
2510 	return dw_hdmi_detect(hdmi);
2511 }
2512 
2513 static int dw_hdmi_connector_get_modes(struct drm_connector *connector)
2514 {
2515 	struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
2516 					     connector);
2517 	const struct drm_edid *drm_edid;
2518 	int ret;
2519 
2520 	drm_edid = dw_hdmi_edid_read(hdmi, connector);
2521 
2522 	drm_edid_connector_update(connector, drm_edid);
2523 	cec_notifier_set_phys_addr(hdmi->cec_notifier,
2524 				   connector->display_info.source_physical_address);
2525 	ret = drm_edid_connector_add_modes(connector);
2526 	drm_edid_free(drm_edid);
2527 
2528 	return ret;
2529 }
2530 
2531 static int dw_hdmi_connector_atomic_check(struct drm_connector *connector,
2532 					  struct drm_atomic_state *state)
2533 {
2534 	struct drm_connector_state *old_state =
2535 		drm_atomic_get_old_connector_state(state, connector);
2536 	struct drm_connector_state *new_state =
2537 		drm_atomic_get_new_connector_state(state, connector);
2538 	struct drm_crtc *crtc = new_state->crtc;
2539 	struct drm_crtc_state *crtc_state;
2540 
2541 	if (!crtc)
2542 		return 0;
2543 
2544 	if (!drm_connector_atomic_hdr_metadata_equal(old_state, new_state)) {
2545 		crtc_state = drm_atomic_get_crtc_state(state, crtc);
2546 		if (IS_ERR(crtc_state))
2547 			return PTR_ERR(crtc_state);
2548 
2549 		crtc_state->mode_changed = true;
2550 	}
2551 
2552 	return 0;
2553 }
2554 
2555 static void dw_hdmi_connector_force(struct drm_connector *connector)
2556 {
2557 	struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
2558 					     connector);
2559 
2560 	mutex_lock(&hdmi->mutex);
2561 	hdmi->force = connector->force;
2562 	dw_hdmi_update_power(hdmi);
2563 	dw_hdmi_update_phy_mask(hdmi);
2564 	mutex_unlock(&hdmi->mutex);
2565 }
2566 
2567 static const struct drm_connector_funcs dw_hdmi_connector_funcs = {
2568 	.fill_modes = drm_helper_probe_single_connector_modes,
2569 	.detect = dw_hdmi_connector_detect,
2570 	.destroy = drm_connector_cleanup,
2571 	.force = dw_hdmi_connector_force,
2572 	.reset = drm_atomic_helper_connector_reset,
2573 	.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
2574 	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
2575 };
2576 
2577 static const struct drm_connector_helper_funcs dw_hdmi_connector_helper_funcs = {
2578 	.get_modes = dw_hdmi_connector_get_modes,
2579 	.atomic_check = dw_hdmi_connector_atomic_check,
2580 };
2581 
2582 static int dw_hdmi_connector_create(struct dw_hdmi *hdmi)
2583 {
2584 	struct drm_connector *connector = &hdmi->connector;
2585 	struct cec_connector_info conn_info;
2586 	struct cec_notifier *notifier;
2587 
2588 	if (hdmi->version >= 0x200a)
2589 		connector->ycbcr_420_allowed =
2590 			hdmi->plat_data->ycbcr_420_allowed;
2591 	else
2592 		connector->ycbcr_420_allowed = false;
2593 
2594 	connector->interlace_allowed = 1;
2595 	connector->polled = DRM_CONNECTOR_POLL_HPD;
2596 
2597 	drm_connector_helper_add(connector, &dw_hdmi_connector_helper_funcs);
2598 
2599 	drm_connector_init_with_ddc(hdmi->bridge.dev, connector,
2600 				    &dw_hdmi_connector_funcs,
2601 				    DRM_MODE_CONNECTOR_HDMIA,
2602 				    hdmi->ddc);
2603 
2604 	/*
2605 	 * drm_connector_attach_max_bpc_property() requires the
2606 	 * connector to have a state.
2607 	 */
2608 	drm_atomic_helper_connector_reset(connector);
2609 
2610 	drm_connector_attach_max_bpc_property(connector, 8, 16);
2611 
2612 	if (hdmi->version >= 0x200a && hdmi->plat_data->use_drm_infoframe)
2613 		drm_connector_attach_hdr_output_metadata_property(connector);
2614 
2615 	drm_connector_attach_encoder(connector, hdmi->bridge.encoder);
2616 
2617 	cec_fill_conn_info_from_drm(&conn_info, connector);
2618 
2619 	notifier = cec_notifier_conn_register(hdmi->dev, NULL, &conn_info);
2620 	if (!notifier)
2621 		return -ENOMEM;
2622 
2623 	mutex_lock(&hdmi->cec_notifier_mutex);
2624 	hdmi->cec_notifier = notifier;
2625 	mutex_unlock(&hdmi->cec_notifier_mutex);
2626 
2627 	return 0;
2628 }
2629 
2630 /* -----------------------------------------------------------------------------
2631  * DRM Bridge Operations
2632  */
2633 
2634 /*
2635  * Possible output formats :
2636  * - MEDIA_BUS_FMT_UYYVYY16_0_5X48,
2637  * - MEDIA_BUS_FMT_UYYVYY12_0_5X36,
2638  * - MEDIA_BUS_FMT_UYYVYY10_0_5X30,
2639  * - MEDIA_BUS_FMT_UYYVYY8_0_5X24,
2640  * - MEDIA_BUS_FMT_RGB888_1X24,
2641  * - MEDIA_BUS_FMT_YUV16_1X48,
2642  * - MEDIA_BUS_FMT_RGB161616_1X48,
2643  * - MEDIA_BUS_FMT_UYVY12_1X24,
2644  * - MEDIA_BUS_FMT_YUV12_1X36,
2645  * - MEDIA_BUS_FMT_RGB121212_1X36,
2646  * - MEDIA_BUS_FMT_UYVY10_1X20,
2647  * - MEDIA_BUS_FMT_YUV10_1X30,
2648  * - MEDIA_BUS_FMT_RGB101010_1X30,
2649  * - MEDIA_BUS_FMT_UYVY8_1X16,
2650  * - MEDIA_BUS_FMT_YUV8_1X24,
2651  */
2652 
2653 /* Can return a maximum of 11 possible output formats for a mode/connector */
2654 #define MAX_OUTPUT_SEL_FORMATS	11
2655 
2656 static u32 *dw_hdmi_bridge_atomic_get_output_bus_fmts(struct drm_bridge *bridge,
2657 					struct drm_bridge_state *bridge_state,
2658 					struct drm_crtc_state *crtc_state,
2659 					struct drm_connector_state *conn_state,
2660 					unsigned int *num_output_fmts)
2661 {
2662 	struct drm_connector *conn = conn_state->connector;
2663 	struct drm_display_info *info = &conn->display_info;
2664 	struct drm_display_mode *mode = &crtc_state->mode;
2665 	u8 max_bpc = conn_state->max_requested_bpc;
2666 	bool is_hdmi2_sink = info->hdmi.scdc.supported ||
2667 			     (info->color_formats & DRM_COLOR_FORMAT_YCBCR420);
2668 	u32 *output_fmts;
2669 	unsigned int i = 0;
2670 
2671 	*num_output_fmts = 0;
2672 
2673 	output_fmts = kcalloc(MAX_OUTPUT_SEL_FORMATS, sizeof(*output_fmts),
2674 			      GFP_KERNEL);
2675 	if (!output_fmts)
2676 		return NULL;
2677 
2678 	/* If dw-hdmi is the first or only bridge, avoid negociating with ourselves */
2679 	if (list_is_singular(&bridge->encoder->bridge_chain) ||
2680 	    list_is_first(&bridge->chain_node, &bridge->encoder->bridge_chain)) {
2681 		*num_output_fmts = 1;
2682 		output_fmts[0] = MEDIA_BUS_FMT_FIXED;
2683 
2684 		return output_fmts;
2685 	}
2686 
2687 	/*
2688 	 * If the current mode enforces 4:2:0, force the output bus format
2689 	 * to 4:2:0 and do not add the YUV422/444/RGB formats
2690 	 */
2691 	if (conn->ycbcr_420_allowed &&
2692 	    (drm_mode_is_420_only(info, mode) ||
2693 	     (is_hdmi2_sink && drm_mode_is_420_also(info, mode)))) {
2694 
2695 		/* Order bus formats from 16bit to 8bit if supported */
2696 		if (max_bpc >= 16 && info->bpc == 16 &&
2697 		    (info->hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_48))
2698 			output_fmts[i++] = MEDIA_BUS_FMT_UYYVYY16_0_5X48;
2699 
2700 		if (max_bpc >= 12 && info->bpc >= 12 &&
2701 		    (info->hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_36))
2702 			output_fmts[i++] = MEDIA_BUS_FMT_UYYVYY12_0_5X36;
2703 
2704 		if (max_bpc >= 10 && info->bpc >= 10 &&
2705 		    (info->hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_30))
2706 			output_fmts[i++] = MEDIA_BUS_FMT_UYYVYY10_0_5X30;
2707 
2708 		/* Default 8bit fallback */
2709 		output_fmts[i++] = MEDIA_BUS_FMT_UYYVYY8_0_5X24;
2710 
2711 		if (drm_mode_is_420_only(info, mode)) {
2712 			*num_output_fmts = i;
2713 			return output_fmts;
2714 		}
2715 	}
2716 
2717 	/*
2718 	 * Order bus formats from 16bit to 8bit and from YUV422 to RGB
2719 	 * if supported. In any case the default RGB888 format is added
2720 	 */
2721 
2722 	/* Default 8bit RGB fallback */
2723 	output_fmts[i++] = MEDIA_BUS_FMT_RGB888_1X24;
2724 
2725 	if (max_bpc >= 16 && info->bpc == 16) {
2726 		if (info->color_formats & DRM_COLOR_FORMAT_YCBCR444)
2727 			output_fmts[i++] = MEDIA_BUS_FMT_YUV16_1X48;
2728 
2729 		output_fmts[i++] = MEDIA_BUS_FMT_RGB161616_1X48;
2730 	}
2731 
2732 	if (max_bpc >= 12 && info->bpc >= 12) {
2733 		if (info->color_formats & DRM_COLOR_FORMAT_YCBCR422)
2734 			output_fmts[i++] = MEDIA_BUS_FMT_UYVY12_1X24;
2735 
2736 		if (info->color_formats & DRM_COLOR_FORMAT_YCBCR444)
2737 			output_fmts[i++] = MEDIA_BUS_FMT_YUV12_1X36;
2738 
2739 		output_fmts[i++] = MEDIA_BUS_FMT_RGB121212_1X36;
2740 	}
2741 
2742 	if (max_bpc >= 10 && info->bpc >= 10) {
2743 		if (info->color_formats & DRM_COLOR_FORMAT_YCBCR422)
2744 			output_fmts[i++] = MEDIA_BUS_FMT_UYVY10_1X20;
2745 
2746 		if (info->color_formats & DRM_COLOR_FORMAT_YCBCR444)
2747 			output_fmts[i++] = MEDIA_BUS_FMT_YUV10_1X30;
2748 
2749 		output_fmts[i++] = MEDIA_BUS_FMT_RGB101010_1X30;
2750 	}
2751 
2752 	if (info->color_formats & DRM_COLOR_FORMAT_YCBCR422)
2753 		output_fmts[i++] = MEDIA_BUS_FMT_UYVY8_1X16;
2754 
2755 	if (info->color_formats & DRM_COLOR_FORMAT_YCBCR444)
2756 		output_fmts[i++] = MEDIA_BUS_FMT_YUV8_1X24;
2757 
2758 	*num_output_fmts = i;
2759 
2760 	return output_fmts;
2761 }
2762 
2763 /*
2764  * Possible input formats :
2765  * - MEDIA_BUS_FMT_RGB888_1X24
2766  * - MEDIA_BUS_FMT_YUV8_1X24
2767  * - MEDIA_BUS_FMT_UYVY8_1X16
2768  * - MEDIA_BUS_FMT_UYYVYY8_0_5X24
2769  * - MEDIA_BUS_FMT_RGB101010_1X30
2770  * - MEDIA_BUS_FMT_YUV10_1X30
2771  * - MEDIA_BUS_FMT_UYVY10_1X20
2772  * - MEDIA_BUS_FMT_UYYVYY10_0_5X30
2773  * - MEDIA_BUS_FMT_RGB121212_1X36
2774  * - MEDIA_BUS_FMT_YUV12_1X36
2775  * - MEDIA_BUS_FMT_UYVY12_1X24
2776  * - MEDIA_BUS_FMT_UYYVYY12_0_5X36
2777  * - MEDIA_BUS_FMT_RGB161616_1X48
2778  * - MEDIA_BUS_FMT_YUV16_1X48
2779  * - MEDIA_BUS_FMT_UYYVYY16_0_5X48
2780  */
2781 
2782 /* Can return a maximum of 3 possible input formats for an output format */
2783 #define MAX_INPUT_SEL_FORMATS	3
2784 
2785 static u32 *dw_hdmi_bridge_atomic_get_input_bus_fmts(struct drm_bridge *bridge,
2786 					struct drm_bridge_state *bridge_state,
2787 					struct drm_crtc_state *crtc_state,
2788 					struct drm_connector_state *conn_state,
2789 					u32 output_fmt,
2790 					unsigned int *num_input_fmts)
2791 {
2792 	u32 *input_fmts;
2793 	unsigned int i = 0;
2794 
2795 	*num_input_fmts = 0;
2796 
2797 	input_fmts = kcalloc(MAX_INPUT_SEL_FORMATS, sizeof(*input_fmts),
2798 			     GFP_KERNEL);
2799 	if (!input_fmts)
2800 		return NULL;
2801 
2802 	switch (output_fmt) {
2803 	/* If MEDIA_BUS_FMT_FIXED is tested, return default bus format */
2804 	case MEDIA_BUS_FMT_FIXED:
2805 		input_fmts[i++] = MEDIA_BUS_FMT_RGB888_1X24;
2806 		break;
2807 	/* 8bit */
2808 	case MEDIA_BUS_FMT_RGB888_1X24:
2809 		input_fmts[i++] = MEDIA_BUS_FMT_RGB888_1X24;
2810 		input_fmts[i++] = MEDIA_BUS_FMT_YUV8_1X24;
2811 		input_fmts[i++] = MEDIA_BUS_FMT_UYVY8_1X16;
2812 		break;
2813 	case MEDIA_BUS_FMT_YUV8_1X24:
2814 		input_fmts[i++] = MEDIA_BUS_FMT_YUV8_1X24;
2815 		input_fmts[i++] = MEDIA_BUS_FMT_UYVY8_1X16;
2816 		input_fmts[i++] = MEDIA_BUS_FMT_RGB888_1X24;
2817 		break;
2818 	case MEDIA_BUS_FMT_UYVY8_1X16:
2819 		input_fmts[i++] = MEDIA_BUS_FMT_UYVY8_1X16;
2820 		input_fmts[i++] = MEDIA_BUS_FMT_YUV8_1X24;
2821 		input_fmts[i++] = MEDIA_BUS_FMT_RGB888_1X24;
2822 		break;
2823 
2824 	/* 10bit */
2825 	case MEDIA_BUS_FMT_RGB101010_1X30:
2826 		input_fmts[i++] = MEDIA_BUS_FMT_RGB101010_1X30;
2827 		input_fmts[i++] = MEDIA_BUS_FMT_YUV10_1X30;
2828 		input_fmts[i++] = MEDIA_BUS_FMT_UYVY10_1X20;
2829 		break;
2830 	case MEDIA_BUS_FMT_YUV10_1X30:
2831 		input_fmts[i++] = MEDIA_BUS_FMT_YUV10_1X30;
2832 		input_fmts[i++] = MEDIA_BUS_FMT_UYVY10_1X20;
2833 		input_fmts[i++] = MEDIA_BUS_FMT_RGB101010_1X30;
2834 		break;
2835 	case MEDIA_BUS_FMT_UYVY10_1X20:
2836 		input_fmts[i++] = MEDIA_BUS_FMT_UYVY10_1X20;
2837 		input_fmts[i++] = MEDIA_BUS_FMT_YUV10_1X30;
2838 		input_fmts[i++] = MEDIA_BUS_FMT_RGB101010_1X30;
2839 		break;
2840 
2841 	/* 12bit */
2842 	case MEDIA_BUS_FMT_RGB121212_1X36:
2843 		input_fmts[i++] = MEDIA_BUS_FMT_RGB121212_1X36;
2844 		input_fmts[i++] = MEDIA_BUS_FMT_YUV12_1X36;
2845 		input_fmts[i++] = MEDIA_BUS_FMT_UYVY12_1X24;
2846 		break;
2847 	case MEDIA_BUS_FMT_YUV12_1X36:
2848 		input_fmts[i++] = MEDIA_BUS_FMT_YUV12_1X36;
2849 		input_fmts[i++] = MEDIA_BUS_FMT_UYVY12_1X24;
2850 		input_fmts[i++] = MEDIA_BUS_FMT_RGB121212_1X36;
2851 		break;
2852 	case MEDIA_BUS_FMT_UYVY12_1X24:
2853 		input_fmts[i++] = MEDIA_BUS_FMT_UYVY12_1X24;
2854 		input_fmts[i++] = MEDIA_BUS_FMT_YUV12_1X36;
2855 		input_fmts[i++] = MEDIA_BUS_FMT_RGB121212_1X36;
2856 		break;
2857 
2858 	/* 16bit */
2859 	case MEDIA_BUS_FMT_RGB161616_1X48:
2860 		input_fmts[i++] = MEDIA_BUS_FMT_RGB161616_1X48;
2861 		input_fmts[i++] = MEDIA_BUS_FMT_YUV16_1X48;
2862 		break;
2863 	case MEDIA_BUS_FMT_YUV16_1X48:
2864 		input_fmts[i++] = MEDIA_BUS_FMT_YUV16_1X48;
2865 		input_fmts[i++] = MEDIA_BUS_FMT_RGB161616_1X48;
2866 		break;
2867 
2868 	/*YUV 4:2:0 */
2869 	case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
2870 	case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
2871 	case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
2872 	case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
2873 		input_fmts[i++] = output_fmt;
2874 		break;
2875 	}
2876 
2877 	*num_input_fmts = i;
2878 
2879 	if (*num_input_fmts == 0) {
2880 		kfree(input_fmts);
2881 		input_fmts = NULL;
2882 	}
2883 
2884 	return input_fmts;
2885 }
2886 
2887 static int dw_hdmi_bridge_atomic_check(struct drm_bridge *bridge,
2888 				       struct drm_bridge_state *bridge_state,
2889 				       struct drm_crtc_state *crtc_state,
2890 				       struct drm_connector_state *conn_state)
2891 {
2892 	struct dw_hdmi *hdmi = bridge->driver_private;
2893 
2894 	hdmi->hdmi_data.enc_out_bus_format =
2895 			bridge_state->output_bus_cfg.format;
2896 
2897 	hdmi->hdmi_data.enc_in_bus_format =
2898 			bridge_state->input_bus_cfg.format;
2899 
2900 	dev_dbg(hdmi->dev, "input format 0x%04x, output format 0x%04x\n",
2901 		bridge_state->input_bus_cfg.format,
2902 		bridge_state->output_bus_cfg.format);
2903 
2904 	return 0;
2905 }
2906 
2907 static int dw_hdmi_bridge_attach(struct drm_bridge *bridge,
2908 				 struct drm_encoder *encoder,
2909 				 enum drm_bridge_attach_flags flags)
2910 {
2911 	struct dw_hdmi *hdmi = bridge->driver_private;
2912 
2913 	if (flags & DRM_BRIDGE_ATTACH_NO_CONNECTOR)
2914 		return drm_bridge_attach(encoder, hdmi->bridge.next_bridge,
2915 					 bridge, flags);
2916 
2917 	return dw_hdmi_connector_create(hdmi);
2918 }
2919 
2920 static void dw_hdmi_bridge_detach(struct drm_bridge *bridge)
2921 {
2922 	struct dw_hdmi *hdmi = bridge->driver_private;
2923 
2924 	mutex_lock(&hdmi->cec_notifier_mutex);
2925 	cec_notifier_conn_unregister(hdmi->cec_notifier);
2926 	hdmi->cec_notifier = NULL;
2927 	mutex_unlock(&hdmi->cec_notifier_mutex);
2928 }
2929 
2930 static enum drm_mode_status
2931 dw_hdmi_bridge_mode_valid(struct drm_bridge *bridge,
2932 			  const struct drm_display_info *info,
2933 			  const struct drm_display_mode *mode)
2934 {
2935 	struct dw_hdmi *hdmi = bridge->driver_private;
2936 	const struct dw_hdmi_plat_data *pdata = hdmi->plat_data;
2937 	enum drm_mode_status mode_status = MODE_OK;
2938 
2939 	/* We don't support double-clocked modes */
2940 	if (mode->flags & DRM_MODE_FLAG_DBLCLK)
2941 		return MODE_BAD;
2942 
2943 	if (pdata->mode_valid)
2944 		mode_status = pdata->mode_valid(hdmi, pdata->priv_data, info,
2945 						mode);
2946 
2947 	return mode_status;
2948 }
2949 
2950 static void dw_hdmi_bridge_mode_set(struct drm_bridge *bridge,
2951 				    const struct drm_display_mode *orig_mode,
2952 				    const struct drm_display_mode *mode)
2953 {
2954 	struct dw_hdmi *hdmi = bridge->driver_private;
2955 
2956 	mutex_lock(&hdmi->mutex);
2957 
2958 	/* Store the display mode for plugin/DKMS poweron events */
2959 	drm_mode_copy(&hdmi->previous_mode, mode);
2960 
2961 	mutex_unlock(&hdmi->mutex);
2962 }
2963 
2964 static void dw_hdmi_bridge_atomic_disable(struct drm_bridge *bridge,
2965 					  struct drm_atomic_state *state)
2966 {
2967 	struct dw_hdmi *hdmi = bridge->driver_private;
2968 
2969 	mutex_lock(&hdmi->mutex);
2970 	hdmi->disabled = true;
2971 	hdmi->curr_conn = NULL;
2972 	dw_hdmi_update_power(hdmi);
2973 	dw_hdmi_update_phy_mask(hdmi);
2974 	handle_plugged_change(hdmi, false);
2975 	mutex_unlock(&hdmi->mutex);
2976 }
2977 
2978 static void dw_hdmi_bridge_atomic_enable(struct drm_bridge *bridge,
2979 					 struct drm_atomic_state *state)
2980 {
2981 	struct dw_hdmi *hdmi = bridge->driver_private;
2982 	struct drm_connector *connector;
2983 
2984 	connector = drm_atomic_get_new_connector_for_encoder(state,
2985 							     bridge->encoder);
2986 
2987 	mutex_lock(&hdmi->mutex);
2988 	hdmi->disabled = false;
2989 	hdmi->curr_conn = connector;
2990 	dw_hdmi_update_power(hdmi);
2991 	dw_hdmi_update_phy_mask(hdmi);
2992 	handle_plugged_change(hdmi, true);
2993 	mutex_unlock(&hdmi->mutex);
2994 }
2995 
2996 static enum drm_connector_status
2997 dw_hdmi_bridge_detect(struct drm_bridge *bridge, struct drm_connector *connector)
2998 {
2999 	struct dw_hdmi *hdmi = bridge->driver_private;
3000 
3001 	return dw_hdmi_detect(hdmi);
3002 }
3003 
3004 static const struct drm_edid *dw_hdmi_bridge_edid_read(struct drm_bridge *bridge,
3005 						       struct drm_connector *connector)
3006 {
3007 	struct dw_hdmi *hdmi = bridge->driver_private;
3008 
3009 	return dw_hdmi_edid_read(hdmi, connector);
3010 }
3011 
3012 static const struct drm_bridge_funcs dw_hdmi_bridge_funcs = {
3013 	.atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state,
3014 	.atomic_destroy_state = drm_atomic_helper_bridge_destroy_state,
3015 	.atomic_reset = drm_atomic_helper_bridge_reset,
3016 	.attach = dw_hdmi_bridge_attach,
3017 	.detach = dw_hdmi_bridge_detach,
3018 	.atomic_check = dw_hdmi_bridge_atomic_check,
3019 	.atomic_get_output_bus_fmts = dw_hdmi_bridge_atomic_get_output_bus_fmts,
3020 	.atomic_get_input_bus_fmts = dw_hdmi_bridge_atomic_get_input_bus_fmts,
3021 	.atomic_enable = dw_hdmi_bridge_atomic_enable,
3022 	.atomic_disable = dw_hdmi_bridge_atomic_disable,
3023 	.mode_set = dw_hdmi_bridge_mode_set,
3024 	.mode_valid = dw_hdmi_bridge_mode_valid,
3025 	.detect = dw_hdmi_bridge_detect,
3026 	.edid_read = dw_hdmi_bridge_edid_read,
3027 };
3028 
3029 /* -----------------------------------------------------------------------------
3030  * IRQ Handling
3031  */
3032 
3033 static irqreturn_t dw_hdmi_i2c_irq(struct dw_hdmi *hdmi)
3034 {
3035 	struct dw_hdmi_i2c *i2c = hdmi->i2c;
3036 	unsigned int stat;
3037 
3038 	stat = hdmi_readb(hdmi, HDMI_IH_I2CM_STAT0);
3039 	if (!stat)
3040 		return IRQ_NONE;
3041 
3042 	hdmi_writeb(hdmi, stat, HDMI_IH_I2CM_STAT0);
3043 
3044 	i2c->stat = stat;
3045 
3046 	complete(&i2c->cmp);
3047 
3048 	return IRQ_HANDLED;
3049 }
3050 
3051 static irqreturn_t dw_hdmi_hardirq(int irq, void *dev_id)
3052 {
3053 	struct dw_hdmi *hdmi = dev_id;
3054 	u8 intr_stat;
3055 	irqreturn_t ret = IRQ_NONE;
3056 
3057 	if (hdmi->i2c)
3058 		ret = dw_hdmi_i2c_irq(hdmi);
3059 
3060 	intr_stat = hdmi_readb(hdmi, HDMI_IH_PHY_STAT0);
3061 	if (intr_stat) {
3062 		hdmi_writeb(hdmi, ~0, HDMI_IH_MUTE_PHY_STAT0);
3063 		return IRQ_WAKE_THREAD;
3064 	}
3065 
3066 	return ret;
3067 }
3068 
3069 void dw_hdmi_setup_rx_sense(struct dw_hdmi *hdmi, bool hpd, bool rx_sense)
3070 {
3071 	mutex_lock(&hdmi->mutex);
3072 
3073 	if (!hdmi->force) {
3074 		/*
3075 		 * If the RX sense status indicates we're disconnected,
3076 		 * clear the software rxsense status.
3077 		 */
3078 		if (!rx_sense)
3079 			hdmi->rxsense = false;
3080 
3081 		/*
3082 		 * Only set the software rxsense status when both
3083 		 * rxsense and hpd indicates we're connected.
3084 		 * This avoids what seems to be bad behaviour in
3085 		 * at least iMX6S versions of the phy.
3086 		 */
3087 		if (hpd)
3088 			hdmi->rxsense = true;
3089 
3090 		dw_hdmi_update_power(hdmi);
3091 		dw_hdmi_update_phy_mask(hdmi);
3092 	}
3093 	mutex_unlock(&hdmi->mutex);
3094 }
3095 EXPORT_SYMBOL_GPL(dw_hdmi_setup_rx_sense);
3096 
3097 static irqreturn_t dw_hdmi_irq(int irq, void *dev_id)
3098 {
3099 	struct dw_hdmi *hdmi = dev_id;
3100 	u8 intr_stat, phy_int_pol, phy_pol_mask, phy_stat;
3101 	enum drm_connector_status status = connector_status_unknown;
3102 
3103 	intr_stat = hdmi_readb(hdmi, HDMI_IH_PHY_STAT0);
3104 	phy_int_pol = hdmi_readb(hdmi, HDMI_PHY_POL0);
3105 	phy_stat = hdmi_readb(hdmi, HDMI_PHY_STAT0);
3106 
3107 	phy_pol_mask = 0;
3108 	if (intr_stat & HDMI_IH_PHY_STAT0_HPD)
3109 		phy_pol_mask |= HDMI_PHY_HPD;
3110 	if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE0)
3111 		phy_pol_mask |= HDMI_PHY_RX_SENSE0;
3112 	if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE1)
3113 		phy_pol_mask |= HDMI_PHY_RX_SENSE1;
3114 	if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE2)
3115 		phy_pol_mask |= HDMI_PHY_RX_SENSE2;
3116 	if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE3)
3117 		phy_pol_mask |= HDMI_PHY_RX_SENSE3;
3118 
3119 	if (phy_pol_mask)
3120 		hdmi_modb(hdmi, ~phy_int_pol, phy_pol_mask, HDMI_PHY_POL0);
3121 
3122 	/*
3123 	 * RX sense tells us whether the TDMS transmitters are detecting
3124 	 * load - in other words, there's something listening on the
3125 	 * other end of the link.  Use this to decide whether we should
3126 	 * power on the phy as HPD may be toggled by the sink to merely
3127 	 * ask the source to re-read the EDID.
3128 	 */
3129 	if (intr_stat &
3130 	    (HDMI_IH_PHY_STAT0_RX_SENSE | HDMI_IH_PHY_STAT0_HPD)) {
3131 		dw_hdmi_setup_rx_sense(hdmi,
3132 				       phy_stat & HDMI_PHY_HPD,
3133 				       phy_stat & HDMI_PHY_RX_SENSE);
3134 
3135 		if ((phy_stat & (HDMI_PHY_RX_SENSE | HDMI_PHY_HPD)) == 0) {
3136 			mutex_lock(&hdmi->cec_notifier_mutex);
3137 			cec_notifier_phys_addr_invalidate(hdmi->cec_notifier);
3138 			mutex_unlock(&hdmi->cec_notifier_mutex);
3139 		}
3140 
3141 		if (phy_stat & HDMI_PHY_HPD)
3142 			status = connector_status_connected;
3143 
3144 		if (!(phy_stat & (HDMI_PHY_HPD | HDMI_PHY_RX_SENSE)))
3145 			status = connector_status_disconnected;
3146 	}
3147 
3148 	if (status != connector_status_unknown) {
3149 		dev_dbg(hdmi->dev, "EVENT=%s\n",
3150 			status == connector_status_connected ?
3151 			"plugin" : "plugout");
3152 
3153 		if (hdmi->bridge.dev) {
3154 			drm_helper_hpd_irq_event(hdmi->bridge.dev);
3155 			drm_bridge_hpd_notify(&hdmi->bridge, status);
3156 		}
3157 	}
3158 
3159 	hdmi_writeb(hdmi, intr_stat, HDMI_IH_PHY_STAT0);
3160 	hdmi_writeb(hdmi, ~(HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE),
3161 		    HDMI_IH_MUTE_PHY_STAT0);
3162 
3163 	return IRQ_HANDLED;
3164 }
3165 
3166 static const struct dw_hdmi_phy_data dw_hdmi_phys[] = {
3167 	{
3168 		.type = DW_HDMI_PHY_DWC_HDMI_TX_PHY,
3169 		.name = "DWC HDMI TX PHY",
3170 		.gen = 1,
3171 	}, {
3172 		.type = DW_HDMI_PHY_DWC_MHL_PHY_HEAC,
3173 		.name = "DWC MHL PHY + HEAC PHY",
3174 		.gen = 2,
3175 		.has_svsret = true,
3176 		.configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
3177 	}, {
3178 		.type = DW_HDMI_PHY_DWC_MHL_PHY,
3179 		.name = "DWC MHL PHY",
3180 		.gen = 2,
3181 		.has_svsret = true,
3182 		.configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
3183 	}, {
3184 		.type = DW_HDMI_PHY_DWC_HDMI_3D_TX_PHY_HEAC,
3185 		.name = "DWC HDMI 3D TX PHY + HEAC PHY",
3186 		.gen = 2,
3187 		.configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
3188 	}, {
3189 		.type = DW_HDMI_PHY_DWC_HDMI_3D_TX_PHY,
3190 		.name = "DWC HDMI 3D TX PHY",
3191 		.gen = 2,
3192 		.configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
3193 	}, {
3194 		.type = DW_HDMI_PHY_DWC_HDMI20_TX_PHY,
3195 		.name = "DWC HDMI 2.0 TX PHY",
3196 		.gen = 2,
3197 		.has_svsret = true,
3198 		.configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
3199 	}, {
3200 		.type = DW_HDMI_PHY_VENDOR_PHY,
3201 		.name = "Vendor PHY",
3202 	}
3203 };
3204 
3205 static int dw_hdmi_detect_phy(struct dw_hdmi *hdmi)
3206 {
3207 	unsigned int i;
3208 	u8 phy_type;
3209 
3210 	phy_type = hdmi->plat_data->phy_force_vendor ?
3211 				DW_HDMI_PHY_VENDOR_PHY :
3212 				hdmi_readb(hdmi, HDMI_CONFIG2_ID);
3213 
3214 	if (phy_type == DW_HDMI_PHY_VENDOR_PHY) {
3215 		/* Vendor PHYs require support from the glue layer. */
3216 		if (!hdmi->plat_data->phy_ops || !hdmi->plat_data->phy_name) {
3217 			dev_err(hdmi->dev,
3218 				"Vendor HDMI PHY not supported by glue layer\n");
3219 			return -ENODEV;
3220 		}
3221 
3222 		hdmi->phy.ops = hdmi->plat_data->phy_ops;
3223 		hdmi->phy.data = hdmi->plat_data->phy_data;
3224 		hdmi->phy.name = hdmi->plat_data->phy_name;
3225 		return 0;
3226 	}
3227 
3228 	/* Synopsys PHYs are handled internally. */
3229 	for (i = 0; i < ARRAY_SIZE(dw_hdmi_phys); ++i) {
3230 		if (dw_hdmi_phys[i].type == phy_type) {
3231 			hdmi->phy.ops = &dw_hdmi_synopsys_phy_ops;
3232 			hdmi->phy.name = dw_hdmi_phys[i].name;
3233 			hdmi->phy.data = (void *)&dw_hdmi_phys[i];
3234 
3235 			if (!dw_hdmi_phys[i].configure &&
3236 			    !hdmi->plat_data->configure_phy) {
3237 				dev_err(hdmi->dev, "%s requires platform support\n",
3238 					hdmi->phy.name);
3239 				return -ENODEV;
3240 			}
3241 
3242 			return 0;
3243 		}
3244 	}
3245 
3246 	dev_err(hdmi->dev, "Unsupported HDMI PHY type (%02x)\n", phy_type);
3247 	return -ENODEV;
3248 }
3249 
3250 static void dw_hdmi_cec_enable(struct dw_hdmi *hdmi)
3251 {
3252 	mutex_lock(&hdmi->mutex);
3253 	hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_CECCLK_DISABLE;
3254 	hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
3255 	mutex_unlock(&hdmi->mutex);
3256 }
3257 
3258 static void dw_hdmi_cec_disable(struct dw_hdmi *hdmi)
3259 {
3260 	mutex_lock(&hdmi->mutex);
3261 	hdmi->mc_clkdis |= HDMI_MC_CLKDIS_CECCLK_DISABLE;
3262 	hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
3263 	mutex_unlock(&hdmi->mutex);
3264 }
3265 
3266 static const struct dw_hdmi_cec_ops dw_hdmi_cec_ops = {
3267 	.write = hdmi_writeb,
3268 	.read = hdmi_readb,
3269 	.enable = dw_hdmi_cec_enable,
3270 	.disable = dw_hdmi_cec_disable,
3271 };
3272 
3273 static const struct regmap_config hdmi_regmap_8bit_config = {
3274 	.reg_bits	= 32,
3275 	.val_bits	= 8,
3276 	.reg_stride	= 1,
3277 	.max_register	= HDMI_I2CM_FS_SCL_LCNT_0_ADDR,
3278 };
3279 
3280 static const struct regmap_config hdmi_regmap_32bit_config = {
3281 	.reg_bits	= 32,
3282 	.val_bits	= 32,
3283 	.reg_stride	= 4,
3284 	.max_register	= HDMI_I2CM_FS_SCL_LCNT_0_ADDR << 2,
3285 };
3286 
3287 static void dw_hdmi_init_hw(struct dw_hdmi *hdmi)
3288 {
3289 	initialize_hdmi_ih_mutes(hdmi);
3290 
3291 	/*
3292 	 * Reset HDMI DDC I2C master controller and mute I2CM interrupts.
3293 	 * Even if we are using a separate i2c adapter doing this doesn't
3294 	 * hurt.
3295 	 */
3296 	dw_hdmi_i2c_init(hdmi);
3297 
3298 	if (hdmi->phy.ops->setup_hpd)
3299 		hdmi->phy.ops->setup_hpd(hdmi, hdmi->phy.data);
3300 }
3301 
3302 /* -----------------------------------------------------------------------------
3303  * Probe/remove API, used from platforms based on the DRM bridge API.
3304  */
3305 
3306 static int dw_hdmi_parse_dt(struct dw_hdmi *hdmi)
3307 {
3308 	struct device_node *remote;
3309 
3310 	if (!hdmi->plat_data->output_port)
3311 		return 0;
3312 
3313 
3314 	remote = of_graph_get_remote_node(hdmi->dev->of_node,
3315 					  hdmi->plat_data->output_port,
3316 					  -1);
3317 	if (!remote)
3318 		return -ENODEV;
3319 
3320 	hdmi->bridge.next_bridge = of_drm_find_and_get_bridge(remote);
3321 	of_node_put(remote);
3322 	if (!hdmi->bridge.next_bridge)
3323 		return -EPROBE_DEFER;
3324 
3325 	return 0;
3326 }
3327 
3328 bool dw_hdmi_bus_fmt_is_420(struct dw_hdmi *hdmi)
3329 {
3330 	return hdmi_bus_fmt_is_yuv420(hdmi->hdmi_data.enc_out_bus_format);
3331 }
3332 EXPORT_SYMBOL_GPL(dw_hdmi_bus_fmt_is_420);
3333 
3334 struct dw_hdmi *dw_hdmi_probe(struct platform_device *pdev,
3335 			      const struct dw_hdmi_plat_data *plat_data)
3336 {
3337 	struct device *dev = &pdev->dev;
3338 	struct device_node *np = dev->of_node;
3339 	struct platform_device_info pdevinfo;
3340 	struct device_node *ddc_node;
3341 	struct dw_hdmi_cec_data cec;
3342 	struct dw_hdmi *hdmi;
3343 	struct clk *clk;
3344 	struct resource *iores = NULL;
3345 	int irq;
3346 	int ret;
3347 	u32 val = 1;
3348 	u8 prod_id0;
3349 	u8 prod_id1;
3350 	u8 config0;
3351 	u8 config3;
3352 
3353 	hdmi = devm_drm_bridge_alloc(dev, struct dw_hdmi, bridge, &dw_hdmi_bridge_funcs);
3354 	if (IS_ERR(hdmi))
3355 		return hdmi;
3356 
3357 	hdmi->plat_data = plat_data;
3358 	hdmi->dev = dev;
3359 	hdmi->sample_rate = 48000;
3360 	hdmi->channels = 2;
3361 	hdmi->disabled = true;
3362 	hdmi->rxsense = true;
3363 	hdmi->phy_mask = (u8)~(HDMI_PHY_HPD | HDMI_PHY_RX_SENSE);
3364 	hdmi->mc_clkdis = 0x7f;
3365 	hdmi->last_connector_result = connector_status_disconnected;
3366 
3367 	mutex_init(&hdmi->mutex);
3368 	mutex_init(&hdmi->audio_mutex);
3369 	mutex_init(&hdmi->cec_notifier_mutex);
3370 	spin_lock_init(&hdmi->audio_lock);
3371 
3372 	ret = dw_hdmi_parse_dt(hdmi);
3373 	if (ret < 0)
3374 		return ERR_PTR(ret);
3375 
3376 	ddc_node = of_parse_phandle(np, "ddc-i2c-bus", 0);
3377 	if (ddc_node) {
3378 		hdmi->ddc = of_get_i2c_adapter_by_node(ddc_node);
3379 		of_node_put(ddc_node);
3380 		if (!hdmi->ddc) {
3381 			dev_dbg(hdmi->dev, "failed to read ddc node\n");
3382 			return ERR_PTR(-EPROBE_DEFER);
3383 		}
3384 
3385 	} else {
3386 		dev_dbg(hdmi->dev, "no ddc property found\n");
3387 	}
3388 
3389 	if (!plat_data->regm) {
3390 		const struct regmap_config *reg_config;
3391 
3392 		of_property_read_u32(np, "reg-io-width", &val);
3393 		switch (val) {
3394 		case 4:
3395 			reg_config = &hdmi_regmap_32bit_config;
3396 			hdmi->reg_shift = 2;
3397 			break;
3398 		case 1:
3399 			reg_config = &hdmi_regmap_8bit_config;
3400 			break;
3401 		default:
3402 			dev_err(dev, "reg-io-width must be 1 or 4\n");
3403 			return ERR_PTR(-EINVAL);
3404 		}
3405 
3406 		iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3407 		hdmi->regs = devm_ioremap_resource(dev, iores);
3408 		if (IS_ERR(hdmi->regs)) {
3409 			ret = PTR_ERR(hdmi->regs);
3410 			goto err_res;
3411 		}
3412 
3413 		hdmi->regm = devm_regmap_init_mmio(dev, hdmi->regs, reg_config);
3414 		if (IS_ERR(hdmi->regm)) {
3415 			dev_err(dev, "Failed to configure regmap\n");
3416 			ret = PTR_ERR(hdmi->regm);
3417 			goto err_res;
3418 		}
3419 	} else {
3420 		hdmi->regm = plat_data->regm;
3421 	}
3422 
3423 	clk = devm_clk_get_enabled(hdmi->dev, "isfr");
3424 	if (IS_ERR(clk)) {
3425 		ret = PTR_ERR(clk);
3426 		dev_err(hdmi->dev, "Unable to get HDMI isfr clk: %d\n", ret);
3427 		goto err_res;
3428 	}
3429 
3430 	clk = devm_clk_get_enabled(hdmi->dev, "iahb");
3431 	if (IS_ERR(clk)) {
3432 		ret = PTR_ERR(clk);
3433 		dev_err(hdmi->dev, "Unable to get HDMI iahb clk: %d\n", ret);
3434 		goto err_res;
3435 	}
3436 
3437 	clk = devm_clk_get_optional_enabled(hdmi->dev, "cec");
3438 	if (IS_ERR(clk)) {
3439 		ret = PTR_ERR(clk);
3440 		if (ret != -EPROBE_DEFER)
3441 			dev_err(hdmi->dev, "Cannot get HDMI cec clock: %d\n",
3442 				ret);
3443 		goto err_res;
3444 	}
3445 
3446 	/* Product and revision IDs */
3447 	hdmi->version = (hdmi_readb(hdmi, HDMI_DESIGN_ID) << 8)
3448 		      | (hdmi_readb(hdmi, HDMI_REVISION_ID) << 0);
3449 	prod_id0 = hdmi_readb(hdmi, HDMI_PRODUCT_ID0);
3450 	prod_id1 = hdmi_readb(hdmi, HDMI_PRODUCT_ID1);
3451 
3452 	if (prod_id0 != HDMI_PRODUCT_ID0_HDMI_TX ||
3453 	    (prod_id1 & ~HDMI_PRODUCT_ID1_HDCP) != HDMI_PRODUCT_ID1_HDMI_TX) {
3454 		dev_err(dev, "Unsupported HDMI controller (%04x:%02x:%02x)\n",
3455 			hdmi->version, prod_id0, prod_id1);
3456 		ret = -ENODEV;
3457 		goto err_res;
3458 	}
3459 
3460 	ret = dw_hdmi_detect_phy(hdmi);
3461 	if (ret < 0)
3462 		goto err_res;
3463 
3464 	dev_info(dev, "Detected HDMI TX controller v%x.%03x %s HDCP (%s)\n",
3465 		 hdmi->version >> 12, hdmi->version & 0xfff,
3466 		 prod_id1 & HDMI_PRODUCT_ID1_HDCP ? "with" : "without",
3467 		 hdmi->phy.name);
3468 
3469 	dw_hdmi_init_hw(hdmi);
3470 
3471 	irq = platform_get_irq(pdev, 0);
3472 	if (irq < 0) {
3473 		ret = irq;
3474 		goto err_res;
3475 	}
3476 
3477 	ret = devm_request_threaded_irq(dev, irq, dw_hdmi_hardirq,
3478 					dw_hdmi_irq, IRQF_SHARED,
3479 					dev_name(dev), hdmi);
3480 	if (ret)
3481 		goto err_res;
3482 
3483 	/*
3484 	 * To prevent overflows in HDMI_IH_FC_STAT2, set the clk regenerator
3485 	 * N and cts values before enabling phy
3486 	 */
3487 	hdmi_init_clk_regenerator(hdmi);
3488 
3489 	/* If DDC bus is not specified, try to register HDMI I2C bus */
3490 	if (!hdmi->ddc) {
3491 		/* Look for (optional) stuff related to unwedging */
3492 		hdmi->pinctrl = devm_pinctrl_get(dev);
3493 		if (!IS_ERR(hdmi->pinctrl)) {
3494 			hdmi->unwedge_state =
3495 				pinctrl_lookup_state(hdmi->pinctrl, "unwedge");
3496 			hdmi->default_state =
3497 				pinctrl_lookup_state(hdmi->pinctrl, "default");
3498 
3499 			if (IS_ERR(hdmi->default_state) ||
3500 			    IS_ERR(hdmi->unwedge_state)) {
3501 				if (!IS_ERR(hdmi->unwedge_state))
3502 					dev_warn(dev,
3503 						 "Unwedge requires default pinctrl\n");
3504 				hdmi->default_state = NULL;
3505 				hdmi->unwedge_state = NULL;
3506 			}
3507 		}
3508 
3509 		hdmi->ddc = dw_hdmi_i2c_adapter(hdmi);
3510 		if (IS_ERR(hdmi->ddc))
3511 			hdmi->ddc = NULL;
3512 	}
3513 
3514 	hdmi->bridge.driver_private = hdmi;
3515 	hdmi->bridge.ops = DRM_BRIDGE_OP_DETECT | DRM_BRIDGE_OP_EDID
3516 			 | DRM_BRIDGE_OP_HPD;
3517 	hdmi->bridge.interlace_allowed = true;
3518 	hdmi->bridge.ddc = hdmi->ddc;
3519 	hdmi->bridge.of_node = pdev->dev.of_node;
3520 	hdmi->bridge.type = DRM_MODE_CONNECTOR_HDMIA;
3521 
3522 	if (hdmi->version >= 0x200a)
3523 		hdmi->bridge.ycbcr_420_allowed = plat_data->ycbcr_420_allowed;
3524 
3525 	memset(&pdevinfo, 0, sizeof(pdevinfo));
3526 	pdevinfo.parent = dev;
3527 	pdevinfo.id = PLATFORM_DEVID_AUTO;
3528 
3529 	config0 = hdmi_readb(hdmi, HDMI_CONFIG0_ID);
3530 	config3 = hdmi_readb(hdmi, HDMI_CONFIG3_ID);
3531 
3532 	if (iores && config3 & HDMI_CONFIG3_AHBAUDDMA) {
3533 		struct dw_hdmi_audio_data audio;
3534 
3535 		audio.phys = iores->start;
3536 		audio.base = hdmi->regs;
3537 		audio.irq = irq;
3538 		audio.hdmi = hdmi;
3539 		audio.get_eld = hdmi_audio_get_eld;
3540 		hdmi->enable_audio = dw_hdmi_ahb_audio_enable;
3541 		hdmi->disable_audio = dw_hdmi_ahb_audio_disable;
3542 
3543 		pdevinfo.name = "dw-hdmi-ahb-audio";
3544 		pdevinfo.data = &audio;
3545 		pdevinfo.size_data = sizeof(audio);
3546 		pdevinfo.dma_mask = DMA_BIT_MASK(32);
3547 		hdmi->audio = platform_device_register_full(&pdevinfo);
3548 	} else if (config0 & HDMI_CONFIG0_I2S) {
3549 		struct dw_hdmi_i2s_audio_data audio;
3550 
3551 		audio.hdmi	= hdmi;
3552 		audio.get_eld	= hdmi_audio_get_eld;
3553 		audio.write	= hdmi_writeb;
3554 		audio.read	= hdmi_readb;
3555 		hdmi->enable_audio = dw_hdmi_i2s_audio_enable;
3556 		hdmi->disable_audio = dw_hdmi_i2s_audio_disable;
3557 
3558 		pdevinfo.name = "dw-hdmi-i2s-audio";
3559 		pdevinfo.data = &audio;
3560 		pdevinfo.size_data = sizeof(audio);
3561 		pdevinfo.dma_mask = DMA_BIT_MASK(32);
3562 		hdmi->audio = platform_device_register_full(&pdevinfo);
3563 	} else if (iores && config3 & HDMI_CONFIG3_GPAUD) {
3564 		struct dw_hdmi_audio_data audio;
3565 
3566 		audio.phys = iores->start;
3567 		audio.base = hdmi->regs;
3568 		audio.irq = irq;
3569 		audio.hdmi = hdmi;
3570 		audio.get_eld = hdmi_audio_get_eld;
3571 
3572 		hdmi->enable_audio = dw_hdmi_gp_audio_enable;
3573 		hdmi->disable_audio = dw_hdmi_gp_audio_disable;
3574 
3575 		pdevinfo.name = "dw-hdmi-gp-audio";
3576 		pdevinfo.id = PLATFORM_DEVID_NONE;
3577 		pdevinfo.data = &audio;
3578 		pdevinfo.size_data = sizeof(audio);
3579 		pdevinfo.dma_mask = DMA_BIT_MASK(32);
3580 		hdmi->audio = platform_device_register_full(&pdevinfo);
3581 	}
3582 
3583 	if (!plat_data->disable_cec && (config0 & HDMI_CONFIG0_CEC)) {
3584 		cec.hdmi = hdmi;
3585 		cec.ops = &dw_hdmi_cec_ops;
3586 		cec.irq = irq;
3587 
3588 		pdevinfo.name = "dw-hdmi-cec";
3589 		pdevinfo.data = &cec;
3590 		pdevinfo.size_data = sizeof(cec);
3591 		pdevinfo.dma_mask = 0;
3592 
3593 		hdmi->cec = platform_device_register_full(&pdevinfo);
3594 	}
3595 
3596 	drm_bridge_add(&hdmi->bridge);
3597 
3598 	return hdmi;
3599 
3600 err_res:
3601 	i2c_put_adapter(hdmi->ddc);
3602 
3603 	return ERR_PTR(ret);
3604 }
3605 EXPORT_SYMBOL_GPL(dw_hdmi_probe);
3606 
3607 void dw_hdmi_remove(struct dw_hdmi *hdmi)
3608 {
3609 	drm_bridge_remove(&hdmi->bridge);
3610 
3611 	if (hdmi->audio && !IS_ERR(hdmi->audio))
3612 		platform_device_unregister(hdmi->audio);
3613 	if (!IS_ERR(hdmi->cec))
3614 		platform_device_unregister(hdmi->cec);
3615 
3616 	/* Disable all interrupts */
3617 	hdmi_writeb(hdmi, ~0, HDMI_IH_MUTE_PHY_STAT0);
3618 
3619 	if (hdmi->i2c)
3620 		i2c_del_adapter(&hdmi->i2c->adap);
3621 	else
3622 		i2c_put_adapter(hdmi->ddc);
3623 }
3624 EXPORT_SYMBOL_GPL(dw_hdmi_remove);
3625 
3626 /* -----------------------------------------------------------------------------
3627  * Bind/unbind API, used from platforms based on the component framework.
3628  */
3629 struct dw_hdmi *dw_hdmi_bind(struct platform_device *pdev,
3630 			     struct drm_encoder *encoder,
3631 			     const struct dw_hdmi_plat_data *plat_data)
3632 {
3633 	struct dw_hdmi *hdmi;
3634 	int ret;
3635 
3636 	hdmi = dw_hdmi_probe(pdev, plat_data);
3637 	if (IS_ERR(hdmi))
3638 		return hdmi;
3639 
3640 	ret = drm_bridge_attach(encoder, &hdmi->bridge, NULL, 0);
3641 	if (ret) {
3642 		dw_hdmi_remove(hdmi);
3643 		return ERR_PTR(ret);
3644 	}
3645 
3646 	return hdmi;
3647 }
3648 EXPORT_SYMBOL_GPL(dw_hdmi_bind);
3649 
3650 void dw_hdmi_unbind(struct dw_hdmi *hdmi)
3651 {
3652 	dw_hdmi_remove(hdmi);
3653 }
3654 EXPORT_SYMBOL_GPL(dw_hdmi_unbind);
3655 
3656 void dw_hdmi_resume(struct dw_hdmi *hdmi)
3657 {
3658 	dw_hdmi_init_hw(hdmi);
3659 }
3660 EXPORT_SYMBOL_GPL(dw_hdmi_resume);
3661 
3662 MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
3663 MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com>");
3664 MODULE_AUTHOR("Yakir Yang <ykk@rock-chips.com>");
3665 MODULE_AUTHOR("Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com>");
3666 MODULE_DESCRIPTION("DW HDMI transmitter driver");
3667 MODULE_LICENSE("GPL");
3668 MODULE_ALIAS("platform:dw-hdmi");
3669