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/list.h>
29 #include <linux/platform_device.h>
31 #include <plat/display.h>
34 static LIST_HEAD(display_list
);
36 static ssize_t
display_enabled_show(struct device
*dev
,
37 struct device_attribute
*attr
, char *buf
)
39 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
40 bool enabled
= dssdev
->state
!= OMAP_DSS_DISPLAY_DISABLED
;
42 return snprintf(buf
, PAGE_SIZE
, "%d\n", enabled
);
45 static ssize_t
display_enabled_store(struct device
*dev
,
46 struct device_attribute
*attr
,
47 const char *buf
, size_t size
)
49 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
52 enabled
= simple_strtoul(buf
, NULL
, 10);
54 if (enabled
!= (dssdev
->state
!= OMAP_DSS_DISPLAY_DISABLED
)) {
56 r
= dssdev
->enable(dssdev
);
60 dssdev
->disable(dssdev
);
67 static ssize_t
display_upd_mode_show(struct device
*dev
,
68 struct device_attribute
*attr
, char *buf
)
70 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
71 enum omap_dss_update_mode mode
= OMAP_DSS_UPDATE_AUTO
;
72 if (dssdev
->get_update_mode
)
73 mode
= dssdev
->get_update_mode(dssdev
);
74 return snprintf(buf
, PAGE_SIZE
, "%d\n", mode
);
77 static ssize_t
display_upd_mode_store(struct device
*dev
,
78 struct device_attribute
*attr
,
79 const char *buf
, size_t size
)
81 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
83 enum omap_dss_update_mode mode
;
85 val
= simple_strtoul(buf
, NULL
, 10);
88 case OMAP_DSS_UPDATE_DISABLED
:
89 case OMAP_DSS_UPDATE_AUTO
:
90 case OMAP_DSS_UPDATE_MANUAL
:
91 mode
= (enum omap_dss_update_mode
)val
;
97 r
= dssdev
->set_update_mode(dssdev
, mode
);
104 static ssize_t
display_tear_show(struct device
*dev
,
105 struct device_attribute
*attr
, char *buf
)
107 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
108 return snprintf(buf
, PAGE_SIZE
, "%d\n",
109 dssdev
->get_te
? dssdev
->get_te(dssdev
) : 0);
112 static ssize_t
display_tear_store(struct device
*dev
,
113 struct device_attribute
*attr
, const char *buf
, size_t size
)
115 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
119 if (!dssdev
->enable_te
|| !dssdev
->get_te
)
122 te
= simple_strtoul(buf
, NULL
, 0);
124 r
= dssdev
->enable_te(dssdev
, te
);
131 static ssize_t
display_timings_show(struct device
*dev
,
132 struct device_attribute
*attr
, char *buf
)
134 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
135 struct omap_video_timings t
;
137 if (!dssdev
->get_timings
)
140 dssdev
->get_timings(dssdev
, &t
);
142 return snprintf(buf
, PAGE_SIZE
, "%u,%u/%u/%u/%u,%u/%u/%u/%u\n",
144 t
.x_res
, t
.hfp
, t
.hbp
, t
.hsw
,
145 t
.y_res
, t
.vfp
, t
.vbp
, t
.vsw
);
148 static ssize_t
display_timings_store(struct device
*dev
,
149 struct device_attribute
*attr
, const char *buf
, size_t size
)
151 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
152 struct omap_video_timings t
;
155 if (!dssdev
->set_timings
|| !dssdev
->check_timings
)
159 #ifdef CONFIG_OMAP2_DSS_VENC
160 if (strncmp("pal", buf
, 3) == 0) {
161 t
= omap_dss_pal_timings
;
163 } else if (strncmp("ntsc", buf
, 4) == 0) {
164 t
= omap_dss_ntsc_timings
;
168 if (!found
&& sscanf(buf
, "%u,%hu/%hu/%hu/%hu,%hu/%hu/%hu/%hu",
170 &t
.x_res
, &t
.hfp
, &t
.hbp
, &t
.hsw
,
171 &t
.y_res
, &t
.vfp
, &t
.vbp
, &t
.vsw
) != 9)
174 r
= dssdev
->check_timings(dssdev
, &t
);
178 dssdev
->set_timings(dssdev
, &t
);
183 static ssize_t
display_rotate_show(struct device
*dev
,
184 struct device_attribute
*attr
, char *buf
)
186 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
188 if (!dssdev
->get_rotate
)
190 rotate
= dssdev
->get_rotate(dssdev
);
191 return snprintf(buf
, PAGE_SIZE
, "%u\n", rotate
);
194 static ssize_t
display_rotate_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
);
201 if (!dssdev
->set_rotate
|| !dssdev
->get_rotate
)
204 rot
= simple_strtoul(buf
, NULL
, 0);
206 r
= dssdev
->set_rotate(dssdev
, rot
);
213 static ssize_t
display_mirror_show(struct device
*dev
,
214 struct device_attribute
*attr
, char *buf
)
216 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
218 if (!dssdev
->get_mirror
)
220 mirror
= dssdev
->get_mirror(dssdev
);
221 return snprintf(buf
, PAGE_SIZE
, "%u\n", mirror
);
224 static ssize_t
display_mirror_store(struct device
*dev
,
225 struct device_attribute
*attr
, const char *buf
, size_t size
)
227 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
228 unsigned long mirror
;
231 if (!dssdev
->set_mirror
|| !dssdev
->get_mirror
)
234 mirror
= simple_strtoul(buf
, NULL
, 0);
236 r
= dssdev
->set_mirror(dssdev
, mirror
);
243 static ssize_t
display_wss_show(struct device
*dev
,
244 struct device_attribute
*attr
, char *buf
)
246 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
249 if (!dssdev
->get_wss
)
252 wss
= dssdev
->get_wss(dssdev
);
254 return snprintf(buf
, PAGE_SIZE
, "0x%05x\n", wss
);
257 static ssize_t
display_wss_store(struct device
*dev
,
258 struct device_attribute
*attr
, const char *buf
, size_t size
)
260 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
264 if (!dssdev
->get_wss
|| !dssdev
->set_wss
)
267 if (strict_strtoul(buf
, 0, &wss
))
273 r
= dssdev
->set_wss(dssdev
, wss
);
280 static DEVICE_ATTR(enabled
, S_IRUGO
|S_IWUSR
,
281 display_enabled_show
, display_enabled_store
);
282 static DEVICE_ATTR(update_mode
, S_IRUGO
|S_IWUSR
,
283 display_upd_mode_show
, display_upd_mode_store
);
284 static DEVICE_ATTR(tear_elim
, S_IRUGO
|S_IWUSR
,
285 display_tear_show
, display_tear_store
);
286 static DEVICE_ATTR(timings
, S_IRUGO
|S_IWUSR
,
287 display_timings_show
, display_timings_store
);
288 static DEVICE_ATTR(rotate
, S_IRUGO
|S_IWUSR
,
289 display_rotate_show
, display_rotate_store
);
290 static DEVICE_ATTR(mirror
, S_IRUGO
|S_IWUSR
,
291 display_mirror_show
, display_mirror_store
);
292 static DEVICE_ATTR(wss
, S_IRUGO
|S_IWUSR
,
293 display_wss_show
, display_wss_store
);
295 static struct device_attribute
*display_sysfs_attrs
[] = {
297 &dev_attr_update_mode
,
306 static void default_get_resolution(struct omap_dss_device
*dssdev
,
307 u16
*xres
, u16
*yres
)
309 *xres
= dssdev
->panel
.timings
.x_res
;
310 *yres
= dssdev
->panel
.timings
.y_res
;
313 void default_get_overlay_fifo_thresholds(enum omap_plane plane
,
314 u32 fifo_size
, enum omap_burst_size
*burst_size
,
315 u32
*fifo_low
, u32
*fifo_high
)
317 unsigned burst_size_bytes
;
319 *burst_size
= OMAP_DSS_BURST_16x32
;
320 burst_size_bytes
= 16 * 32 / 8;
322 *fifo_high
= fifo_size
- 1;
323 *fifo_low
= fifo_size
- burst_size_bytes
;
326 static int default_wait_vsync(struct omap_dss_device
*dssdev
)
328 unsigned long timeout
= msecs_to_jiffies(500);
331 if (dssdev
->type
== OMAP_DISPLAY_TYPE_VENC
)
332 irq
= DISPC_IRQ_EVSYNC_ODD
;
334 irq
= DISPC_IRQ_VSYNC
;
336 return omap_dispc_wait_for_irq_interruptible_timeout(irq
, timeout
);
339 static int default_get_recommended_bpp(struct omap_dss_device
*dssdev
)
341 if (dssdev
->panel
.recommended_bpp
)
342 return dssdev
->panel
.recommended_bpp
;
344 switch (dssdev
->type
) {
345 case OMAP_DISPLAY_TYPE_DPI
:
346 if (dssdev
->phy
.dpi
.data_lines
== 24)
351 case OMAP_DISPLAY_TYPE_DBI
:
352 case OMAP_DISPLAY_TYPE_DSI
:
353 if (dssdev
->ctrl
.pixel_size
== 24)
357 case OMAP_DISPLAY_TYPE_VENC
:
358 case OMAP_DISPLAY_TYPE_SDI
:
366 /* Checks if replication logic should be used. Only use for active matrix,
367 * when overlay is in RGB12U or RGB16 mode, and LCD interface is
369 bool dss_use_replication(struct omap_dss_device
*dssdev
,
370 enum omap_color_mode mode
)
374 if (mode
!= OMAP_DSS_COLOR_RGB12U
&& mode
!= OMAP_DSS_COLOR_RGB16
)
377 if (dssdev
->type
== OMAP_DISPLAY_TYPE_DPI
&&
378 (dssdev
->panel
.config
& OMAP_DSS_LCD_TFT
) == 0)
381 switch (dssdev
->type
) {
382 case OMAP_DISPLAY_TYPE_DPI
:
383 bpp
= dssdev
->phy
.dpi
.data_lines
;
385 case OMAP_DISPLAY_TYPE_VENC
:
386 case OMAP_DISPLAY_TYPE_SDI
:
389 case OMAP_DISPLAY_TYPE_DBI
:
390 case OMAP_DISPLAY_TYPE_DSI
:
391 bpp
= dssdev
->ctrl
.pixel_size
;
400 void dss_init_device(struct platform_device
*pdev
,
401 struct omap_dss_device
*dssdev
)
403 struct device_attribute
*attr
;
407 switch (dssdev
->type
) {
408 case OMAP_DISPLAY_TYPE_DPI
:
409 #ifdef CONFIG_OMAP2_DSS_RFBI
410 case OMAP_DISPLAY_TYPE_DBI
:
412 #ifdef CONFIG_OMAP2_DSS_SDI
413 case OMAP_DISPLAY_TYPE_SDI
:
415 #ifdef CONFIG_OMAP2_DSS_DSI
416 case OMAP_DISPLAY_TYPE_DSI
:
418 #ifdef CONFIG_OMAP2_DSS_VENC
419 case OMAP_DISPLAY_TYPE_VENC
:
423 DSSERR("Support for display '%s' not compiled in.\n",
428 dssdev
->get_resolution
= default_get_resolution
;
429 dssdev
->get_recommended_bpp
= default_get_recommended_bpp
;
430 dssdev
->wait_vsync
= default_wait_vsync
;
432 switch (dssdev
->type
) {
433 case OMAP_DISPLAY_TYPE_DPI
:
434 r
= dpi_init_display(dssdev
);
436 #ifdef CONFIG_OMAP2_DSS_RFBI
437 case OMAP_DISPLAY_TYPE_DBI
:
438 r
= rfbi_init_display(dssdev
);
441 #ifdef CONFIG_OMAP2_DSS_VENC
442 case OMAP_DISPLAY_TYPE_VENC
:
443 r
= venc_init_display(dssdev
);
446 #ifdef CONFIG_OMAP2_DSS_SDI
447 case OMAP_DISPLAY_TYPE_SDI
:
448 r
= sdi_init_display(dssdev
);
451 #ifdef CONFIG_OMAP2_DSS_DSI
452 case OMAP_DISPLAY_TYPE_DSI
:
453 r
= dsi_init_display(dssdev
);
461 DSSERR("failed to init display %s\n", dssdev
->name
);
465 /* create device sysfs files */
467 while ((attr
= display_sysfs_attrs
[i
++]) != NULL
) {
468 r
= device_create_file(&dssdev
->dev
, attr
);
470 DSSERR("failed to create sysfs file\n");
473 /* create display? sysfs links */
474 r
= sysfs_create_link(&pdev
->dev
.kobj
, &dssdev
->dev
.kobj
,
475 dev_name(&dssdev
->dev
));
477 DSSERR("failed to create sysfs display link\n");
480 void dss_uninit_device(struct platform_device
*pdev
,
481 struct omap_dss_device
*dssdev
)
483 struct device_attribute
*attr
;
486 sysfs_remove_link(&pdev
->dev
.kobj
, dev_name(&dssdev
->dev
));
488 while ((attr
= display_sysfs_attrs
[i
++]) != NULL
)
489 device_remove_file(&dssdev
->dev
, attr
);
492 dssdev
->manager
->unset_device(dssdev
->manager
);
495 static int dss_suspend_device(struct device
*dev
, void *data
)
498 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
500 if (dssdev
->state
!= OMAP_DSS_DISPLAY_ACTIVE
) {
501 dssdev
->activate_after_resume
= false;
505 if (!dssdev
->suspend
) {
506 DSSERR("display '%s' doesn't implement suspend\n",
511 r
= dssdev
->suspend(dssdev
);
515 dssdev
->activate_after_resume
= true;
520 int dss_suspend_all_devices(void)
523 struct bus_type
*bus
= dss_get_bus();
525 r
= bus_for_each_dev(bus
, NULL
, NULL
, dss_suspend_device
);
527 /* resume all displays that were suspended */
528 dss_resume_all_devices();
535 static int dss_resume_device(struct device
*dev
, void *data
)
538 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
540 if (dssdev
->activate_after_resume
&& dssdev
->resume
) {
541 r
= dssdev
->resume(dssdev
);
546 dssdev
->activate_after_resume
= false;
551 int dss_resume_all_devices(void)
553 struct bus_type
*bus
= dss_get_bus();
555 return bus_for_each_dev(bus
, NULL
, NULL
, dss_resume_device
);
558 static int dss_disable_device(struct device
*dev
, void *data
)
560 struct omap_dss_device
*dssdev
= to_dss_device(dev
);
561 dssdev
->disable(dssdev
);
565 void dss_disable_all_devices(void)
567 struct bus_type
*bus
= dss_get_bus();
568 bus_for_each_dev(bus
, NULL
, NULL
, dss_disable_device
);
572 void omap_dss_get_device(struct omap_dss_device
*dssdev
)
574 get_device(&dssdev
->dev
);
576 EXPORT_SYMBOL(omap_dss_get_device
);
578 void omap_dss_put_device(struct omap_dss_device
*dssdev
)
580 put_device(&dssdev
->dev
);
582 EXPORT_SYMBOL(omap_dss_put_device
);
584 /* ref count of the found device is incremented. ref count
585 * of from-device is decremented. */
586 struct omap_dss_device
*omap_dss_get_next_device(struct omap_dss_device
*from
)
589 struct device
*dev_start
= NULL
;
590 struct omap_dss_device
*dssdev
= NULL
;
592 int match(struct device
*dev
, void *data
)
594 /* skip panels connected to controllers */
595 if (to_dss_device(dev
)->panel
.ctrl
)
602 dev_start
= &from
->dev
;
603 dev
= bus_find_device(dss_get_bus(), dev_start
, NULL
, match
);
605 dssdev
= to_dss_device(dev
);
607 put_device(&from
->dev
);
611 EXPORT_SYMBOL(omap_dss_get_next_device
);
613 struct omap_dss_device
*omap_dss_find_device(void *data
,
614 int (*match
)(struct omap_dss_device
*dssdev
, void *data
))
616 struct omap_dss_device
*dssdev
= NULL
;
618 while ((dssdev
= omap_dss_get_next_device(dssdev
)) != NULL
) {
619 if (match(dssdev
, data
))
625 EXPORT_SYMBOL(omap_dss_find_device
);
627 int omap_dss_start_device(struct omap_dss_device
*dssdev
)
631 if (!dssdev
->driver
) {
632 DSSDBG("no driver\n");
637 if (dssdev
->ctrl
.panel
&& !dssdev
->ctrl
.panel
->driver
) {
638 DSSDBG("no panel driver\n");
643 if (!try_module_get(dssdev
->dev
.driver
->owner
)) {
648 if (dssdev
->ctrl
.panel
) {
649 if (!try_module_get(dssdev
->ctrl
.panel
->dev
.driver
->owner
)) {
657 module_put(dssdev
->dev
.driver
->owner
);
661 EXPORT_SYMBOL(omap_dss_start_device
);
663 void omap_dss_stop_device(struct omap_dss_device
*dssdev
)
665 if (dssdev
->ctrl
.panel
)
666 module_put(dssdev
->ctrl
.panel
->dev
.driver
->owner
);
668 module_put(dssdev
->dev
.driver
->owner
);
670 EXPORT_SYMBOL(omap_dss_stop_device
);