]> git.karo-electronics.de Git - mv-sheeva.git/blob - drivers/video/omap2/displays/panel-taal.c
Merge tag 'v2.6.38' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[mv-sheeva.git] / drivers / video / omap2 / displays / panel-taal.c
1 /*
2  * Taal DSI command mode panel
3  *
4  * Copyright (C) 2009 Nokia Corporation
5  * Author: Tomi Valkeinen <tomi.valkeinen@nokia.com>
6  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 /*#define DEBUG*/
21
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/workqueue.h>
32 #include <linux/slab.h>
33 #include <linux/regulator/consumer.h>
34 #include <linux/mutex.h>
35
36 #include <plat/display.h>
37 #include <plat/nokia-dsi-panel.h>
38
39 /* DSI Virtual channel. Hardcoded for now. */
40 #define TCH 0
41
42 #define DCS_READ_NUM_ERRORS     0x05
43 #define DCS_READ_POWER_MODE     0x0a
44 #define DCS_READ_MADCTL         0x0b
45 #define DCS_READ_PIXEL_FORMAT   0x0c
46 #define DCS_RDDSDR              0x0f
47 #define DCS_SLEEP_IN            0x10
48 #define DCS_SLEEP_OUT           0x11
49 #define DCS_DISPLAY_OFF         0x28
50 #define DCS_DISPLAY_ON          0x29
51 #define DCS_COLUMN_ADDR         0x2a
52 #define DCS_PAGE_ADDR           0x2b
53 #define DCS_MEMORY_WRITE        0x2c
54 #define DCS_TEAR_OFF            0x34
55 #define DCS_TEAR_ON             0x35
56 #define DCS_MEM_ACC_CTRL        0x36
57 #define DCS_PIXEL_FORMAT        0x3a
58 #define DCS_BRIGHTNESS          0x51
59 #define DCS_CTRL_DISPLAY        0x53
60 #define DCS_WRITE_CABC          0x55
61 #define DCS_READ_CABC           0x56
62 #define DCS_GET_ID1             0xda
63 #define DCS_GET_ID2             0xdb
64 #define DCS_GET_ID3             0xdc
65
66 #define TAAL_ESD_CHECK_PERIOD   msecs_to_jiffies(5000)
67
68 static irqreturn_t taal_te_isr(int irq, void *data);
69 static void taal_te_timeout_work_callback(struct work_struct *work);
70 static int _taal_enable_te(struct omap_dss_device *dssdev, bool enable);
71
72 struct panel_regulator {
73         struct regulator *regulator;
74         const char *name;
75         int min_uV;
76         int max_uV;
77 };
78
79 static void free_regulators(struct panel_regulator *regulators, int n)
80 {
81         int i;
82
83         for (i = 0; i < n; i++) {
84                 /* disable/put in reverse order */
85                 regulator_disable(regulators[n - i - 1].regulator);
86                 regulator_put(regulators[n - i - 1].regulator);
87         }
88 }
89
90 static int init_regulators(struct omap_dss_device *dssdev,
91                         struct panel_regulator *regulators, int n)
92 {
93         int r, i, v;
94
95         for (i = 0; i < n; i++) {
96                 struct regulator *reg;
97
98                 reg = regulator_get(&dssdev->dev, regulators[i].name);
99                 if (IS_ERR(reg)) {
100                         dev_err(&dssdev->dev, "failed to get regulator %s\n",
101                                 regulators[i].name);
102                         r = PTR_ERR(reg);
103                         goto err;
104                 }
105
106                 /* FIXME: better handling of fixed vs. variable regulators */
107                 v = regulator_get_voltage(reg);
108                 if (v < regulators[i].min_uV || v > regulators[i].max_uV) {
109                         r = regulator_set_voltage(reg, regulators[i].min_uV,
110                                                 regulators[i].max_uV);
111                         if (r) {
112                                 dev_err(&dssdev->dev,
113                                         "failed to set regulator %s voltage\n",
114                                         regulators[i].name);
115                                 regulator_put(reg);
116                                 goto err;
117                         }
118                 }
119
120                 r = regulator_enable(reg);
121                 if (r) {
122                         dev_err(&dssdev->dev, "failed to enable regulator %s\n",
123                                 regulators[i].name);
124                         regulator_put(reg);
125                         goto err;
126                 }
127
128                 regulators[i].regulator = reg;
129         }
130
131         return 0;
132
133 err:
134         free_regulators(regulators, i);
135
136         return r;
137 }
138
139 /**
140  * struct panel_config - panel configuration
141  * @name: panel name
142  * @type: panel type
143  * @timings: panel resolution
144  * @sleep: various panel specific delays, passed to msleep() if non-zero
145  * @reset_sequence: reset sequence timings, passed to udelay() if non-zero
146  * @regulators: array of panel regulators
147  * @num_regulators: number of regulators in the array
148  */
149 struct panel_config {
150         const char *name;
151         int type;
152
153         struct omap_video_timings timings;
154
155         struct {
156                 unsigned int sleep_in;
157                 unsigned int sleep_out;
158                 unsigned int hw_reset;
159                 unsigned int enable_te;
160         } sleep;
161
162         struct {
163                 unsigned int high;
164                 unsigned int low;
165         } reset_sequence;
166
167         struct panel_regulator *regulators;
168         int num_regulators;
169 };
170
171 enum {
172         PANEL_TAAL,
173 };
174
175 static struct panel_config panel_configs[] = {
176         {
177                 .name           = "taal",
178                 .type           = PANEL_TAAL,
179                 .timings        = {
180                         .x_res          = 864,
181                         .y_res          = 480,
182                 },
183                 .sleep          = {
184                         .sleep_in       = 5,
185                         .sleep_out      = 5,
186                         .hw_reset       = 5,
187                         .enable_te      = 100, /* possible panel bug */
188                 },
189                 .reset_sequence = {
190                         .high           = 10,
191                         .low            = 10,
192                 },
193         },
194 };
195
196 struct taal_data {
197         struct mutex lock;
198
199         struct backlight_device *bldev;
200
201         unsigned long   hw_guard_end;   /* next value of jiffies when we can
202                                          * issue the next sleep in/out command
203                                          */
204         unsigned long   hw_guard_wait;  /* max guard time in jiffies */
205
206         struct omap_dss_device *dssdev;
207
208         bool enabled;
209         u8 rotate;
210         bool mirror;
211
212         bool te_enabled;
213
214         atomic_t do_update;
215         struct {
216                 u16 x;
217                 u16 y;
218                 u16 w;
219                 u16 h;
220         } update_region;
221         struct delayed_work te_timeout_work;
222
223         bool use_dsi_bl;
224
225         bool cabc_broken;
226         unsigned cabc_mode;
227
228         bool intro_printed;
229
230         struct workqueue_struct *esd_wq;
231         struct delayed_work esd_work;
232
233         struct panel_config *panel_config;
234 };
235
236 static inline struct nokia_dsi_panel_data
237 *get_panel_data(const struct omap_dss_device *dssdev)
238 {
239         return (struct nokia_dsi_panel_data *) dssdev->data;
240 }
241
242 static void taal_esd_work(struct work_struct *work);
243
244 static void hw_guard_start(struct taal_data *td, int guard_msec)
245 {
246         td->hw_guard_wait = msecs_to_jiffies(guard_msec);
247         td->hw_guard_end = jiffies + td->hw_guard_wait;
248 }
249
250 static void hw_guard_wait(struct taal_data *td)
251 {
252         unsigned long wait = td->hw_guard_end - jiffies;
253
254         if ((long)wait > 0 && wait <= td->hw_guard_wait) {
255                 set_current_state(TASK_UNINTERRUPTIBLE);
256                 schedule_timeout(wait);
257         }
258 }
259
260 static int taal_dcs_read_1(u8 dcs_cmd, u8 *data)
261 {
262         int r;
263         u8 buf[1];
264
265         r = dsi_vc_dcs_read(TCH, dcs_cmd, buf, 1);
266
267         if (r < 0)
268                 return r;
269
270         *data = buf[0];
271
272         return 0;
273 }
274
275 static int taal_dcs_write_0(u8 dcs_cmd)
276 {
277         return dsi_vc_dcs_write(TCH, &dcs_cmd, 1);
278 }
279
280 static int taal_dcs_write_1(u8 dcs_cmd, u8 param)
281 {
282         u8 buf[2];
283         buf[0] = dcs_cmd;
284         buf[1] = param;
285         return dsi_vc_dcs_write(TCH, buf, 2);
286 }
287
288 static int taal_sleep_in(struct taal_data *td)
289
290 {
291         u8 cmd;
292         int r;
293
294         hw_guard_wait(td);
295
296         cmd = DCS_SLEEP_IN;
297         r = dsi_vc_dcs_write_nosync(TCH, &cmd, 1);
298         if (r)
299                 return r;
300
301         hw_guard_start(td, 120);
302
303         if (td->panel_config->sleep.sleep_in)
304                 msleep(td->panel_config->sleep.sleep_in);
305
306         return 0;
307 }
308
309 static int taal_sleep_out(struct taal_data *td)
310 {
311         int r;
312
313         hw_guard_wait(td);
314
315         r = taal_dcs_write_0(DCS_SLEEP_OUT);
316         if (r)
317                 return r;
318
319         hw_guard_start(td, 120);
320
321         if (td->panel_config->sleep.sleep_out)
322                 msleep(td->panel_config->sleep.sleep_out);
323
324         return 0;
325 }
326
327 static int taal_get_id(u8 *id1, u8 *id2, u8 *id3)
328 {
329         int r;
330
331         r = taal_dcs_read_1(DCS_GET_ID1, id1);
332         if (r)
333                 return r;
334         r = taal_dcs_read_1(DCS_GET_ID2, id2);
335         if (r)
336                 return r;
337         r = taal_dcs_read_1(DCS_GET_ID3, id3);
338         if (r)
339                 return r;
340
341         return 0;
342 }
343
344 static int taal_set_addr_mode(u8 rotate, bool mirror)
345 {
346         int r;
347         u8 mode;
348         int b5, b6, b7;
349
350         r = taal_dcs_read_1(DCS_READ_MADCTL, &mode);
351         if (r)
352                 return r;
353
354         switch (rotate) {
355         default:
356         case 0:
357                 b7 = 0;
358                 b6 = 0;
359                 b5 = 0;
360                 break;
361         case 1:
362                 b7 = 0;
363                 b6 = 1;
364                 b5 = 1;
365                 break;
366         case 2:
367                 b7 = 1;
368                 b6 = 1;
369                 b5 = 0;
370                 break;
371         case 3:
372                 b7 = 1;
373                 b6 = 0;
374                 b5 = 1;
375                 break;
376         }
377
378         if (mirror)
379                 b6 = !b6;
380
381         mode &= ~((1<<7) | (1<<6) | (1<<5));
382         mode |= (b7 << 7) | (b6 << 6) | (b5 << 5);
383
384         return taal_dcs_write_1(DCS_MEM_ACC_CTRL, mode);
385 }
386
387 static int taal_set_update_window(u16 x, u16 y, u16 w, u16 h)
388 {
389         int r;
390         u16 x1 = x;
391         u16 x2 = x + w - 1;
392         u16 y1 = y;
393         u16 y2 = y + h - 1;
394
395         u8 buf[5];
396         buf[0] = DCS_COLUMN_ADDR;
397         buf[1] = (x1 >> 8) & 0xff;
398         buf[2] = (x1 >> 0) & 0xff;
399         buf[3] = (x2 >> 8) & 0xff;
400         buf[4] = (x2 >> 0) & 0xff;
401
402         r = dsi_vc_dcs_write_nosync(TCH, buf, sizeof(buf));
403         if (r)
404                 return r;
405
406         buf[0] = DCS_PAGE_ADDR;
407         buf[1] = (y1 >> 8) & 0xff;
408         buf[2] = (y1 >> 0) & 0xff;
409         buf[3] = (y2 >> 8) & 0xff;
410         buf[4] = (y2 >> 0) & 0xff;
411
412         r = dsi_vc_dcs_write_nosync(TCH, buf, sizeof(buf));
413         if (r)
414                 return r;
415
416         dsi_vc_send_bta_sync(TCH);
417
418         return r;
419 }
420
421 static int taal_bl_update_status(struct backlight_device *dev)
422 {
423         struct omap_dss_device *dssdev = dev_get_drvdata(&dev->dev);
424         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
425         struct nokia_dsi_panel_data *panel_data = get_panel_data(dssdev);
426         int r;
427         int level;
428
429         if (dev->props.fb_blank == FB_BLANK_UNBLANK &&
430                         dev->props.power == FB_BLANK_UNBLANK)
431                 level = dev->props.brightness;
432         else
433                 level = 0;
434
435         dev_dbg(&dssdev->dev, "update brightness to %d\n", level);
436
437         mutex_lock(&td->lock);
438
439         if (td->use_dsi_bl) {
440                 if (td->enabled) {
441                         dsi_bus_lock();
442                         r = taal_dcs_write_1(DCS_BRIGHTNESS, level);
443                         dsi_bus_unlock();
444                 } else {
445                         r = 0;
446                 }
447         } else {
448                 if (!panel_data->set_backlight)
449                         r = -EINVAL;
450                 else
451                         r = panel_data->set_backlight(dssdev, level);
452         }
453
454         mutex_unlock(&td->lock);
455
456         return r;
457 }
458
459 static int taal_bl_get_intensity(struct backlight_device *dev)
460 {
461         if (dev->props.fb_blank == FB_BLANK_UNBLANK &&
462                         dev->props.power == FB_BLANK_UNBLANK)
463                 return dev->props.brightness;
464
465         return 0;
466 }
467
468 static const struct backlight_ops taal_bl_ops = {
469         .get_brightness = taal_bl_get_intensity,
470         .update_status  = taal_bl_update_status,
471 };
472
473 static void taal_get_timings(struct omap_dss_device *dssdev,
474                         struct omap_video_timings *timings)
475 {
476         *timings = dssdev->panel.timings;
477 }
478
479 static void taal_get_resolution(struct omap_dss_device *dssdev,
480                 u16 *xres, u16 *yres)
481 {
482         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
483
484         if (td->rotate == 0 || td->rotate == 2) {
485                 *xres = dssdev->panel.timings.x_res;
486                 *yres = dssdev->panel.timings.y_res;
487         } else {
488                 *yres = dssdev->panel.timings.x_res;
489                 *xres = dssdev->panel.timings.y_res;
490         }
491 }
492
493 static ssize_t taal_num_errors_show(struct device *dev,
494                 struct device_attribute *attr, char *buf)
495 {
496         struct omap_dss_device *dssdev = to_dss_device(dev);
497         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
498         u8 errors;
499         int r;
500
501         mutex_lock(&td->lock);
502
503         if (td->enabled) {
504                 dsi_bus_lock();
505                 r = taal_dcs_read_1(DCS_READ_NUM_ERRORS, &errors);
506                 dsi_bus_unlock();
507         } else {
508                 r = -ENODEV;
509         }
510
511         mutex_unlock(&td->lock);
512
513         if (r)
514                 return r;
515
516         return snprintf(buf, PAGE_SIZE, "%d\n", errors);
517 }
518
519 static ssize_t taal_hw_revision_show(struct device *dev,
520                 struct device_attribute *attr, char *buf)
521 {
522         struct omap_dss_device *dssdev = to_dss_device(dev);
523         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
524         u8 id1, id2, id3;
525         int r;
526
527         mutex_lock(&td->lock);
528
529         if (td->enabled) {
530                 dsi_bus_lock();
531                 r = taal_get_id(&id1, &id2, &id3);
532                 dsi_bus_unlock();
533         } else {
534                 r = -ENODEV;
535         }
536
537         mutex_unlock(&td->lock);
538
539         if (r)
540                 return r;
541
542         return snprintf(buf, PAGE_SIZE, "%02x.%02x.%02x\n", id1, id2, id3);
543 }
544
545 static const char *cabc_modes[] = {
546         "off",          /* used also always when CABC is not supported */
547         "ui",
548         "still-image",
549         "moving-image",
550 };
551
552 static ssize_t show_cabc_mode(struct device *dev,
553                 struct device_attribute *attr,
554                 char *buf)
555 {
556         struct omap_dss_device *dssdev = to_dss_device(dev);
557         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
558         const char *mode_str;
559         int mode;
560         int len;
561
562         mode = td->cabc_mode;
563
564         mode_str = "unknown";
565         if (mode >= 0 && mode < ARRAY_SIZE(cabc_modes))
566                 mode_str = cabc_modes[mode];
567         len = snprintf(buf, PAGE_SIZE, "%s\n", mode_str);
568
569         return len < PAGE_SIZE - 1 ? len : PAGE_SIZE - 1;
570 }
571
572 static ssize_t store_cabc_mode(struct device *dev,
573                 struct device_attribute *attr,
574                 const char *buf, size_t count)
575 {
576         struct omap_dss_device *dssdev = to_dss_device(dev);
577         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
578         int i;
579
580         for (i = 0; i < ARRAY_SIZE(cabc_modes); i++) {
581                 if (sysfs_streq(cabc_modes[i], buf))
582                         break;
583         }
584
585         if (i == ARRAY_SIZE(cabc_modes))
586                 return -EINVAL;
587
588         mutex_lock(&td->lock);
589
590         if (td->enabled) {
591                 dsi_bus_lock();
592                 if (!td->cabc_broken)
593                         taal_dcs_write_1(DCS_WRITE_CABC, i);
594                 dsi_bus_unlock();
595         }
596
597         td->cabc_mode = i;
598
599         mutex_unlock(&td->lock);
600
601         return count;
602 }
603
604 static ssize_t show_cabc_available_modes(struct device *dev,
605                 struct device_attribute *attr,
606                 char *buf)
607 {
608         int len;
609         int i;
610
611         for (i = 0, len = 0;
612              len < PAGE_SIZE && i < ARRAY_SIZE(cabc_modes); i++)
613                 len += snprintf(&buf[len], PAGE_SIZE - len, "%s%s%s",
614                         i ? " " : "", cabc_modes[i],
615                         i == ARRAY_SIZE(cabc_modes) - 1 ? "\n" : "");
616
617         return len < PAGE_SIZE ? len : PAGE_SIZE - 1;
618 }
619
620 static DEVICE_ATTR(num_dsi_errors, S_IRUGO, taal_num_errors_show, NULL);
621 static DEVICE_ATTR(hw_revision, S_IRUGO, taal_hw_revision_show, NULL);
622 static DEVICE_ATTR(cabc_mode, S_IRUGO | S_IWUSR,
623                 show_cabc_mode, store_cabc_mode);
624 static DEVICE_ATTR(cabc_available_modes, S_IRUGO,
625                 show_cabc_available_modes, NULL);
626
627 static struct attribute *taal_attrs[] = {
628         &dev_attr_num_dsi_errors.attr,
629         &dev_attr_hw_revision.attr,
630         &dev_attr_cabc_mode.attr,
631         &dev_attr_cabc_available_modes.attr,
632         NULL,
633 };
634
635 static struct attribute_group taal_attr_group = {
636         .attrs = taal_attrs,
637 };
638
639 static void taal_hw_reset(struct omap_dss_device *dssdev)
640 {
641         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
642         struct nokia_dsi_panel_data *panel_data = get_panel_data(dssdev);
643
644         if (panel_data->reset_gpio == -1)
645                 return;
646
647         gpio_set_value(panel_data->reset_gpio, 1);
648         if (td->panel_config->reset_sequence.high)
649                 udelay(td->panel_config->reset_sequence.high);
650         /* reset the panel */
651         gpio_set_value(panel_data->reset_gpio, 0);
652         /* assert reset */
653         if (td->panel_config->reset_sequence.low)
654                 udelay(td->panel_config->reset_sequence.low);
655         gpio_set_value(panel_data->reset_gpio, 1);
656         /* wait after releasing reset */
657         if (td->panel_config->sleep.hw_reset)
658                 msleep(td->panel_config->sleep.hw_reset);
659 }
660
661 static int taal_probe(struct omap_dss_device *dssdev)
662 {
663         struct backlight_properties props;
664         struct taal_data *td;
665         struct backlight_device *bldev;
666         struct nokia_dsi_panel_data *panel_data = get_panel_data(dssdev);
667         struct panel_config *panel_config = NULL;
668         int r, i;
669
670         dev_dbg(&dssdev->dev, "probe\n");
671
672         if (!panel_data || !panel_data->name) {
673                 r = -EINVAL;
674                 goto err;
675         }
676
677         for (i = 0; i < ARRAY_SIZE(panel_configs); i++) {
678                 if (strcmp(panel_data->name, panel_configs[i].name) == 0) {
679                         panel_config = &panel_configs[i];
680                         break;
681                 }
682         }
683
684         if (!panel_config) {
685                 r = -EINVAL;
686                 goto err;
687         }
688
689         dssdev->panel.config = OMAP_DSS_LCD_TFT;
690         dssdev->panel.timings = panel_config->timings;
691         dssdev->ctrl.pixel_size = 24;
692
693         td = kzalloc(sizeof(*td), GFP_KERNEL);
694         if (!td) {
695                 r = -ENOMEM;
696                 goto err;
697         }
698         td->dssdev = dssdev;
699         td->panel_config = panel_config;
700
701         mutex_init(&td->lock);
702
703         atomic_set(&td->do_update, 0);
704
705         r = init_regulators(dssdev, panel_config->regulators,
706                         panel_config->num_regulators);
707         if (r)
708                 goto err_reg;
709
710         td->esd_wq = create_singlethread_workqueue("taal_esd");
711         if (td->esd_wq == NULL) {
712                 dev_err(&dssdev->dev, "can't create ESD workqueue\n");
713                 r = -ENOMEM;
714                 goto err_wq;
715         }
716         INIT_DELAYED_WORK_DEFERRABLE(&td->esd_work, taal_esd_work);
717
718         dev_set_drvdata(&dssdev->dev, td);
719
720         taal_hw_reset(dssdev);
721
722         /* if no platform set_backlight() defined, presume DSI backlight
723          * control */
724         memset(&props, 0, sizeof(struct backlight_properties));
725         if (!panel_data->set_backlight)
726                 td->use_dsi_bl = true;
727
728         if (td->use_dsi_bl)
729                 props.max_brightness = 255;
730         else
731                 props.max_brightness = 127;
732         bldev = backlight_device_register("taal", &dssdev->dev, dssdev,
733                                           &taal_bl_ops, &props);
734         if (IS_ERR(bldev)) {
735                 r = PTR_ERR(bldev);
736                 goto err_bl;
737         }
738
739         td->bldev = bldev;
740
741         bldev->props.fb_blank = FB_BLANK_UNBLANK;
742         bldev->props.power = FB_BLANK_UNBLANK;
743         if (td->use_dsi_bl)
744                 bldev->props.brightness = 255;
745         else
746                 bldev->props.brightness = 127;
747
748         taal_bl_update_status(bldev);
749
750         if (panel_data->use_ext_te) {
751                 int gpio = panel_data->ext_te_gpio;
752
753                 r = gpio_request(gpio, "taal irq");
754                 if (r) {
755                         dev_err(&dssdev->dev, "GPIO request failed\n");
756                         goto err_gpio;
757                 }
758
759                 gpio_direction_input(gpio);
760
761                 r = request_irq(gpio_to_irq(gpio), taal_te_isr,
762                                 IRQF_DISABLED | IRQF_TRIGGER_RISING,
763                                 "taal vsync", dssdev);
764
765                 if (r) {
766                         dev_err(&dssdev->dev, "IRQ request failed\n");
767                         gpio_free(gpio);
768                         goto err_irq;
769                 }
770
771                 INIT_DELAYED_WORK_DEFERRABLE(&td->te_timeout_work,
772                                         taal_te_timeout_work_callback);
773
774                 dev_dbg(&dssdev->dev, "Using GPIO TE\n");
775         }
776
777         r = sysfs_create_group(&dssdev->dev.kobj, &taal_attr_group);
778         if (r) {
779                 dev_err(&dssdev->dev, "failed to create sysfs files\n");
780                 goto err_sysfs;
781         }
782
783         return 0;
784 err_sysfs:
785         if (panel_data->use_ext_te)
786                 free_irq(gpio_to_irq(panel_data->ext_te_gpio), dssdev);
787 err_irq:
788         if (panel_data->use_ext_te)
789                 gpio_free(panel_data->ext_te_gpio);
790 err_gpio:
791         backlight_device_unregister(bldev);
792 err_bl:
793         destroy_workqueue(td->esd_wq);
794 err_wq:
795         free_regulators(panel_config->regulators, panel_config->num_regulators);
796 err_reg:
797         kfree(td);
798 err:
799         return r;
800 }
801
802 static void taal_remove(struct omap_dss_device *dssdev)
803 {
804         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
805         struct nokia_dsi_panel_data *panel_data = get_panel_data(dssdev);
806         struct backlight_device *bldev;
807
808         dev_dbg(&dssdev->dev, "remove\n");
809
810         sysfs_remove_group(&dssdev->dev.kobj, &taal_attr_group);
811
812         if (panel_data->use_ext_te) {
813                 int gpio = panel_data->ext_te_gpio;
814                 free_irq(gpio_to_irq(gpio), dssdev);
815                 gpio_free(gpio);
816         }
817
818         bldev = td->bldev;
819         bldev->props.power = FB_BLANK_POWERDOWN;
820         taal_bl_update_status(bldev);
821         backlight_device_unregister(bldev);
822
823         cancel_delayed_work(&td->esd_work);
824         destroy_workqueue(td->esd_wq);
825
826         /* reset, to be sure that the panel is in a valid state */
827         taal_hw_reset(dssdev);
828
829         free_regulators(td->panel_config->regulators,
830                         td->panel_config->num_regulators);
831
832         kfree(td);
833 }
834
835 static int taal_power_on(struct omap_dss_device *dssdev)
836 {
837         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
838         u8 id1, id2, id3;
839         int r;
840
841         r = omapdss_dsi_display_enable(dssdev);
842         if (r) {
843                 dev_err(&dssdev->dev, "failed to enable DSI\n");
844                 goto err0;
845         }
846
847         taal_hw_reset(dssdev);
848
849         omapdss_dsi_vc_enable_hs(TCH, false);
850
851         r = taal_sleep_out(td);
852         if (r)
853                 goto err;
854
855         r = taal_get_id(&id1, &id2, &id3);
856         if (r)
857                 goto err;
858
859         /* on early Taal revisions CABC is broken */
860         if (td->panel_config->type == PANEL_TAAL &&
861                 (id2 == 0x00 || id2 == 0xff || id2 == 0x81))
862                 td->cabc_broken = true;
863
864         r = taal_dcs_write_1(DCS_BRIGHTNESS, 0xff);
865         if (r)
866                 goto err;
867
868         r = taal_dcs_write_1(DCS_CTRL_DISPLAY,
869                         (1<<2) | (1<<5));       /* BL | BCTRL */
870         if (r)
871                 goto err;
872
873         r = taal_dcs_write_1(DCS_PIXEL_FORMAT, 0x7); /* 24bit/pixel */
874         if (r)
875                 goto err;
876
877         r = taal_set_addr_mode(td->rotate, td->mirror);
878         if (r)
879                 goto err;
880
881         if (!td->cabc_broken) {
882                 r = taal_dcs_write_1(DCS_WRITE_CABC, td->cabc_mode);
883                 if (r)
884                         goto err;
885         }
886
887         r = taal_dcs_write_0(DCS_DISPLAY_ON);
888         if (r)
889                 goto err;
890
891         r = _taal_enable_te(dssdev, td->te_enabled);
892         if (r)
893                 goto err;
894
895         td->enabled = 1;
896
897         if (!td->intro_printed) {
898                 dev_info(&dssdev->dev, "%s panel revision %02x.%02x.%02x\n",
899                         td->panel_config->name, id1, id2, id3);
900                 if (td->cabc_broken)
901                         dev_info(&dssdev->dev,
902                                         "old Taal version, CABC disabled\n");
903                 td->intro_printed = true;
904         }
905
906         omapdss_dsi_vc_enable_hs(TCH, true);
907
908         return 0;
909 err:
910         dev_err(&dssdev->dev, "error while enabling panel, issuing HW reset\n");
911
912         taal_hw_reset(dssdev);
913
914         omapdss_dsi_display_disable(dssdev);
915 err0:
916         return r;
917 }
918
919 static void taal_power_off(struct omap_dss_device *dssdev)
920 {
921         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
922         int r;
923
924         r = taal_dcs_write_0(DCS_DISPLAY_OFF);
925         if (!r) {
926                 r = taal_sleep_in(td);
927                 /* HACK: wait a bit so that the message goes through */
928                 msleep(10);
929         }
930
931         if (r) {
932                 dev_err(&dssdev->dev,
933                                 "error disabling panel, issuing HW reset\n");
934                 taal_hw_reset(dssdev);
935         }
936
937         omapdss_dsi_display_disable(dssdev);
938
939         td->enabled = 0;
940 }
941
942 static int taal_enable(struct omap_dss_device *dssdev)
943 {
944         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
945         struct nokia_dsi_panel_data *panel_data = get_panel_data(dssdev);
946         int r;
947
948         dev_dbg(&dssdev->dev, "enable\n");
949
950         mutex_lock(&td->lock);
951
952         if (dssdev->state != OMAP_DSS_DISPLAY_DISABLED) {
953                 r = -EINVAL;
954                 goto err;
955         }
956
957         dsi_bus_lock();
958
959         r = taal_power_on(dssdev);
960
961         dsi_bus_unlock();
962
963         if (r)
964                 goto err;
965
966         if (panel_data->use_esd_check)
967                 queue_delayed_work(td->esd_wq, &td->esd_work,
968                                 TAAL_ESD_CHECK_PERIOD);
969
970         dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;
971
972         mutex_unlock(&td->lock);
973
974         return 0;
975 err:
976         dev_dbg(&dssdev->dev, "enable failed\n");
977         mutex_unlock(&td->lock);
978         return r;
979 }
980
981 static void taal_disable(struct omap_dss_device *dssdev)
982 {
983         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
984
985         dev_dbg(&dssdev->dev, "disable\n");
986
987         mutex_lock(&td->lock);
988
989         cancel_delayed_work(&td->esd_work);
990
991         dsi_bus_lock();
992
993         if (dssdev->state == OMAP_DSS_DISPLAY_ACTIVE)
994                 taal_power_off(dssdev);
995
996         dsi_bus_unlock();
997
998         dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
999
1000         mutex_unlock(&td->lock);
1001 }
1002
1003 static int taal_suspend(struct omap_dss_device *dssdev)
1004 {
1005         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1006         int r;
1007
1008         dev_dbg(&dssdev->dev, "suspend\n");
1009
1010         mutex_lock(&td->lock);
1011
1012         if (dssdev->state != OMAP_DSS_DISPLAY_ACTIVE) {
1013                 r = -EINVAL;
1014                 goto err;
1015         }
1016
1017         cancel_delayed_work(&td->esd_work);
1018
1019         dsi_bus_lock();
1020
1021         taal_power_off(dssdev);
1022
1023         dsi_bus_unlock();
1024
1025         dssdev->state = OMAP_DSS_DISPLAY_SUSPENDED;
1026
1027         mutex_unlock(&td->lock);
1028
1029         return 0;
1030 err:
1031         mutex_unlock(&td->lock);
1032         return r;
1033 }
1034
1035 static int taal_resume(struct omap_dss_device *dssdev)
1036 {
1037         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1038         struct nokia_dsi_panel_data *panel_data = get_panel_data(dssdev);
1039         int r;
1040
1041         dev_dbg(&dssdev->dev, "resume\n");
1042
1043         mutex_lock(&td->lock);
1044
1045         if (dssdev->state != OMAP_DSS_DISPLAY_SUSPENDED) {
1046                 r = -EINVAL;
1047                 goto err;
1048         }
1049
1050         dsi_bus_lock();
1051
1052         r = taal_power_on(dssdev);
1053
1054         dsi_bus_unlock();
1055
1056         if (r) {
1057                 dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
1058         } else {
1059                 dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;
1060                 if (panel_data->use_esd_check)
1061                         queue_delayed_work(td->esd_wq, &td->esd_work,
1062                                         TAAL_ESD_CHECK_PERIOD);
1063         }
1064
1065         mutex_unlock(&td->lock);
1066
1067         return r;
1068 err:
1069         mutex_unlock(&td->lock);
1070         return r;
1071 }
1072
1073 static void taal_framedone_cb(int err, void *data)
1074 {
1075         struct omap_dss_device *dssdev = data;
1076         dev_dbg(&dssdev->dev, "framedone, err %d\n", err);
1077         dsi_bus_unlock();
1078 }
1079
1080 static irqreturn_t taal_te_isr(int irq, void *data)
1081 {
1082         struct omap_dss_device *dssdev = data;
1083         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1084         int old;
1085         int r;
1086
1087         old = atomic_cmpxchg(&td->do_update, 1, 0);
1088
1089         if (old) {
1090                 cancel_delayed_work(&td->te_timeout_work);
1091
1092                 r = omap_dsi_update(dssdev, TCH,
1093                                 td->update_region.x,
1094                                 td->update_region.y,
1095                                 td->update_region.w,
1096                                 td->update_region.h,
1097                                 taal_framedone_cb, dssdev);
1098                 if (r)
1099                         goto err;
1100         }
1101
1102         return IRQ_HANDLED;
1103 err:
1104         dev_err(&dssdev->dev, "start update failed\n");
1105         dsi_bus_unlock();
1106         return IRQ_HANDLED;
1107 }
1108
1109 static void taal_te_timeout_work_callback(struct work_struct *work)
1110 {
1111         struct taal_data *td = container_of(work, struct taal_data,
1112                                         te_timeout_work.work);
1113         struct omap_dss_device *dssdev = td->dssdev;
1114
1115         dev_err(&dssdev->dev, "TE not received for 250ms!\n");
1116
1117         atomic_set(&td->do_update, 0);
1118         dsi_bus_unlock();
1119 }
1120
1121 static int taal_update(struct omap_dss_device *dssdev,
1122                                     u16 x, u16 y, u16 w, u16 h)
1123 {
1124         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1125         struct nokia_dsi_panel_data *panel_data = get_panel_data(dssdev);
1126         int r;
1127
1128         dev_dbg(&dssdev->dev, "update %d, %d, %d x %d\n", x, y, w, h);
1129
1130         mutex_lock(&td->lock);
1131         dsi_bus_lock();
1132
1133         if (!td->enabled) {
1134                 r = 0;
1135                 goto err;
1136         }
1137
1138         r = omap_dsi_prepare_update(dssdev, &x, &y, &w, &h, true);
1139         if (r)
1140                 goto err;
1141
1142         r = taal_set_update_window(x, y, w, h);
1143         if (r)
1144                 goto err;
1145
1146         if (td->te_enabled && panel_data->use_ext_te) {
1147                 td->update_region.x = x;
1148                 td->update_region.y = y;
1149                 td->update_region.w = w;
1150                 td->update_region.h = h;
1151                 barrier();
1152                 schedule_delayed_work(&td->te_timeout_work,
1153                                 msecs_to_jiffies(250));
1154                 atomic_set(&td->do_update, 1);
1155         } else {
1156                 r = omap_dsi_update(dssdev, TCH, x, y, w, h,
1157                                 taal_framedone_cb, dssdev);
1158                 if (r)
1159                         goto err;
1160         }
1161
1162         /* note: no bus_unlock here. unlock is in framedone_cb */
1163         mutex_unlock(&td->lock);
1164         return 0;
1165 err:
1166         dsi_bus_unlock();
1167         mutex_unlock(&td->lock);
1168         return r;
1169 }
1170
1171 static int taal_sync(struct omap_dss_device *dssdev)
1172 {
1173         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1174
1175         dev_dbg(&dssdev->dev, "sync\n");
1176
1177         mutex_lock(&td->lock);
1178         dsi_bus_lock();
1179         dsi_bus_unlock();
1180         mutex_unlock(&td->lock);
1181
1182         dev_dbg(&dssdev->dev, "sync done\n");
1183
1184         return 0;
1185 }
1186
1187 static int _taal_enable_te(struct omap_dss_device *dssdev, bool enable)
1188 {
1189         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1190         struct nokia_dsi_panel_data *panel_data = get_panel_data(dssdev);
1191         int r;
1192
1193         if (enable)
1194                 r = taal_dcs_write_1(DCS_TEAR_ON, 0);
1195         else
1196                 r = taal_dcs_write_0(DCS_TEAR_OFF);
1197
1198         if (!panel_data->use_ext_te)
1199                 omapdss_dsi_enable_te(dssdev, enable);
1200
1201         if (td->panel_config->sleep.enable_te)
1202                 msleep(td->panel_config->sleep.enable_te);
1203
1204         return r;
1205 }
1206
1207 static int taal_enable_te(struct omap_dss_device *dssdev, bool enable)
1208 {
1209         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1210         int r;
1211
1212         mutex_lock(&td->lock);
1213
1214         if (td->te_enabled == enable)
1215                 goto end;
1216
1217         dsi_bus_lock();
1218
1219         if (td->enabled) {
1220                 r = _taal_enable_te(dssdev, enable);
1221                 if (r)
1222                         goto err;
1223         }
1224
1225         td->te_enabled = enable;
1226
1227         dsi_bus_unlock();
1228 end:
1229         mutex_unlock(&td->lock);
1230
1231         return 0;
1232 err:
1233         dsi_bus_unlock();
1234         mutex_unlock(&td->lock);
1235
1236         return r;
1237 }
1238
1239 static int taal_get_te(struct omap_dss_device *dssdev)
1240 {
1241         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1242         int r;
1243
1244         mutex_lock(&td->lock);
1245         r = td->te_enabled;
1246         mutex_unlock(&td->lock);
1247
1248         return r;
1249 }
1250
1251 static int taal_rotate(struct omap_dss_device *dssdev, u8 rotate)
1252 {
1253         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1254         int r;
1255
1256         dev_dbg(&dssdev->dev, "rotate %d\n", rotate);
1257
1258         mutex_lock(&td->lock);
1259
1260         if (td->rotate == rotate)
1261                 goto end;
1262
1263         dsi_bus_lock();
1264
1265         if (td->enabled) {
1266                 r = taal_set_addr_mode(rotate, td->mirror);
1267                 if (r)
1268                         goto err;
1269         }
1270
1271         td->rotate = rotate;
1272
1273         dsi_bus_unlock();
1274 end:
1275         mutex_unlock(&td->lock);
1276         return 0;
1277 err:
1278         dsi_bus_unlock();
1279         mutex_unlock(&td->lock);
1280         return r;
1281 }
1282
1283 static u8 taal_get_rotate(struct omap_dss_device *dssdev)
1284 {
1285         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1286         int r;
1287
1288         mutex_lock(&td->lock);
1289         r = td->rotate;
1290         mutex_unlock(&td->lock);
1291
1292         return r;
1293 }
1294
1295 static int taal_mirror(struct omap_dss_device *dssdev, bool enable)
1296 {
1297         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1298         int r;
1299
1300         dev_dbg(&dssdev->dev, "mirror %d\n", enable);
1301
1302         mutex_lock(&td->lock);
1303
1304         if (td->mirror == enable)
1305                 goto end;
1306
1307         dsi_bus_lock();
1308         if (td->enabled) {
1309                 r = taal_set_addr_mode(td->rotate, enable);
1310                 if (r)
1311                         goto err;
1312         }
1313
1314         td->mirror = enable;
1315
1316         dsi_bus_unlock();
1317 end:
1318         mutex_unlock(&td->lock);
1319         return 0;
1320 err:
1321         dsi_bus_unlock();
1322         mutex_unlock(&td->lock);
1323         return r;
1324 }
1325
1326 static bool taal_get_mirror(struct omap_dss_device *dssdev)
1327 {
1328         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1329         int r;
1330
1331         mutex_lock(&td->lock);
1332         r = td->mirror;
1333         mutex_unlock(&td->lock);
1334
1335         return r;
1336 }
1337
1338 static int taal_run_test(struct omap_dss_device *dssdev, int test_num)
1339 {
1340         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1341         u8 id1, id2, id3;
1342         int r;
1343
1344         mutex_lock(&td->lock);
1345
1346         if (!td->enabled) {
1347                 r = -ENODEV;
1348                 goto err1;
1349         }
1350
1351         dsi_bus_lock();
1352
1353         r = taal_dcs_read_1(DCS_GET_ID1, &id1);
1354         if (r)
1355                 goto err2;
1356         r = taal_dcs_read_1(DCS_GET_ID2, &id2);
1357         if (r)
1358                 goto err2;
1359         r = taal_dcs_read_1(DCS_GET_ID3, &id3);
1360         if (r)
1361                 goto err2;
1362
1363         dsi_bus_unlock();
1364         mutex_unlock(&td->lock);
1365         return 0;
1366 err2:
1367         dsi_bus_unlock();
1368 err1:
1369         mutex_unlock(&td->lock);
1370         return r;
1371 }
1372
1373 static int taal_memory_read(struct omap_dss_device *dssdev,
1374                 void *buf, size_t size,
1375                 u16 x, u16 y, u16 w, u16 h)
1376 {
1377         int r;
1378         int first = 1;
1379         int plen;
1380         unsigned buf_used = 0;
1381         struct taal_data *td = dev_get_drvdata(&dssdev->dev);
1382
1383         if (size < w * h * 3)
1384                 return -ENOMEM;
1385
1386         mutex_lock(&td->lock);
1387
1388         if (!td->enabled) {
1389                 r = -ENODEV;
1390                 goto err1;
1391         }
1392
1393         size = min(w * h * 3,
1394                         dssdev->panel.timings.x_res *
1395                         dssdev->panel.timings.y_res * 3);
1396
1397         dsi_bus_lock();
1398
1399         /* plen 1 or 2 goes into short packet. until checksum error is fixed,
1400          * use short packets. plen 32 works, but bigger packets seem to cause
1401          * an error. */
1402         if (size % 2)
1403                 plen = 1;
1404         else
1405                 plen = 2;
1406
1407         taal_set_update_window(x, y, w, h);
1408
1409         r = dsi_vc_set_max_rx_packet_size(TCH, plen);
1410         if (r)
1411                 goto err2;
1412
1413         while (buf_used < size) {
1414                 u8 dcs_cmd = first ? 0x2e : 0x3e;
1415                 first = 0;
1416
1417                 r = dsi_vc_dcs_read(TCH, dcs_cmd,
1418                                 buf + buf_used, size - buf_used);
1419
1420                 if (r < 0) {
1421                         dev_err(&dssdev->dev, "read error\n");
1422                         goto err3;
1423                 }
1424
1425                 buf_used += r;
1426
1427                 if (r < plen) {
1428                         dev_err(&dssdev->dev, "short read\n");
1429                         break;
1430                 }
1431
1432                 if (signal_pending(current)) {
1433                         dev_err(&dssdev->dev, "signal pending, "
1434                                         "aborting memory read\n");
1435                         r = -ERESTARTSYS;
1436                         goto err3;
1437                 }
1438         }
1439
1440         r = buf_used;
1441
1442 err3:
1443         dsi_vc_set_max_rx_packet_size(TCH, 1);
1444 err2:
1445         dsi_bus_unlock();
1446 err1:
1447         mutex_unlock(&td->lock);
1448         return r;
1449 }
1450
1451 static void taal_esd_work(struct work_struct *work)
1452 {
1453         struct taal_data *td = container_of(work, struct taal_data,
1454                         esd_work.work);
1455         struct omap_dss_device *dssdev = td->dssdev;
1456         struct nokia_dsi_panel_data *panel_data = get_panel_data(dssdev);
1457         u8 state1, state2;
1458         int r;
1459
1460         mutex_lock(&td->lock);
1461
1462         if (!td->enabled) {
1463                 mutex_unlock(&td->lock);
1464                 return;
1465         }
1466
1467         dsi_bus_lock();
1468
1469         r = taal_dcs_read_1(DCS_RDDSDR, &state1);
1470         if (r) {
1471                 dev_err(&dssdev->dev, "failed to read Taal status\n");
1472                 goto err;
1473         }
1474
1475         /* Run self diagnostics */
1476         r = taal_sleep_out(td);
1477         if (r) {
1478                 dev_err(&dssdev->dev, "failed to run Taal self-diagnostics\n");
1479                 goto err;
1480         }
1481
1482         r = taal_dcs_read_1(DCS_RDDSDR, &state2);
1483         if (r) {
1484                 dev_err(&dssdev->dev, "failed to read Taal status\n");
1485                 goto err;
1486         }
1487
1488         /* Each sleep out command will trigger a self diagnostic and flip
1489          * Bit6 if the test passes.
1490          */
1491         if (!((state1 ^ state2) & (1 << 6))) {
1492                 dev_err(&dssdev->dev, "LCD self diagnostics failed\n");
1493                 goto err;
1494         }
1495         /* Self-diagnostics result is also shown on TE GPIO line. We need
1496          * to re-enable TE after self diagnostics */
1497         if (td->te_enabled && panel_data->use_ext_te) {
1498                 r = taal_dcs_write_1(DCS_TEAR_ON, 0);
1499                 if (r)
1500                         goto err;
1501         }
1502
1503         dsi_bus_unlock();
1504
1505         queue_delayed_work(td->esd_wq, &td->esd_work, TAAL_ESD_CHECK_PERIOD);
1506
1507         mutex_unlock(&td->lock);
1508         return;
1509 err:
1510         dev_err(&dssdev->dev, "performing LCD reset\n");
1511
1512         taal_power_off(dssdev);
1513         taal_hw_reset(dssdev);
1514         taal_power_on(dssdev);
1515
1516         dsi_bus_unlock();
1517
1518         queue_delayed_work(td->esd_wq, &td->esd_work, TAAL_ESD_CHECK_PERIOD);
1519
1520         mutex_unlock(&td->lock);
1521 }
1522
1523 static int taal_set_update_mode(struct omap_dss_device *dssdev,
1524                 enum omap_dss_update_mode mode)
1525 {
1526         if (mode != OMAP_DSS_UPDATE_MANUAL)
1527                 return -EINVAL;
1528         return 0;
1529 }
1530
1531 static enum omap_dss_update_mode taal_get_update_mode(
1532                 struct omap_dss_device *dssdev)
1533 {
1534         return OMAP_DSS_UPDATE_MANUAL;
1535 }
1536
1537 static struct omap_dss_driver taal_driver = {
1538         .probe          = taal_probe,
1539         .remove         = taal_remove,
1540
1541         .enable         = taal_enable,
1542         .disable        = taal_disable,
1543         .suspend        = taal_suspend,
1544         .resume         = taal_resume,
1545
1546         .set_update_mode = taal_set_update_mode,
1547         .get_update_mode = taal_get_update_mode,
1548
1549         .update         = taal_update,
1550         .sync           = taal_sync,
1551
1552         .get_resolution = taal_get_resolution,
1553         .get_recommended_bpp = omapdss_default_get_recommended_bpp,
1554
1555         .enable_te      = taal_enable_te,
1556         .get_te         = taal_get_te,
1557
1558         .set_rotate     = taal_rotate,
1559         .get_rotate     = taal_get_rotate,
1560         .set_mirror     = taal_mirror,
1561         .get_mirror     = taal_get_mirror,
1562         .run_test       = taal_run_test,
1563         .memory_read    = taal_memory_read,
1564
1565         .get_timings    = taal_get_timings,
1566
1567         .driver         = {
1568                 .name   = "taal",
1569                 .owner  = THIS_MODULE,
1570         },
1571 };
1572
1573 static int __init taal_init(void)
1574 {
1575         omap_dss_register_driver(&taal_driver);
1576
1577         return 0;
1578 }
1579
1580 static void __exit taal_exit(void)
1581 {
1582         omap_dss_unregister_driver(&taal_driver);
1583 }
1584
1585 module_init(taal_init);
1586 module_exit(taal_exit);
1587
1588 MODULE_AUTHOR("Tomi Valkeinen <tomi.valkeinen@nokia.com>");
1589 MODULE_DESCRIPTION("Taal Driver");
1590 MODULE_LICENSE("GPL");