blob: 58276a48112e5d79a5f9a951a88f89897718f861 [file] [log] [blame]
Tomi Valkeinena0ee5772013-05-24 14:20:14 +03001/*
2 * TPD12S015 HDMI ESD protection & level shifter chip driver
3 *
4 * Copyright (C) 2013 Texas Instruments
5 * 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
12#include <linux/completion.h>
13#include <linux/delay.h>
14#include <linux/module.h>
15#include <linux/slab.h>
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030016#include <linux/platform_device.h>
Manisha Agrawal460543b2015-11-03 15:22:49 -060017#include <linux/gpio/consumer.h>
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030018
Peter Ujfalusi32043da2016-05-27 14:40:49 +030019#include "../dss/omapdss.h"
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030020
21struct panel_drv_data {
22 struct omap_dss_device dssdev;
23 struct omap_dss_device *in;
24
Manisha Agrawal460543b2015-11-03 15:22:49 -060025 struct gpio_desc *ct_cp_hpd_gpio;
26 struct gpio_desc *ls_oe_gpio;
27 struct gpio_desc *hpd_gpio;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030028
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +030029 struct videomode vm;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030030};
31
32#define to_panel_data(x) container_of(x, struct panel_drv_data, dssdev)
33
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030034static int tpd_connect(struct omap_dss_device *dssdev,
35 struct omap_dss_device *dst)
36{
37 struct panel_drv_data *ddata = to_panel_data(dssdev);
38 struct omap_dss_device *in = ddata->in;
39 int r;
40
41 r = in->ops.hdmi->connect(in, dssdev);
42 if (r)
43 return r;
44
Tomi Valkeinena73fdc62013-07-24 13:01:34 +030045 dst->src = dssdev;
Tomi Valkeinen9560dc102013-07-24 13:06:54 +030046 dssdev->dst = dst;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030047
Manisha Agrawal460543b2015-11-03 15:22:49 -060048 gpiod_set_value_cansleep(ddata->ct_cp_hpd_gpio, 1);
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030049 /* DC-DC converter needs at max 300us to get to 90% of 5V */
50 udelay(300);
51
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030052 return 0;
53}
54
55static void tpd_disconnect(struct omap_dss_device *dssdev,
56 struct omap_dss_device *dst)
57{
58 struct panel_drv_data *ddata = to_panel_data(dssdev);
59 struct omap_dss_device *in = ddata->in;
60
Tomi Valkeinen9560dc102013-07-24 13:06:54 +030061 WARN_ON(dst != dssdev->dst);
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030062
Tomi Valkeinen9560dc102013-07-24 13:06:54 +030063 if (dst != dssdev->dst)
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030064 return;
65
Manisha Agrawal460543b2015-11-03 15:22:49 -060066 gpiod_set_value_cansleep(ddata->ct_cp_hpd_gpio, 0);
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030067
Tomi Valkeinena73fdc62013-07-24 13:01:34 +030068 dst->src = NULL;
Tomi Valkeinen9560dc102013-07-24 13:06:54 +030069 dssdev->dst = NULL;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030070
71 in->ops.hdmi->disconnect(in, &ddata->dssdev);
72}
73
74static int tpd_enable(struct omap_dss_device *dssdev)
75{
76 struct panel_drv_data *ddata = to_panel_data(dssdev);
77 struct omap_dss_device *in = ddata->in;
78 int r;
79
80 if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE)
81 return 0;
82
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +030083 in->ops.hdmi->set_timings(in, &ddata->vm);
Tomi Valkeinena0ee5772013-05-24 14:20:14 +030084
85 r = in->ops.hdmi->enable(in);
86 if (r)
87 return r;
88
89 dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;
90
91 return r;
92}
93
94static void tpd_disable(struct omap_dss_device *dssdev)
95{
96 struct panel_drv_data *ddata = to_panel_data(dssdev);
97 struct omap_dss_device *in = ddata->in;
98
99 if (dssdev->state != OMAP_DSS_DISPLAY_ACTIVE)
100 return;
101
102 in->ops.hdmi->disable(in);
103
104 dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
105}
106
107static void tpd_set_timings(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300108 struct videomode *vm)
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300109{
110 struct panel_drv_data *ddata = to_panel_data(dssdev);
111 struct omap_dss_device *in = ddata->in;
112
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300113 ddata->vm = *vm;
114 dssdev->panel.vm = *vm;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300115
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300116 in->ops.hdmi->set_timings(in, vm);
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300117}
118
119static void tpd_get_timings(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300120 struct videomode *vm)
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300121{
122 struct panel_drv_data *ddata = to_panel_data(dssdev);
123
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300124 *vm = ddata->vm;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300125}
126
127static int tpd_check_timings(struct omap_dss_device *dssdev,
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300128 struct videomode *vm)
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300129{
130 struct panel_drv_data *ddata = to_panel_data(dssdev);
131 struct omap_dss_device *in = ddata->in;
132 int r;
133
Peter Ujfalusida11bbbb2016-09-22 14:07:04 +0300134 r = in->ops.hdmi->check_timings(in, vm);
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300135
136 return r;
137}
138
139static int tpd_read_edid(struct omap_dss_device *dssdev,
140 u8 *edid, int len)
141{
142 struct panel_drv_data *ddata = to_panel_data(dssdev);
143 struct omap_dss_device *in = ddata->in;
Tomi Valkeinena87a6d62014-09-19 16:58:57 +0000144 int r;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300145
Manisha Agrawal460543b2015-11-03 15:22:49 -0600146 if (!gpiod_get_value_cansleep(ddata->hpd_gpio))
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300147 return -ENODEV;
148
Manisha Agrawal460543b2015-11-03 15:22:49 -0600149 gpiod_set_value_cansleep(ddata->ls_oe_gpio, 1);
Tomi Valkeinena87a6d62014-09-19 16:58:57 +0000150
151 r = in->ops.hdmi->read_edid(in, edid, len);
152
Manisha Agrawal460543b2015-11-03 15:22:49 -0600153 gpiod_set_value_cansleep(ddata->ls_oe_gpio, 0);
Tomi Valkeinena87a6d62014-09-19 16:58:57 +0000154
155 return r;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300156}
157
158static bool tpd_detect(struct omap_dss_device *dssdev)
159{
160 struct panel_drv_data *ddata = to_panel_data(dssdev);
161
Manisha Agrawal460543b2015-11-03 15:22:49 -0600162 return gpiod_get_value_cansleep(ddata->hpd_gpio);
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300163}
164
Tomi Valkeinen9fb17372014-06-18 12:58:02 +0300165static int tpd_set_infoframe(struct omap_dss_device *dssdev,
166 const struct hdmi_avi_infoframe *avi)
167{
168 struct panel_drv_data *ddata = to_panel_data(dssdev);
169 struct omap_dss_device *in = ddata->in;
170
171 return in->ops.hdmi->set_infoframe(in, avi);
172}
173
174static int tpd_set_hdmi_mode(struct omap_dss_device *dssdev,
175 bool hdmi_mode)
176{
177 struct panel_drv_data *ddata = to_panel_data(dssdev);
178 struct omap_dss_device *in = ddata->in;
179
180 return in->ops.hdmi->set_hdmi_mode(in, hdmi_mode);
181}
182
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300183static const struct omapdss_hdmi_ops tpd_hdmi_ops = {
184 .connect = tpd_connect,
185 .disconnect = tpd_disconnect,
186
187 .enable = tpd_enable,
188 .disable = tpd_disable,
189
190 .check_timings = tpd_check_timings,
191 .set_timings = tpd_set_timings,
192 .get_timings = tpd_get_timings,
193
194 .read_edid = tpd_read_edid,
195 .detect = tpd_detect,
Tomi Valkeinen9fb17372014-06-18 12:58:02 +0300196 .set_infoframe = tpd_set_infoframe,
197 .set_hdmi_mode = tpd_set_hdmi_mode,
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300198};
199
Tomi Valkeinen5e4c89c2013-07-30 10:37:17 +0300200static int tpd_probe_of(struct platform_device *pdev)
201{
202 struct panel_drv_data *ddata = platform_get_drvdata(pdev);
203 struct device_node *node = pdev->dev.of_node;
204 struct omap_dss_device *in;
Tomi Valkeinen5e4c89c2013-07-30 10:37:17 +0300205
206 in = omapdss_of_find_source_for_first_ep(node);
207 if (IS_ERR(in)) {
208 dev_err(&pdev->dev, "failed to find video source\n");
209 return PTR_ERR(in);
210 }
211
212 ddata->in = in;
213
214 return 0;
215}
216
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300217static int tpd_probe(struct platform_device *pdev)
218{
219 struct omap_dss_device *in, *dssdev;
220 struct panel_drv_data *ddata;
221 int r;
Manisha Agrawal460543b2015-11-03 15:22:49 -0600222 struct gpio_desc *gpio;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300223
224 ddata = devm_kzalloc(&pdev->dev, sizeof(*ddata), GFP_KERNEL);
225 if (!ddata)
226 return -ENOMEM;
227
228 platform_set_drvdata(pdev, ddata);
229
Manisha Agrawal45dd63c2015-11-03 15:22:48 -0600230 if (!pdev->dev.of_node)
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300231 return -ENODEV;
Manisha Agrawal45dd63c2015-11-03 15:22:48 -0600232
233 r = tpd_probe_of(pdev);
234 if (r)
235 return r;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300236
Manisha Agrawald8e31632015-11-03 15:22:50 -0600237 gpio = devm_gpiod_get_index_optional(&pdev->dev, NULL, 0,
Manisha Agrawal460543b2015-11-03 15:22:49 -0600238 GPIOD_OUT_LOW);
Tomi Valkeinen5c2a3922016-11-22 10:11:07 +0200239 if (IS_ERR(gpio)) {
240 r = PTR_ERR(gpio);
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300241 goto err_gpio;
Tomi Valkeinen5c2a3922016-11-22 10:11:07 +0200242 }
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300243
Manisha Agrawal460543b2015-11-03 15:22:49 -0600244 ddata->ct_cp_hpd_gpio = gpio;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300245
Manisha Agrawal460543b2015-11-03 15:22:49 -0600246 gpio = devm_gpiod_get_index_optional(&pdev->dev, NULL, 1,
247 GPIOD_OUT_LOW);
Tomi Valkeinen5c2a3922016-11-22 10:11:07 +0200248 if (IS_ERR(gpio)) {
249 r = PTR_ERR(gpio);
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300250 goto err_gpio;
Tomi Valkeinen5c2a3922016-11-22 10:11:07 +0200251 }
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300252
Manisha Agrawal460543b2015-11-03 15:22:49 -0600253 ddata->ls_oe_gpio = gpio;
254
255 gpio = devm_gpiod_get_index(&pdev->dev, NULL, 2,
256 GPIOD_IN);
Tomi Valkeinen5c2a3922016-11-22 10:11:07 +0200257 if (IS_ERR(gpio)) {
258 r = PTR_ERR(gpio);
Manisha Agrawal460543b2015-11-03 15:22:49 -0600259 goto err_gpio;
Tomi Valkeinen5c2a3922016-11-22 10:11:07 +0200260 }
Manisha Agrawal460543b2015-11-03 15:22:49 -0600261
262 ddata->hpd_gpio = gpio;
263
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300264 dssdev = &ddata->dssdev;
265 dssdev->ops.hdmi = &tpd_hdmi_ops;
266 dssdev->dev = &pdev->dev;
267 dssdev->type = OMAP_DISPLAY_TYPE_HDMI;
268 dssdev->output_type = OMAP_DISPLAY_TYPE_HDMI;
269 dssdev->owner = THIS_MODULE;
Archit Tanejaef691ff2014-04-22 17:43:48 +0530270 dssdev->port_num = 1;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300271
272 in = ddata->in;
273
274 r = omapdss_register_output(dssdev);
275 if (r) {
276 dev_err(&pdev->dev, "Failed to register output\n");
277 goto err_reg;
278 }
279
280 return 0;
281err_reg:
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300282err_gpio:
283 omap_dss_put_device(ddata->in);
284 return r;
285}
286
287static int __exit tpd_remove(struct platform_device *pdev)
288{
289 struct panel_drv_data *ddata = platform_get_drvdata(pdev);
290 struct omap_dss_device *dssdev = &ddata->dssdev;
291 struct omap_dss_device *in = ddata->in;
292
293 omapdss_unregister_output(&ddata->dssdev);
294
295 WARN_ON(omapdss_device_is_enabled(dssdev));
296 if (omapdss_device_is_enabled(dssdev))
297 tpd_disable(dssdev);
298
299 WARN_ON(omapdss_device_is_connected(dssdev));
300 if (omapdss_device_is_connected(dssdev))
Tomi Valkeinen9560dc102013-07-24 13:06:54 +0300301 tpd_disconnect(dssdev, dssdev->dst);
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300302
303 omap_dss_put_device(in);
304
305 return 0;
306}
307
Tomi Valkeinen5e4c89c2013-07-30 10:37:17 +0300308static const struct of_device_id tpd_of_match[] = {
309 { .compatible = "omapdss,ti,tpd12s015", },
310 {},
311};
312
313MODULE_DEVICE_TABLE(of, tpd_of_match);
314
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300315static struct platform_driver tpd_driver = {
316 .probe = tpd_probe,
317 .remove = __exit_p(tpd_remove),
318 .driver = {
319 .name = "tpd12s015",
Tomi Valkeinen5e4c89c2013-07-30 10:37:17 +0300320 .of_match_table = tpd_of_match,
Tomi Valkeinen422ccbd2014-10-16 09:54:25 +0300321 .suppress_bind_attrs = true,
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300322 },
323};
324
325module_platform_driver(tpd_driver);
326
327MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@ti.com>");
328MODULE_DESCRIPTION("TPD12S015 driver");
329MODULE_LICENSE("GPL");