blob: 2867476419dc3ec9de9c18ce7083fb96baf7ead8 [file] [log] [blame]
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +03001/*
2 * HDMI Connector driver
3 *
Andrew F. Davisbb5cdf82017-12-05 14:29:31 -06004 * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +03005 * Author: Tomi Valkeinen <tomi.valkeinen@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
Arnd Bergmannd0196c82016-05-11 18:05:39 +020012#include <linux/gpio/consumer.h>
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +030013#include <linux/slab.h>
14#include <linux/module.h>
15#include <linux/platform_device.h>
Tomi Valkeinen0b8879f2013-07-30 10:37:34 +030016#include <linux/of.h>
Tomi Valkeinen2c75e3c2014-04-17 10:18:58 +030017#include <linux/of_gpio.h>
Peter Ujfalusic9741b42017-06-02 15:26:36 +030018#include <linux/mutex.h>
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +030019
20#include <drm/drm_edid.h>
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +030021
Peter Ujfalusi32043da2016-05-27 14:40:49 +030022#include "../dss/omapdss.h"
23
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +030024static const struct videomode hdmic_default_vm = {
Peter Ujfalusi81899062016-09-22 14:06:46 +030025 .hactive = 640,
Peter Ujfalusifb7f3c42016-09-22 14:06:47 +030026 .vactive = 480,
Tomi Valkeinend8d789412013-04-10 14:12:14 +030027 .pixelclock = 25175000,
Peter Ujfalusi4dc22502016-09-22 14:06:48 +030028 .hsync_len = 96,
Peter Ujfalusi0a30e152016-09-22 14:06:49 +030029 .hfront_porch = 16,
Peter Ujfalusia85f4a82016-09-22 14:06:50 +030030 .hback_porch = 48,
Peter Ujfalusid5bcf0a2016-09-22 14:06:51 +030031 .vsync_len = 2,
Peter Ujfalusi0996c682016-09-22 14:06:52 +030032 .vfront_porch = 11,
Peter Ujfalusi458540c2016-09-22 14:06:53 +030033 .vback_porch = 31,
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +030034
Peter Ujfalusi6b44cd22016-09-22 14:06:57 +030035 .flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +030036};
37
38struct panel_drv_data {
39 struct omap_dss_device dssdev;
40 struct omap_dss_device *in;
Peter Ujfalusic9741b42017-06-02 15:26:36 +030041 void (*hpd_cb)(void *cb_data, enum drm_connector_status status);
42 void *hpd_cb_data;
43 bool hpd_enabled;
44 struct mutex hpd_lock;
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +030045
46 struct device *dev;
47
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +030048 struct videomode vm;
Tomi Valkeinen2c75e3c2014-04-17 10:18:58 +030049
50 int hpd_gpio;
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +030051};
52
53#define to_panel_data(x) container_of(x, struct panel_drv_data, dssdev)
54
55static int hdmic_connect(struct omap_dss_device *dssdev)
56{
57 struct panel_drv_data *ddata = to_panel_data(dssdev);
58 struct omap_dss_device *in = ddata->in;
59 int r;
60
61 dev_dbg(ddata->dev, "connect\n");
62
63 if (omapdss_device_is_connected(dssdev))
64 return 0;
65
66 r = in->ops.hdmi->connect(in, dssdev);
67 if (r)
68 return r;
69
70 return 0;
71}
72
73static void hdmic_disconnect(struct omap_dss_device *dssdev)
74{
75 struct panel_drv_data *ddata = to_panel_data(dssdev);
76 struct omap_dss_device *in = ddata->in;
77
78 dev_dbg(ddata->dev, "disconnect\n");
79
80 if (!omapdss_device_is_connected(dssdev))
81 return;
82
83 in->ops.hdmi->disconnect(in, dssdev);
84}
85
86static int hdmic_enable(struct omap_dss_device *dssdev)
87{
88 struct panel_drv_data *ddata = to_panel_data(dssdev);
89 struct omap_dss_device *in = ddata->in;
90 int r;
91
92 dev_dbg(ddata->dev, "enable\n");
93
94 if (!omapdss_device_is_connected(dssdev))
95 return -ENODEV;
96
97 if (omapdss_device_is_enabled(dssdev))
98 return 0;
99
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300100 in->ops.hdmi->set_timings(in, &ddata->vm);
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300101
102 r = in->ops.hdmi->enable(in);
103 if (r)
104 return r;
105
106 dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;
107
108 return r;
109}
110
111static void hdmic_disable(struct omap_dss_device *dssdev)
112{
113 struct panel_drv_data *ddata = to_panel_data(dssdev);
114 struct omap_dss_device *in = ddata->in;
115
116 dev_dbg(ddata->dev, "disable\n");
117
118 if (!omapdss_device_is_enabled(dssdev))
119 return;
120
121 in->ops.hdmi->disable(in);
122
123 dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
124}
125
126static void hdmic_set_timings(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300127 struct videomode *vm)
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300128{
129 struct panel_drv_data *ddata = to_panel_data(dssdev);
130 struct omap_dss_device *in = ddata->in;
131
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300132 ddata->vm = *vm;
133 dssdev->panel.vm = *vm;
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300134
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300135 in->ops.hdmi->set_timings(in, vm);
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300136}
137
138static void hdmic_get_timings(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300139 struct videomode *vm)
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300140{
141 struct panel_drv_data *ddata = to_panel_data(dssdev);
142
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300143 *vm = ddata->vm;
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300144}
145
146static int hdmic_check_timings(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300147 struct videomode *vm)
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300148{
149 struct panel_drv_data *ddata = to_panel_data(dssdev);
150 struct omap_dss_device *in = ddata->in;
151
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300152 return in->ops.hdmi->check_timings(in, vm);
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300153}
154
155static int hdmic_read_edid(struct omap_dss_device *dssdev,
156 u8 *edid, int len)
157{
158 struct panel_drv_data *ddata = to_panel_data(dssdev);
159 struct omap_dss_device *in = ddata->in;
160
161 return in->ops.hdmi->read_edid(in, edid, len);
162}
163
164static bool hdmic_detect(struct omap_dss_device *dssdev)
165{
166 struct panel_drv_data *ddata = to_panel_data(dssdev);
167 struct omap_dss_device *in = ddata->in;
Hans Verkuil019114e2017-08-17 15:19:57 +0200168 bool connected;
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300169
Tomi Valkeinen2c75e3c2014-04-17 10:18:58 +0300170 if (gpio_is_valid(ddata->hpd_gpio))
Hans Verkuil019114e2017-08-17 15:19:57 +0200171 connected = gpio_get_value_cansleep(ddata->hpd_gpio);
Tomi Valkeinen2c75e3c2014-04-17 10:18:58 +0300172 else
Hans Verkuil019114e2017-08-17 15:19:57 +0200173 connected = in->ops.hdmi->detect(in);
174 if (!connected && in->ops.hdmi->lost_hotplug)
175 in->ops.hdmi->lost_hotplug(in);
176 return connected;
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300177}
178
Peter Ujfalusic9741b42017-06-02 15:26:36 +0300179static int hdmic_register_hpd_cb(struct omap_dss_device *dssdev,
180 void (*cb)(void *cb_data,
181 enum drm_connector_status status),
182 void *cb_data)
183{
184 struct panel_drv_data *ddata = to_panel_data(dssdev);
185 struct omap_dss_device *in = ddata->in;
186
187 if (gpio_is_valid(ddata->hpd_gpio)) {
188 mutex_lock(&ddata->hpd_lock);
189 ddata->hpd_cb = cb;
190 ddata->hpd_cb_data = cb_data;
191 mutex_unlock(&ddata->hpd_lock);
192 return 0;
193 } else if (in->ops.hdmi->register_hpd_cb) {
194 return in->ops.hdmi->register_hpd_cb(in, cb, cb_data);
195 }
196
197 return -ENOTSUPP;
198}
199
200static void hdmic_unregister_hpd_cb(struct omap_dss_device *dssdev)
201{
202 struct panel_drv_data *ddata = to_panel_data(dssdev);
203 struct omap_dss_device *in = ddata->in;
204
205 if (gpio_is_valid(ddata->hpd_gpio)) {
206 mutex_lock(&ddata->hpd_lock);
207 ddata->hpd_cb = NULL;
208 ddata->hpd_cb_data = NULL;
209 mutex_unlock(&ddata->hpd_lock);
210 } else if (in->ops.hdmi->unregister_hpd_cb) {
211 in->ops.hdmi->unregister_hpd_cb(in);
212 }
213}
214
215static void hdmic_enable_hpd(struct omap_dss_device *dssdev)
216{
217 struct panel_drv_data *ddata = to_panel_data(dssdev);
218 struct omap_dss_device *in = ddata->in;
219
220 if (gpio_is_valid(ddata->hpd_gpio)) {
221 mutex_lock(&ddata->hpd_lock);
222 ddata->hpd_enabled = true;
223 mutex_unlock(&ddata->hpd_lock);
224 } else if (in->ops.hdmi->enable_hpd) {
225 in->ops.hdmi->enable_hpd(in);
226 }
227}
228
229static void hdmic_disable_hpd(struct omap_dss_device *dssdev)
230{
231 struct panel_drv_data *ddata = to_panel_data(dssdev);
232 struct omap_dss_device *in = ddata->in;
233
234 if (gpio_is_valid(ddata->hpd_gpio)) {
235 mutex_lock(&ddata->hpd_lock);
236 ddata->hpd_enabled = false;
237 mutex_unlock(&ddata->hpd_lock);
238 } else if (in->ops.hdmi->disable_hpd) {
239 in->ops.hdmi->disable_hpd(in);
240 }
241}
242
Tomi Valkeinen9fb17372014-06-18 12:58:02 +0300243static int hdmic_set_hdmi_mode(struct omap_dss_device *dssdev, bool hdmi_mode)
244{
245 struct panel_drv_data *ddata = to_panel_data(dssdev);
246 struct omap_dss_device *in = ddata->in;
247
248 return in->ops.hdmi->set_hdmi_mode(in, hdmi_mode);
249}
250
251static int hdmic_set_infoframe(struct omap_dss_device *dssdev,
252 const struct hdmi_avi_infoframe *avi)
253{
254 struct panel_drv_data *ddata = to_panel_data(dssdev);
255 struct omap_dss_device *in = ddata->in;
256
257 return in->ops.hdmi->set_infoframe(in, avi);
258}
259
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300260static struct omap_dss_driver hdmic_driver = {
261 .connect = hdmic_connect,
262 .disconnect = hdmic_disconnect,
263
264 .enable = hdmic_enable,
265 .disable = hdmic_disable,
266
267 .set_timings = hdmic_set_timings,
268 .get_timings = hdmic_get_timings,
269 .check_timings = hdmic_check_timings,
270
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300271 .read_edid = hdmic_read_edid,
272 .detect = hdmic_detect,
Peter Ujfalusic9741b42017-06-02 15:26:36 +0300273 .register_hpd_cb = hdmic_register_hpd_cb,
274 .unregister_hpd_cb = hdmic_unregister_hpd_cb,
275 .enable_hpd = hdmic_enable_hpd,
276 .disable_hpd = hdmic_disable_hpd,
Tomi Valkeinen9fb17372014-06-18 12:58:02 +0300277 .set_hdmi_mode = hdmic_set_hdmi_mode,
278 .set_hdmi_infoframe = hdmic_set_infoframe,
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300279};
280
Peter Ujfalusic9741b42017-06-02 15:26:36 +0300281static irqreturn_t hdmic_hpd_isr(int irq, void *data)
282{
283 struct panel_drv_data *ddata = data;
284
285 mutex_lock(&ddata->hpd_lock);
286 if (ddata->hpd_enabled && ddata->hpd_cb) {
287 enum drm_connector_status status;
288
289 if (hdmic_detect(&ddata->dssdev))
290 status = connector_status_connected;
291 else
292 status = connector_status_disconnected;
293
294 ddata->hpd_cb(ddata->hpd_cb_data, status);
295 }
296 mutex_unlock(&ddata->hpd_lock);
297
298 return IRQ_HANDLED;
299}
300
Tomi Valkeinen0b8879f2013-07-30 10:37:34 +0300301static int hdmic_probe_of(struct platform_device *pdev)
302{
303 struct panel_drv_data *ddata = platform_get_drvdata(pdev);
304 struct device_node *node = pdev->dev.of_node;
305 struct omap_dss_device *in;
Tomi Valkeinen2c75e3c2014-04-17 10:18:58 +0300306 int gpio;
307
308 /* HPD GPIO */
309 gpio = of_get_named_gpio(node, "hpd-gpios", 0);
310 if (gpio_is_valid(gpio))
311 ddata->hpd_gpio = gpio;
312 else
313 ddata->hpd_gpio = -ENODEV;
Tomi Valkeinen0b8879f2013-07-30 10:37:34 +0300314
315 in = omapdss_of_find_source_for_first_ep(node);
316 if (IS_ERR(in)) {
317 dev_err(&pdev->dev, "failed to find video source\n");
318 return PTR_ERR(in);
319 }
320
321 ddata->in = in;
322
323 return 0;
324}
325
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300326static int hdmic_probe(struct platform_device *pdev)
327{
328 struct panel_drv_data *ddata;
329 struct omap_dss_device *dssdev;
330 int r;
331
332 ddata = devm_kzalloc(&pdev->dev, sizeof(*ddata), GFP_KERNEL);
333 if (!ddata)
334 return -ENOMEM;
335
336 platform_set_drvdata(pdev, ddata);
337 ddata->dev = &pdev->dev;
338
Tomi Valkeinen7f7642b2016-02-18 17:20:54 +0200339 if (!pdev->dev.of_node)
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300340 return -ENODEV;
Tomi Valkeinen7f7642b2016-02-18 17:20:54 +0200341
342 r = hdmic_probe_of(pdev);
343 if (r)
344 return r;
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300345
Peter Ujfalusic9741b42017-06-02 15:26:36 +0300346 mutex_init(&ddata->hpd_lock);
347
Tomi Valkeinen2c75e3c2014-04-17 10:18:58 +0300348 if (gpio_is_valid(ddata->hpd_gpio)) {
349 r = devm_gpio_request_one(&pdev->dev, ddata->hpd_gpio,
350 GPIOF_DIR_IN, "hdmi_hpd");
351 if (r)
352 goto err_reg;
Peter Ujfalusic9741b42017-06-02 15:26:36 +0300353
354 r = devm_request_threaded_irq(&pdev->dev,
355 gpio_to_irq(ddata->hpd_gpio),
356 NULL, hdmic_hpd_isr,
357 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING |
358 IRQF_ONESHOT,
359 "hdmic hpd", ddata);
360 if (r)
361 goto err_reg;
Tomi Valkeinen2c75e3c2014-04-17 10:18:58 +0300362 }
363
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300364 ddata->vm = hdmic_default_vm;
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300365
366 dssdev = &ddata->dssdev;
367 dssdev->driver = &hdmic_driver;
368 dssdev->dev = &pdev->dev;
369 dssdev->type = OMAP_DISPLAY_TYPE_HDMI;
370 dssdev->owner = THIS_MODULE;
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300371 dssdev->panel.vm = hdmic_default_vm;
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300372
373 r = omapdss_register_display(dssdev);
374 if (r) {
375 dev_err(&pdev->dev, "Failed to register panel\n");
376 goto err_reg;
377 }
378
379 return 0;
380err_reg:
381 omap_dss_put_device(ddata->in);
382 return r;
383}
384
385static int __exit hdmic_remove(struct platform_device *pdev)
386{
387 struct panel_drv_data *ddata = platform_get_drvdata(pdev);
388 struct omap_dss_device *dssdev = &ddata->dssdev;
389 struct omap_dss_device *in = ddata->in;
390
391 omapdss_unregister_display(&ddata->dssdev);
392
393 hdmic_disable(dssdev);
394 hdmic_disconnect(dssdev);
395
396 omap_dss_put_device(in);
397
398 return 0;
399}
400
Tomi Valkeinen0b8879f2013-07-30 10:37:34 +0300401static const struct of_device_id hdmic_of_match[] = {
402 { .compatible = "omapdss,hdmi-connector", },
403 {},
404};
405
406MODULE_DEVICE_TABLE(of, hdmic_of_match);
407
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300408static struct platform_driver hdmi_connector_driver = {
409 .probe = hdmic_probe,
410 .remove = __exit_p(hdmic_remove),
411 .driver = {
412 .name = "connector-hdmi",
Tomi Valkeinen0b8879f2013-07-30 10:37:34 +0300413 .of_match_table = hdmic_of_match,
Tomi Valkeinen422ccbd2014-10-16 09:54:25 +0300414 .suppress_bind_attrs = true,
Tomi Valkeinen3cb07ee2013-05-24 14:21:08 +0300415 },
416};
417
418module_platform_driver(hdmi_connector_driver);
419
420MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@ti.com>");
421MODULE_DESCRIPTION("HDMI Connector driver");
422MODULE_LICENSE("GPL");