blob: 435061475c304602e436a6a6c2b320da3ec47ad0 [file] [log] [blame]
Tomi Valkeinenf5bab222014-03-13 12:44:14 +02001/*
2 * HDMI driver for OMAP5
3 *
4 * Copyright (C) 2014 Texas Instruments Incorporated
5 *
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 Valkeinenf5bab222014-03-13 12:44:14 +020041#include <video/omapdss.h>
Jyri Sarha45302d72014-05-23 16:20:46 +030042#include <sound/omap-hdmi-audio.h>
Tomi Valkeinenf5bab222014-03-13 12:44:14 +020043
44#include "hdmi5_core.h"
45#include "dss.h"
46#include "dss_features.h"
47
Jyri Sarha945514b2014-06-27 16:47:00 +030048static struct omap_hdmi hdmi;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +020049
50static int hdmi_runtime_get(void)
51{
52 int r;
53
54 DSSDBG("hdmi_runtime_get\n");
55
56 r = pm_runtime_get_sync(&hdmi.pdev->dev);
57 WARN_ON(r < 0);
58 if (r < 0)
59 return r;
60
61 return 0;
62}
63
64static void hdmi_runtime_put(void)
65{
66 int r;
67
68 DSSDBG("hdmi_runtime_put\n");
69
70 r = pm_runtime_put_sync(&hdmi.pdev->dev);
71 WARN_ON(r < 0 && r != -ENOSYS);
72}
73
74static irqreturn_t hdmi_irq_handler(int irq, void *data)
75{
76 struct hdmi_wp_data *wp = data;
77 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 */
99 v = hdmi_read_reg(hdmi.phy.base, HDMI_TXPHY_PAD_CFG_CTRL);
100 v = FLD_MOD(v, 1, 15, 15); /* FORCE_RXDET_HIGH */
101 v = FLD_MOD(v, 0, 14, 7); /* RXDET_LINE */
102 hdmi_write_reg(hdmi.phy.base, HDMI_TXPHY_PAD_CFG_CTRL, v);
103
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
109 REG_FLD_MOD(hdmi.phy.base, HDMI_TXPHY_PAD_CFG_CTRL, 0, 15, 15);
110
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
120static int hdmi_init_regulator(void)
121{
122 int r;
123 struct regulator *reg;
124
125 if (hdmi.vdda_reg != NULL)
126 return 0;
127
128 reg = devm_regulator_get(&hdmi.pdev->dev, "vdda");
129 if (IS_ERR(reg)) {
130 DSSERR("can't get VDDA regulator\n");
131 return PTR_ERR(reg);
132 }
133
134 if (regulator_can_change_voltage(reg)) {
135 r = regulator_set_voltage(reg, 1800000, 1800000);
136 if (r) {
137 devm_regulator_put(reg);
138 DSSWARN("can't set the regulator voltage\n");
139 return r;
140 }
141 }
142
143 hdmi.vdda_reg = reg;
144
145 return 0;
146}
147
148static int hdmi_power_on_core(struct omap_dss_device *dssdev)
149{
150 int r;
151
152 r = regulator_enable(hdmi.vdda_reg);
153 if (r)
154 return r;
155
156 r = hdmi_runtime_get();
157 if (r)
158 goto err_runtime_get;
159
160 /* Make selection of HDMI in DSS */
161 dss_select_hdmi_venc_clk_source(DSS_HDMI_M_PCLK);
162
163 hdmi.core_enabled = true;
164
165 return 0;
166
167err_runtime_get:
168 regulator_disable(hdmi.vdda_reg);
169
170 return r;
171}
172
173static void hdmi_power_off_core(struct omap_dss_device *dssdev)
174{
175 hdmi.core_enabled = false;
176
177 hdmi_runtime_put();
178 regulator_disable(hdmi.vdda_reg);
179}
180
181static int hdmi_power_on_full(struct omap_dss_device *dssdev)
182{
183 int r;
184 struct omap_video_timings *p;
Tomi Valkeinen86e95f92015-11-05 09:55:01 +0200185 enum omap_channel channel = dssdev->dispc_channel;
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300186 struct dss_pll_clock_info hdmi_cinfo = { 0 };
Tomi Valkeinen67d8ffd2016-01-13 18:41:33 +0200187 unsigned pc;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200188
189 r = hdmi_power_on_core(dssdev);
190 if (r)
191 return r;
192
193 p = &hdmi.cfg.timings;
194
195 DSSDBG("hdmi_power_on x_res= %d y_res = %d\n", p->x_res, p->y_res);
196
Tomi Valkeinen67d8ffd2016-01-13 18:41:33 +0200197 pc = p->pixelclock;
198 if (p->double_pixel)
199 pc *= 2;
200
Tomi Valkeinenc17dc0e2016-05-18 10:45:20 +0300201 dss_pll_calc_b(&hdmi.pll.pll, clk_get_rate(hdmi.pll.pll.clkin),
202 pc, &hdmi_cinfo);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200203
204 /* disable and clear irqs */
205 hdmi_wp_clear_irqenable(&hdmi.wp, 0xffffffff);
206 hdmi_wp_set_irqstatus(&hdmi.wp,
207 hdmi_wp_get_irqstatus(&hdmi.wp));
208
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300209 r = dss_pll_enable(&hdmi.pll.pll);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200210 if (r) {
Tomi Valkeinenc2fbd062014-10-16 16:01:51 +0300211 DSSERR("Failed to enable PLL\n");
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200212 goto err_pll_enable;
213 }
214
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300215 r = dss_pll_set_config(&hdmi.pll.pll, &hdmi_cinfo);
Tomi Valkeinenc2fbd062014-10-16 16:01:51 +0300216 if (r) {
217 DSSERR("Failed to configure PLL\n");
218 goto err_pll_cfg;
219 }
220
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300221 r = hdmi_phy_configure(&hdmi.phy, hdmi_cinfo.clkdco,
222 hdmi_cinfo.clkout[0]);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200223 if (r) {
224 DSSDBG("Failed to start PHY\n");
225 goto err_phy_cfg;
226 }
227
228 r = hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_LDOON);
229 if (r)
230 goto err_phy_pwr;
231
232 hdmi5_configure(&hdmi.core, &hdmi.wp, &hdmi.cfg);
233
234 /* bypass TV gamma table */
235 dispc_enable_gamma_table(0);
236
237 /* tv size */
Tomi Valkeinen86e95f92015-11-05 09:55:01 +0200238 dss_mgr_set_timings(channel, p);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200239
Tomi Valkeinen86e95f92015-11-05 09:55:01 +0200240 r = dss_mgr_enable(channel);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200241 if (r)
242 goto err_mgr_enable;
243
Tomi Valkeinen4e4b53c2015-03-24 15:46:35 +0200244 r = hdmi_wp_video_start(&hdmi.wp);
245 if (r)
246 goto err_vid_enable;
247
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200248 hdmi_wp_set_irqenable(&hdmi.wp,
249 HDMI_IRQ_LINK_CONNECT | HDMI_IRQ_LINK_DISCONNECT);
250
251 return 0;
252
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200253err_vid_enable:
Tomi Valkeinen86e95f92015-11-05 09:55:01 +0200254 dss_mgr_disable(channel);
Tomi Valkeinen4e4b53c2015-03-24 15:46:35 +0200255err_mgr_enable:
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200256 hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);
257err_phy_pwr:
258err_phy_cfg:
Tomi Valkeinenc2fbd062014-10-16 16:01:51 +0300259err_pll_cfg:
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300260 dss_pll_disable(&hdmi.pll.pll);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200261err_pll_enable:
262 hdmi_power_off_core(dssdev);
263 return -EIO;
264}
265
266static void hdmi_power_off_full(struct omap_dss_device *dssdev)
267{
Tomi Valkeinen86e95f92015-11-05 09:55:01 +0200268 enum omap_channel channel = dssdev->dispc_channel;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200269
270 hdmi_wp_clear_irqenable(&hdmi.wp, 0xffffffff);
271
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200272 hdmi_wp_video_stop(&hdmi.wp);
273
Tomi Valkeinen86e95f92015-11-05 09:55:01 +0200274 dss_mgr_disable(channel);
Tomi Valkeinen4e4b53c2015-03-24 15:46:35 +0200275
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200276 hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);
277
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300278 dss_pll_disable(&hdmi.pll.pll);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200279
280 hdmi_power_off_core(dssdev);
281}
282
283static int hdmi_display_check_timing(struct omap_dss_device *dssdev,
284 struct omap_video_timings *timings)
285{
Tomi Valkeinen86e95f92015-11-05 09:55:01 +0200286 if (!dispc_mgr_timings_ok(dssdev->dispc_channel, timings))
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200287 return -EINVAL;
288
289 return 0;
290}
291
292static void hdmi_display_set_timing(struct omap_dss_device *dssdev,
293 struct omap_video_timings *timings)
294{
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200295 mutex_lock(&hdmi.lock);
296
Tomi Valkeinen769dcb12014-06-18 14:21:55 +0300297 hdmi.cfg.timings = *timings;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200298
Tomi Valkeinen769dcb12014-06-18 14:21:55 +0300299 dispc_set_tv_pclk(timings->pixelclock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200300
301 mutex_unlock(&hdmi.lock);
302}
303
304static void hdmi_display_get_timings(struct omap_dss_device *dssdev,
305 struct omap_video_timings *timings)
306{
Tomi Valkeinen769dcb12014-06-18 14:21:55 +0300307 *timings = hdmi.cfg.timings;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200308}
309
310static void hdmi_dump_regs(struct seq_file *s)
311{
312 mutex_lock(&hdmi.lock);
313
314 if (hdmi_runtime_get()) {
315 mutex_unlock(&hdmi.lock);
316 return;
317 }
318
319 hdmi_wp_dump(&hdmi.wp, s);
320 hdmi_pll_dump(&hdmi.pll, s);
321 hdmi_phy_dump(&hdmi.phy, s);
322 hdmi5_core_dump(&hdmi.core, s);
323
324 hdmi_runtime_put();
325 mutex_unlock(&hdmi.lock);
326}
327
328static int read_edid(u8 *buf, int len)
329{
330 int r;
331 int idlemode;
332
333 mutex_lock(&hdmi.lock);
334
335 r = hdmi_runtime_get();
336 BUG_ON(r);
337
338 idlemode = REG_GET(hdmi.wp.base, HDMI_WP_SYSCONFIG, 3, 2);
339 /* No-idle mode */
340 REG_FLD_MOD(hdmi.wp.base, HDMI_WP_SYSCONFIG, 1, 3, 2);
341
342 r = hdmi5_read_edid(&hdmi.core, buf, len);
343
344 REG_FLD_MOD(hdmi.wp.base, HDMI_WP_SYSCONFIG, idlemode, 3, 2);
345
346 hdmi_runtime_put();
347 mutex_unlock(&hdmi.lock);
348
349 return r;
350}
351
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300352static void hdmi_start_audio_stream(struct omap_hdmi *hd)
353{
354 REG_FLD_MOD(hdmi.wp.base, HDMI_WP_SYSCONFIG, 1, 3, 2);
355 hdmi_wp_audio_enable(&hd->wp, true);
356 hdmi_wp_audio_core_req_enable(&hd->wp, true);
357}
358
359static void hdmi_stop_audio_stream(struct omap_hdmi *hd)
360{
361 hdmi_wp_audio_core_req_enable(&hd->wp, false);
362 hdmi_wp_audio_enable(&hd->wp, false);
363 REG_FLD_MOD(hd->wp.base, HDMI_WP_SYSCONFIG, hd->wp_idlemode, 3, 2);
364}
365
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200366static int hdmi_display_enable(struct omap_dss_device *dssdev)
367{
368 struct omap_dss_device *out = &hdmi.output;
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300369 unsigned long flags;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200370 int r = 0;
371
372 DSSDBG("ENTER hdmi_display_enable\n");
373
374 mutex_lock(&hdmi.lock);
375
Tomi Valkeinenf1504ad2015-11-05 09:34:51 +0200376 if (!out->dispc_channel_connected) {
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200377 DSSERR("failed to enable display: no output/manager\n");
378 r = -ENODEV;
379 goto err0;
380 }
381
382 r = hdmi_power_on_full(dssdev);
383 if (r) {
384 DSSERR("failed to power on device\n");
385 goto err0;
386 }
387
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300388 if (hdmi.audio_configured) {
389 r = hdmi5_audio_config(&hdmi.core, &hdmi.wp, &hdmi.audio_config,
390 hdmi.cfg.timings.pixelclock);
391 if (r) {
392 DSSERR("Error restoring audio configuration: %d", r);
393 hdmi.audio_abort_cb(&hdmi.pdev->dev);
394 hdmi.audio_configured = false;
395 }
396 }
397
398 spin_lock_irqsave(&hdmi.audio_playing_lock, flags);
399 if (hdmi.audio_configured && hdmi.audio_playing)
400 hdmi_start_audio_stream(&hdmi);
Jyri Sarha45302d72014-05-23 16:20:46 +0300401 hdmi.display_enabled = true;
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300402 spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags);
Jyri Sarha45302d72014-05-23 16:20:46 +0300403
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200404 mutex_unlock(&hdmi.lock);
405 return 0;
406
407err0:
408 mutex_unlock(&hdmi.lock);
409 return r;
410}
411
412static void hdmi_display_disable(struct omap_dss_device *dssdev)
413{
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300414 unsigned long flags;
415
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200416 DSSDBG("Enter hdmi_display_disable\n");
417
418 mutex_lock(&hdmi.lock);
419
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300420 spin_lock_irqsave(&hdmi.audio_playing_lock, flags);
421 hdmi_stop_audio_stream(&hdmi);
422 hdmi.display_enabled = false;
423 spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags);
Jyri Sarha45302d72014-05-23 16:20:46 +0300424
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200425 hdmi_power_off_full(dssdev);
426
427 mutex_unlock(&hdmi.lock);
428}
429
430static int hdmi_core_enable(struct omap_dss_device *dssdev)
431{
432 int r = 0;
433
434 DSSDBG("ENTER omapdss_hdmi_core_enable\n");
435
436 mutex_lock(&hdmi.lock);
437
438 r = hdmi_power_on_core(dssdev);
439 if (r) {
440 DSSERR("failed to power on device\n");
441 goto err0;
442 }
443
444 mutex_unlock(&hdmi.lock);
445 return 0;
446
447err0:
448 mutex_unlock(&hdmi.lock);
449 return r;
450}
451
452static void hdmi_core_disable(struct omap_dss_device *dssdev)
453{
454 DSSDBG("Enter omapdss_hdmi_core_disable\n");
455
456 mutex_lock(&hdmi.lock);
457
458 hdmi_power_off_core(dssdev);
459
460 mutex_unlock(&hdmi.lock);
461}
462
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200463static int hdmi_connect(struct omap_dss_device *dssdev,
464 struct omap_dss_device *dst)
465{
Tomi Valkeinen86e95f92015-11-05 09:55:01 +0200466 enum omap_channel channel = dssdev->dispc_channel;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200467 int r;
468
469 r = hdmi_init_regulator();
470 if (r)
471 return r;
472
Tomi Valkeinen86e95f92015-11-05 09:55:01 +0200473 r = dss_mgr_connect(channel, dssdev);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200474 if (r)
475 return r;
476
477 r = omapdss_output_set_device(dssdev, dst);
478 if (r) {
479 DSSERR("failed to connect output to new device: %s\n",
480 dst->name);
Tomi Valkeinen86e95f92015-11-05 09:55:01 +0200481 dss_mgr_disconnect(channel, dssdev);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200482 return r;
483 }
484
485 return 0;
486}
487
488static void hdmi_disconnect(struct omap_dss_device *dssdev,
489 struct omap_dss_device *dst)
490{
Tomi Valkeinen86e95f92015-11-05 09:55:01 +0200491 enum omap_channel channel = dssdev->dispc_channel;
492
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200493 WARN_ON(dst != dssdev->dst);
494
495 if (dst != dssdev->dst)
496 return;
497
498 omapdss_output_unset_device(dssdev);
499
Tomi Valkeinen86e95f92015-11-05 09:55:01 +0200500 dss_mgr_disconnect(channel, dssdev);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200501}
502
503static int hdmi_read_edid(struct omap_dss_device *dssdev,
504 u8 *edid, int len)
505{
506 bool need_enable;
507 int r;
508
509 need_enable = hdmi.core_enabled == false;
510
511 if (need_enable) {
512 r = hdmi_core_enable(dssdev);
513 if (r)
514 return r;
515 }
516
517 r = read_edid(edid, len);
518
519 if (need_enable)
520 hdmi_core_disable(dssdev);
521
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{
528 hdmi.cfg.infoframe = *avi;
529 return 0;
530}
531
532static int hdmi_set_hdmi_mode(struct omap_dss_device *dssdev,
533 bool hdmi_mode)
534{
535 hdmi.cfg.hdmi_dvi_mode = hdmi_mode ? HDMI_HDMI : HDMI_DVI;
536 return 0;
537}
538
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200539static const struct omapdss_hdmi_ops hdmi_ops = {
540 .connect = hdmi_connect,
541 .disconnect = hdmi_disconnect,
542
543 .enable = hdmi_display_enable,
544 .disable = hdmi_display_disable,
545
546 .check_timings = hdmi_display_check_timing,
547 .set_timings = hdmi_display_set_timing,
548 .get_timings = hdmi_display_get_timings,
549
550 .read_edid = hdmi_read_edid,
Tomi Valkeinen769dcb12014-06-18 14:21:55 +0300551 .set_infoframe = hdmi_set_infoframe,
552 .set_hdmi_mode = hdmi_set_hdmi_mode,
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200553};
554
555static void hdmi_init_output(struct platform_device *pdev)
556{
557 struct omap_dss_device *out = &hdmi.output;
558
559 out->dev = &pdev->dev;
560 out->id = OMAP_DSS_OUTPUT_HDMI;
561 out->output_type = OMAP_DISPLAY_TYPE_HDMI;
562 out->name = "hdmi.0";
563 out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
564 out->ops.hdmi = &hdmi_ops;
565 out->owner = THIS_MODULE;
566
567 omapdss_register_output(out);
568}
569
Jyri Sarha39c1b7b2014-12-02 14:12:56 +0200570static void hdmi_uninit_output(struct platform_device *pdev)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200571{
572 struct omap_dss_device *out = &hdmi.output;
573
574 omapdss_unregister_output(out);
575}
576
577static int hdmi_probe_of(struct platform_device *pdev)
578{
579 struct device_node *node = pdev->dev.of_node;
580 struct device_node *ep;
581 int r;
582
583 ep = omapdss_of_get_first_endpoint(node);
584 if (!ep)
585 return 0;
586
587 r = hdmi_parse_lanes_of(pdev, ep, &hdmi.phy);
588 if (r)
589 goto err;
590
591 of_node_put(ep);
592 return 0;
593
594err:
595 of_node_put(ep);
596 return r;
597}
598
Jyri Sarha45302d72014-05-23 16:20:46 +0300599/* Audio callbacks */
600static int hdmi_audio_startup(struct device *dev,
601 void (*abort_cb)(struct device *dev))
602{
603 struct omap_hdmi *hd = dev_get_drvdata(dev);
604 int ret = 0;
605
606 mutex_lock(&hd->lock);
607
608 if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) {
609 ret = -EPERM;
610 goto out;
611 }
612
613 hd->audio_abort_cb = abort_cb;
614
615out:
616 mutex_unlock(&hd->lock);
617
618 return ret;
619}
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 Sarha8a9d4622015-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 Sarha8a9d4622015-08-28 17:21:46 +0300637 unsigned long flags;
Jyri Sarha45302d72014-05-23 16:20:46 +0300638
639 WARN_ON(!hdmi_mode_has_audio(&hd->cfg));
Jyri Sarha45302d72014-05-23 16:20:46 +0300640
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300641 spin_lock_irqsave(&hd->audio_playing_lock, flags);
Jyri Sarha2d7639b2014-10-23 13:07:05 +0300642
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300643 if (hd->display_enabled)
644 hdmi_start_audio_stream(hd);
645 hd->audio_playing = true;
Jyri Sarha45302d72014-05-23 16:20:46 +0300646
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300647 spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
Jyri Sarha45302d72014-05-23 16:20:46 +0300648 return 0;
649}
650
651static void hdmi_audio_stop(struct device *dev)
652{
653 struct omap_hdmi *hd = dev_get_drvdata(dev);
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300654 unsigned long flags;
Jyri Sarha45302d72014-05-23 16:20:46 +0300655
656 WARN_ON(!hdmi_mode_has_audio(&hd->cfg));
Jyri Sarha45302d72014-05-23 16:20:46 +0300657
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300658 spin_lock_irqsave(&hd->audio_playing_lock, flags);
Jyri Sarha2d7639b2014-10-23 13:07:05 +0300659
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300660 if (hd->display_enabled)
661 hdmi_stop_audio_stream(hd);
662 hd->audio_playing = false;
663
664 spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
Jyri Sarha45302d72014-05-23 16:20:46 +0300665}
666
667static int hdmi_audio_config(struct device *dev,
668 struct omap_dss_audio *dss_audio)
669{
670 struct omap_hdmi *hd = dev_get_drvdata(dev);
671 int ret;
672
673 mutex_lock(&hd->lock);
674
675 if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) {
676 ret = -EPERM;
677 goto out;
678 }
679
680 ret = hdmi5_audio_config(&hd->core, &hd->wp, dss_audio,
681 hd->cfg.timings.pixelclock);
682
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300683 if (!ret) {
684 hd->audio_configured = true;
685 hd->audio_config = *dss_audio;
686 }
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
701static int hdmi_audio_register(struct device *dev)
702{
703 struct omap_hdmi_audio_pdata pdata = {
704 .dev = dev,
705 .dss_version = omapdss_get_version(),
706 .audio_dma_addr = hdmi_wp_get_audio_dma_addr(&hdmi.wp),
707 .ops = &hdmi_audio_ops,
708 };
709
710 hdmi.audio_pdev = platform_device_register_data(
711 dev, "omap-hdmi-audio", PLATFORM_DEVID_AUTO,
712 &pdata, sizeof(pdata));
713
714 if (IS_ERR(hdmi.audio_pdev))
715 return PTR_ERR(hdmi.audio_pdev);
716
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300717 hdmi_runtime_get();
718 hdmi.wp_idlemode =
719 REG_GET(hdmi.wp.base, HDMI_WP_SYSCONFIG, 3, 2);
720 hdmi_runtime_put();
721
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);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200729 int r;
730 int irq;
731
732 hdmi.pdev = pdev;
Jyri Sarha945514b2014-06-27 16:47:00 +0300733 dev_set_drvdata(&pdev->dev, &hdmi);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200734
735 mutex_init(&hdmi.lock);
Jyri Sarha8a9d4622015-08-28 17:21:46 +0300736 spin_lock_init(&hdmi.audio_playing_lock);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200737
738 if (pdev->dev.of_node) {
739 r = hdmi_probe_of(pdev);
740 if (r)
741 return r;
742 }
743
744 r = hdmi_wp_init(pdev, &hdmi.wp);
745 if (r)
746 return r;
747
Tomi Valkeinen03aafa22014-10-16 15:31:38 +0300748 r = hdmi_pll_init(pdev, &hdmi.pll, &hdmi.wp);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200749 if (r)
750 return r;
751
752 r = hdmi_phy_init(pdev, &hdmi.phy);
753 if (r)
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300754 goto err;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200755
756 r = hdmi5_core_init(pdev, &hdmi.core);
757 if (r)
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300758 goto err;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200759
760 irq = platform_get_irq(pdev, 0);
761 if (irq < 0) {
762 DSSERR("platform_get_irq failed\n");
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300763 r = -ENODEV;
764 goto err;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200765 }
766
767 r = devm_request_threaded_irq(&pdev->dev, irq,
768 NULL, hdmi_irq_handler,
769 IRQF_ONESHOT, "OMAP HDMI", &hdmi.wp);
770 if (r) {
771 DSSERR("HDMI IRQ request failed\n");
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300772 goto err;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200773 }
774
775 pm_runtime_enable(&pdev->dev);
776
777 hdmi_init_output(pdev);
778
Jyri Sarha45302d72014-05-23 16:20:46 +0300779 r = hdmi_audio_register(&pdev->dev);
780 if (r) {
781 DSSERR("Registering HDMI audio failed %d\n", r);
782 hdmi_uninit_output(pdev);
783 pm_runtime_disable(&pdev->dev);
784 return r;
785 }
786
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200787 dss_debugfs_create_file("hdmi", hdmi_dump_regs);
788
789 return 0;
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300790err:
791 hdmi_pll_uninit(&hdmi.pll);
792 return r;
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200793}
794
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300795static void hdmi5_unbind(struct device *dev, struct device *master, void *data)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200796{
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300797 struct platform_device *pdev = to_platform_device(dev);
798
Jyri Sarha45302d72014-05-23 16:20:46 +0300799 if (hdmi.audio_pdev)
800 platform_device_unregister(hdmi.audio_pdev);
801
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200802 hdmi_uninit_output(pdev);
803
Tomi Valkeinenc84c3a52014-10-22 15:02:17 +0300804 hdmi_pll_uninit(&hdmi.pll);
805
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200806 pm_runtime_disable(&pdev->dev);
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300807}
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200808
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300809static const struct component_ops hdmi5_component_ops = {
810 .bind = hdmi5_bind,
811 .unbind = hdmi5_unbind,
812};
813
814static int hdmi5_probe(struct platform_device *pdev)
815{
816 return component_add(&pdev->dev, &hdmi5_component_ops);
817}
818
819static int hdmi5_remove(struct platform_device *pdev)
820{
821 component_del(&pdev->dev, &hdmi5_component_ops);
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200822 return 0;
823}
824
825static int hdmi_runtime_suspend(struct device *dev)
826{
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200827 dispc_runtime_put();
828
829 return 0;
830}
831
832static int hdmi_runtime_resume(struct device *dev)
833{
834 int r;
835
836 r = dispc_runtime_get();
837 if (r < 0)
838 return r;
839
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200840 return 0;
841}
842
843static const struct dev_pm_ops hdmi_pm_ops = {
844 .runtime_suspend = hdmi_runtime_suspend,
845 .runtime_resume = hdmi_runtime_resume,
846};
847
848static const struct of_device_id hdmi_of_match[] = {
849 { .compatible = "ti,omap5-hdmi", },
Tomi Valkeinenadb5ff82014-12-31 11:26:18 +0200850 { .compatible = "ti,dra7-hdmi", },
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200851 {},
852};
853
854static struct platform_driver omapdss_hdmihw_driver = {
Tomi Valkeinen736e60d2015-06-04 15:22:23 +0300855 .probe = hdmi5_probe,
856 .remove = hdmi5_remove,
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200857 .driver = {
858 .name = "omapdss_hdmi5",
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200859 .pm = &hdmi_pm_ops,
860 .of_match_table = hdmi_of_match,
Tomi Valkeinen422ccbd2014-10-16 09:54:25 +0300861 .suppress_bind_attrs = true,
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200862 },
863};
864
865int __init hdmi5_init_platform_driver(void)
866{
867 return platform_driver_register(&omapdss_hdmihw_driver);
868}
869
Tomi Valkeinenede92692015-06-04 14:12:16 +0300870void hdmi5_uninit_platform_driver(void)
Tomi Valkeinenf5bab222014-03-13 12:44:14 +0200871{
872 platform_driver_unregister(&omapdss_hdmihw_driver);
873}