2 * Analog TV Connector driver
4 * Copyright (C) 2013 Texas Instruments
5 * Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
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.
12 #include <linux/slab.h>
13 #include <linux/module.h>
14 #include <linux/platform_device.h>
17 #include <video/omapdss.h>
18 #include <video/omap-panel-data.h>
20 struct panel_drv_data
{
21 struct omap_dss_device dssdev
;
22 struct omap_dss_device
*in
;
26 struct omap_video_timings timings
;
28 enum omap_dss_venc_type connector_type
;
32 static const struct omap_video_timings tvc_pal_timings
= {
35 .pixelclock
= 13500000,
46 static const struct of_device_id tvc_of_match
[];
49 enum omap_dss_venc_type connector_type
;
52 #define to_panel_data(x) container_of(x, struct panel_drv_data, dssdev)
54 static int tvc_connect(struct omap_dss_device
*dssdev
)
56 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
57 struct omap_dss_device
*in
= ddata
->in
;
60 dev_dbg(ddata
->dev
, "connect\n");
62 if (omapdss_device_is_connected(dssdev
))
65 r
= in
->ops
.atv
->connect(in
, dssdev
);
72 static void tvc_disconnect(struct omap_dss_device
*dssdev
)
74 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
75 struct omap_dss_device
*in
= ddata
->in
;
77 dev_dbg(ddata
->dev
, "disconnect\n");
79 if (!omapdss_device_is_connected(dssdev
))
82 in
->ops
.atv
->disconnect(in
, dssdev
);
85 static int tvc_enable(struct omap_dss_device
*dssdev
)
87 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
88 struct omap_dss_device
*in
= ddata
->in
;
91 dev_dbg(ddata
->dev
, "enable\n");
93 if (!omapdss_device_is_connected(dssdev
))
96 if (omapdss_device_is_enabled(dssdev
))
99 in
->ops
.atv
->set_timings(in
, &ddata
->timings
);
101 if (!ddata
->dev
->of_node
) {
102 in
->ops
.atv
->set_type(in
, ddata
->connector_type
);
104 in
->ops
.atv
->invert_vid_out_polarity(in
,
105 ddata
->invert_polarity
);
108 r
= in
->ops
.atv
->enable(in
);
112 dssdev
->state
= OMAP_DSS_DISPLAY_ACTIVE
;
117 static void tvc_disable(struct omap_dss_device
*dssdev
)
119 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
120 struct omap_dss_device
*in
= ddata
->in
;
122 dev_dbg(ddata
->dev
, "disable\n");
124 if (!omapdss_device_is_enabled(dssdev
))
127 in
->ops
.atv
->disable(in
);
129 dssdev
->state
= OMAP_DSS_DISPLAY_DISABLED
;
132 static void tvc_set_timings(struct omap_dss_device
*dssdev
,
133 struct omap_video_timings
*timings
)
135 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
136 struct omap_dss_device
*in
= ddata
->in
;
138 ddata
->timings
= *timings
;
139 dssdev
->panel
.timings
= *timings
;
141 in
->ops
.atv
->set_timings(in
, timings
);
144 static void tvc_get_timings(struct omap_dss_device
*dssdev
,
145 struct omap_video_timings
*timings
)
147 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
149 *timings
= ddata
->timings
;
152 static int tvc_check_timings(struct omap_dss_device
*dssdev
,
153 struct omap_video_timings
*timings
)
155 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
156 struct omap_dss_device
*in
= ddata
->in
;
158 return in
->ops
.atv
->check_timings(in
, timings
);
161 static u32
tvc_get_wss(struct omap_dss_device
*dssdev
)
163 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
164 struct omap_dss_device
*in
= ddata
->in
;
166 return in
->ops
.atv
->get_wss(in
);
169 static int tvc_set_wss(struct omap_dss_device
*dssdev
, u32 wss
)
171 struct panel_drv_data
*ddata
= to_panel_data(dssdev
);
172 struct omap_dss_device
*in
= ddata
->in
;
174 return in
->ops
.atv
->set_wss(in
, wss
);
177 static struct omap_dss_driver tvc_driver
= {
178 .connect
= tvc_connect
,
179 .disconnect
= tvc_disconnect
,
181 .enable
= tvc_enable
,
182 .disable
= tvc_disable
,
184 .set_timings
= tvc_set_timings
,
185 .get_timings
= tvc_get_timings
,
186 .check_timings
= tvc_check_timings
,
188 .get_resolution
= omapdss_default_get_resolution
,
190 .get_wss
= tvc_get_wss
,
191 .set_wss
= tvc_set_wss
,
194 static int tvc_probe_pdata(struct platform_device
*pdev
)
196 struct panel_drv_data
*ddata
= platform_get_drvdata(pdev
);
197 struct connector_atv_platform_data
*pdata
;
198 struct omap_dss_device
*in
, *dssdev
;
200 pdata
= dev_get_platdata(&pdev
->dev
);
202 in
= omap_dss_find_output(pdata
->source
);
204 dev_err(&pdev
->dev
, "Failed to find video source\n");
205 return -EPROBE_DEFER
;
210 ddata
->connector_type
= pdata
->connector_type
;
211 ddata
->invert_polarity
= pdata
->invert_polarity
;
213 dssdev
= &ddata
->dssdev
;
214 dssdev
->name
= pdata
->name
;
219 static int tvc_probe_of(struct platform_device
*pdev
)
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
;
225 in
= omapdss_of_find_source_for_first_ep(node
);
227 dev_err(&pdev
->dev
, "failed to find video source\n");
236 static int tvc_probe(struct platform_device
*pdev
)
238 struct panel_drv_data
*ddata
;
239 struct omap_dss_device
*dssdev
;
242 ddata
= devm_kzalloc(&pdev
->dev
, sizeof(*ddata
), GFP_KERNEL
);
246 platform_set_drvdata(pdev
, ddata
);
247 ddata
->dev
= &pdev
->dev
;
249 if (dev_get_platdata(&pdev
->dev
)) {
250 r
= tvc_probe_pdata(pdev
);
253 } else if (pdev
->dev
.of_node
) {
254 r
= tvc_probe_of(pdev
);
261 ddata
->timings
= tvc_pal_timings
;
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
;
270 r
= omapdss_register_display(dssdev
);
272 dev_err(&pdev
->dev
, "Failed to register panel\n");
278 omap_dss_put_device(ddata
->in
);
282 static int __exit
tvc_remove(struct platform_device
*pdev
)
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
;
288 omapdss_unregister_display(&ddata
->dssdev
);
291 tvc_disconnect(dssdev
);
293 omap_dss_put_device(in
);
298 static const struct of_device_id tvc_of_match
[] = {
299 { .compatible
= "omapdss,svideo-connector", },
300 { .compatible
= "omapdss,composite-video-connector", },
304 MODULE_DEVICE_TABLE(of
, tvc_of_match
);
306 static struct platform_driver tvc_connector_driver
= {
308 .remove
= __exit_p(tvc_remove
),
310 .name
= "connector-analog-tv",
311 .of_match_table
= tvc_of_match
,
312 .suppress_bind_attrs
= true,
316 module_platform_driver(tvc_connector_driver
);
318 MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@ti.com>");
319 MODULE_DESCRIPTION("Analog TV Connector driver");
320 MODULE_LICENSE("GPL");