2 * HDMI driver for OMAP5
4 * Copyright (C) 2014 Texas Instruments Incorporated
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>
42 #include <sound/omap-hdmi-audio.h>
45 #include "hdmi5_core.h"
47 #include "dss_features.h"
49 static struct omap_hdmi hdmi;
51 static int hdmi_runtime_get(void)
55 DSSDBG("hdmi_runtime_get\n");
57 r = pm_runtime_get_sync(&hdmi.pdev->dev);
65 static void hdmi_runtime_put(void)
69 DSSDBG("hdmi_runtime_put\n");
71 r = pm_runtime_put_sync(&hdmi.pdev->dev);
72 WARN_ON(r < 0 && r != -ENOSYS);
75 static irqreturn_t hdmi_irq_handler(int irq, void *data)
77 struct hdmi_wp_data *wp = data;
80 irqstatus = hdmi_wp_get_irqstatus(wp);
81 hdmi_wp_set_irqstatus(wp, irqstatus);
83 if ((irqstatus & HDMI_IRQ_LINK_CONNECT) &&
84 irqstatus & HDMI_IRQ_LINK_DISCONNECT) {
87 * If we get both connect and disconnect interrupts at the same
88 * time, turn off the PHY, clear interrupts, and restart, which
89 * raises connect interrupt if a cable is connected, or nothing
90 * if cable is not connected.
93 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_OFF);
96 * We always get bogus CONNECT & DISCONNECT interrupts when
97 * setting the PHY to LDOON. To ignore those, we force the RXDET
98 * line to 0 until the PHY power state has been changed.
100 v = hdmi_read_reg(hdmi.phy.base, HDMI_TXPHY_PAD_CFG_CTRL);
101 v = FLD_MOD(v, 1, 15, 15); /* FORCE_RXDET_HIGH */
102 v = FLD_MOD(v, 0, 14, 7); /* RXDET_LINE */
103 hdmi_write_reg(hdmi.phy.base, HDMI_TXPHY_PAD_CFG_CTRL, v);
105 hdmi_wp_set_irqstatus(wp, HDMI_IRQ_LINK_CONNECT |
106 HDMI_IRQ_LINK_DISCONNECT);
108 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON);
110 REG_FLD_MOD(hdmi.phy.base, HDMI_TXPHY_PAD_CFG_CTRL, 0, 15, 15);
112 } else if (irqstatus & HDMI_IRQ_LINK_CONNECT) {
113 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_TXON);
114 } else if (irqstatus & HDMI_IRQ_LINK_DISCONNECT) {
115 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON);
121 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");
139 static int hdmi_power_on_core(struct omap_dss_device *dssdev)
143 r = regulator_enable(hdmi.vdda_reg);
147 r = hdmi_runtime_get();
149 goto err_runtime_get;
151 /* Make selection of HDMI in DSS */
152 dss_select_hdmi_venc_clk_source(DSS_HDMI_M_PCLK);
154 hdmi.core_enabled = true;
159 regulator_disable(hdmi.vdda_reg);
164 static void hdmi_power_off_core(struct omap_dss_device *dssdev)
166 hdmi.core_enabled = false;
169 regulator_disable(hdmi.vdda_reg);
172 static int hdmi_power_on_full(struct omap_dss_device *dssdev)
175 struct videomode *vm;
176 enum omap_channel channel = dssdev->dispc_channel;
177 struct dss_pll_clock_info hdmi_cinfo = { 0 };
180 r = hdmi_power_on_core(dssdev);
186 DSSDBG("hdmi_power_on hactive= %d vactive = %d\n", vm->hactive,
190 if (vm->flags & DISPLAY_FLAGS_DOUBLECLK)
193 /* DSS_HDMI_TCLK is bitclk / 10 */
196 dss_pll_calc_b(&hdmi.pll.pll, clk_get_rate(hdmi.pll.pll.clkin),
199 /* disable and clear irqs */
200 hdmi_wp_clear_irqenable(&hdmi.wp, 0xffffffff);
201 hdmi_wp_set_irqstatus(&hdmi.wp,
202 hdmi_wp_get_irqstatus(&hdmi.wp));
204 r = dss_pll_enable(&hdmi.pll.pll);
206 DSSERR("Failed to enable PLL\n");
210 r = dss_pll_set_config(&hdmi.pll.pll, &hdmi_cinfo);
212 DSSERR("Failed to configure PLL\n");
216 r = hdmi_phy_configure(&hdmi.phy, hdmi_cinfo.clkdco,
217 hdmi_cinfo.clkout[0]);
219 DSSDBG("Failed to start PHY\n");
223 r = hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_LDOON);
227 hdmi5_configure(&hdmi.core, &hdmi.wp, &hdmi.cfg);
230 dss_mgr_set_timings(channel, vm);
232 r = dss_mgr_enable(channel);
236 r = hdmi_wp_video_start(&hdmi.wp);
240 hdmi_wp_set_irqenable(&hdmi.wp,
241 HDMI_IRQ_LINK_CONNECT | HDMI_IRQ_LINK_DISCONNECT);
246 dss_mgr_disable(channel);
248 hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);
252 dss_pll_disable(&hdmi.pll.pll);
254 hdmi_power_off_core(dssdev);
258 static void hdmi_power_off_full(struct omap_dss_device *dssdev)
260 enum omap_channel channel = dssdev->dispc_channel;
262 hdmi_wp_clear_irqenable(&hdmi.wp, 0xffffffff);
264 hdmi_wp_video_stop(&hdmi.wp);
266 dss_mgr_disable(channel);
268 hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);
270 dss_pll_disable(&hdmi.pll.pll);
272 hdmi_power_off_core(dssdev);
275 static int hdmi_display_check_timing(struct omap_dss_device *dssdev,
276 struct videomode *vm)
278 if (!dispc_mgr_timings_ok(dssdev->dispc_channel, vm))
284 static void hdmi_display_set_timing(struct omap_dss_device *dssdev,
285 struct videomode *vm)
287 mutex_lock(&hdmi.lock);
291 dispc_set_tv_pclk(vm->pixelclock);
293 mutex_unlock(&hdmi.lock);
296 static void hdmi_display_get_timings(struct omap_dss_device *dssdev,
297 struct videomode *vm)
302 static void hdmi_dump_regs(struct seq_file *s)
304 mutex_lock(&hdmi.lock);
306 if (hdmi_runtime_get()) {
307 mutex_unlock(&hdmi.lock);
311 hdmi_wp_dump(&hdmi.wp, s);
312 hdmi_pll_dump(&hdmi.pll, s);
313 hdmi_phy_dump(&hdmi.phy, s);
314 hdmi5_core_dump(&hdmi.core, s);
317 mutex_unlock(&hdmi.lock);
320 static int read_edid(u8 *buf, int len)
325 mutex_lock(&hdmi.lock);
327 r = hdmi_runtime_get();
330 idlemode = REG_GET(hdmi.wp.base, HDMI_WP_SYSCONFIG, 3, 2);
332 REG_FLD_MOD(hdmi.wp.base, HDMI_WP_SYSCONFIG, 1, 3, 2);
334 r = hdmi5_read_edid(&hdmi.core, buf, len);
336 REG_FLD_MOD(hdmi.wp.base, HDMI_WP_SYSCONFIG, idlemode, 3, 2);
339 mutex_unlock(&hdmi.lock);
344 static void hdmi_start_audio_stream(struct omap_hdmi *hd)
346 REG_FLD_MOD(hdmi.wp.base, HDMI_WP_SYSCONFIG, 1, 3, 2);
347 hdmi_wp_audio_enable(&hd->wp, true);
348 hdmi_wp_audio_core_req_enable(&hd->wp, true);
351 static void hdmi_stop_audio_stream(struct omap_hdmi *hd)
353 hdmi_wp_audio_core_req_enable(&hd->wp, false);
354 hdmi_wp_audio_enable(&hd->wp, false);
355 REG_FLD_MOD(hd->wp.base, HDMI_WP_SYSCONFIG, hd->wp_idlemode, 3, 2);
358 static int hdmi_display_enable(struct omap_dss_device *dssdev)
360 struct omap_dss_device *out = &hdmi.output;
364 DSSDBG("ENTER hdmi_display_enable\n");
366 mutex_lock(&hdmi.lock);
368 if (!out->dispc_channel_connected) {
369 DSSERR("failed to enable display: no output/manager\n");
374 r = hdmi_power_on_full(dssdev);
376 DSSERR("failed to power on device\n");
380 if (hdmi.audio_configured) {
381 r = hdmi5_audio_config(&hdmi.core, &hdmi.wp, &hdmi.audio_config,
382 hdmi.cfg.vm.pixelclock);
384 DSSERR("Error restoring audio configuration: %d", r);
385 hdmi.audio_abort_cb(&hdmi.pdev->dev);
386 hdmi.audio_configured = false;
390 spin_lock_irqsave(&hdmi.audio_playing_lock, flags);
391 if (hdmi.audio_configured && hdmi.audio_playing)
392 hdmi_start_audio_stream(&hdmi);
393 hdmi.display_enabled = true;
394 spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags);
396 mutex_unlock(&hdmi.lock);
400 mutex_unlock(&hdmi.lock);
404 static void hdmi_display_disable(struct omap_dss_device *dssdev)
408 DSSDBG("Enter hdmi_display_disable\n");
410 mutex_lock(&hdmi.lock);
412 spin_lock_irqsave(&hdmi.audio_playing_lock, flags);
413 hdmi_stop_audio_stream(&hdmi);
414 hdmi.display_enabled = false;
415 spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags);
417 hdmi_power_off_full(dssdev);
419 mutex_unlock(&hdmi.lock);
422 static int hdmi_core_enable(struct omap_dss_device *dssdev)
426 DSSDBG("ENTER omapdss_hdmi_core_enable\n");
428 mutex_lock(&hdmi.lock);
430 r = hdmi_power_on_core(dssdev);
432 DSSERR("failed to power on device\n");
436 mutex_unlock(&hdmi.lock);
440 mutex_unlock(&hdmi.lock);
444 static void hdmi_core_disable(struct omap_dss_device *dssdev)
446 DSSDBG("Enter omapdss_hdmi_core_disable\n");
448 mutex_lock(&hdmi.lock);
450 hdmi_power_off_core(dssdev);
452 mutex_unlock(&hdmi.lock);
455 static int hdmi_connect(struct omap_dss_device *dssdev,
456 struct omap_dss_device *dst)
458 enum omap_channel channel = dssdev->dispc_channel;
461 r = hdmi_init_regulator();
465 r = dss_mgr_connect(channel, dssdev);
469 r = omapdss_output_set_device(dssdev, dst);
471 DSSERR("failed to connect output to new device: %s\n",
473 dss_mgr_disconnect(channel, dssdev);
480 static void hdmi_disconnect(struct omap_dss_device *dssdev,
481 struct omap_dss_device *dst)
483 enum omap_channel channel = dssdev->dispc_channel;
485 WARN_ON(dst != dssdev->dst);
487 if (dst != dssdev->dst)
490 omapdss_output_unset_device(dssdev);
492 dss_mgr_disconnect(channel, dssdev);
495 static int hdmi_read_edid(struct omap_dss_device *dssdev,
501 need_enable = hdmi.core_enabled == false;
504 r = hdmi_core_enable(dssdev);
509 r = read_edid(edid, len);
512 hdmi_core_disable(dssdev);
517 static int hdmi_set_infoframe(struct omap_dss_device *dssdev,
518 const struct hdmi_avi_infoframe *avi)
520 hdmi.cfg.infoframe = *avi;
524 static int hdmi_set_hdmi_mode(struct omap_dss_device *dssdev,
527 hdmi.cfg.hdmi_dvi_mode = hdmi_mode ? HDMI_HDMI : HDMI_DVI;
531 static const struct omapdss_hdmi_ops hdmi_ops = {
532 .connect = hdmi_connect,
533 .disconnect = hdmi_disconnect,
535 .enable = hdmi_display_enable,
536 .disable = hdmi_display_disable,
538 .check_timings = hdmi_display_check_timing,
539 .set_timings = hdmi_display_set_timing,
540 .get_timings = hdmi_display_get_timings,
542 .read_edid = hdmi_read_edid,
543 .set_infoframe = hdmi_set_infoframe,
544 .set_hdmi_mode = hdmi_set_hdmi_mode,
547 static void hdmi_init_output(struct platform_device *pdev)
549 struct omap_dss_device *out = &hdmi.output;
551 out->dev = &pdev->dev;
552 out->id = OMAP_DSS_OUTPUT_HDMI;
553 out->output_type = OMAP_DISPLAY_TYPE_HDMI;
554 out->name = "hdmi.0";
555 out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
556 out->ops.hdmi = &hdmi_ops;
557 out->owner = THIS_MODULE;
559 omapdss_register_output(out);
562 static void hdmi_uninit_output(struct platform_device *pdev)
564 struct omap_dss_device *out = &hdmi.output;
566 omapdss_unregister_output(out);
569 static int hdmi_probe_of(struct platform_device *pdev)
571 struct device_node *node = pdev->dev.of_node;
572 struct device_node *ep;
575 ep = omapdss_of_get_first_endpoint(node);
579 r = hdmi_parse_lanes_of(pdev, ep, &hdmi.phy);
591 /* Audio callbacks */
592 static int hdmi_audio_startup(struct device *dev,
593 void (*abort_cb)(struct device *dev))
595 struct omap_hdmi *hd = dev_get_drvdata(dev);
598 mutex_lock(&hd->lock);
600 if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) {
605 hd->audio_abort_cb = abort_cb;
608 mutex_unlock(&hd->lock);
613 static int hdmi_audio_shutdown(struct device *dev)
615 struct omap_hdmi *hd = dev_get_drvdata(dev);
617 mutex_lock(&hd->lock);
618 hd->audio_abort_cb = NULL;
619 hd->audio_configured = false;
620 hd->audio_playing = false;
621 mutex_unlock(&hd->lock);
626 static int hdmi_audio_start(struct device *dev)
628 struct omap_hdmi *hd = dev_get_drvdata(dev);
631 WARN_ON(!hdmi_mode_has_audio(&hd->cfg));
633 spin_lock_irqsave(&hd->audio_playing_lock, flags);
635 if (hd->display_enabled)
636 hdmi_start_audio_stream(hd);
637 hd->audio_playing = true;
639 spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
643 static void hdmi_audio_stop(struct device *dev)
645 struct omap_hdmi *hd = dev_get_drvdata(dev);
648 WARN_ON(!hdmi_mode_has_audio(&hd->cfg));
650 spin_lock_irqsave(&hd->audio_playing_lock, flags);
652 if (hd->display_enabled)
653 hdmi_stop_audio_stream(hd);
654 hd->audio_playing = false;
656 spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
659 static int hdmi_audio_config(struct device *dev,
660 struct omap_dss_audio *dss_audio)
662 struct omap_hdmi *hd = dev_get_drvdata(dev);
665 mutex_lock(&hd->lock);
667 if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) {
672 ret = hdmi5_audio_config(&hd->core, &hd->wp, dss_audio,
673 hd->cfg.vm.pixelclock);
676 hd->audio_configured = true;
677 hd->audio_config = *dss_audio;
680 mutex_unlock(&hd->lock);
685 static const struct omap_hdmi_audio_ops hdmi_audio_ops = {
686 .audio_startup = hdmi_audio_startup,
687 .audio_shutdown = hdmi_audio_shutdown,
688 .audio_start = hdmi_audio_start,
689 .audio_stop = hdmi_audio_stop,
690 .audio_config = hdmi_audio_config,
693 static int hdmi_audio_register(struct device *dev)
695 struct omap_hdmi_audio_pdata pdata = {
697 .dss_version = omapdss_get_version(),
698 .audio_dma_addr = hdmi_wp_get_audio_dma_addr(&hdmi.wp),
699 .ops = &hdmi_audio_ops,
702 hdmi.audio_pdev = platform_device_register_data(
703 dev, "omap-hdmi-audio", PLATFORM_DEVID_AUTO,
704 &pdata, sizeof(pdata));
706 if (IS_ERR(hdmi.audio_pdev))
707 return PTR_ERR(hdmi.audio_pdev);
711 REG_GET(hdmi.wp.base, HDMI_WP_SYSCONFIG, 3, 2);
717 /* HDMI HW IP initialisation */
718 static int hdmi5_bind(struct device *dev, struct device *master, void *data)
720 struct platform_device *pdev = to_platform_device(dev);
725 dev_set_drvdata(&pdev->dev, &hdmi);
727 mutex_init(&hdmi.lock);
728 spin_lock_init(&hdmi.audio_playing_lock);
730 if (pdev->dev.of_node) {
731 r = hdmi_probe_of(pdev);
736 r = hdmi_wp_init(pdev, &hdmi.wp);
740 r = hdmi_pll_init(pdev, &hdmi.pll, &hdmi.wp);
744 r = hdmi_phy_init(pdev, &hdmi.phy);
748 r = hdmi5_core_init(pdev, &hdmi.core);
752 irq = platform_get_irq(pdev, 0);
754 DSSERR("platform_get_irq failed\n");
759 r = devm_request_threaded_irq(&pdev->dev, irq,
760 NULL, hdmi_irq_handler,
761 IRQF_ONESHOT, "OMAP HDMI", &hdmi.wp);
763 DSSERR("HDMI IRQ request failed\n");
767 pm_runtime_enable(&pdev->dev);
769 hdmi_init_output(pdev);
771 r = hdmi_audio_register(&pdev->dev);
773 DSSERR("Registering HDMI audio failed %d\n", r);
774 hdmi_uninit_output(pdev);
775 pm_runtime_disable(&pdev->dev);
779 dss_debugfs_create_file("hdmi", hdmi_dump_regs);
783 hdmi_pll_uninit(&hdmi.pll);
787 static void hdmi5_unbind(struct device *dev, struct device *master, void *data)
789 struct platform_device *pdev = to_platform_device(dev);
792 platform_device_unregister(hdmi.audio_pdev);
794 hdmi_uninit_output(pdev);
796 hdmi_pll_uninit(&hdmi.pll);
798 pm_runtime_disable(&pdev->dev);
801 static const struct component_ops hdmi5_component_ops = {
803 .unbind = hdmi5_unbind,
806 static int hdmi5_probe(struct platform_device *pdev)
808 return component_add(&pdev->dev, &hdmi5_component_ops);
811 static int hdmi5_remove(struct platform_device *pdev)
813 component_del(&pdev->dev, &hdmi5_component_ops);
817 static int hdmi_runtime_suspend(struct device *dev)
824 static int hdmi_runtime_resume(struct device *dev)
828 r = dispc_runtime_get();
835 static const struct dev_pm_ops hdmi_pm_ops = {
836 .runtime_suspend = hdmi_runtime_suspend,
837 .runtime_resume = hdmi_runtime_resume,
840 static const struct of_device_id hdmi_of_match[] = {
841 { .compatible = "ti,omap5-hdmi", },
842 { .compatible = "ti,dra7-hdmi", },
846 static struct platform_driver omapdss_hdmihw_driver = {
847 .probe = hdmi5_probe,
848 .remove = hdmi5_remove,
850 .name = "omapdss_hdmi5",
852 .of_match_table = hdmi_of_match,
853 .suppress_bind_attrs = true,
857 int __init hdmi5_init_platform_driver(void)
859 return platform_driver_register(&omapdss_hdmihw_driver);
862 void hdmi5_uninit_platform_driver(void)
864 platform_driver_unregister(&omapdss_hdmihw_driver);