e078e20d4ad6999ef891a691ddb0aa03ac94e040
[deliverable/linux.git] / drivers / video / auo_k190x.c
1 /*
2 * Common code for AUO-K190X framebuffer drivers
3 *
4 * Copyright (C) 2012 Heiko Stuebner <heiko@sntech.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11 #include <linux/module.h>
12 #include <linux/kernel.h>
13 #include <linux/gpio.h>
14 #include <linux/platform_device.h>
15 #include <linux/pm_runtime.h>
16 #include <linux/fb.h>
17 #include <linux/delay.h>
18 #include <linux/uaccess.h>
19 #include <linux/vmalloc.h>
20 #include <linux/regulator/consumer.h>
21
22 #include <video/auo_k190xfb.h>
23
24 #include "auo_k190x.h"
25
26 struct panel_info {
27 int w;
28 int h;
29 };
30
31 /* table of panel specific parameters to be indexed into by the board drivers */
32 static struct panel_info panel_table[] = {
33 /* standard 6" */
34 [AUOK190X_RESOLUTION_800_600] = {
35 .w = 800,
36 .h = 600,
37 },
38 /* standard 9" */
39 [AUOK190X_RESOLUTION_1024_768] = {
40 .w = 1024,
41 .h = 768,
42 },
43 };
44
45 /*
46 * private I80 interface to the board driver
47 */
48
49 static void auok190x_issue_data(struct auok190xfb_par *par, u16 data)
50 {
51 par->board->set_ctl(par, AUOK190X_I80_WR, 0);
52 par->board->set_hdb(par, data);
53 par->board->set_ctl(par, AUOK190X_I80_WR, 1);
54 }
55
56 static void auok190x_issue_cmd(struct auok190xfb_par *par, u16 data)
57 {
58 par->board->set_ctl(par, AUOK190X_I80_DC, 0);
59 auok190x_issue_data(par, data);
60 par->board->set_ctl(par, AUOK190X_I80_DC, 1);
61 }
62
63 static int auok190x_issue_pixels(struct auok190xfb_par *par, int size,
64 u16 *data)
65 {
66 struct device *dev = par->info->device;
67 int i;
68 u16 tmp;
69
70 if (size & 3) {
71 dev_err(dev, "issue_pixels: size %d must be a multiple of 4\n",
72 size);
73 return -EINVAL;
74 }
75
76 for (i = 0; i < (size >> 1); i++) {
77 par->board->set_ctl(par, AUOK190X_I80_WR, 0);
78
79 /* simple reduction of 8bit staticgray to 4bit gray
80 * combines 4 * 4bit pixel values into a 16bit value
81 */
82 tmp = (data[2*i] & 0xF0) >> 4;
83 tmp |= (data[2*i] & 0xF000) >> 8;
84 tmp |= (data[2*i+1] & 0xF0) << 4;
85 tmp |= (data[2*i+1] & 0xF000);
86
87 par->board->set_hdb(par, tmp);
88 par->board->set_ctl(par, AUOK190X_I80_WR, 1);
89 }
90
91 return 0;
92 }
93
94 static u16 auok190x_read_data(struct auok190xfb_par *par)
95 {
96 u16 data;
97
98 par->board->set_ctl(par, AUOK190X_I80_OE, 0);
99 data = par->board->get_hdb(par);
100 par->board->set_ctl(par, AUOK190X_I80_OE, 1);
101
102 return data;
103 }
104
105 /*
106 * Command interface for the controller drivers
107 */
108
109 void auok190x_send_command_nowait(struct auok190xfb_par *par, u16 data)
110 {
111 par->board->set_ctl(par, AUOK190X_I80_CS, 0);
112 auok190x_issue_cmd(par, data);
113 par->board->set_ctl(par, AUOK190X_I80_CS, 1);
114 }
115 EXPORT_SYMBOL_GPL(auok190x_send_command_nowait);
116
117 void auok190x_send_cmdargs_nowait(struct auok190xfb_par *par, u16 cmd,
118 int argc, u16 *argv)
119 {
120 int i;
121
122 par->board->set_ctl(par, AUOK190X_I80_CS, 0);
123 auok190x_issue_cmd(par, cmd);
124
125 for (i = 0; i < argc; i++)
126 auok190x_issue_data(par, argv[i]);
127 par->board->set_ctl(par, AUOK190X_I80_CS, 1);
128 }
129 EXPORT_SYMBOL_GPL(auok190x_send_cmdargs_nowait);
130
131 int auok190x_send_command(struct auok190xfb_par *par, u16 data)
132 {
133 int ret;
134
135 ret = par->board->wait_for_rdy(par);
136 if (ret)
137 return ret;
138
139 auok190x_send_command_nowait(par, data);
140 return 0;
141 }
142 EXPORT_SYMBOL_GPL(auok190x_send_command);
143
144 int auok190x_send_cmdargs(struct auok190xfb_par *par, u16 cmd,
145 int argc, u16 *argv)
146 {
147 int ret;
148
149 ret = par->board->wait_for_rdy(par);
150 if (ret)
151 return ret;
152
153 auok190x_send_cmdargs_nowait(par, cmd, argc, argv);
154 return 0;
155 }
156 EXPORT_SYMBOL_GPL(auok190x_send_cmdargs);
157
158 int auok190x_read_cmdargs(struct auok190xfb_par *par, u16 cmd,
159 int argc, u16 *argv)
160 {
161 int i, ret;
162
163 ret = par->board->wait_for_rdy(par);
164 if (ret)
165 return ret;
166
167 par->board->set_ctl(par, AUOK190X_I80_CS, 0);
168 auok190x_issue_cmd(par, cmd);
169
170 for (i = 0; i < argc; i++)
171 argv[i] = auok190x_read_data(par);
172 par->board->set_ctl(par, AUOK190X_I80_CS, 1);
173
174 return 0;
175 }
176 EXPORT_SYMBOL_GPL(auok190x_read_cmdargs);
177
178 void auok190x_send_cmdargs_pixels_nowait(struct auok190xfb_par *par, u16 cmd,
179 int argc, u16 *argv, int size, u16 *data)
180 {
181 int i;
182
183 par->board->set_ctl(par, AUOK190X_I80_CS, 0);
184
185 auok190x_issue_cmd(par, cmd);
186
187 for (i = 0; i < argc; i++)
188 auok190x_issue_data(par, argv[i]);
189
190 auok190x_issue_pixels(par, size, data);
191
192 par->board->set_ctl(par, AUOK190X_I80_CS, 1);
193 }
194 EXPORT_SYMBOL_GPL(auok190x_send_cmdargs_pixels_nowait);
195
196 int auok190x_send_cmdargs_pixels(struct auok190xfb_par *par, u16 cmd,
197 int argc, u16 *argv, int size, u16 *data)
198 {
199 int ret;
200
201 ret = par->board->wait_for_rdy(par);
202 if (ret)
203 return ret;
204
205 auok190x_send_cmdargs_pixels_nowait(par, cmd, argc, argv, size, data);
206
207 return 0;
208 }
209 EXPORT_SYMBOL_GPL(auok190x_send_cmdargs_pixels);
210
211 /*
212 * fbdefio callbacks - common on both controllers.
213 */
214
215 static void auok190xfb_dpy_first_io(struct fb_info *info)
216 {
217 /* tell runtime-pm that we wish to use the device in a short time */
218 pm_runtime_get(info->device);
219 }
220
221 /* this is called back from the deferred io workqueue */
222 static void auok190xfb_dpy_deferred_io(struct fb_info *info,
223 struct list_head *pagelist)
224 {
225 struct fb_deferred_io *fbdefio = info->fbdefio;
226 struct auok190xfb_par *par = info->par;
227 u16 line_length = info->fix.line_length;
228 u16 yres = info->var.yres;
229 u16 y1 = 0, h = 0;
230 int prev_index = -1;
231 struct page *cur;
232 int h_inc;
233 int threshold;
234
235 if (!list_empty(pagelist))
236 /* the device resume should've been requested through first_io,
237 * if the resume did not finish until now, wait for it.
238 */
239 pm_runtime_barrier(info->device);
240 else
241 /* We reached this via the fsync or some other way.
242 * In either case the first_io function did not run,
243 * so we runtime_resume the device here synchronously.
244 */
245 pm_runtime_get_sync(info->device);
246
247 /* Do a full screen update every n updates to prevent
248 * excessive darkening of the Sipix display.
249 * If we do this, there is no need to walk the pages.
250 */
251 if (par->need_refresh(par)) {
252 par->update_all(par);
253 goto out;
254 }
255
256 /* height increment is fixed per page */
257 h_inc = DIV_ROUND_UP(PAGE_SIZE , line_length);
258
259 /* calculate number of pages from pixel height */
260 threshold = par->consecutive_threshold / h_inc;
261 if (threshold < 1)
262 threshold = 1;
263
264 /* walk the written page list and swizzle the data */
265 list_for_each_entry(cur, &fbdefio->pagelist, lru) {
266 if (prev_index < 0) {
267 /* just starting so assign first page */
268 y1 = (cur->index << PAGE_SHIFT) / line_length;
269 h = h_inc;
270 } else if ((cur->index - prev_index) <= threshold) {
271 /* page is within our threshold for single updates */
272 h += h_inc * (cur->index - prev_index);
273 } else {
274 /* page not consecutive, issue previous update first */
275 par->update_partial(par, y1, y1 + h);
276
277 /* start over with our non consecutive page */
278 y1 = (cur->index << PAGE_SHIFT) / line_length;
279 h = h_inc;
280 }
281 prev_index = cur->index;
282 }
283
284 /* if we still have any pages to update we do so now */
285 if (h >= yres)
286 /* its a full screen update, just do it */
287 par->update_all(par);
288 else
289 par->update_partial(par, y1, min((u16) (y1 + h), yres));
290
291 out:
292 pm_runtime_mark_last_busy(info->device);
293 pm_runtime_put_autosuspend(info->device);
294 }
295
296 /*
297 * framebuffer operations
298 */
299
300 /*
301 * this is the slow path from userspace. they can seek and write to
302 * the fb. it's inefficient to do anything less than a full screen draw
303 */
304 static ssize_t auok190xfb_write(struct fb_info *info, const char __user *buf,
305 size_t count, loff_t *ppos)
306 {
307 struct auok190xfb_par *par = info->par;
308 unsigned long p = *ppos;
309 void *dst;
310 int err = 0;
311 unsigned long total_size;
312
313 if (info->state != FBINFO_STATE_RUNNING)
314 return -EPERM;
315
316 total_size = info->fix.smem_len;
317
318 if (p > total_size)
319 return -EFBIG;
320
321 if (count > total_size) {
322 err = -EFBIG;
323 count = total_size;
324 }
325
326 if (count + p > total_size) {
327 if (!err)
328 err = -ENOSPC;
329
330 count = total_size - p;
331 }
332
333 dst = (void *)(info->screen_base + p);
334
335 if (copy_from_user(dst, buf, count))
336 err = -EFAULT;
337
338 if (!err)
339 *ppos += count;
340
341 par->update_all(par);
342
343 return (err) ? err : count;
344 }
345
346 static void auok190xfb_fillrect(struct fb_info *info,
347 const struct fb_fillrect *rect)
348 {
349 struct auok190xfb_par *par = info->par;
350
351 sys_fillrect(info, rect);
352
353 par->update_all(par);
354 }
355
356 static void auok190xfb_copyarea(struct fb_info *info,
357 const struct fb_copyarea *area)
358 {
359 struct auok190xfb_par *par = info->par;
360
361 sys_copyarea(info, area);
362
363 par->update_all(par);
364 }
365
366 static void auok190xfb_imageblit(struct fb_info *info,
367 const struct fb_image *image)
368 {
369 struct auok190xfb_par *par = info->par;
370
371 sys_imageblit(info, image);
372
373 par->update_all(par);
374 }
375
376 static int auok190xfb_check_var(struct fb_var_screeninfo *var,
377 struct fb_info *info)
378 {
379 struct device *dev = info->device;
380 int size;
381
382 if (info->var.xres != var->xres || info->var.yres != var->yres ||
383 info->var.xres_virtual != var->xres_virtual ||
384 info->var.yres_virtual != var->yres_virtual) {
385 pr_info("%s: Resolution not supported: X%u x Y%u\n",
386 __func__, var->xres, var->yres);
387 return -EINVAL;
388 }
389
390 /*
391 * Memory limit
392 */
393
394 size = var->xres_virtual * var->yres_virtual * var->bits_per_pixel / 8;
395 if (size > info->fix.smem_len) {
396 dev_err(dev, "Memory limit exceeded, requested %dK\n",
397 size >> 10);
398 return -ENOMEM;
399 }
400
401 return 0;
402 }
403
404 static struct fb_ops auok190xfb_ops = {
405 .owner = THIS_MODULE,
406 .fb_read = fb_sys_read,
407 .fb_write = auok190xfb_write,
408 .fb_fillrect = auok190xfb_fillrect,
409 .fb_copyarea = auok190xfb_copyarea,
410 .fb_imageblit = auok190xfb_imageblit,
411 .fb_check_var = auok190xfb_check_var,
412 };
413
414 /*
415 * Controller-functions common to both K1900 and K1901
416 */
417
418 static int auok190x_read_temperature(struct auok190xfb_par *par)
419 {
420 struct device *dev = par->info->device;
421 u16 data[4];
422 int temp;
423
424 pm_runtime_get_sync(dev);
425
426 mutex_lock(&(par->io_lock));
427
428 auok190x_read_cmdargs(par, AUOK190X_CMD_READ_VERSION, 4, data);
429
430 mutex_unlock(&(par->io_lock));
431
432 pm_runtime_mark_last_busy(dev);
433 pm_runtime_put_autosuspend(dev);
434
435 /* sanitize and split of half-degrees for now */
436 temp = ((data[0] & AUOK190X_VERSION_TEMP_MASK) >> 1);
437
438 /* handle positive and negative temperatures */
439 if (temp >= 201)
440 return (255 - temp + 1) * (-1);
441 else
442 return temp;
443 }
444
445 static void auok190x_identify(struct auok190xfb_par *par)
446 {
447 struct device *dev = par->info->device;
448 u16 data[4];
449
450 pm_runtime_get_sync(dev);
451
452 mutex_lock(&(par->io_lock));
453
454 auok190x_read_cmdargs(par, AUOK190X_CMD_READ_VERSION, 4, data);
455
456 mutex_unlock(&(par->io_lock));
457
458 par->epd_type = data[1] & AUOK190X_VERSION_TEMP_MASK;
459
460 par->panel_size_int = AUOK190X_VERSION_SIZE_INT(data[2]);
461 par->panel_size_float = AUOK190X_VERSION_SIZE_FLOAT(data[2]);
462 par->panel_model = AUOK190X_VERSION_MODEL(data[2]);
463
464 par->tcon_version = AUOK190X_VERSION_TCON(data[3]);
465 par->lut_version = AUOK190X_VERSION_LUT(data[3]);
466
467 dev_dbg(dev, "panel %d.%din, model 0x%x, EPD 0x%x TCON-rev 0x%x, LUT-rev 0x%x",
468 par->panel_size_int, par->panel_size_float, par->panel_model,
469 par->epd_type, par->tcon_version, par->lut_version);
470
471 pm_runtime_mark_last_busy(dev);
472 pm_runtime_put_autosuspend(dev);
473 }
474
475 /*
476 * Sysfs functions
477 */
478
479 static ssize_t update_mode_show(struct device *dev,
480 struct device_attribute *attr, char *buf)
481 {
482 struct fb_info *info = dev_get_drvdata(dev);
483 struct auok190xfb_par *par = info->par;
484
485 return sprintf(buf, "%d\n", par->update_mode);
486 }
487
488 static ssize_t update_mode_store(struct device *dev,
489 struct device_attribute *attr,
490 const char *buf, size_t count)
491 {
492 struct fb_info *info = dev_get_drvdata(dev);
493 struct auok190xfb_par *par = info->par;
494 int mode, ret;
495
496 ret = kstrtoint(buf, 10, &mode);
497 if (ret)
498 return ret;
499
500 par->update_mode = mode;
501
502 /* if we enter a better mode, do a full update */
503 if (par->last_mode > 1 && mode < par->last_mode)
504 par->update_all(par);
505
506 return count;
507 }
508
509 static ssize_t flash_show(struct device *dev, struct device_attribute *attr,
510 char *buf)
511 {
512 struct fb_info *info = dev_get_drvdata(dev);
513 struct auok190xfb_par *par = info->par;
514
515 return sprintf(buf, "%d\n", par->flash);
516 }
517
518 static ssize_t flash_store(struct device *dev, struct device_attribute *attr,
519 const char *buf, size_t count)
520 {
521 struct fb_info *info = dev_get_drvdata(dev);
522 struct auok190xfb_par *par = info->par;
523 int flash, ret;
524
525 ret = kstrtoint(buf, 10, &flash);
526 if (ret)
527 return ret;
528
529 if (flash > 0)
530 par->flash = 1;
531 else
532 par->flash = 0;
533
534 return count;
535 }
536
537 static ssize_t temp_show(struct device *dev, struct device_attribute *attr,
538 char *buf)
539 {
540 struct fb_info *info = dev_get_drvdata(dev);
541 struct auok190xfb_par *par = info->par;
542 int temp;
543
544 temp = auok190x_read_temperature(par);
545 return sprintf(buf, "%d\n", temp);
546 }
547
548 static DEVICE_ATTR(update_mode, 0644, update_mode_show, update_mode_store);
549 static DEVICE_ATTR(flash, 0644, flash_show, flash_store);
550 static DEVICE_ATTR(temp, 0644, temp_show, NULL);
551
552 static struct attribute *auok190x_attributes[] = {
553 &dev_attr_update_mode.attr,
554 &dev_attr_flash.attr,
555 &dev_attr_temp.attr,
556 NULL
557 };
558
559 static const struct attribute_group auok190x_attr_group = {
560 .attrs = auok190x_attributes,
561 };
562
563 static int auok190x_power(struct auok190xfb_par *par, bool on)
564 {
565 struct auok190x_board *board = par->board;
566 int ret;
567
568 if (on) {
569 /* We should maintain POWER up for at least 80ms before set
570 * RST_N and SLP_N to high (TCON spec 20100803_v35 p59)
571 */
572 ret = regulator_enable(par->regulator);
573 if (ret)
574 return ret;
575
576 msleep(200);
577 gpio_set_value(board->gpio_nrst, 1);
578 gpio_set_value(board->gpio_nsleep, 1);
579 msleep(200);
580 } else {
581 regulator_disable(par->regulator);
582 gpio_set_value(board->gpio_nrst, 0);
583 gpio_set_value(board->gpio_nsleep, 0);
584 }
585
586 return 0;
587 }
588
589 /*
590 * Recovery - powercycle the controller
591 */
592
593 static void auok190x_recover(struct auok190xfb_par *par)
594 {
595 struct device *dev = par->info->device;
596
597 auok190x_power(par, 0);
598 msleep(100);
599 auok190x_power(par, 1);
600
601 /* after powercycling the device, it's always active */
602 pm_runtime_set_active(dev);
603 par->standby = 0;
604
605 par->init(par);
606
607 /* wait for init to complete */
608 par->board->wait_for_rdy(par);
609 }
610
611 /*
612 * Power-management
613 */
614
615 #ifdef CONFIG_PM
616 static int auok190x_runtime_suspend(struct device *dev)
617 {
618 struct platform_device *pdev = to_platform_device(dev);
619 struct fb_info *info = platform_get_drvdata(pdev);
620 struct auok190xfb_par *par = info->par;
621 struct auok190x_board *board = par->board;
622 u16 standby_param;
623
624 /* take and keep the lock until we are resumed, as the controller
625 * will never reach the non-busy state when in standby mode
626 */
627 mutex_lock(&(par->io_lock));
628
629 if (par->standby) {
630 dev_warn(dev, "already in standby, runtime-pm pairing mismatch\n");
631 mutex_unlock(&(par->io_lock));
632 return 0;
633 }
634
635 /* according to runtime_pm.txt runtime_suspend only means, that the
636 * device will not process data and will not communicate with the CPU
637 * As we hold the lock, this stays true even without standby
638 */
639 if (board->quirks & AUOK190X_QUIRK_STANDBYBROKEN) {
640 dev_dbg(dev, "runtime suspend without standby\n");
641 goto finish;
642 } else if (board->quirks & AUOK190X_QUIRK_STANDBYPARAM) {
643 /* for some TCON versions STANDBY expects a parameter (0) but
644 * it seems the real tcon version has to be determined yet.
645 */
646 dev_dbg(dev, "runtime suspend with additional empty param\n");
647 standby_param = 0;
648 auok190x_send_cmdargs(par, AUOK190X_CMD_STANDBY, 1,
649 &standby_param);
650 } else {
651 dev_dbg(dev, "runtime suspend without param\n");
652 auok190x_send_command(par, AUOK190X_CMD_STANDBY);
653 }
654
655 msleep(64);
656
657 finish:
658 par->standby = 1;
659
660 return 0;
661 }
662
663 static int auok190x_runtime_resume(struct device *dev)
664 {
665 struct platform_device *pdev = to_platform_device(dev);
666 struct fb_info *info = platform_get_drvdata(pdev);
667 struct auok190xfb_par *par = info->par;
668 struct auok190x_board *board = par->board;
669
670 if (!par->standby) {
671 dev_warn(dev, "not in standby, runtime-pm pairing mismatch\n");
672 return 0;
673 }
674
675 if (board->quirks & AUOK190X_QUIRK_STANDBYBROKEN) {
676 dev_dbg(dev, "runtime resume without standby\n");
677 } else {
678 /* when in standby, controller is always busy
679 * and only accepts the wakeup command
680 */
681 dev_dbg(dev, "runtime resume from standby\n");
682 auok190x_send_command_nowait(par, AUOK190X_CMD_WAKEUP);
683
684 msleep(160);
685
686 /* wait for the controller to be ready and release the lock */
687 board->wait_for_rdy(par);
688 }
689
690 par->standby = 0;
691
692 mutex_unlock(&(par->io_lock));
693
694 return 0;
695 }
696
697 static int auok190x_suspend(struct device *dev)
698 {
699 struct platform_device *pdev = to_platform_device(dev);
700 struct fb_info *info = platform_get_drvdata(pdev);
701 struct auok190xfb_par *par = info->par;
702 struct auok190x_board *board = par->board;
703 int ret;
704
705 dev_dbg(dev, "suspend\n");
706 if (board->quirks & AUOK190X_QUIRK_STANDBYBROKEN) {
707 /* suspend via powering off the ic */
708 dev_dbg(dev, "suspend with broken standby\n");
709
710 auok190x_power(par, 0);
711 } else {
712 dev_dbg(dev, "suspend using sleep\n");
713
714 /* the sleep state can only be entered from the standby state.
715 * pm_runtime_get_noresume gets called before the suspend call.
716 * So the devices usage count is >0 but it is not necessarily
717 * active.
718 */
719 if (!pm_runtime_status_suspended(dev)) {
720 ret = auok190x_runtime_suspend(dev);
721 if (ret < 0) {
722 dev_err(dev, "auok190x_runtime_suspend failed with %d\n",
723 ret);
724 return ret;
725 }
726 par->manual_standby = 1;
727 }
728
729 gpio_direction_output(board->gpio_nsleep, 0);
730 }
731
732 msleep(100);
733
734 return 0;
735 }
736
737 static int auok190x_resume(struct device *dev)
738 {
739 struct platform_device *pdev = to_platform_device(dev);
740 struct fb_info *info = platform_get_drvdata(pdev);
741 struct auok190xfb_par *par = info->par;
742 struct auok190x_board *board = par->board;
743
744 dev_dbg(dev, "resume\n");
745 if (board->quirks & AUOK190X_QUIRK_STANDBYBROKEN) {
746 dev_dbg(dev, "resume with broken standby\n");
747
748 auok190x_power(par, 1);
749
750 par->init(par);
751 } else {
752 dev_dbg(dev, "resume from sleep\n");
753
754 /* device should be in runtime suspend when we were suspended
755 * and pm_runtime_put_sync gets called after this function.
756 * So there is no need to touch the standby mode here at all.
757 */
758 gpio_direction_output(board->gpio_nsleep, 1);
759 msleep(100);
760
761 /* an additional init call seems to be necessary after sleep */
762 auok190x_runtime_resume(dev);
763 par->init(par);
764
765 /* if we were runtime-suspended before, suspend again*/
766 if (!par->manual_standby)
767 auok190x_runtime_suspend(dev);
768 else
769 par->manual_standby = 0;
770 }
771
772 return 0;
773 }
774 #endif
775
776 const struct dev_pm_ops auok190x_pm = {
777 SET_RUNTIME_PM_OPS(auok190x_runtime_suspend, auok190x_runtime_resume,
778 NULL)
779 SET_SYSTEM_SLEEP_PM_OPS(auok190x_suspend, auok190x_resume)
780 };
781 EXPORT_SYMBOL_GPL(auok190x_pm);
782
783 /*
784 * Common probe and remove code
785 */
786
787 int auok190x_common_probe(struct platform_device *pdev,
788 struct auok190x_init_data *init)
789 {
790 struct auok190x_board *board = init->board;
791 struct auok190xfb_par *par;
792 struct fb_info *info;
793 struct panel_info *panel;
794 int videomemorysize, ret;
795 unsigned char *videomemory;
796
797 /* check board contents */
798 if (!board->init || !board->cleanup || !board->wait_for_rdy
799 || !board->set_ctl || !board->set_hdb || !board->get_hdb
800 || !board->setup_irq)
801 return -EINVAL;
802
803 info = framebuffer_alloc(sizeof(struct auok190xfb_par), &pdev->dev);
804 if (!info)
805 return -ENOMEM;
806
807 par = info->par;
808 par->info = info;
809 par->board = board;
810 par->recover = auok190x_recover;
811 par->update_partial = init->update_partial;
812 par->update_all = init->update_all;
813 par->need_refresh = init->need_refresh;
814 par->init = init->init;
815
816 /* init update modes */
817 par->update_cnt = 0;
818 par->update_mode = -1;
819 par->last_mode = -1;
820 par->flash = 0;
821
822 par->regulator = regulator_get(info->device, "vdd");
823 if (IS_ERR(par->regulator)) {
824 ret = PTR_ERR(par->regulator);
825 dev_err(info->device, "Failed to get regulator: %d\n", ret);
826 goto err_reg;
827 }
828
829 ret = board->init(par);
830 if (ret) {
831 dev_err(info->device, "board init failed, %d\n", ret);
832 goto err_board;
833 }
834
835 ret = gpio_request(board->gpio_nsleep, "AUOK190x sleep");
836 if (ret) {
837 dev_err(info->device, "could not request sleep gpio, %d\n",
838 ret);
839 goto err_gpio1;
840 }
841
842 ret = gpio_direction_output(board->gpio_nsleep, 0);
843 if (ret) {
844 dev_err(info->device, "could not set sleep gpio, %d\n", ret);
845 goto err_gpio2;
846 }
847
848 ret = gpio_request(board->gpio_nrst, "AUOK190x reset");
849 if (ret) {
850 dev_err(info->device, "could not request reset gpio, %d\n",
851 ret);
852 goto err_gpio2;
853 }
854
855 ret = gpio_direction_output(board->gpio_nrst, 0);
856 if (ret) {
857 dev_err(info->device, "could not set reset gpio, %d\n", ret);
858 goto err_gpio3;
859 }
860
861 ret = auok190x_power(par, 1);
862 if (ret) {
863 dev_err(info->device, "could not power on the device, %d\n",
864 ret);
865 goto err_gpio3;
866 }
867
868 mutex_init(&par->io_lock);
869
870 init_waitqueue_head(&par->waitq);
871
872 ret = par->board->setup_irq(par->info);
873 if (ret) {
874 dev_err(info->device, "could not setup ready-irq, %d\n", ret);
875 goto err_irq;
876 }
877
878 /* wait for init to complete */
879 par->board->wait_for_rdy(par);
880
881 /*
882 * From here on the controller can talk to us
883 */
884
885 /* initialise fix, var, resolution and rotation */
886
887 strlcpy(info->fix.id, init->id, 16);
888 info->fix.type = FB_TYPE_PACKED_PIXELS;
889 info->fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR;
890 info->fix.xpanstep = 0;
891 info->fix.ypanstep = 0;
892 info->fix.ywrapstep = 0;
893 info->fix.accel = FB_ACCEL_NONE;
894
895 info->var.bits_per_pixel = 8;
896 info->var.grayscale = 1;
897 info->var.red.length = 8;
898 info->var.green.length = 8;
899 info->var.blue.length = 8;
900
901 panel = &panel_table[board->resolution];
902
903 /* if 90 degree rotation, switch width and height */
904 if (board->rotation & 1) {
905 info->var.xres = panel->h;
906 info->var.yres = panel->w;
907 info->var.xres_virtual = panel->h;
908 info->var.yres_virtual = panel->w;
909 info->fix.line_length = panel->h * info->var.bits_per_pixel / 8;
910 } else {
911 info->var.xres = panel->w;
912 info->var.yres = panel->h;
913 info->var.xres_virtual = panel->w;
914 info->var.yres_virtual = panel->h;
915 info->fix.line_length = panel->w * info->var.bits_per_pixel / 8;
916 }
917
918 par->resolution = board->resolution;
919 par->rotation = board->rotation;
920
921 /* videomemory handling */
922
923 videomemorysize = roundup((panel->w * panel->h) *
924 info->var.bits_per_pixel / 8, PAGE_SIZE);
925 videomemory = vmalloc(videomemorysize);
926 if (!videomemory) {
927 ret = -ENOMEM;
928 goto err_irq;
929 }
930
931 memset(videomemory, 0, videomemorysize);
932 info->screen_base = (char *)videomemory;
933 info->fix.smem_len = videomemorysize;
934
935 info->flags = FBINFO_FLAG_DEFAULT | FBINFO_VIRTFB;
936 info->fbops = &auok190xfb_ops;
937
938 /* deferred io init */
939
940 info->fbdefio = devm_kzalloc(info->device,
941 sizeof(struct fb_deferred_io),
942 GFP_KERNEL);
943 if (!info->fbdefio) {
944 dev_err(info->device, "Failed to allocate memory\n");
945 ret = -ENOMEM;
946 goto err_defio;
947 }
948
949 dev_dbg(info->device, "targetting %d frames per second\n", board->fps);
950 info->fbdefio->delay = HZ / board->fps;
951 info->fbdefio->first_io = auok190xfb_dpy_first_io,
952 info->fbdefio->deferred_io = auok190xfb_dpy_deferred_io,
953 fb_deferred_io_init(info);
954
955 /* color map */
956
957 ret = fb_alloc_cmap(&info->cmap, 256, 0);
958 if (ret < 0) {
959 dev_err(info->device, "Failed to allocate colormap\n");
960 goto err_cmap;
961 }
962
963 /* controller init */
964
965 par->consecutive_threshold = 100;
966 par->init(par);
967 auok190x_identify(par);
968
969 platform_set_drvdata(pdev, info);
970
971 ret = register_framebuffer(info);
972 if (ret < 0)
973 goto err_regfb;
974
975 ret = sysfs_create_group(&info->device->kobj, &auok190x_attr_group);
976 if (ret)
977 goto err_sysfs;
978
979 dev_info(info->device, "fb%d: %dx%d using %dK of video memory\n",
980 info->node, info->var.xres, info->var.yres,
981 videomemorysize >> 10);
982
983 /* increase autosuspend_delay when we use alternative methods
984 * for runtime_pm
985 */
986 par->autosuspend_delay = (board->quirks & AUOK190X_QUIRK_STANDBYBROKEN)
987 ? 1000 : 200;
988
989 pm_runtime_set_active(info->device);
990 pm_runtime_enable(info->device);
991 pm_runtime_set_autosuspend_delay(info->device, par->autosuspend_delay);
992 pm_runtime_use_autosuspend(info->device);
993
994 return 0;
995
996 err_sysfs:
997 unregister_framebuffer(info);
998 err_regfb:
999 fb_dealloc_cmap(&info->cmap);
1000 err_cmap:
1001 fb_deferred_io_cleanup(info);
1002 err_defio:
1003 vfree((void *)info->screen_base);
1004 err_irq:
1005 auok190x_power(par, 0);
1006 err_gpio3:
1007 gpio_free(board->gpio_nrst);
1008 err_gpio2:
1009 gpio_free(board->gpio_nsleep);
1010 err_gpio1:
1011 board->cleanup(par);
1012 err_board:
1013 regulator_put(par->regulator);
1014 err_reg:
1015 framebuffer_release(info);
1016
1017 return ret;
1018 }
1019 EXPORT_SYMBOL_GPL(auok190x_common_probe);
1020
1021 int auok190x_common_remove(struct platform_device *pdev)
1022 {
1023 struct fb_info *info = platform_get_drvdata(pdev);
1024 struct auok190xfb_par *par = info->par;
1025 struct auok190x_board *board = par->board;
1026
1027 pm_runtime_disable(info->device);
1028
1029 sysfs_remove_group(&info->device->kobj, &auok190x_attr_group);
1030
1031 unregister_framebuffer(info);
1032
1033 fb_dealloc_cmap(&info->cmap);
1034
1035 fb_deferred_io_cleanup(info);
1036
1037 vfree((void *)info->screen_base);
1038
1039 auok190x_power(par, 0);
1040
1041 gpio_free(board->gpio_nrst);
1042 gpio_free(board->gpio_nsleep);
1043
1044 board->cleanup(par);
1045
1046 regulator_put(par->regulator);
1047
1048 framebuffer_release(info);
1049
1050 return 0;
1051 }
1052 EXPORT_SYMBOL_GPL(auok190x_common_remove);
1053
1054 MODULE_DESCRIPTION("Common code for AUO-K190X controllers");
1055 MODULE_AUTHOR("Heiko Stuebner <heiko@sntech.de>");
1056 MODULE_LICENSE("GPL");
This page took 0.050518 seconds and 4 git commands to generate.