OMAP: DSS2: Taal: Improve taal_power_on() error handling
[linux-2.6/btrfs-unstable.git] / drivers / video / omap2 / displays / panel-taal.c
blob2c2f1924b2c329610ec07aaa71c1663147c68fc6
1 /*
2 * Taal DSI command mode panel
4 * Copyright (C) 2009 Nokia Corporation
5 * Author: Tomi Valkeinen <tomi.valkeinen@nokia.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.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
20 /*#define DEBUG*/
22 #include <linux/module.h>
23 #include <linux/delay.h>
24 #include <linux/err.h>
25 #include <linux/jiffies.h>
26 #include <linux/sched.h>
27 #include <linux/backlight.h>
28 #include <linux/fb.h>
29 #include <linux/interrupt.h>
30 #include <linux/gpio.h>
31 #include <linux/completion.h>
32 #include <linux/workqueue.h>
33 #include <linux/slab.h>
34 #include <linux/mutex.h>
36 #include <plat/display.h>
38 /* DSI Virtual channel. Hardcoded for now. */
39 #define TCH 0
41 #define DCS_READ_NUM_ERRORS 0x05
42 #define DCS_READ_POWER_MODE 0x0a
43 #define DCS_READ_MADCTL 0x0b
44 #define DCS_READ_PIXEL_FORMAT 0x0c
45 #define DCS_RDDSDR 0x0f
46 #define DCS_SLEEP_IN 0x10
47 #define DCS_SLEEP_OUT 0x11
48 #define DCS_DISPLAY_OFF 0x28
49 #define DCS_DISPLAY_ON 0x29
50 #define DCS_COLUMN_ADDR 0x2a
51 #define DCS_PAGE_ADDR 0x2b
52 #define DCS_MEMORY_WRITE 0x2c
53 #define DCS_TEAR_OFF 0x34
54 #define DCS_TEAR_ON 0x35
55 #define DCS_MEM_ACC_CTRL 0x36
56 #define DCS_PIXEL_FORMAT 0x3a
57 #define DCS_BRIGHTNESS 0x51
58 #define DCS_CTRL_DISPLAY 0x53
59 #define DCS_WRITE_CABC 0x55
60 #define DCS_READ_CABC 0x56
61 #define DCS_GET_ID1 0xda
62 #define DCS_GET_ID2 0xdb
63 #define DCS_GET_ID3 0xdc
65 /* #define TAAL_USE_ESD_CHECK */
66 #define TAAL_ESD_CHECK_PERIOD msecs_to_jiffies(5000)
68 static int _taal_enable_te(struct omap_dss_device *dssdev, bool enable);
70 struct taal_data {
71 struct mutex lock;
73 struct backlight_device *bldev;
75 unsigned long hw_guard_end; /* next value of jiffies when we can
76 * issue the next sleep in/out command
78 unsigned long hw_guard_wait; /* max guard time in jiffies */
80 struct omap_dss_device *dssdev;
82 bool enabled;
83 u8 rotate;
84 bool mirror;
86 bool te_enabled;
87 bool use_ext_te;
88 struct completion te_completion;
90 bool use_dsi_bl;
92 bool cabc_broken;
93 unsigned cabc_mode;
95 bool intro_printed;
97 struct workqueue_struct *esd_wq;
98 struct delayed_work esd_work;
101 static void taal_esd_work(struct work_struct *work);
103 static void hw_guard_start(struct taal_data *td, int guard_msec)
105 td->hw_guard_wait = msecs_to_jiffies(guard_msec);
106 td->hw_guard_end = jiffies + td->hw_guard_wait;
109 static void hw_guard_wait(struct taal_data *td)
111 unsigned long wait = td->hw_guard_end - jiffies;
113 if ((long)wait > 0 && wait <= td->hw_guard_wait) {
114 set_current_state(TASK_UNINTERRUPTIBLE);
115 schedule_timeout(wait);
119 static int taal_dcs_read_1(u8 dcs_cmd, u8 *data)
121 int r;
122 u8 buf[1];
124 r = dsi_vc_dcs_read(TCH, dcs_cmd, buf, 1);
126 if (r < 0)
127 return r;
129 *data = buf[0];
131 return 0;
134 static int taal_dcs_write_0(u8 dcs_cmd)
136 return dsi_vc_dcs_write(TCH, &dcs_cmd, 1);
139 static int taal_dcs_write_1(u8 dcs_cmd, u8 param)
141 u8 buf[2];
142 buf[0] = dcs_cmd;
143 buf[1] = param;
144 return dsi_vc_dcs_write(TCH, buf, 2);
147 static int taal_sleep_in(struct taal_data *td)
150 u8 cmd;
151 int r;
153 hw_guard_wait(td);
155 cmd = DCS_SLEEP_IN;
156 r = dsi_vc_dcs_write_nosync(TCH, &cmd, 1);
157 if (r)
158 return r;
160 hw_guard_start(td, 120);
162 msleep(5);
164 return 0;
167 static int taal_sleep_out(struct taal_data *td)
169 int r;
171 hw_guard_wait(td);
173 r = taal_dcs_write_0(DCS_SLEEP_OUT);
174 if (r)
175 return r;
177 hw_guard_start(td, 120);
179 msleep(5);
181 return 0;
184 static int taal_get_id(u8 *id1, u8 *id2, u8 *id3)
186 int r;
188 r = taal_dcs_read_1(DCS_GET_ID1, id1);
189 if (r)
190 return r;
191 r = taal_dcs_read_1(DCS_GET_ID2, id2);
192 if (r)
193 return r;
194 r = taal_dcs_read_1(DCS_GET_ID3, id3);
195 if (r)
196 return r;
198 return 0;
201 static int taal_set_addr_mode(u8 rotate, bool mirror)
203 int r;
204 u8 mode;
205 int b5, b6, b7;
207 r = taal_dcs_read_1(DCS_READ_MADCTL, &mode);
208 if (r)
209 return r;
211 switch (rotate) {
212 default:
213 case 0:
214 b7 = 0;
215 b6 = 0;
216 b5 = 0;
217 break;
218 case 1:
219 b7 = 0;
220 b6 = 1;
221 b5 = 1;
222 break;
223 case 2:
224 b7 = 1;
225 b6 = 1;
226 b5 = 0;
227 break;
228 case 3:
229 b7 = 1;
230 b6 = 0;
231 b5 = 1;
232 break;
235 if (mirror)
236 b6 = !b6;
238 mode &= ~((1<<7) | (1<<6) | (1<<5));
239 mode |= (b7 << 7) | (b6 << 6) | (b5 << 5);
241 return taal_dcs_write_1(DCS_MEM_ACC_CTRL, mode);
244 static int taal_set_update_window(u16 x, u16 y, u16 w, u16 h)
246 int r;
247 u16 x1 = x;
248 u16 x2 = x + w - 1;
249 u16 y1 = y;
250 u16 y2 = y + h - 1;
252 u8 buf[5];
253 buf[0] = DCS_COLUMN_ADDR;
254 buf[1] = (x1 >> 8) & 0xff;
255 buf[2] = (x1 >> 0) & 0xff;
256 buf[3] = (x2 >> 8) & 0xff;
257 buf[4] = (x2 >> 0) & 0xff;
259 r = dsi_vc_dcs_write_nosync(TCH, buf, sizeof(buf));
260 if (r)
261 return r;
263 buf[0] = DCS_PAGE_ADDR;
264 buf[1] = (y1 >> 8) & 0xff;
265 buf[2] = (y1 >> 0) & 0xff;
266 buf[3] = (y2 >> 8) & 0xff;
267 buf[4] = (y2 >> 0) & 0xff;
269 r = dsi_vc_dcs_write_nosync(TCH, buf, sizeof(buf));
270 if (r)
271 return r;
273 dsi_vc_send_bta_sync(TCH);
275 return r;
278 static int taal_bl_update_status(struct backlight_device *dev)
280 struct omap_dss_device *dssdev = dev_get_drvdata(&dev->dev);
281 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
282 int r;
283 int level;
285 if (dev->props.fb_blank == FB_BLANK_UNBLANK &&
286 dev->props.power == FB_BLANK_UNBLANK)
287 level = dev->props.brightness;
288 else
289 level = 0;
291 dev_dbg(&dssdev->dev, "update brightness to %d\n", level);
293 mutex_lock(&td->lock);
295 if (td->use_dsi_bl) {
296 if (td->enabled) {
297 dsi_bus_lock();
298 r = taal_dcs_write_1(DCS_BRIGHTNESS, level);
299 dsi_bus_unlock();
300 } else {
301 r = 0;
303 } else {
304 if (!dssdev->set_backlight)
305 r = -EINVAL;
306 else
307 r = dssdev->set_backlight(dssdev, level);
310 mutex_unlock(&td->lock);
312 return r;
315 static int taal_bl_get_intensity(struct backlight_device *dev)
317 if (dev->props.fb_blank == FB_BLANK_UNBLANK &&
318 dev->props.power == FB_BLANK_UNBLANK)
319 return dev->props.brightness;
321 return 0;
324 static struct backlight_ops taal_bl_ops = {
325 .get_brightness = taal_bl_get_intensity,
326 .update_status = taal_bl_update_status,
329 static void taal_get_timings(struct omap_dss_device *dssdev,
330 struct omap_video_timings *timings)
332 *timings = dssdev->panel.timings;
335 static void taal_get_resolution(struct omap_dss_device *dssdev,
336 u16 *xres, u16 *yres)
338 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
340 if (td->rotate == 0 || td->rotate == 2) {
341 *xres = dssdev->panel.timings.x_res;
342 *yres = dssdev->panel.timings.y_res;
343 } else {
344 *yres = dssdev->panel.timings.x_res;
345 *xres = dssdev->panel.timings.y_res;
349 static irqreturn_t taal_te_isr(int irq, void *data)
351 struct omap_dss_device *dssdev = data;
352 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
354 complete_all(&td->te_completion);
356 return IRQ_HANDLED;
359 static ssize_t taal_num_errors_show(struct device *dev,
360 struct device_attribute *attr, char *buf)
362 struct omap_dss_device *dssdev = to_dss_device(dev);
363 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
364 u8 errors;
365 int r;
367 mutex_lock(&td->lock);
369 if (td->enabled) {
370 dsi_bus_lock();
371 r = taal_dcs_read_1(DCS_READ_NUM_ERRORS, &errors);
372 dsi_bus_unlock();
373 } else {
374 r = -ENODEV;
377 mutex_unlock(&td->lock);
379 if (r)
380 return r;
382 return snprintf(buf, PAGE_SIZE, "%d\n", errors);
385 static ssize_t taal_hw_revision_show(struct device *dev,
386 struct device_attribute *attr, char *buf)
388 struct omap_dss_device *dssdev = to_dss_device(dev);
389 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
390 u8 id1, id2, id3;
391 int r;
393 mutex_lock(&td->lock);
395 if (td->enabled) {
396 dsi_bus_lock();
397 r = taal_get_id(&id1, &id2, &id3);
398 dsi_bus_unlock();
399 } else {
400 r = -ENODEV;
403 mutex_unlock(&td->lock);
405 if (r)
406 return r;
408 return snprintf(buf, PAGE_SIZE, "%02x.%02x.%02x\n", id1, id2, id3);
411 static const char *cabc_modes[] = {
412 "off", /* used also always when CABC is not supported */
413 "ui",
414 "still-image",
415 "moving-image",
418 static ssize_t show_cabc_mode(struct device *dev,
419 struct device_attribute *attr,
420 char *buf)
422 struct omap_dss_device *dssdev = to_dss_device(dev);
423 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
424 const char *mode_str;
425 int mode;
426 int len;
428 mode = td->cabc_mode;
430 mode_str = "unknown";
431 if (mode >= 0 && mode < ARRAY_SIZE(cabc_modes))
432 mode_str = cabc_modes[mode];
433 len = snprintf(buf, PAGE_SIZE, "%s\n", mode_str);
435 return len < PAGE_SIZE - 1 ? len : PAGE_SIZE - 1;
438 static ssize_t store_cabc_mode(struct device *dev,
439 struct device_attribute *attr,
440 const char *buf, size_t count)
442 struct omap_dss_device *dssdev = to_dss_device(dev);
443 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
444 int i;
446 for (i = 0; i < ARRAY_SIZE(cabc_modes); i++) {
447 if (sysfs_streq(cabc_modes[i], buf))
448 break;
451 if (i == ARRAY_SIZE(cabc_modes))
452 return -EINVAL;
454 mutex_lock(&td->lock);
456 if (td->enabled) {
457 dsi_bus_lock();
458 if (!td->cabc_broken)
459 taal_dcs_write_1(DCS_WRITE_CABC, i);
460 dsi_bus_unlock();
463 td->cabc_mode = i;
465 mutex_unlock(&td->lock);
467 return count;
470 static ssize_t show_cabc_available_modes(struct device *dev,
471 struct device_attribute *attr,
472 char *buf)
474 int len;
475 int i;
477 for (i = 0, len = 0;
478 len < PAGE_SIZE && i < ARRAY_SIZE(cabc_modes); i++)
479 len += snprintf(&buf[len], PAGE_SIZE - len, "%s%s%s",
480 i ? " " : "", cabc_modes[i],
481 i == ARRAY_SIZE(cabc_modes) - 1 ? "\n" : "");
483 return len < PAGE_SIZE ? len : PAGE_SIZE - 1;
486 static DEVICE_ATTR(num_dsi_errors, S_IRUGO, taal_num_errors_show, NULL);
487 static DEVICE_ATTR(hw_revision, S_IRUGO, taal_hw_revision_show, NULL);
488 static DEVICE_ATTR(cabc_mode, S_IRUGO | S_IWUSR,
489 show_cabc_mode, store_cabc_mode);
490 static DEVICE_ATTR(cabc_available_modes, S_IRUGO,
491 show_cabc_available_modes, NULL);
493 static struct attribute *taal_attrs[] = {
494 &dev_attr_num_dsi_errors.attr,
495 &dev_attr_hw_revision.attr,
496 &dev_attr_cabc_mode.attr,
497 &dev_attr_cabc_available_modes.attr,
498 NULL,
501 static struct attribute_group taal_attr_group = {
502 .attrs = taal_attrs,
505 static void taal_hw_reset(struct omap_dss_device *dssdev)
507 if (dssdev->reset_gpio == -1)
508 return;
510 gpio_set_value(dssdev->reset_gpio, 1);
511 udelay(10);
512 /* reset the panel */
513 gpio_set_value(dssdev->reset_gpio, 0);
514 /* assert reset for at least 10us */
515 udelay(10);
516 gpio_set_value(dssdev->reset_gpio, 1);
517 /* wait 5ms after releasing reset */
518 msleep(5);
521 static int taal_probe(struct omap_dss_device *dssdev)
523 struct backlight_properties props;
524 struct taal_data *td;
525 struct backlight_device *bldev;
526 int r;
528 const struct omap_video_timings taal_panel_timings = {
529 .x_res = 864,
530 .y_res = 480,
533 dev_dbg(&dssdev->dev, "probe\n");
535 dssdev->panel.config = OMAP_DSS_LCD_TFT;
536 dssdev->panel.timings = taal_panel_timings;
537 dssdev->ctrl.pixel_size = 24;
539 td = kzalloc(sizeof(*td), GFP_KERNEL);
540 if (!td) {
541 r = -ENOMEM;
542 goto err0;
544 td->dssdev = dssdev;
546 mutex_init(&td->lock);
548 td->esd_wq = create_singlethread_workqueue("taal_esd");
549 if (td->esd_wq == NULL) {
550 dev_err(&dssdev->dev, "can't create ESD workqueue\n");
551 r = -ENOMEM;
552 goto err1;
554 INIT_DELAYED_WORK_DEFERRABLE(&td->esd_work, taal_esd_work);
556 dev_set_drvdata(&dssdev->dev, td);
558 taal_hw_reset(dssdev);
560 /* if no platform set_backlight() defined, presume DSI backlight
561 * control */
562 memset(&props, 0, sizeof(struct backlight_properties));
563 if (!dssdev->set_backlight)
564 td->use_dsi_bl = true;
566 if (td->use_dsi_bl)
567 props.max_brightness = 255;
568 else
569 props.max_brightness = 127;
570 bldev = backlight_device_register("taal", &dssdev->dev, dssdev,
571 &taal_bl_ops, &props);
572 if (IS_ERR(bldev)) {
573 r = PTR_ERR(bldev);
574 goto err2;
577 td->bldev = bldev;
579 bldev->props.fb_blank = FB_BLANK_UNBLANK;
580 bldev->props.power = FB_BLANK_UNBLANK;
581 if (td->use_dsi_bl)
582 bldev->props.brightness = 255;
583 else
584 bldev->props.brightness = 127;
586 taal_bl_update_status(bldev);
588 if (dssdev->phy.dsi.ext_te) {
589 int gpio = dssdev->phy.dsi.ext_te_gpio;
591 r = gpio_request(gpio, "taal irq");
592 if (r) {
593 dev_err(&dssdev->dev, "GPIO request failed\n");
594 goto err3;
597 gpio_direction_input(gpio);
599 r = request_irq(gpio_to_irq(gpio), taal_te_isr,
600 IRQF_DISABLED | IRQF_TRIGGER_RISING,
601 "taal vsync", dssdev);
603 if (r) {
604 dev_err(&dssdev->dev, "IRQ request failed\n");
605 gpio_free(gpio);
606 goto err4;
609 init_completion(&td->te_completion);
611 td->use_ext_te = true;
614 r = sysfs_create_group(&dssdev->dev.kobj, &taal_attr_group);
615 if (r) {
616 dev_err(&dssdev->dev, "failed to create sysfs files\n");
617 goto err5;
620 return 0;
621 err5:
622 if (td->use_ext_te)
623 free_irq(gpio_to_irq(dssdev->phy.dsi.ext_te_gpio), dssdev);
624 err4:
625 if (td->use_ext_te)
626 gpio_free(dssdev->phy.dsi.ext_te_gpio);
627 err3:
628 backlight_device_unregister(bldev);
629 err2:
630 destroy_workqueue(td->esd_wq);
631 err1:
632 kfree(td);
633 err0:
634 return r;
637 static void taal_remove(struct omap_dss_device *dssdev)
639 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
640 struct backlight_device *bldev;
642 dev_dbg(&dssdev->dev, "remove\n");
644 sysfs_remove_group(&dssdev->dev.kobj, &taal_attr_group);
646 if (td->use_ext_te) {
647 int gpio = dssdev->phy.dsi.ext_te_gpio;
648 free_irq(gpio_to_irq(gpio), dssdev);
649 gpio_free(gpio);
652 bldev = td->bldev;
653 bldev->props.power = FB_BLANK_POWERDOWN;
654 taal_bl_update_status(bldev);
655 backlight_device_unregister(bldev);
657 cancel_delayed_work_sync(&td->esd_work);
658 destroy_workqueue(td->esd_wq);
660 /* reset, to be sure that the panel is in a valid state */
661 taal_hw_reset(dssdev);
663 kfree(td);
666 static int taal_power_on(struct omap_dss_device *dssdev)
668 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
669 u8 id1, id2, id3;
670 int r;
672 /* it seems we have to wait a bit until taal is ready */
673 msleep(5);
675 dsi_bus_lock();
677 r = omapdss_dsi_display_enable(dssdev);
678 if (r) {
679 dev_err(&dssdev->dev, "failed to enable DSI\n");
680 goto err0;
683 taal_hw_reset(dssdev);
685 omapdss_dsi_vc_enable_hs(TCH, false);
687 r = taal_sleep_out(td);
688 if (r)
689 goto err;
691 r = taal_get_id(&id1, &id2, &id3);
692 if (r)
693 goto err;
695 /* on early revisions CABC is broken */
696 if (id2 == 0x00 || id2 == 0xff || id2 == 0x81)
697 td->cabc_broken = true;
699 r = taal_dcs_write_1(DCS_BRIGHTNESS, 0xff);
700 if (r)
701 goto err;
703 r = taal_dcs_write_1(DCS_CTRL_DISPLAY,
704 (1<<2) | (1<<5)); /* BL | BCTRL */
705 if (r)
706 goto err;
708 r = taal_dcs_write_1(DCS_PIXEL_FORMAT, 0x7); /* 24bit/pixel */
709 if (r)
710 goto err;
712 r = taal_set_addr_mode(td->rotate, td->mirror);
713 if (r)
714 goto err;
716 if (!td->cabc_broken) {
717 r = taal_dcs_write_1(DCS_WRITE_CABC, td->cabc_mode);
718 if (r)
719 goto err;
722 r = taal_dcs_write_0(DCS_DISPLAY_ON);
723 if (r)
724 goto err;
726 r = _taal_enable_te(dssdev, td->te_enabled);
727 if (r)
728 goto err;
730 #ifdef TAAL_USE_ESD_CHECK
731 queue_delayed_work(td->esd_wq, &td->esd_work, TAAL_ESD_CHECK_PERIOD);
732 #endif
734 td->enabled = 1;
736 if (!td->intro_printed) {
737 dev_info(&dssdev->dev, "revision %02x.%02x.%02x\n",
738 id1, id2, id3);
739 if (td->cabc_broken)
740 dev_info(&dssdev->dev,
741 "old Taal version, CABC disabled\n");
742 td->intro_printed = true;
745 omapdss_dsi_vc_enable_hs(TCH, true);
747 dsi_bus_unlock();
749 return 0;
750 err:
751 dev_err(&dssdev->dev, "error while enabling panel, issuing HW reset\n");
753 taal_hw_reset(dssdev);
755 omapdss_dsi_display_disable(dssdev);
756 err0:
757 dsi_bus_unlock();
759 return r;
762 static void taal_power_off(struct omap_dss_device *dssdev)
764 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
765 int r;
767 dsi_bus_lock();
769 cancel_delayed_work(&td->esd_work);
771 r = taal_dcs_write_0(DCS_DISPLAY_OFF);
772 if (!r) {
773 r = taal_sleep_in(td);
774 /* wait a bit so that the message goes through */
775 msleep(10);
778 if (r) {
779 dev_err(&dssdev->dev,
780 "error disabling panel, issuing HW reset\n");
781 taal_hw_reset(dssdev);
784 omapdss_dsi_display_disable(dssdev);
786 td->enabled = 0;
788 dsi_bus_unlock();
791 static int taal_enable(struct omap_dss_device *dssdev)
793 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
794 int r;
796 dev_dbg(&dssdev->dev, "enable\n");
798 mutex_lock(&td->lock);
800 if (dssdev->state != OMAP_DSS_DISPLAY_DISABLED) {
801 r = -EINVAL;
802 goto err;
805 r = taal_power_on(dssdev);
806 if (r)
807 goto err;
809 dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;
811 mutex_unlock(&td->lock);
813 return 0;
814 err:
815 dev_dbg(&dssdev->dev, "enable failed\n");
816 mutex_unlock(&td->lock);
817 return r;
820 static void taal_disable(struct omap_dss_device *dssdev)
822 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
824 dev_dbg(&dssdev->dev, "disable\n");
826 mutex_lock(&td->lock);
828 if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE)
829 taal_power_off(dssdev);
831 dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
833 mutex_unlock(&td->lock);
836 static int taal_suspend(struct omap_dss_device *dssdev)
838 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
839 int r;
841 dev_dbg(&dssdev->dev, "suspend\n");
843 mutex_lock(&td->lock);
845 if (dssdev->state != OMAP_DSS_DISPLAY_ACTIVE) {
846 r = -EINVAL;
847 goto err;
850 taal_power_off(dssdev);
851 dssdev->state = OMAP_DSS_DISPLAY_SUSPENDED;
853 mutex_unlock(&td->lock);
855 return 0;
856 err:
857 mutex_unlock(&td->lock);
858 return r;
861 static int taal_resume(struct omap_dss_device *dssdev)
863 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
864 int r;
866 dev_dbg(&dssdev->dev, "resume\n");
868 mutex_lock(&td->lock);
870 if (dssdev->state != OMAP_DSS_DISPLAY_SUSPENDED) {
871 r = -EINVAL;
872 goto err;
875 r = taal_power_on(dssdev);
876 dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;
878 mutex_unlock(&td->lock);
880 return r;
881 err:
882 mutex_unlock(&td->lock);
883 return r;
886 static void taal_framedone_cb(int err, void *data)
888 struct omap_dss_device *dssdev = data;
889 dev_dbg(&dssdev->dev, "framedone, err %d\n", err);
890 dsi_bus_unlock();
893 static int taal_update(struct omap_dss_device *dssdev,
894 u16 x, u16 y, u16 w, u16 h)
896 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
897 int r;
899 dev_dbg(&dssdev->dev, "update %d, %d, %d x %d\n", x, y, w, h);
901 mutex_lock(&td->lock);
902 dsi_bus_lock();
904 if (!td->enabled) {
905 r = 0;
906 goto err;
909 r = omap_dsi_prepare_update(dssdev, &x, &y, &w, &h);
910 if (r)
911 goto err;
913 r = taal_set_update_window(x, y, w, h);
914 if (r)
915 goto err;
917 r = omap_dsi_update(dssdev, TCH, x, y, w, h,
918 taal_framedone_cb, dssdev);
919 if (r)
920 goto err;
922 /* note: no bus_unlock here. unlock is in framedone_cb */
923 mutex_unlock(&td->lock);
924 return 0;
925 err:
926 dsi_bus_unlock();
927 mutex_unlock(&td->lock);
928 return r;
931 static int taal_sync(struct omap_dss_device *dssdev)
933 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
935 dev_dbg(&dssdev->dev, "sync\n");
937 mutex_lock(&td->lock);
938 dsi_bus_lock();
939 dsi_bus_unlock();
940 mutex_unlock(&td->lock);
942 dev_dbg(&dssdev->dev, "sync done\n");
944 return 0;
947 static int _taal_enable_te(struct omap_dss_device *dssdev, bool enable)
949 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
950 int r;
952 td->te_enabled = enable;
954 if (enable)
955 r = taal_dcs_write_1(DCS_TEAR_ON, 0);
956 else
957 r = taal_dcs_write_0(DCS_TEAR_OFF);
959 omapdss_dsi_enable_te(dssdev, enable);
961 /* XXX for some reason, DSI TE breaks if we don't wait here.
962 * Panel bug? Needs more studying */
963 msleep(100);
965 return r;
968 static int taal_enable_te(struct omap_dss_device *dssdev, bool enable)
970 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
971 int r;
973 mutex_lock(&td->lock);
974 dsi_bus_lock();
976 r = _taal_enable_te(dssdev, enable);
978 dsi_bus_unlock();
979 mutex_unlock(&td->lock);
981 return r;
984 static int taal_get_te(struct omap_dss_device *dssdev)
986 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
987 int r;
989 mutex_lock(&td->lock);
990 r = td->te_enabled;
991 mutex_unlock(&td->lock);
993 return r;
996 static int taal_rotate(struct omap_dss_device *dssdev, u8 rotate)
998 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
999 int r;
1001 dev_dbg(&dssdev->dev, "rotate %d\n", rotate);
1003 mutex_lock(&td->lock);
1004 dsi_bus_lock();
1006 if (td->enabled) {
1007 r = taal_set_addr_mode(rotate, td->mirror);
1008 if (r)
1009 goto err;
1012 td->rotate = rotate;
1014 dsi_bus_unlock();
1015 mutex_unlock(&td->lock);
1016 return 0;
1017 err:
1018 dsi_bus_unlock();
1019 mutex_unlock(&td->lock);
1020 return r;
1023 static u8 taal_get_rotate(struct omap_dss_device *dssdev)
1025 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1026 int r;
1028 mutex_lock(&td->lock);
1029 r = td->rotate;
1030 mutex_unlock(&td->lock);
1032 return r;
1035 static int taal_mirror(struct omap_dss_device *dssdev, bool enable)
1037 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1038 int r;
1040 dev_dbg(&dssdev->dev, "mirror %d\n", enable);
1042 mutex_lock(&td->lock);
1043 dsi_bus_lock();
1044 if (td->enabled) {
1045 r = taal_set_addr_mode(td->rotate, enable);
1046 if (r)
1047 goto err;
1050 td->mirror = enable;
1052 dsi_bus_unlock();
1053 mutex_unlock(&td->lock);
1054 return 0;
1055 err:
1056 dsi_bus_unlock();
1057 mutex_unlock(&td->lock);
1058 return r;
1061 static bool taal_get_mirror(struct omap_dss_device *dssdev)
1063 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1064 int r;
1066 mutex_lock(&td->lock);
1067 r = td->mirror;
1068 mutex_unlock(&td->lock);
1070 return r;
1073 static int taal_run_test(struct omap_dss_device *dssdev, int test_num)
1075 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1076 u8 id1, id2, id3;
1077 int r;
1079 mutex_lock(&td->lock);
1080 dsi_bus_lock();
1082 r = taal_dcs_read_1(DCS_GET_ID1, &id1);
1083 if (r)
1084 goto err;
1085 r = taal_dcs_read_1(DCS_GET_ID2, &id2);
1086 if (r)
1087 goto err;
1088 r = taal_dcs_read_1(DCS_GET_ID3, &id3);
1089 if (r)
1090 goto err;
1092 dsi_bus_unlock();
1093 mutex_unlock(&td->lock);
1094 return 0;
1095 err:
1096 dsi_bus_unlock();
1097 mutex_unlock(&td->lock);
1098 return r;
1101 static int taal_memory_read(struct omap_dss_device *dssdev,
1102 void *buf, size_t size,
1103 u16 x, u16 y, u16 w, u16 h)
1105 int r;
1106 int first = 1;
1107 int plen;
1108 unsigned buf_used = 0;
1109 struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1111 if (size < w * h * 3)
1112 return -ENOMEM;
1114 mutex_lock(&td->lock);
1116 if (!td->enabled) {
1117 r = -ENODEV;
1118 goto err1;
1121 size = min(w * h * 3,
1122 dssdev->panel.timings.x_res *
1123 dssdev->panel.timings.y_res * 3);
1125 dsi_bus_lock();
1127 /* plen 1 or 2 goes into short packet. until checksum error is fixed,
1128 * use short packets. plen 32 works, but bigger packets seem to cause
1129 * an error. */
1130 if (size % 2)
1131 plen = 1;
1132 else
1133 plen = 2;
1135 taal_set_update_window(x, y, w, h);
1137 r = dsi_vc_set_max_rx_packet_size(TCH, plen);
1138 if (r)
1139 goto err2;
1141 while (buf_used < size) {
1142 u8 dcs_cmd = first ? 0x2e : 0x3e;
1143 first = 0;
1145 r = dsi_vc_dcs_read(TCH, dcs_cmd,
1146 buf + buf_used, size - buf_used);
1148 if (r < 0) {
1149 dev_err(&dssdev->dev, "read error\n");
1150 goto err3;
1153 buf_used += r;
1155 if (r < plen) {
1156 dev_err(&dssdev->dev, "short read\n");
1157 break;
1160 if (signal_pending(current)) {
1161 dev_err(&dssdev->dev, "signal pending, "
1162 "aborting memory read\n");
1163 r = -ERESTARTSYS;
1164 goto err3;
1168 r = buf_used;
1170 err3:
1171 dsi_vc_set_max_rx_packet_size(TCH, 1);
1172 err2:
1173 dsi_bus_unlock();
1174 err1:
1175 mutex_unlock(&td->lock);
1176 return r;
1179 static void taal_esd_work(struct work_struct *work)
1181 struct taal_data *td = container_of(work, struct taal_data,
1182 esd_work.work);
1183 struct omap_dss_device *dssdev = td->dssdev;
1184 u8 state1, state2;
1185 int r;
1187 mutex_lock(&td->lock);
1189 if (!td->enabled) {
1190 mutex_unlock(&td->lock);
1191 return;
1194 dsi_bus_lock();
1196 r = taal_dcs_read_1(DCS_RDDSDR, &state1);
1197 if (r) {
1198 dev_err(&dssdev->dev, "failed to read Taal status\n");
1199 goto err;
1202 /* Run self diagnostics */
1203 r = taal_sleep_out(td);
1204 if (r) {
1205 dev_err(&dssdev->dev, "failed to run Taal self-diagnostics\n");
1206 goto err;
1209 r = taal_dcs_read_1(DCS_RDDSDR, &state2);
1210 if (r) {
1211 dev_err(&dssdev->dev, "failed to read Taal status\n");
1212 goto err;
1215 /* Each sleep out command will trigger a self diagnostic and flip
1216 * Bit6 if the test passes.
1218 if (!((state1 ^ state2) & (1 << 6))) {
1219 dev_err(&dssdev->dev, "LCD self diagnostics failed\n");
1220 goto err;
1222 /* Self-diagnostics result is also shown on TE GPIO line. We need
1223 * to re-enable TE after self diagnostics */
1224 if (td->use_ext_te && td->te_enabled) {
1225 r = taal_dcs_write_1(DCS_TEAR_ON, 0);
1226 if (r)
1227 goto err;
1230 dsi_bus_unlock();
1232 queue_delayed_work(td->esd_wq, &td->esd_work, TAAL_ESD_CHECK_PERIOD);
1234 mutex_unlock(&td->lock);
1235 return;
1236 err:
1237 dev_err(&dssdev->dev, "performing LCD reset\n");
1239 taal_power_off(dssdev);
1240 taal_hw_reset(dssdev);
1241 taal_power_on(dssdev);
1243 dsi_bus_unlock();
1245 queue_delayed_work(td->esd_wq, &td->esd_work, TAAL_ESD_CHECK_PERIOD);
1247 mutex_unlock(&td->lock);
1250 static int taal_set_update_mode(struct omap_dss_device *dssdev,
1251 enum omap_dss_update_mode mode)
1253 if (mode != OMAP_DSS_UPDATE_MANUAL)
1254 return -EINVAL;
1255 return 0;
1258 static enum omap_dss_update_mode taal_get_update_mode(
1259 struct omap_dss_device *dssdev)
1261 return OMAP_DSS_UPDATE_MANUAL;
1264 static struct omap_dss_driver taal_driver = {
1265 .probe = taal_probe,
1266 .remove = taal_remove,
1268 .enable = taal_enable,
1269 .disable = taal_disable,
1270 .suspend = taal_suspend,
1271 .resume = taal_resume,
1273 .set_update_mode = taal_set_update_mode,
1274 .get_update_mode = taal_get_update_mode,
1276 .update = taal_update,
1277 .sync = taal_sync,
1279 .get_resolution = taal_get_resolution,
1280 .get_recommended_bpp = omapdss_default_get_recommended_bpp,
1282 .enable_te = taal_enable_te,
1283 .get_te = taal_get_te,
1285 .set_rotate = taal_rotate,
1286 .get_rotate = taal_get_rotate,
1287 .set_mirror = taal_mirror,
1288 .get_mirror = taal_get_mirror,
1289 .run_test = taal_run_test,
1290 .memory_read = taal_memory_read,
1292 .get_timings = taal_get_timings,
1294 .driver = {
1295 .name = "taal",
1296 .owner = THIS_MODULE,
1300 static int __init taal_init(void)
1302 omap_dss_register_driver(&taal_driver);
1304 return 0;
1307 static void __exit taal_exit(void)
1309 omap_dss_unregister_driver(&taal_driver);
1312 module_init(taal_init);
1313 module_exit(taal_exit);
1315 MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@nokia.com>");
1316 MODULE_DESCRIPTION("Taal Driver");
1317 MODULE_LICENSE("GPL");