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