blob: e7c7c9b9c646faad2cd7831eeba8ce43a6edbd03 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002/*
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03003 * DesignWare High-Definition Multimedia Interface (HDMI) driver
4 *
5 * Copyright (C) 2013-2015 Mentor Graphics Inc.
Fabio Estevam9aaf8802013-11-29 08:46:32 -02006 * Copyright (C) 2011-2013 Freescale Semiconductor, Inc.
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03007 * Copyright (C) 2010, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Fabio Estevam9aaf8802013-11-29 08:46:32 -02008 */
Sam Ravnborg95b60802019-05-19 20:36:36 +02009#include <linux/clk.h>
Fabio Estevam9aaf8802013-11-29 08:46:32 -020010#include <linux/delay.h>
11#include <linux/err.h>
Sachin Kamat5a819ed2014-01-28 10:33:16 +053012#include <linux/hdmi.h>
Sam Ravnborg95b60802019-05-19 20:36:36 +020013#include <linux/irq.h>
14#include <linux/module.h>
Russell King6bcf4952015-02-02 11:01:08 +000015#include <linux/mutex.h>
Fabio Estevam9aaf8802013-11-29 08:46:32 -020016#include <linux/of_device.h>
Douglas Anderson50f94952019-05-02 15:53:33 -070017#include <linux/pinctrl/consumer.h>
Neil Armstrong80e2f972017-03-03 19:20:06 +020018#include <linux/regmap.h>
Sam Ravnborg95b60802019-05-19 20:36:36 +020019#include <linux/dma-mapping.h>
Russell Kingb90120a2015-03-27 12:59:58 +000020#include <linux/spinlock.h>
Fabio Estevam9aaf8802013-11-29 08:46:32 -020021
Sam Ravnborg95b60802019-05-19 20:36:36 +020022#include <media/cec-notifier.h>
Fabio Estevam9aaf8802013-11-29 08:46:32 -020023
Neil Armstrongdef23aa2017-04-04 14:31:57 +020024#include <uapi/linux/media-bus-format.h>
25#include <uapi/linux/videodev2.h>
26
Sam Ravnborg95b60802019-05-19 20:36:36 +020027#include <drm/bridge/dw_hdmi.h>
Jonas Karlman7cea8552019-10-07 19:21:48 +000028#include <drm/drm_atomic.h>
Sam Ravnborg95b60802019-05-19 20:36:36 +020029#include <drm/drm_atomic_helper.h>
Boris Brezillonee68c742019-08-26 17:26:29 +020030#include <drm/drm_bridge.h>
Sam Ravnborg95b60802019-05-19 20:36:36 +020031#include <drm/drm_edid.h>
Sam Ravnborg95b60802019-05-19 20:36:36 +020032#include <drm/drm_of.h>
33#include <drm/drm_print.h>
34#include <drm/drm_probe_helper.h>
35#include <drm/drm_scdc_helper.h>
36
Thierry Reding248a86f2015-11-24 17:52:58 +010037#include "dw-hdmi-audio.h"
Russell Kinga616e632017-08-02 20:41:07 +020038#include "dw-hdmi-cec.h"
Sam Ravnborg95b60802019-05-19 20:36:36 +020039#include "dw-hdmi.h"
Russell Kinge84b8d72017-07-31 15:29:41 +010040
Matthias Kaehlckebee447e2019-10-02 12:44:06 -070041#define DDC_CI_ADDR 0x37
Nickey Yang94bb4dc2017-03-20 10:57:31 +080042#define DDC_SEGMENT_ADDR 0x30
Russell Kinge84b8d72017-07-31 15:29:41 +010043
Fabio Estevam9aaf8802013-11-29 08:46:32 -020044#define HDMI_EDID_LEN 512
45
Neil Armstrong264fce62019-02-01 12:07:46 +000046/* DW-HDMI Controller >= 0x200a are at least compliant with SCDC version 1 */
47#define SCDC_MIN_SOURCE_VERSION 0x1
48
49#define HDMI14_MAX_TMDSCLK 340000000
50
Fabio Estevam9aaf8802013-11-29 08:46:32 -020051enum hdmi_datamap {
52 RGB444_8B = 0x01,
53 RGB444_10B = 0x03,
54 RGB444_12B = 0x05,
55 RGB444_16B = 0x07,
56 YCbCr444_8B = 0x09,
57 YCbCr444_10B = 0x0B,
58 YCbCr444_12B = 0x0D,
59 YCbCr444_16B = 0x0F,
60 YCbCr422_8B = 0x16,
61 YCbCr422_10B = 0x14,
62 YCbCr422_12B = 0x12,
63};
64
Fabio Estevam9aaf8802013-11-29 08:46:32 -020065static const u16 csc_coeff_default[3][4] = {
66 { 0x2000, 0x0000, 0x0000, 0x0000 },
67 { 0x0000, 0x2000, 0x0000, 0x0000 },
68 { 0x0000, 0x0000, 0x2000, 0x0000 }
69};
70
71static const u16 csc_coeff_rgb_out_eitu601[3][4] = {
72 { 0x2000, 0x6926, 0x74fd, 0x010e },
73 { 0x2000, 0x2cdd, 0x0000, 0x7e9a },
74 { 0x2000, 0x0000, 0x38b4, 0x7e3b }
75};
76
77static const u16 csc_coeff_rgb_out_eitu709[3][4] = {
78 { 0x2000, 0x7106, 0x7a02, 0x00a7 },
79 { 0x2000, 0x3264, 0x0000, 0x7e6d },
80 { 0x2000, 0x0000, 0x3b61, 0x7e25 }
81};
82
83static const u16 csc_coeff_rgb_in_eitu601[3][4] = {
84 { 0x2591, 0x1322, 0x074b, 0x0000 },
85 { 0x6535, 0x2000, 0x7acc, 0x0200 },
86 { 0x6acd, 0x7534, 0x2000, 0x0200 }
87};
88
89static const u16 csc_coeff_rgb_in_eitu709[3][4] = {
90 { 0x2dc5, 0x0d9b, 0x049e, 0x0000 },
91 { 0x62f0, 0x2000, 0x7d11, 0x0200 },
92 { 0x6756, 0x78ab, 0x2000, 0x0200 }
93};
94
Jernej Skrabec86af3792020-03-05 00:25:11 +010095static const u16 csc_coeff_rgb_full_to_rgb_limited[3][4] = {
96 { 0x1b7c, 0x0000, 0x0000, 0x0020 },
97 { 0x0000, 0x1b7c, 0x0000, 0x0020 },
98 { 0x0000, 0x0000, 0x1b7c, 0x0020 }
99};
100
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200101struct hdmi_vmode {
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200102 bool mdataenablepolarity;
103
104 unsigned int mpixelclock;
105 unsigned int mpixelrepetitioninput;
106 unsigned int mpixelrepetitionoutput;
Neil Armstrongba9877e2019-02-01 12:07:49 +0000107 unsigned int mtmdsclock;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200108};
109
110struct hdmi_data_info {
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200111 unsigned int enc_in_bus_format;
112 unsigned int enc_out_bus_format;
113 unsigned int enc_in_encoding;
114 unsigned int enc_out_encoding;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200115 unsigned int pix_repet_factor;
116 unsigned int hdcp_enable;
117 struct hdmi_vmode video_mode;
Jernej Skrabec86af3792020-03-05 00:25:11 +0100118 bool rgb_limited_range;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200119};
120
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300121struct dw_hdmi_i2c {
122 struct i2c_adapter adap;
123
124 struct mutex lock; /* used to serialize data transfers */
125 struct completion cmp;
126 u8 stat;
127
128 u8 slave_reg;
129 bool is_regaddr;
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800130 bool is_segment;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300131};
132
Laurent Pinchartfaba6c32017-01-17 10:29:06 +0200133struct dw_hdmi_phy_data {
134 enum dw_hdmi_phy_type type;
135 const char *name;
Laurent Pinchartb0e583e2017-03-06 01:35:39 +0200136 unsigned int gen;
Laurent Pinchartfaba6c32017-01-17 10:29:06 +0200137 bool has_svsret;
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +0200138 int (*configure)(struct dw_hdmi *hdmi,
139 const struct dw_hdmi_plat_data *pdata,
140 unsigned long mpixelclock);
Laurent Pinchartfaba6c32017-01-17 10:29:06 +0200141};
142
Andy Yanb21f4b62014-12-05 14:26:31 +0800143struct dw_hdmi {
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200144 struct drm_connector connector;
Laurent Pinchart70c963e2017-01-17 10:28:54 +0200145 struct drm_bridge bridge;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200146
Laurent Pinchartbe41fc52017-01-17 10:29:05 +0200147 unsigned int version;
148
149 struct platform_device *audio;
Russell Kinga616e632017-08-02 20:41:07 +0200150 struct platform_device *cec;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200151 struct device *dev;
152 struct clk *isfr_clk;
153 struct clk *iahb_clk;
Pierre-Hugues Hussonebe32c32017-11-25 21:18:44 +0100154 struct clk *cec_clk;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300155 struct dw_hdmi_i2c *i2c;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200156
157 struct hdmi_data_info hdmi_data;
Andy Yanb21f4b62014-12-05 14:26:31 +0800158 const struct dw_hdmi_plat_data *plat_data;
159
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200160 int vic;
161
162 u8 edid[HDMI_EDID_LEN];
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200163
Laurent Pinchartf1585f62017-03-06 01:36:15 +0200164 struct {
165 const struct dw_hdmi_phy_ops *ops;
166 const char *name;
167 void *data;
168 bool enabled;
169 } phy;
Laurent Pinchartfaba6c32017-01-17 10:29:06 +0200170
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200171 struct drm_display_mode previous_mode;
172
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200173 struct i2c_adapter *ddc;
174 void __iomem *regs;
Russell King05b13422015-07-21 15:35:52 +0100175 bool sink_is_hdmi;
Russell Kingf709ec02015-07-21 16:09:39 +0100176 bool sink_has_audio;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200177
Douglas Anderson50f94952019-05-02 15:53:33 -0700178 struct pinctrl *pinctrl;
179 struct pinctrl_state *default_state;
180 struct pinctrl_state *unwedge_state;
181
Russell Kingb872a8e2015-06-05 12:22:46 +0100182 struct mutex mutex; /* for state below and previous_mode */
Russell King381f05a2015-06-05 15:25:08 +0100183 enum drm_connector_force force; /* mutex-protected force state */
Laurent Pinchartca7b6b72020-05-26 04:14:58 +0300184 struct drm_connector *curr_conn;/* current connector (only valid when !disabled) */
Russell Kingb872a8e2015-06-05 12:22:46 +0100185 bool disabled; /* DRM has disabled our bridge */
Russell King381f05a2015-06-05 15:25:08 +0100186 bool bridge_is_on; /* indicates the bridge is on */
Russell Kingaeac23b2015-06-05 13:46:22 +0100187 bool rxsense; /* rxsense state */
188 u8 phy_mask; /* desired phy int mask settings */
Russell King7cc4ab22017-07-31 15:29:46 +0100189 u8 mc_clkdis; /* clock disable register */
Russell Kingb872a8e2015-06-05 12:22:46 +0100190
Russell Kingb90120a2015-03-27 12:59:58 +0000191 spinlock_t audio_lock;
Russell King6bcf4952015-02-02 11:01:08 +0000192 struct mutex audio_mutex;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200193 unsigned int sample_rate;
Russell Kingb90120a2015-03-27 12:59:58 +0000194 unsigned int audio_cts;
195 unsigned int audio_n;
196 bool audio_enable;
Andy Yan0cd9d142014-12-05 14:28:24 +0800197
Neil Armstrong80e2f972017-03-03 19:20:06 +0200198 unsigned int reg_shift;
199 struct regmap *regm;
Romain Periera7d555d2017-04-14 10:31:12 +0200200 void (*enable_audio)(struct dw_hdmi *hdmi);
201 void (*disable_audio)(struct dw_hdmi *hdmi);
Russell Kinge84b8d72017-07-31 15:29:41 +0100202
Dariusz Marcinkiewicz7070fe72019-08-14 12:45:06 +0200203 struct mutex cec_notifier_mutex;
Russell Kinge84b8d72017-07-31 15:29:41 +0100204 struct cec_notifier *cec_notifier;
Cheng-Yi Chianga9c82d62019-10-28 15:19:25 +0800205
206 hdmi_codec_plugged_cb plugged_cb;
207 struct device *codec_dev;
208 enum drm_connector_status last_connector_result;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200209};
210
Russell Kingaeac23b2015-06-05 13:46:22 +0100211#define HDMI_IH_PHY_STAT0_RX_SENSE \
212 (HDMI_IH_PHY_STAT0_RX_SENSE0 | HDMI_IH_PHY_STAT0_RX_SENSE1 | \
213 HDMI_IH_PHY_STAT0_RX_SENSE2 | HDMI_IH_PHY_STAT0_RX_SENSE3)
214
215#define HDMI_PHY_RX_SENSE \
216 (HDMI_PHY_RX_SENSE0 | HDMI_PHY_RX_SENSE1 | \
217 HDMI_PHY_RX_SENSE2 | HDMI_PHY_RX_SENSE3)
218
Andy Yan0cd9d142014-12-05 14:28:24 +0800219static inline void hdmi_writeb(struct dw_hdmi *hdmi, u8 val, int offset)
220{
Neil Armstrong80e2f972017-03-03 19:20:06 +0200221 regmap_write(hdmi->regm, offset << hdmi->reg_shift, val);
Andy Yan0cd9d142014-12-05 14:28:24 +0800222}
223
224static inline u8 hdmi_readb(struct dw_hdmi *hdmi, int offset)
225{
Neil Armstrong80e2f972017-03-03 19:20:06 +0200226 unsigned int val = 0;
227
228 regmap_read(hdmi->regm, offset << hdmi->reg_shift, &val);
229
230 return val;
Andy Yan0cd9d142014-12-05 14:28:24 +0800231}
232
Cheng-Yi Chianga9c82d62019-10-28 15:19:25 +0800233static void handle_plugged_change(struct dw_hdmi *hdmi, bool plugged)
234{
235 if (hdmi->plugged_cb && hdmi->codec_dev)
236 hdmi->plugged_cb(hdmi->codec_dev, plugged);
237}
238
239int dw_hdmi_set_plugged_cb(struct dw_hdmi *hdmi, hdmi_codec_plugged_cb fn,
240 struct device *codec_dev)
241{
242 bool plugged;
243
244 mutex_lock(&hdmi->mutex);
245 hdmi->plugged_cb = fn;
246 hdmi->codec_dev = codec_dev;
247 plugged = hdmi->last_connector_result == connector_status_connected;
248 handle_plugged_change(hdmi, plugged);
249 mutex_unlock(&hdmi->mutex);
250
251 return 0;
252}
253EXPORT_SYMBOL_GPL(dw_hdmi_set_plugged_cb);
254
Andy Yanb21f4b62014-12-05 14:26:31 +0800255static void hdmi_modb(struct dw_hdmi *hdmi, u8 data, u8 mask, unsigned reg)
Russell King812bc612013-11-04 12:42:02 +0000256{
Neil Armstrong80e2f972017-03-03 19:20:06 +0200257 regmap_update_bits(hdmi->regm, reg << hdmi->reg_shift, mask, data);
Russell King812bc612013-11-04 12:42:02 +0000258}
259
Andy Yanb21f4b62014-12-05 14:26:31 +0800260static void hdmi_mask_writeb(struct dw_hdmi *hdmi, u8 data, unsigned int reg,
Andy Yanb5878332014-12-05 14:23:52 +0800261 u8 shift, u8 mask)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200262{
Russell King812bc612013-11-04 12:42:02 +0000263 hdmi_modb(hdmi, data << shift, mask, reg);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200264}
265
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300266static void dw_hdmi_i2c_init(struct dw_hdmi *hdmi)
267{
Douglas Anderson99d02ed2019-06-04 13:42:06 -0700268 hdmi_writeb(hdmi, HDMI_PHY_I2CM_INT_ADDR_DONE_POL,
269 HDMI_PHY_I2CM_INT_ADDR);
270
271 hdmi_writeb(hdmi, HDMI_PHY_I2CM_CTLINT_ADDR_NAC_POL |
272 HDMI_PHY_I2CM_CTLINT_ADDR_ARBITRATION_POL,
273 HDMI_PHY_I2CM_CTLINT_ADDR);
274
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300275 /* Software reset */
276 hdmi_writeb(hdmi, 0x00, HDMI_I2CM_SOFTRSTZ);
277
278 /* Set Standard Mode speed (determined to be 100KHz on iMX6) */
279 hdmi_writeb(hdmi, 0x00, HDMI_I2CM_DIV);
280
281 /* Set done, not acknowledged and arbitration interrupt polarities */
282 hdmi_writeb(hdmi, HDMI_I2CM_INT_DONE_POL, HDMI_I2CM_INT);
283 hdmi_writeb(hdmi, HDMI_I2CM_CTLINT_NAC_POL | HDMI_I2CM_CTLINT_ARB_POL,
284 HDMI_I2CM_CTLINT);
285
286 /* Clear DONE and ERROR interrupts */
287 hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
288 HDMI_IH_I2CM_STAT0);
289
290 /* Mute DONE and ERROR interrupts */
291 hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
292 HDMI_IH_MUTE_I2CM_STAT0);
293}
294
Douglas Anderson50f94952019-05-02 15:53:33 -0700295static bool dw_hdmi_i2c_unwedge(struct dw_hdmi *hdmi)
296{
297 /* If no unwedge state then give up */
Douglas Anderson0bd79f92019-06-10 10:52:34 -0700298 if (!hdmi->unwedge_state)
Douglas Anderson50f94952019-05-02 15:53:33 -0700299 return false;
300
301 dev_info(hdmi->dev, "Attempting to unwedge stuck i2c bus\n");
302
303 /*
304 * This is a huge hack to workaround a problem where the dw_hdmi i2c
305 * bus could sometimes get wedged. Once wedged there doesn't appear
306 * to be any way to unwedge it (including the HDMI_I2CM_SOFTRSTZ)
307 * other than pulsing the SDA line.
308 *
309 * We appear to be able to pulse the SDA line (in the eyes of dw_hdmi)
310 * by:
311 * 1. Remux the pin as a GPIO output, driven low.
312 * 2. Wait a little while. 1 ms seems to work, but we'll do 10.
313 * 3. Immediately jump to remux the pin as dw_hdmi i2c again.
314 *
315 * At the moment of remuxing, the line will still be low due to its
316 * recent stint as an output, but then it will be pulled high by the
317 * (presumed) external pullup. dw_hdmi seems to see this as a rising
318 * edge and that seems to get it out of its jam.
319 *
320 * This wedging was only ever seen on one TV, and only on one of
321 * its HDMI ports. It happened when the TV was powered on while the
322 * device was plugged in. A scope trace shows the TV bringing both SDA
323 * and SCL low, then bringing them both back up at roughly the same
324 * time. Presumably this confuses dw_hdmi because it saw activity but
325 * no real STOP (maybe it thinks there's another master on the bus?).
326 * Giving it a clean rising edge of SDA while SCL is already high
327 * presumably makes dw_hdmi see a STOP which seems to bring dw_hdmi out
328 * of its stupor.
329 *
330 * Note that after coming back alive, transfers seem to immediately
331 * resume, so if we unwedge due to a timeout we should wait a little
332 * longer for our transfer to finish, since it might have just started
333 * now.
334 */
335 pinctrl_select_state(hdmi->pinctrl, hdmi->unwedge_state);
336 msleep(10);
337 pinctrl_select_state(hdmi->pinctrl, hdmi->default_state);
338
339 return true;
340}
341
342static int dw_hdmi_i2c_wait(struct dw_hdmi *hdmi)
343{
344 struct dw_hdmi_i2c *i2c = hdmi->i2c;
345 int stat;
346
347 stat = wait_for_completion_timeout(&i2c->cmp, HZ / 10);
348 if (!stat) {
349 /* If we can't unwedge, return timeout */
350 if (!dw_hdmi_i2c_unwedge(hdmi))
351 return -EAGAIN;
352
353 /* We tried to unwedge; give it another chance */
354 stat = wait_for_completion_timeout(&i2c->cmp, HZ / 10);
355 if (!stat)
356 return -EAGAIN;
357 }
358
359 /* Check for error condition on the bus */
360 if (i2c->stat & HDMI_IH_I2CM_STAT0_ERROR)
361 return -EIO;
362
363 return 0;
364}
365
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300366static int dw_hdmi_i2c_read(struct dw_hdmi *hdmi,
367 unsigned char *buf, unsigned int length)
368{
369 struct dw_hdmi_i2c *i2c = hdmi->i2c;
Douglas Anderson50f94952019-05-02 15:53:33 -0700370 int ret;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300371
372 if (!i2c->is_regaddr) {
373 dev_dbg(hdmi->dev, "set read register address to 0\n");
374 i2c->slave_reg = 0x00;
375 i2c->is_regaddr = true;
376 }
377
378 while (length--) {
379 reinit_completion(&i2c->cmp);
380
381 hdmi_writeb(hdmi, i2c->slave_reg++, HDMI_I2CM_ADDRESS);
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800382 if (i2c->is_segment)
383 hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_READ_EXT,
384 HDMI_I2CM_OPERATION);
385 else
386 hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_READ,
387 HDMI_I2CM_OPERATION);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300388
Douglas Anderson50f94952019-05-02 15:53:33 -0700389 ret = dw_hdmi_i2c_wait(hdmi);
390 if (ret)
391 return ret;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300392
393 *buf++ = hdmi_readb(hdmi, HDMI_I2CM_DATAI);
394 }
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800395 i2c->is_segment = false;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300396
397 return 0;
398}
399
400static int dw_hdmi_i2c_write(struct dw_hdmi *hdmi,
401 unsigned char *buf, unsigned int length)
402{
403 struct dw_hdmi_i2c *i2c = hdmi->i2c;
Douglas Anderson50f94952019-05-02 15:53:33 -0700404 int ret;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300405
406 if (!i2c->is_regaddr) {
407 /* Use the first write byte as register address */
408 i2c->slave_reg = buf[0];
409 length--;
410 buf++;
411 i2c->is_regaddr = true;
412 }
413
414 while (length--) {
415 reinit_completion(&i2c->cmp);
416
417 hdmi_writeb(hdmi, *buf++, HDMI_I2CM_DATAO);
418 hdmi_writeb(hdmi, i2c->slave_reg++, HDMI_I2CM_ADDRESS);
419 hdmi_writeb(hdmi, HDMI_I2CM_OPERATION_WRITE,
420 HDMI_I2CM_OPERATION);
421
Douglas Anderson50f94952019-05-02 15:53:33 -0700422 ret = dw_hdmi_i2c_wait(hdmi);
423 if (ret)
424 return ret;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300425 }
426
427 return 0;
428}
429
430static int dw_hdmi_i2c_xfer(struct i2c_adapter *adap,
431 struct i2c_msg *msgs, int num)
432{
433 struct dw_hdmi *hdmi = i2c_get_adapdata(adap);
434 struct dw_hdmi_i2c *i2c = hdmi->i2c;
435 u8 addr = msgs[0].addr;
436 int i, ret = 0;
437
Matthias Kaehlckebee447e2019-10-02 12:44:06 -0700438 if (addr == DDC_CI_ADDR)
439 /*
440 * The internal I2C controller does not support the multi-byte
441 * read and write operations needed for DDC/CI.
442 * TOFIX: Blacklist the DDC/CI address until we filter out
443 * unsupported I2C operations.
444 */
445 return -EOPNOTSUPP;
446
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300447 dev_dbg(hdmi->dev, "xfer: num: %d, addr: %#x\n", num, addr);
448
449 for (i = 0; i < num; i++) {
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300450 if (msgs[i].len == 0) {
451 dev_dbg(hdmi->dev,
452 "unsupported transfer %d/%d, no data\n",
453 i + 1, num);
454 return -EOPNOTSUPP;
455 }
456 }
457
458 mutex_lock(&i2c->lock);
459
460 /* Unmute DONE and ERROR interrupts */
461 hdmi_writeb(hdmi, 0x00, HDMI_IH_MUTE_I2CM_STAT0);
462
463 /* Set slave device address taken from the first I2C message */
464 hdmi_writeb(hdmi, addr, HDMI_I2CM_SLAVE);
465
466 /* Set slave device register address on transfer */
467 i2c->is_regaddr = false;
468
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800469 /* Set segment pointer for I2C extended read mode operation */
470 i2c->is_segment = false;
471
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300472 for (i = 0; i < num; i++) {
473 dev_dbg(hdmi->dev, "xfer: num: %d/%d, len: %d, flags: %#x\n",
474 i + 1, num, msgs[i].len, msgs[i].flags);
Nickey Yang94bb4dc2017-03-20 10:57:31 +0800475 if (msgs[i].addr == DDC_SEGMENT_ADDR && msgs[i].len == 1) {
476 i2c->is_segment = true;
477 hdmi_writeb(hdmi, DDC_SEGMENT_ADDR, HDMI_I2CM_SEGADDR);
478 hdmi_writeb(hdmi, *msgs[i].buf, HDMI_I2CM_SEGPTR);
479 } else {
480 if (msgs[i].flags & I2C_M_RD)
481 ret = dw_hdmi_i2c_read(hdmi, msgs[i].buf,
482 msgs[i].len);
483 else
484 ret = dw_hdmi_i2c_write(hdmi, msgs[i].buf,
485 msgs[i].len);
486 }
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +0300487 if (ret < 0)
488 break;
489 }
490
491 if (!ret)
492 ret = num;
493
494 /* Mute DONE and ERROR interrupts */
495 hdmi_writeb(hdmi, HDMI_IH_I2CM_STAT0_ERROR | HDMI_IH_I2CM_STAT0_DONE,
496 HDMI_IH_MUTE_I2CM_STAT0);
497
498 mutex_unlock(&i2c->lock);
499
500 return ret;
501}
502
503static u32 dw_hdmi_i2c_func(struct i2c_adapter *adapter)
504{
505 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
506}
507
508static const struct i2c_algorithm dw_hdmi_algorithm = {
509 .master_xfer = dw_hdmi_i2c_xfer,
510 .functionality = dw_hdmi_i2c_func,
511};
512
513static struct i2c_adapter *dw_hdmi_i2c_adapter(struct dw_hdmi *hdmi)
514{
515 struct i2c_adapter *adap;
516 struct dw_hdmi_i2c *i2c;
517 int ret;
518
519 i2c = devm_kzalloc(hdmi->dev, sizeof(*i2c), GFP_KERNEL);
520 if (!i2c)
521 return ERR_PTR(-ENOMEM);
522
523 mutex_init(&i2c->lock);
524 init_completion(&i2c->cmp);
525
526 adap = &i2c->adap;
527 adap->class = I2C_CLASS_DDC;
528 adap->owner = THIS_MODULE;
529 adap->dev.parent = hdmi->dev;
530 adap->algo = &dw_hdmi_algorithm;
531 strlcpy(adap->name, "DesignWare HDMI", sizeof(adap->name));
532 i2c_set_adapdata(adap, hdmi);
533
534 ret = i2c_add_adapter(adap);
535 if (ret) {
536 dev_warn(hdmi->dev, "cannot add %s I2C adapter\n", adap->name);
537 devm_kfree(hdmi->dev, i2c);
538 return ERR_PTR(ret);
539 }
540
541 hdmi->i2c = i2c;
542
543 dev_info(hdmi->dev, "registered %s I2C bus driver\n", adap->name);
544
545 return adap;
546}
547
Russell King351e1352015-01-31 14:50:23 +0000548static void hdmi_set_cts_n(struct dw_hdmi *hdmi, unsigned int cts,
549 unsigned int n)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200550{
Russell King622494a2015-02-02 10:55:38 +0000551 /* Must be set/cleared first */
552 hdmi_modb(hdmi, 0, HDMI_AUD_CTS3_CTS_MANUAL, HDMI_AUD_CTS3);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200553
554 /* nshift factor = 0 */
Russell King812bc612013-11-04 12:42:02 +0000555 hdmi_modb(hdmi, 0, HDMI_AUD_CTS3_N_SHIFT_MASK, HDMI_AUD_CTS3);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200556
Neil Armstrongfdbdcc82019-06-12 10:51:47 +0200557 /* Use automatic CTS generation mode when CTS is not set */
558 if (cts)
559 hdmi_writeb(hdmi, ((cts >> 16) &
560 HDMI_AUD_CTS3_AUDCTS19_16_MASK) |
561 HDMI_AUD_CTS3_CTS_MANUAL,
562 HDMI_AUD_CTS3);
563 else
564 hdmi_writeb(hdmi, 0, HDMI_AUD_CTS3);
Russell King622494a2015-02-02 10:55:38 +0000565 hdmi_writeb(hdmi, (cts >> 8) & 0xff, HDMI_AUD_CTS2);
566 hdmi_writeb(hdmi, cts & 0xff, HDMI_AUD_CTS1);
567
568 hdmi_writeb(hdmi, (n >> 16) & 0x0f, HDMI_AUD_N3);
569 hdmi_writeb(hdmi, (n >> 8) & 0xff, HDMI_AUD_N2);
570 hdmi_writeb(hdmi, n & 0xff, HDMI_AUD_N1);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200571}
572
Russell Kingb195fbd2015-07-22 11:28:16 +0100573static unsigned int hdmi_compute_n(unsigned int freq, unsigned long pixel_clk)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200574{
575 unsigned int n = (128 * freq) / 1000;
Russell Kingd0c96d12015-07-22 10:35:41 +0100576 unsigned int mult = 1;
577
578 while (freq > 48000) {
579 mult *= 2;
580 freq /= 2;
581 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200582
583 switch (freq) {
584 case 32000:
Russell King426701d2015-07-22 10:39:27 +0100585 if (pixel_clk == 25175000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100586 n = 4576;
Russell King426701d2015-07-22 10:39:27 +0100587 else if (pixel_clk == 27027000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100588 n = 4096;
Russell King426701d2015-07-22 10:39:27 +0100589 else if (pixel_clk == 74176000 || pixel_clk == 148352000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200590 n = 11648;
591 else
592 n = 4096;
Russell Kingd0c96d12015-07-22 10:35:41 +0100593 n *= mult;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200594 break;
595
596 case 44100:
Russell King426701d2015-07-22 10:39:27 +0100597 if (pixel_clk == 25175000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200598 n = 7007;
Russell King426701d2015-07-22 10:39:27 +0100599 else if (pixel_clk == 74176000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200600 n = 17836;
Russell King426701d2015-07-22 10:39:27 +0100601 else if (pixel_clk == 148352000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100602 n = 8918;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200603 else
604 n = 6272;
Russell Kingd0c96d12015-07-22 10:35:41 +0100605 n *= mult;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200606 break;
607
608 case 48000:
Russell King426701d2015-07-22 10:39:27 +0100609 if (pixel_clk == 25175000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100610 n = 6864;
Russell King426701d2015-07-22 10:39:27 +0100611 else if (pixel_clk == 27027000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100612 n = 6144;
Russell King426701d2015-07-22 10:39:27 +0100613 else if (pixel_clk == 74176000)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200614 n = 11648;
Russell King426701d2015-07-22 10:39:27 +0100615 else if (pixel_clk == 148352000)
Russell Kingb195fbd2015-07-22 11:28:16 +0100616 n = 5824;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200617 else
618 n = 6144;
Russell Kingd0c96d12015-07-22 10:35:41 +0100619 n *= mult;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200620 break;
621
622 default:
623 break;
624 }
625
626 return n;
627}
628
Yakir Yang3250cdf2019-09-11 16:26:46 +0800629/*
630 * When transmitting IEC60958 linear PCM audio, these registers allow to
631 * configure the channel status information of all the channel status
632 * bits in the IEC60958 frame. For the moment this configuration is only
633 * used when the I2S audio interface, General Purpose Audio (GPA),
634 * or AHB audio DMA (AHBAUDDMA) interface is active
635 * (for S/PDIF interface this information comes from the stream).
636 */
637void dw_hdmi_set_channel_status(struct dw_hdmi *hdmi,
638 u8 *channel_status)
639{
640 /*
641 * Set channel status register for frequency and word length.
642 * Use default values for other registers.
643 */
644 hdmi_writeb(hdmi, channel_status[3], HDMI_FC_AUDSCHNLS7);
645 hdmi_writeb(hdmi, channel_status[4], HDMI_FC_AUDSCHNLS8);
646}
647EXPORT_SYMBOL_GPL(dw_hdmi_set_channel_status);
648
Andy Yanb21f4b62014-12-05 14:26:31 +0800649static void hdmi_set_clk_regenerator(struct dw_hdmi *hdmi,
Russell Kingb195fbd2015-07-22 11:28:16 +0100650 unsigned long pixel_clk, unsigned int sample_rate)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200651{
Russell Kingdfbdaf52015-07-22 16:54:37 +0100652 unsigned long ftdms = pixel_clk;
Russell Kingf879b382015-03-27 12:53:29 +0000653 unsigned int n, cts;
Neil Armstrongfdbdcc82019-06-12 10:51:47 +0200654 u8 config3;
Russell Kingdfbdaf52015-07-22 16:54:37 +0100655 u64 tmp;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200656
Russell Kingb195fbd2015-07-22 11:28:16 +0100657 n = hdmi_compute_n(sample_rate, pixel_clk);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200658
Neil Armstrongfdbdcc82019-06-12 10:51:47 +0200659 config3 = hdmi_readb(hdmi, HDMI_CONFIG3_ID);
Russell Kingdfbdaf52015-07-22 16:54:37 +0100660
Neil Armstrongfdbdcc82019-06-12 10:51:47 +0200661 /* Only compute CTS when using internal AHB audio */
662 if (config3 & HDMI_CONFIG3_AHBAUDDMA) {
663 /*
664 * Compute the CTS value from the N value. Note that CTS and N
665 * can be up to 20 bits in total, so we need 64-bit math. Also
666 * note that our TDMS clock is not fully accurate; it is
667 * accurate to kHz. This can introduce an unnecessary remainder
668 * in the calculation below, so we don't try to warn about that.
669 */
670 tmp = (u64)ftdms * n;
671 do_div(tmp, 128 * sample_rate);
672 cts = tmp;
673
674 dev_dbg(hdmi->dev, "%s: fs=%uHz ftdms=%lu.%03luMHz N=%d cts=%d\n",
675 __func__, sample_rate,
676 ftdms / 1000000, (ftdms / 1000) % 1000,
677 n, cts);
678 } else {
679 cts = 0;
680 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200681
Russell Kingb90120a2015-03-27 12:59:58 +0000682 spin_lock_irq(&hdmi->audio_lock);
683 hdmi->audio_n = n;
684 hdmi->audio_cts = cts;
685 hdmi_set_cts_n(hdmi, cts, hdmi->audio_enable ? n : 0);
686 spin_unlock_irq(&hdmi->audio_lock);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200687}
688
Andy Yanb21f4b62014-12-05 14:26:31 +0800689static void hdmi_init_clk_regenerator(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200690{
Russell King6bcf4952015-02-02 11:01:08 +0000691 mutex_lock(&hdmi->audio_mutex);
Russell Kingb195fbd2015-07-22 11:28:16 +0100692 hdmi_set_clk_regenerator(hdmi, 74250000, hdmi->sample_rate);
Russell King6bcf4952015-02-02 11:01:08 +0000693 mutex_unlock(&hdmi->audio_mutex);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200694}
695
Andy Yanb21f4b62014-12-05 14:26:31 +0800696static void hdmi_clk_regenerator_update_pixel_clock(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200697{
Russell King6bcf4952015-02-02 11:01:08 +0000698 mutex_lock(&hdmi->audio_mutex);
Neil Armstrongba9877e2019-02-01 12:07:49 +0000699 hdmi_set_clk_regenerator(hdmi, hdmi->hdmi_data.video_mode.mtmdsclock,
Russell Kingb195fbd2015-07-22 11:28:16 +0100700 hdmi->sample_rate);
Russell King6bcf4952015-02-02 11:01:08 +0000701 mutex_unlock(&hdmi->audio_mutex);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200702}
703
Russell Kingb5814ff2015-03-27 12:50:58 +0000704void dw_hdmi_set_sample_rate(struct dw_hdmi *hdmi, unsigned int rate)
705{
706 mutex_lock(&hdmi->audio_mutex);
707 hdmi->sample_rate = rate;
Neil Armstrongba9877e2019-02-01 12:07:49 +0000708 hdmi_set_clk_regenerator(hdmi, hdmi->hdmi_data.video_mode.mtmdsclock,
Russell Kingb195fbd2015-07-22 11:28:16 +0100709 hdmi->sample_rate);
Russell Kingb5814ff2015-03-27 12:50:58 +0000710 mutex_unlock(&hdmi->audio_mutex);
711}
712EXPORT_SYMBOL_GPL(dw_hdmi_set_sample_rate);
713
Jerome Brunet2a2a3d22019-08-12 14:07:20 +0200714void dw_hdmi_set_channel_count(struct dw_hdmi *hdmi, unsigned int cnt)
715{
716 u8 layout;
717
718 mutex_lock(&hdmi->audio_mutex);
719
720 /*
721 * For >2 channel PCM audio, we need to select layout 1
722 * and set an appropriate channel map.
723 */
724 if (cnt > 2)
725 layout = HDMI_FC_AUDSCONF_AUD_PACKET_LAYOUT_LAYOUT1;
726 else
727 layout = HDMI_FC_AUDSCONF_AUD_PACKET_LAYOUT_LAYOUT0;
728
729 hdmi_modb(hdmi, layout, HDMI_FC_AUDSCONF_AUD_PACKET_LAYOUT_MASK,
730 HDMI_FC_AUDSCONF);
731
Jerome Brunetda5f5bc2019-08-12 14:07:21 +0200732 /* Set the audio infoframes channel count */
733 hdmi_modb(hdmi, (cnt - 1) << HDMI_FC_AUDICONF0_CC_OFFSET,
734 HDMI_FC_AUDICONF0_CC_MASK, HDMI_FC_AUDICONF0);
735
Jerome Brunet2a2a3d22019-08-12 14:07:20 +0200736 mutex_unlock(&hdmi->audio_mutex);
737}
738EXPORT_SYMBOL_GPL(dw_hdmi_set_channel_count);
739
740void dw_hdmi_set_channel_allocation(struct dw_hdmi *hdmi, unsigned int ca)
741{
742 mutex_lock(&hdmi->audio_mutex);
743
744 hdmi_writeb(hdmi, ca, HDMI_FC_AUDICONF2);
745
746 mutex_unlock(&hdmi->audio_mutex);
747}
748EXPORT_SYMBOL_GPL(dw_hdmi_set_channel_allocation);
749
Romain Perier57fbc052017-04-20 14:34:34 +0530750static void hdmi_enable_audio_clk(struct dw_hdmi *hdmi, bool enable)
751{
Russell King7cc4ab22017-07-31 15:29:46 +0100752 if (enable)
753 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_AUDCLK_DISABLE;
754 else
755 hdmi->mc_clkdis |= HDMI_MC_CLKDIS_AUDCLK_DISABLE;
756 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
Romain Perier57fbc052017-04-20 14:34:34 +0530757}
758
Romain Periera7d555d2017-04-14 10:31:12 +0200759static void dw_hdmi_ahb_audio_enable(struct dw_hdmi *hdmi)
760{
761 hdmi_set_cts_n(hdmi, hdmi->audio_cts, hdmi->audio_n);
762}
763
764static void dw_hdmi_ahb_audio_disable(struct dw_hdmi *hdmi)
765{
766 hdmi_set_cts_n(hdmi, hdmi->audio_cts, 0);
767}
768
769static void dw_hdmi_i2s_audio_enable(struct dw_hdmi *hdmi)
770{
771 hdmi_set_cts_n(hdmi, hdmi->audio_cts, hdmi->audio_n);
Romain Perier57fbc052017-04-20 14:34:34 +0530772 hdmi_enable_audio_clk(hdmi, true);
773}
774
775static void dw_hdmi_i2s_audio_disable(struct dw_hdmi *hdmi)
776{
777 hdmi_enable_audio_clk(hdmi, false);
Romain Periera7d555d2017-04-14 10:31:12 +0200778}
779
Russell Kingb90120a2015-03-27 12:59:58 +0000780void dw_hdmi_audio_enable(struct dw_hdmi *hdmi)
781{
782 unsigned long flags;
783
784 spin_lock_irqsave(&hdmi->audio_lock, flags);
785 hdmi->audio_enable = true;
Romain Periera7d555d2017-04-14 10:31:12 +0200786 if (hdmi->enable_audio)
787 hdmi->enable_audio(hdmi);
Russell Kingb90120a2015-03-27 12:59:58 +0000788 spin_unlock_irqrestore(&hdmi->audio_lock, flags);
789}
790EXPORT_SYMBOL_GPL(dw_hdmi_audio_enable);
791
792void dw_hdmi_audio_disable(struct dw_hdmi *hdmi)
793{
794 unsigned long flags;
795
796 spin_lock_irqsave(&hdmi->audio_lock, flags);
797 hdmi->audio_enable = false;
Romain Periera7d555d2017-04-14 10:31:12 +0200798 if (hdmi->disable_audio)
799 hdmi->disable_audio(hdmi);
Russell Kingb90120a2015-03-27 12:59:58 +0000800 spin_unlock_irqrestore(&hdmi->audio_lock, flags);
801}
802EXPORT_SYMBOL_GPL(dw_hdmi_audio_disable);
803
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200804static bool hdmi_bus_fmt_is_rgb(unsigned int bus_format)
805{
806 switch (bus_format) {
807 case MEDIA_BUS_FMT_RGB888_1X24:
808 case MEDIA_BUS_FMT_RGB101010_1X30:
809 case MEDIA_BUS_FMT_RGB121212_1X36:
810 case MEDIA_BUS_FMT_RGB161616_1X48:
811 return true;
812
813 default:
814 return false;
815 }
816}
817
818static bool hdmi_bus_fmt_is_yuv444(unsigned int bus_format)
819{
820 switch (bus_format) {
821 case MEDIA_BUS_FMT_YUV8_1X24:
822 case MEDIA_BUS_FMT_YUV10_1X30:
823 case MEDIA_BUS_FMT_YUV12_1X36:
824 case MEDIA_BUS_FMT_YUV16_1X48:
825 return true;
826
827 default:
828 return false;
829 }
830}
831
832static bool hdmi_bus_fmt_is_yuv422(unsigned int bus_format)
833{
834 switch (bus_format) {
835 case MEDIA_BUS_FMT_UYVY8_1X16:
836 case MEDIA_BUS_FMT_UYVY10_1X20:
837 case MEDIA_BUS_FMT_UYVY12_1X24:
838 return true;
839
840 default:
841 return false;
842 }
843}
844
Neil Armstrongba9877e2019-02-01 12:07:49 +0000845static bool hdmi_bus_fmt_is_yuv420(unsigned int bus_format)
846{
847 switch (bus_format) {
848 case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
849 case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
850 case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
851 case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
852 return true;
853
854 default:
855 return false;
856 }
857}
858
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200859static int hdmi_bus_fmt_color_depth(unsigned int bus_format)
860{
861 switch (bus_format) {
862 case MEDIA_BUS_FMT_RGB888_1X24:
863 case MEDIA_BUS_FMT_YUV8_1X24:
864 case MEDIA_BUS_FMT_UYVY8_1X16:
865 case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
866 return 8;
867
868 case MEDIA_BUS_FMT_RGB101010_1X30:
869 case MEDIA_BUS_FMT_YUV10_1X30:
870 case MEDIA_BUS_FMT_UYVY10_1X20:
871 case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
872 return 10;
873
874 case MEDIA_BUS_FMT_RGB121212_1X36:
875 case MEDIA_BUS_FMT_YUV12_1X36:
876 case MEDIA_BUS_FMT_UYVY12_1X24:
877 case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
878 return 12;
879
880 case MEDIA_BUS_FMT_RGB161616_1X48:
881 case MEDIA_BUS_FMT_YUV16_1X48:
882 case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
883 return 16;
884
885 default:
886 return 0;
887 }
888}
889
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200890/*
891 * this submodule is responsible for the video data synchronization.
892 * for example, for RGB 4:4:4 input, the data map is defined as
893 * pin{47~40} <==> R[7:0]
894 * pin{31~24} <==> G[7:0]
895 * pin{15~8} <==> B[7:0]
896 */
Andy Yanb21f4b62014-12-05 14:26:31 +0800897static void hdmi_video_sample(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200898{
899 int color_format = 0;
900 u8 val;
901
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200902 switch (hdmi->hdmi_data.enc_in_bus_format) {
903 case MEDIA_BUS_FMT_RGB888_1X24:
904 color_format = 0x01;
905 break;
906 case MEDIA_BUS_FMT_RGB101010_1X30:
907 color_format = 0x03;
908 break;
909 case MEDIA_BUS_FMT_RGB121212_1X36:
910 color_format = 0x05;
911 break;
912 case MEDIA_BUS_FMT_RGB161616_1X48:
913 color_format = 0x07;
914 break;
915
916 case MEDIA_BUS_FMT_YUV8_1X24:
917 case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
918 color_format = 0x09;
919 break;
920 case MEDIA_BUS_FMT_YUV10_1X30:
921 case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
922 color_format = 0x0B;
923 break;
924 case MEDIA_BUS_FMT_YUV12_1X36:
925 case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
926 color_format = 0x0D;
927 break;
928 case MEDIA_BUS_FMT_YUV16_1X48:
929 case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
930 color_format = 0x0F;
931 break;
932
933 case MEDIA_BUS_FMT_UYVY8_1X16:
934 color_format = 0x16;
935 break;
936 case MEDIA_BUS_FMT_UYVY10_1X20:
937 color_format = 0x14;
938 break;
939 case MEDIA_BUS_FMT_UYVY12_1X24:
940 color_format = 0x12;
941 break;
942
943 default:
944 return;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200945 }
946
947 val = HDMI_TX_INVID0_INTERNAL_DE_GENERATOR_DISABLE |
948 ((color_format << HDMI_TX_INVID0_VIDEO_MAPPING_OFFSET) &
949 HDMI_TX_INVID0_VIDEO_MAPPING_MASK);
950 hdmi_writeb(hdmi, val, HDMI_TX_INVID0);
951
952 /* Enable TX stuffing: When DE is inactive, fix the output data to 0 */
953 val = HDMI_TX_INSTUFFING_BDBDATA_STUFFING_ENABLE |
954 HDMI_TX_INSTUFFING_RCRDATA_STUFFING_ENABLE |
955 HDMI_TX_INSTUFFING_GYDATA_STUFFING_ENABLE;
956 hdmi_writeb(hdmi, val, HDMI_TX_INSTUFFING);
957 hdmi_writeb(hdmi, 0x0, HDMI_TX_GYDATA0);
958 hdmi_writeb(hdmi, 0x0, HDMI_TX_GYDATA1);
959 hdmi_writeb(hdmi, 0x0, HDMI_TX_RCRDATA0);
960 hdmi_writeb(hdmi, 0x0, HDMI_TX_RCRDATA1);
961 hdmi_writeb(hdmi, 0x0, HDMI_TX_BCBDATA0);
962 hdmi_writeb(hdmi, 0x0, HDMI_TX_BCBDATA1);
963}
964
Andy Yanb21f4b62014-12-05 14:26:31 +0800965static int is_color_space_conversion(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200966{
Jernej Skrabec0e800302020-03-05 00:25:12 +0100967 struct hdmi_data_info *hdmi_data = &hdmi->hdmi_data;
968 bool is_input_rgb, is_output_rgb;
969
970 is_input_rgb = hdmi_bus_fmt_is_rgb(hdmi_data->enc_in_bus_format);
971 is_output_rgb = hdmi_bus_fmt_is_rgb(hdmi_data->enc_out_bus_format);
972
973 return (is_input_rgb != is_output_rgb) ||
974 (is_input_rgb && is_output_rgb && hdmi_data->rgb_limited_range);
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200975}
976
Andy Yanb21f4b62014-12-05 14:26:31 +0800977static int is_color_space_decimation(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200978{
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200979 if (!hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200980 return 0;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200981
982 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_in_bus_format) ||
983 hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_in_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200984 return 1;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200985
Fabio Estevamba92b222014-02-06 10:12:03 -0200986 return 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200987}
988
Andy Yanb21f4b62014-12-05 14:26:31 +0800989static int is_color_space_interpolation(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200990{
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200991 if (!hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_in_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200992 return 0;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200993
994 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format) ||
995 hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format))
Fabio Estevamba92b222014-02-06 10:12:03 -0200996 return 1;
Neil Armstrongdef23aa2017-04-04 14:31:57 +0200997
Fabio Estevamba92b222014-02-06 10:12:03 -0200998 return 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -0200999}
1000
Jernej Skrabec0e800302020-03-05 00:25:12 +01001001static bool is_csc_needed(struct dw_hdmi *hdmi)
1002{
1003 return is_color_space_conversion(hdmi) ||
1004 is_color_space_decimation(hdmi) ||
1005 is_color_space_interpolation(hdmi);
1006}
1007
Andy Yanb21f4b62014-12-05 14:26:31 +08001008static void dw_hdmi_update_csc_coeffs(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001009{
1010 const u16 (*csc_coeff)[3][4] = &csc_coeff_default;
Jernej Skrabec86af3792020-03-05 00:25:11 +01001011 bool is_input_rgb, is_output_rgb;
Russell Kingc082f9d2013-11-04 12:10:40 +00001012 unsigned i;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001013 u32 csc_scale = 1;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001014
Jernej Skrabec86af3792020-03-05 00:25:11 +01001015 is_input_rgb = hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_in_bus_format);
1016 is_output_rgb = hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format);
1017
1018 if (!is_input_rgb && is_output_rgb) {
1019 if (hdmi->hdmi_data.enc_out_encoding == V4L2_YCBCR_ENC_601)
1020 csc_coeff = &csc_coeff_rgb_out_eitu601;
1021 else
1022 csc_coeff = &csc_coeff_rgb_out_eitu709;
1023 } else if (is_input_rgb && !is_output_rgb) {
1024 if (hdmi->hdmi_data.enc_out_encoding == V4L2_YCBCR_ENC_601)
1025 csc_coeff = &csc_coeff_rgb_in_eitu601;
1026 else
1027 csc_coeff = &csc_coeff_rgb_in_eitu709;
1028 csc_scale = 0;
1029 } else if (is_input_rgb && is_output_rgb &&
1030 hdmi->hdmi_data.rgb_limited_range) {
1031 csc_coeff = &csc_coeff_rgb_full_to_rgb_limited;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001032 }
1033
Russell Kingc082f9d2013-11-04 12:10:40 +00001034 /* The CSC registers are sequential, alternating MSB then LSB */
1035 for (i = 0; i < ARRAY_SIZE(csc_coeff_default[0]); i++) {
1036 u16 coeff_a = (*csc_coeff)[0][i];
1037 u16 coeff_b = (*csc_coeff)[1][i];
1038 u16 coeff_c = (*csc_coeff)[2][i];
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001039
Andy Yanb5878332014-12-05 14:23:52 +08001040 hdmi_writeb(hdmi, coeff_a & 0xff, HDMI_CSC_COEF_A1_LSB + i * 2);
Russell Kingc082f9d2013-11-04 12:10:40 +00001041 hdmi_writeb(hdmi, coeff_a >> 8, HDMI_CSC_COEF_A1_MSB + i * 2);
1042 hdmi_writeb(hdmi, coeff_b & 0xff, HDMI_CSC_COEF_B1_LSB + i * 2);
1043 hdmi_writeb(hdmi, coeff_b >> 8, HDMI_CSC_COEF_B1_MSB + i * 2);
Andy Yanb5878332014-12-05 14:23:52 +08001044 hdmi_writeb(hdmi, coeff_c & 0xff, HDMI_CSC_COEF_C1_LSB + i * 2);
Russell Kingc082f9d2013-11-04 12:10:40 +00001045 hdmi_writeb(hdmi, coeff_c >> 8, HDMI_CSC_COEF_C1_MSB + i * 2);
1046 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001047
Russell King812bc612013-11-04 12:42:02 +00001048 hdmi_modb(hdmi, csc_scale, HDMI_CSC_SCALE_CSCSCALE_MASK,
1049 HDMI_CSC_SCALE);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001050}
1051
Andy Yanb21f4b62014-12-05 14:26:31 +08001052static void hdmi_video_csc(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001053{
1054 int color_depth = 0;
1055 int interpolation = HDMI_CSC_CFG_INTMODE_DISABLE;
1056 int decimation = 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001057
1058 /* YCC422 interpolation to 444 mode */
1059 if (is_color_space_interpolation(hdmi))
1060 interpolation = HDMI_CSC_CFG_INTMODE_CHROMA_INT_FORMULA1;
1061 else if (is_color_space_decimation(hdmi))
1062 decimation = HDMI_CSC_CFG_DECMODE_CHROMA_INT_FORMULA3;
1063
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001064 switch (hdmi_bus_fmt_color_depth(hdmi->hdmi_data.enc_out_bus_format)) {
1065 case 8:
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001066 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_24BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001067 break;
1068 case 10:
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001069 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_30BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001070 break;
1071 case 12:
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001072 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_36BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001073 break;
1074 case 16:
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001075 color_depth = HDMI_CSC_SCALE_CSC_COLORDE_PTH_48BPP;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001076 break;
1077
1078 default:
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001079 return;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001080 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001081
1082 /* Configure the CSC registers */
1083 hdmi_writeb(hdmi, interpolation | decimation, HDMI_CSC_CFG);
Russell King812bc612013-11-04 12:42:02 +00001084 hdmi_modb(hdmi, color_depth, HDMI_CSC_SCALE_CSC_COLORDE_PTH_MASK,
1085 HDMI_CSC_SCALE);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001086
Andy Yanb21f4b62014-12-05 14:26:31 +08001087 dw_hdmi_update_csc_coeffs(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001088}
1089
1090/*
1091 * HDMI video packetizer is used to packetize the data.
1092 * for example, if input is YCC422 mode or repeater is used,
1093 * data should be repacked this module can be bypassed.
1094 */
Andy Yanb21f4b62014-12-05 14:26:31 +08001095static void hdmi_video_packetize(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001096{
1097 unsigned int color_depth = 0;
1098 unsigned int remap_size = HDMI_VP_REMAP_YCC422_16bit;
1099 unsigned int output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_PP;
1100 struct hdmi_data_info *hdmi_data = &hdmi->hdmi_data;
Russell Kingbebdf662013-11-04 12:55:30 +00001101 u8 val, vp_conf;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001102
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001103 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format) ||
Neil Armstrongba9877e2019-02-01 12:07:49 +00001104 hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format) ||
1105 hdmi_bus_fmt_is_yuv420(hdmi->hdmi_data.enc_out_bus_format)) {
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001106 switch (hdmi_bus_fmt_color_depth(
1107 hdmi->hdmi_data.enc_out_bus_format)) {
1108 case 8:
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001109 color_depth = 4;
1110 output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001111 break;
1112 case 10:
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001113 color_depth = 5;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001114 break;
1115 case 12:
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001116 color_depth = 6;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001117 break;
1118 case 16:
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001119 color_depth = 7;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001120 break;
1121 default:
1122 output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS;
1123 }
1124 } else if (hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format)) {
1125 switch (hdmi_bus_fmt_color_depth(
1126 hdmi->hdmi_data.enc_out_bus_format)) {
1127 case 0:
1128 case 8:
1129 remap_size = HDMI_VP_REMAP_YCC422_16bit;
1130 break;
1131 case 10:
1132 remap_size = HDMI_VP_REMAP_YCC422_20bit;
1133 break;
1134 case 12:
1135 remap_size = HDMI_VP_REMAP_YCC422_24bit;
1136 break;
1137
1138 default:
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001139 return;
Andy Yanb5878332014-12-05 14:23:52 +08001140 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001141 output_select = HDMI_VP_CONF_OUTPUT_SELECTOR_YCC422;
Andy Yanb5878332014-12-05 14:23:52 +08001142 } else {
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001143 return;
Andy Yanb5878332014-12-05 14:23:52 +08001144 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001145
1146 /* set the packetizer registers */
1147 val = ((color_depth << HDMI_VP_PR_CD_COLOR_DEPTH_OFFSET) &
1148 HDMI_VP_PR_CD_COLOR_DEPTH_MASK) |
1149 ((hdmi_data->pix_repet_factor <<
1150 HDMI_VP_PR_CD_DESIRED_PR_FACTOR_OFFSET) &
1151 HDMI_VP_PR_CD_DESIRED_PR_FACTOR_MASK);
1152 hdmi_writeb(hdmi, val, HDMI_VP_PR_CD);
1153
Russell King812bc612013-11-04 12:42:02 +00001154 hdmi_modb(hdmi, HDMI_VP_STUFF_PR_STUFFING_STUFFING_MODE,
1155 HDMI_VP_STUFF_PR_STUFFING_MASK, HDMI_VP_STUFF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001156
1157 /* Data from pixel repeater block */
1158 if (hdmi_data->pix_repet_factor > 1) {
Russell Kingbebdf662013-11-04 12:55:30 +00001159 vp_conf = HDMI_VP_CONF_PR_EN_ENABLE |
1160 HDMI_VP_CONF_BYPASS_SELECT_PIX_REPEATER;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001161 } else { /* data from packetizer block */
Russell Kingbebdf662013-11-04 12:55:30 +00001162 vp_conf = HDMI_VP_CONF_PR_EN_DISABLE |
1163 HDMI_VP_CONF_BYPASS_SELECT_VID_PACKETIZER;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001164 }
1165
Russell Kingbebdf662013-11-04 12:55:30 +00001166 hdmi_modb(hdmi, vp_conf,
1167 HDMI_VP_CONF_PR_EN_MASK |
1168 HDMI_VP_CONF_BYPASS_SELECT_MASK, HDMI_VP_CONF);
1169
Russell King812bc612013-11-04 12:42:02 +00001170 hdmi_modb(hdmi, 1 << HDMI_VP_STUFF_IDEFAULT_PHASE_OFFSET,
1171 HDMI_VP_STUFF_IDEFAULT_PHASE_MASK, HDMI_VP_STUFF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001172
1173 hdmi_writeb(hdmi, remap_size, HDMI_VP_REMAP);
1174
1175 if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_PP) {
Russell Kingbebdf662013-11-04 12:55:30 +00001176 vp_conf = HDMI_VP_CONF_BYPASS_EN_DISABLE |
1177 HDMI_VP_CONF_PP_EN_ENABLE |
1178 HDMI_VP_CONF_YCC422_EN_DISABLE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001179 } else if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_YCC422) {
Russell Kingbebdf662013-11-04 12:55:30 +00001180 vp_conf = HDMI_VP_CONF_BYPASS_EN_DISABLE |
1181 HDMI_VP_CONF_PP_EN_DISABLE |
1182 HDMI_VP_CONF_YCC422_EN_ENABLE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001183 } else if (output_select == HDMI_VP_CONF_OUTPUT_SELECTOR_BYPASS) {
Russell Kingbebdf662013-11-04 12:55:30 +00001184 vp_conf = HDMI_VP_CONF_BYPASS_EN_ENABLE |
1185 HDMI_VP_CONF_PP_EN_DISABLE |
1186 HDMI_VP_CONF_YCC422_EN_DISABLE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001187 } else {
1188 return;
1189 }
1190
Russell Kingbebdf662013-11-04 12:55:30 +00001191 hdmi_modb(hdmi, vp_conf,
1192 HDMI_VP_CONF_BYPASS_EN_MASK | HDMI_VP_CONF_PP_EN_ENMASK |
1193 HDMI_VP_CONF_YCC422_EN_MASK, HDMI_VP_CONF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001194
Russell King812bc612013-11-04 12:42:02 +00001195 hdmi_modb(hdmi, HDMI_VP_STUFF_PP_STUFFING_STUFFING_MODE |
1196 HDMI_VP_STUFF_YCC422_STUFFING_STUFFING_MODE,
1197 HDMI_VP_STUFF_PP_STUFFING_MASK |
1198 HDMI_VP_STUFF_YCC422_STUFFING_MASK, HDMI_VP_STUFF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001199
Russell King812bc612013-11-04 12:42:02 +00001200 hdmi_modb(hdmi, output_select, HDMI_VP_CONF_OUTPUT_SELECTOR_MASK,
1201 HDMI_VP_CONF);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001202}
1203
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001204/* -----------------------------------------------------------------------------
1205 * Synopsys PHY Handling
1206 */
1207
Andy Yanb21f4b62014-12-05 14:26:31 +08001208static inline void hdmi_phy_test_clear(struct dw_hdmi *hdmi,
Andy Yanb5878332014-12-05 14:23:52 +08001209 unsigned char bit)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001210{
Russell King812bc612013-11-04 12:42:02 +00001211 hdmi_modb(hdmi, bit << HDMI_PHY_TST0_TSTCLR_OFFSET,
1212 HDMI_PHY_TST0_TSTCLR_MASK, HDMI_PHY_TST0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001213}
1214
Andy Yanb21f4b62014-12-05 14:26:31 +08001215static bool hdmi_phy_wait_i2c_done(struct dw_hdmi *hdmi, int msec)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001216{
Andy Yana4d3b8b2014-12-05 14:31:09 +08001217 u32 val;
1218
1219 while ((val = hdmi_readb(hdmi, HDMI_IH_I2CMPHY_STAT0) & 0x3) == 0) {
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001220 if (msec-- == 0)
1221 return false;
Emil Renner Berthing0e6bcf32014-03-30 00:21:21 +01001222 udelay(1000);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001223 }
Andy Yana4d3b8b2014-12-05 14:31:09 +08001224 hdmi_writeb(hdmi, val, HDMI_IH_I2CMPHY_STAT0);
1225
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001226 return true;
1227}
1228
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001229void dw_hdmi_phy_i2c_write(struct dw_hdmi *hdmi, unsigned short data,
1230 unsigned char addr)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001231{
1232 hdmi_writeb(hdmi, 0xFF, HDMI_IH_I2CMPHY_STAT0);
1233 hdmi_writeb(hdmi, addr, HDMI_PHY_I2CM_ADDRESS_ADDR);
1234 hdmi_writeb(hdmi, (unsigned char)(data >> 8),
Andy Yanb5878332014-12-05 14:23:52 +08001235 HDMI_PHY_I2CM_DATAO_1_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001236 hdmi_writeb(hdmi, (unsigned char)(data >> 0),
Andy Yanb5878332014-12-05 14:23:52 +08001237 HDMI_PHY_I2CM_DATAO_0_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001238 hdmi_writeb(hdmi, HDMI_PHY_I2CM_OPERATION_ADDR_WRITE,
Andy Yanb5878332014-12-05 14:23:52 +08001239 HDMI_PHY_I2CM_OPERATION_ADDR);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001240 hdmi_phy_wait_i2c_done(hdmi, 1000);
1241}
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001242EXPORT_SYMBOL_GPL(dw_hdmi_phy_i2c_write);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001243
Neil Armstrong836f90f2019-03-15 10:54:14 +01001244/* Filter out invalid setups to avoid configuring SCDC and scrambling */
Laurent Pinchart7be390d2020-05-26 04:14:56 +03001245static bool dw_hdmi_support_scdc(struct dw_hdmi *hdmi,
1246 const struct drm_display_info *display)
Neil Armstrong836f90f2019-03-15 10:54:14 +01001247{
Neil Armstrong836f90f2019-03-15 10:54:14 +01001248 /* Completely disable SCDC support for older controllers */
1249 if (hdmi->version < 0x200a)
1250 return false;
1251
Jonas Karlmanc4cba442019-04-21 08:25:50 +00001252 /* Disable if no DDC bus */
1253 if (!hdmi->ddc)
1254 return false;
1255
Neil Armstrong836f90f2019-03-15 10:54:14 +01001256 /* Disable if SCDC is not supported, or if an HF-VSDB block is absent */
1257 if (!display->hdmi.scdc.supported ||
1258 !display->hdmi.scdc.scrambling.supported)
1259 return false;
1260
1261 /*
1262 * Disable if display only support low TMDS rates and scrambling
1263 * for low rates is not supported either
1264 */
1265 if (!display->hdmi.scdc.scrambling.low_rates &&
1266 display->max_tmds_clock <= 340000)
1267 return false;
1268
1269 return true;
1270}
1271
Neil Armstrong264fce62019-02-01 12:07:46 +00001272/*
1273 * HDMI2.0 Specifies the following procedure for High TMDS Bit Rates:
1274 * - The Source shall suspend transmission of the TMDS clock and data
1275 * - The Source shall write to the TMDS_Bit_Clock_Ratio bit to change it
1276 * from a 0 to a 1 or from a 1 to a 0
1277 * - The Source shall allow a minimum of 1 ms and a maximum of 100 ms from
1278 * the time the TMDS_Bit_Clock_Ratio bit is written until resuming
1279 * transmission of TMDS clock and data
1280 *
1281 * To respect the 100ms maximum delay, the dw_hdmi_set_high_tmds_clock_ratio()
1282 * helper should called right before enabling the TMDS Clock and Data in
1283 * the PHY configuration callback.
1284 */
Laurent Pinchart7be390d2020-05-26 04:14:56 +03001285void dw_hdmi_set_high_tmds_clock_ratio(struct dw_hdmi *hdmi,
1286 const struct drm_display_info *display)
Neil Armstrong264fce62019-02-01 12:07:46 +00001287{
Neil Armstrongba9877e2019-02-01 12:07:49 +00001288 unsigned long mtmdsclock = hdmi->hdmi_data.video_mode.mtmdsclock;
Neil Armstrong264fce62019-02-01 12:07:46 +00001289
1290 /* Control for TMDS Bit Period/TMDS Clock-Period Ratio */
Laurent Pinchart7be390d2020-05-26 04:14:56 +03001291 if (dw_hdmi_support_scdc(hdmi, display)) {
Neil Armstrong264fce62019-02-01 12:07:46 +00001292 if (mtmdsclock > HDMI14_MAX_TMDSCLK)
1293 drm_scdc_set_high_tmds_clock_ratio(hdmi->ddc, 1);
1294 else
1295 drm_scdc_set_high_tmds_clock_ratio(hdmi->ddc, 0);
1296 }
1297}
1298EXPORT_SYMBOL_GPL(dw_hdmi_set_high_tmds_clock_ratio);
1299
Russell King2fada102015-07-28 12:21:34 +01001300static void dw_hdmi_phy_enable_powerdown(struct dw_hdmi *hdmi, bool enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001301{
Russell King2fada102015-07-28 12:21:34 +01001302 hdmi_mask_writeb(hdmi, !enable, HDMI_PHY_CONF0,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001303 HDMI_PHY_CONF0_PDZ_OFFSET,
1304 HDMI_PHY_CONF0_PDZ_MASK);
1305}
1306
Andy Yanb21f4b62014-12-05 14:26:31 +08001307static void dw_hdmi_phy_enable_tmds(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001308{
1309 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1310 HDMI_PHY_CONF0_ENTMDS_OFFSET,
1311 HDMI_PHY_CONF0_ENTMDS_MASK);
1312}
1313
Laurent Pinchartf4104e82017-01-17 10:29:02 +02001314static void dw_hdmi_phy_enable_svsret(struct dw_hdmi *hdmi, u8 enable)
Andy Yand346c142014-12-05 14:31:53 +08001315{
1316 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
Laurent Pinchartf4104e82017-01-17 10:29:02 +02001317 HDMI_PHY_CONF0_SVSRET_OFFSET,
1318 HDMI_PHY_CONF0_SVSRET_MASK);
Andy Yand346c142014-12-05 14:31:53 +08001319}
1320
Jernej Skrabec57659162018-02-14 21:08:58 +01001321void dw_hdmi_phy_gen2_pddq(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001322{
1323 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1324 HDMI_PHY_CONF0_GEN2_PDDQ_OFFSET,
1325 HDMI_PHY_CONF0_GEN2_PDDQ_MASK);
1326}
Jernej Skrabec57659162018-02-14 21:08:58 +01001327EXPORT_SYMBOL_GPL(dw_hdmi_phy_gen2_pddq);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001328
Jernej Skrabec57659162018-02-14 21:08:58 +01001329void dw_hdmi_phy_gen2_txpwron(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001330{
1331 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1332 HDMI_PHY_CONF0_GEN2_TXPWRON_OFFSET,
1333 HDMI_PHY_CONF0_GEN2_TXPWRON_MASK);
1334}
Jernej Skrabec57659162018-02-14 21:08:58 +01001335EXPORT_SYMBOL_GPL(dw_hdmi_phy_gen2_txpwron);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001336
Andy Yanb21f4b62014-12-05 14:26:31 +08001337static void dw_hdmi_phy_sel_data_en_pol(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001338{
1339 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1340 HDMI_PHY_CONF0_SELDATAENPOL_OFFSET,
1341 HDMI_PHY_CONF0_SELDATAENPOL_MASK);
1342}
1343
Andy Yanb21f4b62014-12-05 14:26:31 +08001344static void dw_hdmi_phy_sel_interface_control(struct dw_hdmi *hdmi, u8 enable)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001345{
1346 hdmi_mask_writeb(hdmi, enable, HDMI_PHY_CONF0,
1347 HDMI_PHY_CONF0_SELDIPIF_OFFSET,
1348 HDMI_PHY_CONF0_SELDIPIF_MASK);
1349}
1350
Jernej Skrabec57659162018-02-14 21:08:58 +01001351void dw_hdmi_phy_reset(struct dw_hdmi *hdmi)
1352{
1353 /* PHY reset. The reset signal is active high on Gen2 PHYs. */
1354 hdmi_writeb(hdmi, HDMI_MC_PHYRSTZ_PHYRSTZ, HDMI_MC_PHYRSTZ);
1355 hdmi_writeb(hdmi, 0, HDMI_MC_PHYRSTZ);
1356}
1357EXPORT_SYMBOL_GPL(dw_hdmi_phy_reset);
1358
1359void dw_hdmi_phy_i2c_set_addr(struct dw_hdmi *hdmi, u8 address)
1360{
1361 hdmi_phy_test_clear(hdmi, 1);
1362 hdmi_writeb(hdmi, address, HDMI_PHY_I2CM_SLAVE_ADDR);
1363 hdmi_phy_test_clear(hdmi, 0);
1364}
1365EXPORT_SYMBOL_GPL(dw_hdmi_phy_i2c_set_addr);
1366
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02001367static void dw_hdmi_phy_power_off(struct dw_hdmi *hdmi)
1368{
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001369 const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02001370 unsigned int i;
1371 u16 val;
1372
1373 if (phy->gen == 1) {
1374 dw_hdmi_phy_enable_tmds(hdmi, 0);
1375 dw_hdmi_phy_enable_powerdown(hdmi, true);
1376 return;
1377 }
1378
1379 dw_hdmi_phy_gen2_txpwron(hdmi, 0);
1380
1381 /*
1382 * Wait for TX_PHY_LOCK to be deasserted to indicate that the PHY went
1383 * to low power mode.
1384 */
1385 for (i = 0; i < 5; ++i) {
1386 val = hdmi_readb(hdmi, HDMI_PHY_STAT0);
1387 if (!(val & HDMI_PHY_TX_PHY_LOCK))
1388 break;
1389
1390 usleep_range(1000, 2000);
1391 }
1392
1393 if (val & HDMI_PHY_TX_PHY_LOCK)
1394 dev_warn(hdmi->dev, "PHY failed to power down\n");
1395 else
1396 dev_dbg(hdmi->dev, "PHY powered down in %u iterations\n", i);
1397
1398 dw_hdmi_phy_gen2_pddq(hdmi, 1);
1399}
1400
Laurent Pinchart181e0ef2017-03-06 01:35:57 +02001401static int dw_hdmi_phy_power_on(struct dw_hdmi *hdmi)
1402{
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001403 const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
Laurent Pinchart181e0ef2017-03-06 01:35:57 +02001404 unsigned int i;
1405 u8 val;
1406
1407 if (phy->gen == 1) {
1408 dw_hdmi_phy_enable_powerdown(hdmi, false);
1409
1410 /* Toggle TMDS enable. */
1411 dw_hdmi_phy_enable_tmds(hdmi, 0);
1412 dw_hdmi_phy_enable_tmds(hdmi, 1);
1413 return 0;
1414 }
1415
1416 dw_hdmi_phy_gen2_txpwron(hdmi, 1);
1417 dw_hdmi_phy_gen2_pddq(hdmi, 0);
1418
1419 /* Wait for PHY PLL lock */
1420 for (i = 0; i < 5; ++i) {
1421 val = hdmi_readb(hdmi, HDMI_PHY_STAT0) & HDMI_PHY_TX_PHY_LOCK;
1422 if (val)
1423 break;
1424
1425 usleep_range(1000, 2000);
1426 }
1427
1428 if (!val) {
1429 dev_err(hdmi->dev, "PHY PLL failed to lock\n");
1430 return -ETIMEDOUT;
1431 }
1432
1433 dev_dbg(hdmi->dev, "PHY PLL locked %u iterations\n", i);
1434 return 0;
1435}
1436
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001437/*
1438 * PHY configuration function for the DWC HDMI 3D TX PHY. Based on the available
1439 * information the DWC MHL PHY has the same register layout and is thus also
1440 * supported by this function.
1441 */
1442static int hdmi_phy_configure_dwc_hdmi_3d_tx(struct dw_hdmi *hdmi,
1443 const struct dw_hdmi_plat_data *pdata,
1444 unsigned long mpixelclock)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001445{
Russell King39cc1532015-03-31 18:34:11 +01001446 const struct dw_hdmi_mpll_config *mpll_config = pdata->mpll_cfg;
1447 const struct dw_hdmi_curr_ctrl *curr_ctrl = pdata->cur_ctr;
1448 const struct dw_hdmi_phy_config *phy_config = pdata->phy_config;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001449
Neil Armstrongba9877e2019-02-01 12:07:49 +00001450 /* TOFIX Will need 420 specific PHY configuration tables */
1451
Russell King39cc1532015-03-31 18:34:11 +01001452 /* PLL/MPLL Cfg - always match on final entry */
1453 for (; mpll_config->mpixelclock != ~0UL; mpll_config++)
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001454 if (mpixelclock <= mpll_config->mpixelclock)
Russell King39cc1532015-03-31 18:34:11 +01001455 break;
1456
1457 for (; curr_ctrl->mpixelclock != ~0UL; curr_ctrl++)
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001458 if (mpixelclock <= curr_ctrl->mpixelclock)
Russell King39cc1532015-03-31 18:34:11 +01001459 break;
1460
1461 for (; phy_config->mpixelclock != ~0UL; phy_config++)
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001462 if (mpixelclock <= phy_config->mpixelclock)
Russell King39cc1532015-03-31 18:34:11 +01001463 break;
1464
1465 if (mpll_config->mpixelclock == ~0UL ||
1466 curr_ctrl->mpixelclock == ~0UL ||
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001467 phy_config->mpixelclock == ~0UL)
Russell King39cc1532015-03-31 18:34:11 +01001468 return -EINVAL;
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001469
1470 dw_hdmi_phy_i2c_write(hdmi, mpll_config->res[0].cpce,
1471 HDMI_3D_TX_PHY_CPCE_CTRL);
1472 dw_hdmi_phy_i2c_write(hdmi, mpll_config->res[0].gmp,
1473 HDMI_3D_TX_PHY_GMPCTRL);
1474 dw_hdmi_phy_i2c_write(hdmi, curr_ctrl->curr[0],
1475 HDMI_3D_TX_PHY_CURRCTRL);
1476
1477 dw_hdmi_phy_i2c_write(hdmi, 0, HDMI_3D_TX_PHY_PLLPHBYCTRL);
1478 dw_hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK,
1479 HDMI_3D_TX_PHY_MSM_CTRL);
1480
1481 dw_hdmi_phy_i2c_write(hdmi, phy_config->term, HDMI_3D_TX_PHY_TXTERM);
1482 dw_hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr,
1483 HDMI_3D_TX_PHY_CKSYMTXCTRL);
1484 dw_hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr,
1485 HDMI_3D_TX_PHY_VLEVCTRL);
1486
1487 /* Override and disable clock termination. */
1488 dw_hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE,
1489 HDMI_3D_TX_PHY_CKCALCTRL);
1490
1491 return 0;
1492}
1493
Laurent Pinchart7be390d2020-05-26 04:14:56 +03001494static int hdmi_phy_configure(struct dw_hdmi *hdmi,
1495 const struct drm_display_info *display)
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001496{
1497 const struct dw_hdmi_phy_data *phy = hdmi->phy.data;
1498 const struct dw_hdmi_plat_data *pdata = hdmi->plat_data;
1499 unsigned long mpixelclock = hdmi->hdmi_data.video_mode.mpixelclock;
Neil Armstrongba9877e2019-02-01 12:07:49 +00001500 unsigned long mtmdsclock = hdmi->hdmi_data.video_mode.mtmdsclock;
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001501 int ret;
Russell King39cc1532015-03-31 18:34:11 +01001502
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02001503 dw_hdmi_phy_power_off(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001504
Laurent Pinchart7be390d2020-05-26 04:14:56 +03001505 dw_hdmi_set_high_tmds_clock_ratio(hdmi, display);
Neil Armstrong264fce62019-02-01 12:07:46 +00001506
Laurent Pinchart2668db32017-01-17 10:29:09 +02001507 /* Leave low power consumption mode by asserting SVSRET. */
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001508 if (phy->has_svsret)
Laurent Pinchart2668db32017-01-17 10:29:09 +02001509 dw_hdmi_phy_enable_svsret(hdmi, 1);
1510
Jernej Skrabec57659162018-02-14 21:08:58 +01001511 dw_hdmi_phy_reset(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001512
1513 hdmi_writeb(hdmi, HDMI_MC_HEACPHY_RST_ASSERT, HDMI_MC_HEACPHY_RST);
1514
Jernej Skrabec57659162018-02-14 21:08:58 +01001515 dw_hdmi_phy_i2c_set_addr(hdmi, HDMI_PHY_I2CM_SLAVE_ADDR_PHY_GEN2);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001516
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001517 /* Write to the PHY as configured by the platform */
1518 if (pdata->configure_phy)
Laurent Pinchart49da7e52020-05-26 04:14:50 +03001519 ret = pdata->configure_phy(hdmi, pdata->priv_data, mpixelclock);
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02001520 else
1521 ret = phy->configure(hdmi, pdata, mpixelclock);
1522 if (ret) {
1523 dev_err(hdmi->dev, "PHY configuration failed (clock %lu)\n",
1524 mpixelclock);
1525 return ret;
1526 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001527
Neil Armstrong264fce62019-02-01 12:07:46 +00001528 /* Wait for resuming transmission of TMDS clock and data */
Neil Armstrongba9877e2019-02-01 12:07:49 +00001529 if (mtmdsclock > HDMI14_MAX_TMDSCLK)
Neil Armstrong264fce62019-02-01 12:07:46 +00001530 msleep(100);
1531
Laurent Pinchart181e0ef2017-03-06 01:35:57 +02001532 return dw_hdmi_phy_power_on(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001533}
1534
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001535static int dw_hdmi_phy_init(struct dw_hdmi *hdmi, void *data,
Laurent Pinchart7be390d2020-05-26 04:14:56 +03001536 const struct drm_display_info *display,
Laurent Pinchart35a395f2020-05-26 04:14:54 +03001537 const struct drm_display_mode *mode)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001538{
1539 int i, ret;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001540
1541 /* HDMI Phy spec says to do the phy initialization sequence twice */
1542 for (i = 0; i < 2; i++) {
Andy Yanb21f4b62014-12-05 14:26:31 +08001543 dw_hdmi_phy_sel_data_en_pol(hdmi, 1);
1544 dw_hdmi_phy_sel_interface_control(hdmi, 0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001545
Laurent Pinchart7be390d2020-05-26 04:14:56 +03001546 ret = hdmi_phy_configure(hdmi, display);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001547 if (ret)
1548 return ret;
1549 }
1550
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001551 return 0;
1552}
1553
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001554static void dw_hdmi_phy_disable(struct dw_hdmi *hdmi, void *data)
1555{
1556 dw_hdmi_phy_power_off(hdmi);
1557}
1558
Jernej Skrabec57659162018-02-14 21:08:58 +01001559enum drm_connector_status dw_hdmi_phy_read_hpd(struct dw_hdmi *hdmi,
1560 void *data)
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001561{
1562 return hdmi_readb(hdmi, HDMI_PHY_STAT0) & HDMI_PHY_HPD ?
1563 connector_status_connected : connector_status_disconnected;
1564}
Jernej Skrabec57659162018-02-14 21:08:58 +01001565EXPORT_SYMBOL_GPL(dw_hdmi_phy_read_hpd);
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001566
Jernej Skrabec57659162018-02-14 21:08:58 +01001567void dw_hdmi_phy_update_hpd(struct dw_hdmi *hdmi, void *data,
1568 bool force, bool disabled, bool rxsense)
Neil Armstrong386d3292017-04-04 14:31:59 +02001569{
1570 u8 old_mask = hdmi->phy_mask;
1571
1572 if (force || disabled || !rxsense)
1573 hdmi->phy_mask |= HDMI_PHY_RX_SENSE;
1574 else
1575 hdmi->phy_mask &= ~HDMI_PHY_RX_SENSE;
1576
1577 if (old_mask != hdmi->phy_mask)
1578 hdmi_writeb(hdmi, hdmi->phy_mask, HDMI_PHY_MASK0);
1579}
Jernej Skrabec57659162018-02-14 21:08:58 +01001580EXPORT_SYMBOL_GPL(dw_hdmi_phy_update_hpd);
Neil Armstrong386d3292017-04-04 14:31:59 +02001581
Jernej Skrabec57659162018-02-14 21:08:58 +01001582void dw_hdmi_phy_setup_hpd(struct dw_hdmi *hdmi, void *data)
Neil Armstrong386d3292017-04-04 14:31:59 +02001583{
1584 /*
1585 * Configure the PHY RX SENSE and HPD interrupts polarities and clear
1586 * any pending interrupt.
1587 */
1588 hdmi_writeb(hdmi, HDMI_PHY_HPD | HDMI_PHY_RX_SENSE, HDMI_PHY_POL0);
1589 hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE,
1590 HDMI_IH_PHY_STAT0);
1591
1592 /* Enable cable hot plug irq. */
1593 hdmi_writeb(hdmi, hdmi->phy_mask, HDMI_PHY_MASK0);
1594
1595 /* Clear and unmute interrupts. */
1596 hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE,
1597 HDMI_IH_PHY_STAT0);
1598 hdmi_writeb(hdmi, ~(HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE),
1599 HDMI_IH_MUTE_PHY_STAT0);
1600}
Jernej Skrabec57659162018-02-14 21:08:58 +01001601EXPORT_SYMBOL_GPL(dw_hdmi_phy_setup_hpd);
Neil Armstrong386d3292017-04-04 14:31:59 +02001602
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001603static const struct dw_hdmi_phy_ops dw_hdmi_synopsys_phy_ops = {
1604 .init = dw_hdmi_phy_init,
1605 .disable = dw_hdmi_phy_disable,
1606 .read_hpd = dw_hdmi_phy_read_hpd,
Neil Armstrong386d3292017-04-04 14:31:59 +02001607 .update_hpd = dw_hdmi_phy_update_hpd,
1608 .setup_hpd = dw_hdmi_phy_setup_hpd,
Laurent Pinchartf1585f62017-03-06 01:36:15 +02001609};
1610
1611/* -----------------------------------------------------------------------------
1612 * HDMI TX Setup
1613 */
1614
Andy Yanb21f4b62014-12-05 14:26:31 +08001615static void hdmi_tx_hdcp_config(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001616{
Russell King812bc612013-11-04 12:42:02 +00001617 u8 de;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001618
1619 if (hdmi->hdmi_data.video_mode.mdataenablepolarity)
1620 de = HDMI_A_VIDPOLCFG_DATAENPOL_ACTIVE_HIGH;
1621 else
1622 de = HDMI_A_VIDPOLCFG_DATAENPOL_ACTIVE_LOW;
1623
1624 /* disable rx detect */
Russell King812bc612013-11-04 12:42:02 +00001625 hdmi_modb(hdmi, HDMI_A_HDCPCFG0_RXDETECT_DISABLE,
1626 HDMI_A_HDCPCFG0_RXDETECT_MASK, HDMI_A_HDCPCFG0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001627
Russell King812bc612013-11-04 12:42:02 +00001628 hdmi_modb(hdmi, de, HDMI_A_VIDPOLCFG_DATAENPOL_MASK, HDMI_A_VIDPOLCFG);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001629
Russell King812bc612013-11-04 12:42:02 +00001630 hdmi_modb(hdmi, HDMI_A_HDCPCFG1_ENCRYPTIONDISABLE_DISABLE,
1631 HDMI_A_HDCPCFG1_ENCRYPTIONDISABLE_MASK, HDMI_A_HDCPCFG1);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001632}
1633
Laurent Pinchart9fbfa322020-05-26 04:14:55 +03001634static void hdmi_config_AVI(struct dw_hdmi *hdmi,
Laurent Pinchart81980032020-05-26 04:14:59 +03001635 const struct drm_connector *connector,
Laurent Pinchart9fbfa322020-05-26 04:14:55 +03001636 const struct drm_display_mode *mode)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001637{
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001638 struct hdmi_avi_infoframe frame;
1639 u8 val;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001640
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001641 /* Initialise info frame from DRM mode */
Laurent Pinchart81980032020-05-26 04:14:59 +03001642 drm_hdmi_avi_infoframe_from_display_mode(&frame, connector, mode);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001643
Jernej Skrabec86af3792020-03-05 00:25:11 +01001644 if (hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format)) {
Laurent Pinchart81980032020-05-26 04:14:59 +03001645 drm_hdmi_avi_infoframe_quant_range(&frame, connector, mode,
Jernej Skrabec86af3792020-03-05 00:25:11 +01001646 hdmi->hdmi_data.rgb_limited_range ?
1647 HDMI_QUANTIZATION_RANGE_LIMITED :
1648 HDMI_QUANTIZATION_RANGE_FULL);
1649 } else {
1650 frame.quantization_range = HDMI_QUANTIZATION_RANGE_DEFAULT;
1651 frame.ycc_quantization_range =
1652 HDMI_YCC_QUANTIZATION_RANGE_LIMITED;
1653 }
1654
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001655 if (hdmi_bus_fmt_is_yuv444(hdmi->hdmi_data.enc_out_bus_format))
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001656 frame.colorspace = HDMI_COLORSPACE_YUV444;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001657 else if (hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format))
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001658 frame.colorspace = HDMI_COLORSPACE_YUV422;
Neil Armstrongba9877e2019-02-01 12:07:49 +00001659 else if (hdmi_bus_fmt_is_yuv420(hdmi->hdmi_data.enc_out_bus_format))
1660 frame.colorspace = HDMI_COLORSPACE_YUV420;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001661 else
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001662 frame.colorspace = HDMI_COLORSPACE_RGB;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001663
1664 /* Set up colorimetry */
Jernej Skrabece8dca302020-03-05 00:25:09 +01001665 if (!hdmi_bus_fmt_is_rgb(hdmi->hdmi_data.enc_out_bus_format)) {
1666 switch (hdmi->hdmi_data.enc_out_encoding) {
1667 case V4L2_YCBCR_ENC_601:
1668 if (hdmi->hdmi_data.enc_in_encoding == V4L2_YCBCR_ENC_XV601)
1669 frame.colorimetry = HDMI_COLORIMETRY_EXTENDED;
1670 else
1671 frame.colorimetry = HDMI_COLORIMETRY_ITU_601;
1672 frame.extended_colorimetry =
1673 HDMI_EXTENDED_COLORIMETRY_XV_YCC_601;
1674 break;
1675 case V4L2_YCBCR_ENC_709:
1676 if (hdmi->hdmi_data.enc_in_encoding == V4L2_YCBCR_ENC_XV709)
1677 frame.colorimetry = HDMI_COLORIMETRY_EXTENDED;
1678 else
1679 frame.colorimetry = HDMI_COLORIMETRY_ITU_709;
1680 frame.extended_colorimetry =
1681 HDMI_EXTENDED_COLORIMETRY_XV_YCC_709;
1682 break;
1683 default: /* Carries no data */
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001684 frame.colorimetry = HDMI_COLORIMETRY_ITU_601;
Jernej Skrabece8dca302020-03-05 00:25:09 +01001685 frame.extended_colorimetry =
1686 HDMI_EXTENDED_COLORIMETRY_XV_YCC_601;
1687 break;
1688 }
1689 } else {
1690 frame.colorimetry = HDMI_COLORIMETRY_NONE;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02001691 frame.extended_colorimetry =
Jernej Skrabece8dca302020-03-05 00:25:09 +01001692 HDMI_EXTENDED_COLORIMETRY_XV_YCC_601;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001693 }
1694
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001695 /*
1696 * The Designware IP uses a different byte format from standard
1697 * AVI info frames, though generally the bits are in the correct
1698 * bytes.
1699 */
1700
1701 /*
Jose Abreub0118e72016-08-29 10:30:51 +01001702 * AVI data byte 1 differences: Colorspace in bits 0,1 rather than 5,6,
1703 * scan info in bits 4,5 rather than 0,1 and active aspect present in
1704 * bit 6 rather than 4.
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001705 */
Jose Abreub0118e72016-08-29 10:30:51 +01001706 val = (frame.scan_mode & 3) << 4 | (frame.colorspace & 3);
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001707 if (frame.active_aspect & 15)
1708 val |= HDMI_FC_AVICONF0_ACTIVE_FMT_INFO_PRESENT;
1709 if (frame.top_bar || frame.bottom_bar)
1710 val |= HDMI_FC_AVICONF0_BAR_DATA_HORIZ_BAR;
1711 if (frame.left_bar || frame.right_bar)
1712 val |= HDMI_FC_AVICONF0_BAR_DATA_VERT_BAR;
1713 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF0);
1714
1715 /* AVI data byte 2 differences: none */
1716 val = ((frame.colorimetry & 0x3) << 6) |
1717 ((frame.picture_aspect & 0x3) << 4) |
1718 (frame.active_aspect & 0xf);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001719 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF1);
1720
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001721 /* AVI data byte 3 differences: none */
1722 val = ((frame.extended_colorimetry & 0x7) << 4) |
1723 ((frame.quantization_range & 0x3) << 2) |
1724 (frame.nups & 0x3);
1725 if (frame.itc)
1726 val |= HDMI_FC_AVICONF2_IT_CONTENT_VALID;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001727 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF2);
1728
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001729 /* AVI data byte 4 differences: none */
1730 val = frame.video_code & 0x7f;
1731 hdmi_writeb(hdmi, val, HDMI_FC_AVIVID);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001732
1733 /* AVI Data Byte 5- set up input and output pixel repetition */
1734 val = (((hdmi->hdmi_data.video_mode.mpixelrepetitioninput + 1) <<
1735 HDMI_FC_PRCONF_INCOMING_PR_FACTOR_OFFSET) &
1736 HDMI_FC_PRCONF_INCOMING_PR_FACTOR_MASK) |
1737 ((hdmi->hdmi_data.video_mode.mpixelrepetitionoutput <<
1738 HDMI_FC_PRCONF_OUTPUT_PR_FACTOR_OFFSET) &
1739 HDMI_FC_PRCONF_OUTPUT_PR_FACTOR_MASK);
1740 hdmi_writeb(hdmi, val, HDMI_FC_PRCONF);
1741
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001742 /*
1743 * AVI data byte 5 differences: content type in 0,1 rather than 4,5,
1744 * ycc range in bits 2,3 rather than 6,7
1745 */
1746 val = ((frame.ycc_quantization_range & 0x3) << 2) |
1747 (frame.content_type & 0x3);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001748 hdmi_writeb(hdmi, val, HDMI_FC_AVICONF3);
1749
1750 /* AVI Data Bytes 6-13 */
Russell Kingd4ac4cb2015-03-27 20:06:50 +00001751 hdmi_writeb(hdmi, frame.top_bar & 0xff, HDMI_FC_AVIETB0);
1752 hdmi_writeb(hdmi, (frame.top_bar >> 8) & 0xff, HDMI_FC_AVIETB1);
1753 hdmi_writeb(hdmi, frame.bottom_bar & 0xff, HDMI_FC_AVISBB0);
1754 hdmi_writeb(hdmi, (frame.bottom_bar >> 8) & 0xff, HDMI_FC_AVISBB1);
1755 hdmi_writeb(hdmi, frame.left_bar & 0xff, HDMI_FC_AVIELB0);
1756 hdmi_writeb(hdmi, (frame.left_bar >> 8) & 0xff, HDMI_FC_AVIELB1);
1757 hdmi_writeb(hdmi, frame.right_bar & 0xff, HDMI_FC_AVISRB0);
1758 hdmi_writeb(hdmi, (frame.right_bar >> 8) & 0xff, HDMI_FC_AVISRB1);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001759}
1760
Nickey Yang9aa1eca2017-03-21 15:36:17 +08001761static void hdmi_config_vendor_specific_infoframe(struct dw_hdmi *hdmi,
Laurent Pinchart81980032020-05-26 04:14:59 +03001762 const struct drm_connector *connector,
Laurent Pinchart9fbfa322020-05-26 04:14:55 +03001763 const struct drm_display_mode *mode)
Nickey Yang9aa1eca2017-03-21 15:36:17 +08001764{
1765 struct hdmi_vendor_infoframe frame;
1766 u8 buffer[10];
1767 ssize_t err;
1768
Laurent Pinchart81980032020-05-26 04:14:59 +03001769 err = drm_hdmi_vendor_infoframe_from_display_mode(&frame, connector,
Ville Syrjäläf1781e92017-11-13 19:04:19 +02001770 mode);
Nickey Yang9aa1eca2017-03-21 15:36:17 +08001771 if (err < 0)
1772 /*
1773 * Going into that statement does not means vendor infoframe
1774 * fails. It just informed us that vendor infoframe is not
1775 * needed for the selected mode. Only 4k or stereoscopic 3D
1776 * mode requires vendor infoframe. So just simply return.
1777 */
1778 return;
1779
1780 err = hdmi_vendor_infoframe_pack(&frame, buffer, sizeof(buffer));
1781 if (err < 0) {
1782 dev_err(hdmi->dev, "Failed to pack vendor infoframe: %zd\n",
1783 err);
1784 return;
1785 }
1786 hdmi_mask_writeb(hdmi, 0, HDMI_FC_DATAUTO0, HDMI_FC_DATAUTO0_VSD_OFFSET,
1787 HDMI_FC_DATAUTO0_VSD_MASK);
1788
1789 /* Set the length of HDMI vendor specific InfoFrame payload */
1790 hdmi_writeb(hdmi, buffer[2], HDMI_FC_VSDSIZE);
1791
1792 /* Set 24bit IEEE Registration Identifier */
1793 hdmi_writeb(hdmi, buffer[4], HDMI_FC_VSDIEEEID0);
1794 hdmi_writeb(hdmi, buffer[5], HDMI_FC_VSDIEEEID1);
1795 hdmi_writeb(hdmi, buffer[6], HDMI_FC_VSDIEEEID2);
1796
1797 /* Set HDMI_Video_Format and HDMI_VIC/3D_Structure */
1798 hdmi_writeb(hdmi, buffer[7], HDMI_FC_VSDPAYLOAD0);
1799 hdmi_writeb(hdmi, buffer[8], HDMI_FC_VSDPAYLOAD1);
1800
1801 if (frame.s3d_struct >= HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF)
1802 hdmi_writeb(hdmi, buffer[9], HDMI_FC_VSDPAYLOAD2);
1803
1804 /* Packet frame interpolation */
1805 hdmi_writeb(hdmi, 1, HDMI_FC_DATAUTO1);
1806
1807 /* Auto packets per frame and line spacing */
1808 hdmi_writeb(hdmi, 0x11, HDMI_FC_DATAUTO2);
1809
1810 /* Configures the Frame Composer On RDRB mode */
1811 hdmi_mask_writeb(hdmi, 1, HDMI_FC_DATAUTO0, HDMI_FC_DATAUTO0_VSD_OFFSET,
1812 HDMI_FC_DATAUTO0_VSD_MASK);
1813}
1814
Laurent Pinchart81980032020-05-26 04:14:59 +03001815static void hdmi_config_drm_infoframe(struct dw_hdmi *hdmi,
1816 const struct drm_connector *connector)
Jonas Karlman7cea8552019-10-07 19:21:48 +00001817{
Laurent Pinchart81980032020-05-26 04:14:59 +03001818 const struct drm_connector_state *conn_state = connector->state;
Jonas Karlman7cea8552019-10-07 19:21:48 +00001819 struct hdmi_drm_infoframe frame;
1820 u8 buffer[30];
1821 ssize_t err;
1822 int i;
1823
1824 if (!hdmi->plat_data->use_drm_infoframe)
1825 return;
1826
1827 hdmi_modb(hdmi, HDMI_FC_PACKET_TX_EN_DRM_DISABLE,
1828 HDMI_FC_PACKET_TX_EN_DRM_MASK, HDMI_FC_PACKET_TX_EN);
1829
1830 err = drm_hdmi_infoframe_set_hdr_metadata(&frame, conn_state);
1831 if (err < 0)
1832 return;
1833
1834 err = hdmi_drm_infoframe_pack(&frame, buffer, sizeof(buffer));
1835 if (err < 0) {
1836 dev_err(hdmi->dev, "Failed to pack drm infoframe: %zd\n", err);
1837 return;
1838 }
1839
1840 hdmi_writeb(hdmi, frame.version, HDMI_FC_DRM_HB0);
1841 hdmi_writeb(hdmi, frame.length, HDMI_FC_DRM_HB1);
1842
1843 for (i = 0; i < frame.length; i++)
1844 hdmi_writeb(hdmi, buffer[4 + i], HDMI_FC_DRM_PB0 + i);
1845
1846 hdmi_writeb(hdmi, 1, HDMI_FC_DRM_UP);
1847 hdmi_modb(hdmi, HDMI_FC_PACKET_TX_EN_DRM_ENABLE,
1848 HDMI_FC_PACKET_TX_EN_DRM_MASK, HDMI_FC_PACKET_TX_EN);
1849}
1850
Andy Yanb21f4b62014-12-05 14:26:31 +08001851static void hdmi_av_composer(struct dw_hdmi *hdmi,
Laurent Pinchart7be390d2020-05-26 04:14:56 +03001852 const struct drm_display_info *display,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001853 const struct drm_display_mode *mode)
1854{
Neil Armstrong264fce62019-02-01 12:07:46 +00001855 u8 inv_val, bytes;
Laurent Pinchart7be390d2020-05-26 04:14:56 +03001856 const struct drm_hdmi_info *hdmi_info = &display->hdmi;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001857 struct hdmi_vmode *vmode = &hdmi->hdmi_data.video_mode;
1858 int hblank, vblank, h_de_hs, v_de_vs, hsync_len, vsync_len;
Neil Armstrongba9877e2019-02-01 12:07:49 +00001859 unsigned int vdisplay, hdisplay;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001860
Jonas Karlmanc6cae702020-03-04 11:40:42 +01001861 vmode->mpixelclock = mode->clock * 1000;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001862
1863 dev_dbg(hdmi->dev, "final pixclk = %d\n", vmode->mpixelclock);
1864
Jonas Karlmanc6cae702020-03-04 11:40:42 +01001865 vmode->mtmdsclock = vmode->mpixelclock;
1866
1867 if (!hdmi_bus_fmt_is_yuv422(hdmi->hdmi_data.enc_out_bus_format)) {
1868 switch (hdmi_bus_fmt_color_depth(
1869 hdmi->hdmi_data.enc_out_bus_format)) {
1870 case 16:
1871 vmode->mtmdsclock = vmode->mpixelclock * 2;
1872 break;
1873 case 12:
1874 vmode->mtmdsclock = vmode->mpixelclock * 3 / 2;
1875 break;
1876 case 10:
1877 vmode->mtmdsclock = vmode->mpixelclock * 5 / 4;
1878 break;
1879 }
1880 }
1881
Neil Armstrongba9877e2019-02-01 12:07:49 +00001882 if (hdmi_bus_fmt_is_yuv420(hdmi->hdmi_data.enc_out_bus_format))
1883 vmode->mtmdsclock /= 2;
1884
Jonas Karlmanc6cae702020-03-04 11:40:42 +01001885 dev_dbg(hdmi->dev, "final tmdsclock = %d\n", vmode->mtmdsclock);
1886
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001887 /* Set up HDMI_FC_INVIDCONF */
Neil Armstrong264fce62019-02-01 12:07:46 +00001888 inv_val = (hdmi->hdmi_data.hdcp_enable ||
Laurent Pinchart7be390d2020-05-26 04:14:56 +03001889 (dw_hdmi_support_scdc(hdmi, display) &&
Neil Armstrong836f90f2019-03-15 10:54:14 +01001890 (vmode->mtmdsclock > HDMI14_MAX_TMDSCLK ||
1891 hdmi_info->scdc.scrambling.low_rates)) ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001892 HDMI_FC_INVIDCONF_HDCP_KEEPOUT_ACTIVE :
1893 HDMI_FC_INVIDCONF_HDCP_KEEPOUT_INACTIVE);
1894
Russell Kingb91eee82015-03-27 23:27:17 +00001895 inv_val |= mode->flags & DRM_MODE_FLAG_PVSYNC ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001896 HDMI_FC_INVIDCONF_VSYNC_IN_POLARITY_ACTIVE_HIGH :
Russell Kingb91eee82015-03-27 23:27:17 +00001897 HDMI_FC_INVIDCONF_VSYNC_IN_POLARITY_ACTIVE_LOW;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001898
Russell Kingb91eee82015-03-27 23:27:17 +00001899 inv_val |= mode->flags & DRM_MODE_FLAG_PHSYNC ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001900 HDMI_FC_INVIDCONF_HSYNC_IN_POLARITY_ACTIVE_HIGH :
Russell Kingb91eee82015-03-27 23:27:17 +00001901 HDMI_FC_INVIDCONF_HSYNC_IN_POLARITY_ACTIVE_LOW;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001902
1903 inv_val |= (vmode->mdataenablepolarity ?
1904 HDMI_FC_INVIDCONF_DE_IN_POLARITY_ACTIVE_HIGH :
1905 HDMI_FC_INVIDCONF_DE_IN_POLARITY_ACTIVE_LOW);
1906
1907 if (hdmi->vic == 39)
1908 inv_val |= HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_HIGH;
1909 else
Russell Kingb91eee82015-03-27 23:27:17 +00001910 inv_val |= mode->flags & DRM_MODE_FLAG_INTERLACE ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001911 HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_HIGH :
Russell Kingb91eee82015-03-27 23:27:17 +00001912 HDMI_FC_INVIDCONF_R_V_BLANK_IN_OSC_ACTIVE_LOW;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001913
Russell Kingb91eee82015-03-27 23:27:17 +00001914 inv_val |= mode->flags & DRM_MODE_FLAG_INTERLACE ?
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001915 HDMI_FC_INVIDCONF_IN_I_P_INTERLACED :
Russell Kingb91eee82015-03-27 23:27:17 +00001916 HDMI_FC_INVIDCONF_IN_I_P_PROGRESSIVE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001917
Russell King05b13422015-07-21 15:35:52 +01001918 inv_val |= hdmi->sink_is_hdmi ?
1919 HDMI_FC_INVIDCONF_DVI_MODEZ_HDMI_MODE :
1920 HDMI_FC_INVIDCONF_DVI_MODEZ_DVI_MODE;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001921
1922 hdmi_writeb(hdmi, inv_val, HDMI_FC_INVIDCONF);
1923
Neil Armstrongba9877e2019-02-01 12:07:49 +00001924 hdisplay = mode->hdisplay;
1925 hblank = mode->htotal - mode->hdisplay;
1926 h_de_hs = mode->hsync_start - mode->hdisplay;
1927 hsync_len = mode->hsync_end - mode->hsync_start;
1928
1929 /*
1930 * When we're setting a YCbCr420 mode, we need
1931 * to adjust the horizontal timing to suit.
1932 */
1933 if (hdmi_bus_fmt_is_yuv420(hdmi->hdmi_data.enc_out_bus_format)) {
1934 hdisplay /= 2;
1935 hblank /= 2;
1936 h_de_hs /= 2;
1937 hsync_len /= 2;
1938 }
1939
Russell Kinge80b9f42015-07-21 11:08:25 +01001940 vdisplay = mode->vdisplay;
1941 vblank = mode->vtotal - mode->vdisplay;
1942 v_de_vs = mode->vsync_start - mode->vdisplay;
1943 vsync_len = mode->vsync_end - mode->vsync_start;
1944
1945 /*
1946 * When we're setting an interlaced mode, we need
1947 * to adjust the vertical timing to suit.
1948 */
1949 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
1950 vdisplay /= 2;
1951 vblank /= 2;
1952 v_de_vs /= 2;
1953 vsync_len /= 2;
1954 }
1955
Neil Armstrong264fce62019-02-01 12:07:46 +00001956 /* Scrambling Control */
Laurent Pinchart7be390d2020-05-26 04:14:56 +03001957 if (dw_hdmi_support_scdc(hdmi, display)) {
Neil Armstrongba9877e2019-02-01 12:07:49 +00001958 if (vmode->mtmdsclock > HDMI14_MAX_TMDSCLK ||
Neil Armstrong264fce62019-02-01 12:07:46 +00001959 hdmi_info->scdc.scrambling.low_rates) {
1960 /*
1961 * HDMI2.0 Specifies the following procedure:
1962 * After the Source Device has determined that
1963 * SCDC_Present is set (=1), the Source Device should
1964 * write the accurate Version of the Source Device
1965 * to the Source Version field in the SCDCS.
1966 * Source Devices compliant shall set the
1967 * Source Version = 1.
1968 */
Jonas Karlmanc4cba442019-04-21 08:25:50 +00001969 drm_scdc_readb(hdmi->ddc, SCDC_SINK_VERSION,
Neil Armstrong264fce62019-02-01 12:07:46 +00001970 &bytes);
Jonas Karlmanc4cba442019-04-21 08:25:50 +00001971 drm_scdc_writeb(hdmi->ddc, SCDC_SOURCE_VERSION,
Neil Armstrong264fce62019-02-01 12:07:46 +00001972 min_t(u8, bytes, SCDC_MIN_SOURCE_VERSION));
1973
1974 /* Enabled Scrambling in the Sink */
Jonas Karlmanc4cba442019-04-21 08:25:50 +00001975 drm_scdc_set_scrambling(hdmi->ddc, 1);
Neil Armstrong264fce62019-02-01 12:07:46 +00001976
1977 /*
1978 * To activate the scrambler feature, you must ensure
1979 * that the quasi-static configuration bit
1980 * fc_invidconf.HDCP_keepout is set at configuration
1981 * time, before the required mc_swrstzreq.tmdsswrst_req
1982 * reset request is issued.
1983 */
1984 hdmi_writeb(hdmi, (u8)~HDMI_MC_SWRSTZ_TMDSSWRST_REQ,
1985 HDMI_MC_SWRSTZ);
1986 hdmi_writeb(hdmi, 1, HDMI_FC_SCRAMBLER_CTRL);
1987 } else {
1988 hdmi_writeb(hdmi, 0, HDMI_FC_SCRAMBLER_CTRL);
1989 hdmi_writeb(hdmi, (u8)~HDMI_MC_SWRSTZ_TMDSSWRST_REQ,
1990 HDMI_MC_SWRSTZ);
Jonas Karlmanc4cba442019-04-21 08:25:50 +00001991 drm_scdc_set_scrambling(hdmi->ddc, 0);
Neil Armstrong264fce62019-02-01 12:07:46 +00001992 }
1993 }
1994
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001995 /* Set up horizontal active pixel width */
Neil Armstrongba9877e2019-02-01 12:07:49 +00001996 hdmi_writeb(hdmi, hdisplay >> 8, HDMI_FC_INHACTV1);
1997 hdmi_writeb(hdmi, hdisplay, HDMI_FC_INHACTV0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02001998
1999 /* Set up vertical active lines */
Russell Kinge80b9f42015-07-21 11:08:25 +01002000 hdmi_writeb(hdmi, vdisplay >> 8, HDMI_FC_INVACTV1);
2001 hdmi_writeb(hdmi, vdisplay, HDMI_FC_INVACTV0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002002
2003 /* Set up horizontal blanking pixel region width */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002004 hdmi_writeb(hdmi, hblank >> 8, HDMI_FC_INHBLANK1);
2005 hdmi_writeb(hdmi, hblank, HDMI_FC_INHBLANK0);
2006
2007 /* Set up vertical blanking pixel region width */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002008 hdmi_writeb(hdmi, vblank, HDMI_FC_INVBLANK);
2009
2010 /* Set up HSYNC active edge delay width (in pixel clks) */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002011 hdmi_writeb(hdmi, h_de_hs >> 8, HDMI_FC_HSYNCINDELAY1);
2012 hdmi_writeb(hdmi, h_de_hs, HDMI_FC_HSYNCINDELAY0);
2013
2014 /* Set up VSYNC active edge delay (in lines) */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002015 hdmi_writeb(hdmi, v_de_vs, HDMI_FC_VSYNCINDELAY);
2016
2017 /* Set up HSYNC active pulse width (in pixel clks) */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002018 hdmi_writeb(hdmi, hsync_len >> 8, HDMI_FC_HSYNCINWIDTH1);
2019 hdmi_writeb(hdmi, hsync_len, HDMI_FC_HSYNCINWIDTH0);
2020
2021 /* Set up VSYNC active edge delay (in lines) */
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002022 hdmi_writeb(hdmi, vsync_len, HDMI_FC_VSYNCINWIDTH);
2023}
2024
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002025/* HDMI Initialization Step B.4 */
Andy Yanb21f4b62014-12-05 14:26:31 +08002026static void dw_hdmi_enable_video_path(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002027{
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002028 /* control period minimum duration */
2029 hdmi_writeb(hdmi, 12, HDMI_FC_CTRLDUR);
2030 hdmi_writeb(hdmi, 32, HDMI_FC_EXCTRLDUR);
2031 hdmi_writeb(hdmi, 1, HDMI_FC_EXCTRLSPAC);
2032
2033 /* Set to fill TMDS data channels */
2034 hdmi_writeb(hdmi, 0x0B, HDMI_FC_CH0PREAM);
2035 hdmi_writeb(hdmi, 0x16, HDMI_FC_CH1PREAM);
2036 hdmi_writeb(hdmi, 0x21, HDMI_FC_CH2PREAM);
2037
2038 /* Enable pixel clock and tmds data path */
Russell King7cc4ab22017-07-31 15:29:46 +01002039 hdmi->mc_clkdis |= HDMI_MC_CLKDIS_HDCPCLK_DISABLE |
2040 HDMI_MC_CLKDIS_CSCCLK_DISABLE |
2041 HDMI_MC_CLKDIS_AUDCLK_DISABLE |
2042 HDMI_MC_CLKDIS_PREPCLK_DISABLE |
2043 HDMI_MC_CLKDIS_TMDSCLK_DISABLE;
2044 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_PIXELCLK_DISABLE;
2045 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002046
Russell King7cc4ab22017-07-31 15:29:46 +01002047 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_TMDSCLK_DISABLE;
2048 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002049
2050 /* Enable csc path */
Jernej Skrabec0e800302020-03-05 00:25:12 +01002051 if (is_csc_needed(hdmi)) {
Russell King7cc4ab22017-07-31 15:29:46 +01002052 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_CSCCLK_DISABLE;
2053 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
Laurent Pinchart8b9e1c02017-03-03 19:19:59 +02002054
Laurent Pinchart8b9e1c02017-03-03 19:19:59 +02002055 hdmi_writeb(hdmi, HDMI_MC_FLOWCTRL_FEED_THROUGH_OFF_CSC_IN_PATH,
2056 HDMI_MC_FLOWCTRL);
Jernej Skrabec0e800302020-03-05 00:25:12 +01002057 } else {
2058 hdmi->mc_clkdis |= HDMI_MC_CLKDIS_CSCCLK_DISABLE;
2059 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
2060
Laurent Pinchart8b9e1c02017-03-03 19:19:59 +02002061 hdmi_writeb(hdmi, HDMI_MC_FLOWCTRL_FEED_THROUGH_OFF_CSC_BYPASS,
2062 HDMI_MC_FLOWCTRL);
Jernej Skrabec0e800302020-03-05 00:25:12 +01002063 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002064}
2065
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002066/* Workaround to clear the overflow condition */
Andy Yanb21f4b62014-12-05 14:26:31 +08002067static void dw_hdmi_clear_overflow(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002068{
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002069 unsigned int count;
2070 unsigned int i;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002071 u8 val;
2072
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002073 /*
2074 * Under some circumstances the Frame Composer arithmetic unit can miss
2075 * an FC register write due to being busy processing the previous one.
2076 * The issue can be worked around by issuing a TMDS software reset and
2077 * then write one of the FC registers several times.
2078 *
2079 * The number of iterations matters and depends on the HDMI TX revision
Jernej Skrabec46d1b422018-02-14 21:08:57 +01002080 * (and possibly on the platform). So far i.MX6Q (v1.30a), i.MX6DL
2081 * (v1.31a) and multiple Allwinner SoCs (v1.32a) have been identified
2082 * as needing the workaround, with 4 iterations for v1.30a and 1
2083 * iteration for others.
Neil Armstrong9c305eb2018-02-23 12:44:37 +01002084 * The Amlogic Meson GX SoCs (v2.01a) have been identified as needing
2085 * the workaround with a single iteration.
Jonas Karlmand15d9fd2019-02-20 07:52:31 +00002086 * The Rockchip RK3288 SoC (v2.00a) and RK3328/RK3399 SoCs (v2.11a) have
2087 * been identified as needing the workaround with a single iteration.
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002088 */
2089
2090 switch (hdmi->version) {
2091 case 0x130a:
2092 count = 4;
2093 break;
2094 case 0x131a:
Jernej Skrabec46d1b422018-02-14 21:08:57 +01002095 case 0x132a:
Jonas Karlmand15d9fd2019-02-20 07:52:31 +00002096 case 0x200a:
Neil Armstrong9c305eb2018-02-23 12:44:37 +01002097 case 0x201a:
Jonas Karlmand15d9fd2019-02-20 07:52:31 +00002098 case 0x211a:
Jernej Skrabecc8c78ac2018-11-04 19:26:51 +01002099 case 0x212a:
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002100 count = 1;
2101 break;
2102 default:
2103 return;
2104 }
2105
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002106 /* TMDS software reset */
2107 hdmi_writeb(hdmi, (u8)~HDMI_MC_SWRSTZ_TMDSSWRST_REQ, HDMI_MC_SWRSTZ);
2108
2109 val = hdmi_readb(hdmi, HDMI_FC_INVIDCONF);
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02002110 for (i = 0; i < count; i++)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002111 hdmi_writeb(hdmi, val, HDMI_FC_INVIDCONF);
2112}
2113
Andy Yanb21f4b62014-12-05 14:26:31 +08002114static void hdmi_disable_overflow_interrupts(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002115{
2116 hdmi_writeb(hdmi, HDMI_IH_MUTE_FC_STAT2_OVERFLOW_MASK,
2117 HDMI_IH_MUTE_FC_STAT2);
2118}
2119
Laurent Pinchart9fbfa322020-05-26 04:14:55 +03002120static int dw_hdmi_setup(struct dw_hdmi *hdmi,
Laurent Pinchart81980032020-05-26 04:14:59 +03002121 const struct drm_connector *connector,
Laurent Pinchart9fbfa322020-05-26 04:14:55 +03002122 const struct drm_display_mode *mode)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002123{
2124 int ret;
2125
2126 hdmi_disable_overflow_interrupts(hdmi);
2127
2128 hdmi->vic = drm_match_cea_mode(mode);
2129
2130 if (!hdmi->vic) {
2131 dev_dbg(hdmi->dev, "Non-CEA mode used in HDMI\n");
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002132 } else {
2133 dev_dbg(hdmi->dev, "CEA mode used vic=%d\n", hdmi->vic);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002134 }
2135
2136 if ((hdmi->vic == 6) || (hdmi->vic == 7) ||
Andy Yanb5878332014-12-05 14:23:52 +08002137 (hdmi->vic == 21) || (hdmi->vic == 22) ||
2138 (hdmi->vic == 2) || (hdmi->vic == 3) ||
2139 (hdmi->vic == 17) || (hdmi->vic == 18))
Neil Armstrongdef23aa2017-04-04 14:31:57 +02002140 hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_601;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002141 else
Neil Armstrongdef23aa2017-04-04 14:31:57 +02002142 hdmi->hdmi_data.enc_out_encoding = V4L2_YCBCR_ENC_709;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002143
Russell Kingd10ca822015-07-21 11:25:00 +01002144 hdmi->hdmi_data.video_mode.mpixelrepetitionoutput = 0;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002145 hdmi->hdmi_data.video_mode.mpixelrepetitioninput = 0;
2146
Laurent Pinchart29fc8972020-05-26 04:14:51 +03002147 if (hdmi->hdmi_data.enc_in_bus_format == MEDIA_BUS_FMT_FIXED)
Neil Armstrongdef23aa2017-04-04 14:31:57 +02002148 hdmi->hdmi_data.enc_in_bus_format = MEDIA_BUS_FMT_RGB888_1X24;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002149
Neil Armstrongdef23aa2017-04-04 14:31:57 +02002150 /* TOFIX: Get input encoding from plat data or fallback to none */
Neil Armstronge20c29a2017-04-06 11:34:04 +02002151 if (hdmi->plat_data->input_bus_encoding)
Neil Armstrongdef23aa2017-04-04 14:31:57 +02002152 hdmi->hdmi_data.enc_in_encoding =
2153 hdmi->plat_data->input_bus_encoding;
2154 else
2155 hdmi->hdmi_data.enc_in_encoding = V4L2_YCBCR_ENC_DEFAULT;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002156
Neil Armstrong6c3c7192020-03-04 11:40:45 +01002157 if (hdmi->hdmi_data.enc_out_bus_format == MEDIA_BUS_FMT_FIXED)
2158 hdmi->hdmi_data.enc_out_bus_format = MEDIA_BUS_FMT_RGB888_1X24;
Neil Armstrongdef23aa2017-04-04 14:31:57 +02002159
Jernej Skrabec86af3792020-03-05 00:25:11 +01002160 hdmi->hdmi_data.rgb_limited_range = hdmi->sink_is_hdmi &&
2161 drm_default_rgb_quant_range(mode) ==
2162 HDMI_QUANTIZATION_RANGE_LIMITED;
2163
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002164 hdmi->hdmi_data.pix_repet_factor = 0;
2165 hdmi->hdmi_data.hdcp_enable = 0;
2166 hdmi->hdmi_data.video_mode.mdataenablepolarity = true;
2167
2168 /* HDMI Initialization Step B.1 */
Laurent Pinchart7be390d2020-05-26 04:14:56 +03002169 hdmi_av_composer(hdmi, &connector->display_info, mode);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002170
2171 /* HDMI Initializateion Step B.2 */
Laurent Pinchart7be390d2020-05-26 04:14:56 +03002172 ret = hdmi->phy.ops->init(hdmi, hdmi->phy.data,
2173 &connector->display_info,
2174 &hdmi->previous_mode);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002175 if (ret)
2176 return ret;
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002177 hdmi->phy.enabled = true;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002178
2179 /* HDMI Initialization Step B.3 */
Andy Yanb21f4b62014-12-05 14:26:31 +08002180 dw_hdmi_enable_video_path(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002181
Russell Kingf709ec02015-07-21 16:09:39 +01002182 if (hdmi->sink_has_audio) {
2183 dev_dbg(hdmi->dev, "sink has audio support\n");
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002184
2185 /* HDMI Initialization Step E - Configure audio */
2186 hdmi_clk_regenerator_update_pixel_clock(hdmi);
Daniel Kurtzfadfee32019-10-08 18:21:45 +08002187 hdmi_enable_audio_clk(hdmi, hdmi->audio_enable);
Russell Kingf709ec02015-07-21 16:09:39 +01002188 }
2189
2190 /* not for DVI mode */
2191 if (hdmi->sink_is_hdmi) {
2192 dev_dbg(hdmi->dev, "%s HDMI mode\n", __func__);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002193
2194 /* HDMI Initialization Step F - Configure AVI InfoFrame */
Laurent Pinchart81980032020-05-26 04:14:59 +03002195 hdmi_config_AVI(hdmi, connector, mode);
2196 hdmi_config_vendor_specific_infoframe(hdmi, connector, mode);
2197 hdmi_config_drm_infoframe(hdmi, connector);
Russell King05b13422015-07-21 15:35:52 +01002198 } else {
2199 dev_dbg(hdmi->dev, "%s DVI mode\n", __func__);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002200 }
2201
2202 hdmi_video_packetize(hdmi);
2203 hdmi_video_csc(hdmi);
2204 hdmi_video_sample(hdmi);
2205 hdmi_tx_hdcp_config(hdmi);
2206
Andy Yanb21f4b62014-12-05 14:26:31 +08002207 dw_hdmi_clear_overflow(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002208
2209 return 0;
2210}
2211
Andy Yanb21f4b62014-12-05 14:26:31 +08002212static void initialize_hdmi_ih_mutes(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002213{
2214 u8 ih_mute;
2215
2216 /*
2217 * Boot up defaults are:
2218 * HDMI_IH_MUTE = 0x03 (disabled)
2219 * HDMI_IH_MUTE_* = 0x00 (enabled)
2220 *
2221 * Disable top level interrupt bits in HDMI block
2222 */
2223 ih_mute = hdmi_readb(hdmi, HDMI_IH_MUTE) |
2224 HDMI_IH_MUTE_MUTE_WAKEUP_INTERRUPT |
2225 HDMI_IH_MUTE_MUTE_ALL_INTERRUPT;
2226
2227 hdmi_writeb(hdmi, ih_mute, HDMI_IH_MUTE);
2228
2229 /* by default mask all interrupts */
2230 hdmi_writeb(hdmi, 0xff, HDMI_VP_MASK);
2231 hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK0);
2232 hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK1);
2233 hdmi_writeb(hdmi, 0xff, HDMI_FC_MASK2);
2234 hdmi_writeb(hdmi, 0xff, HDMI_PHY_MASK0);
2235 hdmi_writeb(hdmi, 0xff, HDMI_PHY_I2CM_INT_ADDR);
2236 hdmi_writeb(hdmi, 0xff, HDMI_PHY_I2CM_CTLINT_ADDR);
2237 hdmi_writeb(hdmi, 0xff, HDMI_AUD_INT);
2238 hdmi_writeb(hdmi, 0xff, HDMI_AUD_SPDIFINT);
2239 hdmi_writeb(hdmi, 0xff, HDMI_AUD_HBR_MASK);
2240 hdmi_writeb(hdmi, 0xff, HDMI_GP_MASK);
2241 hdmi_writeb(hdmi, 0xff, HDMI_A_APIINTMSK);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002242 hdmi_writeb(hdmi, 0xff, HDMI_I2CM_INT);
2243 hdmi_writeb(hdmi, 0xff, HDMI_I2CM_CTLINT);
2244
2245 /* Disable interrupts in the IH_MUTE_* registers */
2246 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT0);
2247 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT1);
2248 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_FC_STAT2);
2249 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_AS_STAT0);
2250 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_PHY_STAT0);
2251 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_I2CM_STAT0);
2252 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_CEC_STAT0);
2253 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_VP_STAT0);
2254 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_I2CMPHY_STAT0);
2255 hdmi_writeb(hdmi, 0xff, HDMI_IH_MUTE_AHBDMAAUD_STAT0);
2256
2257 /* Enable top level interrupt bits in HDMI block */
2258 ih_mute &= ~(HDMI_IH_MUTE_MUTE_WAKEUP_INTERRUPT |
2259 HDMI_IH_MUTE_MUTE_ALL_INTERRUPT);
2260 hdmi_writeb(hdmi, ih_mute, HDMI_IH_MUTE);
2261}
2262
Andy Yanb21f4b62014-12-05 14:26:31 +08002263static void dw_hdmi_poweron(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002264{
Russell King381f05a2015-06-05 15:25:08 +01002265 hdmi->bridge_is_on = true;
Laurent Pinchart81980032020-05-26 04:14:59 +03002266
2267 /*
2268 * The curr_conn field is guaranteed to be valid here, as this function
2269 * is only be called when !hdmi->disabled.
2270 */
2271 dw_hdmi_setup(hdmi, hdmi->curr_conn, &hdmi->previous_mode);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002272}
2273
Andy Yanb21f4b62014-12-05 14:26:31 +08002274static void dw_hdmi_poweroff(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002275{
Laurent Pinchartf1585f62017-03-06 01:36:15 +02002276 if (hdmi->phy.enabled) {
2277 hdmi->phy.ops->disable(hdmi, hdmi->phy.data);
2278 hdmi->phy.enabled = false;
2279 }
2280
Russell King381f05a2015-06-05 15:25:08 +01002281 hdmi->bridge_is_on = false;
2282}
2283
2284static void dw_hdmi_update_power(struct dw_hdmi *hdmi)
2285{
2286 int force = hdmi->force;
2287
2288 if (hdmi->disabled) {
2289 force = DRM_FORCE_OFF;
2290 } else if (force == DRM_FORCE_UNSPECIFIED) {
Russell Kingaeac23b2015-06-05 13:46:22 +01002291 if (hdmi->rxsense)
Russell King381f05a2015-06-05 15:25:08 +01002292 force = DRM_FORCE_ON;
2293 else
2294 force = DRM_FORCE_OFF;
2295 }
2296
2297 if (force == DRM_FORCE_OFF) {
2298 if (hdmi->bridge_is_on)
2299 dw_hdmi_poweroff(hdmi);
2300 } else {
2301 if (!hdmi->bridge_is_on)
2302 dw_hdmi_poweron(hdmi);
2303 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002304}
2305
Russell Kingaeac23b2015-06-05 13:46:22 +01002306/*
2307 * Adjust the detection of RXSENSE according to whether we have a forced
2308 * connection mode enabled, or whether we have been disabled. There is
2309 * no point processing RXSENSE interrupts if we have a forced connection
2310 * state, or DRM has us disabled.
2311 *
2312 * We also disable rxsense interrupts when we think we're disconnected
2313 * to avoid floating TDMS signals giving false rxsense interrupts.
2314 *
2315 * Note: we still need to listen for HPD interrupts even when DRM has us
2316 * disabled so that we can detect a connect event.
2317 */
2318static void dw_hdmi_update_phy_mask(struct dw_hdmi *hdmi)
2319{
Neil Armstrong386d3292017-04-04 14:31:59 +02002320 if (hdmi->phy.ops->update_hpd)
2321 hdmi->phy.ops->update_hpd(hdmi, hdmi->phy.data,
2322 hdmi->force, hdmi->disabled,
2323 hdmi->rxsense);
Laurent Pincharta23d6262017-04-04 14:31:56 +02002324}
2325
Laurent Pinchartec971aa2020-05-26 04:15:00 +03002326static enum drm_connector_status dw_hdmi_detect(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002327{
Cheng-Yi Chianga9c82d62019-10-28 15:19:25 +08002328 enum drm_connector_status result;
Russell King98dbead2014-04-18 10:46:45 +01002329
Cheng-Yi Chianga9c82d62019-10-28 15:19:25 +08002330 result = hdmi->phy.ops->read_hpd(hdmi, hdmi->phy.data);
2331
2332 mutex_lock(&hdmi->mutex);
2333 if (result != hdmi->last_connector_result) {
2334 dev_dbg(hdmi->dev, "read_hpd result: %d", result);
2335 handle_plugged_change(hdmi,
2336 result == connector_status_connected);
2337 hdmi->last_connector_result = result;
2338 }
2339 mutex_unlock(&hdmi->mutex);
2340
2341 return result;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002342}
2343
Laurent Pinchartec971aa2020-05-26 04:15:00 +03002344static struct edid *dw_hdmi_get_edid(struct dw_hdmi *hdmi,
2345 struct drm_connector *connector)
2346{
2347 struct edid *edid;
2348
2349 if (!hdmi->ddc)
2350 return NULL;
2351
2352 edid = drm_get_edid(connector, hdmi->ddc);
2353 if (!edid) {
2354 dev_dbg(hdmi->dev, "failed to get edid\n");
2355 return NULL;
2356 }
2357
2358 dev_dbg(hdmi->dev, "got edid: width[%d] x height[%d]\n",
2359 edid->width_cm, edid->height_cm);
2360
2361 hdmi->sink_is_hdmi = drm_detect_hdmi_monitor(edid);
2362 hdmi->sink_has_audio = drm_detect_monitor_audio(edid);
2363
2364 return edid;
2365}
2366
2367/* -----------------------------------------------------------------------------
2368 * DRM Connector Operations
2369 */
2370
2371static enum drm_connector_status
2372dw_hdmi_connector_detect(struct drm_connector *connector, bool force)
2373{
2374 struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
2375 connector);
2376 return dw_hdmi_detect(hdmi);
2377}
2378
Andy Yanb21f4b62014-12-05 14:26:31 +08002379static int dw_hdmi_connector_get_modes(struct drm_connector *connector)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002380{
Andy Yanb21f4b62014-12-05 14:26:31 +08002381 struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002382 connector);
2383 struct edid *edid;
Laurent Pinchartec971aa2020-05-26 04:15:00 +03002384 int ret;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002385
Laurent Pinchartec971aa2020-05-26 04:15:00 +03002386 edid = dw_hdmi_get_edid(hdmi, connector);
2387 if (!edid)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002388 return 0;
2389
Laurent Pinchartec971aa2020-05-26 04:15:00 +03002390 drm_connector_update_edid_property(connector, edid);
2391 cec_notifier_set_phys_addr_from_edid(hdmi->cec_notifier, edid);
2392 ret = drm_add_edid_modes(connector, edid);
2393 kfree(edid);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002394
Doug Anderson6c7e66e2015-06-04 11:04:36 -07002395 return ret;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002396}
2397
Jonas Karlman7cea8552019-10-07 19:21:48 +00002398static int dw_hdmi_connector_atomic_check(struct drm_connector *connector,
2399 struct drm_atomic_state *state)
2400{
2401 struct drm_connector_state *old_state =
2402 drm_atomic_get_old_connector_state(state, connector);
2403 struct drm_connector_state *new_state =
2404 drm_atomic_get_new_connector_state(state, connector);
2405 struct drm_crtc *crtc = new_state->crtc;
2406 struct drm_crtc_state *crtc_state;
2407
2408 if (!crtc)
2409 return 0;
2410
Maxime Ripard72921cd2021-04-30 11:44:48 +02002411 if (!drm_connector_atomic_hdr_metadata_equal(old_state, new_state)) {
Jonas Karlman7cea8552019-10-07 19:21:48 +00002412 crtc_state = drm_atomic_get_crtc_state(state, crtc);
2413 if (IS_ERR(crtc_state))
2414 return PTR_ERR(crtc_state);
2415
2416 crtc_state->mode_changed = true;
2417 }
2418
2419 return 0;
2420}
2421
Russell King381f05a2015-06-05 15:25:08 +01002422static void dw_hdmi_connector_force(struct drm_connector *connector)
2423{
2424 struct dw_hdmi *hdmi = container_of(connector, struct dw_hdmi,
2425 connector);
2426
2427 mutex_lock(&hdmi->mutex);
2428 hdmi->force = connector->force;
2429 dw_hdmi_update_power(hdmi);
Russell Kingaeac23b2015-06-05 13:46:22 +01002430 dw_hdmi_update_phy_mask(hdmi);
Russell King381f05a2015-06-05 15:25:08 +01002431 mutex_unlock(&hdmi->mutex);
2432}
2433
Ville Syrjälädae91e42015-12-15 12:21:02 +01002434static const struct drm_connector_funcs dw_hdmi_connector_funcs = {
Mark Yao2c5b2cc2015-11-30 18:33:40 +08002435 .fill_modes = drm_helper_probe_single_connector_modes,
2436 .detect = dw_hdmi_connector_detect,
Marek Vasutfdd83262016-10-05 16:31:33 +02002437 .destroy = drm_connector_cleanup,
Mark Yao2c5b2cc2015-11-30 18:33:40 +08002438 .force = dw_hdmi_connector_force,
2439 .reset = drm_atomic_helper_connector_reset,
2440 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
2441 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
2442};
2443
Ville Syrjälädae91e42015-12-15 12:21:02 +01002444static const struct drm_connector_helper_funcs dw_hdmi_connector_helper_funcs = {
Andy Yanb21f4b62014-12-05 14:26:31 +08002445 .get_modes = dw_hdmi_connector_get_modes,
Jonas Karlman7cea8552019-10-07 19:21:48 +00002446 .atomic_check = dw_hdmi_connector_atomic_check,
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002447};
2448
Laurent Pinchart3f588fd2020-05-26 04:14:57 +03002449static int dw_hdmi_connector_create(struct dw_hdmi *hdmi)
2450{
2451 struct drm_connector *connector = &hdmi->connector;
2452 struct cec_connector_info conn_info;
2453 struct cec_notifier *notifier;
2454
2455 if (hdmi->version >= 0x200a)
2456 connector->ycbcr_420_allowed =
2457 hdmi->plat_data->ycbcr_420_allowed;
2458 else
2459 connector->ycbcr_420_allowed = false;
2460
2461 connector->interlace_allowed = 1;
2462 connector->polled = DRM_CONNECTOR_POLL_HPD;
2463
2464 drm_connector_helper_add(connector, &dw_hdmi_connector_helper_funcs);
2465
2466 drm_connector_init_with_ddc(hdmi->bridge.dev, connector,
2467 &dw_hdmi_connector_funcs,
2468 DRM_MODE_CONNECTOR_HDMIA,
2469 hdmi->ddc);
2470
2471 /*
2472 * drm_connector_attach_max_bpc_property() requires the
2473 * connector to have a state.
2474 */
2475 drm_atomic_helper_connector_reset(connector);
2476
2477 drm_connector_attach_max_bpc_property(connector, 8, 16);
2478
2479 if (hdmi->version >= 0x200a && hdmi->plat_data->use_drm_infoframe)
Maxime Riparde057b522021-04-30 11:44:47 +02002480 drm_connector_attach_hdr_output_metadata_property(connector);
Laurent Pinchart3f588fd2020-05-26 04:14:57 +03002481
2482 drm_connector_attach_encoder(connector, hdmi->bridge.encoder);
2483
2484 cec_fill_conn_info_from_drm(&conn_info, connector);
2485
2486 notifier = cec_notifier_conn_register(hdmi->dev, NULL, &conn_info);
2487 if (!notifier)
2488 return -ENOMEM;
2489
2490 mutex_lock(&hdmi->cec_notifier_mutex);
2491 hdmi->cec_notifier = notifier;
2492 mutex_unlock(&hdmi->cec_notifier_mutex);
2493
2494 return 0;
2495}
2496
2497/* -----------------------------------------------------------------------------
2498 * DRM Bridge Operations
2499 */
2500
Neil Armstrong6c3c7192020-03-04 11:40:45 +01002501/*
2502 * Possible output formats :
2503 * - MEDIA_BUS_FMT_UYYVYY16_0_5X48,
2504 * - MEDIA_BUS_FMT_UYYVYY12_0_5X36,
2505 * - MEDIA_BUS_FMT_UYYVYY10_0_5X30,
2506 * - MEDIA_BUS_FMT_UYYVYY8_0_5X24,
2507 * - MEDIA_BUS_FMT_YUV16_1X48,
2508 * - MEDIA_BUS_FMT_RGB161616_1X48,
2509 * - MEDIA_BUS_FMT_UYVY12_1X24,
2510 * - MEDIA_BUS_FMT_YUV12_1X36,
2511 * - MEDIA_BUS_FMT_RGB121212_1X36,
2512 * - MEDIA_BUS_FMT_UYVY10_1X20,
2513 * - MEDIA_BUS_FMT_YUV10_1X30,
2514 * - MEDIA_BUS_FMT_RGB101010_1X30,
2515 * - MEDIA_BUS_FMT_UYVY8_1X16,
2516 * - MEDIA_BUS_FMT_YUV8_1X24,
2517 * - MEDIA_BUS_FMT_RGB888_1X24,
2518 */
2519
2520/* Can return a maximum of 11 possible output formats for a mode/connector */
2521#define MAX_OUTPUT_SEL_FORMATS 11
2522
2523static u32 *dw_hdmi_bridge_atomic_get_output_bus_fmts(struct drm_bridge *bridge,
2524 struct drm_bridge_state *bridge_state,
2525 struct drm_crtc_state *crtc_state,
2526 struct drm_connector_state *conn_state,
2527 unsigned int *num_output_fmts)
2528{
2529 struct drm_connector *conn = conn_state->connector;
2530 struct drm_display_info *info = &conn->display_info;
2531 struct drm_display_mode *mode = &crtc_state->mode;
2532 u8 max_bpc = conn_state->max_requested_bpc;
2533 bool is_hdmi2_sink = info->hdmi.scdc.supported ||
2534 (info->color_formats & DRM_COLOR_FORMAT_YCRCB420);
2535 u32 *output_fmts;
2536 unsigned int i = 0;
2537
2538 *num_output_fmts = 0;
2539
2540 output_fmts = kcalloc(MAX_OUTPUT_SEL_FORMATS, sizeof(*output_fmts),
2541 GFP_KERNEL);
2542 if (!output_fmts)
2543 return NULL;
2544
2545 /* If dw-hdmi is the only bridge, avoid negociating with ourselves */
2546 if (list_is_singular(&bridge->encoder->bridge_chain)) {
2547 *num_output_fmts = 1;
2548 output_fmts[0] = MEDIA_BUS_FMT_FIXED;
2549
2550 return output_fmts;
2551 }
2552
2553 /*
2554 * If the current mode enforces 4:2:0, force the output but format
2555 * to 4:2:0 and do not add the YUV422/444/RGB formats
2556 */
2557 if (conn->ycbcr_420_allowed &&
2558 (drm_mode_is_420_only(info, mode) ||
2559 (is_hdmi2_sink && drm_mode_is_420_also(info, mode)))) {
2560
2561 /* Order bus formats from 16bit to 8bit if supported */
2562 if (max_bpc >= 16 && info->bpc == 16 &&
2563 (info->hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_48))
2564 output_fmts[i++] = MEDIA_BUS_FMT_UYYVYY16_0_5X48;
2565
2566 if (max_bpc >= 12 && info->bpc >= 12 &&
2567 (info->hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_36))
2568 output_fmts[i++] = MEDIA_BUS_FMT_UYYVYY12_0_5X36;
2569
2570 if (max_bpc >= 10 && info->bpc >= 10 &&
2571 (info->hdmi.y420_dc_modes & DRM_EDID_YCBCR420_DC_30))
2572 output_fmts[i++] = MEDIA_BUS_FMT_UYYVYY10_0_5X30;
2573
2574 /* Default 8bit fallback */
2575 output_fmts[i++] = MEDIA_BUS_FMT_UYYVYY8_0_5X24;
2576
2577 *num_output_fmts = i;
2578
2579 return output_fmts;
2580 }
2581
2582 /*
2583 * Order bus formats from 16bit to 8bit and from YUV422 to RGB
2584 * if supported. In any case the default RGB888 format is added
2585 */
2586
2587 if (max_bpc >= 16 && info->bpc == 16) {
2588 if (info->color_formats & DRM_COLOR_FORMAT_YCRCB444)
2589 output_fmts[i++] = MEDIA_BUS_FMT_YUV16_1X48;
2590
2591 output_fmts[i++] = MEDIA_BUS_FMT_RGB161616_1X48;
2592 }
2593
2594 if (max_bpc >= 12 && info->bpc >= 12) {
2595 if (info->color_formats & DRM_COLOR_FORMAT_YCRCB422)
2596 output_fmts[i++] = MEDIA_BUS_FMT_UYVY12_1X24;
2597
2598 if (info->color_formats & DRM_COLOR_FORMAT_YCRCB444)
2599 output_fmts[i++] = MEDIA_BUS_FMT_YUV12_1X36;
2600
2601 output_fmts[i++] = MEDIA_BUS_FMT_RGB121212_1X36;
2602 }
2603
2604 if (max_bpc >= 10 && info->bpc >= 10) {
2605 if (info->color_formats & DRM_COLOR_FORMAT_YCRCB422)
2606 output_fmts[i++] = MEDIA_BUS_FMT_UYVY10_1X20;
2607
2608 if (info->color_formats & DRM_COLOR_FORMAT_YCRCB444)
2609 output_fmts[i++] = MEDIA_BUS_FMT_YUV10_1X30;
2610
2611 output_fmts[i++] = MEDIA_BUS_FMT_RGB101010_1X30;
2612 }
2613
2614 if (info->color_formats & DRM_COLOR_FORMAT_YCRCB422)
2615 output_fmts[i++] = MEDIA_BUS_FMT_UYVY8_1X16;
2616
2617 if (info->color_formats & DRM_COLOR_FORMAT_YCRCB444)
2618 output_fmts[i++] = MEDIA_BUS_FMT_YUV8_1X24;
2619
2620 /* Default 8bit RGB fallback */
2621 output_fmts[i++] = MEDIA_BUS_FMT_RGB888_1X24;
2622
2623 *num_output_fmts = i;
2624
2625 return output_fmts;
2626}
2627
2628/*
2629 * Possible input formats :
2630 * - MEDIA_BUS_FMT_RGB888_1X24
2631 * - MEDIA_BUS_FMT_YUV8_1X24
2632 * - MEDIA_BUS_FMT_UYVY8_1X16
2633 * - MEDIA_BUS_FMT_UYYVYY8_0_5X24
2634 * - MEDIA_BUS_FMT_RGB101010_1X30
2635 * - MEDIA_BUS_FMT_YUV10_1X30
2636 * - MEDIA_BUS_FMT_UYVY10_1X20
2637 * - MEDIA_BUS_FMT_UYYVYY10_0_5X30
2638 * - MEDIA_BUS_FMT_RGB121212_1X36
2639 * - MEDIA_BUS_FMT_YUV12_1X36
2640 * - MEDIA_BUS_FMT_UYVY12_1X24
2641 * - MEDIA_BUS_FMT_UYYVYY12_0_5X36
2642 * - MEDIA_BUS_FMT_RGB161616_1X48
2643 * - MEDIA_BUS_FMT_YUV16_1X48
2644 * - MEDIA_BUS_FMT_UYYVYY16_0_5X48
2645 */
2646
2647/* Can return a maximum of 3 possible input formats for an output format */
2648#define MAX_INPUT_SEL_FORMATS 3
2649
2650static u32 *dw_hdmi_bridge_atomic_get_input_bus_fmts(struct drm_bridge *bridge,
2651 struct drm_bridge_state *bridge_state,
2652 struct drm_crtc_state *crtc_state,
2653 struct drm_connector_state *conn_state,
2654 u32 output_fmt,
2655 unsigned int *num_input_fmts)
2656{
2657 u32 *input_fmts;
2658 unsigned int i = 0;
2659
2660 *num_input_fmts = 0;
2661
2662 input_fmts = kcalloc(MAX_INPUT_SEL_FORMATS, sizeof(*input_fmts),
2663 GFP_KERNEL);
2664 if (!input_fmts)
2665 return NULL;
2666
2667 switch (output_fmt) {
2668 /* If MEDIA_BUS_FMT_FIXED is tested, return default bus format */
2669 case MEDIA_BUS_FMT_FIXED:
2670 input_fmts[i++] = MEDIA_BUS_FMT_RGB888_1X24;
2671 break;
2672 /* 8bit */
2673 case MEDIA_BUS_FMT_RGB888_1X24:
2674 input_fmts[i++] = MEDIA_BUS_FMT_RGB888_1X24;
2675 input_fmts[i++] = MEDIA_BUS_FMT_YUV8_1X24;
2676 input_fmts[i++] = MEDIA_BUS_FMT_UYVY8_1X16;
2677 break;
2678 case MEDIA_BUS_FMT_YUV8_1X24:
2679 input_fmts[i++] = MEDIA_BUS_FMT_YUV8_1X24;
2680 input_fmts[i++] = MEDIA_BUS_FMT_UYVY8_1X16;
2681 input_fmts[i++] = MEDIA_BUS_FMT_RGB888_1X24;
2682 break;
2683 case MEDIA_BUS_FMT_UYVY8_1X16:
2684 input_fmts[i++] = MEDIA_BUS_FMT_UYVY8_1X16;
2685 input_fmts[i++] = MEDIA_BUS_FMT_YUV8_1X24;
2686 input_fmts[i++] = MEDIA_BUS_FMT_RGB888_1X24;
2687 break;
2688
2689 /* 10bit */
2690 case MEDIA_BUS_FMT_RGB101010_1X30:
2691 input_fmts[i++] = MEDIA_BUS_FMT_RGB101010_1X30;
2692 input_fmts[i++] = MEDIA_BUS_FMT_YUV10_1X30;
2693 input_fmts[i++] = MEDIA_BUS_FMT_UYVY10_1X20;
2694 break;
2695 case MEDIA_BUS_FMT_YUV10_1X30:
2696 input_fmts[i++] = MEDIA_BUS_FMT_YUV10_1X30;
2697 input_fmts[i++] = MEDIA_BUS_FMT_UYVY10_1X20;
2698 input_fmts[i++] = MEDIA_BUS_FMT_RGB101010_1X30;
2699 break;
2700 case MEDIA_BUS_FMT_UYVY10_1X20:
2701 input_fmts[i++] = MEDIA_BUS_FMT_UYVY10_1X20;
2702 input_fmts[i++] = MEDIA_BUS_FMT_YUV10_1X30;
2703 input_fmts[i++] = MEDIA_BUS_FMT_RGB101010_1X30;
2704 break;
2705
2706 /* 12bit */
2707 case MEDIA_BUS_FMT_RGB121212_1X36:
2708 input_fmts[i++] = MEDIA_BUS_FMT_RGB121212_1X36;
2709 input_fmts[i++] = MEDIA_BUS_FMT_YUV12_1X36;
2710 input_fmts[i++] = MEDIA_BUS_FMT_UYVY12_1X24;
2711 break;
2712 case MEDIA_BUS_FMT_YUV12_1X36:
2713 input_fmts[i++] = MEDIA_BUS_FMT_YUV12_1X36;
2714 input_fmts[i++] = MEDIA_BUS_FMT_UYVY12_1X24;
2715 input_fmts[i++] = MEDIA_BUS_FMT_RGB121212_1X36;
2716 break;
2717 case MEDIA_BUS_FMT_UYVY12_1X24:
2718 input_fmts[i++] = MEDIA_BUS_FMT_UYVY12_1X24;
2719 input_fmts[i++] = MEDIA_BUS_FMT_YUV12_1X36;
2720 input_fmts[i++] = MEDIA_BUS_FMT_RGB121212_1X36;
2721 break;
2722
2723 /* 16bit */
2724 case MEDIA_BUS_FMT_RGB161616_1X48:
2725 input_fmts[i++] = MEDIA_BUS_FMT_RGB161616_1X48;
2726 input_fmts[i++] = MEDIA_BUS_FMT_YUV16_1X48;
2727 break;
2728 case MEDIA_BUS_FMT_YUV16_1X48:
2729 input_fmts[i++] = MEDIA_BUS_FMT_YUV16_1X48;
2730 input_fmts[i++] = MEDIA_BUS_FMT_RGB161616_1X48;
2731 break;
2732
2733 /*YUV 4:2:0 */
2734 case MEDIA_BUS_FMT_UYYVYY8_0_5X24:
2735 case MEDIA_BUS_FMT_UYYVYY10_0_5X30:
2736 case MEDIA_BUS_FMT_UYYVYY12_0_5X36:
2737 case MEDIA_BUS_FMT_UYYVYY16_0_5X48:
2738 input_fmts[i++] = output_fmt;
2739 break;
2740 }
2741
2742 *num_input_fmts = i;
2743
2744 if (*num_input_fmts == 0) {
2745 kfree(input_fmts);
2746 input_fmts = NULL;
2747 }
2748
2749 return input_fmts;
2750}
2751
2752static int dw_hdmi_bridge_atomic_check(struct drm_bridge *bridge,
2753 struct drm_bridge_state *bridge_state,
2754 struct drm_crtc_state *crtc_state,
2755 struct drm_connector_state *conn_state)
2756{
2757 struct dw_hdmi *hdmi = bridge->driver_private;
2758
2759 hdmi->hdmi_data.enc_out_bus_format =
2760 bridge_state->output_bus_cfg.format;
2761
2762 hdmi->hdmi_data.enc_in_bus_format =
2763 bridge_state->input_bus_cfg.format;
2764
2765 dev_dbg(hdmi->dev, "input format 0x%04x, output format 0x%04x\n",
2766 bridge_state->input_bus_cfg.format,
2767 bridge_state->output_bus_cfg.format);
2768
2769 return 0;
2770}
2771
Laurent Pincharta25b9882020-02-26 13:24:29 +02002772static int dw_hdmi_bridge_attach(struct drm_bridge *bridge,
2773 enum drm_bridge_attach_flags flags)
Laurent Pinchartd2ae94a2017-01-17 10:28:59 +02002774{
2775 struct dw_hdmi *hdmi = bridge->driver_private;
Laurent Pinchartd2ae94a2017-01-17 10:28:59 +02002776
Laurent Pinchartec971aa2020-05-26 04:15:00 +03002777 if (flags & DRM_BRIDGE_ATTACH_NO_CONNECTOR)
2778 return 0;
Laurent Pincharta25b9882020-02-26 13:24:29 +02002779
Laurent Pinchart3f588fd2020-05-26 04:14:57 +03002780 return dw_hdmi_connector_create(hdmi);
Laurent Pinchartd2ae94a2017-01-17 10:28:59 +02002781}
2782
Dariusz Marcinkiewicz7070fe72019-08-14 12:45:06 +02002783static void dw_hdmi_bridge_detach(struct drm_bridge *bridge)
2784{
2785 struct dw_hdmi *hdmi = bridge->driver_private;
2786
2787 mutex_lock(&hdmi->cec_notifier_mutex);
2788 cec_notifier_conn_unregister(hdmi->cec_notifier);
2789 hdmi->cec_notifier = NULL;
2790 mutex_unlock(&hdmi->cec_notifier_mutex);
2791}
2792
Jose Abreub0febde2017-05-25 15:19:19 +01002793static enum drm_mode_status
2794dw_hdmi_bridge_mode_valid(struct drm_bridge *bridge,
Laurent Pinchart12c683e2020-05-26 04:14:48 +03002795 const struct drm_display_info *info,
Jose Abreub0febde2017-05-25 15:19:19 +01002796 const struct drm_display_mode *mode)
Romain Perier6ce2ca52017-04-07 14:17:43 +02002797{
2798 struct dw_hdmi *hdmi = bridge->driver_private;
Laurent Pinchart96591a42020-05-26 04:14:49 +03002799 const struct dw_hdmi_plat_data *pdata = hdmi->plat_data;
Jose Abreub0febde2017-05-25 15:19:19 +01002800 enum drm_mode_status mode_status = MODE_OK;
Romain Perier6ce2ca52017-04-07 14:17:43 +02002801
Jose Abreub0febde2017-05-25 15:19:19 +01002802 /* We don't support double-clocked modes */
2803 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
2804 return MODE_BAD;
2805
Laurent Pinchart96591a42020-05-26 04:14:49 +03002806 if (pdata->mode_valid)
Laurent Pinchartaf05bba2020-05-26 04:14:53 +03002807 mode_status = pdata->mode_valid(hdmi, pdata->priv_data, info,
2808 mode);
Jose Abreub0febde2017-05-25 15:19:19 +01002809
2810 return mode_status;
Romain Perier6ce2ca52017-04-07 14:17:43 +02002811}
2812
Laurent Pinchartfd30b382017-01-17 10:28:58 +02002813static void dw_hdmi_bridge_mode_set(struct drm_bridge *bridge,
Laurent Pinchart63f8f3b2018-04-06 17:39:01 +03002814 const struct drm_display_mode *orig_mode,
2815 const struct drm_display_mode *mode)
Laurent Pinchartfd30b382017-01-17 10:28:58 +02002816{
2817 struct dw_hdmi *hdmi = bridge->driver_private;
2818
2819 mutex_lock(&hdmi->mutex);
2820
2821 /* Store the display mode for plugin/DKMS poweron events */
2822 memcpy(&hdmi->previous_mode, mode, sizeof(hdmi->previous_mode));
2823
2824 mutex_unlock(&hdmi->mutex);
2825}
2826
Laurent Pinchartca7b6b72020-05-26 04:14:58 +03002827static void dw_hdmi_bridge_atomic_disable(struct drm_bridge *bridge,
2828 struct drm_bridge_state *old_state)
Laurent Pinchartfd30b382017-01-17 10:28:58 +02002829{
2830 struct dw_hdmi *hdmi = bridge->driver_private;
2831
2832 mutex_lock(&hdmi->mutex);
2833 hdmi->disabled = true;
Laurent Pinchartca7b6b72020-05-26 04:14:58 +03002834 hdmi->curr_conn = NULL;
Laurent Pinchartfd30b382017-01-17 10:28:58 +02002835 dw_hdmi_update_power(hdmi);
2836 dw_hdmi_update_phy_mask(hdmi);
2837 mutex_unlock(&hdmi->mutex);
2838}
2839
Laurent Pinchartca7b6b72020-05-26 04:14:58 +03002840static void dw_hdmi_bridge_atomic_enable(struct drm_bridge *bridge,
2841 struct drm_bridge_state *old_state)
Laurent Pinchartfd30b382017-01-17 10:28:58 +02002842{
2843 struct dw_hdmi *hdmi = bridge->driver_private;
Laurent Pinchartca7b6b72020-05-26 04:14:58 +03002844 struct drm_atomic_state *state = old_state->base.state;
2845 struct drm_connector *connector;
2846
2847 connector = drm_atomic_get_new_connector_for_encoder(state,
2848 bridge->encoder);
Laurent Pinchartfd30b382017-01-17 10:28:58 +02002849
2850 mutex_lock(&hdmi->mutex);
2851 hdmi->disabled = false;
Laurent Pinchartca7b6b72020-05-26 04:14:58 +03002852 hdmi->curr_conn = connector;
Laurent Pinchartfd30b382017-01-17 10:28:58 +02002853 dw_hdmi_update_power(hdmi);
2854 dw_hdmi_update_phy_mask(hdmi);
2855 mutex_unlock(&hdmi->mutex);
2856}
2857
Laurent Pinchartec971aa2020-05-26 04:15:00 +03002858static enum drm_connector_status dw_hdmi_bridge_detect(struct drm_bridge *bridge)
2859{
2860 struct dw_hdmi *hdmi = bridge->driver_private;
2861
2862 return dw_hdmi_detect(hdmi);
2863}
2864
2865static struct edid *dw_hdmi_bridge_get_edid(struct drm_bridge *bridge,
2866 struct drm_connector *connector)
2867{
2868 struct dw_hdmi *hdmi = bridge->driver_private;
2869
2870 return dw_hdmi_get_edid(hdmi, connector);
2871}
2872
Ville Syrjälädae91e42015-12-15 12:21:02 +01002873static const struct drm_bridge_funcs dw_hdmi_bridge_funcs = {
Neil Armstronga5cf9e2e2020-03-04 11:40:44 +01002874 .atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state,
2875 .atomic_destroy_state = drm_atomic_helper_bridge_destroy_state,
2876 .atomic_reset = drm_atomic_helper_bridge_reset,
Laurent Pinchartd2ae94a2017-01-17 10:28:59 +02002877 .attach = dw_hdmi_bridge_attach,
Dariusz Marcinkiewicz7070fe72019-08-14 12:45:06 +02002878 .detach = dw_hdmi_bridge_detach,
Neil Armstrong6c3c7192020-03-04 11:40:45 +01002879 .atomic_check = dw_hdmi_bridge_atomic_check,
2880 .atomic_get_output_bus_fmts = dw_hdmi_bridge_atomic_get_output_bus_fmts,
2881 .atomic_get_input_bus_fmts = dw_hdmi_bridge_atomic_get_input_bus_fmts,
Laurent Pinchartca7b6b72020-05-26 04:14:58 +03002882 .atomic_enable = dw_hdmi_bridge_atomic_enable,
2883 .atomic_disable = dw_hdmi_bridge_atomic_disable,
Andy Yanb21f4b62014-12-05 14:26:31 +08002884 .mode_set = dw_hdmi_bridge_mode_set,
Jose Abreub0febde2017-05-25 15:19:19 +01002885 .mode_valid = dw_hdmi_bridge_mode_valid,
Laurent Pinchartec971aa2020-05-26 04:15:00 +03002886 .detect = dw_hdmi_bridge_detect,
2887 .get_edid = dw_hdmi_bridge_get_edid,
Andy Yan3d1b35a2014-12-05 14:25:05 +08002888};
2889
Laurent Pinchart3f588fd2020-05-26 04:14:57 +03002890/* -----------------------------------------------------------------------------
2891 * IRQ Handling
2892 */
2893
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002894static irqreturn_t dw_hdmi_i2c_irq(struct dw_hdmi *hdmi)
2895{
2896 struct dw_hdmi_i2c *i2c = hdmi->i2c;
2897 unsigned int stat;
2898
2899 stat = hdmi_readb(hdmi, HDMI_IH_I2CM_STAT0);
2900 if (!stat)
2901 return IRQ_NONE;
2902
2903 hdmi_writeb(hdmi, stat, HDMI_IH_I2CM_STAT0);
2904
2905 i2c->stat = stat;
2906
2907 complete(&i2c->cmp);
2908
2909 return IRQ_HANDLED;
2910}
2911
Andy Yanb21f4b62014-12-05 14:26:31 +08002912static irqreturn_t dw_hdmi_hardirq(int irq, void *dev_id)
Russell Kingd94905e2013-11-03 22:23:24 +00002913{
Andy Yanb21f4b62014-12-05 14:26:31 +08002914 struct dw_hdmi *hdmi = dev_id;
Russell Kingd94905e2013-11-03 22:23:24 +00002915 u8 intr_stat;
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002916 irqreturn_t ret = IRQ_NONE;
2917
2918 if (hdmi->i2c)
2919 ret = dw_hdmi_i2c_irq(hdmi);
Russell Kingd94905e2013-11-03 22:23:24 +00002920
2921 intr_stat = hdmi_readb(hdmi, HDMI_IH_PHY_STAT0);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002922 if (intr_stat) {
Russell Kingd94905e2013-11-03 22:23:24 +00002923 hdmi_writeb(hdmi, ~0, HDMI_IH_MUTE_PHY_STAT0);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002924 return IRQ_WAKE_THREAD;
2925 }
Russell Kingd94905e2013-11-03 22:23:24 +00002926
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03002927 return ret;
Russell Kingd94905e2013-11-03 22:23:24 +00002928}
2929
Neil Armstrongc32048d2018-05-30 11:43:58 +02002930void dw_hdmi_setup_rx_sense(struct dw_hdmi *hdmi, bool hpd, bool rx_sense)
Neil Armstrong386d3292017-04-04 14:31:59 +02002931{
2932 mutex_lock(&hdmi->mutex);
2933
2934 if (!hdmi->force) {
2935 /*
2936 * If the RX sense status indicates we're disconnected,
2937 * clear the software rxsense status.
2938 */
2939 if (!rx_sense)
2940 hdmi->rxsense = false;
2941
2942 /*
2943 * Only set the software rxsense status when both
2944 * rxsense and hpd indicates we're connected.
2945 * This avoids what seems to be bad behaviour in
2946 * at least iMX6S versions of the phy.
2947 */
2948 if (hpd)
2949 hdmi->rxsense = true;
2950
2951 dw_hdmi_update_power(hdmi);
2952 dw_hdmi_update_phy_mask(hdmi);
2953 }
2954 mutex_unlock(&hdmi->mutex);
2955}
Neil Armstrong386d3292017-04-04 14:31:59 +02002956EXPORT_SYMBOL_GPL(dw_hdmi_setup_rx_sense);
2957
Andy Yanb21f4b62014-12-05 14:26:31 +08002958static irqreturn_t dw_hdmi_irq(int irq, void *dev_id)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002959{
Andy Yanb21f4b62014-12-05 14:26:31 +08002960 struct dw_hdmi *hdmi = dev_id;
Russell Kingaeac23b2015-06-05 13:46:22 +01002961 u8 intr_stat, phy_int_pol, phy_pol_mask, phy_stat;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002962
2963 intr_stat = hdmi_readb(hdmi, HDMI_IH_PHY_STAT0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002964 phy_int_pol = hdmi_readb(hdmi, HDMI_PHY_POL0);
Russell Kingaeac23b2015-06-05 13:46:22 +01002965 phy_stat = hdmi_readb(hdmi, HDMI_PHY_STAT0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02002966
Russell Kingaeac23b2015-06-05 13:46:22 +01002967 phy_pol_mask = 0;
2968 if (intr_stat & HDMI_IH_PHY_STAT0_HPD)
2969 phy_pol_mask |= HDMI_PHY_HPD;
2970 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE0)
2971 phy_pol_mask |= HDMI_PHY_RX_SENSE0;
2972 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE1)
2973 phy_pol_mask |= HDMI_PHY_RX_SENSE1;
2974 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE2)
2975 phy_pol_mask |= HDMI_PHY_RX_SENSE2;
2976 if (intr_stat & HDMI_IH_PHY_STAT0_RX_SENSE3)
2977 phy_pol_mask |= HDMI_PHY_RX_SENSE3;
2978
2979 if (phy_pol_mask)
2980 hdmi_modb(hdmi, ~phy_int_pol, phy_pol_mask, HDMI_PHY_POL0);
2981
2982 /*
2983 * RX sense tells us whether the TDMS transmitters are detecting
2984 * load - in other words, there's something listening on the
2985 * other end of the link. Use this to decide whether we should
2986 * power on the phy as HPD may be toggled by the sink to merely
2987 * ask the source to re-read the EDID.
2988 */
2989 if (intr_stat &
Russell Kinge84b8d72017-07-31 15:29:41 +01002990 (HDMI_IH_PHY_STAT0_RX_SENSE | HDMI_IH_PHY_STAT0_HPD)) {
Neil Armstrongc32048d2018-05-30 11:43:58 +02002991 dw_hdmi_setup_rx_sense(hdmi,
2992 phy_stat & HDMI_PHY_HPD,
2993 phy_stat & HDMI_PHY_RX_SENSE);
Russell Kingaeac23b2015-06-05 13:46:22 +01002994
Dariusz Marcinkiewicz7070fe72019-08-14 12:45:06 +02002995 if ((phy_stat & (HDMI_PHY_RX_SENSE | HDMI_PHY_HPD)) == 0) {
2996 mutex_lock(&hdmi->cec_notifier_mutex);
2997 cec_notifier_phys_addr_invalidate(hdmi->cec_notifier);
2998 mutex_unlock(&hdmi->cec_notifier_mutex);
2999 }
Russell Kinge84b8d72017-07-31 15:29:41 +01003000 }
3001
Russell Kingaeac23b2015-06-05 13:46:22 +01003002 if (intr_stat & HDMI_IH_PHY_STAT0_HPD) {
Laurent Pinchartec971aa2020-05-26 04:15:00 +03003003 enum drm_connector_status status = phy_int_pol & HDMI_PHY_HPD
3004 ? connector_status_connected
3005 : connector_status_disconnected;
3006
Russell Kingaeac23b2015-06-05 13:46:22 +01003007 dev_dbg(hdmi->dev, "EVENT=%s\n",
Laurent Pinchartec971aa2020-05-26 04:15:00 +03003008 status == connector_status_connected ?
3009 "plugin" : "plugout");
3010
3011 if (hdmi->bridge.dev) {
Laurent Pinchartba5d7e62017-01-17 10:28:56 +02003012 drm_helper_hpd_irq_event(hdmi->bridge.dev);
Laurent Pinchartec971aa2020-05-26 04:15:00 +03003013 drm_bridge_hpd_notify(&hdmi->bridge, status);
3014 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003015 }
3016
3017 hdmi_writeb(hdmi, intr_stat, HDMI_IH_PHY_STAT0);
Russell Kingaeac23b2015-06-05 13:46:22 +01003018 hdmi_writeb(hdmi, ~(HDMI_IH_PHY_STAT0_HPD | HDMI_IH_PHY_STAT0_RX_SENSE),
3019 HDMI_IH_MUTE_PHY_STAT0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003020
3021 return IRQ_HANDLED;
3022}
3023
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003024static const struct dw_hdmi_phy_data dw_hdmi_phys[] = {
3025 {
3026 .type = DW_HDMI_PHY_DWC_HDMI_TX_PHY,
3027 .name = "DWC HDMI TX PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02003028 .gen = 1,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003029 }, {
3030 .type = DW_HDMI_PHY_DWC_MHL_PHY_HEAC,
3031 .name = "DWC MHL PHY + HEAC PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02003032 .gen = 2,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003033 .has_svsret = true,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02003034 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003035 }, {
3036 .type = DW_HDMI_PHY_DWC_MHL_PHY,
3037 .name = "DWC MHL PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02003038 .gen = 2,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003039 .has_svsret = true,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02003040 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003041 }, {
3042 .type = DW_HDMI_PHY_DWC_HDMI_3D_TX_PHY_HEAC,
3043 .name = "DWC HDMI 3D TX PHY + HEAC PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02003044 .gen = 2,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02003045 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003046 }, {
3047 .type = DW_HDMI_PHY_DWC_HDMI_3D_TX_PHY,
3048 .name = "DWC HDMI 3D TX PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02003049 .gen = 2,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02003050 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003051 }, {
3052 .type = DW_HDMI_PHY_DWC_HDMI20_TX_PHY,
3053 .name = "DWC HDMI 2.0 TX PHY",
Laurent Pinchartb0e583e2017-03-06 01:35:39 +02003054 .gen = 2,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003055 .has_svsret = true,
Jose Abreuc93f6092017-06-23 10:36:44 +01003056 .configure = hdmi_phy_configure_dwc_hdmi_3d_tx,
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02003057 }, {
3058 .type = DW_HDMI_PHY_VENDOR_PHY,
3059 .name = "Vendor PHY",
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003060 }
3061};
3062
3063static int dw_hdmi_detect_phy(struct dw_hdmi *hdmi)
3064{
3065 unsigned int i;
3066 u8 phy_type;
3067
Heiko Stuebner8faff372018-09-12 14:47:35 +02003068 phy_type = hdmi->plat_data->phy_force_vendor ?
3069 DW_HDMI_PHY_VENDOR_PHY :
3070 hdmi_readb(hdmi, HDMI_CONFIG2_ID);
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003071
Laurent Pinchartf1585f62017-03-06 01:36:15 +02003072 if (phy_type == DW_HDMI_PHY_VENDOR_PHY) {
3073 /* Vendor PHYs require support from the glue layer. */
3074 if (!hdmi->plat_data->phy_ops || !hdmi->plat_data->phy_name) {
3075 dev_err(hdmi->dev,
3076 "Vendor HDMI PHY not supported by glue layer\n");
3077 return -ENODEV;
3078 }
3079
3080 hdmi->phy.ops = hdmi->plat_data->phy_ops;
3081 hdmi->phy.data = hdmi->plat_data->phy_data;
3082 hdmi->phy.name = hdmi->plat_data->phy_name;
3083 return 0;
3084 }
3085
3086 /* Synopsys PHYs are handled internally. */
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003087 for (i = 0; i < ARRAY_SIZE(dw_hdmi_phys); ++i) {
3088 if (dw_hdmi_phys[i].type == phy_type) {
Laurent Pinchartf1585f62017-03-06 01:36:15 +02003089 hdmi->phy.ops = &dw_hdmi_synopsys_phy_ops;
3090 hdmi->phy.name = dw_hdmi_phys[i].name;
3091 hdmi->phy.data = (void *)&dw_hdmi_phys[i];
Kieran Bingham2ef9dfe2017-03-03 19:20:04 +02003092
3093 if (!dw_hdmi_phys[i].configure &&
3094 !hdmi->plat_data->configure_phy) {
3095 dev_err(hdmi->dev, "%s requires platform support\n",
3096 hdmi->phy.name);
3097 return -ENODEV;
3098 }
3099
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003100 return 0;
3101 }
3102 }
3103
Laurent Pinchartf1585f62017-03-06 01:36:15 +02003104 dev_err(hdmi->dev, "Unsupported HDMI PHY type (%02x)\n", phy_type);
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003105 return -ENODEV;
3106}
3107
Russell Kinga616e632017-08-02 20:41:07 +02003108static void dw_hdmi_cec_enable(struct dw_hdmi *hdmi)
3109{
3110 mutex_lock(&hdmi->mutex);
3111 hdmi->mc_clkdis &= ~HDMI_MC_CLKDIS_CECCLK_DISABLE;
3112 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
3113 mutex_unlock(&hdmi->mutex);
3114}
3115
3116static void dw_hdmi_cec_disable(struct dw_hdmi *hdmi)
3117{
3118 mutex_lock(&hdmi->mutex);
3119 hdmi->mc_clkdis |= HDMI_MC_CLKDIS_CECCLK_DISABLE;
3120 hdmi_writeb(hdmi, hdmi->mc_clkdis, HDMI_MC_CLKDIS);
3121 mutex_unlock(&hdmi->mutex);
3122}
3123
3124static const struct dw_hdmi_cec_ops dw_hdmi_cec_ops = {
3125 .write = hdmi_writeb,
3126 .read = hdmi_readb,
3127 .enable = dw_hdmi_cec_enable,
3128 .disable = dw_hdmi_cec_disable,
3129};
3130
Neil Armstrong80e2f972017-03-03 19:20:06 +02003131static const struct regmap_config hdmi_regmap_8bit_config = {
3132 .reg_bits = 32,
3133 .val_bits = 8,
3134 .reg_stride = 1,
3135 .max_register = HDMI_I2CM_FS_SCL_LCNT_0_ADDR,
3136};
3137
3138static const struct regmap_config hdmi_regmap_32bit_config = {
3139 .reg_bits = 32,
3140 .val_bits = 32,
3141 .reg_stride = 4,
3142 .max_register = HDMI_I2CM_FS_SCL_LCNT_0_ADDR << 2,
3143};
3144
Douglas Anderson99d02ed2019-06-04 13:42:06 -07003145static void dw_hdmi_init_hw(struct dw_hdmi *hdmi)
3146{
3147 initialize_hdmi_ih_mutes(hdmi);
3148
3149 /*
3150 * Reset HDMI DDC I2C master controller and mute I2CM interrupts.
3151 * Even if we are using a separate i2c adapter doing this doesn't
3152 * hurt.
3153 */
3154 dw_hdmi_i2c_init(hdmi);
3155
3156 if (hdmi->phy.ops->setup_hpd)
3157 hdmi->phy.ops->setup_hpd(hdmi, hdmi->phy.data);
3158}
3159
Liu Ying0bf4f5b2020-07-09 10:02:36 +08003160/* -----------------------------------------------------------------------------
3161 * Probe/remove API, used from platforms based on the DRM bridge API.
3162 */
3163struct dw_hdmi *dw_hdmi_probe(struct platform_device *pdev,
3164 const struct dw_hdmi_plat_data *plat_data)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003165{
Laurent Pinchartc6081192017-01-17 10:28:57 +02003166 struct device *dev = &pdev->dev;
Russell King17b50012013-11-03 11:23:34 +00003167 struct device_node *np = dev->of_node;
Russell King7ed6c662013-11-07 16:01:45 +00003168 struct platform_device_info pdevinfo;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003169 struct device_node *ddc_node;
Russell Kinga616e632017-08-02 20:41:07 +02003170 struct dw_hdmi_cec_data cec;
Andy Yanb21f4b62014-12-05 14:26:31 +08003171 struct dw_hdmi *hdmi;
Neil Armstrong80e2f972017-03-03 19:20:06 +02003172 struct resource *iores = NULL;
Laurent Pinchartc6081192017-01-17 10:28:57 +02003173 int irq;
Andy Yan3d1b35a2014-12-05 14:25:05 +08003174 int ret;
Andy Yan0cd9d142014-12-05 14:28:24 +08003175 u32 val = 1;
Laurent Pinchart0527e122017-01-17 10:29:03 +02003176 u8 prod_id0;
3177 u8 prod_id1;
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00003178 u8 config0;
Laurent Pinchart0c674942017-01-17 10:29:04 +02003179 u8 config3;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003180
Russell King17b50012013-11-03 11:23:34 +00003181 hdmi = devm_kzalloc(dev, sizeof(*hdmi), GFP_KERNEL);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003182 if (!hdmi)
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003183 return ERR_PTR(-ENOMEM);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003184
Andy Yan3d1b35a2014-12-05 14:25:05 +08003185 hdmi->plat_data = plat_data;
Russell King17b50012013-11-03 11:23:34 +00003186 hdmi->dev = dev;
Russell King40678382013-11-07 15:35:06 +00003187 hdmi->sample_rate = 48000;
Russell Kingb872a8e2015-06-05 12:22:46 +01003188 hdmi->disabled = true;
Russell Kingaeac23b2015-06-05 13:46:22 +01003189 hdmi->rxsense = true;
3190 hdmi->phy_mask = (u8)~(HDMI_PHY_HPD | HDMI_PHY_RX_SENSE);
Russell King7cc4ab22017-07-31 15:29:46 +01003191 hdmi->mc_clkdis = 0x7f;
Cheng-Yi Chianga9c82d62019-10-28 15:19:25 +08003192 hdmi->last_connector_result = connector_status_disconnected;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003193
Russell Kingb872a8e2015-06-05 12:22:46 +01003194 mutex_init(&hdmi->mutex);
Russell King6bcf4952015-02-02 11:01:08 +00003195 mutex_init(&hdmi->audio_mutex);
Dariusz Marcinkiewicz7070fe72019-08-14 12:45:06 +02003196 mutex_init(&hdmi->cec_notifier_mutex);
Russell Kingb90120a2015-03-27 12:59:58 +00003197 spin_lock_init(&hdmi->audio_lock);
Russell King6bcf4952015-02-02 11:01:08 +00003198
Philipp Zabelb5d45902014-03-05 10:20:56 +01003199 ddc_node = of_parse_phandle(np, "ddc-i2c-bus", 0);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003200 if (ddc_node) {
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03003201 hdmi->ddc = of_get_i2c_adapter_by_node(ddc_node);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003202 of_node_put(ddc_node);
Andy Yanc2c38482014-12-05 14:24:28 +08003203 if (!hdmi->ddc) {
3204 dev_dbg(hdmi->dev, "failed to read ddc node\n");
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003205 return ERR_PTR(-EPROBE_DEFER);
Andy Yanc2c38482014-12-05 14:24:28 +08003206 }
3207
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003208 } else {
3209 dev_dbg(hdmi->dev, "no ddc property found\n");
3210 }
3211
Neil Armstrong80e2f972017-03-03 19:20:06 +02003212 if (!plat_data->regm) {
3213 const struct regmap_config *reg_config;
3214
3215 of_property_read_u32(np, "reg-io-width", &val);
3216 switch (val) {
3217 case 4:
3218 reg_config = &hdmi_regmap_32bit_config;
3219 hdmi->reg_shift = 2;
3220 break;
3221 case 1:
3222 reg_config = &hdmi_regmap_8bit_config;
3223 break;
3224 default:
3225 dev_err(dev, "reg-io-width must be 1 or 4\n");
3226 return ERR_PTR(-EINVAL);
3227 }
3228
3229 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3230 hdmi->regs = devm_ioremap_resource(dev, iores);
3231 if (IS_ERR(hdmi->regs)) {
3232 ret = PTR_ERR(hdmi->regs);
3233 goto err_res;
3234 }
3235
3236 hdmi->regm = devm_regmap_init_mmio(dev, hdmi->regs, reg_config);
3237 if (IS_ERR(hdmi->regm)) {
3238 dev_err(dev, "Failed to configure regmap\n");
3239 ret = PTR_ERR(hdmi->regm);
3240 goto err_res;
3241 }
3242 } else {
3243 hdmi->regm = plat_data->regm;
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03003244 }
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003245
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003246 hdmi->isfr_clk = devm_clk_get(hdmi->dev, "isfr");
3247 if (IS_ERR(hdmi->isfr_clk)) {
3248 ret = PTR_ERR(hdmi->isfr_clk);
Andy Yanb5878332014-12-05 14:23:52 +08003249 dev_err(hdmi->dev, "Unable to get HDMI isfr clk: %d\n", ret);
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03003250 goto err_res;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003251 }
3252
3253 ret = clk_prepare_enable(hdmi->isfr_clk);
3254 if (ret) {
Andy Yanb5878332014-12-05 14:23:52 +08003255 dev_err(hdmi->dev, "Cannot enable HDMI isfr clock: %d\n", ret);
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03003256 goto err_res;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003257 }
3258
3259 hdmi->iahb_clk = devm_clk_get(hdmi->dev, "iahb");
3260 if (IS_ERR(hdmi->iahb_clk)) {
3261 ret = PTR_ERR(hdmi->iahb_clk);
Andy Yanb5878332014-12-05 14:23:52 +08003262 dev_err(hdmi->dev, "Unable to get HDMI iahb clk: %d\n", ret);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003263 goto err_isfr;
3264 }
3265
3266 ret = clk_prepare_enable(hdmi->iahb_clk);
3267 if (ret) {
Andy Yanb5878332014-12-05 14:23:52 +08003268 dev_err(hdmi->dev, "Cannot enable HDMI iahb clock: %d\n", ret);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003269 goto err_isfr;
3270 }
3271
Pierre-Hugues Hussonebe32c32017-11-25 21:18:44 +01003272 hdmi->cec_clk = devm_clk_get(hdmi->dev, "cec");
3273 if (PTR_ERR(hdmi->cec_clk) == -ENOENT) {
3274 hdmi->cec_clk = NULL;
3275 } else if (IS_ERR(hdmi->cec_clk)) {
3276 ret = PTR_ERR(hdmi->cec_clk);
3277 if (ret != -EPROBE_DEFER)
3278 dev_err(hdmi->dev, "Cannot get HDMI cec clock: %d\n",
3279 ret);
3280
3281 hdmi->cec_clk = NULL;
3282 goto err_iahb;
3283 } else {
3284 ret = clk_prepare_enable(hdmi->cec_clk);
3285 if (ret) {
3286 dev_err(hdmi->dev, "Cannot enable HDMI cec clock: %d\n",
3287 ret);
3288 goto err_iahb;
3289 }
3290 }
3291
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003292 /* Product and revision IDs */
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02003293 hdmi->version = (hdmi_readb(hdmi, HDMI_DESIGN_ID) << 8)
3294 | (hdmi_readb(hdmi, HDMI_REVISION_ID) << 0);
Laurent Pinchart0527e122017-01-17 10:29:03 +02003295 prod_id0 = hdmi_readb(hdmi, HDMI_PRODUCT_ID0);
3296 prod_id1 = hdmi_readb(hdmi, HDMI_PRODUCT_ID1);
3297
3298 if (prod_id0 != HDMI_PRODUCT_ID0_HDMI_TX ||
3299 (prod_id1 & ~HDMI_PRODUCT_ID1_HDCP) != HDMI_PRODUCT_ID1_HDMI_TX) {
3300 dev_err(dev, "Unsupported HDMI controller (%04x:%02x:%02x)\n",
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02003301 hdmi->version, prod_id0, prod_id1);
Laurent Pinchart0527e122017-01-17 10:29:03 +02003302 ret = -ENODEV;
3303 goto err_iahb;
3304 }
3305
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003306 ret = dw_hdmi_detect_phy(hdmi);
3307 if (ret < 0)
3308 goto err_iahb;
3309
3310 dev_info(dev, "Detected HDMI TX controller v%x.%03x %s HDCP (%s)\n",
Laurent Pinchartbe41fc52017-01-17 10:29:05 +02003311 hdmi->version >> 12, hdmi->version & 0xfff,
Laurent Pinchartfaba6c32017-01-17 10:29:06 +02003312 prod_id1 & HDMI_PRODUCT_ID1_HDCP ? "with" : "without",
Laurent Pinchartf1585f62017-03-06 01:36:15 +02003313 hdmi->phy.name);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003314
Douglas Anderson99d02ed2019-06-04 13:42:06 -07003315 dw_hdmi_init_hw(hdmi);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003316
Laurent Pinchartc6081192017-01-17 10:28:57 +02003317 irq = platform_get_irq(pdev, 0);
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003318 if (irq < 0) {
3319 ret = irq;
Laurent Pinchartc6081192017-01-17 10:28:57 +02003320 goto err_iahb;
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003321 }
Laurent Pinchartc6081192017-01-17 10:28:57 +02003322
Philipp Zabel639a2022015-01-07 13:43:50 +01003323 ret = devm_request_threaded_irq(dev, irq, dw_hdmi_hardirq,
3324 dw_hdmi_irq, IRQF_SHARED,
3325 dev_name(dev), hdmi);
3326 if (ret)
Fabio Estevamb33ef612015-01-27 10:54:12 -02003327 goto err_iahb;
Philipp Zabel639a2022015-01-07 13:43:50 +01003328
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003329 /*
3330 * To prevent overflows in HDMI_IH_FC_STAT2, set the clk regenerator
3331 * N and cts values before enabling phy
3332 */
3333 hdmi_init_clk_regenerator(hdmi);
3334
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03003335 /* If DDC bus is not specified, try to register HDMI I2C bus */
3336 if (!hdmi->ddc) {
Douglas Anderson50f94952019-05-02 15:53:33 -07003337 /* Look for (optional) stuff related to unwedging */
3338 hdmi->pinctrl = devm_pinctrl_get(dev);
3339 if (!IS_ERR(hdmi->pinctrl)) {
3340 hdmi->unwedge_state =
3341 pinctrl_lookup_state(hdmi->pinctrl, "unwedge");
3342 hdmi->default_state =
3343 pinctrl_lookup_state(hdmi->pinctrl, "default");
3344
Douglas Anderson0bd79f92019-06-10 10:52:34 -07003345 if (IS_ERR(hdmi->default_state) ||
3346 IS_ERR(hdmi->unwedge_state)) {
3347 if (!IS_ERR(hdmi->unwedge_state))
3348 dev_warn(dev,
3349 "Unwedge requires default pinctrl\n");
3350 hdmi->default_state = NULL;
3351 hdmi->unwedge_state = NULL;
Douglas Anderson50f94952019-05-02 15:53:33 -07003352 }
3353 }
3354
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03003355 hdmi->ddc = dw_hdmi_i2c_adapter(hdmi);
3356 if (IS_ERR(hdmi->ddc))
3357 hdmi->ddc = NULL;
3358 }
3359
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003360 hdmi->bridge.driver_private = hdmi;
3361 hdmi->bridge.funcs = &dw_hdmi_bridge_funcs;
Laurent Pinchartec971aa2020-05-26 04:15:00 +03003362 hdmi->bridge.ops = DRM_BRIDGE_OP_DETECT | DRM_BRIDGE_OP_EDID
3363 | DRM_BRIDGE_OP_HPD;
Arnd Bergmannd5ad7842017-01-23 13:20:38 +01003364#ifdef CONFIG_OF
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003365 hdmi->bridge.of_node = pdev->dev.of_node;
Arnd Bergmannd5ad7842017-01-23 13:20:38 +01003366#endif
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003367
Russell King7ed6c662013-11-07 16:01:45 +00003368 memset(&pdevinfo, 0, sizeof(pdevinfo));
3369 pdevinfo.parent = dev;
3370 pdevinfo.id = PLATFORM_DEVID_AUTO;
3371
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00003372 config0 = hdmi_readb(hdmi, HDMI_CONFIG0_ID);
Laurent Pinchart0c674942017-01-17 10:29:04 +02003373 config3 = hdmi_readb(hdmi, HDMI_CONFIG3_ID);
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00003374
Neil Armstrong80e2f972017-03-03 19:20:06 +02003375 if (iores && config3 & HDMI_CONFIG3_AHBAUDDMA) {
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00003376 struct dw_hdmi_audio_data audio;
3377
Russell King7ed6c662013-11-07 16:01:45 +00003378 audio.phys = iores->start;
3379 audio.base = hdmi->regs;
3380 audio.irq = irq;
3381 audio.hdmi = hdmi;
Russell Kingf5ce4052013-11-07 16:06:01 +00003382 audio.eld = hdmi->connector.eld;
Romain Periera7d555d2017-04-14 10:31:12 +02003383 hdmi->enable_audio = dw_hdmi_ahb_audio_enable;
3384 hdmi->disable_audio = dw_hdmi_ahb_audio_disable;
Russell King7ed6c662013-11-07 16:01:45 +00003385
3386 pdevinfo.name = "dw-hdmi-ahb-audio";
3387 pdevinfo.data = &audio;
3388 pdevinfo.size_data = sizeof(audio);
3389 pdevinfo.dma_mask = DMA_BIT_MASK(32);
3390 hdmi->audio = platform_device_register_full(&pdevinfo);
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00003391 } else if (config0 & HDMI_CONFIG0_I2S) {
3392 struct dw_hdmi_i2s_audio_data audio;
3393
3394 audio.hdmi = hdmi;
Jerome Brunetfc1ca6e2019-08-12 14:50:16 +02003395 audio.eld = hdmi->connector.eld;
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00003396 audio.write = hdmi_writeb;
3397 audio.read = hdmi_readb;
Romain Periera7d555d2017-04-14 10:31:12 +02003398 hdmi->enable_audio = dw_hdmi_i2s_audio_enable;
Romain Perier57fbc052017-04-20 14:34:34 +05303399 hdmi->disable_audio = dw_hdmi_i2s_audio_disable;
Kuninori Morimoto2761ba62016-11-08 01:00:57 +00003400
3401 pdevinfo.name = "dw-hdmi-i2s-audio";
3402 pdevinfo.data = &audio;
3403 pdevinfo.size_data = sizeof(audio);
3404 pdevinfo.dma_mask = DMA_BIT_MASK(32);
3405 hdmi->audio = platform_device_register_full(&pdevinfo);
Russell King7ed6c662013-11-07 16:01:45 +00003406 }
3407
Jernej Skrabeccd7f72e2021-04-16 11:27:36 +02003408 if (!plat_data->disable_cec && (config0 & HDMI_CONFIG0_CEC)) {
Russell Kinga616e632017-08-02 20:41:07 +02003409 cec.hdmi = hdmi;
3410 cec.ops = &dw_hdmi_cec_ops;
3411 cec.irq = irq;
3412
3413 pdevinfo.name = "dw-hdmi-cec";
3414 pdevinfo.data = &cec;
3415 pdevinfo.size_data = sizeof(cec);
3416 pdevinfo.dma_mask = 0;
3417
3418 hdmi->cec = platform_device_register_full(&pdevinfo);
3419 }
3420
Liu Ying0bf4f5b2020-07-09 10:02:36 +08003421 drm_bridge_add(&hdmi->bridge);
3422
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003423 return hdmi;
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003424
3425err_iahb:
3426 clk_disable_unprepare(hdmi->iahb_clk);
Xu Wang0647bf12020-11-27 09:23:32 +00003427 clk_disable_unprepare(hdmi->cec_clk);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003428err_isfr:
3429 clk_disable_unprepare(hdmi->isfr_clk);
Vladimir Zapolskiy9f04a1f2016-08-16 23:26:43 +03003430err_res:
3431 i2c_put_adapter(hdmi->ddc);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003432
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003433 return ERR_PTR(ret);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003434}
Liu Ying0bf4f5b2020-07-09 10:02:36 +08003435EXPORT_SYMBOL_GPL(dw_hdmi_probe);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003436
Liu Ying0bf4f5b2020-07-09 10:02:36 +08003437void dw_hdmi_remove(struct dw_hdmi *hdmi)
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003438{
Liu Ying0bf4f5b2020-07-09 10:02:36 +08003439 drm_bridge_remove(&hdmi->bridge);
3440
Russell King7ed6c662013-11-07 16:01:45 +00003441 if (hdmi->audio && !IS_ERR(hdmi->audio))
3442 platform_device_unregister(hdmi->audio);
Russell Kinga616e632017-08-02 20:41:07 +02003443 if (!IS_ERR(hdmi->cec))
3444 platform_device_unregister(hdmi->cec);
Russell King7ed6c662013-11-07 16:01:45 +00003445
Russell Kingd94905e2013-11-03 22:23:24 +00003446 /* Disable all interrupts */
3447 hdmi_writeb(hdmi, ~0, HDMI_IH_MUTE_PHY_STAT0);
3448
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003449 clk_disable_unprepare(hdmi->iahb_clk);
3450 clk_disable_unprepare(hdmi->isfr_clk);
Xu Wang0647bf12020-11-27 09:23:32 +00003451 clk_disable_unprepare(hdmi->cec_clk);
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03003452
3453 if (hdmi->i2c)
3454 i2c_del_adapter(&hdmi->i2c->adap);
3455 else
3456 i2c_put_adapter(hdmi->ddc);
Russell King17b50012013-11-03 11:23:34 +00003457}
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003458EXPORT_SYMBOL_GPL(dw_hdmi_remove);
3459
3460/* -----------------------------------------------------------------------------
3461 * Bind/unbind API, used from platforms based on the component framework.
3462 */
Jernej Skrabeceea034a2018-02-14 21:08:59 +01003463struct dw_hdmi *dw_hdmi_bind(struct platform_device *pdev,
3464 struct drm_encoder *encoder,
3465 const struct dw_hdmi_plat_data *plat_data)
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003466{
3467 struct dw_hdmi *hdmi;
3468 int ret;
3469
Liu Ying0bf4f5b2020-07-09 10:02:36 +08003470 hdmi = dw_hdmi_probe(pdev, plat_data);
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003471 if (IS_ERR(hdmi))
Jernej Skrabeceea034a2018-02-14 21:08:59 +01003472 return hdmi;
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003473
Laurent Pincharta25b9882020-02-26 13:24:29 +02003474 ret = drm_bridge_attach(encoder, &hdmi->bridge, NULL, 0);
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003475 if (ret) {
Jernej Skrabeceea034a2018-02-14 21:08:59 +01003476 dw_hdmi_remove(hdmi);
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003477 DRM_ERROR("Failed to initialize bridge with drm\n");
Jernej Skrabeceea034a2018-02-14 21:08:59 +01003478 return ERR_PTR(ret);
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003479 }
3480
Jernej Skrabeceea034a2018-02-14 21:08:59 +01003481 return hdmi;
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003482}
3483EXPORT_SYMBOL_GPL(dw_hdmi_bind);
3484
Jernej Skrabeceea034a2018-02-14 21:08:59 +01003485void dw_hdmi_unbind(struct dw_hdmi *hdmi)
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003486{
Liu Ying0bf4f5b2020-07-09 10:02:36 +08003487 dw_hdmi_remove(hdmi);
Laurent Pinchart69497eb2017-01-17 10:29:00 +02003488}
Andy Yanb21f4b62014-12-05 14:26:31 +08003489EXPORT_SYMBOL_GPL(dw_hdmi_unbind);
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003490
Douglas Anderson99d02ed2019-06-04 13:42:06 -07003491void dw_hdmi_resume(struct dw_hdmi *hdmi)
3492{
3493 dw_hdmi_init_hw(hdmi);
3494}
3495EXPORT_SYMBOL_GPL(dw_hdmi_resume);
3496
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003497MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>");
Andy Yan3d1b35a2014-12-05 14:25:05 +08003498MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com>");
3499MODULE_AUTHOR("Yakir Yang <ykk@rock-chips.com>");
Vladimir Zapolskiy3efc2fa2016-08-24 08:46:37 +03003500MODULE_AUTHOR("Vladimir Zapolskiy <vladimir_zapolskiy@mentor.com>");
Andy Yanb21f4b62014-12-05 14:26:31 +08003501MODULE_DESCRIPTION("DW HDMI transmitter driver");
Fabio Estevam9aaf8802013-11-29 08:46:32 -02003502MODULE_LICENSE("GPL");
Andy Yanb21f4b62014-12-05 14:26:31 +08003503MODULE_ALIAS("platform:dw-hdmi");