blob: af8aae7ef814ea035133ec9978454dc28077e7ef [file] [log] [blame]
Tomi Valkeineneed07e02009-08-07 13:43:20 +03001/*
2 * linux/drivers/video/omap2/dss/display.c
3 *
4 * Copyright (C) 2009 Nokia Corporation
5 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
6 *
7 * Some code and ideas taken from drivers/video/omap/ driver
8 * by Imre Deak.
9 *
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.
13 *
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
17 * more details.
18 *
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/>.
21 */
22
23#define DSS_SUBSYS_NAME "DISPLAY"
24
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>
30
31#include <plat/display.h>
32#include "dss.h"
33
34static LIST_HEAD(display_list);
35
36static ssize_t display_enabled_show(struct device *dev,
37 struct device_attribute *attr, char *buf)
38{
39 struct omap_dss_device *dssdev = to_dss_device(dev);
40 bool enabled = dssdev->state != OMAP_DSS_DISPLAY_DISABLED;
41
42 return snprintf(buf, PAGE_SIZE, "%d\n", enabled);
43}
44
45static ssize_t display_enabled_store(struct device *dev,
46 struct device_attribute *attr,
47 const char *buf, size_t size)
48{
49 struct omap_dss_device *dssdev = to_dss_device(dev);
50 bool enabled, r;
51
52 enabled = simple_strtoul(buf, NULL, 10);
53
54 if (enabled != (dssdev->state != OMAP_DSS_DISPLAY_DISABLED)) {
55 if (enabled) {
56 r = dssdev->enable(dssdev);
57 if (r)
58 return r;
59 } else {
60 dssdev->disable(dssdev);
61 }
62 }
63
64 return size;
65}
66
67static ssize_t display_upd_mode_show(struct device *dev,
68 struct device_attribute *attr, char *buf)
69{
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);
75}
76
77static ssize_t display_upd_mode_store(struct device *dev,
78 struct device_attribute *attr,
79 const char *buf, size_t size)
80{
81 struct omap_dss_device *dssdev = to_dss_device(dev);
82 int val, r;
83 enum omap_dss_update_mode mode;
84
85 val = simple_strtoul(buf, NULL, 10);
86
87 switch (val) {
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;
92 break;
93 default:
94 return -EINVAL;
95 }
96
97 r = dssdev->set_update_mode(dssdev, mode);
98 if (r)
99 return r;
100
101 return size;
102}
103
104static ssize_t display_tear_show(struct device *dev,
105 struct device_attribute *attr, char *buf)
106{
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);
110}
111
112static ssize_t display_tear_store(struct device *dev,
113 struct device_attribute *attr, const char *buf, size_t size)
114{
115 struct omap_dss_device *dssdev = to_dss_device(dev);
116 unsigned long te;
117 int r;
118
119 if (!dssdev->enable_te || !dssdev->get_te)
120 return -ENOENT;
121
122 te = simple_strtoul(buf, NULL, 0);
123
124 r = dssdev->enable_te(dssdev, te);
125 if (r)
126 return r;
127
128 return size;
129}
130
131static ssize_t display_timings_show(struct device *dev,
132 struct device_attribute *attr, char *buf)
133{
134 struct omap_dss_device *dssdev = to_dss_device(dev);
135 struct omap_video_timings t;
136
137 if (!dssdev->get_timings)
138 return -ENOENT;
139
140 dssdev->get_timings(dssdev, &t);
141
142 return snprintf(buf, PAGE_SIZE, "%u,%u/%u/%u/%u,%u/%u/%u/%u\n",
143 t.pixel_clock,
144 t.x_res, t.hfp, t.hbp, t.hsw,
145 t.y_res, t.vfp, t.vbp, t.vsw);
146}
147
148static ssize_t display_timings_store(struct device *dev,
149 struct device_attribute *attr, const char *buf, size_t size)
150{
151 struct omap_dss_device *dssdev = to_dss_device(dev);
152 struct omap_video_timings t;
153 int r, found;
154
155 if (!dssdev->set_timings || !dssdev->check_timings)
156 return -ENOENT;
157
158 found = 0;
159#ifdef CONFIG_OMAP2_DSS_VENC
160 if (strncmp("pal", buf, 3) == 0) {
161 t = omap_dss_pal_timings;
162 found = 1;
163 } else if (strncmp("ntsc", buf, 4) == 0) {
164 t = omap_dss_ntsc_timings;
165 found = 1;
166 }
167#endif
168 if (!found && sscanf(buf, "%u,%hu/%hu/%hu/%hu,%hu/%hu/%hu/%hu",
169 &t.pixel_clock,
170 &t.x_res, &t.hfp, &t.hbp, &t.hsw,
171 &t.y_res, &t.vfp, &t.vbp, &t.vsw) != 9)
172 return -EINVAL;
173
174 r = dssdev->check_timings(dssdev, &t);
175 if (r)
176 return r;
177
178 dssdev->set_timings(dssdev, &t);
179
180 return size;
181}
182
183static ssize_t display_rotate_show(struct device *dev,
184 struct device_attribute *attr, char *buf)
185{
186 struct omap_dss_device *dssdev = to_dss_device(dev);
187 int rotate;
Tomi Valkeinen87424e12010-01-08 16:52:48 +0200188 if (!dssdev->driver->get_rotate)
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300189 return -ENOENT;
Tomi Valkeinen87424e12010-01-08 16:52:48 +0200190 rotate = dssdev->driver->get_rotate(dssdev);
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300191 return snprintf(buf, PAGE_SIZE, "%u\n", rotate);
192}
193
194static ssize_t display_rotate_store(struct device *dev,
195 struct device_attribute *attr, const char *buf, size_t size)
196{
197 struct omap_dss_device *dssdev = to_dss_device(dev);
198 unsigned long rot;
199 int r;
200
Tomi Valkeinen87424e12010-01-08 16:52:48 +0200201 if (!dssdev->driver->set_rotate || !dssdev->driver->get_rotate)
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300202 return -ENOENT;
203
204 rot = simple_strtoul(buf, NULL, 0);
205
Tomi Valkeinen87424e12010-01-08 16:52:48 +0200206 r = dssdev->driver->set_rotate(dssdev, rot);
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300207 if (r)
208 return r;
209
210 return size;
211}
212
213static ssize_t display_mirror_show(struct device *dev,
214 struct device_attribute *attr, char *buf)
215{
216 struct omap_dss_device *dssdev = to_dss_device(dev);
217 int mirror;
Tomi Valkeinen8d8aa612010-01-08 16:30:33 +0200218 if (!dssdev->driver->get_mirror)
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300219 return -ENOENT;
Tomi Valkeinen8d8aa612010-01-08 16:30:33 +0200220 mirror = dssdev->driver->get_mirror(dssdev);
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300221 return snprintf(buf, PAGE_SIZE, "%u\n", mirror);
222}
223
224static ssize_t display_mirror_store(struct device *dev,
225 struct device_attribute *attr, const char *buf, size_t size)
226{
227 struct omap_dss_device *dssdev = to_dss_device(dev);
228 unsigned long mirror;
229 int r;
230
Tomi Valkeinen8d8aa612010-01-08 16:30:33 +0200231 if (!dssdev->driver->set_mirror || !dssdev->driver->get_mirror)
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300232 return -ENOENT;
233
234 mirror = simple_strtoul(buf, NULL, 0);
235
Tomi Valkeinen8d8aa612010-01-08 16:30:33 +0200236 r = dssdev->driver->set_mirror(dssdev, mirror);
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300237 if (r)
238 return r;
239
240 return size;
241}
242
243static ssize_t display_wss_show(struct device *dev,
244 struct device_attribute *attr, char *buf)
245{
246 struct omap_dss_device *dssdev = to_dss_device(dev);
247 unsigned int wss;
248
249 if (!dssdev->get_wss)
250 return -ENOENT;
251
252 wss = dssdev->get_wss(dssdev);
253
254 return snprintf(buf, PAGE_SIZE, "0x%05x\n", wss);
255}
256
257static ssize_t display_wss_store(struct device *dev,
258 struct device_attribute *attr, const char *buf, size_t size)
259{
260 struct omap_dss_device *dssdev = to_dss_device(dev);
261 unsigned long wss;
262 int r;
263
264 if (!dssdev->get_wss || !dssdev->set_wss)
265 return -ENOENT;
266
267 if (strict_strtoul(buf, 0, &wss))
268 return -EINVAL;
269
270 if (wss > 0xfffff)
271 return -EINVAL;
272
273 r = dssdev->set_wss(dssdev, wss);
274 if (r)
275 return r;
276
277 return size;
278}
279
280static DEVICE_ATTR(enabled, S_IRUGO|S_IWUSR,
281 display_enabled_show, display_enabled_store);
282static DEVICE_ATTR(update_mode, S_IRUGO|S_IWUSR,
283 display_upd_mode_show, display_upd_mode_store);
284static DEVICE_ATTR(tear_elim, S_IRUGO|S_IWUSR,
285 display_tear_show, display_tear_store);
286static DEVICE_ATTR(timings, S_IRUGO|S_IWUSR,
287 display_timings_show, display_timings_store);
288static DEVICE_ATTR(rotate, S_IRUGO|S_IWUSR,
289 display_rotate_show, display_rotate_store);
290static DEVICE_ATTR(mirror, S_IRUGO|S_IWUSR,
291 display_mirror_show, display_mirror_store);
292static DEVICE_ATTR(wss, S_IRUGO|S_IWUSR,
293 display_wss_show, display_wss_store);
294
295static struct device_attribute *display_sysfs_attrs[] = {
296 &dev_attr_enabled,
297 &dev_attr_update_mode,
298 &dev_attr_tear_elim,
299 &dev_attr_timings,
300 &dev_attr_rotate,
301 &dev_attr_mirror,
302 &dev_attr_wss,
303 NULL
304};
305
Tomi Valkeinen96adcec2010-01-11 13:54:33 +0200306void omapdss_default_get_resolution(struct omap_dss_device *dssdev,
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300307 u16 *xres, u16 *yres)
308{
309 *xres = dssdev->panel.timings.x_res;
310 *yres = dssdev->panel.timings.y_res;
311}
Tomi Valkeinen96adcec2010-01-11 13:54:33 +0200312EXPORT_SYMBOL(omapdss_default_get_resolution);
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300313
314void default_get_overlay_fifo_thresholds(enum omap_plane plane,
315 u32 fifo_size, enum omap_burst_size *burst_size,
316 u32 *fifo_low, u32 *fifo_high)
317{
318 unsigned burst_size_bytes;
319
320 *burst_size = OMAP_DSS_BURST_16x32;
321 burst_size_bytes = 16 * 32 / 8;
322
323 *fifo_high = fifo_size - 1;
324 *fifo_low = fifo_size - burst_size_bytes;
325}
326
Tomi Valkeinena2699502010-01-11 14:33:40 +0200327int omapdss_default_get_recommended_bpp(struct omap_dss_device *dssdev)
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300328{
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300329 switch (dssdev->type) {
330 case OMAP_DISPLAY_TYPE_DPI:
331 if (dssdev->phy.dpi.data_lines == 24)
332 return 24;
333 else
334 return 16;
335
336 case OMAP_DISPLAY_TYPE_DBI:
337 case OMAP_DISPLAY_TYPE_DSI:
338 if (dssdev->ctrl.pixel_size == 24)
339 return 24;
340 else
341 return 16;
342 case OMAP_DISPLAY_TYPE_VENC:
343 case OMAP_DISPLAY_TYPE_SDI:
344 return 24;
345 return 24;
346 default:
347 BUG();
348 }
349}
Tomi Valkeinena2699502010-01-11 14:33:40 +0200350EXPORT_SYMBOL(omapdss_default_get_recommended_bpp);
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300351
352/* Checks if replication logic should be used. Only use for active matrix,
353 * when overlay is in RGB12U or RGB16 mode, and LCD interface is
354 * 18bpp or 24bpp */
355bool dss_use_replication(struct omap_dss_device *dssdev,
356 enum omap_color_mode mode)
357{
358 int bpp;
359
360 if (mode != OMAP_DSS_COLOR_RGB12U && mode != OMAP_DSS_COLOR_RGB16)
361 return false;
362
363 if (dssdev->type == OMAP_DISPLAY_TYPE_DPI &&
364 (dssdev->panel.config & OMAP_DSS_LCD_TFT) == 0)
365 return false;
366
367 switch (dssdev->type) {
368 case OMAP_DISPLAY_TYPE_DPI:
369 bpp = dssdev->phy.dpi.data_lines;
370 break;
371 case OMAP_DISPLAY_TYPE_VENC:
372 case OMAP_DISPLAY_TYPE_SDI:
373 bpp = 24;
374 break;
375 case OMAP_DISPLAY_TYPE_DBI:
376 case OMAP_DISPLAY_TYPE_DSI:
377 bpp = dssdev->ctrl.pixel_size;
378 break;
379 default:
380 BUG();
381 }
382
383 return bpp > 16;
384}
385
386void dss_init_device(struct platform_device *pdev,
387 struct omap_dss_device *dssdev)
388{
389 struct device_attribute *attr;
390 int i;
391 int r;
392
393 switch (dssdev->type) {
394 case OMAP_DISPLAY_TYPE_DPI:
395#ifdef CONFIG_OMAP2_DSS_RFBI
396 case OMAP_DISPLAY_TYPE_DBI:
397#endif
398#ifdef CONFIG_OMAP2_DSS_SDI
399 case OMAP_DISPLAY_TYPE_SDI:
400#endif
401#ifdef CONFIG_OMAP2_DSS_DSI
402 case OMAP_DISPLAY_TYPE_DSI:
403#endif
404#ifdef CONFIG_OMAP2_DSS_VENC
405 case OMAP_DISPLAY_TYPE_VENC:
406#endif
407 break;
408 default:
409 DSSERR("Support for display '%s' not compiled in.\n",
410 dssdev->name);
411 return;
412 }
413
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300414 switch (dssdev->type) {
415 case OMAP_DISPLAY_TYPE_DPI:
416 r = dpi_init_display(dssdev);
417 break;
418#ifdef CONFIG_OMAP2_DSS_RFBI
419 case OMAP_DISPLAY_TYPE_DBI:
420 r = rfbi_init_display(dssdev);
421 break;
422#endif
423#ifdef CONFIG_OMAP2_DSS_VENC
424 case OMAP_DISPLAY_TYPE_VENC:
425 r = venc_init_display(dssdev);
426 break;
427#endif
428#ifdef CONFIG_OMAP2_DSS_SDI
429 case OMAP_DISPLAY_TYPE_SDI:
430 r = sdi_init_display(dssdev);
431 break;
432#endif
433#ifdef CONFIG_OMAP2_DSS_DSI
434 case OMAP_DISPLAY_TYPE_DSI:
435 r = dsi_init_display(dssdev);
436 break;
437#endif
438 default:
439 BUG();
440 }
441
442 if (r) {
443 DSSERR("failed to init display %s\n", dssdev->name);
444 return;
445 }
446
447 /* create device sysfs files */
448 i = 0;
449 while ((attr = display_sysfs_attrs[i++]) != NULL) {
450 r = device_create_file(&dssdev->dev, attr);
451 if (r)
452 DSSERR("failed to create sysfs file\n");
453 }
454
455 /* create display? sysfs links */
456 r = sysfs_create_link(&pdev->dev.kobj, &dssdev->dev.kobj,
457 dev_name(&dssdev->dev));
458 if (r)
459 DSSERR("failed to create sysfs display link\n");
460}
461
462void dss_uninit_device(struct platform_device *pdev,
463 struct omap_dss_device *dssdev)
464{
465 struct device_attribute *attr;
466 int i = 0;
467
468 sysfs_remove_link(&pdev->dev.kobj, dev_name(&dssdev->dev));
469
470 while ((attr = display_sysfs_attrs[i++]) != NULL)
471 device_remove_file(&dssdev->dev, attr);
472
473 if (dssdev->manager)
474 dssdev->manager->unset_device(dssdev->manager);
475}
476
477static int dss_suspend_device(struct device *dev, void *data)
478{
479 int r;
480 struct omap_dss_device *dssdev = to_dss_device(dev);
481
482 if (dssdev->state != OMAP_DSS_DISPLAY_ACTIVE) {
483 dssdev->activate_after_resume = false;
484 return 0;
485 }
486
487 if (!dssdev->suspend) {
488 DSSERR("display '%s' doesn't implement suspend\n",
489 dssdev->name);
490 return -ENOSYS;
491 }
492
493 r = dssdev->suspend(dssdev);
494 if (r)
495 return r;
496
497 dssdev->activate_after_resume = true;
498
499 return 0;
500}
501
502int dss_suspend_all_devices(void)
503{
504 int r;
505 struct bus_type *bus = dss_get_bus();
506
507 r = bus_for_each_dev(bus, NULL, NULL, dss_suspend_device);
508 if (r) {
509 /* resume all displays that were suspended */
510 dss_resume_all_devices();
511 return r;
512 }
513
514 return 0;
515}
516
517static int dss_resume_device(struct device *dev, void *data)
518{
519 int r;
520 struct omap_dss_device *dssdev = to_dss_device(dev);
521
522 if (dssdev->activate_after_resume && dssdev->resume) {
523 r = dssdev->resume(dssdev);
524 if (r)
525 return r;
526 }
527
528 dssdev->activate_after_resume = false;
529
530 return 0;
531}
532
533int dss_resume_all_devices(void)
534{
535 struct bus_type *bus = dss_get_bus();
536
537 return bus_for_each_dev(bus, NULL, NULL, dss_resume_device);
538}
539
540static int dss_disable_device(struct device *dev, void *data)
541{
542 struct omap_dss_device *dssdev = to_dss_device(dev);
543 dssdev->disable(dssdev);
544 return 0;
545}
546
547void dss_disable_all_devices(void)
548{
549 struct bus_type *bus = dss_get_bus();
550 bus_for_each_dev(bus, NULL, NULL, dss_disable_device);
551}
552
553
554void omap_dss_get_device(struct omap_dss_device *dssdev)
555{
556 get_device(&dssdev->dev);
557}
558EXPORT_SYMBOL(omap_dss_get_device);
559
560void omap_dss_put_device(struct omap_dss_device *dssdev)
561{
562 put_device(&dssdev->dev);
563}
564EXPORT_SYMBOL(omap_dss_put_device);
565
566/* ref count of the found device is incremented. ref count
567 * of from-device is decremented. */
568struct omap_dss_device *omap_dss_get_next_device(struct omap_dss_device *from)
569{
570 struct device *dev;
571 struct device *dev_start = NULL;
572 struct omap_dss_device *dssdev = NULL;
573
574 int match(struct device *dev, void *data)
575 {
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300576 return 1;
577 }
578
579 if (from)
580 dev_start = &from->dev;
581 dev = bus_find_device(dss_get_bus(), dev_start, NULL, match);
582 if (dev)
583 dssdev = to_dss_device(dev);
584 if (from)
585 put_device(&from->dev);
586
587 return dssdev;
588}
589EXPORT_SYMBOL(omap_dss_get_next_device);
590
591struct omap_dss_device *omap_dss_find_device(void *data,
592 int (*match)(struct omap_dss_device *dssdev, void *data))
593{
594 struct omap_dss_device *dssdev = NULL;
595
596 while ((dssdev = omap_dss_get_next_device(dssdev)) != NULL) {
597 if (match(dssdev, data))
598 return dssdev;
599 }
600
601 return NULL;
602}
603EXPORT_SYMBOL(omap_dss_find_device);
604
605int omap_dss_start_device(struct omap_dss_device *dssdev)
606{
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300607 if (!dssdev->driver) {
608 DSSDBG("no driver\n");
Tomi Valkeinene020f9a2010-02-17 13:36:48 +0200609 return -ENODEV;
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300610 }
611
612 if (!try_module_get(dssdev->dev.driver->owner)) {
Tomi Valkeinene020f9a2010-02-17 13:36:48 +0200613 return -ENODEV;
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300614 }
615
616 return 0;
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300617}
618EXPORT_SYMBOL(omap_dss_start_device);
619
620void omap_dss_stop_device(struct omap_dss_device *dssdev)
621{
Tomi Valkeineneed07e02009-08-07 13:43:20 +0300622 module_put(dssdev->dev.driver->owner);
623}
624EXPORT_SYMBOL(omap_dss_stop_device);
625