blob: d28da9ac3e900e57b2e6c762af197d9a04d0ea23 [file] [log] [blame]
Tomi Valkeinenf5bab222014-03-13 12:44:14 +02001/*
2 * HDMI driver for OMAP5
3 *
Andrew F. Davisbb5cdf82017-12-05 14:29:31 -06004 * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
Tomi Valkeinenf5bab222014-03-13 12:44:14 +02005 *
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 Valkeinend9e32ec2016-03-18 09:02:18 +020041#include <linux/of.h>
Rob Herring09bffa62017-03-22 08:26:08 -050042#include <linux/of_graph.h>
Jyri Sarha45302d72014-05-23 16:20:46 +030043#include <sound/omap-hdmi-audio.h>
Tomi Valkeinenf5bab222014-03-13 12:44:14 +020044
Peter Ujfalusi32043da2016-05-27 14:40:49 +030045#include "omapdss.h"
Tomi Valkeinenf5bab222014-03-13 12:44:14 +020046#include "hdmi5_core.h"
47#include "dss.h"
Tomi Valkeinenf5bab222014-03-13 12:44:14 +020048
Laurent Pinchartc44991c2018-02-13 14:00:46 +020049static int hdmi_runtime_get(struct omap_hdmi *hdmi)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +020050{
51 int r;
52
53 DSSDBG("hdmi_runtime_get\n");
54
Laurent Pinchartc44991c2018-02-13 14:00:46 +020055 r = pm_runtime_get_sync(&hdmi->pdev->dev);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +020056 WARN_ON(r < 0);
57 if (r < 0)
58 return r;
59
60 return 0;
61}
62
Laurent Pinchartc44991c2018-02-13 14:00:46 +020063static void hdmi_runtime_put(struct omap_hdmi *hdmi)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +020064{
65 int r;
66
67 DSSDBG("hdmi_runtime_put\n");
68
Laurent Pinchartc44991c2018-02-13 14:00:46 +020069 r = pm_runtime_put_sync(&hdmi->pdev->dev);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +020070 WARN_ON(r < 0 && r != -ENOSYS);
71}
72
73static irqreturn_t hdmi_irq_handler(int irq, void *data)
74{
Laurent Pinchartc44991c2018-02-13 14:00:46 +020075 struct omap_hdmi *hdmi = data;
76 struct hdmi_wp_data *wp = &hdmi->wp;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +020077 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 */
Laurent Pinchartc44991c2018-02-13 14:00:46 +020099 v = hdmi_read_reg(hdmi->phy.base, HDMI_TXPHY_PAD_CFG_CTRL);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200100 v = FLD_MOD(v, 1, 15, 15); /* FORCE_RXDET_HIGH */
101 v = FLD_MOD(v, 0, 14, 7); /* RXDET_LINE */
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200102 hdmi_write_reg(hdmi->phy.base, HDMI_TXPHY_PAD_CFG_CTRL, v);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200103
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
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200109 REG_FLD_MOD(hdmi->phy.base, HDMI_TXPHY_PAD_CFG_CTRL, 0, 15, 15);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200110
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
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200120static int hdmi_init_regulator(struct omap_hdmi *hdmi)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200121{
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200122 struct regulator *reg;
123
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200124 if (hdmi->vdda_reg != NULL)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200125 return 0;
126
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200127 reg = devm_regulator_get(&hdmi->pdev->dev, "vdda");
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200128 if (IS_ERR(reg)) {
129 DSSERR("can't get VDDA regulator\n");
130 return PTR_ERR(reg);
131 }
132
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200133 hdmi->vdda_reg = reg;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200134
135 return 0;
136}
137
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200138static int hdmi_power_on_core(struct omap_hdmi *hdmi)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200139{
140 int r;
141
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200142 r = regulator_enable(hdmi->vdda_reg);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200143 if (r)
144 return r;
145
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200146 r = hdmi_runtime_get(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200147 if (r)
148 goto err_runtime_get;
149
150 /* Make selection of HDMI in DSS */
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200151 dss_select_hdmi_venc_clk_source(hdmi->dss, DSS_HDMI_M_PCLK);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200152
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200153 hdmi->core_enabled = true;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200154
155 return 0;
156
157err_runtime_get:
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200158 regulator_disable(hdmi->vdda_reg);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200159
160 return r;
161}
162
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200163static void hdmi_power_off_core(struct omap_hdmi *hdmi)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200164{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200165 hdmi->core_enabled = false;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200166
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200167 hdmi_runtime_put(hdmi);
168 regulator_disable(hdmi->vdda_reg);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200169}
170
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200171static int hdmi_power_on_full(struct omap_hdmi *hdmi)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200172{
173 int r;
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300174 struct videomode *vm;
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300175 struct dss_pll_clock_info hdmi_cinfo = { 0 };
Laurent Pinchartd11e5c82018-02-11 15:07:34 +0200176 unsigned int pc;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200177
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200178 r = hdmi_power_on_core(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200179 if (r)
180 return r;
181
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200182 vm = &hdmi->cfg.vm;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200183
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300184 DSSDBG("hdmi_power_on hactive= %d vactive = %d\n", vm->hactive,
185 vm->vactive);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200186
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300187 pc = vm->pixelclock;
188 if (vm->flags & DISPLAY_FLAGS_DOUBLECLK)
Tomi Valkeinen67d8ffd2016-01-13 18:41:33 +0200189 pc *= 2;
190
Tomi Valkeinenc1077512016-05-18 11:15:21 +0300191 /* DSS_HDMI_TCLK is bitclk / 10 */
192 pc *= 10;
193
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200194 dss_pll_calc_b(&hdmi->pll.pll, clk_get_rate(hdmi->pll.pll.clkin),
Tomi Valkeinenc17dc0e2016-05-18 10:45:20 +0300195 pc, &hdmi_cinfo);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200196
197 /* disable and clear irqs */
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200198 hdmi_wp_clear_irqenable(&hdmi->wp, 0xffffffff);
199 hdmi_wp_set_irqstatus(&hdmi->wp,
200 hdmi_wp_get_irqstatus(&hdmi->wp));
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200201
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200202 r = dss_pll_enable(&hdmi->pll.pll);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200203 if (r) {
Tomi Valkeinenc2fbd062014-10-16 16:01:51 +0300204 DSSERR("Failed to enable PLL\n");
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200205 goto err_pll_enable;
206 }
207
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200208 r = dss_pll_set_config(&hdmi->pll.pll, &hdmi_cinfo);
Tomi Valkeinenc2fbd062014-10-16 16:01:51 +0300209 if (r) {
210 DSSERR("Failed to configure PLL\n");
211 goto err_pll_cfg;
212 }
213
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200214 r = hdmi_phy_configure(&hdmi->phy, hdmi_cinfo.clkdco,
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300215 hdmi_cinfo.clkout[0]);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200216 if (r) {
217 DSSDBG("Failed to start PHY\n");
218 goto err_phy_cfg;
219 }
220
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200221 r = hdmi_wp_set_phy_pwr(&hdmi->wp, HDMI_PHYPWRCMD_LDOON);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200222 if (r)
223 goto err_phy_pwr;
224
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200225 hdmi5_configure(&hdmi->core, &hdmi->wp, &hdmi->cfg);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200226
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200227 /* tv size */
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200228 dss_mgr_set_timings(&hdmi->output, vm);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200229
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200230 r = dss_mgr_enable(&hdmi->output);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200231 if (r)
232 goto err_mgr_enable;
233
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200234 r = hdmi_wp_video_start(&hdmi->wp);
Tomi Valkeinen4e4b53c2015-03-24 15:46:35 +0200235 if (r)
236 goto err_vid_enable;
237
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200238 hdmi_wp_set_irqenable(&hdmi->wp,
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200239 HDMI_IRQ_LINK_CONNECT | HDMI_IRQ_LINK_DISCONNECT);
240
241 return 0;
242
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200243err_vid_enable:
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200244 dss_mgr_disable(&hdmi->output);
Tomi Valkeinen4e4b53c2015-03-24 15:46:35 +0200245err_mgr_enable:
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200246 hdmi_wp_set_phy_pwr(&hdmi->wp, HDMI_PHYPWRCMD_OFF);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200247err_phy_pwr:
248err_phy_cfg:
Tomi Valkeinenc2fbd062014-10-16 16:01:51 +0300249err_pll_cfg:
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200250 dss_pll_disable(&hdmi->pll.pll);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200251err_pll_enable:
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200252 hdmi_power_off_core(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200253 return -EIO;
254}
255
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200256static void hdmi_power_off_full(struct omap_hdmi *hdmi)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200257{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200258 hdmi_wp_clear_irqenable(&hdmi->wp, 0xffffffff);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200259
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200260 hdmi_wp_video_stop(&hdmi->wp);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200261
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200262 dss_mgr_disable(&hdmi->output);
Tomi Valkeinen4e4b53c2015-03-24 15:46:35 +0200263
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200264 hdmi_wp_set_phy_pwr(&hdmi->wp, HDMI_PHYPWRCMD_OFF);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200265
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200266 dss_pll_disable(&hdmi->pll.pll);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200267
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200268 hdmi_power_off_core(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200269}
270
271static int hdmi_display_check_timing(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300272 struct videomode *vm)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200273{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200274 struct omap_hdmi *hdmi = dssdev_to_hdmi(dssdev);
275
276 if (!dispc_mgr_timings_ok(hdmi->dss->dispc, dssdev->dispc_channel, vm))
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200277 return -EINVAL;
278
279 return 0;
280}
281
282static void hdmi_display_set_timing(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300283 struct videomode *vm)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200284{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200285 struct omap_hdmi *hdmi = dssdev_to_hdmi(dssdev);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200286
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200287 mutex_lock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200288
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200289 hdmi->cfg.vm = *vm;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200290
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200291 dispc_set_tv_pclk(hdmi->dss->dispc, vm->pixelclock);
292
293 mutex_unlock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200294}
295
296static void hdmi_display_get_timings(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300297 struct videomode *vm)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200298{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200299 struct omap_hdmi *hdmi = dssdev_to_hdmi(dssdev);
300
301 *vm = hdmi->cfg.vm;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200302}
303
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200304static int hdmi_dump_regs(struct seq_file *s, void *p)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200305{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200306 struct omap_hdmi *hdmi = s->private;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200307
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200308 mutex_lock(&hdmi->lock);
309
310 if (hdmi_runtime_get(hdmi)) {
311 mutex_unlock(&hdmi->lock);
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200312 return 0;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200313 }
314
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200315 hdmi_wp_dump(&hdmi->wp, s);
316 hdmi_pll_dump(&hdmi->pll, s);
317 hdmi_phy_dump(&hdmi->phy, s);
318 hdmi5_core_dump(&hdmi->core, s);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200319
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200320 hdmi_runtime_put(hdmi);
321 mutex_unlock(&hdmi->lock);
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200322 return 0;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200323}
324
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200325static int read_edid(struct omap_hdmi *hdmi, u8 *buf, int len)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200326{
327 int r;
328 int idlemode;
329
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200330 mutex_lock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200331
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200332 r = hdmi_runtime_get(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200333 BUG_ON(r);
334
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200335 idlemode = REG_GET(hdmi->wp.base, HDMI_WP_SYSCONFIG, 3, 2);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200336 /* No-idle mode */
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200337 REG_FLD_MOD(hdmi->wp.base, HDMI_WP_SYSCONFIG, 1, 3, 2);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200338
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200339 r = hdmi5_read_edid(&hdmi->core, buf, len);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200340
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200341 REG_FLD_MOD(hdmi->wp.base, HDMI_WP_SYSCONFIG, idlemode, 3, 2);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200342
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200343 hdmi_runtime_put(hdmi);
344 mutex_unlock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200345
346 return r;
347}
348
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300349static void hdmi_start_audio_stream(struct omap_hdmi *hd)
350{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200351 REG_FLD_MOD(hd->wp.base, HDMI_WP_SYSCONFIG, 1, 3, 2);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300352 hdmi_wp_audio_enable(&hd->wp, true);
353 hdmi_wp_audio_core_req_enable(&hd->wp, true);
354}
355
356static void hdmi_stop_audio_stream(struct omap_hdmi *hd)
357{
358 hdmi_wp_audio_core_req_enable(&hd->wp, false);
359 hdmi_wp_audio_enable(&hd->wp, false);
360 REG_FLD_MOD(hd->wp.base, HDMI_WP_SYSCONFIG, hd->wp_idlemode, 3, 2);
361}
362
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200363static int hdmi_display_enable(struct omap_dss_device *dssdev)
364{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200365 struct omap_hdmi *hdmi = dssdev_to_hdmi(dssdev);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300366 unsigned long flags;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200367 int r = 0;
368
369 DSSDBG("ENTER hdmi_display_enable\n");
370
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200371 mutex_lock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200372
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200373 if (!dssdev->dispc_channel_connected) {
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200374 DSSERR("failed to enable display: no output/manager\n");
375 r = -ENODEV;
376 goto err0;
377 }
378
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200379 r = hdmi_power_on_full(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200380 if (r) {
381 DSSERR("failed to power on device\n");
382 goto err0;
383 }
384
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200385 if (hdmi->audio_configured) {
386 r = hdmi5_audio_config(&hdmi->core, &hdmi->wp,
387 &hdmi->audio_config,
388 hdmi->cfg.vm.pixelclock);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300389 if (r) {
390 DSSERR("Error restoring audio configuration: %d", r);
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200391 hdmi->audio_abort_cb(&hdmi->pdev->dev);
392 hdmi->audio_configured = false;
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300393 }
394 }
395
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200396 spin_lock_irqsave(&hdmi->audio_playing_lock, flags);
397 if (hdmi->audio_configured && hdmi->audio_playing)
398 hdmi_start_audio_stream(hdmi);
399 hdmi->display_enabled = true;
400 spin_unlock_irqrestore(&hdmi->audio_playing_lock, flags);
Jyri Sarha45302d72014-05-23 16:20:46 +0300401
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200402 mutex_unlock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200403 return 0;
404
405err0:
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200406 mutex_unlock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200407 return r;
408}
409
410static void hdmi_display_disable(struct omap_dss_device *dssdev)
411{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200412 struct omap_hdmi *hdmi = dssdev_to_hdmi(dssdev);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300413 unsigned long flags;
414
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200415 DSSDBG("Enter hdmi_display_disable\n");
416
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200417 mutex_lock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200418
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200419 spin_lock_irqsave(&hdmi->audio_playing_lock, flags);
420 hdmi_stop_audio_stream(hdmi);
421 hdmi->display_enabled = false;
422 spin_unlock_irqrestore(&hdmi->audio_playing_lock, flags);
Jyri Sarha45302d72014-05-23 16:20:46 +0300423
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200424 hdmi_power_off_full(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200425
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200426 mutex_unlock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200427}
428
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200429static int hdmi_core_enable(struct omap_hdmi *hdmi)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200430{
431 int r = 0;
432
433 DSSDBG("ENTER omapdss_hdmi_core_enable\n");
434
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200435 mutex_lock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200436
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200437 r = hdmi_power_on_core(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200438 if (r) {
439 DSSERR("failed to power on device\n");
440 goto err0;
441 }
442
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200443 mutex_unlock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200444 return 0;
445
446err0:
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200447 mutex_unlock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200448 return r;
449}
450
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200451static void hdmi_core_disable(struct omap_hdmi *hdmi)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200452{
453 DSSDBG("Enter omapdss_hdmi_core_disable\n");
454
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200455 mutex_lock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200456
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200457 hdmi_power_off_core(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200458
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200459 mutex_unlock(&hdmi->lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200460}
461
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200462static int hdmi_connect(struct omap_dss_device *dssdev,
463 struct omap_dss_device *dst)
464{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200465 struct omap_hdmi *hdmi = dssdev_to_hdmi(dssdev);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200466 int r;
467
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200468 r = hdmi_init_regulator(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200469 if (r)
470 return r;
471
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200472 r = dss_mgr_connect(&hdmi->output, dssdev);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200473 if (r)
474 return r;
475
476 r = omapdss_output_set_device(dssdev, dst);
477 if (r) {
478 DSSERR("failed to connect output to new device: %s\n",
479 dst->name);
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200480 dss_mgr_disconnect(&hdmi->output, dssdev);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200481 return r;
482 }
483
484 return 0;
485}
486
487static void hdmi_disconnect(struct omap_dss_device *dssdev,
488 struct omap_dss_device *dst)
489{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200490 struct omap_hdmi *hdmi = dssdev_to_hdmi(dssdev);
491
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200492 WARN_ON(dst != dssdev->dst);
493
494 if (dst != dssdev->dst)
495 return;
496
497 omapdss_output_unset_device(dssdev);
498
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200499 dss_mgr_disconnect(&hdmi->output, dssdev);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200500}
501
502static int hdmi_read_edid(struct omap_dss_device *dssdev,
503 u8 *edid, int len)
504{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200505 struct omap_hdmi *hdmi = dssdev_to_hdmi(dssdev);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200506 bool need_enable;
507 int r;
508
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200509 need_enable = hdmi->core_enabled == false;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200510
511 if (need_enable) {
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200512 r = hdmi_core_enable(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200513 if (r)
514 return r;
515 }
516
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200517 r = read_edid(hdmi, edid, len);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200518
519 if (need_enable)
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200520 hdmi_core_disable(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200521
522 return r;
523}
524
Tomi Valkeinen769dcb12014-06-18 14:21:55 +0300525static int hdmi_set_infoframe(struct omap_dss_device *dssdev,
526 const struct hdmi_avi_infoframe *avi)
527{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200528 struct omap_hdmi *hdmi = dssdev_to_hdmi(dssdev);
529
530 hdmi->cfg.infoframe = *avi;
Tomi Valkeinen769dcb12014-06-18 14:21:55 +0300531 return 0;
532}
533
534static int hdmi_set_hdmi_mode(struct omap_dss_device *dssdev,
535 bool hdmi_mode)
536{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200537 struct omap_hdmi *hdmi = dssdev_to_hdmi(dssdev);
538
539 hdmi->cfg.hdmi_dvi_mode = hdmi_mode ? HDMI_HDMI : HDMI_DVI;
Tomi Valkeinen769dcb12014-06-18 14:21:55 +0300540 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
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200559static void hdmi_init_output(struct omap_hdmi *hdmi)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200560{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200561 struct omap_dss_device *out = &hdmi->output;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200562
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200563 out->dev = &hdmi->pdev->dev;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200564 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
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200574static void hdmi_uninit_output(struct omap_hdmi *hdmi)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200575{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200576 struct omap_dss_device *out = &hdmi->output;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200577
578 omapdss_unregister_output(out);
579}
580
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200581static int hdmi_probe_of(struct omap_hdmi *hdmi)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200582{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200583 struct platform_device *pdev = hdmi->pdev;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200584 struct device_node *node = pdev->dev.of_node;
585 struct device_node *ep;
586 int r;
587
Rob Herring09bffa62017-03-22 08:26:08 -0500588 ep = of_graph_get_endpoint_by_regs(node, 0, 0);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200589 if (!ep)
590 return 0;
591
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200592 r = hdmi_parse_lanes_of(pdev, ep, &hdmi->phy);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200593 if (r)
594 goto err;
595
596 of_node_put(ep);
597 return 0;
598
599err:
600 of_node_put(ep);
601 return r;
602}
603
Jyri Sarha45302d72014-05-23 16:20:46 +0300604/* Audio callbacks */
605static int hdmi_audio_startup(struct device *dev,
606 void (*abort_cb)(struct device *dev))
607{
608 struct omap_hdmi *hd = dev_get_drvdata(dev);
Jyri Sarha45302d72014-05-23 16:20:46 +0300609
610 mutex_lock(&hd->lock);
611
Jyri Sarhac1899cb2017-03-16 12:05:04 +0200612 WARN_ON(hd->audio_abort_cb != NULL);
Jyri Sarha45302d72014-05-23 16:20:46 +0300613
614 hd->audio_abort_cb = abort_cb;
615
Jyri Sarha45302d72014-05-23 16:20:46 +0300616 mutex_unlock(&hd->lock);
617
Jyri Sarhac1899cb2017-03-16 12:05:04 +0200618 return 0;
Jyri Sarha45302d72014-05-23 16:20:46 +0300619}
620
621static int hdmi_audio_shutdown(struct device *dev)
622{
623 struct omap_hdmi *hd = dev_get_drvdata(dev);
624
625 mutex_lock(&hd->lock);
626 hd->audio_abort_cb = NULL;
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300627 hd->audio_configured = false;
628 hd->audio_playing = false;
Jyri Sarha45302d72014-05-23 16:20:46 +0300629 mutex_unlock(&hd->lock);
630
631 return 0;
632}
633
634static int hdmi_audio_start(struct device *dev)
635{
636 struct omap_hdmi *hd = dev_get_drvdata(dev);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300637 unsigned long flags;
Jyri Sarha45302d72014-05-23 16:20:46 +0300638
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300639 spin_lock_irqsave(&hd->audio_playing_lock, flags);
Jyri Sarha2d7639b2014-10-23 13:07:05 +0300640
Jyri Sarhac1899cb2017-03-16 12:05:04 +0200641 if (hd->display_enabled) {
642 if (!hdmi_mode_has_audio(&hd->cfg))
643 DSSERR("%s: Video mode does not support audio\n",
644 __func__);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300645 hdmi_start_audio_stream(hd);
Jyri Sarhac1899cb2017-03-16 12:05:04 +0200646 }
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300647 hd->audio_playing = true;
Jyri Sarha45302d72014-05-23 16:20:46 +0300648
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300649 spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
Jyri Sarha45302d72014-05-23 16:20:46 +0300650 return 0;
651}
652
653static void hdmi_audio_stop(struct device *dev)
654{
655 struct omap_hdmi *hd = dev_get_drvdata(dev);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300656 unsigned long flags;
Jyri Sarha45302d72014-05-23 16:20:46 +0300657
Jyri Sarhac1899cb2017-03-16 12:05:04 +0200658 if (!hdmi_mode_has_audio(&hd->cfg))
659 DSSERR("%s: Video mode does not support audio\n", __func__);
Jyri Sarha45302d72014-05-23 16:20:46 +0300660
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300661 spin_lock_irqsave(&hd->audio_playing_lock, flags);
Jyri Sarha2d7639b2014-10-23 13:07:05 +0300662
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300663 if (hd->display_enabled)
664 hdmi_stop_audio_stream(hd);
665 hd->audio_playing = false;
666
667 spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
Jyri Sarha45302d72014-05-23 16:20:46 +0300668}
669
670static int hdmi_audio_config(struct device *dev,
671 struct omap_dss_audio *dss_audio)
672{
673 struct omap_hdmi *hd = dev_get_drvdata(dev);
674 int ret;
675
676 mutex_lock(&hd->lock);
677
Jyri Sarhac1899cb2017-03-16 12:05:04 +0200678 if (hd->display_enabled) {
679 ret = hdmi5_audio_config(&hd->core, &hd->wp, dss_audio,
680 hd->cfg.vm.pixelclock);
681 if (ret)
682 goto out;
Jyri Sarha45302d72014-05-23 16:20:46 +0300683 }
684
Jyri Sarhac1899cb2017-03-16 12:05:04 +0200685 hd->audio_configured = true;
686 hd->audio_config = *dss_audio;
Jyri Sarha45302d72014-05-23 16:20:46 +0300687out:
688 mutex_unlock(&hd->lock);
689
690 return ret;
691}
692
693static const struct omap_hdmi_audio_ops hdmi_audio_ops = {
694 .audio_startup = hdmi_audio_startup,
695 .audio_shutdown = hdmi_audio_shutdown,
696 .audio_start = hdmi_audio_start,
697 .audio_stop = hdmi_audio_stop,
698 .audio_config = hdmi_audio_config,
699};
700
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200701static int hdmi_audio_register(struct omap_hdmi *hdmi)
Jyri Sarha45302d72014-05-23 16:20:46 +0300702{
703 struct omap_hdmi_audio_pdata pdata = {
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200704 .dev = &hdmi->pdev->dev,
Laurent Pinchartd20fa5a2017-08-11 16:49:04 +0300705 .version = 5,
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200706 .audio_dma_addr = hdmi_wp_get_audio_dma_addr(&hdmi->wp),
Jyri Sarha45302d72014-05-23 16:20:46 +0300707 .ops = &hdmi_audio_ops,
708 };
709
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200710 hdmi->audio_pdev = platform_device_register_data(
711 &hdmi->pdev->dev, "omap-hdmi-audio", PLATFORM_DEVID_AUTO,
Jyri Sarha45302d72014-05-23 16:20:46 +0300712 &pdata, sizeof(pdata));
713
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200714 if (IS_ERR(hdmi->audio_pdev))
715 return PTR_ERR(hdmi->audio_pdev);
Jyri Sarha45302d72014-05-23 16:20:46 +0300716
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200717 hdmi_runtime_get(hdmi);
718 hdmi->wp_idlemode =
719 REG_GET(hdmi->wp.base, HDMI_WP_SYSCONFIG, 3, 2);
720 hdmi_runtime_put(hdmi);
Jyri Sarha8a9d46262015-08-28 17:21:46 +0300721
Jyri Sarha45302d72014-05-23 16:20:46 +0300722 return 0;
723}
724
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200725/* HDMI HW IP initialisation */
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300726static int hdmi5_bind(struct device *dev, struct device *master, void *data)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200727{
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300728 struct platform_device *pdev = to_platform_device(dev);
Laurent Pinchart7b295252018-02-13 14:00:21 +0200729 struct dss_device *dss = dss_get_device(master);
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200730 struct omap_hdmi *hdmi;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200731 int r;
732 int irq;
733
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200734 hdmi = kzalloc(sizeof(*hdmi), GFP_KERNEL);
735 if (!hdmi)
736 return -ENOMEM;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200737
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200738 hdmi->pdev = pdev;
739 hdmi->dss = dss;
740 dev_set_drvdata(&pdev->dev, hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200741
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200742 mutex_init(&hdmi->lock);
743 spin_lock_init(&hdmi->audio_playing_lock);
744
745 r = hdmi_probe_of(hdmi);
Laurent Pinchart1dff2122017-05-07 00:42:26 +0300746 if (r)
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200747 goto err_free;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200748
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200749 r = hdmi_wp_init(pdev, &hdmi->wp, 5);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200750 if (r)
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200751 goto err_free;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200752
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200753 r = hdmi_pll_init(dss, pdev, &hdmi->pll, &hdmi->wp);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200754 if (r)
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200755 goto err_free;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200756
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200757 r = hdmi_phy_init(pdev, &hdmi->phy, 5);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200758 if (r)
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200759 goto err_pll;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200760
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200761 r = hdmi5_core_init(pdev, &hdmi->core);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200762 if (r)
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200763 goto err_pll;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200764
765 irq = platform_get_irq(pdev, 0);
766 if (irq < 0) {
767 DSSERR("platform_get_irq failed\n");
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300768 r = -ENODEV;
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200769 goto err_pll;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200770 }
771
772 r = devm_request_threaded_irq(&pdev->dev, irq,
773 NULL, hdmi_irq_handler,
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200774 IRQF_ONESHOT, "OMAP HDMI", hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200775 if (r) {
776 DSSERR("HDMI IRQ request failed\n");
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200777 goto err_pll;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200778 }
779
780 pm_runtime_enable(&pdev->dev);
781
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200782 hdmi_init_output(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200783
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200784 r = hdmi_audio_register(hdmi);
Jyri Sarha45302d72014-05-23 16:20:46 +0300785 if (r) {
786 DSSERR("Registering HDMI audio failed %d\n", r);
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200787 hdmi_uninit_output(hdmi);
Jyri Sarha45302d72014-05-23 16:20:46 +0300788 pm_runtime_disable(&pdev->dev);
789 return r;
790 }
791
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200792 hdmi->debugfs = dss_debugfs_create_file(dss, "hdmi", hdmi_dump_regs,
793 hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200794
795 return 0;
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200796
797err_pll:
798 hdmi_pll_uninit(&hdmi->pll);
799err_free:
800 kfree(hdmi);
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300801 return r;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200802}
803
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300804static void hdmi5_unbind(struct device *dev, struct device *master, void *data)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200805{
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200806 struct omap_hdmi *hdmi = dev_get_drvdata(dev);
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300807
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200808 dss_debugfs_remove_file(hdmi->debugfs);
Laurent Pinchartf33656e2018-02-13 14:00:29 +0200809
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200810 if (hdmi->audio_pdev)
811 platform_device_unregister(hdmi->audio_pdev);
Jyri Sarha45302d72014-05-23 16:20:46 +0300812
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200813 hdmi_uninit_output(hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200814
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200815 hdmi_pll_uninit(&hdmi->pll);
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300816
Laurent Pinchartc44991c2018-02-13 14:00:46 +0200817 pm_runtime_disable(dev);
818
819 kfree(hdmi);
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300820}
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200821
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300822static const struct component_ops hdmi5_component_ops = {
823 .bind = hdmi5_bind,
824 .unbind = hdmi5_unbind,
825};
826
827static int hdmi5_probe(struct platform_device *pdev)
828{
829 return component_add(&pdev->dev, &hdmi5_component_ops);
830}
831
832static int hdmi5_remove(struct platform_device *pdev)
833{
834 component_del(&pdev->dev, &hdmi5_component_ops);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200835 return 0;
836}
837
838static int hdmi_runtime_suspend(struct device *dev)
839{
Laurent Pinchart50638ae2018-02-13 14:00:42 +0200840 struct omap_hdmi *hdmi = dev_get_drvdata(dev);
841
842 dispc_runtime_put(hdmi->dss->dispc);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200843
844 return 0;
845}
846
847static int hdmi_runtime_resume(struct device *dev)
848{
Laurent Pinchart50638ae2018-02-13 14:00:42 +0200849 struct omap_hdmi *hdmi = dev_get_drvdata(dev);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200850 int r;
851
Laurent Pinchart50638ae2018-02-13 14:00:42 +0200852 r = dispc_runtime_get(hdmi->dss->dispc);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200853 if (r < 0)
854 return r;
855
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200856 return 0;
857}
858
859static const struct dev_pm_ops hdmi_pm_ops = {
860 .runtime_suspend = hdmi_runtime_suspend,
861 .runtime_resume = hdmi_runtime_resume,
862};
863
864static const struct of_device_id hdmi_of_match[] = {
865 { .compatible = "ti,omap5-hdmi", },
Tomi Valkeinenadb5ff82014-12-31 11:26:18 +0200866 { .compatible = "ti,dra7-hdmi", },
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200867 {},
868};
869
Andrew F. Davisd66c36a2017-12-05 14:29:32 -0600870struct platform_driver omapdss_hdmi5hw_driver = {
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300871 .probe = hdmi5_probe,
872 .remove = hdmi5_remove,
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200873 .driver = {
874 .name = "omapdss_hdmi5",
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200875 .pm = &hdmi_pm_ops,
876 .of_match_table = hdmi_of_match,
Tomi Valkeinen422ccbd2014-10-16 09:54:25 +0300877 .suppress_bind_attrs = true,
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200878 },
879};