2 * HDMI driver for OMAP5
4 * Copyright (C) 2014 Texas Instruments Incorporated
9 * Archit Taneja <archit@ti.com>
10 * Tomi Valkeinen <tomi.valkeinen@ti.com>
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.
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
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/>.
25 #define DSS_SUBSYS_NAME "HDMI"
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/err.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>
40 #include <linux/component.h>
41 #include <video/omapdss.h>
42 #include <sound/omap-hdmi-audio.h>
44 #include "hdmi5_core.h"
46 #include "dss_features.h"
48 static struct omap_hdmi hdmi
;
50 static int hdmi_runtime_get(void)
54 DSSDBG("hdmi_runtime_get\n");
56 r
= pm_runtime_get_sync(&hdmi
.pdev
->dev
);
64 static void hdmi_runtime_put(void)
68 DSSDBG("hdmi_runtime_put\n");
70 r
= pm_runtime_put_sync(&hdmi
.pdev
->dev
);
71 WARN_ON(r
< 0 && r
!= -ENOSYS
);
74 static irqreturn_t
hdmi_irq_handler(int irq
, void *data
)
76 struct hdmi_wp_data
*wp
= data
;
79 irqstatus
= hdmi_wp_get_irqstatus(wp
);
80 hdmi_wp_set_irqstatus(wp
, irqstatus
);
82 if ((irqstatus
& HDMI_IRQ_LINK_CONNECT
) &&
83 irqstatus
& HDMI_IRQ_LINK_DISCONNECT
) {
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.
92 hdmi_wp_set_phy_pwr(wp
, HDMI_PHYPWRCMD_OFF
);
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.
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
);
104 hdmi_wp_set_irqstatus(wp
, HDMI_IRQ_LINK_CONNECT
|
105 HDMI_IRQ_LINK_DISCONNECT
);
107 hdmi_wp_set_phy_pwr(wp
, HDMI_PHYPWRCMD_LDOON
);
109 REG_FLD_MOD(hdmi
.phy
.base
, HDMI_TXPHY_PAD_CFG_CTRL
, 0, 15, 15);
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
);
120 static int hdmi_init_regulator(void)
123 struct regulator
*reg
;
125 if (hdmi
.vdda_reg
!= NULL
)
128 reg
= devm_regulator_get(&hdmi
.pdev
->dev
, "vdda");
130 DSSERR("can't get VDDA regulator\n");
134 if (regulator_can_change_voltage(reg
)) {
135 r
= regulator_set_voltage(reg
, 1800000, 1800000);
137 devm_regulator_put(reg
);
138 DSSWARN("can't set the regulator voltage\n");
148 static int hdmi_power_on_core(struct omap_dss_device
*dssdev
)
152 r
= regulator_enable(hdmi
.vdda_reg
);
156 r
= hdmi_runtime_get();
158 goto err_runtime_get
;
160 /* Make selection of HDMI in DSS */
161 dss_select_hdmi_venc_clk_source(DSS_HDMI_M_PCLK
);
163 hdmi
.core_enabled
= true;
168 regulator_disable(hdmi
.vdda_reg
);
173 static void hdmi_power_off_core(struct omap_dss_device
*dssdev
)
175 hdmi
.core_enabled
= false;
178 regulator_disable(hdmi
.vdda_reg
);
181 static int hdmi_power_on_full(struct omap_dss_device
*dssdev
)
184 struct omap_video_timings
*p
;
185 struct omap_overlay_manager
*mgr
= hdmi
.output
.manager
;
186 struct dss_pll_clock_info hdmi_cinfo
= { 0 };
188 r
= hdmi_power_on_core(dssdev
);
192 p
= &hdmi
.cfg
.timings
;
194 DSSDBG("hdmi_power_on x_res= %d y_res = %d\n", p
->x_res
, p
->y_res
);
196 hdmi_pll_compute(&hdmi
.pll
, p
->pixelclock
, &hdmi_cinfo
);
198 /* disable and clear irqs */
199 hdmi_wp_clear_irqenable(&hdmi
.wp
, 0xffffffff);
200 hdmi_wp_set_irqstatus(&hdmi
.wp
,
201 hdmi_wp_get_irqstatus(&hdmi
.wp
));
203 r
= dss_pll_enable(&hdmi
.pll
.pll
);
205 DSSERR("Failed to enable PLL\n");
209 r
= dss_pll_set_config(&hdmi
.pll
.pll
, &hdmi_cinfo
);
211 DSSERR("Failed to configure PLL\n");
215 r
= hdmi_phy_configure(&hdmi
.phy
, hdmi_cinfo
.clkdco
,
216 hdmi_cinfo
.clkout
[0]);
218 DSSDBG("Failed to start PHY\n");
222 r
= hdmi_wp_set_phy_pwr(&hdmi
.wp
, HDMI_PHYPWRCMD_LDOON
);
226 hdmi5_configure(&hdmi
.core
, &hdmi
.wp
, &hdmi
.cfg
);
228 /* bypass TV gamma table */
229 dispc_enable_gamma_table(0);
232 dss_mgr_set_timings(mgr
, p
);
234 r
= hdmi_wp_video_start(&hdmi
.wp
);
238 r
= dss_mgr_enable(mgr
);
242 hdmi_wp_set_irqenable(&hdmi
.wp
,
243 HDMI_IRQ_LINK_CONNECT
| HDMI_IRQ_LINK_DISCONNECT
);
248 hdmi_wp_video_stop(&hdmi
.wp
);
250 hdmi_wp_set_phy_pwr(&hdmi
.wp
, HDMI_PHYPWRCMD_OFF
);
254 dss_pll_disable(&hdmi
.pll
.pll
);
256 hdmi_power_off_core(dssdev
);
260 static void hdmi_power_off_full(struct omap_dss_device
*dssdev
)
262 struct omap_overlay_manager
*mgr
= hdmi
.output
.manager
;
264 hdmi_wp_clear_irqenable(&hdmi
.wp
, 0xffffffff);
266 dss_mgr_disable(mgr
);
268 hdmi_wp_video_stop(&hdmi
.wp
);
270 hdmi_wp_set_phy_pwr(&hdmi
.wp
, HDMI_PHYPWRCMD_OFF
);
272 dss_pll_disable(&hdmi
.pll
.pll
);
274 hdmi_power_off_core(dssdev
);
277 static int hdmi_display_check_timing(struct omap_dss_device
*dssdev
,
278 struct omap_video_timings
*timings
)
280 struct omap_dss_device
*out
= &hdmi
.output
;
282 /* TODO: proper interlace support */
283 if (timings
->interlace
)
286 if (!dispc_mgr_timings_ok(out
->dispc_channel
, timings
))
292 static void hdmi_display_set_timing(struct omap_dss_device
*dssdev
,
293 struct omap_video_timings
*timings
)
295 mutex_lock(&hdmi
.lock
);
297 hdmi
.cfg
.timings
= *timings
;
299 dispc_set_tv_pclk(timings
->pixelclock
);
301 mutex_unlock(&hdmi
.lock
);
304 static void hdmi_display_get_timings(struct omap_dss_device
*dssdev
,
305 struct omap_video_timings
*timings
)
307 *timings
= hdmi
.cfg
.timings
;
310 static void hdmi_dump_regs(struct seq_file
*s
)
312 mutex_lock(&hdmi
.lock
);
314 if (hdmi_runtime_get()) {
315 mutex_unlock(&hdmi
.lock
);
319 hdmi_wp_dump(&hdmi
.wp
, s
);
320 hdmi_pll_dump(&hdmi
.pll
, s
);
321 hdmi_phy_dump(&hdmi
.phy
, s
);
322 hdmi5_core_dump(&hdmi
.core
, s
);
325 mutex_unlock(&hdmi
.lock
);
328 static int read_edid(u8
*buf
, int len
)
333 mutex_lock(&hdmi
.lock
);
335 r
= hdmi_runtime_get();
338 idlemode
= REG_GET(hdmi
.wp
.base
, HDMI_WP_SYSCONFIG
, 3, 2);
340 REG_FLD_MOD(hdmi
.wp
.base
, HDMI_WP_SYSCONFIG
, 1, 3, 2);
342 r
= hdmi5_read_edid(&hdmi
.core
, buf
, len
);
344 REG_FLD_MOD(hdmi
.wp
.base
, HDMI_WP_SYSCONFIG
, idlemode
, 3, 2);
347 mutex_unlock(&hdmi
.lock
);
352 static void hdmi_start_audio_stream(struct omap_hdmi
*hd
)
354 REG_FLD_MOD(hdmi
.wp
.base
, HDMI_WP_SYSCONFIG
, 1, 3, 2);
355 hdmi_wp_audio_enable(&hd
->wp
, true);
356 hdmi_wp_audio_core_req_enable(&hd
->wp
, true);
359 static void hdmi_stop_audio_stream(struct omap_hdmi
*hd
)
361 hdmi_wp_audio_core_req_enable(&hd
->wp
, false);
362 hdmi_wp_audio_enable(&hd
->wp
, false);
363 REG_FLD_MOD(hd
->wp
.base
, HDMI_WP_SYSCONFIG
, hd
->wp_idlemode
, 3, 2);
366 static int hdmi_display_enable(struct omap_dss_device
*dssdev
)
368 struct omap_dss_device
*out
= &hdmi
.output
;
372 DSSDBG("ENTER hdmi_display_enable\n");
374 mutex_lock(&hdmi
.lock
);
376 if (out
->manager
== NULL
) {
377 DSSERR("failed to enable display: no output/manager\n");
382 r
= hdmi_power_on_full(dssdev
);
384 DSSERR("failed to power on device\n");
388 if (hdmi
.audio_configured
) {
389 r
= hdmi5_audio_config(&hdmi
.core
, &hdmi
.wp
, &hdmi
.audio_config
,
390 hdmi
.cfg
.timings
.pixelclock
);
392 DSSERR("Error restoring audio configuration: %d", r
);
393 hdmi
.audio_abort_cb(&hdmi
.pdev
->dev
);
394 hdmi
.audio_configured
= false;
398 spin_lock_irqsave(&hdmi
.audio_playing_lock
, flags
);
399 if (hdmi
.audio_configured
&& hdmi
.audio_playing
)
400 hdmi_start_audio_stream(&hdmi
);
401 hdmi
.display_enabled
= true;
402 spin_unlock_irqrestore(&hdmi
.audio_playing_lock
, flags
);
404 mutex_unlock(&hdmi
.lock
);
408 mutex_unlock(&hdmi
.lock
);
412 static void hdmi_display_disable(struct omap_dss_device
*dssdev
)
416 DSSDBG("Enter hdmi_display_disable\n");
418 mutex_lock(&hdmi
.lock
);
420 spin_lock_irqsave(&hdmi
.audio_playing_lock
, flags
);
421 hdmi_stop_audio_stream(&hdmi
);
422 hdmi
.display_enabled
= false;
423 spin_unlock_irqrestore(&hdmi
.audio_playing_lock
, flags
);
425 hdmi_power_off_full(dssdev
);
427 mutex_unlock(&hdmi
.lock
);
430 static int hdmi_core_enable(struct omap_dss_device
*dssdev
)
434 DSSDBG("ENTER omapdss_hdmi_core_enable\n");
436 mutex_lock(&hdmi
.lock
);
438 r
= hdmi_power_on_core(dssdev
);
440 DSSERR("failed to power on device\n");
444 mutex_unlock(&hdmi
.lock
);
448 mutex_unlock(&hdmi
.lock
);
452 static void hdmi_core_disable(struct omap_dss_device
*dssdev
)
454 DSSDBG("Enter omapdss_hdmi_core_disable\n");
456 mutex_lock(&hdmi
.lock
);
458 hdmi_power_off_core(dssdev
);
460 mutex_unlock(&hdmi
.lock
);
463 static int hdmi_connect(struct omap_dss_device
*dssdev
,
464 struct omap_dss_device
*dst
)
466 struct omap_overlay_manager
*mgr
;
469 r
= hdmi_init_regulator();
473 mgr
= omap_dss_get_overlay_manager(dssdev
->dispc_channel
);
477 r
= dss_mgr_connect(mgr
, dssdev
);
481 r
= omapdss_output_set_device(dssdev
, dst
);
483 DSSERR("failed to connect output to new device: %s\n",
485 dss_mgr_disconnect(mgr
, dssdev
);
492 static void hdmi_disconnect(struct omap_dss_device
*dssdev
,
493 struct omap_dss_device
*dst
)
495 WARN_ON(dst
!= dssdev
->dst
);
497 if (dst
!= dssdev
->dst
)
500 omapdss_output_unset_device(dssdev
);
503 dss_mgr_disconnect(dssdev
->manager
, dssdev
);
506 static int hdmi_read_edid(struct omap_dss_device
*dssdev
,
512 need_enable
= hdmi
.core_enabled
== false;
515 r
= hdmi_core_enable(dssdev
);
520 r
= read_edid(edid
, len
);
523 hdmi_core_disable(dssdev
);
528 static int hdmi_set_infoframe(struct omap_dss_device
*dssdev
,
529 const struct hdmi_avi_infoframe
*avi
)
531 hdmi
.cfg
.infoframe
= *avi
;
535 static int hdmi_set_hdmi_mode(struct omap_dss_device
*dssdev
,
538 hdmi
.cfg
.hdmi_dvi_mode
= hdmi_mode
? HDMI_HDMI
: HDMI_DVI
;
542 static const struct omapdss_hdmi_ops hdmi_ops
= {
543 .connect
= hdmi_connect
,
544 .disconnect
= hdmi_disconnect
,
546 .enable
= hdmi_display_enable
,
547 .disable
= hdmi_display_disable
,
549 .check_timings
= hdmi_display_check_timing
,
550 .set_timings
= hdmi_display_set_timing
,
551 .get_timings
= hdmi_display_get_timings
,
553 .read_edid
= hdmi_read_edid
,
554 .set_infoframe
= hdmi_set_infoframe
,
555 .set_hdmi_mode
= hdmi_set_hdmi_mode
,
558 static void hdmi_init_output(struct platform_device
*pdev
)
560 struct omap_dss_device
*out
= &hdmi
.output
;
562 out
->dev
= &pdev
->dev
;
563 out
->id
= OMAP_DSS_OUTPUT_HDMI
;
564 out
->output_type
= OMAP_DISPLAY_TYPE_HDMI
;
565 out
->name
= "hdmi.0";
566 out
->dispc_channel
= OMAP_DSS_CHANNEL_DIGIT
;
567 out
->ops
.hdmi
= &hdmi_ops
;
568 out
->owner
= THIS_MODULE
;
570 omapdss_register_output(out
);
573 static void hdmi_uninit_output(struct platform_device
*pdev
)
575 struct omap_dss_device
*out
= &hdmi
.output
;
577 omapdss_unregister_output(out
);
580 static int hdmi_probe_of(struct platform_device
*pdev
)
582 struct device_node
*node
= pdev
->dev
.of_node
;
583 struct device_node
*ep
;
586 ep
= omapdss_of_get_first_endpoint(node
);
590 r
= hdmi_parse_lanes_of(pdev
, ep
, &hdmi
.phy
);
602 /* Audio callbacks */
603 static int hdmi_audio_startup(struct device
*dev
,
604 void (*abort_cb
)(struct device
*dev
))
606 struct omap_hdmi
*hd
= dev_get_drvdata(dev
);
609 mutex_lock(&hd
->lock
);
611 if (!hdmi_mode_has_audio(&hd
->cfg
) || !hd
->display_enabled
) {
616 hd
->audio_abort_cb
= abort_cb
;
619 mutex_unlock(&hd
->lock
);
624 static int hdmi_audio_shutdown(struct device
*dev
)
626 struct omap_hdmi
*hd
= dev_get_drvdata(dev
);
628 mutex_lock(&hd
->lock
);
629 hd
->audio_abort_cb
= NULL
;
630 hd
->audio_configured
= false;
631 hd
->audio_playing
= false;
632 mutex_unlock(&hd
->lock
);
637 static int hdmi_audio_start(struct device
*dev
)
639 struct omap_hdmi
*hd
= dev_get_drvdata(dev
);
642 WARN_ON(!hdmi_mode_has_audio(&hd
->cfg
));
644 spin_lock_irqsave(&hd
->audio_playing_lock
, flags
);
646 if (hd
->display_enabled
)
647 hdmi_start_audio_stream(hd
);
648 hd
->audio_playing
= true;
650 spin_unlock_irqrestore(&hd
->audio_playing_lock
, flags
);
654 static void hdmi_audio_stop(struct device
*dev
)
656 struct omap_hdmi
*hd
= dev_get_drvdata(dev
);
659 WARN_ON(!hdmi_mode_has_audio(&hd
->cfg
));
661 spin_lock_irqsave(&hd
->audio_playing_lock
, flags
);
663 if (hd
->display_enabled
)
664 hdmi_stop_audio_stream(hd
);
665 hd
->audio_playing
= false;
667 spin_unlock_irqrestore(&hd
->audio_playing_lock
, flags
);
670 static int hdmi_audio_config(struct device
*dev
,
671 struct omap_dss_audio
*dss_audio
)
673 struct omap_hdmi
*hd
= dev_get_drvdata(dev
);
676 mutex_lock(&hd
->lock
);
678 if (!hdmi_mode_has_audio(&hd
->cfg
) || !hd
->display_enabled
) {
683 ret
= hdmi5_audio_config(&hd
->core
, &hd
->wp
, dss_audio
,
684 hd
->cfg
.timings
.pixelclock
);
687 hd
->audio_configured
= true;
688 hd
->audio_config
= *dss_audio
;
691 mutex_unlock(&hd
->lock
);
696 static const struct omap_hdmi_audio_ops hdmi_audio_ops
= {
697 .audio_startup
= hdmi_audio_startup
,
698 .audio_shutdown
= hdmi_audio_shutdown
,
699 .audio_start
= hdmi_audio_start
,
700 .audio_stop
= hdmi_audio_stop
,
701 .audio_config
= hdmi_audio_config
,
704 static int hdmi_audio_register(struct device
*dev
)
706 struct omap_hdmi_audio_pdata pdata
= {
708 .dss_version
= omapdss_get_version(),
709 .audio_dma_addr
= hdmi_wp_get_audio_dma_addr(&hdmi
.wp
),
710 .ops
= &hdmi_audio_ops
,
713 hdmi
.audio_pdev
= platform_device_register_data(
714 dev
, "omap-hdmi-audio", PLATFORM_DEVID_AUTO
,
715 &pdata
, sizeof(pdata
));
717 if (IS_ERR(hdmi
.audio_pdev
))
718 return PTR_ERR(hdmi
.audio_pdev
);
722 REG_GET(hdmi
.wp
.base
, HDMI_WP_SYSCONFIG
, 3, 2);
728 /* HDMI HW IP initialisation */
729 static int hdmi5_bind(struct device
*dev
, struct device
*master
, void *data
)
731 struct platform_device
*pdev
= to_platform_device(dev
);
736 dev_set_drvdata(&pdev
->dev
, &hdmi
);
738 mutex_init(&hdmi
.lock
);
739 spin_lock_init(&hdmi
.audio_playing_lock
);
741 if (pdev
->dev
.of_node
) {
742 r
= hdmi_probe_of(pdev
);
747 r
= hdmi_wp_init(pdev
, &hdmi
.wp
);
751 r
= hdmi_pll_init(pdev
, &hdmi
.pll
, &hdmi
.wp
);
755 r
= hdmi_phy_init(pdev
, &hdmi
.phy
);
759 r
= hdmi5_core_init(pdev
, &hdmi
.core
);
763 irq
= platform_get_irq(pdev
, 0);
765 DSSERR("platform_get_irq failed\n");
770 r
= devm_request_threaded_irq(&pdev
->dev
, irq
,
771 NULL
, hdmi_irq_handler
,
772 IRQF_ONESHOT
, "OMAP HDMI", &hdmi
.wp
);
774 DSSERR("HDMI IRQ request failed\n");
778 pm_runtime_enable(&pdev
->dev
);
780 hdmi_init_output(pdev
);
782 r
= hdmi_audio_register(&pdev
->dev
);
784 DSSERR("Registering HDMI audio failed %d\n", r
);
785 hdmi_uninit_output(pdev
);
786 pm_runtime_disable(&pdev
->dev
);
790 dss_debugfs_create_file("hdmi", hdmi_dump_regs
);
794 hdmi_pll_uninit(&hdmi
.pll
);
798 static void hdmi5_unbind(struct device
*dev
, struct device
*master
, void *data
)
800 struct platform_device
*pdev
= to_platform_device(dev
);
803 platform_device_unregister(hdmi
.audio_pdev
);
805 hdmi_uninit_output(pdev
);
807 hdmi_pll_uninit(&hdmi
.pll
);
809 pm_runtime_disable(&pdev
->dev
);
812 static const struct component_ops hdmi5_component_ops
= {
814 .unbind
= hdmi5_unbind
,
817 static int hdmi5_probe(struct platform_device
*pdev
)
819 return component_add(&pdev
->dev
, &hdmi5_component_ops
);
822 static int hdmi5_remove(struct platform_device
*pdev
)
824 component_del(&pdev
->dev
, &hdmi5_component_ops
);
828 static int hdmi_runtime_suspend(struct device
*dev
)
835 static int hdmi_runtime_resume(struct device
*dev
)
839 r
= dispc_runtime_get();
846 static const struct dev_pm_ops hdmi_pm_ops
= {
847 .runtime_suspend
= hdmi_runtime_suspend
,
848 .runtime_resume
= hdmi_runtime_resume
,
851 static const struct of_device_id hdmi_of_match
[] = {
852 { .compatible
= "ti,omap5-hdmi", },
853 { .compatible
= "ti,dra7-hdmi", },
857 static struct platform_driver omapdss_hdmihw_driver
= {
858 .probe
= hdmi5_probe
,
859 .remove
= hdmi5_remove
,
861 .name
= "omapdss_hdmi5",
863 .of_match_table
= hdmi_of_match
,
864 .suppress_bind_attrs
= true,
868 int __init
hdmi5_init_platform_driver(void)
870 return platform_driver_register(&omapdss_hdmihw_driver
);
873 void hdmi5_uninit_platform_driver(void)
875 platform_driver_unregister(&omapdss_hdmihw_driver
);