Loading...
1/*
2 * Analog TV Connector 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/slab.h>
13#include <linux/module.h>
14#include <linux/platform_device.h>
15#include <linux/of.h>
16
17#include <video/omapdss.h>
18#include <video/omap-panel-data.h>
19
20struct panel_drv_data {
21 struct omap_dss_device dssdev;
22 struct omap_dss_device *in;
23
24 struct device *dev;
25
26 struct omap_video_timings timings;
27
28 enum omap_dss_venc_type connector_type;
29 bool invert_polarity;
30};
31
32static const struct omap_video_timings tvc_pal_timings = {
33 .x_res = 720,
34 .y_res = 574,
35 .pixelclock = 13500000,
36 .hsw = 64,
37 .hfp = 12,
38 .hbp = 68,
39 .vsw = 5,
40 .vfp = 5,
41 .vbp = 41,
42
43 .interlace = true,
44};
45
46static const struct of_device_id tvc_of_match[];
47
48struct tvc_of_data {
49 enum omap_dss_venc_type connector_type;
50};
51
52#define to_panel_data(x) container_of(x, struct panel_drv_data, dssdev)
53
54static int tvc_connect(struct omap_dss_device *dssdev)
55{
56 struct panel_drv_data *ddata = to_panel_data(dssdev);
57 struct omap_dss_device *in = ddata->in;
58 int r;
59
60 dev_dbg(ddata->dev, "connect\n");
61
62 if (omapdss_device_is_connected(dssdev))
63 return 0;
64
65 r = in->ops.atv->connect(in, dssdev);
66 if (r)
67 return r;
68
69 return 0;
70}
71
72static void tvc_disconnect(struct omap_dss_device *dssdev)
73{
74 struct panel_drv_data *ddata = to_panel_data(dssdev);
75 struct omap_dss_device *in = ddata->in;
76
77 dev_dbg(ddata->dev, "disconnect\n");
78
79 if (!omapdss_device_is_connected(dssdev))
80 return;
81
82 in->ops.atv->disconnect(in, dssdev);
83}
84
85static int tvc_enable(struct omap_dss_device *dssdev)
86{
87 struct panel_drv_data *ddata = to_panel_data(dssdev);
88 struct omap_dss_device *in = ddata->in;
89 int r;
90
91 dev_dbg(ddata->dev, "enable\n");
92
93 if (!omapdss_device_is_connected(dssdev))
94 return -ENODEV;
95
96 if (omapdss_device_is_enabled(dssdev))
97 return 0;
98
99 in->ops.atv->set_timings(in, &ddata->timings);
100
101 if (!ddata->dev->of_node) {
102 in->ops.atv->set_type(in, ddata->connector_type);
103
104 in->ops.atv->invert_vid_out_polarity(in,
105 ddata->invert_polarity);
106 }
107
108 r = in->ops.atv->enable(in);
109 if (r)
110 return r;
111
112 dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;
113
114 return r;
115}
116
117static void tvc_disable(struct omap_dss_device *dssdev)
118{
119 struct panel_drv_data *ddata = to_panel_data(dssdev);
120 struct omap_dss_device *in = ddata->in;
121
122 dev_dbg(ddata->dev, "disable\n");
123
124 if (!omapdss_device_is_enabled(dssdev))
125 return;
126
127 in->ops.atv->disable(in);
128
129 dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
130}
131
132static void tvc_set_timings(struct omap_dss_device *dssdev,
133 struct omap_video_timings *timings)
134{
135 struct panel_drv_data *ddata = to_panel_data(dssdev);
136 struct omap_dss_device *in = ddata->in;
137
138 ddata->timings = *timings;
139 dssdev->panel.timings = *timings;
140
141 in->ops.atv->set_timings(in, timings);
142}
143
144static void tvc_get_timings(struct omap_dss_device *dssdev,
145 struct omap_video_timings *timings)
146{
147 struct panel_drv_data *ddata = to_panel_data(dssdev);
148
149 *timings = ddata->timings;
150}
151
152static int tvc_check_timings(struct omap_dss_device *dssdev,
153 struct omap_video_timings *timings)
154{
155 struct panel_drv_data *ddata = to_panel_data(dssdev);
156 struct omap_dss_device *in = ddata->in;
157
158 return in->ops.atv->check_timings(in, timings);
159}
160
161static u32 tvc_get_wss(struct omap_dss_device *dssdev)
162{
163 struct panel_drv_data *ddata = to_panel_data(dssdev);
164 struct omap_dss_device *in = ddata->in;
165
166 return in->ops.atv->get_wss(in);
167}
168
169static int tvc_set_wss(struct omap_dss_device *dssdev, u32 wss)
170{
171 struct panel_drv_data *ddata = to_panel_data(dssdev);
172 struct omap_dss_device *in = ddata->in;
173
174 return in->ops.atv->set_wss(in, wss);
175}
176
177static struct omap_dss_driver tvc_driver = {
178 .connect = tvc_connect,
179 .disconnect = tvc_disconnect,
180
181 .enable = tvc_enable,
182 .disable = tvc_disable,
183
184 .set_timings = tvc_set_timings,
185 .get_timings = tvc_get_timings,
186 .check_timings = tvc_check_timings,
187
188 .get_resolution = omapdss_default_get_resolution,
189
190 .get_wss = tvc_get_wss,
191 .set_wss = tvc_set_wss,
192};
193
194static int tvc_probe_pdata(struct platform_device *pdev)
195{
196 struct panel_drv_data *ddata = platform_get_drvdata(pdev);
197 struct connector_atv_platform_data *pdata;
198 struct omap_dss_device *in, *dssdev;
199
200 pdata = dev_get_platdata(&pdev->dev);
201
202 in = omap_dss_find_output(pdata->source);
203 if (in == NULL) {
204 dev_err(&pdev->dev, "Failed to find video source\n");
205 return -EPROBE_DEFER;
206 }
207
208 ddata->in = in;
209
210 ddata->connector_type = pdata->connector_type;
211 ddata->invert_polarity = pdata->invert_polarity;
212
213 dssdev = &ddata->dssdev;
214 dssdev->name = pdata->name;
215
216 return 0;
217}
218
219static int tvc_probe_of(struct platform_device *pdev)
220{
221 struct panel_drv_data *ddata = platform_get_drvdata(pdev);
222 struct device_node *node = pdev->dev.of_node;
223 struct omap_dss_device *in;
224
225 in = omapdss_of_find_source_for_first_ep(node);
226 if (IS_ERR(in)) {
227 dev_err(&pdev->dev, "failed to find video source\n");
228 return PTR_ERR(in);
229 }
230
231 ddata->in = in;
232
233 return 0;
234}
235
236static int tvc_probe(struct platform_device *pdev)
237{
238 struct panel_drv_data *ddata;
239 struct omap_dss_device *dssdev;
240 int r;
241
242 ddata = devm_kzalloc(&pdev->dev, sizeof(*ddata), GFP_KERNEL);
243 if (!ddata)
244 return -ENOMEM;
245
246 platform_set_drvdata(pdev, ddata);
247 ddata->dev = &pdev->dev;
248
249 if (dev_get_platdata(&pdev->dev)) {
250 r = tvc_probe_pdata(pdev);
251 if (r)
252 return r;
253 } else if (pdev->dev.of_node) {
254 r = tvc_probe_of(pdev);
255 if (r)
256 return r;
257 } else {
258 return -ENODEV;
259 }
260
261 ddata->timings = tvc_pal_timings;
262
263 dssdev = &ddata->dssdev;
264 dssdev->driver = &tvc_driver;
265 dssdev->dev = &pdev->dev;
266 dssdev->type = OMAP_DISPLAY_TYPE_VENC;
267 dssdev->owner = THIS_MODULE;
268 dssdev->panel.timings = tvc_pal_timings;
269
270 r = omapdss_register_display(dssdev);
271 if (r) {
272 dev_err(&pdev->dev, "Failed to register panel\n");
273 goto err_reg;
274 }
275
276 return 0;
277err_reg:
278 omap_dss_put_device(ddata->in);
279 return r;
280}
281
282static int __exit tvc_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_display(&ddata->dssdev);
289
290 tvc_disable(dssdev);
291 tvc_disconnect(dssdev);
292
293 omap_dss_put_device(in);
294
295 return 0;
296}
297
298static const struct of_device_id tvc_of_match[] = {
299 { .compatible = "omapdss,svideo-connector", },
300 { .compatible = "omapdss,composite-video-connector", },
301 {},
302};
303
304MODULE_DEVICE_TABLE(of, tvc_of_match);
305
306static struct platform_driver tvc_connector_driver = {
307 .probe = tvc_probe,
308 .remove = __exit_p(tvc_remove),
309 .driver = {
310 .name = "connector-analog-tv",
311 .of_match_table = tvc_of_match,
312 .suppress_bind_attrs = true,
313 },
314};
315
316module_platform_driver(tvc_connector_driver);
317
318MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@ti.com>");
319MODULE_DESCRIPTION("Analog TV Connector driver");
320MODULE_LICENSE("GPL");
1/*
2 * Analog TV Connector driver
3 *
4 * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
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/slab.h>
13#include <linux/module.h>
14#include <linux/platform_device.h>
15#include <linux/of.h>
16
17#include "../dss/omapdss.h"
18
19struct panel_drv_data {
20 struct omap_dss_device dssdev;
21 struct omap_dss_device *in;
22
23 struct device *dev;
24
25 struct videomode vm;
26};
27
28static const struct videomode tvc_pal_vm = {
29 .hactive = 720,
30 .vactive = 574,
31 .pixelclock = 13500000,
32 .hsync_len = 64,
33 .hfront_porch = 12,
34 .hback_porch = 68,
35 .vsync_len = 5,
36 .vfront_porch = 5,
37 .vback_porch = 41,
38
39 .flags = DISPLAY_FLAGS_INTERLACED | DISPLAY_FLAGS_HSYNC_LOW |
40 DISPLAY_FLAGS_VSYNC_LOW,
41};
42
43#define to_panel_data(x) container_of(x, struct panel_drv_data, dssdev)
44
45static int tvc_connect(struct omap_dss_device *dssdev)
46{
47 struct panel_drv_data *ddata = to_panel_data(dssdev);
48 struct omap_dss_device *in;
49 int r;
50
51 dev_dbg(ddata->dev, "connect\n");
52
53 if (omapdss_device_is_connected(dssdev))
54 return 0;
55
56 in = omapdss_of_find_source_for_first_ep(ddata->dev->of_node);
57 if (IS_ERR(in)) {
58 dev_err(ddata->dev, "failed to find video source\n");
59 return PTR_ERR(in);
60 }
61
62 r = in->ops.atv->connect(in, dssdev);
63 if (r) {
64 omap_dss_put_device(in);
65 return r;
66 }
67
68 ddata->in = in;
69 return 0;
70}
71
72static void tvc_disconnect(struct omap_dss_device *dssdev)
73{
74 struct panel_drv_data *ddata = to_panel_data(dssdev);
75 struct omap_dss_device *in = ddata->in;
76
77 dev_dbg(ddata->dev, "disconnect\n");
78
79 if (!omapdss_device_is_connected(dssdev))
80 return;
81
82 in->ops.atv->disconnect(in, dssdev);
83
84 omap_dss_put_device(in);
85 ddata->in = NULL;
86}
87
88static int tvc_enable(struct omap_dss_device *dssdev)
89{
90 struct panel_drv_data *ddata = to_panel_data(dssdev);
91 struct omap_dss_device *in = ddata->in;
92 int r;
93
94 dev_dbg(ddata->dev, "enable\n");
95
96 if (!omapdss_device_is_connected(dssdev))
97 return -ENODEV;
98
99 if (omapdss_device_is_enabled(dssdev))
100 return 0;
101
102 in->ops.atv->set_timings(in, &ddata->vm);
103
104 r = in->ops.atv->enable(in);
105 if (r)
106 return r;
107
108 dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;
109
110 return r;
111}
112
113static void tvc_disable(struct omap_dss_device *dssdev)
114{
115 struct panel_drv_data *ddata = to_panel_data(dssdev);
116 struct omap_dss_device *in = ddata->in;
117
118 dev_dbg(ddata->dev, "disable\n");
119
120 if (!omapdss_device_is_enabled(dssdev))
121 return;
122
123 in->ops.atv->disable(in);
124
125 dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
126}
127
128static void tvc_set_timings(struct omap_dss_device *dssdev,
129 struct videomode *vm)
130{
131 struct panel_drv_data *ddata = to_panel_data(dssdev);
132 struct omap_dss_device *in = ddata->in;
133
134 ddata->vm = *vm;
135 dssdev->panel.vm = *vm;
136
137 in->ops.atv->set_timings(in, vm);
138}
139
140static void tvc_get_timings(struct omap_dss_device *dssdev,
141 struct videomode *vm)
142{
143 struct panel_drv_data *ddata = to_panel_data(dssdev);
144
145 *vm = ddata->vm;
146}
147
148static int tvc_check_timings(struct omap_dss_device *dssdev,
149 struct videomode *vm)
150{
151 struct panel_drv_data *ddata = to_panel_data(dssdev);
152 struct omap_dss_device *in = ddata->in;
153
154 return in->ops.atv->check_timings(in, vm);
155}
156
157static u32 tvc_get_wss(struct omap_dss_device *dssdev)
158{
159 struct panel_drv_data *ddata = to_panel_data(dssdev);
160 struct omap_dss_device *in = ddata->in;
161
162 return in->ops.atv->get_wss(in);
163}
164
165static int tvc_set_wss(struct omap_dss_device *dssdev, u32 wss)
166{
167 struct panel_drv_data *ddata = to_panel_data(dssdev);
168 struct omap_dss_device *in = ddata->in;
169
170 return in->ops.atv->set_wss(in, wss);
171}
172
173static struct omap_dss_driver tvc_driver = {
174 .connect = tvc_connect,
175 .disconnect = tvc_disconnect,
176
177 .enable = tvc_enable,
178 .disable = tvc_disable,
179
180 .set_timings = tvc_set_timings,
181 .get_timings = tvc_get_timings,
182 .check_timings = tvc_check_timings,
183
184 .get_wss = tvc_get_wss,
185 .set_wss = tvc_set_wss,
186};
187
188static int tvc_probe(struct platform_device *pdev)
189{
190 struct panel_drv_data *ddata;
191 struct omap_dss_device *dssdev;
192 int r;
193
194 ddata = devm_kzalloc(&pdev->dev, sizeof(*ddata), GFP_KERNEL);
195 if (!ddata)
196 return -ENOMEM;
197
198 platform_set_drvdata(pdev, ddata);
199 ddata->dev = &pdev->dev;
200
201 ddata->vm = tvc_pal_vm;
202
203 dssdev = &ddata->dssdev;
204 dssdev->driver = &tvc_driver;
205 dssdev->dev = &pdev->dev;
206 dssdev->type = OMAP_DISPLAY_TYPE_VENC;
207 dssdev->owner = THIS_MODULE;
208 dssdev->panel.vm = tvc_pal_vm;
209
210 r = omapdss_register_display(dssdev);
211 if (r) {
212 dev_err(&pdev->dev, "Failed to register panel\n");
213 return r;
214 }
215
216 return 0;
217}
218
219static int __exit tvc_remove(struct platform_device *pdev)
220{
221 struct panel_drv_data *ddata = platform_get_drvdata(pdev);
222 struct omap_dss_device *dssdev = &ddata->dssdev;
223
224 omapdss_unregister_display(&ddata->dssdev);
225
226 tvc_disable(dssdev);
227 tvc_disconnect(dssdev);
228
229 return 0;
230}
231
232static const struct of_device_id tvc_of_match[] = {
233 { .compatible = "omapdss,svideo-connector", },
234 { .compatible = "omapdss,composite-video-connector", },
235 {},
236};
237
238MODULE_DEVICE_TABLE(of, tvc_of_match);
239
240static struct platform_driver tvc_connector_driver = {
241 .probe = tvc_probe,
242 .remove = __exit_p(tvc_remove),
243 .driver = {
244 .name = "connector-analog-tv",
245 .of_match_table = tvc_of_match,
246 .suppress_bind_attrs = true,
247 },
248};
249
250module_platform_driver(tvc_connector_driver);
251
252MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@ti.com>");
253MODULE_DESCRIPTION("Analog TV Connector driver");
254MODULE_LICENSE("GPL");