blob: 24a14029112ddbe18b015ebac9504263092a0a4c [file] [log] [blame]
Tomi Valkeinenf5bab222014-03-13 12:44:14 +02001/*
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 Valkeinen736e60d2015-06-04 15:22:23 +030040#include <linux/component.h>
Tomi Valkeinenf5bab222014-03-13 12:44:14 +020041#include <video/omapdss.h>
Jyri Sarha45302d72014-05-23 16:20:46 +030042#include <sound/omap-hdmi-audio.h>
Tomi Valkeinenf5bab222014-03-13 12:44:14 +020043
44#include "hdmi5_core.h"
45#include "dss.h"
46#include "dss_features.h"
47
Jyri Sarha945514b2014-06-27 16:47:00 +030048static struct omap_hdmi hdmi;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +020049
50static 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
64static 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
74static 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
120static 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
148static 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
167err_runtime_get:
168 regulator_disable(hdmi.vdda_reg);
169
170 return r;
171}
172
173static 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
181static 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 Valkeinenc84c3a52014-10-22 15:02:17 +0300186 struct dss_pll_clock_info hdmi_cinfo = { 0 };
Tomi Valkeinen67d8ffd2016-01-13 18:41:33 +0200187 unsigned pc;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200188
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 Valkeinen67d8ffd2016-01-13 18:41:33 +0200197 pc = p->pixelclock;
198 if (p->double_pixel)
199 pc *= 2;
200
201 hdmi_pll_compute(&hdmi.pll, pc, &hdmi_cinfo);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200202
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 Valkeinenc84c3a52014-10-22 15:02:17 +0300208 r = dss_pll_enable(&hdmi.pll.pll);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200209 if (r) {
Tomi Valkeinenc2fbd062014-10-16 16:01:51 +0300210 DSSERR("Failed to enable PLL\n");
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200211 goto err_pll_enable;
212 }
213
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300214 r = dss_pll_set_config(&hdmi.pll.pll, &hdmi_cinfo);
Tomi Valkeinenc2fbd062014-10-16 16:01:51 +0300215 if (r) {
216 DSSERR("Failed to configure PLL\n");
217 goto err_pll_cfg;
218 }
219
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300220 r = hdmi_phy_configure(&hdmi.phy, hdmi_cinfo.clkdco,
221 hdmi_cinfo.clkout[0]);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200222 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 Valkeinenf5bab222014-03-13 12:44:14 +0200239 r = dss_mgr_enable(mgr);
240 if (r)
241 goto err_mgr_enable;
242
Tomi Valkeinen4e4b53c2015-03-24 15:46:35 +0200243 r = hdmi_wp_video_start(&hdmi.wp);
244 if (r)
245 goto err_vid_enable;
246
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200247 hdmi_wp_set_irqenable(&hdmi.wp,
248 HDMI_IRQ_LINK_CONNECT | HDMI_IRQ_LINK_DISCONNECT);
249
250 return 0;
251
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200252err_vid_enable:
Tomi Valkeinen4e4b53c2015-03-24 15:46:35 +0200253 dss_mgr_disable(mgr);
254err_mgr_enable:
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200255 hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);
256err_phy_pwr:
257err_phy_cfg:
Tomi Valkeinenc2fbd062014-10-16 16:01:51 +0300258err_pll_cfg:
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300259 dss_pll_disable(&hdmi.pll.pll);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200260err_pll_enable:
261 hdmi_power_off_core(dssdev);
262 return -EIO;
263}
264
265static 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 Valkeinenf5bab222014-03-13 12:44:14 +0200271 hdmi_wp_video_stop(&hdmi.wp);
272
Tomi Valkeinen4e4b53c2015-03-24 15:46:35 +0200273 dss_mgr_disable(mgr);
274
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200275 hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);
276
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300277 dss_pll_disable(&hdmi.pll.pll);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200278
279 hdmi_power_off_core(dssdev);
280}
281
282static 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
287 if (!dispc_mgr_timings_ok(out->dispc_channel, timings))
288 return -EINVAL;
289
290 return 0;
291}
292
293static void hdmi_display_set_timing(struct omap_dss_device *dssdev,
294 struct omap_video_timings *timings)
295{
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200296 mutex_lock(&hdmi.lock);
297
Tomi Valkeinen769dcb12014-06-18 14:21:55 +0300298 hdmi.cfg.timings = *timings;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200299
Tomi Valkeinen769dcb12014-06-18 14:21:55 +0300300 dispc_set_tv_pclk(timings->pixelclock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200301
302 mutex_unlock(&hdmi.lock);
303}
304
305static void hdmi_display_get_timings(struct omap_dss_device *dssdev,
306 struct omap_video_timings *timings)
307{
Tomi Valkeinen769dcb12014-06-18 14:21:55 +0300308 *timings = hdmi.cfg.timings;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200309}
310
311static void hdmi_dump_regs(struct seq_file *s)
312{
313 mutex_lock(&hdmi.lock);
314
315 if (hdmi_runtime_get()) {
316 mutex_unlock(&hdmi.lock);
317 return;
318 }
319
320 hdmi_wp_dump(&hdmi.wp, s);
321 hdmi_pll_dump(&hdmi.pll, s);
322 hdmi_phy_dump(&hdmi.phy, s);
323 hdmi5_core_dump(&hdmi.core, s);
324
325 hdmi_runtime_put();
326 mutex_unlock(&hdmi.lock);
327}
328
329static int read_edid(u8 *buf, int len)
330{
331 int r;
332 int idlemode;
333
334 mutex_lock(&hdmi.lock);
335
336 r = hdmi_runtime_get();
337 BUG_ON(r);
338
339 idlemode = REG_GET(hdmi.wp.base, HDMI_WP_SYSCONFIG, 3, 2);
340 /* No-idle mode */
341 REG_FLD_MOD(hdmi.wp.base, HDMI_WP_SYSCONFIG, 1, 3, 2);
342
343 r = hdmi5_read_edid(&hdmi.core, buf, len);
344
345 REG_FLD_MOD(hdmi.wp.base, HDMI_WP_SYSCONFIG, idlemode, 3, 2);
346
347 hdmi_runtime_put();
348 mutex_unlock(&hdmi.lock);
349
350 return r;
351}
352
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300353static void hdmi_start_audio_stream(struct omap_hdmi *hd)
354{
355 REG_FLD_MOD(hdmi.wp.base, HDMI_WP_SYSCONFIG, 1, 3, 2);
356 hdmi_wp_audio_enable(&hd->wp, true);
357 hdmi_wp_audio_core_req_enable(&hd->wp, true);
358}
359
360static void hdmi_stop_audio_stream(struct omap_hdmi *hd)
361{
362 hdmi_wp_audio_core_req_enable(&hd->wp, false);
363 hdmi_wp_audio_enable(&hd->wp, false);
364 REG_FLD_MOD(hd->wp.base, HDMI_WP_SYSCONFIG, hd->wp_idlemode, 3, 2);
365}
366
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200367static int hdmi_display_enable(struct omap_dss_device *dssdev)
368{
369 struct omap_dss_device *out = &hdmi.output;
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300370 unsigned long flags;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200371 int r = 0;
372
373 DSSDBG("ENTER hdmi_display_enable\n");
374
375 mutex_lock(&hdmi.lock);
376
Tomi Valkeinenf1504ad2015-11-05 09:34:51 +0200377 if (!out->dispc_channel_connected) {
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200378 DSSERR("failed to enable display: no output/manager\n");
379 r = -ENODEV;
380 goto err0;
381 }
382
383 r = hdmi_power_on_full(dssdev);
384 if (r) {
385 DSSERR("failed to power on device\n");
386 goto err0;
387 }
388
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300389 if (hdmi.audio_configured) {
390 r = hdmi5_audio_config(&hdmi.core, &hdmi.wp, &hdmi.audio_config,
391 hdmi.cfg.timings.pixelclock);
392 if (r) {
393 DSSERR("Error restoring audio configuration: %d", r);
394 hdmi.audio_abort_cb(&hdmi.pdev->dev);
395 hdmi.audio_configured = false;
396 }
397 }
398
399 spin_lock_irqsave(&hdmi.audio_playing_lock, flags);
400 if (hdmi.audio_configured && hdmi.audio_playing)
401 hdmi_start_audio_stream(&hdmi);
Jyri Sarha45302d72014-05-23 16:20:46 +0300402 hdmi.display_enabled = true;
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300403 spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags);
Jyri Sarha45302d72014-05-23 16:20:46 +0300404
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200405 mutex_unlock(&hdmi.lock);
406 return 0;
407
408err0:
409 mutex_unlock(&hdmi.lock);
410 return r;
411}
412
413static void hdmi_display_disable(struct omap_dss_device *dssdev)
414{
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300415 unsigned long flags;
416
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200417 DSSDBG("Enter hdmi_display_disable\n");
418
419 mutex_lock(&hdmi.lock);
420
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300421 spin_lock_irqsave(&hdmi.audio_playing_lock, flags);
422 hdmi_stop_audio_stream(&hdmi);
423 hdmi.display_enabled = false;
424 spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags);
Jyri Sarha45302d72014-05-23 16:20:46 +0300425
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200426 hdmi_power_off_full(dssdev);
427
428 mutex_unlock(&hdmi.lock);
429}
430
431static int hdmi_core_enable(struct omap_dss_device *dssdev)
432{
433 int r = 0;
434
435 DSSDBG("ENTER omapdss_hdmi_core_enable\n");
436
437 mutex_lock(&hdmi.lock);
438
439 r = hdmi_power_on_core(dssdev);
440 if (r) {
441 DSSERR("failed to power on device\n");
442 goto err0;
443 }
444
445 mutex_unlock(&hdmi.lock);
446 return 0;
447
448err0:
449 mutex_unlock(&hdmi.lock);
450 return r;
451}
452
453static void hdmi_core_disable(struct omap_dss_device *dssdev)
454{
455 DSSDBG("Enter omapdss_hdmi_core_disable\n");
456
457 mutex_lock(&hdmi.lock);
458
459 hdmi_power_off_core(dssdev);
460
461 mutex_unlock(&hdmi.lock);
462}
463
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200464static int hdmi_connect(struct omap_dss_device *dssdev,
465 struct omap_dss_device *dst)
466{
467 struct omap_overlay_manager *mgr;
468 int r;
469
470 r = hdmi_init_regulator();
471 if (r)
472 return r;
473
474 mgr = omap_dss_get_overlay_manager(dssdev->dispc_channel);
475 if (!mgr)
476 return -ENODEV;
477
478 r = dss_mgr_connect(mgr, dssdev);
479 if (r)
480 return r;
481
482 r = omapdss_output_set_device(dssdev, dst);
483 if (r) {
484 DSSERR("failed to connect output to new device: %s\n",
485 dst->name);
486 dss_mgr_disconnect(mgr, dssdev);
487 return r;
488 }
489
490 return 0;
491}
492
493static void hdmi_disconnect(struct omap_dss_device *dssdev,
494 struct omap_dss_device *dst)
495{
496 WARN_ON(dst != dssdev->dst);
497
498 if (dst != dssdev->dst)
499 return;
500
501 omapdss_output_unset_device(dssdev);
502
503 if (dssdev->manager)
504 dss_mgr_disconnect(dssdev->manager, dssdev);
505}
506
507static int hdmi_read_edid(struct omap_dss_device *dssdev,
508 u8 *edid, int len)
509{
510 bool need_enable;
511 int r;
512
513 need_enable = hdmi.core_enabled == false;
514
515 if (need_enable) {
516 r = hdmi_core_enable(dssdev);
517 if (r)
518 return r;
519 }
520
521 r = read_edid(edid, len);
522
523 if (need_enable)
524 hdmi_core_disable(dssdev);
525
526 return r;
527}
528
Tomi Valkeinen769dcb12014-06-18 14:21:55 +0300529static int hdmi_set_infoframe(struct omap_dss_device *dssdev,
530 const struct hdmi_avi_infoframe *avi)
531{
532 hdmi.cfg.infoframe = *avi;
533 return 0;
534}
535
536static int hdmi_set_hdmi_mode(struct omap_dss_device *dssdev,
537 bool hdmi_mode)
538{
539 hdmi.cfg.hdmi_dvi_mode = hdmi_mode ? HDMI_HDMI : HDMI_DVI;
540 return 0;
541}
542
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200543static const struct omapdss_hdmi_ops hdmi_ops = {
544 .connect = hdmi_connect,
545 .disconnect = hdmi_disconnect,
546
547 .enable = hdmi_display_enable,
548 .disable = hdmi_display_disable,
549
550 .check_timings = hdmi_display_check_timing,
551 .set_timings = hdmi_display_set_timing,
552 .get_timings = hdmi_display_get_timings,
553
554 .read_edid = hdmi_read_edid,
Tomi Valkeinen769dcb12014-06-18 14:21:55 +0300555 .set_infoframe = hdmi_set_infoframe,
556 .set_hdmi_mode = hdmi_set_hdmi_mode,
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200557};
558
559static void hdmi_init_output(struct platform_device *pdev)
560{
561 struct omap_dss_device *out = &hdmi.output;
562
563 out->dev = &pdev->dev;
564 out->id = OMAP_DSS_OUTPUT_HDMI;
565 out->output_type = OMAP_DISPLAY_TYPE_HDMI;
566 out->name = "hdmi.0";
567 out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
568 out->ops.hdmi = &hdmi_ops;
569 out->owner = THIS_MODULE;
570
571 omapdss_register_output(out);
572}
573
Jyri Sarha39c1b7b2014-12-02 14:12:56 +0200574static void hdmi_uninit_output(struct platform_device *pdev)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200575{
576 struct omap_dss_device *out = &hdmi.output;
577
578 omapdss_unregister_output(out);
579}
580
581static int hdmi_probe_of(struct platform_device *pdev)
582{
583 struct device_node *node = pdev->dev.of_node;
584 struct device_node *ep;
585 int r;
586
587 ep = omapdss_of_get_first_endpoint(node);
588 if (!ep)
589 return 0;
590
591 r = hdmi_parse_lanes_of(pdev, ep, &hdmi.phy);
592 if (r)
593 goto err;
594
595 of_node_put(ep);
596 return 0;
597
598err:
599 of_node_put(ep);
600 return r;
601}
602
Jyri Sarha45302d72014-05-23 16:20:46 +0300603/* Audio callbacks */
604static int hdmi_audio_startup(struct device *dev,
605 void (*abort_cb)(struct device *dev))
606{
607 struct omap_hdmi *hd = dev_get_drvdata(dev);
608 int ret = 0;
609
610 mutex_lock(&hd->lock);
611
612 if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) {
613 ret = -EPERM;
614 goto out;
615 }
616
617 hd->audio_abort_cb = abort_cb;
618
619out:
620 mutex_unlock(&hd->lock);
621
622 return ret;
623}
624
625static int hdmi_audio_shutdown(struct device *dev)
626{
627 struct omap_hdmi *hd = dev_get_drvdata(dev);
628
629 mutex_lock(&hd->lock);
630 hd->audio_abort_cb = NULL;
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300631 hd->audio_configured = false;
632 hd->audio_playing = false;
Jyri Sarha45302d72014-05-23 16:20:46 +0300633 mutex_unlock(&hd->lock);
634
635 return 0;
636}
637
638static int hdmi_audio_start(struct device *dev)
639{
640 struct omap_hdmi *hd = dev_get_drvdata(dev);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300641 unsigned long flags;
Jyri Sarha45302d72014-05-23 16:20:46 +0300642
643 WARN_ON(!hdmi_mode_has_audio(&hd->cfg));
Jyri Sarha45302d72014-05-23 16:20:46 +0300644
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300645 spin_lock_irqsave(&hd->audio_playing_lock, flags);
Jyri Sarha2d7639b2014-10-23 13:07:05 +0300646
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300647 if (hd->display_enabled)
648 hdmi_start_audio_stream(hd);
649 hd->audio_playing = true;
Jyri Sarha45302d72014-05-23 16:20:46 +0300650
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300651 spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
Jyri Sarha45302d72014-05-23 16:20:46 +0300652 return 0;
653}
654
655static void hdmi_audio_stop(struct device *dev)
656{
657 struct omap_hdmi *hd = dev_get_drvdata(dev);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300658 unsigned long flags;
Jyri Sarha45302d72014-05-23 16:20:46 +0300659
660 WARN_ON(!hdmi_mode_has_audio(&hd->cfg));
Jyri Sarha45302d72014-05-23 16:20:46 +0300661
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300662 spin_lock_irqsave(&hd->audio_playing_lock, flags);
Jyri Sarha2d7639b2014-10-23 13:07:05 +0300663
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300664 if (hd->display_enabled)
665 hdmi_stop_audio_stream(hd);
666 hd->audio_playing = false;
667
668 spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
Jyri Sarha45302d72014-05-23 16:20:46 +0300669}
670
671static int hdmi_audio_config(struct device *dev,
672 struct omap_dss_audio *dss_audio)
673{
674 struct omap_hdmi *hd = dev_get_drvdata(dev);
675 int ret;
676
677 mutex_lock(&hd->lock);
678
679 if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) {
680 ret = -EPERM;
681 goto out;
682 }
683
684 ret = hdmi5_audio_config(&hd->core, &hd->wp, dss_audio,
685 hd->cfg.timings.pixelclock);
686
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300687 if (!ret) {
688 hd->audio_configured = true;
689 hd->audio_config = *dss_audio;
690 }
Jyri Sarha45302d72014-05-23 16:20:46 +0300691out:
692 mutex_unlock(&hd->lock);
693
694 return ret;
695}
696
697static const struct omap_hdmi_audio_ops hdmi_audio_ops = {
698 .audio_startup = hdmi_audio_startup,
699 .audio_shutdown = hdmi_audio_shutdown,
700 .audio_start = hdmi_audio_start,
701 .audio_stop = hdmi_audio_stop,
702 .audio_config = hdmi_audio_config,
703};
704
705static int hdmi_audio_register(struct device *dev)
706{
707 struct omap_hdmi_audio_pdata pdata = {
708 .dev = dev,
709 .dss_version = omapdss_get_version(),
710 .audio_dma_addr = hdmi_wp_get_audio_dma_addr(&hdmi.wp),
711 .ops = &hdmi_audio_ops,
712 };
713
714 hdmi.audio_pdev = platform_device_register_data(
715 dev, "omap-hdmi-audio", PLATFORM_DEVID_AUTO,
716 &pdata, sizeof(pdata));
717
718 if (IS_ERR(hdmi.audio_pdev))
719 return PTR_ERR(hdmi.audio_pdev);
720
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300721 hdmi_runtime_get();
722 hdmi.wp_idlemode =
723 REG_GET(hdmi.wp.base, HDMI_WP_SYSCONFIG, 3, 2);
724 hdmi_runtime_put();
725
Jyri Sarha45302d72014-05-23 16:20:46 +0300726 return 0;
727}
728
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200729/* HDMI HW IP initialisation */
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300730static int hdmi5_bind(struct device *dev, struct device *master, void *data)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200731{
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300732 struct platform_device *pdev = to_platform_device(dev);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200733 int r;
734 int irq;
735
736 hdmi.pdev = pdev;
Jyri Sarha945514b2014-06-27 16:47:00 +0300737 dev_set_drvdata(&pdev->dev, &hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200738
739 mutex_init(&hdmi.lock);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300740 spin_lock_init(&hdmi.audio_playing_lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200741
742 if (pdev->dev.of_node) {
743 r = hdmi_probe_of(pdev);
744 if (r)
745 return r;
746 }
747
748 r = hdmi_wp_init(pdev, &hdmi.wp);
749 if (r)
750 return r;
751
Tomi Valkeinen03aafa22014-10-16 15:31:38 +0300752 r = hdmi_pll_init(pdev, &hdmi.pll, &hdmi.wp);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200753 if (r)
754 return r;
755
756 r = hdmi_phy_init(pdev, &hdmi.phy);
757 if (r)
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300758 goto err;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200759
760 r = hdmi5_core_init(pdev, &hdmi.core);
761 if (r)
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300762 goto err;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200763
764 irq = platform_get_irq(pdev, 0);
765 if (irq < 0) {
766 DSSERR("platform_get_irq failed\n");
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300767 r = -ENODEV;
768 goto err;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200769 }
770
771 r = devm_request_threaded_irq(&pdev->dev, irq,
772 NULL, hdmi_irq_handler,
773 IRQF_ONESHOT, "OMAP HDMI", &hdmi.wp);
774 if (r) {
775 DSSERR("HDMI IRQ request failed\n");
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300776 goto err;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200777 }
778
779 pm_runtime_enable(&pdev->dev);
780
781 hdmi_init_output(pdev);
782
Jyri Sarha45302d72014-05-23 16:20:46 +0300783 r = hdmi_audio_register(&pdev->dev);
784 if (r) {
785 DSSERR("Registering HDMI audio failed %d\n", r);
786 hdmi_uninit_output(pdev);
787 pm_runtime_disable(&pdev->dev);
788 return r;
789 }
790
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200791 dss_debugfs_create_file("hdmi", hdmi_dump_regs);
792
793 return 0;
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300794err:
795 hdmi_pll_uninit(&hdmi.pll);
796 return r;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200797}
798
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300799static void hdmi5_unbind(struct device *dev, struct device *master, void *data)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200800{
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300801 struct platform_device *pdev = to_platform_device(dev);
802
Jyri Sarha45302d72014-05-23 16:20:46 +0300803 if (hdmi.audio_pdev)
804 platform_device_unregister(hdmi.audio_pdev);
805
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200806 hdmi_uninit_output(pdev);
807
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300808 hdmi_pll_uninit(&hdmi.pll);
809
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200810 pm_runtime_disable(&pdev->dev);
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300811}
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200812
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300813static const struct component_ops hdmi5_component_ops = {
814 .bind = hdmi5_bind,
815 .unbind = hdmi5_unbind,
816};
817
818static int hdmi5_probe(struct platform_device *pdev)
819{
820 return component_add(&pdev->dev, &hdmi5_component_ops);
821}
822
823static int hdmi5_remove(struct platform_device *pdev)
824{
825 component_del(&pdev->dev, &hdmi5_component_ops);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200826 return 0;
827}
828
829static int hdmi_runtime_suspend(struct device *dev)
830{
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200831 dispc_runtime_put();
832
833 return 0;
834}
835
836static int hdmi_runtime_resume(struct device *dev)
837{
838 int r;
839
840 r = dispc_runtime_get();
841 if (r < 0)
842 return r;
843
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200844 return 0;
845}
846
847static const struct dev_pm_ops hdmi_pm_ops = {
848 .runtime_suspend = hdmi_runtime_suspend,
849 .runtime_resume = hdmi_runtime_resume,
850};
851
852static const struct of_device_id hdmi_of_match[] = {
853 { .compatible = "ti,omap5-hdmi", },
Tomi Valkeinenadb5ff82014-12-31 11:26:18 +0200854 { .compatible = "ti,dra7-hdmi", },
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200855 {},
856};
857
858static struct platform_driver omapdss_hdmihw_driver = {
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300859 .probe = hdmi5_probe,
860 .remove = hdmi5_remove,
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200861 .driver = {
862 .name = "omapdss_hdmi5",
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200863 .pm = &hdmi_pm_ops,
864 .of_match_table = hdmi_of_match,
Tomi Valkeinen422ccbd2014-10-16 09:54:25 +0300865 .suppress_bind_attrs = true,
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200866 },
867};
868
869int __init hdmi5_init_platform_driver(void)
870{
871 return platform_driver_register(&omapdss_hdmihw_driver);
872}
873
Tomi Valkeinenede92692015-06-04 14:12:16 +0300874void hdmi5_uninit_platform_driver(void)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200875{
876 platform_driver_unregister(&omapdss_hdmihw_driver);
877}