blob: f66f615df595889201c5fd6a4890c0decbb5ab71 [file] [log] [blame]
wdenk7a428cc2003-06-15 22:40:42 +00001/*
wdenk9ca7bbc2004-10-09 23:25:58 +00002 * PXA LCD Controller
3 *
wdenk7a428cc2003-06-15 22:40:42 +00004 * (C) Copyright 2001-2002
5 * Wolfgang Denk, DENX Software Engineering -- wd@denx.de
6 *
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +02007 * SPDX-License-Identifier: GPL-2.0+
wdenk7a428cc2003-06-15 22:40:42 +00008 */
9
10/************************************************************************/
11/* ** HEADER FILES */
12/************************************************************************/
13
wdenk7a428cc2003-06-15 22:40:42 +000014#include <config.h>
15#include <common.h>
16#include <version.h>
17#include <stdarg.h>
wdenk7a428cc2003-06-15 22:40:42 +000018#include <linux/types.h>
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +020019#include <stdio_dev.h>
wdenk9ca7bbc2004-10-09 23:25:58 +000020#include <lcd.h>
wdenk7a428cc2003-06-15 22:40:42 +000021#include <asm/arch/pxa-regs.h>
Marek Vasut2db1e962010-09-09 09:50:39 +020022#include <asm/io.h>
wdenk7a428cc2003-06-15 22:40:42 +000023
wdenk9ca7bbc2004-10-09 23:25:58 +000024/* #define DEBUG */
wdenk7a428cc2003-06-15 22:40:42 +000025
wdenk9ca7bbc2004-10-09 23:25:58 +000026#ifdef CONFIG_LCD
wdenk7a428cc2003-06-15 22:40:42 +000027
28/*----------------------------------------------------------------------*/
wdenk7a428cc2003-06-15 22:40:42 +000029/*
wdenk9ca7bbc2004-10-09 23:25:58 +000030 * Define panel bpp, LCCR0, LCCR3 and panel_info video struct for
31 * your display.
wdenk7a428cc2003-06-15 22:40:42 +000032 */
33
wdenk9ca7bbc2004-10-09 23:25:58 +000034#ifdef CONFIG_PXA_VGA
35/* LCD outputs connected to a video DAC */
36# define LCD_BPP LCD_COLOR8
wdenk7a428cc2003-06-15 22:40:42 +000037
38/* you have to set lccr0 and lccr3 (including pcd) */
wdenk9ca7bbc2004-10-09 23:25:58 +000039# define REG_LCCR0 0x003008f8
40# define REG_LCCR3 0x0300FF01
wdenk7a428cc2003-06-15 22:40:42 +000041
42/* 640x480x16 @ 61 Hz */
wdenk9ca7bbc2004-10-09 23:25:58 +000043vidinfo_t panel_info = {
Marek Vasut8c4a26e2010-09-23 08:32:54 +020044 .vl_col = 640,
45 .vl_row = 480,
46 .vl_width = 640,
47 .vl_height = 480,
48 .vl_clkp = CONFIG_SYS_HIGH,
49 .vl_oep = CONFIG_SYS_HIGH,
50 .vl_hsp = CONFIG_SYS_HIGH,
51 .vl_vsp = CONFIG_SYS_HIGH,
52 .vl_dp = CONFIG_SYS_HIGH,
53 .vl_bpix = LCD_BPP,
54 .vl_lbw = 0,
55 .vl_splt = 0,
56 .vl_clor = 0,
57 .vl_tft = 1,
58 .vl_hpw = 40,
59 .vl_blw = 56,
60 .vl_elw = 56,
61 .vl_vpw = 20,
62 .vl_bfw = 8,
63 .vl_efw = 8,
wdenk7a428cc2003-06-15 22:40:42 +000064};
65#endif /* CONFIG_PXA_VIDEO */
66
wdenk9ca7bbc2004-10-09 23:25:58 +000067/*----------------------------------------------------------------------*/
wdenk7a428cc2003-06-15 22:40:42 +000068#ifdef CONFIG_SHARP_LM8V31
69
wdenk9ca7bbc2004-10-09 23:25:58 +000070# define LCD_BPP LCD_COLOR8
71# define LCD_INVERT_COLORS /* Needed for colors to be correct, but why? */
wdenk7a428cc2003-06-15 22:40:42 +000072
73/* you have to set lccr0 and lccr3 (including pcd) */
wdenk9ca7bbc2004-10-09 23:25:58 +000074# define REG_LCCR0 0x0030087C
75# define REG_LCCR3 0x0340FF08
wdenk7a428cc2003-06-15 22:40:42 +000076
wdenk9ca7bbc2004-10-09 23:25:58 +000077vidinfo_t panel_info = {
Marek Vasut8c4a26e2010-09-23 08:32:54 +020078 .vl_col = 640,
79 .vl_row = 480,
80 .vl_width = 157,
81 .vl_height = 118,
82 .vl_clkp = CONFIG_SYS_HIGH,
83 .vl_oep = CONFIG_SYS_HIGH,
84 .vl_hsp = CONFIG_SYS_HIGH,
85 .vl_vsp = CONFIG_SYS_HIGH,
86 .vl_dp = CONFIG_SYS_HIGH,
87 .vl_bpix = LCD_BPP,
88 .vl_lbw = 0,
89 .vl_splt = 1,
90 .vl_clor = 1,
91 .vl_tft = 0,
92 .vl_hpw = 1,
93 .vl_blw = 3,
94 .vl_elw = 3,
95 .vl_vpw = 1,
96 .vl_bfw = 0,
97 .vl_efw = 0,
wdenk7a428cc2003-06-15 22:40:42 +000098};
99#endif /* CONFIG_SHARP_LM8V31 */
Marek Vasut846d9b62010-03-07 23:35:48 +0100100/*----------------------------------------------------------------------*/
101#ifdef CONFIG_VOIPAC_LCD
102
103# define LCD_BPP LCD_COLOR8
104# define LCD_INVERT_COLORS
105
106/* you have to set lccr0 and lccr3 (including pcd) */
107# define REG_LCCR0 0x043008f8
108# define REG_LCCR3 0x0340FF08
109
110vidinfo_t panel_info = {
Marek Vasut8c4a26e2010-09-23 08:32:54 +0200111 .vl_col = 640,
112 .vl_row = 480,
113 .vl_width = 157,
114 .vl_height = 118,
115 .vl_clkp = CONFIG_SYS_HIGH,
116 .vl_oep = CONFIG_SYS_HIGH,
117 .vl_hsp = CONFIG_SYS_HIGH,
118 .vl_vsp = CONFIG_SYS_HIGH,
119 .vl_dp = CONFIG_SYS_HIGH,
120 .vl_bpix = LCD_BPP,
121 .vl_lbw = 0,
122 .vl_splt = 1,
123 .vl_clor = 1,
124 .vl_tft = 1,
125 .vl_hpw = 32,
126 .vl_blw = 144,
127 .vl_elw = 32,
128 .vl_vpw = 2,
129 .vl_bfw = 13,
130 .vl_efw = 30,
Marek Vasut846d9b62010-03-07 23:35:48 +0100131};
132#endif /* CONFIG_VOIPAC_LCD */
wdenk7a428cc2003-06-15 22:40:42 +0000133
134/*----------------------------------------------------------------------*/
wdenk9ca7bbc2004-10-09 23:25:58 +0000135#ifdef CONFIG_HITACHI_SX14
136/* Hitachi SX14Q004-ZZA color STN LCD */
137#define LCD_BPP LCD_COLOR8
wdenk7a428cc2003-06-15 22:40:42 +0000138
wdenk9ca7bbc2004-10-09 23:25:58 +0000139/* you have to set lccr0 and lccr3 (including pcd) */
140#define REG_LCCR0 0x00301079
141#define REG_LCCR3 0x0340FF20
wdenk7a428cc2003-06-15 22:40:42 +0000142
wdenk9ca7bbc2004-10-09 23:25:58 +0000143vidinfo_t panel_info = {
Marek Vasut8c4a26e2010-09-23 08:32:54 +0200144 .vl_col = 320,
145 .vl_row = 240,
146 .vl_width = 167,
147 .vl_height = 109,
148 .vl_clkp = CONFIG_SYS_HIGH,
149 .vl_oep = CONFIG_SYS_HIGH,
150 .vl_hsp = CONFIG_SYS_HIGH,
151 .vl_vsp = CONFIG_SYS_HIGH,
152 .vl_dp = CONFIG_SYS_HIGH,
153 .vl_bpix = LCD_BPP,
154 .vl_lbw = 1,
155 .vl_splt = 0,
156 .vl_clor = 1,
157 .vl_tft = 0,
158 .vl_hpw = 1,
159 .vl_blw = 1,
160 .vl_elw = 1,
161 .vl_vpw = 7,
162 .vl_bfw = 0,
163 .vl_efw = 0,
wdenk7a428cc2003-06-15 22:40:42 +0000164};
wdenk9ca7bbc2004-10-09 23:25:58 +0000165#endif /* CONFIG_HITACHI_SX14 */
wdenk7a428cc2003-06-15 22:40:42 +0000166
167/*----------------------------------------------------------------------*/
Marek Vasutc2e92e02010-07-03 09:38:03 +0200168#ifdef CONFIG_LMS283GF05
169
170# define LCD_BPP LCD_COLOR8
Wolfgang Denk34ed1092010-09-19 17:47:52 +0200171/*# define LCD_INVERT_COLORS*/
Marek Vasutc2e92e02010-07-03 09:38:03 +0200172
173/* you have to set lccr0 and lccr3 (including pcd) */
174# define REG_LCCR0 0x043008f8
175# define REG_LCCR3 0x03b00009
176
177vidinfo_t panel_info = {
Marek Vasut8c4a26e2010-09-23 08:32:54 +0200178 .vl_col = 240,
179 .vl_row = 320,
180 .vl_width = 240,
181 .vl_height = 320,
182 .vl_clkp = CONFIG_SYS_HIGH,
183 .vl_oep = CONFIG_SYS_LOW,
184 .vl_hsp = CONFIG_SYS_LOW,
185 .vl_vsp = CONFIG_SYS_LOW,
186 .vl_dp = CONFIG_SYS_HIGH,
187 .vl_bpix = LCD_BPP,
188 .vl_lbw = 0,
189 .vl_splt = 1,
190 .vl_clor = 1,
191 .vl_tft = 1,
192 .vl_hpw = 4,
193 .vl_blw = 4,
194 .vl_elw = 8,
195 .vl_vpw = 4,
196 .vl_bfw = 4,
197 .vl_efw = 8,
Marek Vasutc2e92e02010-07-03 09:38:03 +0200198};
199#endif /* CONFIG_LMS283GF05 */
200
201/*----------------------------------------------------------------------*/
wdenk7a428cc2003-06-15 22:40:42 +0000202
Marek Vasutabd23e82010-07-18 04:46:55 +0200203#ifdef CONFIG_ACX517AKN
204
205# define LCD_BPP LCD_COLOR8
206
207/* you have to set lccr0 and lccr3 (including pcd) */
208# define REG_LCCR0 0x003008f9
209# define REG_LCCR3 0x03700006
210
211vidinfo_t panel_info = {
212 .vl_col = 320,
213 .vl_row = 320,
214 .vl_width = 320,
215 .vl_height = 320,
216 .vl_clkp = CONFIG_SYS_HIGH,
217 .vl_oep = CONFIG_SYS_LOW,
218 .vl_hsp = CONFIG_SYS_LOW,
219 .vl_vsp = CONFIG_SYS_LOW,
220 .vl_dp = CONFIG_SYS_HIGH,
221 .vl_bpix = LCD_BPP,
222 .vl_lbw = 0,
223 .vl_splt = 1,
224 .vl_clor = 1,
225 .vl_tft = 1,
226 .vl_hpw = 0x04,
227 .vl_blw = 0x1c,
228 .vl_elw = 0x08,
229 .vl_vpw = 0x01,
230 .vl_bfw = 0x07,
231 .vl_efw = 0x08,
232};
233#endif /* CONFIG_ACX517AKN */
234
Mike Dunnd08f30d2013-04-12 11:59:13 -0700235#ifdef CONFIG_ACX544AKN
236
237# define LCD_BPP LCD_COLOR16
238
239/* you have to set lccr0 and lccr3 (including pcd) */
240# define REG_LCCR0 0x003008f9
241# define REG_LCCR3 0x04700007 /* 16bpp */
242
243vidinfo_t panel_info = {
244 .vl_col = 320,
245 .vl_row = 320,
246 .vl_width = 320,
247 .vl_height = 320,
248 .vl_clkp = CONFIG_SYS_LOW,
249 .vl_oep = CONFIG_SYS_LOW,
250 .vl_hsp = CONFIG_SYS_LOW,
251 .vl_vsp = CONFIG_SYS_LOW,
252 .vl_dp = CONFIG_SYS_LOW,
253 .vl_bpix = LCD_BPP,
254 .vl_lbw = 0,
255 .vl_splt = 0,
256 .vl_clor = 1,
257 .vl_tft = 1,
258 .vl_hpw = 0x05,
259 .vl_blw = 0x13,
260 .vl_elw = 0x08,
261 .vl_vpw = 0x02,
262 .vl_bfw = 0x07,
263 .vl_efw = 0x05,
264};
265#endif /* CONFIG_ACX544AKN */
266
Marek Vasutabd23e82010-07-18 04:46:55 +0200267/*----------------------------------------------------------------------*/
268
Marek Vasut916caf92010-07-19 11:21:38 +0200269#ifdef CONFIG_LQ038J7DH53
270
271# define LCD_BPP LCD_COLOR8
272
273/* you have to set lccr0 and lccr3 (including pcd) */
274# define REG_LCCR0 0x003008f9
275# define REG_LCCR3 0x03700004
276
277vidinfo_t panel_info = {
278 .vl_col = 320,
279 .vl_row = 480,
280 .vl_width = 320,
281 .vl_height = 480,
282 .vl_clkp = CONFIG_SYS_HIGH,
283 .vl_oep = CONFIG_SYS_LOW,
284 .vl_hsp = CONFIG_SYS_LOW,
285 .vl_vsp = CONFIG_SYS_LOW,
286 .vl_dp = CONFIG_SYS_HIGH,
287 .vl_bpix = LCD_BPP,
288 .vl_lbw = 0,
289 .vl_splt = 1,
290 .vl_clor = 1,
291 .vl_tft = 1,
292 .vl_hpw = 0x04,
293 .vl_blw = 0x20,
294 .vl_elw = 0x01,
295 .vl_vpw = 0x01,
296 .vl_bfw = 0x04,
297 .vl_efw = 0x01,
298};
299#endif /* CONFIG_ACX517AKN */
300
301/*----------------------------------------------------------------------*/
302
Marek Vasut2b35a8f2009-12-31 03:44:22 +0100303#ifdef CONFIG_LITTLETON_LCD
304# define LCD_BPP LCD_COLOR8
305
306/* you have to set lccr0 and lccr3 (including pcd) */
307# define REG_LCCR0 0x003008f8
308# define REG_LCCR3 0x0300FF04
309
310vidinfo_t panel_info = {
311 .vl_col = 480,
312 .vl_row = 640,
313 .vl_width = 480,
314 .vl_height = 640,
315 .vl_clkp = CONFIG_SYS_HIGH,
316 .vl_oep = CONFIG_SYS_HIGH,
317 .vl_hsp = CONFIG_SYS_HIGH,
318 .vl_vsp = CONFIG_SYS_HIGH,
319 .vl_dp = CONFIG_SYS_HIGH,
320 .vl_bpix = LCD_BPP,
321 .vl_lbw = 0,
322 .vl_splt = 0,
323 .vl_clor = 0,
324 .vl_tft = 1,
325 .vl_hpw = 9,
326 .vl_blw = 8,
327 .vl_elw = 24,
328 .vl_vpw = 2,
329 .vl_bfw = 2,
330 .vl_efw = 4,
331};
332#endif /* CONFIG_LITTLETON_LCD */
333
334/*----------------------------------------------------------------------*/
335
wdenk9ca7bbc2004-10-09 23:25:58 +0000336static int pxafb_init_mem (void *lcdbase, vidinfo_t *vid);
337static void pxafb_setup_gpio (vidinfo_t *vid);
338static void pxafb_enable_controller (vidinfo_t *vid);
339static int pxafb_init (vidinfo_t *vid);
wdenk7a428cc2003-06-15 22:40:42 +0000340
wdenk7a428cc2003-06-15 22:40:42 +0000341/************************************************************************/
wdenk9ca7bbc2004-10-09 23:25:58 +0000342/* --------------- PXA chipset specific functions ------------------- */
wdenk7a428cc2003-06-15 22:40:42 +0000343/************************************************************************/
344
wdenk9ca7bbc2004-10-09 23:25:58 +0000345void lcd_ctrl_init (void *lcdbase)
wdenk7a428cc2003-06-15 22:40:42 +0000346{
wdenk57b2d802003-06-27 21:31:46 +0000347 pxafb_init_mem(lcdbase, &panel_info);
wdenk7a428cc2003-06-15 22:40:42 +0000348 pxafb_init(&panel_info);
349 pxafb_setup_gpio(&panel_info);
350 pxafb_enable_controller(&panel_info);
351}
352
353/*----------------------------------------------------------------------*/
wdenk7a428cc2003-06-15 22:40:42 +0000354#if LCD_BPP == LCD_COLOR8
wdenk9ca7bbc2004-10-09 23:25:58 +0000355void
wdenk7a428cc2003-06-15 22:40:42 +0000356lcd_setcolreg (ushort regno, ushort red, ushort green, ushort blue)
357{
358 struct pxafb_info *fbi = &panel_info.pxa;
359 unsigned short *palette = (unsigned short *)fbi->palette;
360 u_int val;
wdenk57b2d802003-06-27 21:31:46 +0000361
wdenk7a428cc2003-06-15 22:40:42 +0000362 if (regno < fbi->palette_size) {
363 val = ((red << 8) & 0xf800);
364 val |= ((green << 4) & 0x07e0);
365 val |= (blue & 0x001f);
366
367#ifdef LCD_INVERT_COLORS
368 palette[regno] = ~val;
369#else
wdenk9ca7bbc2004-10-09 23:25:58 +0000370 palette[regno] = val;
wdenk7a428cc2003-06-15 22:40:42 +0000371#endif
372 }
373
374 debug ("setcolreg: reg %2d @ %p: R=%02X G=%02X B=%02X => %04X\n",
375 regno, &palette[regno],
376 red, green, blue,
377 palette[regno]);
378}
wdenk9ca7bbc2004-10-09 23:25:58 +0000379#endif /* LCD_COLOR8 */
wdenk7a428cc2003-06-15 22:40:42 +0000380
381/*----------------------------------------------------------------------*/
Mike Dunn93f399f2013-04-12 11:59:14 -0700382__weak void lcd_enable(void)
wdenk7a428cc2003-06-15 22:40:42 +0000383{
384}
385
wdenk7a428cc2003-06-15 22:40:42 +0000386/************************************************************************/
wdenk9ca7bbc2004-10-09 23:25:58 +0000387/* ** PXA255 specific routines */
wdenk7a428cc2003-06-15 22:40:42 +0000388/************************************************************************/
389
wdenk9ca7bbc2004-10-09 23:25:58 +0000390/*
391 * Calculate fb size for VIDEOLFB_ATAG. Size returned contains fb,
392 * descriptors and palette areas.
393 */
394ulong calc_fbsize (void)
wdenk7a428cc2003-06-15 22:40:42 +0000395{
wdenk9ca7bbc2004-10-09 23:25:58 +0000396 ulong size;
397 int line_length = (panel_info.vl_col * NBITS (panel_info.vl_bpix)) / 8;
wdenk7a428cc2003-06-15 22:40:42 +0000398
wdenk9ca7bbc2004-10-09 23:25:58 +0000399 size = line_length * panel_info.vl_row;
400 size += PAGE_SIZE;
wdenk7a428cc2003-06-15 22:40:42 +0000401
wdenk9ca7bbc2004-10-09 23:25:58 +0000402 return size;
wdenk7a428cc2003-06-15 22:40:42 +0000403}
404
wdenk9ca7bbc2004-10-09 23:25:58 +0000405static int pxafb_init_mem (void *lcdbase, vidinfo_t *vid)
wdenk7a428cc2003-06-15 22:40:42 +0000406{
407 u_long palette_mem_size;
408 struct pxafb_info *fbi = &vid->pxa;
409 int fb_size = vid->vl_row * (vid->vl_col * NBITS (vid->vl_bpix)) / 8;
410
411 fbi->screen = (u_long)lcdbase;
412
413 fbi->palette_size = NBITS(vid->vl_bpix) == 8 ? 256 : 16;
414 palette_mem_size = fbi->palette_size * sizeof(u16);
wdenk9ca7bbc2004-10-09 23:25:58 +0000415
wdenk7a428cc2003-06-15 22:40:42 +0000416 debug("palette_mem_size = 0x%08lx\n", (u_long) palette_mem_size);
417 /* locate palette and descs at end of page following fb */
wdenk9ca7bbc2004-10-09 23:25:58 +0000418 fbi->palette = (u_long)lcdbase + fb_size + PAGE_SIZE - palette_mem_size;
wdenk7a428cc2003-06-15 22:40:42 +0000419
420 return 0;
421}
Marek Vasut23cf8e42009-11-28 13:57:43 +0100422#ifdef CONFIG_CPU_MONAHANS
423static inline void pxafb_setup_gpio (vidinfo_t *vid) {}
424#else
wdenk9ca7bbc2004-10-09 23:25:58 +0000425static void pxafb_setup_gpio (vidinfo_t *vid)
wdenk7a428cc2003-06-15 22:40:42 +0000426{
427 u_long lccr0;
428
429 /*
430 * setup is based on type of panel supported
431 */
432
433 lccr0 = vid->pxa.reg_lccr0;
434
435 /* 4 bit interface */
436 if ((lccr0 & LCCR0_CMS) && (lccr0 & LCCR0_SDS) && !(lccr0 & LCCR0_DPD))
437 {
438 debug("Setting GPIO for 4 bit data\n");
439 /* bits 58-61 */
Marek Vasut2db1e962010-09-09 09:50:39 +0200440 writel(readl(GPDR1) | (0xf << 26), GPDR1);
441 writel((readl(GAFR1_U) & ~(0xff << 20)) | (0xaa << 20),
442 GAFR1_U);
wdenk7a428cc2003-06-15 22:40:42 +0000443
444 /* bits 74-77 */
Marek Vasut2db1e962010-09-09 09:50:39 +0200445 writel(readl(GPDR2) | (0xf << 10), GPDR2);
446 writel((readl(GAFR2_L) & ~(0xff << 20)) | (0xaa << 20),
447 GAFR2_L);
wdenk7a428cc2003-06-15 22:40:42 +0000448 }
449
450 /* 8 bit interface */
451 else if (((lccr0 & LCCR0_CMS) && ((lccr0 & LCCR0_SDS) || (lccr0 & LCCR0_DPD))) ||
wdenk9ca7bbc2004-10-09 23:25:58 +0000452 (!(lccr0 & LCCR0_CMS) && !(lccr0 & LCCR0_PAS) && !(lccr0 & LCCR0_SDS)))
wdenk7a428cc2003-06-15 22:40:42 +0000453 {
454 debug("Setting GPIO for 8 bit data\n");
455 /* bits 58-65 */
Marek Vasut2db1e962010-09-09 09:50:39 +0200456 writel(readl(GPDR1) | (0x3f << 26), GPDR1);
457 writel(readl(GPDR2) | (0x3), GPDR2);
wdenk7a428cc2003-06-15 22:40:42 +0000458
Marek Vasut2db1e962010-09-09 09:50:39 +0200459 writel((readl(GAFR1_U) & ~(0xfff << 20)) | (0xaaa << 20),
460 GAFR1_U);
461 writel((readl(GAFR2_L) & ~0xf) | (0xa), GAFR2_L);
wdenk7a428cc2003-06-15 22:40:42 +0000462
463 /* bits 74-77 */
Marek Vasut2db1e962010-09-09 09:50:39 +0200464 writel(readl(GPDR2) | (0xf << 10), GPDR2);
465 writel((readl(GAFR2_L) & ~(0xff << 20)) | (0xaa << 20),
466 GAFR2_L);
wdenk7a428cc2003-06-15 22:40:42 +0000467 }
468
469 /* 16 bit interface */
470 else if (!(lccr0 & LCCR0_CMS) && ((lccr0 & LCCR0_SDS) || (lccr0 & LCCR0_PAS)))
471 {
472 debug("Setting GPIO for 16 bit data\n");
473 /* bits 58-77 */
Marek Vasut2db1e962010-09-09 09:50:39 +0200474 writel(readl(GPDR1) | (0x3f << 26), GPDR1);
475 writel(readl(GPDR2) | 0x00003fff, GPDR2);
wdenk7a428cc2003-06-15 22:40:42 +0000476
Marek Vasut2db1e962010-09-09 09:50:39 +0200477 writel((readl(GAFR1_U) & ~(0xfff << 20)) | (0xaaa << 20),
478 GAFR1_U);
479 writel((readl(GAFR2_L) & 0xf0000000) | 0x0aaaaaaa, GAFR2_L);
wdenk7a428cc2003-06-15 22:40:42 +0000480 }
481 else
482 {
483 printf("pxafb_setup_gpio: unable to determine bits per pixel\n");
484 }
485}
Marek Vasut23cf8e42009-11-28 13:57:43 +0100486#endif
wdenk7a428cc2003-06-15 22:40:42 +0000487
wdenk9ca7bbc2004-10-09 23:25:58 +0000488static void pxafb_enable_controller (vidinfo_t *vid)
wdenk7a428cc2003-06-15 22:40:42 +0000489{
490 debug("Enabling LCD controller\n");
491
492 /* Sequence from 11.7.10 */
Marek Vasut2db1e962010-09-09 09:50:39 +0200493 writel(vid->pxa.reg_lccr3, LCCR3);
494 writel(vid->pxa.reg_lccr2, LCCR2);
495 writel(vid->pxa.reg_lccr1, LCCR1);
496 writel(vid->pxa.reg_lccr0 & ~LCCR0_ENB, LCCR0);
497 writel(vid->pxa.fdadr0, FDADR0);
498 writel(vid->pxa.fdadr1, FDADR1);
499 writel(readl(LCCR0) | LCCR0_ENB, LCCR0);
wdenk7a428cc2003-06-15 22:40:42 +0000500
Marek Vasut23cf8e42009-11-28 13:57:43 +0100501#ifdef CONFIG_CPU_MONAHANS
Marek Vasut2db1e962010-09-09 09:50:39 +0200502 writel(readl(CKENA) | CKENA_1_LCD, CKENA);
Marek Vasut23cf8e42009-11-28 13:57:43 +0100503#else
Marek Vasut2db1e962010-09-09 09:50:39 +0200504 writel(readl(CKEN) | CKEN16_LCD, CKEN);
Marek Vasut23cf8e42009-11-28 13:57:43 +0100505#endif
wdenk7a428cc2003-06-15 22:40:42 +0000506
Marek Vasut2db1e962010-09-09 09:50:39 +0200507 debug("FDADR0 = 0x%08x\n", readl(FDADR0));
508 debug("FDADR1 = 0x%08x\n", readl(FDADR1));
509 debug("LCCR0 = 0x%08x\n", readl(LCCR0));
510 debug("LCCR1 = 0x%08x\n", readl(LCCR1));
511 debug("LCCR2 = 0x%08x\n", readl(LCCR2));
512 debug("LCCR3 = 0x%08x\n", readl(LCCR3));
wdenk7a428cc2003-06-15 22:40:42 +0000513}
514
wdenk9ca7bbc2004-10-09 23:25:58 +0000515static int pxafb_init (vidinfo_t *vid)
wdenk7a428cc2003-06-15 22:40:42 +0000516{
517 struct pxafb_info *fbi = &vid->pxa;
518
519 debug("Configuring PXA LCD\n");
520
521 fbi->reg_lccr0 = REG_LCCR0;
522 fbi->reg_lccr3 = REG_LCCR3;
523
524 debug("vid: vl_col=%d hslen=%d lm=%d rm=%d\n",
525 vid->vl_col, vid->vl_hpw,
526 vid->vl_blw, vid->vl_elw);
527 debug("vid: vl_row=%d vslen=%d um=%d bm=%d\n",
528 vid->vl_row, vid->vl_vpw,
529 vid->vl_bfw, vid->vl_efw);
530
531 fbi->reg_lccr1 =
532 LCCR1_DisWdth(vid->vl_col) +
533 LCCR1_HorSnchWdth(vid->vl_hpw) +
534 LCCR1_BegLnDel(vid->vl_blw) +
535 LCCR1_EndLnDel(vid->vl_elw);
wdenk57b2d802003-06-27 21:31:46 +0000536
wdenk7a428cc2003-06-15 22:40:42 +0000537 fbi->reg_lccr2 =
538 LCCR2_DisHght(vid->vl_row) +
539 LCCR2_VrtSnchWdth(vid->vl_vpw) +
540 LCCR2_BegFrmDel(vid->vl_bfw) +
541 LCCR2_EndFrmDel(vid->vl_efw);
542
wdenk57b2d802003-06-27 21:31:46 +0000543 fbi->reg_lccr3 = REG_LCCR3 & ~(LCCR3_HSP | LCCR3_VSP);
wdenk9ca7bbc2004-10-09 23:25:58 +0000544 fbi->reg_lccr3 |= (vid->vl_hsp ? LCCR3_HorSnchL : LCCR3_HorSnchH)
545 | (vid->vl_vsp ? LCCR3_VrtSnchL : LCCR3_VrtSnchH);
wdenk57b2d802003-06-27 21:31:46 +0000546
wdenk7a428cc2003-06-15 22:40:42 +0000547
548 /* setup dma descriptors */
549 fbi->dmadesc_fblow = (struct pxafb_dma_descriptor *)((unsigned int)fbi->palette - 3*16);
550 fbi->dmadesc_fbhigh = (struct pxafb_dma_descriptor *)((unsigned int)fbi->palette - 2*16);
551 fbi->dmadesc_palette = (struct pxafb_dma_descriptor *)((unsigned int)fbi->palette - 1*16);
552
553 #define BYTES_PER_PANEL ((fbi->reg_lccr0 & LCCR0_SDS) ? \
wdenk57b2d802003-06-27 21:31:46 +0000554 (vid->vl_col * vid->vl_row * NBITS(vid->vl_bpix) / 8 / 2) : \
555 (vid->vl_col * vid->vl_row * NBITS(vid->vl_bpix) / 8))
556
wdenk7a428cc2003-06-15 22:40:42 +0000557 /* populate descriptors */
558 fbi->dmadesc_fblow->fdadr = (u_long)fbi->dmadesc_fblow;
559 fbi->dmadesc_fblow->fsadr = fbi->screen + BYTES_PER_PANEL;
560 fbi->dmadesc_fblow->fidr = 0;
561 fbi->dmadesc_fblow->ldcmd = BYTES_PER_PANEL;
562
563 fbi->fdadr1 = (u_long)fbi->dmadesc_fblow; /* only used in dual-panel mode */
wdenk57b2d802003-06-27 21:31:46 +0000564
wdenk7a428cc2003-06-15 22:40:42 +0000565 fbi->dmadesc_fbhigh->fsadr = fbi->screen;
566 fbi->dmadesc_fbhigh->fidr = 0;
567 fbi->dmadesc_fbhigh->ldcmd = BYTES_PER_PANEL;
568
569 fbi->dmadesc_palette->fsadr = fbi->palette;
570 fbi->dmadesc_palette->fidr = 0;
571 fbi->dmadesc_palette->ldcmd = (fbi->palette_size * 2) | LDCMD_PAL;
572
573 if( NBITS(vid->vl_bpix) < 12)
574 {
575 /* assume any mode with <12 bpp is palette driven */
576 fbi->dmadesc_palette->fdadr = (u_long)fbi->dmadesc_fbhigh;
577 fbi->dmadesc_fbhigh->fdadr = (u_long)fbi->dmadesc_palette;
578 /* flips back and forth between pal and fbhigh */
wdenk57b2d802003-06-27 21:31:46 +0000579 fbi->fdadr0 = (u_long)fbi->dmadesc_palette;
wdenk7a428cc2003-06-15 22:40:42 +0000580 }
581 else
582 {
583 /* palette shouldn't be loaded in true-color mode */
584 fbi->dmadesc_fbhigh->fdadr = (u_long)fbi->dmadesc_fbhigh;
585 fbi->fdadr0 = (u_long)fbi->dmadesc_fbhigh; /* no pal just fbhigh */
586 }
587
588 debug("fbi->dmadesc_fblow = 0x%lx\n", (u_long)fbi->dmadesc_fblow);
589 debug("fbi->dmadesc_fbhigh = 0x%lx\n", (u_long)fbi->dmadesc_fbhigh);
590 debug("fbi->dmadesc_palette = 0x%lx\n", (u_long)fbi->dmadesc_palette);
591
592 debug("fbi->dmadesc_fblow->fdadr = 0x%lx\n", fbi->dmadesc_fblow->fdadr);
593 debug("fbi->dmadesc_fbhigh->fdadr = 0x%lx\n", fbi->dmadesc_fbhigh->fdadr);
594 debug("fbi->dmadesc_palette->fdadr = 0x%lx\n", fbi->dmadesc_palette->fdadr);
595
596 debug("fbi->dmadesc_fblow->fsadr = 0x%lx\n", fbi->dmadesc_fblow->fsadr);
597 debug("fbi->dmadesc_fbhigh->fsadr = 0x%lx\n", fbi->dmadesc_fbhigh->fsadr);
598 debug("fbi->dmadesc_palette->fsadr = 0x%lx\n", fbi->dmadesc_palette->fsadr);
599
600 debug("fbi->dmadesc_fblow->ldcmd = 0x%lx\n", fbi->dmadesc_fblow->ldcmd);
601 debug("fbi->dmadesc_fbhigh->ldcmd = 0x%lx\n", fbi->dmadesc_fbhigh->ldcmd);
602 debug("fbi->dmadesc_palette->ldcmd = 0x%lx\n", fbi->dmadesc_palette->ldcmd);
wdenk57b2d802003-06-27 21:31:46 +0000603
wdenk7a428cc2003-06-15 22:40:42 +0000604 return 0;
605}
606
607/************************************************************************/
608/************************************************************************/
609
610#endif /* CONFIG_LCD */