GNU Linux-libre 4.9.337-gnu1
[releases.git] / drivers / video / fbdev / omap2 / omapfb / dss / hdmi4.c
1 /*
2  * HDMI interface DSS driver for TI's OMAP4 family of SoCs.
3  * 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>
30 #include <linux/platform_device.h>
31 #include <linux/pm_runtime.h>
32 #include <linux/clk.h>
33 #include <linux/gpio.h>
34 #include <linux/regulator/consumer.h>
35 #include <linux/component.h>
36 #include <video/omapfb_dss.h>
37 #include <sound/omap-hdmi-audio.h>
38
39 #include "hdmi4_core.h"
40 #include "dss.h"
41 #include "dss_features.h"
42 #include "hdmi.h"
43
44 static struct omap_hdmi hdmi;
45
46 static int hdmi_runtime_get(void)
47 {
48         int r;
49
50         DSSDBG("hdmi_runtime_get\n");
51
52         r = pm_runtime_get_sync(&hdmi.pdev->dev);
53         if (WARN_ON(r < 0)) {
54                 pm_runtime_put_sync(&hdmi.pdev->dev);
55                 return r;
56         }
57
58         return 0;
59 }
60
61 static void hdmi_runtime_put(void)
62 {
63         int r;
64
65         DSSDBG("hdmi_runtime_put\n");
66
67         r = pm_runtime_put_sync(&hdmi.pdev->dev);
68         WARN_ON(r < 0 && r != -ENOSYS);
69 }
70
71 static irqreturn_t hdmi_irq_handler(int irq, void *data)
72 {
73         struct hdmi_wp_data *wp = data;
74         u32 irqstatus;
75
76         irqstatus = hdmi_wp_get_irqstatus(wp);
77         hdmi_wp_set_irqstatus(wp, irqstatus);
78
79         if ((irqstatus & HDMI_IRQ_LINK_CONNECT) &&
80                         irqstatus & HDMI_IRQ_LINK_DISCONNECT) {
81                 /*
82                  * If we get both connect and disconnect interrupts at the same
83                  * time, turn off the PHY, clear interrupts, and restart, which
84                  * raises connect interrupt if a cable is connected, or nothing
85                  * if cable is not connected.
86                  */
87                 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_OFF);
88
89                 hdmi_wp_set_irqstatus(wp, HDMI_IRQ_LINK_CONNECT |
90                                 HDMI_IRQ_LINK_DISCONNECT);
91
92                 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON);
93         } else if (irqstatus & HDMI_IRQ_LINK_CONNECT) {
94                 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_TXON);
95         } else if (irqstatus & HDMI_IRQ_LINK_DISCONNECT) {
96                 hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON);
97         }
98
99         return IRQ_HANDLED;
100 }
101
102 static int hdmi_init_regulator(void)
103 {
104         struct regulator *reg;
105
106         if (hdmi.vdda_reg != NULL)
107                 return 0;
108
109         reg = devm_regulator_get(&hdmi.pdev->dev, "vdda");
110
111         if (IS_ERR(reg)) {
112                 if (PTR_ERR(reg) != -EPROBE_DEFER)
113                         DSSERR("can't get VDDA regulator\n");
114                 return PTR_ERR(reg);
115         }
116
117         hdmi.vdda_reg = reg;
118
119         return 0;
120 }
121
122 static int hdmi_power_on_core(struct omap_dss_device *dssdev)
123 {
124         int r;
125
126         r = regulator_enable(hdmi.vdda_reg);
127         if (r)
128                 return r;
129
130         r = hdmi_runtime_get();
131         if (r)
132                 goto err_runtime_get;
133
134         /* Make selection of HDMI in DSS */
135         dss_select_hdmi_venc_clk_source(DSS_HDMI_M_PCLK);
136
137         hdmi.core_enabled = true;
138
139         return 0;
140
141 err_runtime_get:
142         regulator_disable(hdmi.vdda_reg);
143
144         return r;
145 }
146
147 static void hdmi_power_off_core(struct omap_dss_device *dssdev)
148 {
149         hdmi.core_enabled = false;
150
151         hdmi_runtime_put();
152         regulator_disable(hdmi.vdda_reg);
153 }
154
155 static int hdmi_power_on_full(struct omap_dss_device *dssdev)
156 {
157         int r;
158         struct omap_video_timings *p;
159         struct omap_overlay_manager *mgr = hdmi.output.manager;
160         struct hdmi_wp_data *wp = &hdmi.wp;
161         struct dss_pll_clock_info hdmi_cinfo = { 0 };
162
163         r = hdmi_power_on_core(dssdev);
164         if (r)
165                 return r;
166
167         /* disable and clear irqs */
168         hdmi_wp_clear_irqenable(wp, 0xffffffff);
169         hdmi_wp_set_irqstatus(wp, 0xffffffff);
170
171         p = &hdmi.cfg.timings;
172
173         DSSDBG("hdmi_power_on x_res= %d y_res = %d\n", p->x_res, p->y_res);
174
175         hdmi_pll_compute(&hdmi.pll, p->pixelclock, &hdmi_cinfo);
176
177         r = dss_pll_enable(&hdmi.pll.pll);
178         if (r) {
179                 DSSERR("Failed to enable PLL\n");
180                 goto err_pll_enable;
181         }
182
183         r = dss_pll_set_config(&hdmi.pll.pll, &hdmi_cinfo);
184         if (r) {
185                 DSSERR("Failed to configure PLL\n");
186                 goto err_pll_cfg;
187         }
188
189         r = hdmi_phy_configure(&hdmi.phy, hdmi_cinfo.clkdco,
190                 hdmi_cinfo.clkout[0]);
191         if (r) {
192                 DSSDBG("Failed to configure PHY\n");
193                 goto err_phy_cfg;
194         }
195
196         r = hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON);
197         if (r)
198                 goto err_phy_pwr;
199
200         hdmi4_configure(&hdmi.core, &hdmi.wp, &hdmi.cfg);
201
202         /* bypass TV gamma table */
203         dispc_enable_gamma_table(0);
204
205         /* tv size */
206         dss_mgr_set_timings(mgr, p);
207
208         r = hdmi_wp_video_start(&hdmi.wp);
209         if (r)
210                 goto err_vid_enable;
211
212         r = dss_mgr_enable(mgr);
213         if (r)
214                 goto err_mgr_enable;
215
216         hdmi_wp_set_irqenable(wp,
217                 HDMI_IRQ_LINK_CONNECT | HDMI_IRQ_LINK_DISCONNECT);
218
219         return 0;
220
221 err_mgr_enable:
222         hdmi_wp_video_stop(&hdmi.wp);
223 err_vid_enable:
224         hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);
225 err_phy_pwr:
226 err_phy_cfg:
227 err_pll_cfg:
228         dss_pll_disable(&hdmi.pll.pll);
229 err_pll_enable:
230         hdmi_power_off_core(dssdev);
231         return -EIO;
232 }
233
234 static void hdmi_power_off_full(struct omap_dss_device *dssdev)
235 {
236         struct omap_overlay_manager *mgr = hdmi.output.manager;
237
238         hdmi_wp_clear_irqenable(&hdmi.wp, 0xffffffff);
239
240         dss_mgr_disable(mgr);
241
242         hdmi_wp_video_stop(&hdmi.wp);
243
244         hdmi_wp_set_phy_pwr(&hdmi.wp, HDMI_PHYPWRCMD_OFF);
245
246         dss_pll_disable(&hdmi.pll.pll);
247
248         hdmi_power_off_core(dssdev);
249 }
250
251 static int hdmi_display_check_timing(struct omap_dss_device *dssdev,
252                                         struct omap_video_timings *timings)
253 {
254         struct omap_dss_device *out = &hdmi.output;
255
256         if (!dispc_mgr_timings_ok(out->dispc_channel, timings))
257                 return -EINVAL;
258
259         return 0;
260 }
261
262 static void hdmi_display_set_timing(struct omap_dss_device *dssdev,
263                 struct omap_video_timings *timings)
264 {
265         mutex_lock(&hdmi.lock);
266
267         hdmi.cfg.timings = *timings;
268
269         dispc_set_tv_pclk(timings->pixelclock);
270
271         mutex_unlock(&hdmi.lock);
272 }
273
274 static void hdmi_display_get_timings(struct omap_dss_device *dssdev,
275                 struct omap_video_timings *timings)
276 {
277         *timings = hdmi.cfg.timings;
278 }
279
280 static void hdmi_dump_regs(struct seq_file *s)
281 {
282         mutex_lock(&hdmi.lock);
283
284         if (hdmi_runtime_get()) {
285                 mutex_unlock(&hdmi.lock);
286                 return;
287         }
288
289         hdmi_wp_dump(&hdmi.wp, s);
290         hdmi_pll_dump(&hdmi.pll, s);
291         hdmi_phy_dump(&hdmi.phy, s);
292         hdmi4_core_dump(&hdmi.core, s);
293
294         hdmi_runtime_put();
295         mutex_unlock(&hdmi.lock);
296 }
297
298 static int read_edid(u8 *buf, int len)
299 {
300         int r;
301
302         mutex_lock(&hdmi.lock);
303
304         r = hdmi_runtime_get();
305         BUG_ON(r);
306
307         r = hdmi4_read_edid(&hdmi.core,  buf, len);
308
309         hdmi_runtime_put();
310         mutex_unlock(&hdmi.lock);
311
312         return r;
313 }
314
315 static void hdmi_start_audio_stream(struct omap_hdmi *hd)
316 {
317         hdmi_wp_audio_enable(&hd->wp, true);
318         hdmi4_audio_start(&hd->core, &hd->wp);
319 }
320
321 static void hdmi_stop_audio_stream(struct omap_hdmi *hd)
322 {
323         hdmi4_audio_stop(&hd->core, &hd->wp);
324         hdmi_wp_audio_enable(&hd->wp, false);
325 }
326
327 static int hdmi_display_enable(struct omap_dss_device *dssdev)
328 {
329         struct omap_dss_device *out = &hdmi.output;
330         unsigned long flags;
331         int r = 0;
332
333         DSSDBG("ENTER hdmi_display_enable\n");
334
335         mutex_lock(&hdmi.lock);
336
337         if (out->manager == NULL) {
338                 DSSERR("failed to enable display: no output/manager\n");
339                 r = -ENODEV;
340                 goto err0;
341         }
342
343         r = hdmi_power_on_full(dssdev);
344         if (r) {
345                 DSSERR("failed to power on device\n");
346                 goto err0;
347         }
348
349         if (hdmi.audio_configured) {
350                 r = hdmi4_audio_config(&hdmi.core, &hdmi.wp, &hdmi.audio_config,
351                                        hdmi.cfg.timings.pixelclock);
352                 if (r) {
353                         DSSERR("Error restoring audio configuration: %d", r);
354                         hdmi.audio_abort_cb(&hdmi.pdev->dev);
355                         hdmi.audio_configured = false;
356                 }
357         }
358
359         spin_lock_irqsave(&hdmi.audio_playing_lock, flags);
360         if (hdmi.audio_configured && hdmi.audio_playing)
361                 hdmi_start_audio_stream(&hdmi);
362         hdmi.display_enabled = true;
363         spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags);
364
365         mutex_unlock(&hdmi.lock);
366         return 0;
367
368 err0:
369         mutex_unlock(&hdmi.lock);
370         return r;
371 }
372
373 static void hdmi_display_disable(struct omap_dss_device *dssdev)
374 {
375         unsigned long flags;
376
377         DSSDBG("Enter hdmi_display_disable\n");
378
379         mutex_lock(&hdmi.lock);
380
381         spin_lock_irqsave(&hdmi.audio_playing_lock, flags);
382         hdmi_stop_audio_stream(&hdmi);
383         hdmi.display_enabled = false;
384         spin_unlock_irqrestore(&hdmi.audio_playing_lock, flags);
385
386         hdmi_power_off_full(dssdev);
387
388         mutex_unlock(&hdmi.lock);
389 }
390
391 static int hdmi_core_enable(struct omap_dss_device *dssdev)
392 {
393         int r = 0;
394
395         DSSDBG("ENTER omapdss_hdmi_core_enable\n");
396
397         mutex_lock(&hdmi.lock);
398
399         r = hdmi_power_on_core(dssdev);
400         if (r) {
401                 DSSERR("failed to power on device\n");
402                 goto err0;
403         }
404
405         mutex_unlock(&hdmi.lock);
406         return 0;
407
408 err0:
409         mutex_unlock(&hdmi.lock);
410         return r;
411 }
412
413 static void hdmi_core_disable(struct omap_dss_device *dssdev)
414 {
415         DSSDBG("Enter omapdss_hdmi_core_disable\n");
416
417         mutex_lock(&hdmi.lock);
418
419         hdmi_power_off_core(dssdev);
420
421         mutex_unlock(&hdmi.lock);
422 }
423
424 static int hdmi_connect(struct omap_dss_device *dssdev,
425                 struct omap_dss_device *dst)
426 {
427         struct omap_overlay_manager *mgr;
428         int r;
429
430         r = hdmi_init_regulator();
431         if (r)
432                 return r;
433
434         mgr = omap_dss_get_overlay_manager(dssdev->dispc_channel);
435         if (!mgr)
436                 return -ENODEV;
437
438         r = dss_mgr_connect(mgr, dssdev);
439         if (r)
440                 return r;
441
442         r = omapdss_output_set_device(dssdev, dst);
443         if (r) {
444                 DSSERR("failed to connect output to new device: %s\n",
445                                 dst->name);
446                 dss_mgr_disconnect(mgr, dssdev);
447                 return r;
448         }
449
450         return 0;
451 }
452
453 static void hdmi_disconnect(struct omap_dss_device *dssdev,
454                 struct omap_dss_device *dst)
455 {
456         WARN_ON(dst != dssdev->dst);
457
458         if (dst != dssdev->dst)
459                 return;
460
461         omapdss_output_unset_device(dssdev);
462
463         if (dssdev->manager)
464                 dss_mgr_disconnect(dssdev->manager, dssdev);
465 }
466
467 static int hdmi_read_edid(struct omap_dss_device *dssdev,
468                 u8 *edid, int len)
469 {
470         bool need_enable;
471         int r;
472
473         need_enable = hdmi.core_enabled == false;
474
475         if (need_enable) {
476                 r = hdmi_core_enable(dssdev);
477                 if (r)
478                         return r;
479         }
480
481         r = read_edid(edid, len);
482
483         if (need_enable)
484                 hdmi_core_disable(dssdev);
485
486         return r;
487 }
488
489 static int hdmi_set_infoframe(struct omap_dss_device *dssdev,
490                 const struct hdmi_avi_infoframe *avi)
491 {
492         hdmi.cfg.infoframe = *avi;
493         return 0;
494 }
495
496 static int hdmi_set_hdmi_mode(struct omap_dss_device *dssdev,
497                 bool hdmi_mode)
498 {
499         hdmi.cfg.hdmi_dvi_mode = hdmi_mode ? HDMI_HDMI : HDMI_DVI;
500         return 0;
501 }
502
503 static const struct omapdss_hdmi_ops hdmi_ops = {
504         .connect                = hdmi_connect,
505         .disconnect             = hdmi_disconnect,
506
507         .enable                 = hdmi_display_enable,
508         .disable                = hdmi_display_disable,
509
510         .check_timings          = hdmi_display_check_timing,
511         .set_timings            = hdmi_display_set_timing,
512         .get_timings            = hdmi_display_get_timings,
513
514         .read_edid              = hdmi_read_edid,
515         .set_infoframe          = hdmi_set_infoframe,
516         .set_hdmi_mode          = hdmi_set_hdmi_mode,
517 };
518
519 static void hdmi_init_output(struct platform_device *pdev)
520 {
521         struct omap_dss_device *out = &hdmi.output;
522
523         out->dev = &pdev->dev;
524         out->id = OMAP_DSS_OUTPUT_HDMI;
525         out->output_type = OMAP_DISPLAY_TYPE_HDMI;
526         out->name = "hdmi.0";
527         out->dispc_channel = OMAP_DSS_CHANNEL_DIGIT;
528         out->ops.hdmi = &hdmi_ops;
529         out->owner = THIS_MODULE;
530
531         omapdss_register_output(out);
532 }
533
534 static void hdmi_uninit_output(struct platform_device *pdev)
535 {
536         struct omap_dss_device *out = &hdmi.output;
537
538         omapdss_unregister_output(out);
539 }
540
541 static int hdmi_probe_of(struct platform_device *pdev)
542 {
543         struct device_node *node = pdev->dev.of_node;
544         struct device_node *ep;
545         int r;
546
547         ep = omapdss_of_get_first_endpoint(node);
548         if (!ep)
549                 return 0;
550
551         r = hdmi_parse_lanes_of(pdev, ep, &hdmi.phy);
552         if (r)
553                 goto err;
554
555         of_node_put(ep);
556         return 0;
557
558 err:
559         of_node_put(ep);
560         return r;
561 }
562
563 /* Audio callbacks */
564 static int hdmi_audio_startup(struct device *dev,
565                               void (*abort_cb)(struct device *dev))
566 {
567         struct omap_hdmi *hd = dev_get_drvdata(dev);
568         int ret = 0;
569
570         mutex_lock(&hd->lock);
571
572         if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) {
573                 ret = -EPERM;
574                 goto out;
575         }
576
577         hd->audio_abort_cb = abort_cb;
578
579 out:
580         mutex_unlock(&hd->lock);
581
582         return ret;
583 }
584
585 static int hdmi_audio_shutdown(struct device *dev)
586 {
587         struct omap_hdmi *hd = dev_get_drvdata(dev);
588
589         mutex_lock(&hd->lock);
590         hd->audio_abort_cb = NULL;
591         hd->audio_configured = false;
592         hd->audio_playing = false;
593         mutex_unlock(&hd->lock);
594
595         return 0;
596 }
597
598 static int hdmi_audio_start(struct device *dev)
599 {
600         struct omap_hdmi *hd = dev_get_drvdata(dev);
601         unsigned long flags;
602
603         WARN_ON(!hdmi_mode_has_audio(&hd->cfg));
604
605         spin_lock_irqsave(&hd->audio_playing_lock, flags);
606
607         if (hd->display_enabled)
608                 hdmi_start_audio_stream(hd);
609         hd->audio_playing = true;
610
611         spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
612         return 0;
613 }
614
615 static void hdmi_audio_stop(struct device *dev)
616 {
617         struct omap_hdmi *hd = dev_get_drvdata(dev);
618         unsigned long flags;
619
620         WARN_ON(!hdmi_mode_has_audio(&hd->cfg));
621
622         spin_lock_irqsave(&hd->audio_playing_lock, flags);
623
624         if (hd->display_enabled)
625                 hdmi_stop_audio_stream(hd);
626         hd->audio_playing = false;
627
628         spin_unlock_irqrestore(&hd->audio_playing_lock, flags);
629 }
630
631 static int hdmi_audio_config(struct device *dev,
632                              struct omap_dss_audio *dss_audio)
633 {
634         struct omap_hdmi *hd = dev_get_drvdata(dev);
635         int ret;
636
637         mutex_lock(&hd->lock);
638
639         if (!hdmi_mode_has_audio(&hd->cfg) || !hd->display_enabled) {
640                 ret = -EPERM;
641                 goto out;
642         }
643
644         ret = hdmi4_audio_config(&hd->core, &hd->wp, dss_audio,
645                                  hd->cfg.timings.pixelclock);
646         if (!ret) {
647                 hd->audio_configured = true;
648                 hd->audio_config = *dss_audio;
649         }
650 out:
651         mutex_unlock(&hd->lock);
652
653         return ret;
654 }
655
656 static const struct omap_hdmi_audio_ops hdmi_audio_ops = {
657         .audio_startup = hdmi_audio_startup,
658         .audio_shutdown = hdmi_audio_shutdown,
659         .audio_start = hdmi_audio_start,
660         .audio_stop = hdmi_audio_stop,
661         .audio_config = hdmi_audio_config,
662 };
663
664 static int hdmi_audio_register(struct device *dev)
665 {
666         struct omap_hdmi_audio_pdata pdata = {
667                 .dev = dev,
668                 .dss_version = omapdss_get_version(),
669                 .audio_dma_addr = hdmi_wp_get_audio_dma_addr(&hdmi.wp),
670                 .ops = &hdmi_audio_ops,
671         };
672
673         hdmi.audio_pdev = platform_device_register_data(
674                 dev, "omap-hdmi-audio", PLATFORM_DEVID_AUTO,
675                 &pdata, sizeof(pdata));
676
677         if (IS_ERR(hdmi.audio_pdev))
678                 return PTR_ERR(hdmi.audio_pdev);
679
680         return 0;
681 }
682
683 /* HDMI HW IP initialisation */
684 static int hdmi4_bind(struct device *dev, struct device *master, void *data)
685 {
686         struct platform_device *pdev = to_platform_device(dev);
687         int r;
688         int irq;
689
690         hdmi.pdev = pdev;
691         dev_set_drvdata(&pdev->dev, &hdmi);
692
693         mutex_init(&hdmi.lock);
694         spin_lock_init(&hdmi.audio_playing_lock);
695
696         if (pdev->dev.of_node) {
697                 r = hdmi_probe_of(pdev);
698                 if (r)
699                         return r;
700         }
701
702         r = hdmi_wp_init(pdev, &hdmi.wp);
703         if (r)
704                 return r;
705
706         r = hdmi_pll_init(pdev, &hdmi.pll, &hdmi.wp);
707         if (r)
708                 return r;
709
710         r = hdmi_phy_init(pdev, &hdmi.phy);
711         if (r)
712                 goto err;
713
714         r = hdmi4_core_init(pdev, &hdmi.core);
715         if (r)
716                 goto err;
717
718         irq = platform_get_irq(pdev, 0);
719         if (irq < 0) {
720                 DSSERR("platform_get_irq failed\n");
721                 r = -ENODEV;
722                 goto err;
723         }
724
725         r = devm_request_threaded_irq(&pdev->dev, irq,
726                         NULL, hdmi_irq_handler,
727                         IRQF_ONESHOT, "OMAP HDMI", &hdmi.wp);
728         if (r) {
729                 DSSERR("HDMI IRQ request failed\n");
730                 goto err;
731         }
732
733         pm_runtime_enable(&pdev->dev);
734
735         hdmi_init_output(pdev);
736
737         r = hdmi_audio_register(&pdev->dev);
738         if (r) {
739                 DSSERR("Registering HDMI audio failed\n");
740                 hdmi_uninit_output(pdev);
741                 pm_runtime_disable(&pdev->dev);
742                 return r;
743         }
744
745         dss_debugfs_create_file("hdmi", hdmi_dump_regs);
746
747         return 0;
748 err:
749         hdmi_pll_uninit(&hdmi.pll);
750         return r;
751 }
752
753 static void hdmi4_unbind(struct device *dev, struct device *master, void *data)
754 {
755         struct platform_device *pdev = to_platform_device(dev);
756
757         if (hdmi.audio_pdev)
758                 platform_device_unregister(hdmi.audio_pdev);
759
760         hdmi_uninit_output(pdev);
761
762         hdmi_pll_uninit(&hdmi.pll);
763
764         pm_runtime_disable(&pdev->dev);
765 }
766
767 static const struct component_ops hdmi4_component_ops = {
768         .bind   = hdmi4_bind,
769         .unbind = hdmi4_unbind,
770 };
771
772 static int hdmi4_probe(struct platform_device *pdev)
773 {
774         return component_add(&pdev->dev, &hdmi4_component_ops);
775 }
776
777 static int hdmi4_remove(struct platform_device *pdev)
778 {
779         component_del(&pdev->dev, &hdmi4_component_ops);
780         return 0;
781 }
782
783 static int hdmi_runtime_suspend(struct device *dev)
784 {
785         dispc_runtime_put();
786
787         return 0;
788 }
789
790 static int hdmi_runtime_resume(struct device *dev)
791 {
792         int r;
793
794         r = dispc_runtime_get();
795         if (r < 0)
796                 return r;
797
798         return 0;
799 }
800
801 static const struct dev_pm_ops hdmi_pm_ops = {
802         .runtime_suspend = hdmi_runtime_suspend,
803         .runtime_resume = hdmi_runtime_resume,
804 };
805
806 static const struct of_device_id hdmi_of_match[] = {
807         { .compatible = "ti,omap4-hdmi", },
808         {},
809 };
810
811 static struct platform_driver omapdss_hdmihw_driver = {
812         .probe          = hdmi4_probe,
813         .remove         = hdmi4_remove,
814         .driver         = {
815                 .name   = "omapdss_hdmi",
816                 .pm     = &hdmi_pm_ops,
817                 .of_match_table = hdmi_of_match,
818                 .suppress_bind_attrs = true,
819         },
820 };
821
822 int __init hdmi4_init_platform_driver(void)
823 {
824         return platform_driver_register(&omapdss_hdmihw_driver);
825 }
826
827 void hdmi4_uninit_platform_driver(void)
828 {
829         platform_driver_unregister(&omapdss_hdmihw_driver);
830 }