]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/staging/fbtft/fb_ili9481.c
staging/fbtft : Remove FSF mailing address
[karo-tx-linux.git] / drivers / staging / fbtft / fb_ili9481.c
1 /*
2  * FB driver for the ILI9481 LCD Controller
3  *
4  * Copyright (c) 2014 Petr Olivka
5  * Copyright (c) 2013 Noralf Tronnes
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  */
17
18 #include <linux/module.h>
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/delay.h>
22
23 #include "fbtft.h"
24
25 #define DRVNAME "fb_ili9481"
26 #define WIDTH           320
27 #define HEIGHT          480
28
29 static int default_init_sequence[] = {
30
31         /* SLP_OUT - Sleep out */
32         -1, 0x11,
33         -2, 50,
34         /* Power setting */
35         -1, 0xD0, 0x07, 0x42, 0x18,
36         /* VCOM */
37         -1, 0xD1, 0x00, 0x07, 0x10,
38         /* Power setting for norm. mode */
39         -1, 0xD2, 0x01, 0x02,
40         /* Panel driving setting */
41         -1, 0xC0, 0x10, 0x3B, 0x00, 0x02, 0x11,
42         /* Frame rate & inv. */
43         -1, 0xC5, 0x03,
44         /* Pixel format */
45         -1, 0x3A, 0x55,
46         /* Gamma */
47         -1, 0xC8, 0x00, 0x32, 0x36, 0x45, 0x06, 0x16,
48                   0x37, 0x75, 0x77, 0x54, 0x0C, 0x00,
49         /* DISP_ON */
50         -1, 0x29,
51         -3
52 };
53
54 static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
55 {
56         fbtft_par_dbg(DEBUG_SET_ADDR_WIN, par,
57                 "%s(xs=%d, ys=%d, xe=%d, ye=%d)\n", __func__, xs, ys, xe, ye);
58
59         /* column address */
60         write_reg(par, 0x2a, xs >> 8, xs & 0xff, xe >> 8, xe & 0xff);
61
62         /* Row address */
63         write_reg(par, 0x2b, ys >> 8, ys & 0xff, ye >> 8, ye & 0xff);
64
65         /* memory write */
66         write_reg(par, 0x2c);
67 }
68
69 #define HFLIP 0x01
70 #define VFLIP 0x02
71 #define ROWxCOL 0x20
72 static int set_var(struct fbtft_par *par)
73 {
74         fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, "%s()\n", __func__);
75
76         switch (par->info->var.rotate) {
77         case 270:
78                 write_reg(par, 0x36, ROWxCOL | HFLIP | VFLIP | (par->bgr << 3));
79                 break;
80         case 180:
81                 write_reg(par, 0x36, VFLIP | (par->bgr << 3));
82                 break;
83         case 90:
84                 write_reg(par, 0x36, ROWxCOL | (par->bgr << 3));
85                 break;
86         default:
87                 write_reg(par, 0x36, HFLIP | (par->bgr << 3));
88                 break;
89         }
90
91         return 0;
92 }
93
94 static struct fbtft_display display = {
95         .regwidth = 8,
96         .width = WIDTH,
97         .height = HEIGHT,
98         .init_sequence = default_init_sequence,
99         .fbtftops = {
100                 .set_addr_win = set_addr_win,
101                 .set_var = set_var,
102         },
103 };
104 FBTFT_REGISTER_DRIVER(DRVNAME, "ilitek,ili9481", &display);
105
106 MODULE_ALIAS("spi:" DRVNAME);
107 MODULE_ALIAS("platform:" DRVNAME);
108 MODULE_ALIAS("spi:ili9481");
109 MODULE_ALIAS("platform:ili9481");
110
111 MODULE_DESCRIPTION("FB driver for the ILI9481 LCD Controller");
112 MODULE_AUTHOR("Petr Olivka");
113 MODULE_LICENSE("GPL");