2 * linux/drivers/video/omap2/dss/display.c
4 * Copyright (C) 2009 Nokia Corporation
5 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
7 * Some code and ideas taken from drivers/video/omap/ driver
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published by
12 * the Free Software Foundation.
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * You should have received a copy of the GNU General Public License along with
20 * this program. If not, see <http://www.gnu.org/licenses/>.
23 #define DSS_SUBSYS_NAME "DISPLAY"
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/jiffies.h>
28 #include <linux/platform_device.h>
30 #include <video/omapdss.h>
32 #include "dss_features.h"
34 static ssize_t
display_enabled_show(struct device
*dev
,
35 struct device_attribute
*attr
, char *buf
)
37 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
38 bool enabled
= dssdev
->state
!= OMAP_DSS_DISPLAY_DISABLED
;
40 return snprintf(buf
, PAGE_SIZE
, "%d\n", enabled
);
43 static ssize_t
display_enabled_store(struct device
*dev
,
44 struct device_attribute
*attr
,
45 const char *buf
, size_t size
)
47 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
50 r
= kstrtoint(buf
, 0, &enabled
);
56 if (enabled
!= (dssdev
->state
!= OMAP_DSS_DISPLAY_DISABLED
)) {
58 r
= dssdev
->driver
->enable(dssdev
);
62 dssdev
->driver
->disable(dssdev
);
69 static ssize_t
display_tear_show(struct device
*dev
,
70 struct device_attribute
*attr
, char *buf
)
72 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
73 return snprintf(buf
, PAGE_SIZE
, "%d\n",
74 dssdev
->driver
->get_te
?
75 dssdev
->driver
->get_te(dssdev
) : 0);
78 static ssize_t
display_tear_store(struct device
*dev
,
79 struct device_attribute
*attr
, const char *buf
, size_t size
)
81 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
84 if (!dssdev
->driver
->enable_te
|| !dssdev
->driver
->get_te
)
87 r
= kstrtoint(buf
, 0, &te
);
93 r
= dssdev
->driver
->enable_te(dssdev
, te
);
100 static ssize_t
display_timings_show(struct device
*dev
,
101 struct device_attribute
*attr
, char *buf
)
103 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
104 struct omap_video_timings t
;
106 if (!dssdev
->driver
->get_timings
)
109 dssdev
->driver
->get_timings(dssdev
, &t
);
111 return snprintf(buf
, PAGE_SIZE
, "%u,%u/%u/%u/%u,%u/%u/%u/%u\n",
113 t
.x_res
, t
.hfp
, t
.hbp
, t
.hsw
,
114 t
.y_res
, t
.vfp
, t
.vbp
, t
.vsw
);
117 static ssize_t
display_timings_store(struct device
*dev
,
118 struct device_attribute
*attr
, const char *buf
, size_t size
)
120 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
121 struct omap_video_timings t
;
124 if (!dssdev
->driver
->set_timings
|| !dssdev
->driver
->check_timings
)
128 #ifdef CONFIG_OMAP2_DSS_VENC
129 if (strncmp("pal", buf
, 3) == 0) {
130 t
= omap_dss_pal_timings
;
132 } else if (strncmp("ntsc", buf
, 4) == 0) {
133 t
= omap_dss_ntsc_timings
;
137 if (!found
&& sscanf(buf
, "%u,%hu/%hu/%hu/%hu,%hu/%hu/%hu/%hu",
139 &t
.x_res
, &t
.hfp
, &t
.hbp
, &t
.hsw
,
140 &t
.y_res
, &t
.vfp
, &t
.vbp
, &t
.vsw
) != 9)
143 r
= dssdev
->driver
->check_timings(dssdev
, &t
);
147 dssdev
->driver
->set_timings(dssdev
, &t
);
152 static ssize_t
display_rotate_show(struct device
*dev
,
153 struct device_attribute
*attr
, char *buf
)
155 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
157 if (!dssdev
->driver
->get_rotate
)
159 rotate
= dssdev
->driver
->get_rotate(dssdev
);
160 return snprintf(buf
, PAGE_SIZE
, "%u\n", rotate
);
163 static ssize_t
display_rotate_store(struct device
*dev
,
164 struct device_attribute
*attr
, const char *buf
, size_t size
)
166 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
169 if (!dssdev
->driver
->set_rotate
|| !dssdev
->driver
->get_rotate
)
172 r
= kstrtoint(buf
, 0, &rot
);
176 r
= dssdev
->driver
->set_rotate(dssdev
, rot
);
183 static ssize_t
display_mirror_show(struct device
*dev
,
184 struct device_attribute
*attr
, char *buf
)
186 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
188 if (!dssdev
->driver
->get_mirror
)
190 mirror
= dssdev
->driver
->get_mirror(dssdev
);
191 return snprintf(buf
, PAGE_SIZE
, "%u\n", mirror
);
194 static ssize_t
display_mirror_store(struct device
*dev
,
195 struct device_attribute
*attr
, const char *buf
, size_t size
)
197 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
200 if (!dssdev
->driver
->set_mirror
|| !dssdev
->driver
->get_mirror
)
203 r
= kstrtoint(buf
, 0, &mirror
);
209 r
= dssdev
->driver
->set_mirror(dssdev
, mirror
);
216 static ssize_t
display_wss_show(struct device
*dev
,
217 struct device_attribute
*attr
, char *buf
)
219 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
222 if (!dssdev
->driver
->get_wss
)
225 wss
= dssdev
->driver
->get_wss(dssdev
);
227 return snprintf(buf
, PAGE_SIZE
, "0x%05x\n", wss
);
230 static ssize_t
display_wss_store(struct device
*dev
,
231 struct device_attribute
*attr
, const char *buf
, size_t size
)
233 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
237 if (!dssdev
->driver
->get_wss
|| !dssdev
->driver
->set_wss
)
240 r
= kstrtou32(buf
, 0, &wss
);
247 r
= dssdev
->driver
->set_wss(dssdev
, wss
);
254 static DEVICE_ATTR(enabled
, S_IRUGO
|S_IWUSR
,
255 display_enabled_show
, display_enabled_store
);
256 static DEVICE_ATTR(tear_elim
, S_IRUGO
|S_IWUSR
,
257 display_tear_show
, display_tear_store
);
258 static DEVICE_ATTR(timings
, S_IRUGO
|S_IWUSR
,
259 display_timings_show
, display_timings_store
);
260 static DEVICE_ATTR(rotate
, S_IRUGO
|S_IWUSR
,
261 display_rotate_show
, display_rotate_store
);
262 static DEVICE_ATTR(mirror
, S_IRUGO
|S_IWUSR
,
263 display_mirror_show
, display_mirror_store
);
264 static DEVICE_ATTR(wss
, S_IRUGO
|S_IWUSR
,
265 display_wss_show
, display_wss_store
);
267 static struct device_attribute
*display_sysfs_attrs
[] = {
277 void omapdss_default_get_resolution(struct omap_dss_device
*dssdev
,
278 u16
*xres
, u16
*yres
)
280 *xres
= dssdev
->panel
.timings
.x_res
;
281 *yres
= dssdev
->panel
.timings
.y_res
;
283 EXPORT_SYMBOL(omapdss_default_get_resolution
);
285 void default_get_overlay_fifo_thresholds(enum omap_plane plane
,
286 u32 fifo_size
, u32 burst_size
,
287 u32
*fifo_low
, u32
*fifo_high
)
289 unsigned buf_unit
= dss_feat_get_buffer_size_unit();
291 *fifo_high
= fifo_size
- buf_unit
;
292 *fifo_low
= fifo_size
- burst_size
;
295 int omapdss_default_get_recommended_bpp(struct omap_dss_device
*dssdev
)
297 switch (dssdev
->type
) {
298 case OMAP_DISPLAY_TYPE_DPI
:
299 if (dssdev
->phy
.dpi
.data_lines
== 24)
304 case OMAP_DISPLAY_TYPE_DBI
:
305 case OMAP_DISPLAY_TYPE_DSI
:
306 if (dssdev
->ctrl
.pixel_size
== 24)
310 case OMAP_DISPLAY_TYPE_VENC
:
311 case OMAP_DISPLAY_TYPE_SDI
:
312 case OMAP_DISPLAY_TYPE_HDMI
:
318 EXPORT_SYMBOL(omapdss_default_get_recommended_bpp
);
320 /* Checks if replication logic should be used. Only use for active matrix,
321 * when overlay is in RGB12U or RGB16 mode, and LCD interface is
323 bool dss_use_replication(struct omap_dss_device
*dssdev
,
324 enum omap_color_mode mode
)
328 if (mode
!= OMAP_DSS_COLOR_RGB12U
&& mode
!= OMAP_DSS_COLOR_RGB16
)
331 if (dssdev
->type
== OMAP_DISPLAY_TYPE_DPI
&&
332 (dssdev
->panel
.config
& OMAP_DSS_LCD_TFT
) == 0)
335 switch (dssdev
->type
) {
336 case OMAP_DISPLAY_TYPE_DPI
:
337 bpp
= dssdev
->phy
.dpi
.data_lines
;
339 case OMAP_DISPLAY_TYPE_HDMI
:
340 case OMAP_DISPLAY_TYPE_VENC
:
341 case OMAP_DISPLAY_TYPE_SDI
:
344 case OMAP_DISPLAY_TYPE_DBI
:
345 case OMAP_DISPLAY_TYPE_DSI
:
346 bpp
= dssdev
->ctrl
.pixel_size
;
355 void dss_init_device(struct platform_device
*pdev
,
356 struct omap_dss_device
*dssdev
)
358 struct device_attribute
*attr
;
362 switch (dssdev
->type
) {
363 #ifdef CONFIG_OMAP2_DSS_DPI
364 case OMAP_DISPLAY_TYPE_DPI
:
365 r
= dpi_init_display(dssdev
);
368 #ifdef CONFIG_OMAP2_DSS_RFBI
369 case OMAP_DISPLAY_TYPE_DBI
:
370 r
= rfbi_init_display(dssdev
);
373 #ifdef CONFIG_OMAP2_DSS_VENC
374 case OMAP_DISPLAY_TYPE_VENC
:
375 r
= venc_init_display(dssdev
);
378 #ifdef CONFIG_OMAP2_DSS_SDI
379 case OMAP_DISPLAY_TYPE_SDI
:
380 r
= sdi_init_display(dssdev
);
383 #ifdef CONFIG_OMAP2_DSS_DSI
384 case OMAP_DISPLAY_TYPE_DSI
:
385 r
= dsi_init_display(dssdev
);
388 case OMAP_DISPLAY_TYPE_HDMI
:
389 r
= hdmi_init_display(dssdev
);
392 DSSERR("Support for display '%s' not compiled in.\n",
398 DSSERR("failed to init display %s\n", dssdev
->name
);
402 /* create device sysfs files */
404 while ((attr
= display_sysfs_attrs
[i
++]) != NULL
) {
405 r
= device_create_file(&dssdev
->dev
, attr
);
407 DSSERR("failed to create sysfs file\n");
410 /* create display? sysfs links */
411 r
= sysfs_create_link(&pdev
->dev
.kobj
, &dssdev
->dev
.kobj
,
412 dev_name(&dssdev
->dev
));
414 DSSERR("failed to create sysfs display link\n");
417 void dss_uninit_device(struct platform_device
*pdev
,
418 struct omap_dss_device
*dssdev
)
420 struct device_attribute
*attr
;
423 sysfs_remove_link(&pdev
->dev
.kobj
, dev_name(&dssdev
->dev
));
425 while ((attr
= display_sysfs_attrs
[i
++]) != NULL
)
426 device_remove_file(&dssdev
->dev
, attr
);
429 dssdev
->manager
->unset_device(dssdev
->manager
);
432 static int dss_suspend_device(struct device
*dev
, void *data
)
435 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
437 if (dssdev
->state
!= OMAP_DSS_DISPLAY_ACTIVE
) {
438 dssdev
->activate_after_resume
= false;
442 if (!dssdev
->driver
->suspend
) {
443 DSSERR("display '%s' doesn't implement suspend\n",
448 r
= dssdev
->driver
->suspend(dssdev
);
452 dssdev
->activate_after_resume
= true;
457 int dss_suspend_all_devices(void)
460 struct bus_type
*bus
= dss_get_bus();
462 r
= bus_for_each_dev(bus
, NULL
, NULL
, dss_suspend_device
);
464 /* resume all displays that were suspended */
465 dss_resume_all_devices();
472 static int dss_resume_device(struct device
*dev
, void *data
)
475 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
477 if (dssdev
->activate_after_resume
&& dssdev
->driver
->resume
) {
478 r
= dssdev
->driver
->resume(dssdev
);
483 dssdev
->activate_after_resume
= false;
488 int dss_resume_all_devices(void)
490 struct bus_type
*bus
= dss_get_bus();
492 return bus_for_each_dev(bus
, NULL
, NULL
, dss_resume_device
);
495 static int dss_disable_device(struct device
*dev
, void *data
)
497 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
499 if (dssdev
->state
!= OMAP_DSS_DISPLAY_DISABLED
)
500 dssdev
->driver
->disable(dssdev
);
505 void dss_disable_all_devices(void)
507 struct bus_type
*bus
= dss_get_bus();
508 bus_for_each_dev(bus
, NULL
, NULL
, dss_disable_device
);
512 void omap_dss_get_device(struct omap_dss_device
*dssdev
)
514 get_device(&dssdev
->dev
);
516 EXPORT_SYMBOL(omap_dss_get_device
);
518 void omap_dss_put_device(struct omap_dss_device
*dssdev
)
520 put_device(&dssdev
->dev
);
522 EXPORT_SYMBOL(omap_dss_put_device
);
524 /* ref count of the found device is incremented. ref count
525 * of from-device is decremented. */
526 struct omap_dss_device
*omap_dss_get_next_device(struct omap_dss_device
*from
)
529 struct device
*dev_start
= NULL
;
530 struct omap_dss_device
*dssdev
= NULL
;
532 int match(struct device
*dev
, void *data
)
538 dev_start
= &from
->dev
;
539 dev
= bus_find_device(dss_get_bus(), dev_start
, NULL
, match
);
541 dssdev
= to_dss_device(dev
);
543 put_device(&from
->dev
);
547 EXPORT_SYMBOL(omap_dss_get_next_device
);
549 struct omap_dss_device
*omap_dss_find_device(void *data
,
550 int (*match
)(struct omap_dss_device
*dssdev
, void *data
))
552 struct omap_dss_device
*dssdev
= NULL
;
554 while ((dssdev
= omap_dss_get_next_device(dssdev
)) != NULL
) {
555 if (match(dssdev
, data
))
561 EXPORT_SYMBOL(omap_dss_find_device
);
563 int omap_dss_start_device(struct omap_dss_device
*dssdev
)
565 if (!dssdev
->driver
) {
566 DSSDBG("no driver\n");
570 if (!try_module_get(dssdev
->dev
.driver
->owner
)) {
576 EXPORT_SYMBOL(omap_dss_start_device
);
578 void omap_dss_stop_device(struct omap_dss_device
*dssdev
)
580 module_put(dssdev
->dev
.driver
->owner
);
582 EXPORT_SYMBOL(omap_dss_stop_device
);