Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 1 | /* |
| 2 | * HDMI driver for OMAP5 |
| 3 | * |
| 4 | * Copyright (C) 2014 Texas Instruments Incorporated |
| 5 | * |
| 6 | * Authors: |
| 7 | * Yong Zhi |
| 8 | * Mythri pk |
| 9 | * Archit Taneja <archit@ti.com> |
| 10 | * Tomi Valkeinen <tomi.valkeinen@ti.com> |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify it |
| 13 | * under the terms of the GNU General Public License version 2 as published by |
| 14 | * the Free Software Foundation. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 17 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 19 | * more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along with |
| 22 | * this program. If not, see <http://www.gnu.org/licenses/>. |
| 23 | */ |
| 24 | |
| 25 | #define DSS_SUBSYS_NAME "HDMI" |
| 26 | |
| 27 | #include <linux/kernel.h> |
| 28 | #include <linux/module.h> |
| 29 | #include <linux/err.h> |
| 30 | #include <linux/io.h> |
| 31 | #include <linux/interrupt.h> |
| 32 | #include <linux/mutex.h> |
| 33 | #include <linux/delay.h> |
| 34 | #include <linux/string.h> |
| 35 | #include <linux/platform_device.h> |
| 36 | #include <linux/pm_runtime.h> |
| 37 | #include <linux/clk.h> |
| 38 | #include <linux/gpio.h> |
| 39 | #include <linux/regulator/consumer.h> |
Tomi Valkeinen | 736e60d | 2015-06-04 15:22:23 +0300 | [diff] [blame] | 40 | #include <linux/component.h> |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 41 | #include <video/omapdss.h> |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 42 | #include <sound/omap-hdmi-audio.h> |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 43 | |
| 44 | #include "hdmi5_core.h" |
| 45 | #include "dss.h" |
| 46 | #include "dss_features.h" |
| 47 | |
Jyri Sarha | 945514b | 2014-06-27 16:47:00 +0300 | [diff] [blame] | 48 | static struct omap_hdmi hdmi; |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 49 | |
| 50 | static int hdmi_runtime_get(void) |
| 51 | { |
| 52 | int r; |
| 53 | |
| 54 | DSSDBG("hdmi_runtime_get\n"); |
| 55 | |
| 56 | r = pm_runtime_get_sync(&hdmi.pdev->dev); |
| 57 | WARN_ON(r < 0); |
| 58 | if (r < 0) |
| 59 | return r; |
| 60 | |
| 61 | return 0; |
| 62 | } |
| 63 | |
| 64 | static void hdmi_runtime_put(void) |
| 65 | { |
| 66 | int r; |
| 67 | |
| 68 | DSSDBG("hdmi_runtime_put\n"); |
| 69 | |
| 70 | r = pm_runtime_put_sync(&hdmi.pdev->dev); |
| 71 | WARN_ON(r < 0 && r != -ENOSYS); |
| 72 | } |
| 73 | |
| 74 | static irqreturn_t hdmi_irq_handler(int irq, void *data) |
| 75 | { |
| 76 | struct hdmi_wp_data *wp = data; |
| 77 | u32 irqstatus; |
| 78 | |
| 79 | irqstatus = hdmi_wp_get_irqstatus(wp); |
| 80 | hdmi_wp_set_irqstatus(wp, irqstatus); |
| 81 | |
| 82 | if ((irqstatus & HDMI_IRQ_LINK_CONNECT) && |
| 83 | irqstatus & HDMI_IRQ_LINK_DISCONNECT) { |
| 84 | u32 v; |
| 85 | /* |
| 86 | * If we get both connect and disconnect interrupts at the same |
| 87 | * time, turn off the PHY, clear interrupts, and restart, which |
| 88 | * raises connect interrupt if a cable is connected, or nothing |
| 89 | * if cable is not connected. |
| 90 | */ |
| 91 | |
| 92 | hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_OFF); |
| 93 | |
| 94 | /* |
| 95 | * We always get bogus CONNECT & DISCONNECT interrupts when |
| 96 | * setting the PHY to LDOON. To ignore those, we force the RXDET |
| 97 | * line to 0 until the PHY power state has been changed. |
| 98 | */ |
| 99 | v = hdmi_read_reg(hdmi.phy.base, HDMI_TXPHY_PAD_CFG_CTRL); |
| 100 | v = FLD_MOD(v, 1, 15, 15); /* FORCE_RXDET_HIGH */ |
| 101 | v = FLD_MOD(v, 0, 14, 7); /* RXDET_LINE */ |
| 102 | hdmi_write_reg(hdmi.phy.base, HDMI_TXPHY_PAD_CFG_CTRL, v); |
| 103 | |
| 104 | hdmi_wp_set_irqstatus(wp, HDMI_IRQ_LINK_CONNECT | |
| 105 | HDMI_IRQ_LINK_DISCONNECT); |
| 106 | |
| 107 | hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON); |
| 108 | |
| 109 | REG_FLD_MOD(hdmi.phy.base, HDMI_TXPHY_PAD_CFG_CTRL, 0, 15, 15); |
| 110 | |
| 111 | } else if (irqstatus & HDMI_IRQ_LINK_CONNECT) { |
| 112 | hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_TXON); |
| 113 | } else if (irqstatus & HDMI_IRQ_LINK_DISCONNECT) { |
| 114 | hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON); |
| 115 | } |
| 116 | |
| 117 | return IRQ_HANDLED; |
| 118 | } |
| 119 | |
| 120 | static int hdmi_init_regulator(void) |
| 121 | { |
| 122 | int r; |
| 123 | struct regulator *reg; |
| 124 | |
| 125 | if (hdmi.vdda_reg != NULL) |
| 126 | return 0; |
| 127 | |
| 128 | reg = devm_regulator_get(&hdmi.pdev->dev, "vdda"); |
| 129 | if (IS_ERR(reg)) { |
| 130 | DSSERR("can't get VDDA regulator\n"); |
| 131 | return PTR_ERR(reg); |
| 132 | } |
| 133 | |
| 134 | if (regulator_can_change_voltage(reg)) { |
| 135 | r = regulator_set_voltage(reg, 1800000, 1800000); |
| 136 | if (r) { |
| 137 | devm_regulator_put(reg); |
| 138 | DSSWARN("can't set the regulator voltage\n"); |
| 139 | return r; |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | hdmi.vdda_reg = reg; |
| 144 | |
| 145 | return 0; |
| 146 | } |
| 147 | |
| 148 | static int hdmi_power_on_core(struct omap_dss_device *dssdev) |
| 149 | { |
| 150 | int r; |
| 151 | |
| 152 | r = regulator_enable(hdmi.vdda_reg); |
| 153 | if (r) |
| 154 | return r; |
| 155 | |
| 156 | r = hdmi_runtime_get(); |
| 157 | if (r) |
| 158 | goto err_runtime_get; |
| 159 | |
| 160 | /* Make selection of HDMI in DSS */ |
| 161 | dss_select_hdmi_venc_clk_source(DSS_HDMI_M_PCLK); |
| 162 | |
| 163 | hdmi.core_enabled = true; |
| 164 | |
| 165 | return 0; |
| 166 | |
| 167 | err_runtime_get: |
| 168 | regulator_disable(hdmi.vdda_reg); |
| 169 | |
| 170 | return r; |
| 171 | } |
| 172 | |
| 173 | static void hdmi_power_off_core(struct omap_dss_device *dssdev) |
| 174 | { |
| 175 | hdmi.core_enabled = false; |
| 176 | |
| 177 | hdmi_runtime_put(); |
| 178 | regulator_disable(hdmi.vdda_reg); |
| 179 | } |
| 180 | |
| 181 | static int hdmi_power_on_full(struct omap_dss_device *dssdev) |
| 182 | { |
| 183 | int r; |
| 184 | struct omap_video_timings *p; |
| 185 | struct omap_overlay_manager *mgr = hdmi.output.manager; |
Tomi Valkeinen | c84c3a5 | 2014-10-22 15:02:17 +0300 | [diff] [blame] | 186 | struct dss_pll_clock_info hdmi_cinfo = { 0 }; |
Tomi Valkeinen | 67d8ffd | 2016-01-13 18:41:33 +0200 | [diff] [blame^] | 187 | unsigned pc; |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 188 | |
| 189 | r = hdmi_power_on_core(dssdev); |
| 190 | if (r) |
| 191 | return r; |
| 192 | |
| 193 | p = &hdmi.cfg.timings; |
| 194 | |
| 195 | DSSDBG("hdmi_power_on x_res= %d y_res = %d\n", p->x_res, p->y_res); |
| 196 | |
Tomi Valkeinen | 67d8ffd | 2016-01-13 18:41:33 +0200 | [diff] [blame^] | 197 | pc = p->pixelclock; |
| 198 | if (p->double_pixel) |
| 199 | pc *= 2; |
| 200 | |
| 201 | hdmi_pll_compute(&hdmi.pll, pc, &hdmi_cinfo); |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 202 | |
| 203 | /* disable and clear irqs */ |
| 204 | hdmi_wp_clear_irqenable(&hdmi.wp, 0xffffffff); |
| 205 | hdmi_wp_set_irqstatus(&hdmi.wp, |
| 206 | hdmi_wp_get_irqstatus(&hdmi.wp)); |
| 207 | |
Tomi Valkeinen | c84c3a5 | 2014-10-22 15:02:17 +0300 | [diff] [blame] | 208 | r = dss_pll_enable(&hdmi.pll.pll); |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 209 | if (r) { |
Tomi Valkeinen | c2fbd06 | 2014-10-16 16:01:51 +0300 | [diff] [blame] | 210 | DSSERR("Failed to enable PLL\n"); |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 211 | goto err_pll_enable; |
| 212 | } |
| 213 | |
Tomi Valkeinen | c84c3a5 | 2014-10-22 15:02:17 +0300 | [diff] [blame] | 214 | r = dss_pll_set_config(&hdmi.pll.pll, &hdmi_cinfo); |
Tomi Valkeinen | c2fbd06 | 2014-10-16 16:01:51 +0300 | [diff] [blame] | 215 | if (r) { |
| 216 | DSSERR("Failed to configure PLL\n"); |
| 217 | goto err_pll_cfg; |
| 218 | } |
| 219 | |
Tomi Valkeinen | c84c3a5 | 2014-10-22 15:02:17 +0300 | [diff] [blame] | 220 | r = hdmi_phy_configure(&hdmi.phy, hdmi_cinfo.clkdco, |
| 221 | hdmi_cinfo.clkout[0]); |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 222 | if (r) { |
| 223 | DSSDBG("Failed to start PHY\n"); |
| 224 | goto err_phy_cfg; |
| 225 | } |
| 226 | |
| 227 | r = hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_LDOON); |
| 228 | if (r) |
| 229 | goto err_phy_pwr; |
| 230 | |
| 231 | hdmi5_configure(&hdmi.core, &hdmi.wp, &hdmi.cfg); |
| 232 | |
| 233 | /* bypass TV gamma table */ |
| 234 | dispc_enable_gamma_table(0); |
| 235 | |
| 236 | /* tv size */ |
| 237 | dss_mgr_set_timings(mgr, p); |
| 238 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 239 | r = dss_mgr_enable(mgr); |
| 240 | if (r) |
| 241 | goto err_mgr_enable; |
| 242 | |
Tomi Valkeinen | 4e4b53c | 2015-03-24 15:46:35 +0200 | [diff] [blame] | 243 | r = hdmi_wp_video_start(&hdmi.wp); |
| 244 | if (r) |
| 245 | goto err_vid_enable; |
| 246 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 247 | hdmi_wp_set_irqenable(&hdmi.wp, |
| 248 | HDMI_IRQ_LINK_CONNECT | HDMI_IRQ_LINK_DISCONNECT); |
| 249 | |
| 250 | return 0; |
| 251 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 252 | err_vid_enable: |
Tomi Valkeinen | 4e4b53c | 2015-03-24 15:46:35 +0200 | [diff] [blame] | 253 | dss_mgr_disable(mgr); |
| 254 | err_mgr_enable: |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 255 | hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF); |
| 256 | err_phy_pwr: |
| 257 | err_phy_cfg: |
Tomi Valkeinen | c2fbd06 | 2014-10-16 16:01:51 +0300 | [diff] [blame] | 258 | err_pll_cfg: |
Tomi Valkeinen | c84c3a5 | 2014-10-22 15:02:17 +0300 | [diff] [blame] | 259 | dss_pll_disable(&hdmi.pll.pll); |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 260 | err_pll_enable: |
| 261 | hdmi_power_off_core(dssdev); |
| 262 | return -EIO; |
| 263 | } |
| 264 | |
| 265 | static void hdmi_power_off_full(struct omap_dss_device *dssdev) |
| 266 | { |
| 267 | struct omap_overlay_manager *mgr = hdmi.output.manager; |
| 268 | |
| 269 | hdmi_wp_clear_irqenable(&hdmi.wp, 0xffffffff); |
| 270 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 271 | hdmi_wp_video_stop(&hdmi.wp); |
| 272 | |
Tomi Valkeinen | 4e4b53c | 2015-03-24 15:46:35 +0200 | [diff] [blame] | 273 | dss_mgr_disable(mgr); |
| 274 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 275 | hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF); |
| 276 | |
Tomi Valkeinen | c84c3a5 | 2014-10-22 15:02:17 +0300 | [diff] [blame] | 277 | dss_pll_disable(&hdmi.pll.pll); |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 278 | |
| 279 | hdmi_power_off_core(dssdev); |
| 280 | } |
| 281 | |
| 282 | static int hdmi_display_check_timing(struct omap_dss_device *dssdev, |
| 283 | struct omap_video_timings *timings) |
| 284 | { |
| 285 | struct omap_dss_device *out = &hdmi.output; |
| 286 | |
Tomi Valkeinen | 31dd0f4 | 2014-09-16 12:46:33 +0300 | [diff] [blame] | 287 | /* TODO: proper interlace support */ |
| 288 | if (timings->interlace) |
| 289 | return -EINVAL; |
| 290 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 291 | if (!dispc_mgr_timings_ok(out->dispc_channel, timings)) |
| 292 | return -EINVAL; |
| 293 | |
| 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | static void hdmi_display_set_timing(struct omap_dss_device *dssdev, |
| 298 | struct omap_video_timings *timings) |
| 299 | { |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 300 | mutex_lock(&hdmi.lock); |
| 301 | |
Tomi Valkeinen | 769dcb1 | 2014-06-18 14:21:55 +0300 | [diff] [blame] | 302 | hdmi.cfg.timings = *timings; |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 303 | |
Tomi Valkeinen | 769dcb1 | 2014-06-18 14:21:55 +0300 | [diff] [blame] | 304 | dispc_set_tv_pclk(timings->pixelclock); |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 305 | |
| 306 | mutex_unlock(&hdmi.lock); |
| 307 | } |
| 308 | |
| 309 | static void hdmi_display_get_timings(struct omap_dss_device *dssdev, |
| 310 | struct omap_video_timings *timings) |
| 311 | { |
Tomi Valkeinen | 769dcb1 | 2014-06-18 14:21:55 +0300 | [diff] [blame] | 312 | *timings = hdmi.cfg.timings; |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | static void hdmi_dump_regs(struct seq_file *s) |
| 316 | { |
| 317 | mutex_lock(&hdmi.lock); |
| 318 | |
| 319 | if (hdmi_runtime_get()) { |
| 320 | mutex_unlock(&hdmi.lock); |
| 321 | return; |
| 322 | } |
| 323 | |
| 324 | hdmi_wp_dump(&hdmi.wp, s); |
| 325 | hdmi_pll_dump(&hdmi.pll, s); |
| 326 | hdmi_phy_dump(&hdmi.phy, s); |
| 327 | hdmi5_core_dump(&hdmi.core, s); |
| 328 | |
| 329 | hdmi_runtime_put(); |
| 330 | mutex_unlock(&hdmi.lock); |
| 331 | } |
| 332 | |
| 333 | static int read_edid(u8 *buf, int len) |
| 334 | { |
| 335 | int r; |
| 336 | int idlemode; |
| 337 | |
| 338 | mutex_lock(&hdmi.lock); |
| 339 | |
| 340 | r = hdmi_runtime_get(); |
| 341 | BUG_ON(r); |
| 342 | |
| 343 | idlemode = REG_GET(hdmi.wp.base, HDMI_WP_SYSCONFIG, 3, 2); |
| 344 | /* No-idle mode */ |
| 345 | REG_FLD_MOD(hdmi.wp.base, HDMI_WP_SYSCONFIG, 1, 3, 2); |
| 346 | |
| 347 | r = hdmi5_read_edid(&hdmi.core, buf, len); |
| 348 | |
| 349 | REG_FLD_MOD(hdmi.wp.base, HDMI_WP_SYSCONFIG, idlemode, 3, 2); |
| 350 | |
| 351 | hdmi_runtime_put(); |
| 352 | mutex_unlock(&hdmi.lock); |
| 353 | |
| 354 | return r; |
| 355 | } |
| 356 | |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 357 | static void hdmi_start_audio_stream(struct omap_hdmi *hd) |
| 358 | { |
| 359 | REG_FLD_MOD(hdmi.wp.base, HDMI_WP_SYSCONFIG, 1, 3, 2); |
| 360 | hdmi_wp_audio_enable(&hd->wp, true); |
| 361 | hdmi_wp_audio_core_req_enable(&hd->wp, true); |
| 362 | } |
| 363 | |
| 364 | static void hdmi_stop_audio_stream(struct omap_hdmi *hd) |
| 365 | { |
| 366 | hdmi_wp_audio_core_req_enable(&hd->wp, false); |
| 367 | hdmi_wp_audio_enable(&hd->wp, false); |
| 368 | REG_FLD_MOD(hd->wp.base, HDMI_WP_SYSCONFIG, hd->wp_idlemode, 3, 2); |
| 369 | } |
| 370 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 371 | static int hdmi_display_enable(struct omap_dss_device *dssdev) |
| 372 | { |
| 373 | struct omap_dss_device *out = &hdmi.output; |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 374 | unsigned long flags; |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 375 | int r = 0; |
| 376 | |
| 377 | DSSDBG("ENTER hdmi_display_enable\n"); |
| 378 | |
| 379 | mutex_lock(&hdmi.lock); |
| 380 | |
Tomi Valkeinen | b742648 | 2015-11-04 17:10:58 +0200 | [diff] [blame] | 381 | if (out->manager == NULL) { |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 382 | DSSERR("failed to enable display: no output/manager\n"); |
| 383 | r = -ENODEV; |
| 384 | goto err0; |
| 385 | } |
| 386 | |
| 387 | r = hdmi_power_on_full(dssdev); |
| 388 | if (r) { |
| 389 | DSSERR("failed to power on device\n"); |
| 390 | goto err0; |
| 391 | } |
| 392 | |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 393 | if (hdmi.audio_configured) { |
| 394 | r = hdmi5_audio_config(&hdmi.core, &hdmi.wp, &hdmi.audio_config, |
| 395 | hdmi.cfg.timings.pixelclock); |
| 396 | if (r) { |
| 397 | DSSERR("Error restoring audio configuration: %d", r); |
| 398 | hdmi.audio_abort_cb(&hdmi.pdev->dev); |
| 399 | hdmi.audio_configured = false; |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | spin_lock_irqsave(&hdmi.audio_playing_lock, flags); |
| 404 | if (hdmi.audio_configured && hdmi.audio_playing) |
| 405 | hdmi_start_audio_stream(&hdmi); |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 406 | hdmi.display_enabled = true; |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 407 | spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags); |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 408 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 409 | mutex_unlock(&hdmi.lock); |
| 410 | return 0; |
| 411 | |
| 412 | err0: |
| 413 | mutex_unlock(&hdmi.lock); |
| 414 | return r; |
| 415 | } |
| 416 | |
| 417 | static void hdmi_display_disable(struct omap_dss_device *dssdev) |
| 418 | { |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 419 | unsigned long flags; |
| 420 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 421 | DSSDBG("Enter hdmi_display_disable\n"); |
| 422 | |
| 423 | mutex_lock(&hdmi.lock); |
| 424 | |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 425 | spin_lock_irqsave(&hdmi.audio_playing_lock, flags); |
| 426 | hdmi_stop_audio_stream(&hdmi); |
| 427 | hdmi.display_enabled = false; |
| 428 | spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags); |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 429 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 430 | hdmi_power_off_full(dssdev); |
| 431 | |
| 432 | mutex_unlock(&hdmi.lock); |
| 433 | } |
| 434 | |
| 435 | static int hdmi_core_enable(struct omap_dss_device *dssdev) |
| 436 | { |
| 437 | int r = 0; |
| 438 | |
| 439 | DSSDBG("ENTER omapdss_hdmi_core_enable\n"); |
| 440 | |
| 441 | mutex_lock(&hdmi.lock); |
| 442 | |
| 443 | r = hdmi_power_on_core(dssdev); |
| 444 | if (r) { |
| 445 | DSSERR("failed to power on device\n"); |
| 446 | goto err0; |
| 447 | } |
| 448 | |
| 449 | mutex_unlock(&hdmi.lock); |
| 450 | return 0; |
| 451 | |
| 452 | err0: |
| 453 | mutex_unlock(&hdmi.lock); |
| 454 | return r; |
| 455 | } |
| 456 | |
| 457 | static void hdmi_core_disable(struct omap_dss_device *dssdev) |
| 458 | { |
| 459 | DSSDBG("Enter omapdss_hdmi_core_disable\n"); |
| 460 | |
| 461 | mutex_lock(&hdmi.lock); |
| 462 | |
| 463 | hdmi_power_off_core(dssdev); |
| 464 | |
| 465 | mutex_unlock(&hdmi.lock); |
| 466 | } |
| 467 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 468 | static int hdmi_connect(struct omap_dss_device *dssdev, |
| 469 | struct omap_dss_device *dst) |
| 470 | { |
| 471 | struct omap_overlay_manager *mgr; |
| 472 | int r; |
| 473 | |
| 474 | r = hdmi_init_regulator(); |
| 475 | if (r) |
| 476 | return r; |
| 477 | |
| 478 | mgr = omap_dss_get_overlay_manager(dssdev->dispc_channel); |
| 479 | if (!mgr) |
| 480 | return -ENODEV; |
| 481 | |
| 482 | r = dss_mgr_connect(mgr, dssdev); |
| 483 | if (r) |
| 484 | return r; |
| 485 | |
| 486 | r = omapdss_output_set_device(dssdev, dst); |
| 487 | if (r) { |
| 488 | DSSERR("failed to connect output to new device: %s\n", |
| 489 | dst->name); |
| 490 | dss_mgr_disconnect(mgr, dssdev); |
| 491 | return r; |
| 492 | } |
| 493 | |
| 494 | return 0; |
| 495 | } |
| 496 | |
| 497 | static void hdmi_disconnect(struct omap_dss_device *dssdev, |
| 498 | struct omap_dss_device *dst) |
| 499 | { |
| 500 | WARN_ON(dst != dssdev->dst); |
| 501 | |
| 502 | if (dst != dssdev->dst) |
| 503 | return; |
| 504 | |
| 505 | omapdss_output_unset_device(dssdev); |
| 506 | |
| 507 | if (dssdev->manager) |
| 508 | dss_mgr_disconnect(dssdev->manager, dssdev); |
| 509 | } |
| 510 | |
| 511 | static int hdmi_read_edid(struct omap_dss_device *dssdev, |
| 512 | u8 *edid, int len) |
| 513 | { |
| 514 | bool need_enable; |
| 515 | int r; |
| 516 | |
| 517 | need_enable = hdmi.core_enabled == false; |
| 518 | |
| 519 | if (need_enable) { |
| 520 | r = hdmi_core_enable(dssdev); |
| 521 | if (r) |
| 522 | return r; |
| 523 | } |
| 524 | |
| 525 | r = read_edid(edid, len); |
| 526 | |
| 527 | if (need_enable) |
| 528 | hdmi_core_disable(dssdev); |
| 529 | |
| 530 | return r; |
| 531 | } |
| 532 | |
Tomi Valkeinen | 769dcb1 | 2014-06-18 14:21:55 +0300 | [diff] [blame] | 533 | static int hdmi_set_infoframe(struct omap_dss_device *dssdev, |
| 534 | const struct hdmi_avi_infoframe *avi) |
| 535 | { |
| 536 | hdmi.cfg.infoframe = *avi; |
| 537 | return 0; |
| 538 | } |
| 539 | |
| 540 | static int hdmi_set_hdmi_mode(struct omap_dss_device *dssdev, |
| 541 | bool hdmi_mode) |
| 542 | { |
| 543 | hdmi.cfg.hdmi_dvi_mode = hdmi_mode ? HDMI_HDMI : HDMI_DVI; |
| 544 | return 0; |
| 545 | } |
| 546 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 547 | static const struct omapdss_hdmi_ops hdmi_ops = { |
| 548 | .connect = hdmi_connect, |
| 549 | .disconnect = hdmi_disconnect, |
| 550 | |
| 551 | .enable = hdmi_display_enable, |
| 552 | .disable = hdmi_display_disable, |
| 553 | |
| 554 | .check_timings = hdmi_display_check_timing, |
| 555 | .set_timings = hdmi_display_set_timing, |
| 556 | .get_timings = hdmi_display_get_timings, |
| 557 | |
| 558 | .read_edid = hdmi_read_edid, |
Tomi Valkeinen | 769dcb1 | 2014-06-18 14:21:55 +0300 | [diff] [blame] | 559 | .set_infoframe = hdmi_set_infoframe, |
| 560 | .set_hdmi_mode = hdmi_set_hdmi_mode, |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 561 | }; |
| 562 | |
| 563 | static void hdmi_init_output(struct platform_device *pdev) |
| 564 | { |
| 565 | struct omap_dss_device *out = &hdmi.output; |
| 566 | |
| 567 | out->dev = &pdev->dev; |
| 568 | out->id = OMAP_DSS_OUTPUT_HDMI; |
| 569 | out->output_type = OMAP_DISPLAY_TYPE_HDMI; |
| 570 | out->name = "hdmi.0"; |
| 571 | out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT; |
| 572 | out->ops.hdmi = &hdmi_ops; |
| 573 | out->owner = THIS_MODULE; |
| 574 | |
| 575 | omapdss_register_output(out); |
| 576 | } |
| 577 | |
Jyri Sarha | 39c1b7b | 2014-12-02 14:12:56 +0200 | [diff] [blame] | 578 | static void hdmi_uninit_output(struct platform_device *pdev) |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 579 | { |
| 580 | struct omap_dss_device *out = &hdmi.output; |
| 581 | |
| 582 | omapdss_unregister_output(out); |
| 583 | } |
| 584 | |
| 585 | static int hdmi_probe_of(struct platform_device *pdev) |
| 586 | { |
| 587 | struct device_node *node = pdev->dev.of_node; |
| 588 | struct device_node *ep; |
| 589 | int r; |
| 590 | |
| 591 | ep = omapdss_of_get_first_endpoint(node); |
| 592 | if (!ep) |
| 593 | return 0; |
| 594 | |
| 595 | r = hdmi_parse_lanes_of(pdev, ep, &hdmi.phy); |
| 596 | if (r) |
| 597 | goto err; |
| 598 | |
| 599 | of_node_put(ep); |
| 600 | return 0; |
| 601 | |
| 602 | err: |
| 603 | of_node_put(ep); |
| 604 | return r; |
| 605 | } |
| 606 | |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 607 | /* Audio callbacks */ |
| 608 | static int hdmi_audio_startup(struct device *dev, |
| 609 | void (*abort_cb)(struct device *dev)) |
| 610 | { |
| 611 | struct omap_hdmi *hd = dev_get_drvdata(dev); |
| 612 | int ret = 0; |
| 613 | |
| 614 | mutex_lock(&hd->lock); |
| 615 | |
| 616 | if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) { |
| 617 | ret = -EPERM; |
| 618 | goto out; |
| 619 | } |
| 620 | |
| 621 | hd->audio_abort_cb = abort_cb; |
| 622 | |
| 623 | out: |
| 624 | mutex_unlock(&hd->lock); |
| 625 | |
| 626 | return ret; |
| 627 | } |
| 628 | |
| 629 | static int hdmi_audio_shutdown(struct device *dev) |
| 630 | { |
| 631 | struct omap_hdmi *hd = dev_get_drvdata(dev); |
| 632 | |
| 633 | mutex_lock(&hd->lock); |
| 634 | hd->audio_abort_cb = NULL; |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 635 | hd->audio_configured = false; |
| 636 | hd->audio_playing = false; |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 637 | mutex_unlock(&hd->lock); |
| 638 | |
| 639 | return 0; |
| 640 | } |
| 641 | |
| 642 | static int hdmi_audio_start(struct device *dev) |
| 643 | { |
| 644 | struct omap_hdmi *hd = dev_get_drvdata(dev); |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 645 | unsigned long flags; |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 646 | |
| 647 | WARN_ON(!hdmi_mode_has_audio(&hd->cfg)); |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 648 | |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 649 | spin_lock_irqsave(&hd->audio_playing_lock, flags); |
Jyri Sarha | 2d7639b | 2014-10-23 13:07:05 +0300 | [diff] [blame] | 650 | |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 651 | if (hd->display_enabled) |
| 652 | hdmi_start_audio_stream(hd); |
| 653 | hd->audio_playing = true; |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 654 | |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 655 | spin_unlock_irqrestore(&hd->audio_playing_lock, flags); |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 656 | return 0; |
| 657 | } |
| 658 | |
| 659 | static void hdmi_audio_stop(struct device *dev) |
| 660 | { |
| 661 | struct omap_hdmi *hd = dev_get_drvdata(dev); |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 662 | unsigned long flags; |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 663 | |
| 664 | WARN_ON(!hdmi_mode_has_audio(&hd->cfg)); |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 665 | |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 666 | spin_lock_irqsave(&hd->audio_playing_lock, flags); |
Jyri Sarha | 2d7639b | 2014-10-23 13:07:05 +0300 | [diff] [blame] | 667 | |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 668 | if (hd->display_enabled) |
| 669 | hdmi_stop_audio_stream(hd); |
| 670 | hd->audio_playing = false; |
| 671 | |
| 672 | spin_unlock_irqrestore(&hd->audio_playing_lock, flags); |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | static int hdmi_audio_config(struct device *dev, |
| 676 | struct omap_dss_audio *dss_audio) |
| 677 | { |
| 678 | struct omap_hdmi *hd = dev_get_drvdata(dev); |
| 679 | int ret; |
| 680 | |
| 681 | mutex_lock(&hd->lock); |
| 682 | |
| 683 | if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) { |
| 684 | ret = -EPERM; |
| 685 | goto out; |
| 686 | } |
| 687 | |
| 688 | ret = hdmi5_audio_config(&hd->core, &hd->wp, dss_audio, |
| 689 | hd->cfg.timings.pixelclock); |
| 690 | |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 691 | if (!ret) { |
| 692 | hd->audio_configured = true; |
| 693 | hd->audio_config = *dss_audio; |
| 694 | } |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 695 | out: |
| 696 | mutex_unlock(&hd->lock); |
| 697 | |
| 698 | return ret; |
| 699 | } |
| 700 | |
| 701 | static const struct omap_hdmi_audio_ops hdmi_audio_ops = { |
| 702 | .audio_startup = hdmi_audio_startup, |
| 703 | .audio_shutdown = hdmi_audio_shutdown, |
| 704 | .audio_start = hdmi_audio_start, |
| 705 | .audio_stop = hdmi_audio_stop, |
| 706 | .audio_config = hdmi_audio_config, |
| 707 | }; |
| 708 | |
| 709 | static int hdmi_audio_register(struct device *dev) |
| 710 | { |
| 711 | struct omap_hdmi_audio_pdata pdata = { |
| 712 | .dev = dev, |
| 713 | .dss_version = omapdss_get_version(), |
| 714 | .audio_dma_addr = hdmi_wp_get_audio_dma_addr(&hdmi.wp), |
| 715 | .ops = &hdmi_audio_ops, |
| 716 | }; |
| 717 | |
| 718 | hdmi.audio_pdev = platform_device_register_data( |
| 719 | dev, "omap-hdmi-audio", PLATFORM_DEVID_AUTO, |
| 720 | &pdata, sizeof(pdata)); |
| 721 | |
| 722 | if (IS_ERR(hdmi.audio_pdev)) |
| 723 | return PTR_ERR(hdmi.audio_pdev); |
| 724 | |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 725 | hdmi_runtime_get(); |
| 726 | hdmi.wp_idlemode = |
| 727 | REG_GET(hdmi.wp.base, HDMI_WP_SYSCONFIG, 3, 2); |
| 728 | hdmi_runtime_put(); |
| 729 | |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 730 | return 0; |
| 731 | } |
| 732 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 733 | /* HDMI HW IP initialisation */ |
Tomi Valkeinen | 736e60d | 2015-06-04 15:22:23 +0300 | [diff] [blame] | 734 | static int hdmi5_bind(struct device *dev, struct device *master, void *data) |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 735 | { |
Tomi Valkeinen | 736e60d | 2015-06-04 15:22:23 +0300 | [diff] [blame] | 736 | struct platform_device *pdev = to_platform_device(dev); |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 737 | int r; |
| 738 | int irq; |
| 739 | |
| 740 | hdmi.pdev = pdev; |
Jyri Sarha | 945514b | 2014-06-27 16:47:00 +0300 | [diff] [blame] | 741 | dev_set_drvdata(&pdev->dev, &hdmi); |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 742 | |
| 743 | mutex_init(&hdmi.lock); |
Jyri Sarha | 8a9d462 | 2015-08-28 17:21:46 +0300 | [diff] [blame] | 744 | spin_lock_init(&hdmi.audio_playing_lock); |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 745 | |
| 746 | if (pdev->dev.of_node) { |
| 747 | r = hdmi_probe_of(pdev); |
| 748 | if (r) |
| 749 | return r; |
| 750 | } |
| 751 | |
| 752 | r = hdmi_wp_init(pdev, &hdmi.wp); |
| 753 | if (r) |
| 754 | return r; |
| 755 | |
Tomi Valkeinen | 03aafa2 | 2014-10-16 15:31:38 +0300 | [diff] [blame] | 756 | r = hdmi_pll_init(pdev, &hdmi.pll, &hdmi.wp); |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 757 | if (r) |
| 758 | return r; |
| 759 | |
| 760 | r = hdmi_phy_init(pdev, &hdmi.phy); |
| 761 | if (r) |
Tomi Valkeinen | c84c3a5 | 2014-10-22 15:02:17 +0300 | [diff] [blame] | 762 | goto err; |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 763 | |
| 764 | r = hdmi5_core_init(pdev, &hdmi.core); |
| 765 | if (r) |
Tomi Valkeinen | c84c3a5 | 2014-10-22 15:02:17 +0300 | [diff] [blame] | 766 | goto err; |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 767 | |
| 768 | irq = platform_get_irq(pdev, 0); |
| 769 | if (irq < 0) { |
| 770 | DSSERR("platform_get_irq failed\n"); |
Tomi Valkeinen | c84c3a5 | 2014-10-22 15:02:17 +0300 | [diff] [blame] | 771 | r = -ENODEV; |
| 772 | goto err; |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 773 | } |
| 774 | |
| 775 | r = devm_request_threaded_irq(&pdev->dev, irq, |
| 776 | NULL, hdmi_irq_handler, |
| 777 | IRQF_ONESHOT, "OMAP HDMI", &hdmi.wp); |
| 778 | if (r) { |
| 779 | DSSERR("HDMI IRQ request failed\n"); |
Tomi Valkeinen | c84c3a5 | 2014-10-22 15:02:17 +0300 | [diff] [blame] | 780 | goto err; |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 781 | } |
| 782 | |
| 783 | pm_runtime_enable(&pdev->dev); |
| 784 | |
| 785 | hdmi_init_output(pdev); |
| 786 | |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 787 | r = hdmi_audio_register(&pdev->dev); |
| 788 | if (r) { |
| 789 | DSSERR("Registering HDMI audio failed %d\n", r); |
| 790 | hdmi_uninit_output(pdev); |
| 791 | pm_runtime_disable(&pdev->dev); |
| 792 | return r; |
| 793 | } |
| 794 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 795 | dss_debugfs_create_file("hdmi", hdmi_dump_regs); |
| 796 | |
| 797 | return 0; |
Tomi Valkeinen | c84c3a5 | 2014-10-22 15:02:17 +0300 | [diff] [blame] | 798 | err: |
| 799 | hdmi_pll_uninit(&hdmi.pll); |
| 800 | return r; |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 801 | } |
| 802 | |
Tomi Valkeinen | 736e60d | 2015-06-04 15:22:23 +0300 | [diff] [blame] | 803 | static void hdmi5_unbind(struct device *dev, struct device *master, void *data) |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 804 | { |
Tomi Valkeinen | 736e60d | 2015-06-04 15:22:23 +0300 | [diff] [blame] | 805 | struct platform_device *pdev = to_platform_device(dev); |
| 806 | |
Jyri Sarha | 45302d7 | 2014-05-23 16:20:46 +0300 | [diff] [blame] | 807 | if (hdmi.audio_pdev) |
| 808 | platform_device_unregister(hdmi.audio_pdev); |
| 809 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 810 | hdmi_uninit_output(pdev); |
| 811 | |
Tomi Valkeinen | c84c3a5 | 2014-10-22 15:02:17 +0300 | [diff] [blame] | 812 | hdmi_pll_uninit(&hdmi.pll); |
| 813 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 814 | pm_runtime_disable(&pdev->dev); |
Tomi Valkeinen | 736e60d | 2015-06-04 15:22:23 +0300 | [diff] [blame] | 815 | } |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 816 | |
Tomi Valkeinen | 736e60d | 2015-06-04 15:22:23 +0300 | [diff] [blame] | 817 | static const struct component_ops hdmi5_component_ops = { |
| 818 | .bind = hdmi5_bind, |
| 819 | .unbind = hdmi5_unbind, |
| 820 | }; |
| 821 | |
| 822 | static int hdmi5_probe(struct platform_device *pdev) |
| 823 | { |
| 824 | return component_add(&pdev->dev, &hdmi5_component_ops); |
| 825 | } |
| 826 | |
| 827 | static int hdmi5_remove(struct platform_device *pdev) |
| 828 | { |
| 829 | component_del(&pdev->dev, &hdmi5_component_ops); |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 830 | return 0; |
| 831 | } |
| 832 | |
| 833 | static int hdmi_runtime_suspend(struct device *dev) |
| 834 | { |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 835 | dispc_runtime_put(); |
| 836 | |
| 837 | return 0; |
| 838 | } |
| 839 | |
| 840 | static int hdmi_runtime_resume(struct device *dev) |
| 841 | { |
| 842 | int r; |
| 843 | |
| 844 | r = dispc_runtime_get(); |
| 845 | if (r < 0) |
| 846 | return r; |
| 847 | |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 848 | return 0; |
| 849 | } |
| 850 | |
| 851 | static const struct dev_pm_ops hdmi_pm_ops = { |
| 852 | .runtime_suspend = hdmi_runtime_suspend, |
| 853 | .runtime_resume = hdmi_runtime_resume, |
| 854 | }; |
| 855 | |
| 856 | static const struct of_device_id hdmi_of_match[] = { |
| 857 | { .compatible = "ti,omap5-hdmi", }, |
Tomi Valkeinen | adb5ff8 | 2014-12-31 11:26:18 +0200 | [diff] [blame] | 858 | { .compatible = "ti,dra7-hdmi", }, |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 859 | {}, |
| 860 | }; |
| 861 | |
| 862 | static struct platform_driver omapdss_hdmihw_driver = { |
Tomi Valkeinen | 736e60d | 2015-06-04 15:22:23 +0300 | [diff] [blame] | 863 | .probe = hdmi5_probe, |
| 864 | .remove = hdmi5_remove, |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 865 | .driver = { |
| 866 | .name = "omapdss_hdmi5", |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 867 | .pm = &hdmi_pm_ops, |
| 868 | .of_match_table = hdmi_of_match, |
Tomi Valkeinen | 422ccbd | 2014-10-16 09:54:25 +0300 | [diff] [blame] | 869 | .suppress_bind_attrs = true, |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 870 | }, |
| 871 | }; |
| 872 | |
| 873 | int __init hdmi5_init_platform_driver(void) |
| 874 | { |
| 875 | return platform_driver_register(&omapdss_hdmihw_driver); |
| 876 | } |
| 877 | |
Tomi Valkeinen | ede9269 | 2015-06-04 14:12:16 +0300 | [diff] [blame] | 878 | void hdmi5_uninit_platform_driver(void) |
Tomi Valkeinen | f5bab22 | 2014-03-13 12:44:14 +0200 | [diff] [blame] | 879 | { |
| 880 | platform_driver_unregister(&omapdss_hdmihw_driver); |
| 881 | } |