blob: 46855c8f5cbf3fe820666fb57af364c3d8ca4b11 [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
29 struct omap_video_timings timings;
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
83 in->ops.hdmi->set_timings(in, &ddata->timings);
84
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,
108 struct omap_video_timings *timings)
109{
110 struct panel_drv_data *ddata = to_panel_data(dssdev);
111 struct omap_dss_device *in = ddata->in;
112
113 ddata->timings = *timings;
114 dssdev->panel.timings = *timings;
115
116 in->ops.hdmi->set_timings(in, timings);
117}
118
119static void tpd_get_timings(struct omap_dss_device *dssdev,
120 struct omap_video_timings *timings)
121{
122 struct panel_drv_data *ddata = to_panel_data(dssdev);
123
124 *timings = ddata->timings;
125}
126
127static int tpd_check_timings(struct omap_dss_device *dssdev,
128 struct omap_video_timings *timings)
129{
130 struct panel_drv_data *ddata = to_panel_data(dssdev);
131 struct omap_dss_device *in = ddata->in;
132 int r;
133
134 r = in->ops.hdmi->check_timings(in, timings);
135
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 Agrawal460543b2015-11-03 15:22:49 -0600237
Manisha Agrawald8e31632015-11-03 15:22:50 -0600238 gpio = devm_gpiod_get_index_optional(&pdev->dev, NULL, 0,
Manisha Agrawal460543b2015-11-03 15:22:49 -0600239 GPIOD_OUT_LOW);
240 if (IS_ERR(gpio))
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300241 goto err_gpio;
242
Manisha Agrawal460543b2015-11-03 15:22:49 -0600243 ddata->ct_cp_hpd_gpio = gpio;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300244
Manisha Agrawal460543b2015-11-03 15:22:49 -0600245 gpio = devm_gpiod_get_index_optional(&pdev->dev, NULL, 1,
246 GPIOD_OUT_LOW);
247 if (IS_ERR(gpio))
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300248 goto err_gpio;
249
Manisha Agrawal460543b2015-11-03 15:22:49 -0600250 ddata->ls_oe_gpio = gpio;
251
252 gpio = devm_gpiod_get_index(&pdev->dev, NULL, 2,
253 GPIOD_IN);
254 if (IS_ERR(gpio))
255 goto err_gpio;
256
257 ddata->hpd_gpio = gpio;
258
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300259 dssdev = &ddata->dssdev;
260 dssdev->ops.hdmi = &tpd_hdmi_ops;
261 dssdev->dev = &pdev->dev;
262 dssdev->type = OMAP_DISPLAY_TYPE_HDMI;
263 dssdev->output_type = OMAP_DISPLAY_TYPE_HDMI;
264 dssdev->owner = THIS_MODULE;
Archit Tanejaef691ff2014-04-22 17:43:48 +0530265 dssdev->port_num = 1;
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300266
267 in = ddata->in;
268
269 r = omapdss_register_output(dssdev);
270 if (r) {
271 dev_err(&pdev->dev, "Failed to register output\n");
272 goto err_reg;
273 }
274
275 return 0;
276err_reg:
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300277err_gpio:
278 omap_dss_put_device(ddata->in);
279 return r;
280}
281
282static int __exit tpd_remove(struct platform_device *pdev)
283{
284 struct panel_drv_data *ddata = platform_get_drvdata(pdev);
285 struct omap_dss_device *dssdev = &ddata->dssdev;
286 struct omap_dss_device *in = ddata->in;
287
288 omapdss_unregister_output(&ddata->dssdev);
289
290 WARN_ON(omapdss_device_is_enabled(dssdev));
291 if (omapdss_device_is_enabled(dssdev))
292 tpd_disable(dssdev);
293
294 WARN_ON(omapdss_device_is_connected(dssdev));
295 if (omapdss_device_is_connected(dssdev))
Tomi Valkeinen9560dc102013-07-24 13:06:54 +0300296 tpd_disconnect(dssdev, dssdev->dst);
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300297
298 omap_dss_put_device(in);
299
300 return 0;
301}
302
Tomi Valkeinen5e4c89c2013-07-30 10:37:17 +0300303static const struct of_device_id tpd_of_match[] = {
304 { .compatible = "omapdss,ti,tpd12s015", },
305 {},
306};
307
308MODULE_DEVICE_TABLE(of, tpd_of_match);
309
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300310static struct platform_driver tpd_driver = {
311 .probe = tpd_probe,
312 .remove = __exit_p(tpd_remove),
313 .driver = {
314 .name = "tpd12s015",
Tomi Valkeinen5e4c89c2013-07-30 10:37:17 +0300315 .of_match_table = tpd_of_match,
Tomi Valkeinen422ccbd2014-10-16 09:54:25 +0300316 .suppress_bind_attrs = true,
Tomi Valkeinena0ee5772013-05-24 14:20:14 +0300317 },
318};
319
320module_platform_driver(tpd_driver);
321
322MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@ti.com>");
323MODULE_DESCRIPTION("TPD12S015 driver");
324MODULE_LICENSE("GPL");