1 // SPDX-License-Identifier: GPL-2.0-only
3 * HDMI driver for OMAP5
5 * Copyright (C) 2014 Texas Instruments Incorporated
10 * Archit Taneja <archit@ti.com>
11 * Tomi Valkeinen <tomi.valkeinen@ti.com>
14 #define DSS_SUBSYS_NAME "HDMI"
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/err.h>
20 #include <linux/interrupt.h>
21 #include <linux/mutex.h>
22 #include <linux/delay.h>
23 #include <linux/string.h>
24 #include <linux/platform_device.h>
25 #include <linux/pm_runtime.h>
26 #include <linux/clk.h>
28 #include <linux/regulator/consumer.h>
29 #include <linux/component.h>
30 #include <video/omapfb_dss.h>
31 #include <sound/omap-hdmi-audio.h>
33 #include "hdmi5_core.h"
35 #include "dss_features.h"
37 static struct omap_hdmi hdmi
;
39 static int hdmi_runtime_get(void)
43 DSSDBG("hdmi_runtime_get\n");
45 r
= pm_runtime_get_sync(&hdmi
.pdev
->dev
);
47 pm_runtime_put_sync(&hdmi
.pdev
->dev
);
54 static void hdmi_runtime_put(void)
58 DSSDBG("hdmi_runtime_put\n");
60 r
= pm_runtime_put_sync(&hdmi
.pdev
->dev
);
61 WARN_ON(r
< 0 && r
!= -ENOSYS
);
64 static irqreturn_t
hdmi_irq_handler(int irq
, void *data
)
66 struct hdmi_wp_data
*wp
= data
;
69 irqstatus
= hdmi_wp_get_irqstatus(wp
);
70 hdmi_wp_set_irqstatus(wp
, irqstatus
);
72 if ((irqstatus
& HDMI_IRQ_LINK_CONNECT
) &&
73 irqstatus
& HDMI_IRQ_LINK_DISCONNECT
) {
76 * If we get both connect and disconnect interrupts at the same
77 * time, turn off the PHY, clear interrupts, and restart, which
78 * raises connect interrupt if a cable is connected, or nothing
79 * if cable is not connected.
82 hdmi_wp_set_phy_pwr(wp
, HDMI_PHYPWRCMD_OFF
);
85 * We always get bogus CONNECT & DISCONNECT interrupts when
86 * setting the PHY to LDOON. To ignore those, we force the RXDET
87 * line to 0 until the PHY power state has been changed.
89 v
= hdmi_read_reg(hdmi
.phy
.base
, HDMI_TXPHY_PAD_CFG_CTRL
);
90 v
= FLD_MOD(v
, 1, 15, 15); /* FORCE_RXDET_HIGH */
91 v
= FLD_MOD(v
, 0, 14, 7); /* RXDET_LINE */
92 hdmi_write_reg(hdmi
.phy
.base
, HDMI_TXPHY_PAD_CFG_CTRL
, v
);
94 hdmi_wp_set_irqstatus(wp
, HDMI_IRQ_LINK_CONNECT
|
95 HDMI_IRQ_LINK_DISCONNECT
);
97 hdmi_wp_set_phy_pwr(wp
, HDMI_PHYPWRCMD_LDOON
);
99 REG_FLD_MOD(hdmi
.phy
.base
, HDMI_TXPHY_PAD_CFG_CTRL
, 0, 15, 15);
101 } else if (irqstatus
& HDMI_IRQ_LINK_CONNECT
) {
102 hdmi_wp_set_phy_pwr(wp
, HDMI_PHYPWRCMD_TXON
);
103 } else if (irqstatus
& HDMI_IRQ_LINK_DISCONNECT
) {
104 hdmi_wp_set_phy_pwr(wp
, HDMI_PHYPWRCMD_LDOON
);
110 static int hdmi_init_regulator(void)
112 struct regulator
*reg
;
114 if (hdmi
.vdda_reg
!= NULL
)
117 reg
= devm_regulator_get(&hdmi
.pdev
->dev
, "vdda");
119 DSSERR("can't get VDDA regulator\n");
128 static int hdmi_power_on_core(struct omap_dss_device
*dssdev
)
132 r
= regulator_enable(hdmi
.vdda_reg
);
136 r
= hdmi_runtime_get();
138 goto err_runtime_get
;
140 /* Make selection of HDMI in DSS */
141 dss_select_hdmi_venc_clk_source(DSS_HDMI_M_PCLK
);
143 hdmi
.core_enabled
= true;
148 regulator_disable(hdmi
.vdda_reg
);
153 static void hdmi_power_off_core(struct omap_dss_device
*dssdev
)
155 hdmi
.core_enabled
= false;
158 regulator_disable(hdmi
.vdda_reg
);
161 static int hdmi_power_on_full(struct omap_dss_device
*dssdev
)
164 struct omap_video_timings
*p
;
165 struct omap_overlay_manager
*mgr
= hdmi
.output
.manager
;
166 struct dss_pll_clock_info hdmi_cinfo
= { 0 };
168 r
= hdmi_power_on_core(dssdev
);
172 p
= &hdmi
.cfg
.timings
;
174 DSSDBG("hdmi_power_on x_res= %d y_res = %d\n", p
->x_res
, p
->y_res
);
176 hdmi_pll_compute(&hdmi
.pll
, p
->pixelclock
, &hdmi_cinfo
);
178 /* disable and clear irqs */
179 hdmi_wp_clear_irqenable(&hdmi
.wp
, 0xffffffff);
180 hdmi_wp_set_irqstatus(&hdmi
.wp
,
181 hdmi_wp_get_irqstatus(&hdmi
.wp
));
183 r
= dss_pll_enable(&hdmi
.pll
.pll
);
185 DSSERR("Failed to enable PLL\n");
189 r
= dss_pll_set_config(&hdmi
.pll
.pll
, &hdmi_cinfo
);
191 DSSERR("Failed to configure PLL\n");
195 r
= hdmi_phy_configure(&hdmi
.phy
, hdmi_cinfo
.clkdco
,
196 hdmi_cinfo
.clkout
[0]);
198 DSSDBG("Failed to start PHY\n");
202 r
= hdmi_wp_set_phy_pwr(&hdmi
.wp
, HDMI_PHYPWRCMD_LDOON
);
206 hdmi5_configure(&hdmi
.core
, &hdmi
.wp
, &hdmi
.cfg
);
208 /* bypass TV gamma table */
209 dispc_enable_gamma_table(0);
212 dss_mgr_set_timings(mgr
, p
);
214 r
= hdmi_wp_video_start(&hdmi
.wp
);
218 r
= dss_mgr_enable(mgr
);
222 hdmi_wp_set_irqenable(&hdmi
.wp
,
223 HDMI_IRQ_LINK_CONNECT
| HDMI_IRQ_LINK_DISCONNECT
);
228 hdmi_wp_video_stop(&hdmi
.wp
);
230 hdmi_wp_set_phy_pwr(&hdmi
.wp
, HDMI_PHYPWRCMD_OFF
);
234 dss_pll_disable(&hdmi
.pll
.pll
);
236 hdmi_power_off_core(dssdev
);
240 static void hdmi_power_off_full(struct omap_dss_device
*dssdev
)
242 struct omap_overlay_manager
*mgr
= hdmi
.output
.manager
;
244 hdmi_wp_clear_irqenable(&hdmi
.wp
, 0xffffffff);
246 dss_mgr_disable(mgr
);
248 hdmi_wp_video_stop(&hdmi
.wp
);
250 hdmi_wp_set_phy_pwr(&hdmi
.wp
, HDMI_PHYPWRCMD_OFF
);
252 dss_pll_disable(&hdmi
.pll
.pll
);
254 hdmi_power_off_core(dssdev
);
257 static int hdmi_display_check_timing(struct omap_dss_device
*dssdev
,
258 struct omap_video_timings
*timings
)
260 struct omap_dss_device
*out
= &hdmi
.output
;
262 /* TODO: proper interlace support */
263 if (timings
->interlace
)
266 if (!dispc_mgr_timings_ok(out
->dispc_channel
, timings
))
272 static void hdmi_display_set_timing(struct omap_dss_device
*dssdev
,
273 struct omap_video_timings
*timings
)
275 mutex_lock(&hdmi
.lock
);
277 hdmi
.cfg
.timings
= *timings
;
279 dispc_set_tv_pclk(timings
->pixelclock
);
281 mutex_unlock(&hdmi
.lock
);
284 static void hdmi_display_get_timings(struct omap_dss_device
*dssdev
,
285 struct omap_video_timings
*timings
)
287 *timings
= hdmi
.cfg
.timings
;
290 static void hdmi_dump_regs(struct seq_file
*s
)
292 mutex_lock(&hdmi
.lock
);
294 if (hdmi_runtime_get()) {
295 mutex_unlock(&hdmi
.lock
);
299 hdmi_wp_dump(&hdmi
.wp
, s
);
300 hdmi_pll_dump(&hdmi
.pll
, s
);
301 hdmi_phy_dump(&hdmi
.phy
, s
);
302 hdmi5_core_dump(&hdmi
.core
, s
);
305 mutex_unlock(&hdmi
.lock
);
308 static int read_edid(u8
*buf
, int len
)
313 mutex_lock(&hdmi
.lock
);
315 r
= hdmi_runtime_get();
318 idlemode
= REG_GET(hdmi
.wp
.base
, HDMI_WP_SYSCONFIG
, 3, 2);
320 REG_FLD_MOD(hdmi
.wp
.base
, HDMI_WP_SYSCONFIG
, 1, 3, 2);
322 r
= hdmi5_read_edid(&hdmi
.core
, buf
, len
);
324 REG_FLD_MOD(hdmi
.wp
.base
, HDMI_WP_SYSCONFIG
, idlemode
, 3, 2);
327 mutex_unlock(&hdmi
.lock
);
332 static void hdmi_start_audio_stream(struct omap_hdmi
*hd
)
334 REG_FLD_MOD(hdmi
.wp
.base
, HDMI_WP_SYSCONFIG
, 1, 3, 2);
335 hdmi_wp_audio_enable(&hd
->wp
, true);
336 hdmi_wp_audio_core_req_enable(&hd
->wp
, true);
339 static void hdmi_stop_audio_stream(struct omap_hdmi
*hd
)
341 hdmi_wp_audio_core_req_enable(&hd
->wp
, false);
342 hdmi_wp_audio_enable(&hd
->wp
, false);
343 REG_FLD_MOD(hd
->wp
.base
, HDMI_WP_SYSCONFIG
, hd
->wp_idlemode
, 3, 2);
346 static int hdmi_display_enable(struct omap_dss_device
*dssdev
)
348 struct omap_dss_device
*out
= &hdmi
.output
;
352 DSSDBG("ENTER hdmi_display_enable\n");
354 mutex_lock(&hdmi
.lock
);
356 if (out
->manager
== NULL
) {
357 DSSERR("failed to enable display: no output/manager\n");
362 r
= hdmi_power_on_full(dssdev
);
364 DSSERR("failed to power on device\n");
368 if (hdmi
.audio_configured
) {
369 r
= hdmi5_audio_config(&hdmi
.core
, &hdmi
.wp
, &hdmi
.audio_config
,
370 hdmi
.cfg
.timings
.pixelclock
);
372 DSSERR("Error restoring audio configuration: %d", r
);
373 hdmi
.audio_abort_cb(&hdmi
.pdev
->dev
);
374 hdmi
.audio_configured
= false;
378 spin_lock_irqsave(&hdmi
.audio_playing_lock
, flags
);
379 if (hdmi
.audio_configured
&& hdmi
.audio_playing
)
380 hdmi_start_audio_stream(&hdmi
);
381 hdmi
.display_enabled
= true;
382 spin_unlock_irqrestore(&hdmi
.audio_playing_lock
, flags
);
384 mutex_unlock(&hdmi
.lock
);
388 mutex_unlock(&hdmi
.lock
);
392 static void hdmi_display_disable(struct omap_dss_device
*dssdev
)
396 DSSDBG("Enter hdmi_display_disable\n");
398 mutex_lock(&hdmi
.lock
);
400 spin_lock_irqsave(&hdmi
.audio_playing_lock
, flags
);
401 hdmi_stop_audio_stream(&hdmi
);
402 hdmi
.display_enabled
= false;
403 spin_unlock_irqrestore(&hdmi
.audio_playing_lock
, flags
);
405 hdmi_power_off_full(dssdev
);
407 mutex_unlock(&hdmi
.lock
);
410 static int hdmi_core_enable(struct omap_dss_device
*dssdev
)
414 DSSDBG("ENTER omapdss_hdmi_core_enable\n");
416 mutex_lock(&hdmi
.lock
);
418 r
= hdmi_power_on_core(dssdev
);
420 DSSERR("failed to power on device\n");
424 mutex_unlock(&hdmi
.lock
);
428 mutex_unlock(&hdmi
.lock
);
432 static void hdmi_core_disable(struct omap_dss_device
*dssdev
)
434 DSSDBG("Enter omapdss_hdmi_core_disable\n");
436 mutex_lock(&hdmi
.lock
);
438 hdmi_power_off_core(dssdev
);
440 mutex_unlock(&hdmi
.lock
);
443 static int hdmi_connect(struct omap_dss_device
*dssdev
,
444 struct omap_dss_device
*dst
)
446 struct omap_overlay_manager
*mgr
;
449 r
= hdmi_init_regulator();
453 mgr
= omap_dss_get_overlay_manager(dssdev
->dispc_channel
);
457 r
= dss_mgr_connect(mgr
, dssdev
);
461 r
= omapdss_output_set_device(dssdev
, dst
);
463 DSSERR("failed to connect output to new device: %s\n",
465 dss_mgr_disconnect(mgr
, dssdev
);
472 static void hdmi_disconnect(struct omap_dss_device
*dssdev
,
473 struct omap_dss_device
*dst
)
475 WARN_ON(dst
!= dssdev
->dst
);
477 if (dst
!= dssdev
->dst
)
480 omapdss_output_unset_device(dssdev
);
483 dss_mgr_disconnect(dssdev
->manager
, dssdev
);
486 static int hdmi_read_edid(struct omap_dss_device
*dssdev
,
492 need_enable
= hdmi
.core_enabled
== false;
495 r
= hdmi_core_enable(dssdev
);
500 r
= read_edid(edid
, len
);
503 hdmi_core_disable(dssdev
);
508 static int hdmi_set_infoframe(struct omap_dss_device
*dssdev
,
509 const struct hdmi_avi_infoframe
*avi
)
511 hdmi
.cfg
.infoframe
= *avi
;
515 static int hdmi_set_hdmi_mode(struct omap_dss_device
*dssdev
,
518 hdmi
.cfg
.hdmi_dvi_mode
= hdmi_mode
? HDMI_HDMI
: HDMI_DVI
;
522 static const struct omapdss_hdmi_ops hdmi_ops
= {
523 .connect
= hdmi_connect
,
524 .disconnect
= hdmi_disconnect
,
526 .enable
= hdmi_display_enable
,
527 .disable
= hdmi_display_disable
,
529 .check_timings
= hdmi_display_check_timing
,
530 .set_timings
= hdmi_display_set_timing
,
531 .get_timings
= hdmi_display_get_timings
,
533 .read_edid
= hdmi_read_edid
,
534 .set_infoframe
= hdmi_set_infoframe
,
535 .set_hdmi_mode
= hdmi_set_hdmi_mode
,
538 static void hdmi_init_output(struct platform_device
*pdev
)
540 struct omap_dss_device
*out
= &hdmi
.output
;
542 out
->dev
= &pdev
->dev
;
543 out
->id
= OMAP_DSS_OUTPUT_HDMI
;
544 out
->output_type
= OMAP_DISPLAY_TYPE_HDMI
;
545 out
->name
= "hdmi.0";
546 out
->dispc_channel
= OMAP_DSS_CHANNEL_DIGIT
;
547 out
->ops
.hdmi
= &hdmi_ops
;
548 out
->owner
= THIS_MODULE
;
550 omapdss_register_output(out
);
553 static void hdmi_uninit_output(struct platform_device
*pdev
)
555 struct omap_dss_device
*out
= &hdmi
.output
;
557 omapdss_unregister_output(out
);
560 static int hdmi_probe_of(struct platform_device
*pdev
)
562 struct device_node
*node
= pdev
->dev
.of_node
;
563 struct device_node
*ep
;
566 ep
= omapdss_of_get_first_endpoint(node
);
570 r
= hdmi_parse_lanes_of(pdev
, ep
, &hdmi
.phy
);
582 /* Audio callbacks */
583 static int hdmi_audio_startup(struct device
*dev
,
584 void (*abort_cb
)(struct device
*dev
))
586 struct omap_hdmi
*hd
= dev_get_drvdata(dev
);
589 mutex_lock(&hd
->lock
);
591 if (!hdmi_mode_has_audio(&hd
->cfg
) || !hd
->display_enabled
) {
596 hd
->audio_abort_cb
= abort_cb
;
599 mutex_unlock(&hd
->lock
);
604 static int hdmi_audio_shutdown(struct device
*dev
)
606 struct omap_hdmi
*hd
= dev_get_drvdata(dev
);
608 mutex_lock(&hd
->lock
);
609 hd
->audio_abort_cb
= NULL
;
610 hd
->audio_configured
= false;
611 hd
->audio_playing
= false;
612 mutex_unlock(&hd
->lock
);
617 static int hdmi_audio_start(struct device
*dev
)
619 struct omap_hdmi
*hd
= dev_get_drvdata(dev
);
622 WARN_ON(!hdmi_mode_has_audio(&hd
->cfg
));
624 spin_lock_irqsave(&hd
->audio_playing_lock
, flags
);
626 if (hd
->display_enabled
)
627 hdmi_start_audio_stream(hd
);
628 hd
->audio_playing
= true;
630 spin_unlock_irqrestore(&hd
->audio_playing_lock
, flags
);
634 static void hdmi_audio_stop(struct device
*dev
)
636 struct omap_hdmi
*hd
= dev_get_drvdata(dev
);
639 WARN_ON(!hdmi_mode_has_audio(&hd
->cfg
));
641 spin_lock_irqsave(&hd
->audio_playing_lock
, flags
);
643 if (hd
->display_enabled
)
644 hdmi_stop_audio_stream(hd
);
645 hd
->audio_playing
= false;
647 spin_unlock_irqrestore(&hd
->audio_playing_lock
, flags
);
650 static int hdmi_audio_config(struct device
*dev
,
651 struct omap_dss_audio
*dss_audio
)
653 struct omap_hdmi
*hd
= dev_get_drvdata(dev
);
656 mutex_lock(&hd
->lock
);
658 if (!hdmi_mode_has_audio(&hd
->cfg
) || !hd
->display_enabled
) {
663 ret
= hdmi5_audio_config(&hd
->core
, &hd
->wp
, dss_audio
,
664 hd
->cfg
.timings
.pixelclock
);
667 hd
->audio_configured
= true;
668 hd
->audio_config
= *dss_audio
;
671 mutex_unlock(&hd
->lock
);
676 static const struct omap_hdmi_audio_ops hdmi_audio_ops
= {
677 .audio_startup
= hdmi_audio_startup
,
678 .audio_shutdown
= hdmi_audio_shutdown
,
679 .audio_start
= hdmi_audio_start
,
680 .audio_stop
= hdmi_audio_stop
,
681 .audio_config
= hdmi_audio_config
,
684 static int hdmi_audio_register(struct device
*dev
)
686 struct omap_hdmi_audio_pdata pdata
= {
689 .audio_dma_addr
= hdmi_wp_get_audio_dma_addr(&hdmi
.wp
),
690 .ops
= &hdmi_audio_ops
,
693 hdmi
.audio_pdev
= platform_device_register_data(
694 dev
, "omap-hdmi-audio", PLATFORM_DEVID_AUTO
,
695 &pdata
, sizeof(pdata
));
697 if (IS_ERR(hdmi
.audio_pdev
))
698 return PTR_ERR(hdmi
.audio_pdev
);
702 REG_GET(hdmi
.wp
.base
, HDMI_WP_SYSCONFIG
, 3, 2);
708 /* HDMI HW IP initialisation */
709 static int hdmi5_bind(struct device
*dev
, struct device
*master
, void *data
)
711 struct platform_device
*pdev
= to_platform_device(dev
);
716 dev_set_drvdata(&pdev
->dev
, &hdmi
);
718 mutex_init(&hdmi
.lock
);
719 spin_lock_init(&hdmi
.audio_playing_lock
);
721 if (pdev
->dev
.of_node
) {
722 r
= hdmi_probe_of(pdev
);
727 r
= hdmi_wp_init(pdev
, &hdmi
.wp
);
731 r
= hdmi_pll_init(pdev
, &hdmi
.pll
, &hdmi
.wp
);
735 r
= hdmi_phy_init(pdev
, &hdmi
.phy
);
739 r
= hdmi5_core_init(pdev
, &hdmi
.core
);
743 irq
= platform_get_irq(pdev
, 0);
745 DSSERR("platform_get_irq failed\n");
750 r
= devm_request_threaded_irq(&pdev
->dev
, irq
,
751 NULL
, hdmi_irq_handler
,
752 IRQF_ONESHOT
, "OMAP HDMI", &hdmi
.wp
);
754 DSSERR("HDMI IRQ request failed\n");
758 pm_runtime_enable(&pdev
->dev
);
760 hdmi_init_output(pdev
);
762 r
= hdmi_audio_register(&pdev
->dev
);
764 DSSERR("Registering HDMI audio failed %d\n", r
);
765 hdmi_uninit_output(pdev
);
766 pm_runtime_disable(&pdev
->dev
);
770 dss_debugfs_create_file("hdmi", hdmi_dump_regs
);
774 hdmi_pll_uninit(&hdmi
.pll
);
778 static void hdmi5_unbind(struct device
*dev
, struct device
*master
, void *data
)
780 struct platform_device
*pdev
= to_platform_device(dev
);
783 platform_device_unregister(hdmi
.audio_pdev
);
785 hdmi_uninit_output(pdev
);
787 hdmi_pll_uninit(&hdmi
.pll
);
789 pm_runtime_disable(&pdev
->dev
);
792 static const struct component_ops hdmi5_component_ops
= {
794 .unbind
= hdmi5_unbind
,
797 static int hdmi5_probe(struct platform_device
*pdev
)
799 return component_add(&pdev
->dev
, &hdmi5_component_ops
);
802 static int hdmi5_remove(struct platform_device
*pdev
)
804 component_del(&pdev
->dev
, &hdmi5_component_ops
);
808 static int hdmi_runtime_suspend(struct device
*dev
)
815 static int hdmi_runtime_resume(struct device
*dev
)
819 r
= dispc_runtime_get();
826 static const struct dev_pm_ops hdmi_pm_ops
= {
827 .runtime_suspend
= hdmi_runtime_suspend
,
828 .runtime_resume
= hdmi_runtime_resume
,
831 static const struct of_device_id hdmi_of_match
[] = {
832 { .compatible
= "ti,omap5-hdmi", },
833 { .compatible
= "ti,dra7-hdmi", },
837 static struct platform_driver omapdss_hdmihw_driver
= {
838 .probe
= hdmi5_probe
,
839 .remove
= hdmi5_remove
,
841 .name
= "omapdss_hdmi5",
843 .of_match_table
= hdmi_of_match
,
844 .suppress_bind_attrs
= true,
848 int __init
hdmi5_init_platform_driver(void)
850 return platform_driver_register(&omapdss_hdmihw_driver
);
853 void hdmi5_uninit_platform_driver(void)
855 platform_driver_unregister(&omapdss_hdmihw_driver
);