access_process_vm device memory infrastructure
[pandora-kernel.git] / include / video / atmel_lcdc.h
1 /*
2  *  Header file for AT91/AT32 LCD Controller
3  *
4  *  Data structure and register user interface
5  *
6  *  Copyright (C) 2007 Atmel Corporation
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22 #ifndef __ATMEL_LCDC_H__
23 #define __ATMEL_LCDC_H__
24
25
26 /* Way LCD wires are connected to the chip:
27  * Some Atmel chips use BGR color mode (instead of standard RGB)
28  * A swapped wiring onboard can bring to RGB mode.
29  */
30 #define ATMEL_LCDC_WIRING_BGR   0
31 #define ATMEL_LCDC_WIRING_RGB   1
32
33
34  /* LCD Controller info data structure, stored in device platform_data */
35 struct atmel_lcdfb_info {
36         spinlock_t              lock;
37         struct fb_info          *info;
38         void __iomem            *mmio;
39         unsigned long           irq_base;
40
41         unsigned int            guard_time;
42         struct platform_device  *pdev;
43         struct clk              *bus_clk;
44         struct clk              *lcdc_clk;
45
46 #ifdef CONFIG_BACKLIGHT_ATMEL_LCDC
47         struct backlight_device *backlight;
48         u8                      bl_power;
49 #endif
50         bool                    lcdcon_is_backlight;
51         u8                      saved_lcdcon;
52
53         u8                      default_bpp;
54         u8                      lcd_wiring_mode;
55         unsigned int            default_lcdcon2;
56         unsigned int            default_dmacon;
57         void (*atmel_lcdfb_power_control)(int on);
58         struct fb_monspecs      *default_monspecs;
59         u32                     pseudo_palette[16];
60 };
61
62 #define ATMEL_LCDC_DMABADDR1    0x00
63 #define ATMEL_LCDC_DMABADDR2    0x04
64 #define ATMEL_LCDC_DMAFRMPT1    0x08
65 #define ATMEL_LCDC_DMAFRMPT2    0x0c
66 #define ATMEL_LCDC_DMAFRMADD1   0x10
67 #define ATMEL_LCDC_DMAFRMADD2   0x14
68
69 #define ATMEL_LCDC_DMAFRMCFG    0x18
70 #define ATMEL_LCDC_FRSIZE       (0x7fffff <<  0)
71 #define ATMEL_LCDC_BLENGTH_OFFSET       24
72 #define ATMEL_LCDC_BLENGTH      (0x7f     << ATMEL_LCDC_BLENGTH_OFFSET)
73
74 #define ATMEL_LCDC_DMACON       0x1c
75 #define ATMEL_LCDC_DMAEN        (0x1 << 0)
76 #define ATMEL_LCDC_DMARST       (0x1 << 1)
77 #define ATMEL_LCDC_DMABUSY      (0x1 << 2)
78 #define         ATMEL_LCDC_DMAUPDT      (0x1 << 3)
79 #define         ATMEL_LCDC_DMA2DEN      (0x1 << 4)
80
81 #define ATMEL_LCDC_DMA2DCFG     0x20
82 #define         ATMEL_LCDC_ADDRINC_OFFSET       0
83 #define         ATMEL_LCDC_ADDRINC              (0xffff)
84 #define         ATMEL_LCDC_PIXELOFF_OFFSET      24
85 #define         ATMEL_LCDC_PIXELOFF             (0x1f << 24)
86
87 #define ATMEL_LCDC_LCDCON1      0x0800
88 #define ATMEL_LCDC_BYPASS       (1     <<  0)
89 #define ATMEL_LCDC_CLKVAL_OFFSET        12
90 #define ATMEL_LCDC_CLKVAL       (0x1ff << ATMEL_LCDC_CLKVAL_OFFSET)
91 #define ATMEL_LCDC_LINCNT       (0x7ff << 21)
92
93 #define ATMEL_LCDC_LCDCON2      0x0804
94 #define ATMEL_LCDC_DISTYPE      (3 << 0)
95 #define         ATMEL_LCDC_DISTYPE_STNMONO      (0 << 0)
96 #define         ATMEL_LCDC_DISTYPE_STNCOLOR     (1 << 0)
97 #define         ATMEL_LCDC_DISTYPE_TFT          (2 << 0)
98 #define ATMEL_LCDC_SCANMOD      (1 << 2)
99 #define         ATMEL_LCDC_SCANMOD_SINGLE       (0 << 2)
100 #define         ATMEL_LCDC_SCANMOD_DUAL         (1 << 2)
101 #define ATMEL_LCDC_IFWIDTH      (3 << 3)
102 #define         ATMEL_LCDC_IFWIDTH_4            (0 << 3)
103 #define         ATMEL_LCDC_IFWIDTH_8            (1 << 3)
104 #define         ATMEL_LCDC_IFWIDTH_16           (2 << 3)
105 #define ATMEL_LCDC_PIXELSIZE    (7 << 5)
106 #define         ATMEL_LCDC_PIXELSIZE_1          (0 << 5)
107 #define         ATMEL_LCDC_PIXELSIZE_2          (1 << 5)
108 #define         ATMEL_LCDC_PIXELSIZE_4          (2 << 5)
109 #define         ATMEL_LCDC_PIXELSIZE_8          (3 << 5)
110 #define         ATMEL_LCDC_PIXELSIZE_16         (4 << 5)
111 #define         ATMEL_LCDC_PIXELSIZE_24         (5 << 5)
112 #define         ATMEL_LCDC_PIXELSIZE_32         (6 << 5)
113 #define ATMEL_LCDC_INVVD        (1 << 8)
114 #define         ATMEL_LCDC_INVVD_NORMAL         (0 << 8)
115 #define         ATMEL_LCDC_INVVD_INVERTED       (1 << 8)
116 #define ATMEL_LCDC_INVFRAME     (1 << 9 )
117 #define         ATMEL_LCDC_INVFRAME_NORMAL      (0 << 9)
118 #define         ATMEL_LCDC_INVFRAME_INVERTED    (1 << 9)
119 #define ATMEL_LCDC_INVLINE      (1 << 10)
120 #define         ATMEL_LCDC_INVLINE_NORMAL       (0 << 10)
121 #define         ATMEL_LCDC_INVLINE_INVERTED     (1 << 10)
122 #define ATMEL_LCDC_INVCLK       (1 << 11)
123 #define         ATMEL_LCDC_INVCLK_NORMAL        (0 << 11)
124 #define         ATMEL_LCDC_INVCLK_INVERTED      (1 << 11)
125 #define ATMEL_LCDC_INVDVAL      (1 << 12)
126 #define         ATMEL_LCDC_INVDVAL_NORMAL       (0 << 12)
127 #define         ATMEL_LCDC_INVDVAL_INVERTED     (1 << 12)
128 #define ATMEL_LCDC_CLKMOD       (1 << 15)
129 #define         ATMEL_LCDC_CLKMOD_ACTIVEDISPLAY (0 << 15)
130 #define         ATMEL_LCDC_CLKMOD_ALWAYSACTIVE  (1 << 15)
131 #define ATMEL_LCDC_MEMOR        (1 << 31)
132 #define         ATMEL_LCDC_MEMOR_BIG            (0 << 31)
133 #define         ATMEL_LCDC_MEMOR_LITTLE         (1 << 31)
134
135 #define ATMEL_LCDC_TIM1         0x0808
136 #define ATMEL_LCDC_VFP          (0xffU <<  0)
137 #define ATMEL_LCDC_VBP_OFFSET           8
138 #define ATMEL_LCDC_VBP          (0xffU <<  ATMEL_LCDC_VBP_OFFSET)
139 #define ATMEL_LCDC_VPW_OFFSET           16
140 #define ATMEL_LCDC_VPW          (0x3fU << ATMEL_LCDC_VPW_OFFSET)
141 #define ATMEL_LCDC_VHDLY_OFFSET         24
142 #define ATMEL_LCDC_VHDLY        (0xfU  << ATMEL_LCDC_VHDLY_OFFSET)
143
144 #define ATMEL_LCDC_TIM2         0x080c
145 #define ATMEL_LCDC_HBP          (0xffU  <<  0)
146 #define ATMEL_LCDC_HPW_OFFSET           8
147 #define ATMEL_LCDC_HPW          (0x3fU  <<  ATMEL_LCDC_HPW_OFFSET)
148 #define ATMEL_LCDC_HFP_OFFSET           21
149 #define ATMEL_LCDC_HFP          (0x7ffU << ATMEL_LCDC_HFP_OFFSET)
150
151 #define ATMEL_LCDC_LCDFRMCFG    0x0810
152 #define ATMEL_LCDC_LINEVAL      (0x7ff <<  0)
153 #define ATMEL_LCDC_HOZVAL_OFFSET        21
154 #define ATMEL_LCDC_HOZVAL       (0x7ff << ATMEL_LCDC_HOZVAL_OFFSET)
155
156 #define ATMEL_LCDC_FIFO         0x0814
157 #define ATMEL_LCDC_FIFOTH       (0xffff)
158
159 #define ATMEL_LCDC_MVAL         0x0818
160
161 #define ATMEL_LCDC_DP1_2        0x081c
162 #define ATMEL_LCDC_DP4_7        0x0820
163 #define ATMEL_LCDC_DP3_5        0x0824
164 #define ATMEL_LCDC_DP2_3        0x0828
165 #define ATMEL_LCDC_DP5_7        0x082c
166 #define ATMEL_LCDC_DP3_4        0x0830
167 #define ATMEL_LCDC_DP4_5        0x0834
168 #define ATMEL_LCDC_DP6_7        0x0838
169 #define ATMEL_LCDC_DP1_2_VAL    (0xff)
170 #define ATMEL_LCDC_DP4_7_VAL    (0xfffffff)
171 #define ATMEL_LCDC_DP3_5_VAL    (0xfffff)
172 #define ATMEL_LCDC_DP2_3_VAL    (0xfff)
173 #define ATMEL_LCDC_DP5_7_VAL    (0xfffffff)
174 #define ATMEL_LCDC_DP3_4_VAL    (0xffff)
175 #define ATMEL_LCDC_DP4_5_VAL    (0xfffff)
176 #define ATMEL_LCDC_DP6_7_VAL    (0xfffffff)
177
178 #define ATMEL_LCDC_PWRCON       0x083c
179 #define ATMEL_LCDC_PWR          (1    <<  0)
180 #define ATMEL_LCDC_GUARDT_OFFSET        1
181 #define ATMEL_LCDC_GUARDT       (0x7f <<  ATMEL_LCDC_GUARDT_OFFSET)
182 #define ATMEL_LCDC_BUSY         (1    << 31)
183
184 #define ATMEL_LCDC_CONTRAST_CTR 0x0840
185 #define ATMEL_LCDC_PS           (3 << 0)
186 #define         ATMEL_LCDC_PS_DIV1              (0 << 0)
187 #define         ATMEL_LCDC_PS_DIV2              (1 << 0)
188 #define         ATMEL_LCDC_PS_DIV4              (2 << 0)
189 #define         ATMEL_LCDC_PS_DIV8              (3 << 0)
190 #define ATMEL_LCDC_POL          (1 << 2)
191 #define         ATMEL_LCDC_POL_NEGATIVE         (0 << 2)
192 #define         ATMEL_LCDC_POL_POSITIVE         (1 << 2)
193 #define ATMEL_LCDC_ENA          (1 << 3)
194 #define         ATMEL_LCDC_ENA_PWMDISABLE       (0 << 3)
195 #define         ATMEL_LCDC_ENA_PWMENABLE        (1 << 3)
196
197 #define ATMEL_LCDC_CONTRAST_VAL 0x0844
198 #define ATMEL_LCDC_CVAL (0xff)
199
200 #define ATMEL_LCDC_IER          0x0848
201 #define ATMEL_LCDC_IDR          0x084c
202 #define ATMEL_LCDC_IMR          0x0850
203 #define ATMEL_LCDC_ISR          0x0854
204 #define ATMEL_LCDC_ICR          0x0858
205 #define ATMEL_LCDC_LNI          (1 << 0)
206 #define ATMEL_LCDC_LSTLNI       (1 << 1)
207 #define ATMEL_LCDC_EOFI         (1 << 2)
208 #define ATMEL_LCDC_UFLWI        (1 << 4)
209 #define ATMEL_LCDC_OWRI         (1 << 5)
210 #define ATMEL_LCDC_MERI         (1 << 6)
211
212 #define ATMEL_LCDC_LUT(n)       (0x0c00 + ((n)*4))
213
214 #endif /* __ATMEL_LCDC_H__ */