blob: 284b4942b9ac4826c0f55b870fc67b53f3d6c307 [file] [log] [blame]
Mythri P Kc3198a52011-03-12 12:04:27 +05301/*
Archit Tanejaef269582013-09-12 17:45:57 +05302 * HDMI interface DSS driver for TI's OMAP4 family of SoCs.
Mythri P Kc3198a52011-03-12 12:04:27 +05303 * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com/
4 * Authors: Yong Zhi
5 * Mythri pk <mythripk@ti.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#define DSS_SUBSYS_NAME "HDMI"
21
22#include <linux/kernel.h>
23#include <linux/module.h>
24#include <linux/err.h>
25#include <linux/io.h>
26#include <linux/interrupt.h>
27#include <linux/mutex.h>
28#include <linux/delay.h>
29#include <linux/string.h>
Tomi Valkeinen24e62892011-05-23 11:51:18 +030030#include <linux/platform_device.h>
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +030031#include <linux/pm_runtime.h>
32#include <linux/clk.h>
Tomi Valkeinencca35012012-04-26 14:48:32 +030033#include <linux/gpio.h>
Tomi Valkeinen17486942012-08-15 15:55:04 +030034#include <linux/regulator/consumer.h>
Tomi Valkeinen736e60d2015-06-04 15:22:23 +030035#include <linux/component.h>
Tomi Valkeinend9e32ec2016-03-18 09:02:18 +020036#include <linux/of.h>
Rob Herring09bffa62017-03-22 08:26:08 -050037#include <linux/of_graph.h>
Jyri Sarha4d594df2014-05-23 12:48:28 +030038#include <sound/omap-hdmi-audio.h>
Mythri P Kc3198a52011-03-12 12:04:27 +053039
Peter Ujfalusi32043da2016-05-27 14:40:49 +030040#include "omapdss.h"
Archit Tanejaef269582013-09-12 17:45:57 +053041#include "hdmi4_core.h"
Mythri P Kc3198a52011-03-12 12:04:27 +053042#include "dss.h"
Ricardo Neriad44cc32011-05-18 22:31:56 -050043#include "dss_features.h"
Jyri Sarha945514b2014-06-27 16:47:00 +030044#include "hdmi.h"
Mythri P Kc3198a52011-03-12 12:04:27 +053045
Jyri Sarha945514b2014-06-27 16:47:00 +030046static struct omap_hdmi hdmi;
Mythri P Kc3198a52011-03-12 12:04:27 +053047
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +030048static int hdmi_runtime_get(void)
49{
50 int r;
51
52 DSSDBG("hdmi_runtime_get\n");
53
54 r = pm_runtime_get_sync(&hdmi.pdev->dev);
55 WARN_ON(r < 0);
Archit Tanejaa247ce782012-02-10 11:45:52 +053056 if (r < 0)
Tomi Valkeinen852f0832012-02-17 17:58:04 +020057 return r;
Archit Tanejaa247ce782012-02-10 11:45:52 +053058
59 return 0;
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +030060}
61
62static void hdmi_runtime_put(void)
63{
64 int r;
65
66 DSSDBG("hdmi_runtime_put\n");
67
Tomi Valkeinen0eaf9f52012-01-23 13:23:08 +020068 r = pm_runtime_put_sync(&hdmi.pdev->dev);
Tomi Valkeinen5be3aeb2012-06-27 16:37:18 +030069 WARN_ON(r < 0 && r != -ENOSYS);
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +030070}
71
Tomi Valkeinendcf5f722013-10-28 11:47:34 +020072static irqreturn_t hdmi_irq_handler(int irq, void *data)
73{
74 struct hdmi_wp_data *wp = data;
75 u32 irqstatus;
76
77 irqstatus = hdmi_wp_get_irqstatus(wp);
78 hdmi_wp_set_irqstatus(wp, irqstatus);
79
80 if ((irqstatus & HDMI_IRQ_LINK_CONNECT) &&
81 irqstatus & HDMI_IRQ_LINK_DISCONNECT) {
82 /*
83 * If we get both connect and disconnect interrupts at the same
84 * time, turn off the PHY, clear interrupts, and restart, which
85 * raises connect interrupt if a cable is connected, or nothing
86 * if cable is not connected.
87 */
88 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_OFF);
89
90 hdmi_wp_set_irqstatus(wp, HDMI_IRQ_LINK_CONNECT |
91 HDMI_IRQ_LINK_DISCONNECT);
92
93 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON);
94 } else if (irqstatus & HDMI_IRQ_LINK_CONNECT) {
95 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_TXON);
96 } else if (irqstatus & HDMI_IRQ_LINK_DISCONNECT) {
97 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON);
98 }
99
100 return IRQ_HANDLED;
101}
102
Tomi Valkeinene25001d2013-05-10 15:20:52 +0300103static int hdmi_init_regulator(void)
104{
105 struct regulator *reg;
106
Jyri Sarha945514b2014-06-27 16:47:00 +0300107 if (hdmi.vdda_reg != NULL)
Tomi Valkeinene25001d2013-05-10 15:20:52 +0300108 return 0;
109
Tomi Valkeinen931d4bd2013-06-10 14:05:10 +0300110 reg = devm_regulator_get(&hdmi.pdev->dev, "vdda");
Tomi Valkeinene25001d2013-05-10 15:20:52 +0300111
112 if (IS_ERR(reg)) {
Tomi Valkeinen40359a92013-12-19 16:15:34 +0200113 if (PTR_ERR(reg) != -EPROBE_DEFER)
Tomi Valkeinen931d4bd2013-06-10 14:05:10 +0300114 DSSERR("can't get VDDA regulator\n");
Tomi Valkeinene25001d2013-05-10 15:20:52 +0300115 return PTR_ERR(reg);
116 }
117
Jyri Sarha945514b2014-06-27 16:47:00 +0300118 hdmi.vdda_reg = reg;
Tomi Valkeinene25001d2013-05-10 15:20:52 +0300119
120 return 0;
121}
122
Tomi Valkeinenbb426fc92012-10-19 17:42:10 +0300123static int hdmi_power_on_core(struct omap_dss_device *dssdev)
Mythri P Kc3198a52011-03-12 12:04:27 +0530124{
Mythri P K46095b22012-01-06 17:52:09 +0530125 int r;
Mythri P Kc3198a52011-03-12 12:04:27 +0530126
Jyri Sarha945514b2014-06-27 16:47:00 +0300127 r = regulator_enable(hdmi.vdda_reg);
Tomi Valkeinen17486942012-08-15 15:55:04 +0300128 if (r)
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300129 return r;
Tomi Valkeinen17486942012-08-15 15:55:04 +0300130
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300131 r = hdmi_runtime_get();
132 if (r)
Tomi Valkeinencca35012012-04-26 14:48:32 +0300133 goto err_runtime_get;
Mythri P Kc3198a52011-03-12 12:04:27 +0530134
Tomi Valkeinenbb426fc92012-10-19 17:42:10 +0300135 /* Make selection of HDMI in DSS */
136 dss_select_hdmi_venc_clk_source(DSS_HDMI_M_PCLK);
137
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300138 hdmi.core_enabled = true;
139
Tomi Valkeinenbb426fc92012-10-19 17:42:10 +0300140 return 0;
141
142err_runtime_get:
Jyri Sarha945514b2014-06-27 16:47:00 +0300143 regulator_disable(hdmi.vdda_reg);
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300144
Tomi Valkeinenbb426fc92012-10-19 17:42:10 +0300145 return r;
146}
147
148static void hdmi_power_off_core(struct omap_dss_device *dssdev)
149{
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300150 hdmi.core_enabled = false;
151
Tomi Valkeinenbb426fc92012-10-19 17:42:10 +0300152 hdmi_runtime_put();
Jyri Sarha945514b2014-06-27 16:47:00 +0300153 regulator_disable(hdmi.vdda_reg);
Tomi Valkeinenbb426fc92012-10-19 17:42:10 +0300154}
155
156static int hdmi_power_on_full(struct omap_dss_device *dssdev)
157{
158 int r;
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300159 struct videomode *vm;
Tomi Valkeinen46e1ef32015-11-05 09:56:21 +0200160 enum omap_channel channel = dssdev->dispc_channel;
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200161 struct hdmi_wp_data *wp = &hdmi.wp;
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300162 struct dss_pll_clock_info hdmi_cinfo = { 0 };
Tomi Valkeinen67d8ffd2016-01-13 18:41:33 +0200163 unsigned pc;
Tomi Valkeinenbb426fc92012-10-19 17:42:10 +0300164
165 r = hdmi_power_on_core(dssdev);
166 if (r)
167 return r;
168
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200169 /* disable and clear irqs */
170 hdmi_wp_clear_irqenable(wp, 0xffffffff);
171 hdmi_wp_set_irqstatus(wp, 0xffffffff);
172
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300173 vm = &hdmi.cfg.vm;
Mythri P Kc3198a52011-03-12 12:04:27 +0530174
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300175 DSSDBG("hdmi_power_on hactive= %d vactive = %d\n", vm->hactive,
176 vm->vactive);
Mythri P Kc3198a52011-03-12 12:04:27 +0530177
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300178 pc = vm->pixelclock;
179 if (vm->flags & DISPLAY_FLAGS_DOUBLECLK)
Tomi Valkeinen67d8ffd2016-01-13 18:41:33 +0200180 pc *= 2;
181
Tomi Valkeinenc1077512016-05-18 11:15:21 +0300182 /* DSS_HDMI_TCLK is bitclk / 10 */
183 pc *= 10;
184
Tomi Valkeinenc17dc0e2016-05-18 10:45:20 +0300185 dss_pll_calc_b(&hdmi.pll.pll, clk_get_rate(hdmi.pll.pll.clkin),
186 pc, &hdmi_cinfo);
Mythri P Kc3198a52011-03-12 12:04:27 +0530187
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300188 r = dss_pll_enable(&hdmi.pll.pll);
Mythri P Kc3198a52011-03-12 12:04:27 +0530189 if (r) {
Tomi Valkeinenc2fbd062014-10-16 16:01:51 +0300190 DSSERR("Failed to enable PLL\n");
Tomi Valkeinencca35012012-04-26 14:48:32 +0300191 goto err_pll_enable;
Mythri P Kc3198a52011-03-12 12:04:27 +0530192 }
193
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300194 r = dss_pll_set_config(&hdmi.pll.pll, &hdmi_cinfo);
Tomi Valkeinenc2fbd062014-10-16 16:01:51 +0300195 if (r) {
196 DSSERR("Failed to configure PLL\n");
197 goto err_pll_cfg;
198 }
199
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300200 r = hdmi_phy_configure(&hdmi.phy, hdmi_cinfo.clkdco,
201 hdmi_cinfo.clkout[0]);
Mythri P Kc3198a52011-03-12 12:04:27 +0530202 if (r) {
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200203 DSSDBG("Failed to configure PHY\n");
204 goto err_phy_cfg;
Mythri P Kc3198a52011-03-12 12:04:27 +0530205 }
206
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200207 r = hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON);
208 if (r)
209 goto err_phy_pwr;
210
Archit Taneja275cfa12013-10-08 14:22:03 +0530211 hdmi4_configure(&hdmi.core, &hdmi.wp, &hdmi.cfg);
Mythri P Kc3198a52011-03-12 12:04:27 +0530212
Mythri P Kc3198a52011-03-12 12:04:27 +0530213 /* tv size */
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300214 dss_mgr_set_timings(channel, vm);
Mythri P Kc3198a52011-03-12 12:04:27 +0530215
Tomi Valkeinen46e1ef32015-11-05 09:56:21 +0200216 r = dss_mgr_enable(channel);
Tomi Valkeinen33ca2372011-11-21 13:42:58 +0200217 if (r)
218 goto err_mgr_enable;
Tomi Valkeinen3870c902011-08-31 14:47:11 +0300219
Tomi Valkeinen4e4b53c2015-03-24 15:46:35 +0200220 r = hdmi_wp_video_start(&hdmi.wp);
221 if (r)
222 goto err_vid_enable;
223
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200224 hdmi_wp_set_irqenable(wp,
225 HDMI_IRQ_LINK_CONNECT | HDMI_IRQ_LINK_DISCONNECT);
226
Mythri P Kc3198a52011-03-12 12:04:27 +0530227 return 0;
Tomi Valkeinen33ca2372011-11-21 13:42:58 +0200228
Ricardo Neric0456be2012-04-27 13:48:45 -0500229err_vid_enable:
Tomi Valkeinen46e1ef32015-11-05 09:56:21 +0200230 dss_mgr_disable(channel);
Tomi Valkeinen4e4b53c2015-03-24 15:46:35 +0200231err_mgr_enable:
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200232 hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);
233err_phy_pwr:
Tomi Valkeinen9bba13f2015-03-24 15:46:33 +0200234err_phy_cfg:
Tomi Valkeinenc2fbd062014-10-16 16:01:51 +0300235err_pll_cfg:
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300236 dss_pll_disable(&hdmi.pll.pll);
Tomi Valkeinencca35012012-04-26 14:48:32 +0300237err_pll_enable:
Tomi Valkeinenbb426fc92012-10-19 17:42:10 +0300238 hdmi_power_off_core(dssdev);
Mythri P Kc3198a52011-03-12 12:04:27 +0530239 return -EIO;
240}
241
Tomi Valkeinenbb426fc92012-10-19 17:42:10 +0300242static void hdmi_power_off_full(struct omap_dss_device *dssdev)
Mythri P Kc3198a52011-03-12 12:04:27 +0530243{
Tomi Valkeinen46e1ef32015-11-05 09:56:21 +0200244 enum omap_channel channel = dssdev->dispc_channel;
Archit Tanejacea87b92012-09-07 17:56:20 +0530245
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200246 hdmi_wp_clear_irqenable(&hdmi.wp, 0xffffffff);
247
Archit Taneja275cfa12013-10-08 14:22:03 +0530248 hdmi_wp_video_stop(&hdmi.wp);
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200249
Tomi Valkeinen46e1ef32015-11-05 09:56:21 +0200250 dss_mgr_disable(channel);
Tomi Valkeinen4e4b53c2015-03-24 15:46:35 +0200251
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200252 hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);
253
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300254 dss_pll_disable(&hdmi.pll.pll);
Tomi Valkeinencca35012012-04-26 14:48:32 +0300255
Tomi Valkeinenbb426fc92012-10-19 17:42:10 +0300256 hdmi_power_off_core(dssdev);
Mythri P Kc3198a52011-03-12 12:04:27 +0530257}
258
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300259static int hdmi_display_check_timing(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300260 struct videomode *vm)
Mythri P Kc3198a52011-03-12 12:04:27 +0530261{
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300262 if (!dispc_mgr_timings_ok(dssdev->dispc_channel, vm))
Mythri P Kc3198a52011-03-12 12:04:27 +0530263 return -EINVAL;
Mythri P Kc3198a52011-03-12 12:04:27 +0530264
265 return 0;
Mythri P Kc3198a52011-03-12 12:04:27 +0530266}
267
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300268static void hdmi_display_set_timing(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300269 struct videomode *vm)
Mythri P Kc3198a52011-03-12 12:04:27 +0530270{
Archit Tanejaed1aa902012-08-15 00:40:31 +0530271 mutex_lock(&hdmi.lock);
272
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300273 hdmi.cfg.vm = *vm;
Archit Taneja78493982012-08-08 16:50:42 +0530274
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300275 dispc_set_tv_pclk(vm->pixelclock);
Archit Taneja1e676242013-12-09 19:39:08 +0530276
Archit Tanejaed1aa902012-08-15 00:40:31 +0530277 mutex_unlock(&hdmi.lock);
Mythri P Kc3198a52011-03-12 12:04:27 +0530278}
279
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300280static void hdmi_display_get_timings(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300281 struct videomode *vm)
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300282{
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300283 *vm = hdmi.cfg.vm;
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300284}
285
Tomi Valkeinene40402c2012-03-02 18:01:07 +0200286static void hdmi_dump_regs(struct seq_file *s)
Mythri P K162874d2011-09-22 13:37:45 +0530287{
288 mutex_lock(&hdmi.lock);
289
Wei Yongjunf8fb7d72012-10-21 20:54:26 +0800290 if (hdmi_runtime_get()) {
291 mutex_unlock(&hdmi.lock);
Mythri P K162874d2011-09-22 13:37:45 +0530292 return;
Wei Yongjunf8fb7d72012-10-21 20:54:26 +0800293 }
Mythri P K162874d2011-09-22 13:37:45 +0530294
Archit Taneja275cfa12013-10-08 14:22:03 +0530295 hdmi_wp_dump(&hdmi.wp, s);
296 hdmi_pll_dump(&hdmi.pll, s);
297 hdmi_phy_dump(&hdmi.phy, s);
298 hdmi4_core_dump(&hdmi.core, s);
Mythri P K162874d2011-09-22 13:37:45 +0530299
300 hdmi_runtime_put();
301 mutex_unlock(&hdmi.lock);
302}
303
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300304static int read_edid(u8 *buf, int len)
Tomi Valkeinen47024562011-08-25 17:12:56 +0300305{
306 int r;
307
308 mutex_lock(&hdmi.lock);
309
310 r = hdmi_runtime_get();
311 BUG_ON(r);
312
Archit Taneja275cfa12013-10-08 14:22:03 +0530313 r = hdmi4_read_edid(&hdmi.core, buf, len);
Tomi Valkeinen47024562011-08-25 17:12:56 +0300314
315 hdmi_runtime_put();
316 mutex_unlock(&hdmi.lock);
317
318 return r;
319}
320
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300321static void hdmi_start_audio_stream(struct omap_hdmi *hd)
322{
323 hdmi_wp_audio_enable(&hd->wp, true);
324 hdmi4_audio_start(&hd->core, &hd->wp);
325}
326
327static void hdmi_stop_audio_stream(struct omap_hdmi *hd)
328{
329 hdmi4_audio_stop(&hd->core, &hd->wp);
330 hdmi_wp_audio_enable(&hd->wp, false);
331}
332
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300333static int hdmi_display_enable(struct omap_dss_device *dssdev)
Mythri P Kc3198a52011-03-12 12:04:27 +0530334{
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +0300335 struct omap_dss_device *out = &hdmi.output;
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300336 unsigned long flags;
Mythri P Kc3198a52011-03-12 12:04:27 +0530337 int r = 0;
338
339 DSSDBG("ENTER hdmi_display_enable\n");
340
341 mutex_lock(&hdmi.lock);
342
Tomi Valkeinenf1504ad2015-11-05 09:34:51 +0200343 if (!out->dispc_channel_connected) {
Archit Tanejacea87b92012-09-07 17:56:20 +0530344 DSSERR("failed to enable display: no output/manager\n");
Tomi Valkeinen05e1d602011-06-23 16:38:21 +0300345 r = -ENODEV;
346 goto err0;
347 }
348
Tomi Valkeinenbb426fc92012-10-19 17:42:10 +0300349 r = hdmi_power_on_full(dssdev);
Mythri P Kc3198a52011-03-12 12:04:27 +0530350 if (r) {
351 DSSERR("failed to power on device\n");
Tomi Valkeinend3923932013-04-25 13:12:07 +0300352 goto err0;
Mythri P Kc3198a52011-03-12 12:04:27 +0530353 }
354
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300355 if (hdmi.audio_configured) {
356 r = hdmi4_audio_config(&hdmi.core, &hdmi.wp, &hdmi.audio_config,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300357 hdmi.cfg.vm.pixelclock);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300358 if (r) {
359 DSSERR("Error restoring audio configuration: %d", r);
360 hdmi.audio_abort_cb(&hdmi.pdev->dev);
361 hdmi.audio_configured = false;
362 }
363 }
364
365 spin_lock_irqsave(&hdmi.audio_playing_lock, flags);
366 if (hdmi.audio_configured && hdmi.audio_playing)
367 hdmi_start_audio_stream(&hdmi);
Jyri Sarha4d594df2014-05-23 12:48:28 +0300368 hdmi.display_enabled = true;
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300369 spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags);
Jyri Sarha4d594df2014-05-23 12:48:28 +0300370
Mythri P Kc3198a52011-03-12 12:04:27 +0530371 mutex_unlock(&hdmi.lock);
372 return 0;
373
Mythri P Kc3198a52011-03-12 12:04:27 +0530374err0:
375 mutex_unlock(&hdmi.lock);
376 return r;
377}
378
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300379static void hdmi_display_disable(struct omap_dss_device *dssdev)
Mythri P Kc3198a52011-03-12 12:04:27 +0530380{
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300381 unsigned long flags;
382
Mythri P Kc3198a52011-03-12 12:04:27 +0530383 DSSDBG("Enter hdmi_display_disable\n");
384
385 mutex_lock(&hdmi.lock);
386
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300387 spin_lock_irqsave(&hdmi.audio_playing_lock, flags);
388 hdmi_stop_audio_stream(&hdmi);
389 hdmi.display_enabled = false;
390 spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags);
Jyri Sarha4d594df2014-05-23 12:48:28 +0300391
Tomi Valkeinenbb426fc92012-10-19 17:42:10 +0300392 hdmi_power_off_full(dssdev);
Mythri P Kc3198a52011-03-12 12:04:27 +0530393
Mythri P Kc3198a52011-03-12 12:04:27 +0530394 mutex_unlock(&hdmi.lock);
395}
396
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300397static int hdmi_core_enable(struct omap_dss_device *dssdev)
Tomi Valkeinen44898232012-10-19 17:42:27 +0300398{
399 int r = 0;
400
401 DSSDBG("ENTER omapdss_hdmi_core_enable\n");
402
403 mutex_lock(&hdmi.lock);
404
Tomi Valkeinen44898232012-10-19 17:42:27 +0300405 r = hdmi_power_on_core(dssdev);
406 if (r) {
407 DSSERR("failed to power on device\n");
408 goto err0;
409 }
410
411 mutex_unlock(&hdmi.lock);
412 return 0;
413
414err0:
415 mutex_unlock(&hdmi.lock);
416 return r;
417}
418
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300419static void hdmi_core_disable(struct omap_dss_device *dssdev)
Tomi Valkeinen44898232012-10-19 17:42:27 +0300420{
421 DSSDBG("Enter omapdss_hdmi_core_disable\n");
422
423 mutex_lock(&hdmi.lock);
424
425 hdmi_power_off_core(dssdev);
426
427 mutex_unlock(&hdmi.lock);
428}
429
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300430static int hdmi_connect(struct omap_dss_device *dssdev,
431 struct omap_dss_device *dst)
432{
Tomi Valkeinen46e1ef32015-11-05 09:56:21 +0200433 enum omap_channel channel = dssdev->dispc_channel;
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300434 int r;
435
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300436 r = hdmi_init_regulator();
437 if (r)
438 return r;
439
Tomi Valkeinen46e1ef32015-11-05 09:56:21 +0200440 r = dss_mgr_connect(channel, dssdev);
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300441 if (r)
442 return r;
443
444 r = omapdss_output_set_device(dssdev, dst);
445 if (r) {
446 DSSERR("failed to connect output to new device: %s\n",
447 dst->name);
Tomi Valkeinen46e1ef32015-11-05 09:56:21 +0200448 dss_mgr_disconnect(channel, dssdev);
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300449 return r;
450 }
451
452 return 0;
453}
454
455static void hdmi_disconnect(struct omap_dss_device *dssdev,
456 struct omap_dss_device *dst)
457{
Tomi Valkeinen46e1ef32015-11-05 09:56:21 +0200458 enum omap_channel channel = dssdev->dispc_channel;
459
Tomi Valkeinen9560dc102013-07-24 13:06:54 +0300460 WARN_ON(dst != dssdev->dst);
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300461
Tomi Valkeinen9560dc102013-07-24 13:06:54 +0300462 if (dst != dssdev->dst)
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300463 return;
464
465 omapdss_output_unset_device(dssdev);
466
Tomi Valkeinen46e1ef32015-11-05 09:56:21 +0200467 dss_mgr_disconnect(channel, dssdev);
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300468}
469
470static int hdmi_read_edid(struct omap_dss_device *dssdev,
471 u8 *edid, int len)
472{
473 bool need_enable;
474 int r;
475
476 need_enable = hdmi.core_enabled == false;
477
478 if (need_enable) {
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300479 r = hdmi_core_enable(dssdev);
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300480 if (r)
481 return r;
482 }
483
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300484 r = read_edid(edid, len);
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300485
486 if (need_enable)
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300487 hdmi_core_disable(dssdev);
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300488
489 return r;
490}
491
Tomi Valkeinenab0aee92014-06-18 14:21:44 +0300492static int hdmi_set_infoframe(struct omap_dss_device *dssdev,
493 const struct hdmi_avi_infoframe *avi)
494{
495 hdmi.cfg.infoframe = *avi;
496 return 0;
497}
498
499static int hdmi_set_hdmi_mode(struct omap_dss_device *dssdev,
500 bool hdmi_mode)
501{
502 hdmi.cfg.hdmi_dvi_mode = hdmi_mode ? HDMI_HDMI : HDMI_DVI;
503 return 0;
504}
505
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300506static const struct omapdss_hdmi_ops hdmi_ops = {
507 .connect = hdmi_connect,
508 .disconnect = hdmi_disconnect,
509
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300510 .enable = hdmi_display_enable,
511 .disable = hdmi_display_disable,
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300512
Tomi Valkeinen164ebdd2013-05-15 10:48:45 +0300513 .check_timings = hdmi_display_check_timing,
514 .set_timings = hdmi_display_set_timing,
515 .get_timings = hdmi_display_get_timings,
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300516
517 .read_edid = hdmi_read_edid,
Tomi Valkeinenab0aee92014-06-18 14:21:44 +0300518 .set_infoframe = hdmi_set_infoframe,
519 .set_hdmi_mode = hdmi_set_hdmi_mode,
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300520};
521
Tomi Valkeinen17ae4e82013-04-26 14:48:43 +0300522static void hdmi_init_output(struct platform_device *pdev)
Archit Taneja81b87f52012-09-26 16:30:49 +0530523{
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +0300524 struct omap_dss_device *out = &hdmi.output;
Archit Taneja81b87f52012-09-26 16:30:49 +0530525
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +0300526 out->dev = &pdev->dev;
Archit Taneja81b87f52012-09-26 16:30:49 +0530527 out->id = OMAP_DSS_OUTPUT_HDMI;
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +0300528 out->output_type = OMAP_DISPLAY_TYPE_HDMI;
Tomi Valkeinen7286a082013-02-18 13:06:01 +0200529 out->name = "hdmi.0";
Tomi Valkeinen2eea5ae2013-02-13 11:23:54 +0200530 out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
Tomi Valkeinen0b450c32013-05-24 13:20:17 +0300531 out->ops.hdmi = &hdmi_ops;
Tomi Valkeinenb7328e12013-05-03 11:42:18 +0300532 out->owner = THIS_MODULE;
Archit Taneja81b87f52012-09-26 16:30:49 +0530533
Tomi Valkeinen5d47dbc2013-04-24 13:32:51 +0300534 omapdss_register_output(out);
Archit Taneja81b87f52012-09-26 16:30:49 +0530535}
536
Jyri Sarha39c1b7b2014-12-02 14:12:56 +0200537static void hdmi_uninit_output(struct platform_device *pdev)
Archit Taneja81b87f52012-09-26 16:30:49 +0530538{
Tomi Valkeinen1f68d9c2013-04-19 15:09:34 +0300539 struct omap_dss_device *out = &hdmi.output;
Archit Taneja81b87f52012-09-26 16:30:49 +0530540
Tomi Valkeinen5d47dbc2013-04-24 13:32:51 +0300541 omapdss_unregister_output(out);
Archit Taneja81b87f52012-09-26 16:30:49 +0530542}
543
Tomi Valkeinen2f5dc672014-04-17 12:54:02 +0300544static int hdmi_probe_of(struct platform_device *pdev)
545{
546 struct device_node *node = pdev->dev.of_node;
547 struct device_node *ep;
548 int r;
549
Rob Herring09bffa62017-03-22 08:26:08 -0500550 ep = of_graph_get_endpoint_by_regs(node, 0, 0);
Tomi Valkeinen2f5dc672014-04-17 12:54:02 +0300551 if (!ep)
552 return 0;
553
554 r = hdmi_parse_lanes_of(pdev, ep, &hdmi.phy);
555 if (r)
556 goto err;
557
558 of_node_put(ep);
559 return 0;
560
561err:
562 of_node_put(ep);
563 return r;
564}
565
Jyri Sarha4d594df2014-05-23 12:48:28 +0300566/* Audio callbacks */
567static int hdmi_audio_startup(struct device *dev,
568 void (*abort_cb)(struct device *dev))
569{
570 struct omap_hdmi *hd = dev_get_drvdata(dev);
571 int ret = 0;
572
573 mutex_lock(&hd->lock);
574
575 if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) {
576 ret = -EPERM;
577 goto out;
578 }
579
580 hd->audio_abort_cb = abort_cb;
581
582out:
583 mutex_unlock(&hd->lock);
584
585 return ret;
586}
587
588static int hdmi_audio_shutdown(struct device *dev)
589{
590 struct omap_hdmi *hd = dev_get_drvdata(dev);
591
592 mutex_lock(&hd->lock);
593 hd->audio_abort_cb = NULL;
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300594 hd->audio_configured = false;
595 hd->audio_playing = false;
Jyri Sarha4d594df2014-05-23 12:48:28 +0300596 mutex_unlock(&hd->lock);
597
598 return 0;
599}
600
601static int hdmi_audio_start(struct device *dev)
602{
603 struct omap_hdmi *hd = dev_get_drvdata(dev);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300604 unsigned long flags;
Jyri Sarha4d594df2014-05-23 12:48:28 +0300605
606 WARN_ON(!hdmi_mode_has_audio(&hd->cfg));
Jyri Sarha4d594df2014-05-23 12:48:28 +0300607
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300608 spin_lock_irqsave(&hd->audio_playing_lock, flags);
Jyri Sarha4d594df2014-05-23 12:48:28 +0300609
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300610 if (hd->display_enabled)
611 hdmi_start_audio_stream(hd);
612 hd->audio_playing = true;
613
614 spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
Jyri Sarha4d594df2014-05-23 12:48:28 +0300615 return 0;
616}
617
618static void hdmi_audio_stop(struct device *dev)
619{
620 struct omap_hdmi *hd = dev_get_drvdata(dev);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300621 unsigned long flags;
Jyri Sarha4d594df2014-05-23 12:48:28 +0300622
623 WARN_ON(!hdmi_mode_has_audio(&hd->cfg));
Jyri Sarha4d594df2014-05-23 12:48:28 +0300624
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300625 spin_lock_irqsave(&hd->audio_playing_lock, flags);
626
627 if (hd->display_enabled)
628 hdmi_stop_audio_stream(hd);
629 hd->audio_playing = false;
630
631 spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
Jyri Sarha4d594df2014-05-23 12:48:28 +0300632}
633
634static int hdmi_audio_config(struct device *dev,
635 struct omap_dss_audio *dss_audio)
636{
637 struct omap_hdmi *hd = dev_get_drvdata(dev);
638 int ret;
639
640 mutex_lock(&hd->lock);
641
642 if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) {
643 ret = -EPERM;
644 goto out;
645 }
646
647 ret = hdmi4_audio_config(&hd->core, &hd->wp, dss_audio,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300648 hd->cfg.vm.pixelclock);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300649 if (!ret) {
650 hd->audio_configured = true;
651 hd->audio_config = *dss_audio;
652 }
Jyri Sarha4d594df2014-05-23 12:48:28 +0300653out:
654 mutex_unlock(&hd->lock);
655
656 return ret;
657}
658
659static const struct omap_hdmi_audio_ops hdmi_audio_ops = {
660 .audio_startup = hdmi_audio_startup,
661 .audio_shutdown = hdmi_audio_shutdown,
662 .audio_start = hdmi_audio_start,
663 .audio_stop = hdmi_audio_stop,
664 .audio_config = hdmi_audio_config,
665};
666
667static int hdmi_audio_register(struct device *dev)
668{
669 struct omap_hdmi_audio_pdata pdata = {
670 .dev = dev,
671 .dss_version = omapdss_get_version(),
672 .audio_dma_addr = hdmi_wp_get_audio_dma_addr(&hdmi.wp),
673 .ops = &hdmi_audio_ops,
674 };
675
676 hdmi.audio_pdev = platform_device_register_data(
677 dev, "omap-hdmi-audio", PLATFORM_DEVID_AUTO,
678 &pdata, sizeof(pdata));
679
680 if (IS_ERR(hdmi.audio_pdev))
681 return PTR_ERR(hdmi.audio_pdev);
682
683 return 0;
684}
685
Mythri P Kc3198a52011-03-12 12:04:27 +0530686/* HDMI HW IP initialisation */
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300687static int hdmi4_bind(struct device *dev, struct device *master, void *data)
Mythri P Kc3198a52011-03-12 12:04:27 +0530688{
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300689 struct platform_device *pdev = to_platform_device(dev);
Tomi Valkeinen38f3daf2012-05-02 14:55:12 +0300690 int r;
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200691 int irq;
Mythri P Kc3198a52011-03-12 12:04:27 +0530692
Mythri P Kc3198a52011-03-12 12:04:27 +0530693 hdmi.pdev = pdev;
Jyri Sarha945514b2014-06-27 16:47:00 +0300694 dev_set_drvdata(&pdev->dev, &hdmi);
Mythri P Kc3198a52011-03-12 12:04:27 +0530695
696 mutex_init(&hdmi.lock);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300697 spin_lock_init(&hdmi.audio_playing_lock);
Mythri P Kc3198a52011-03-12 12:04:27 +0530698
Laurent Pinchart1dff2122017-05-07 00:42:26 +0300699 r = hdmi_probe_of(pdev);
700 if (r)
701 return r;
Tomi Valkeinen2f5dc672014-04-17 12:54:02 +0300702
Archit Taneja275cfa12013-10-08 14:22:03 +0530703 r = hdmi_wp_init(pdev, &hdmi.wp);
Archit Tanejaf382d9e2013-08-06 14:56:55 +0530704 if (r)
705 return r;
Mythri P Kc3198a52011-03-12 12:04:27 +0530706
Tomi Valkeinen03aafa22014-10-16 15:31:38 +0300707 r = hdmi_pll_init(pdev, &hdmi.pll, &hdmi.wp);
Archit Tanejac1577c12013-10-08 12:55:26 +0530708 if (r)
709 return r;
710
Archit Taneja275cfa12013-10-08 14:22:03 +0530711 r = hdmi_phy_init(pdev, &hdmi.phy);
Archit Taneja5cac5ae2013-10-08 13:07:00 +0530712 if (r)
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300713 goto err;
Tomi Valkeinenddb1d5c2013-06-06 13:08:35 +0300714
Archit Taneja275cfa12013-10-08 14:22:03 +0530715 r = hdmi4_core_init(pdev, &hdmi.core);
Archit Taneja425f02f2013-10-08 14:16:05 +0530716 if (r)
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300717 goto err;
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300718
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200719 irq = platform_get_irq(pdev, 0);
720 if (irq < 0) {
721 DSSERR("platform_get_irq failed\n");
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300722 r = -ENODEV;
723 goto err;
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200724 }
725
726 r = devm_request_threaded_irq(&pdev->dev, irq,
727 NULL, hdmi_irq_handler,
728 IRQF_ONESHOT, "OMAP HDMI", &hdmi.wp);
729 if (r) {
730 DSSERR("HDMI IRQ request failed\n");
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300731 goto err;
Tomi Valkeinendcf5f722013-10-28 11:47:34 +0200732 }
733
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300734 pm_runtime_enable(&pdev->dev);
735
Tomi Valkeinen002d3682013-02-13 12:17:43 +0200736 hdmi_init_output(pdev);
737
Jyri Sarha4d594df2014-05-23 12:48:28 +0300738 r = hdmi_audio_register(&pdev->dev);
739 if (r) {
740 DSSERR("Registering HDMI audio failed\n");
741 hdmi_uninit_output(pdev);
742 pm_runtime_disable(&pdev->dev);
743 return r;
744 }
745
Tomi Valkeinene40402c2012-03-02 18:01:07 +0200746 dss_debugfs_create_file("hdmi", hdmi_dump_regs);
747
Tomi Valkeinencca35012012-04-26 14:48:32 +0300748 return 0;
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300749err:
750 hdmi_pll_uninit(&hdmi.pll);
751 return r;
Tomi Valkeinencca35012012-04-26 14:48:32 +0300752}
753
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300754static void hdmi4_unbind(struct device *dev, struct device *master, void *data)
Mythri P Kc3198a52011-03-12 12:04:27 +0530755{
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300756 struct platform_device *pdev = to_platform_device(dev);
757
Jyri Sarha4d594df2014-05-23 12:48:28 +0300758 if (hdmi.audio_pdev)
759 platform_device_unregister(hdmi.audio_pdev);
760
Archit Taneja81b87f52012-09-26 16:30:49 +0530761 hdmi_uninit_output(pdev);
762
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300763 hdmi_pll_uninit(&hdmi.pll);
764
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300765 pm_runtime_disable(&pdev->dev);
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300766}
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300767
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300768static const struct component_ops hdmi4_component_ops = {
769 .bind = hdmi4_bind,
770 .unbind = hdmi4_unbind,
771};
772
773static int hdmi4_probe(struct platform_device *pdev)
774{
775 return component_add(&pdev->dev, &hdmi4_component_ops);
776}
777
778static int hdmi4_remove(struct platform_device *pdev)
779{
780 component_del(&pdev->dev, &hdmi4_component_ops);
Mythri P Kc3198a52011-03-12 12:04:27 +0530781 return 0;
782}
783
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300784static int hdmi_runtime_suspend(struct device *dev)
785{
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300786 dispc_runtime_put();
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300787
788 return 0;
789}
790
791static int hdmi_runtime_resume(struct device *dev)
792{
793 int r;
794
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300795 r = dispc_runtime_get();
796 if (r < 0)
Tomi Valkeinen852f0832012-02-17 17:58:04 +0200797 return r;
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300798
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300799 return 0;
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300800}
801
802static const struct dev_pm_ops hdmi_pm_ops = {
803 .runtime_suspend = hdmi_runtime_suspend,
804 .runtime_resume = hdmi_runtime_resume,
805};
806
Tomi Valkeinen04656162013-12-16 15:14:04 +0200807static const struct of_device_id hdmi_of_match[] = {
808 { .compatible = "ti,omap4-hdmi", },
809 {},
810};
811
Mythri P Kc3198a52011-03-12 12:04:27 +0530812static struct platform_driver omapdss_hdmihw_driver = {
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300813 .probe = hdmi4_probe,
814 .remove = hdmi4_remove,
Mythri P Kc3198a52011-03-12 12:04:27 +0530815 .driver = {
816 .name = "omapdss_hdmi",
Tomi Valkeinen4fbafaf2011-05-27 10:52:19 +0300817 .pm = &hdmi_pm_ops,
Tomi Valkeinen04656162013-12-16 15:14:04 +0200818 .of_match_table = hdmi_of_match,
Tomi Valkeinen422ccbd2014-10-16 09:54:25 +0300819 .suppress_bind_attrs = true,
Mythri P Kc3198a52011-03-12 12:04:27 +0530820 },
821};
822
Archit Tanejaef269582013-09-12 17:45:57 +0530823int __init hdmi4_init_platform_driver(void)
Mythri P Kc3198a52011-03-12 12:04:27 +0530824{
Tomi Valkeinen17ae4e82013-04-26 14:48:43 +0300825 return platform_driver_register(&omapdss_hdmihw_driver);
Mythri P Kc3198a52011-03-12 12:04:27 +0530826}
827
Tomi Valkeinenede92692015-06-04 14:12:16 +0300828void hdmi4_uninit_platform_driver(void)
Mythri P Kc3198a52011-03-12 12:04:27 +0530829{
Tomi Valkeinen04c742c2012-02-23 15:32:37 +0200830 platform_driver_unregister(&omapdss_hdmihw_driver);
Mythri P Kc3198a52011-03-12 12:04:27 +0530831}