4cbd2ff25334ce4f1e590099d33eae785a1354bd
[profile/mobile/platform/kernel/u-boot-tm1.git] / arch / arm / include / asm / arch-sc8825 / sprd_lcd.h
1 /* drivers/video/sc8810/sc8810_lcd.h
2  *
3  * Spreadtrum LCD abstraction
4  *
5  * Copyright (C) 2010 Spreadtrum.com
6  *
7  * This software is licensed under the terms of the GNU General Public
8  * License version 2, as published by the Free Software Foundation, and
9  * may be copied, distributed, and modified under those terms.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
16
17 #ifndef _TIGER_LCD_H_
18 #define _TIGER_LCD_H_
19
20 #include <asm/arch/sci_types.h>
21
22 #include <linux/types.h>
23 #include <common.h>
24
25 #define LCD_DelayMS(ms)  udelay(1000*(ms))
26
27 /* LCD mode */
28 #define SPRDFB_I2C_WRITE_DELAY 0xffff
29
30
31 /* LCD mode */
32 #define LCD_MODE_MCU                    0
33 #define LCD_MODE_RGB                    1
34 #define LCD_MODE_DSI                    2
35 #define LCD_MODE_LVDS>-->--->---3
36
37 /* bus mode */
38 #define LCD_BUS_8080                    0
39 #define LCD_BUS_6800                    1
40 #define LCD_BUS_SPI                     2
41
42 /* lcd directions */
43 #define LCD_DIRECT_NORMAL               0
44 #define LCD_DIRECT_ROT_90               1
45 #define LCD_DIRECT_ROT_180              2
46 #define LCD_DIRECT_ROT_270              3
47 #define LCD_DIRECT_MIR_H                4
48 #define LCD_DIRECT_MIR_V                5
49 #define LCD_DIRECT_MIR_HV               6
50
51 #define PIN_PWM0_MOD_VALUE 0x20
52
53 #define SPRD_PWM_BASE                   0x88000000
54 #define SPRD_PWM_REG(off)               (SPRD_PWM_BASE + (off))
55 #define SPRD_PWM0_PRESCALE      SPRD_PWM_REG(0x0000)
56 #define SPRD_PWM0_CNT                   SPRD_PWM_REG(0x0004)
57 #define SPRD_PWM0_TONE_DIV      SPRD_PWM_REG(0x0008)
58 #define SPRD_PWM0_PAT_LOW       SPRD_PWM_REG(0x000C)
59 #define SPRD_PWM0_PAT_HIG       SPRD_PWM_REG(0x0010)
60
61 #define LCD_PWM_PRESCALE_VALUE  0x01
62 #define LCD_PWM_MOD_VALUE               0xFF
63 #define PWM_REG_MSK_VALUE                       0xFFFF
64
65 #define LCD_PWM0_EN BIT_8
66
67
68 /* panel property */
69 /* lcdc refresh, TE on, double timing, partial update*/
70 #define PANEL_CAP_NORMAL               0x0
71
72 /* only not support partial update*/
73 #define PANEL_CAP_NOT_PARTIAL_UPDATE   0x1
74
75 /* write register, grame have the same timing */
76 #define PANEL_CAP_UNIQUE_TIMING        0x2
77
78 /* lcd not support TE */
79 #define PANEL_CAP_NOT_TEAR_SYNC        0x4
80
81 /* only do command/data register, such as some mono oled display device */
82 #define PANEL_CAP_MANUAL_REFRESH       0x8
83
84 enum{
85         SPRDFB_PANEL_TYPE_MCU = 0,
86         SPRDFB_PANEL_TYPE_RGB,
87         SPRDFB_PANEL_TYPE_MIPI,
88         SPRDFB_PANEL_TYPE_LVDS,
89         SPRDFB_PANEL_TYPE_LIMIT
90 };
91
92 enum{
93         SPRDFB_POLARITY_POS = 0,
94         SPRDFB_POLARITY_NEG,
95         SPRDFB_POLARITY_LIMIT
96 };
97
98 enum{
99         SPRDFB_RGB_BUS_TYPE_I2C = 0,
100         SPRDFB_RGB_BUS_TYPE_SPI,
101         SPRDFB_RGB_BUS_TYPE_LVDS,
102         SPRDFB_RGB_BUG_TYPE_LIMIT
103 };
104
105 enum{
106         SPRDFB_MIPI_MODE_CMD = 0,
107         SPRDFB_MIPI_MODE_VIDEO,
108         SPRDFB_MIPI_MODE_LIMIT
109 };
110
111 struct panel_spec;
112
113 typedef int32_t (*send_cmd_t)(uint32_t data);
114 typedef int32_t (*send_data_t)(uint32_t data);
115 typedef int32_t (*send_cmd_data_t)(uint32_t cmd, uint32_t data);
116 typedef uint32_t (*read_data_t)(void);
117
118
119 typedef int32_t (*mipi_set_cmd_mode_t)(void);
120 typedef int32_t (*mipi_set_video_mode_t)(void);
121 typedef int32_t (*mipi_gen_write_t)(uint8_t *param, uint16_t param_length);
122 typedef int32_t (*mipi_gen_read_t)(uint8_t *param, uint16_t param_length, uint8_t bytes_to_read, uint8_t *read_buffer);
123 typedef int32_t (*mipi_dcs_write_t)(uint8_t *param, uint16_t param_length);
124 typedef int32_t (*mipi_dcs_read_t)(uint8_t command, uint8_t bytes_to_read, uint8_t *read_buffer);
125 typedef int32_t (*mipi_force_write_t)(uint8_t data_type, uint8_t *param, uint16_t param_length);        //add for LCD adapter
126 typedef int32_t (*mipi_force_read_t)(uint8_t command, uint8_t bytes_to_read, uint8_t *read_buffer);
127 typedef   int32_t (*mipi_eotp_set_t)(uint8_t rx_en, uint8_t tx_en);
128
129 typedef int32_t (*i2c_write_8bits_t)(uint8_t addr, uint8_t reg, uint8_t val);
130 typedef int32_t (*i2c_read_8bits_t)(uint8_t addr, uint8_t reg, uint8_t *val);
131 typedef int32_t (*i2c_write_16bits_t)(uint8_t addr, uint16_t reg, BOOLEAN reg_is_8bit, uint16_t val, BOOLEAN val_is_8bit);
132 typedef int32_t (*i2c_read_16bits_t)(uint8_t addr, uint16_t reg, BOOLEAN reg_is_8bit, uint16_t *val, BOOLEAN val_is_8bit);
133 typedef int32_t (*i2c_write_burst_t)(uint8_t addr, uint8_t* buf, int num);
134
135 typedef void (*spi_send_cmd_t)(uint32_t cmd);
136 typedef void (*spi_send_data_t)(uint32_t data);
137 typedef void (*spi_read_t)(uint32_t *data);
138
139 /* LCD operations */
140 struct panel_operations {
141         int32_t (*panel_init)(struct panel_spec *self);
142         int32_t (*panel_close)(struct panel_spec *self);
143         int32_t (*panel_reset)(struct panel_spec *self);
144         int32_t (*panel_enter_sleep)(struct panel_spec *self, uint8_t is_sleep);
145         int32_t (*panel_set_contrast)(struct panel_spec *self, uint16_t contrast);
146         int32_t (*panel_set_brightness)(struct panel_spec *self,
147                                 uint16_t brightness);
148         int32_t (*panel_set_window)(struct panel_spec *self,
149                                 uint16_t left, uint16_t top,
150                                 uint16_t right, uint16_t bottom);
151         int32_t (*panel_invalidate)(struct panel_spec *self);
152         int32_t (*panel_invalidate_rect)(struct panel_spec *self,
153                                 uint16_t left, uint16_t top,
154                                 uint16_t right, uint16_t bottom);
155         int32_t (*panel_rotate_invalidate_rect)(struct panel_spec *self,
156                                 uint16_t left, uint16_t top,
157                                 uint16_t right, uint16_t bottom,
158                                 uint16_t angle);
159         int32_t (*panel_set_direction)(struct panel_spec *self, uint16_t direction);
160         uint32_t (*panel_readid)(struct panel_spec *self);
161 };
162
163 /* MCU LCD specific properties */
164 struct timing_mcu {
165         uint16_t rcss;
166         uint16_t rlpw;
167         uint16_t rhpw;
168         uint16_t wcss;
169         uint16_t wlpw;
170         uint16_t whpw;
171 };
172
173 /* RGB LCD specific properties */
174 struct timing_rgb {
175         uint16_t hfp;
176         uint16_t hbp;
177         uint16_t hsync;
178         uint16_t vfp;
179         uint16_t vbp;
180         uint16_t vsync;
181 };
182
183 struct ops_mcu {
184         int32_t (*send_cmd)(uint32_t cmd);
185         int32_t (*send_cmd_data)(uint32_t cmd, uint32_t data);
186         int32_t (*send_data)(uint32_t data);
187         uint32_t (*read_data)(void);
188 };
189
190 struct ops_i2c {
191         int32_t (*i2c_write_8bits)(uint8_t addr, uint8_t reg, uint8_t val);
192         int32_t (*i2c_read_8bits)(uint8_t addr, uint8_t reg, uint8_t *val);
193         int32_t (*i2c_write_16bits)(uint8_t addr, uint16_t reg, BOOLEAN reg_is_8bit, uint16_t val, BOOLEAN val_is_8bit);
194         int32_t (*i2c_read_16bits)(uint8_t addr, uint16_t reg, BOOLEAN reg_is_8bit, uint16_t *val, BOOLEAN val_is_8bit);
195         int32_t (*i2c_write_burst)(uint8_t addr, uint8_t* buf, int num);
196 };
197
198 struct ops_spi{
199         void (*spi_send_cmd)(uint32_t cmd);
200         void (*spi_send_data)(uint32_t data);
201         void (*spi_read)(uint32_t *data);
202 };
203
204 struct ops_mipi{
205         int32_t (*mipi_set_cmd_mode)(void);
206         int32_t (*mipi_set_video_mode)(void);
207         int32_t (*mipi_set_lp_mode)(void);
208         int32_t (*mipi_set_hs_mode)(void);
209         int32_t (*mipi_gen_write)(uint8_t *param, uint16_t param_length);
210         int32_t (*mipi_gen_read)(uint8_t *param, uint16_t param_length, uint8_t bytes_to_read, uint8_t *read_buffer);
211         int32_t (*mipi_dcs_write)(uint8_t *param, uint16_t param_length);
212         int32_t (*mipi_dcs_read)(uint8_t command, uint8_t bytes_to_read, uint8_t *read_buffer);
213         int32_t (*mipi_force_write)(uint8_t data_type, uint8_t *param, uint16_t param_length);                          //add for LCD adapter
214         int32_t (*mipi_force_read)(uint8_t command, uint8_t bytes_to_read, uint8_t *read_buffer);
215         int32_t (*mipi_eotp_set)(uint8_t rx_en, uint8_t tx_en);
216 };
217
218 struct i2c_info{
219         uint32_t i2c_addr;
220         struct ops_i2c *ops;
221 };
222
223 struct spi_info{
224         struct ops_spi *ops;
225 };
226
227 struct info_mipi {
228         uint16_t work_mode; /*command_mode, video_mode*/
229         uint16_t video_bus_width;
230         uint32_t lan_number;
231         uint32_t phy_feq;
232         uint16_t h_sync_pol;
233         uint16_t v_sync_pol;
234         uint16_t de_pol;
235         uint16_t te_pol; /*only for command_mode*/
236         uint16_t color_mode_pol;
237         uint16_t shut_down_pol;
238         struct timing_rgb *timing;
239         struct ops_mipi *ops;
240 };
241
242 struct info_rgb {
243         uint16_t cmd_bus_mode; /*spi, i2c*/
244         uint16_t video_bus_width;
245         uint16_t h_sync_pol;
246         uint16_t v_sync_pol;
247         uint16_t de_pol;
248         struct timing_rgb *timing;
249         union{
250                 struct i2c_info *i2c;
251                 struct spi_info *spi;
252         }bus_info;
253 };
254
255 struct info_mcu {
256         uint16_t bus_mode; /*8080, 6800*/
257         uint16_t bus_width;
258         uint16_t bpp;
259         uint16_t te_pol;
260         uint32_t te_sync_delay;
261         struct timing_mcu *timing;
262         struct ops_mcu *ops;
263 };
264
265
266 /* LCD abstraction */
267 struct panel_spec {
268         uint32_t cap;
269         uint16_t width;
270         uint16_t height;
271         uint32_t fps;
272         uint16_t type; /*mcu, rgb, mipi*/
273         uint16_t direction;
274         union {
275                 struct info_mcu *mcu;
276                 struct info_rgb *rgb;
277                 struct info_mipi * mipi;
278         } info;
279         struct panel_operations *ops;
280 };
281
282 struct panel_cfg {
283         uint32_t lcd_id;
284         struct panel_spec *panel;
285 };
286
287 extern void LCD_SetBackLightBrightness( unsigned long  value);
288 #endif
289