blob: 6506117c134ba136058689157f49d7e725f1818f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/video/pxafb.c
3 *
4 * Copyright (C) 1999 Eric A. Thomas.
5 * Copyright (C) 2004 Jean-Frederic Clere.
6 * Copyright (C) 2004 Ian Campbell.
7 * Copyright (C) 2004 Jeff Lackey.
8 * Based on sa1100fb.c Copyright (C) 1999 Eric A. Thomas
9 * which in turn is
10 * Based on acornfb.c Copyright (C) Russell King.
11 *
12 * This file is subject to the terms and conditions of the GNU General Public
13 * License. See the file COPYING in the main directory of this archive for
14 * more details.
15 *
16 * Intel PXA250/210 LCD Controller Frame Buffer Driver
17 *
18 * Please direct your questions and comments on this driver to the following
19 * email address:
20 *
21 * linux-arm-kernel@lists.arm.linux.org.uk
22 *
Eric Miao198fc102008-12-23 17:49:43 +080023 * Add support for overlay1 and overlay2 based on pxafb_overlay.c:
24 *
25 * Copyright (C) 2004, Intel Corporation
26 *
27 * 2003/08/27: <yu.tang@intel.com>
28 * 2004/03/10: <stanley.cai@intel.com>
29 * 2004/10/28: <yan.yin@intel.com>
30 *
31 * Copyright (C) 2006-2008 Marvell International Ltd.
32 * All Rights Reserved
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/module.h>
36#include <linux/moduleparam.h>
37#include <linux/kernel.h>
38#include <linux/sched.h>
39#include <linux/errno.h>
40#include <linux/string.h>
41#include <linux/interrupt.h>
42#include <linux/slab.h>
Andrea Righi27ac7922008-07-23 21:28:13 -070043#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/fb.h>
45#include <linux/delay.h>
46#include <linux/init.h>
47#include <linux/ioport.h>
48#include <linux/cpufreq.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010049#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/dma-mapping.h>
Russell King72e35242007-08-20 10:18:42 +010051#include <linux/clk.h>
52#include <linux/err.h>
Eric Miao2ba162b2008-04-30 00:52:24 -070053#include <linux/completion.h>
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -070054#include <linux/mutex.h>
Eric Miao3c42a442008-04-30 00:52:26 -070055#include <linux/kthread.h>
56#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Russell Kinga09e64f2008-08-05 16:14:15 +010058#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <asm/io.h>
60#include <asm/irq.h>
Nicolas Pitrebf1b8ab2005-06-23 21:56:45 +010061#include <asm/div64.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010062#include <mach/bitfield.h>
63#include <mach/pxafb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/*
66 * Complain if VAR is out of range.
67 */
68#define DEBUG_VAR 1
69
70#include "pxafb.h"
71
72/* Bits which should not be set in machine configuration structures */
eric miaob0086ef2008-04-30 00:52:19 -070073#define LCCR0_INVALID_CONFIG_MASK (LCCR0_OUM | LCCR0_BM | LCCR0_QDM |\
74 LCCR0_DIS | LCCR0_EFM | LCCR0_IUM |\
75 LCCR0_SFM | LCCR0_LDM | LCCR0_ENB)
76
77#define LCCR3_INVALID_CONFIG_MASK (LCCR3_HSP | LCCR3_VSP |\
Eric Miao878f5782008-12-18 22:36:26 +080078 LCCR3_PCD | LCCR3_BPP(0xf))
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
eric miaob0086ef2008-04-30 00:52:19 -070080static int pxafb_activate_var(struct fb_var_screeninfo *var,
81 struct pxafb_info *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082static void set_ctrlr_state(struct pxafb_info *fbi, u_int state);
Eric Miao6e354842008-12-17 16:50:43 +080083static void setup_base_frame(struct pxafb_info *fbi, int branch);
Eric Miao198fc102008-12-23 17:49:43 +080084static int setup_frame_dma(struct pxafb_info *fbi, int dma, int pal,
85 unsigned long offset, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Eric Miao77e19672008-12-16 11:54:34 +080087static unsigned long video_mem_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Eric Miaoa7535ba2008-04-30 00:52:24 -070089static inline unsigned long
90lcd_readl(struct pxafb_info *fbi, unsigned int off)
91{
92 return __raw_readl(fbi->mmio_base + off);
93}
94
95static inline void
96lcd_writel(struct pxafb_info *fbi, unsigned int off, unsigned long val)
97{
98 __raw_writel(val, fbi->mmio_base + off);
99}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static inline void pxafb_schedule_work(struct pxafb_info *fbi, u_int state)
102{
103 unsigned long flags;
104
105 local_irq_save(flags);
106 /*
107 * We need to handle two requests being made at the same time.
108 * There are two important cases:
eric miaob0086ef2008-04-30 00:52:19 -0700109 * 1. When we are changing VT (C_REENABLE) while unblanking
110 * (C_ENABLE) We must perform the unblanking, which will
111 * do our REENABLE for us.
112 * 2. When we are blanking, but immediately unblank before
113 * we have blanked. We do the "REENABLE" thing here as
114 * well, just to be sure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 */
116 if (fbi->task_state == C_ENABLE && state == C_REENABLE)
117 state = (u_int) -1;
118 if (fbi->task_state == C_DISABLE && state == C_ENABLE)
119 state = C_REENABLE;
120
121 if (state != (u_int)-1) {
122 fbi->task_state = state;
123 schedule_work(&fbi->task);
124 }
125 local_irq_restore(flags);
126}
127
128static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf)
129{
130 chan &= 0xffff;
131 chan >>= 16 - bf->length;
132 return chan << bf->offset;
133}
134
135static int
136pxafb_setpalettereg(u_int regno, u_int red, u_int green, u_int blue,
137 u_int trans, struct fb_info *info)
138{
139 struct pxafb_info *fbi = (struct pxafb_info *)info;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700140 u_int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700142 if (regno >= fbi->palette_size)
143 return 1;
144
145 if (fbi->fb.var.grayscale) {
146 fbi->palette_cpu[regno] = ((blue >> 8) & 0x00ff);
147 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700149
150 switch (fbi->lccr4 & LCCR4_PAL_FOR_MASK) {
151 case LCCR4_PAL_FOR_0:
152 val = ((red >> 0) & 0xf800);
153 val |= ((green >> 5) & 0x07e0);
154 val |= ((blue >> 11) & 0x001f);
155 fbi->palette_cpu[regno] = val;
156 break;
157 case LCCR4_PAL_FOR_1:
158 val = ((red << 8) & 0x00f80000);
159 val |= ((green >> 0) & 0x0000fc00);
160 val |= ((blue >> 8) & 0x000000f8);
eric miaob0086ef2008-04-30 00:52:19 -0700161 ((u32 *)(fbi->palette_cpu))[regno] = val;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700162 break;
163 case LCCR4_PAL_FOR_2:
164 val = ((red << 8) & 0x00fc0000);
165 val |= ((green >> 0) & 0x0000fc00);
166 val |= ((blue >> 8) & 0x000000fc);
eric miaob0086ef2008-04-30 00:52:19 -0700167 ((u32 *)(fbi->palette_cpu))[regno] = val;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700168 break;
Eric Miaoa0427502008-12-18 22:10:00 +0800169 case LCCR4_PAL_FOR_3:
170 val = ((red << 8) & 0x00ff0000);
171 val |= ((green >> 0) & 0x0000ff00);
172 val |= ((blue >> 8) & 0x000000ff);
173 ((u32 *)(fbi->palette_cpu))[regno] = val;
174 break;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700175 }
176
177 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
180static int
181pxafb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
182 u_int trans, struct fb_info *info)
183{
184 struct pxafb_info *fbi = (struct pxafb_info *)info;
185 unsigned int val;
186 int ret = 1;
187
188 /*
189 * If inverse mode was selected, invert all the colours
190 * rather than the register number. The register number
191 * is what you poke into the framebuffer to produce the
192 * colour you requested.
193 */
194 if (fbi->cmap_inverse) {
195 red = 0xffff - red;
196 green = 0xffff - green;
197 blue = 0xffff - blue;
198 }
199
200 /*
201 * If greyscale is true, then we convert the RGB value
202 * to greyscale no matter what visual we are using.
203 */
204 if (fbi->fb.var.grayscale)
205 red = green = blue = (19595 * red + 38470 * green +
206 7471 * blue) >> 16;
207
208 switch (fbi->fb.fix.visual) {
209 case FB_VISUAL_TRUECOLOR:
210 /*
211 * 16-bit True Colour. We encode the RGB value
212 * according to the RGB bitfield information.
213 */
214 if (regno < 16) {
215 u32 *pal = fbi->fb.pseudo_palette;
216
217 val = chan_to_field(red, &fbi->fb.var.red);
218 val |= chan_to_field(green, &fbi->fb.var.green);
219 val |= chan_to_field(blue, &fbi->fb.var.blue);
220
221 pal[regno] = val;
222 ret = 0;
223 }
224 break;
225
226 case FB_VISUAL_STATIC_PSEUDOCOLOR:
227 case FB_VISUAL_PSEUDOCOLOR:
228 ret = pxafb_setpalettereg(regno, red, green, blue, trans, info);
229 break;
230 }
231
232 return ret;
233}
234
Eric Miao878f5782008-12-18 22:36:26 +0800235/* calculate pixel depth, transparency bit included, >=16bpp formats _only_ */
236static inline int var_to_depth(struct fb_var_screeninfo *var)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Eric Miao878f5782008-12-18 22:36:26 +0800238 return var->red.length + var->green.length +
239 var->blue.length + var->transp.length;
240}
241
242/* calculate 4-bit BPP value for LCCR3 and OVLxC1 */
243static int pxafb_var_to_bpp(struct fb_var_screeninfo *var)
244{
245 int bpp = -EINVAL;
246
eric miaob0086ef2008-04-30 00:52:19 -0700247 switch (var->bits_per_pixel) {
Eric Miao878f5782008-12-18 22:36:26 +0800248 case 1: bpp = 0; break;
249 case 2: bpp = 1; break;
250 case 4: bpp = 2; break;
251 case 8: bpp = 3; break;
252 case 16: bpp = 4; break;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100253 case 24:
Eric Miao878f5782008-12-18 22:36:26 +0800254 switch (var_to_depth(var)) {
255 case 18: bpp = 6; break; /* 18-bits/pixel packed */
256 case 19: bpp = 8; break; /* 19-bits/pixel packed */
257 case 24: bpp = 9; break;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100258 }
259 break;
260 case 32:
Eric Miao878f5782008-12-18 22:36:26 +0800261 switch (var_to_depth(var)) {
262 case 18: bpp = 5; break; /* 18-bits/pixel unpacked */
263 case 19: bpp = 7; break; /* 19-bits/pixel unpacked */
264 case 25: bpp = 10; break;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100265 }
266 break;
eric miaob0086ef2008-04-30 00:52:19 -0700267 }
Eric Miao878f5782008-12-18 22:36:26 +0800268 return bpp;
269}
270
271/*
272 * pxafb_var_to_lccr3():
273 * Convert a bits per pixel value to the correct bit pattern for LCCR3
274 *
275 * NOTE: for PXA27x with overlays support, the LCCR3_PDFOR_x bits have an
276 * implication of the acutal use of transparency bit, which we handle it
277 * here separatedly. See PXA27x Developer's Manual, Section <<7.4.6 Pixel
278 * Formats>> for the valid combination of PDFOR, PAL_FOR for various BPP.
279 *
280 * Transparency for palette pixel formats is not supported at the moment.
281 */
282static uint32_t pxafb_var_to_lccr3(struct fb_var_screeninfo *var)
283{
284 int bpp = pxafb_var_to_bpp(var);
285 uint32_t lccr3;
286
287 if (bpp < 0)
288 return 0;
289
290 lccr3 = LCCR3_BPP(bpp);
291
292 switch (var_to_depth(var)) {
293 case 16: lccr3 |= var->transp.length ? LCCR3_PDFOR_3 : 0; break;
294 case 18: lccr3 |= LCCR3_PDFOR_3; break;
295 case 24: lccr3 |= var->transp.length ? LCCR3_PDFOR_2 : LCCR3_PDFOR_3;
296 break;
297 case 19:
298 case 25: lccr3 |= LCCR3_PDFOR_0; break;
299 }
300 return lccr3;
301}
302
303#define SET_PIXFMT(v, r, g, b, t) \
304({ \
305 (v)->transp.offset = (t) ? (r) + (g) + (b) : 0; \
306 (v)->transp.length = (t) ? (t) : 0; \
307 (v)->blue.length = (b); (v)->blue.offset = 0; \
308 (v)->green.length = (g); (v)->green.offset = (b); \
309 (v)->red.length = (r); (v)->red.offset = (b) + (g); \
310})
311
312/* set the RGBT bitfields of fb_var_screeninf according to
313 * var->bits_per_pixel and given depth
314 */
315static void pxafb_set_pixfmt(struct fb_var_screeninfo *var, int depth)
316{
317 if (depth == 0)
318 depth = var->bits_per_pixel;
319
320 if (var->bits_per_pixel < 16) {
321 /* indexed pixel formats */
322 var->red.offset = 0; var->red.length = 8;
323 var->green.offset = 0; var->green.length = 8;
324 var->blue.offset = 0; var->blue.length = 8;
325 var->transp.offset = 0; var->transp.length = 8;
326 }
327
328 switch (depth) {
329 case 16: var->transp.length ?
330 SET_PIXFMT(var, 5, 5, 5, 1) : /* RGBT555 */
331 SET_PIXFMT(var, 5, 6, 5, 0); break; /* RGB565 */
332 case 18: SET_PIXFMT(var, 6, 6, 6, 0); break; /* RGB666 */
333 case 19: SET_PIXFMT(var, 6, 6, 6, 1); break; /* RGBT666 */
334 case 24: var->transp.length ?
335 SET_PIXFMT(var, 8, 8, 7, 1) : /* RGBT887 */
336 SET_PIXFMT(var, 8, 8, 8, 0); break; /* RGB888 */
337 case 25: SET_PIXFMT(var, 8, 8, 8, 1); break; /* RGBT888 */
338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339}
340
341#ifdef CONFIG_CPU_FREQ
342/*
343 * pxafb_display_dma_period()
344 * Calculate the minimum period (in picoseconds) between two DMA
345 * requests for the LCD controller. If we hit this, it means we're
346 * doing nothing but LCD DMA.
347 */
348static unsigned int pxafb_display_dma_period(struct fb_var_screeninfo *var)
349{
eric miaob0086ef2008-04-30 00:52:19 -0700350 /*
351 * Period = pixclock * bits_per_byte * bytes_per_transfer
352 * / memory_bits_per_pixel;
353 */
354 return var->pixclock * 8 * 16 / var->bits_per_pixel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356#endif
357
358/*
Richard Purdied14b2722006-09-20 22:54:21 +0100359 * Select the smallest mode that allows the desired resolution to be
360 * displayed. If desired parameters can be rounded up.
361 */
eric miaob0086ef2008-04-30 00:52:19 -0700362static struct pxafb_mode_info *pxafb_getmode(struct pxafb_mach_info *mach,
363 struct fb_var_screeninfo *var)
Richard Purdied14b2722006-09-20 22:54:21 +0100364{
365 struct pxafb_mode_info *mode = NULL;
366 struct pxafb_mode_info *modelist = mach->modes;
367 unsigned int best_x = 0xffffffff, best_y = 0xffffffff;
368 unsigned int i;
369
eric miaob0086ef2008-04-30 00:52:19 -0700370 for (i = 0; i < mach->num_modes; i++) {
371 if (modelist[i].xres >= var->xres &&
372 modelist[i].yres >= var->yres &&
373 modelist[i].xres < best_x &&
374 modelist[i].yres < best_y &&
375 modelist[i].bpp >= var->bits_per_pixel) {
Richard Purdied14b2722006-09-20 22:54:21 +0100376 best_x = modelist[i].xres;
377 best_y = modelist[i].yres;
378 mode = &modelist[i];
379 }
380 }
381
382 return mode;
383}
384
eric miaob0086ef2008-04-30 00:52:19 -0700385static void pxafb_setmode(struct fb_var_screeninfo *var,
386 struct pxafb_mode_info *mode)
Richard Purdied14b2722006-09-20 22:54:21 +0100387{
388 var->xres = mode->xres;
389 var->yres = mode->yres;
390 var->bits_per_pixel = mode->bpp;
391 var->pixclock = mode->pixclock;
392 var->hsync_len = mode->hsync_len;
393 var->left_margin = mode->left_margin;
394 var->right_margin = mode->right_margin;
395 var->vsync_len = mode->vsync_len;
396 var->upper_margin = mode->upper_margin;
397 var->lower_margin = mode->lower_margin;
398 var->sync = mode->sync;
399 var->grayscale = mode->cmap_greyscale;
Eric Miao878f5782008-12-18 22:36:26 +0800400
401 /* set the initial RGBA bitfields */
402 pxafb_set_pixfmt(var, mode->depth);
Richard Purdied14b2722006-09-20 22:54:21 +0100403}
404
Eric Miao3f16ff62008-12-18 22:51:54 +0800405static int pxafb_adjust_timing(struct pxafb_info *fbi,
406 struct fb_var_screeninfo *var)
407{
408 int line_length;
409
410 var->xres = max_t(int, var->xres, MIN_XRES);
411 var->yres = max_t(int, var->yres, MIN_YRES);
412
413 if (!(fbi->lccr0 & LCCR0_LCDT)) {
414 clamp_val(var->hsync_len, 1, 64);
415 clamp_val(var->vsync_len, 1, 64);
416 clamp_val(var->left_margin, 1, 255);
417 clamp_val(var->right_margin, 1, 255);
418 clamp_val(var->upper_margin, 1, 255);
419 clamp_val(var->lower_margin, 1, 255);
420 }
421
422 /* make sure each line is aligned on word boundary */
423 line_length = var->xres * var->bits_per_pixel / 8;
424 line_length = ALIGN(line_length, 4);
425 var->xres = line_length * 8 / var->bits_per_pixel;
426
427 /* we don't support xpan, force xres_virtual to be equal to xres */
428 var->xres_virtual = var->xres;
429
430 if (var->accel_flags & FB_ACCELF_TEXT)
431 var->yres_virtual = fbi->fb.fix.smem_len / line_length;
432 else
433 var->yres_virtual = max(var->yres_virtual, var->yres);
434
435 /* check for limits */
436 if (var->xres > MAX_XRES || var->yres > MAX_YRES)
437 return -EINVAL;
438
439 if (var->yres > var->yres_virtual)
440 return -EINVAL;
441
442 return 0;
Richard Purdied14b2722006-09-20 22:54:21 +0100443}
444
445/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 * pxafb_check_var():
447 * Get the video params out of 'var'. If a value doesn't fit, round it up,
448 * if it's too big, return -EINVAL.
449 *
450 * Round up in the following order: bits_per_pixel, xres,
451 * yres, xres_virtual, yres_virtual, xoffset, yoffset, grayscale,
452 * bitfields, horizontal timing, vertical timing.
453 */
454static int pxafb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
455{
456 struct pxafb_info *fbi = (struct pxafb_info *)info;
Richard Purdied14b2722006-09-20 22:54:21 +0100457 struct pxafb_mach_info *inf = fbi->dev->platform_data;
Eric Miao878f5782008-12-18 22:36:26 +0800458 int err;
Richard Purdied14b2722006-09-20 22:54:21 +0100459
460 if (inf->fixed_modes) {
461 struct pxafb_mode_info *mode;
462
463 mode = pxafb_getmode(inf, var);
464 if (!mode)
465 return -EINVAL;
466 pxafb_setmode(var, mode);
Richard Purdied14b2722006-09-20 22:54:21 +0100467 }
468
Eric Miao878f5782008-12-18 22:36:26 +0800469 /* do a test conversion to BPP fields to check the color formats */
470 err = pxafb_var_to_bpp(var);
471 if (err < 0)
472 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Eric Miao878f5782008-12-18 22:36:26 +0800474 pxafb_set_pixfmt(var, var_to_depth(var));
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100475
Eric Miao3f16ff62008-12-18 22:51:54 +0800476 err = pxafb_adjust_timing(fbi, var);
477 if (err)
478 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480#ifdef CONFIG_CPU_FREQ
Russell King78d3cfd2008-05-17 22:51:14 +0100481 pr_debug("pxafb: dma period = %d ps\n",
482 pxafb_display_dma_period(var));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483#endif
484
485 return 0;
486}
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488/*
489 * pxafb_set_par():
490 * Set the user defined part of the display for the specified console
491 */
492static int pxafb_set_par(struct fb_info *info)
493{
494 struct pxafb_info *fbi = (struct pxafb_info *)info;
495 struct fb_var_screeninfo *var = &info->var;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100497 if (var->bits_per_pixel >= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 fbi->fb.fix.visual = FB_VISUAL_TRUECOLOR;
499 else if (!fbi->cmap_static)
500 fbi->fb.fix.visual = FB_VISUAL_PSEUDOCOLOR;
501 else {
502 /*
503 * Some people have weird ideas about wanting static
504 * pseudocolor maps. I suspect their user space
505 * applications are broken.
506 */
507 fbi->fb.fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR;
508 }
509
510 fbi->fb.fix.line_length = var->xres_virtual *
511 var->bits_per_pixel / 8;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100512 if (var->bits_per_pixel >= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 fbi->palette_size = 0;
514 else
eric miaob0086ef2008-04-30 00:52:19 -0700515 fbi->palette_size = var->bits_per_pixel == 1 ?
516 4 : 1 << var->bits_per_pixel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
eric miao2c42dd82008-04-30 00:52:21 -0700518 fbi->palette_cpu = (u16 *)&fbi->dma_buff->palette[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100520 if (fbi->fb.var.bits_per_pixel >= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 fb_dealloc_cmap(&fbi->fb.cmap);
522 else
523 fb_alloc_cmap(&fbi->fb.cmap, 1<<fbi->fb.var.bits_per_pixel, 0);
524
525 pxafb_activate_var(var, fbi);
526
527 return 0;
528}
529
Eric Miao6e354842008-12-17 16:50:43 +0800530static int pxafb_pan_display(struct fb_var_screeninfo *var,
531 struct fb_info *info)
532{
533 struct pxafb_info *fbi = (struct pxafb_info *)info;
534 int dma = DMA_MAX + DMA_BASE;
535
536 if (fbi->state != C_ENABLE)
537 return 0;
538
539 setup_base_frame(fbi, 1);
540
541 if (fbi->lccr0 & LCCR0_SDS)
542 lcd_writel(fbi, FBR1, fbi->fdadr[dma + 1] | 0x1);
543
544 lcd_writel(fbi, FBR0, fbi->fdadr[dma] | 0x1);
545 return 0;
546}
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 * pxafb_blank():
550 * Blank the display by setting all palette values to zero. Note, the
551 * 16 bpp mode does not really use the palette, so this will not
552 * blank the display in all modes.
553 */
554static int pxafb_blank(int blank, struct fb_info *info)
555{
556 struct pxafb_info *fbi = (struct pxafb_info *)info;
557 int i;
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 switch (blank) {
560 case FB_BLANK_POWERDOWN:
561 case FB_BLANK_VSYNC_SUSPEND:
562 case FB_BLANK_HSYNC_SUSPEND:
563 case FB_BLANK_NORMAL:
564 if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||
565 fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)
566 for (i = 0; i < fbi->palette_size; i++)
567 pxafb_setpalettereg(i, 0, 0, 0, 0, info);
568
569 pxafb_schedule_work(fbi, C_DISABLE);
eric miaob0086ef2008-04-30 00:52:19 -0700570 /* TODO if (pxafb_blank_helper) pxafb_blank_helper(blank); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 break;
572
573 case FB_BLANK_UNBLANK:
eric miaob0086ef2008-04-30 00:52:19 -0700574 /* TODO if (pxafb_blank_helper) pxafb_blank_helper(blank); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||
576 fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)
577 fb_set_cmap(&fbi->fb.cmap, info);
578 pxafb_schedule_work(fbi, C_ENABLE);
579 }
580 return 0;
581}
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583static struct fb_ops pxafb_ops = {
584 .owner = THIS_MODULE,
585 .fb_check_var = pxafb_check_var,
586 .fb_set_par = pxafb_set_par,
Eric Miao6e354842008-12-17 16:50:43 +0800587 .fb_pan_display = pxafb_pan_display,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 .fb_setcolreg = pxafb_setcolreg,
589 .fb_fillrect = cfb_fillrect,
590 .fb_copyarea = cfb_copyarea,
591 .fb_imageblit = cfb_imageblit,
592 .fb_blank = pxafb_blank,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593};
594
Eric Miao198fc102008-12-23 17:49:43 +0800595#ifdef CONFIG_FB_PXA_OVERLAY
596static void overlay1fb_setup(struct pxafb_layer *ofb)
597{
598 int size = ofb->fb.fix.line_length * ofb->fb.var.yres_virtual;
599 unsigned long start = ofb->video_mem_phys;
600 setup_frame_dma(ofb->fbi, DMA_OV1, PAL_NONE, start, size);
601}
602
603/* Depending on the enable status of overlay1/2, the DMA should be
604 * updated from FDADRx (when disabled) or FBRx (when enabled).
605 */
606static void overlay1fb_enable(struct pxafb_layer *ofb)
607{
608 int enabled = lcd_readl(ofb->fbi, OVL1C1) & OVLxC1_OEN;
609 uint32_t fdadr1 = ofb->fbi->fdadr[DMA_OV1] | (enabled ? 0x1 : 0);
610
611 lcd_writel(ofb->fbi, enabled ? FBR1 : FDADR1, fdadr1);
612 lcd_writel(ofb->fbi, OVL1C2, ofb->control[1]);
613 lcd_writel(ofb->fbi, OVL1C1, ofb->control[0] | OVLxC1_OEN);
614}
615
616static void overlay1fb_disable(struct pxafb_layer *ofb)
617{
618 uint32_t lccr5 = lcd_readl(ofb->fbi, LCCR5);
619
620 lcd_writel(ofb->fbi, OVL1C1, ofb->control[0] & ~OVLxC1_OEN);
621
622 lcd_writel(ofb->fbi, LCSR1, LCSR1_BS(1));
623 lcd_writel(ofb->fbi, LCCR5, lccr5 & ~LCSR1_BS(1));
624 lcd_writel(ofb->fbi, FBR1, ofb->fbi->fdadr[DMA_OV1] | 0x3);
625
626 if (wait_for_completion_timeout(&ofb->branch_done, 1 * HZ) == 0)
627 pr_warning("%s: timeout disabling overlay1\n", __func__);
628
629 lcd_writel(ofb->fbi, LCCR5, lccr5);
630}
631
632static void overlay2fb_setup(struct pxafb_layer *ofb)
633{
634 int size, div = 1, pfor = NONSTD_TO_PFOR(ofb->fb.var.nonstd);
635 unsigned long start[3] = { ofb->video_mem_phys, 0, 0 };
636
637 if (pfor == OVERLAY_FORMAT_RGB || pfor == OVERLAY_FORMAT_YUV444_PACKED) {
638 size = ofb->fb.fix.line_length * ofb->fb.var.yres_virtual;
639 setup_frame_dma(ofb->fbi, DMA_OV2_Y, -1, start[0], size);
640 } else {
641 size = ofb->fb.var.xres_virtual * ofb->fb.var.yres_virtual;
642 switch (pfor) {
643 case OVERLAY_FORMAT_YUV444_PLANAR: div = 1; break;
644 case OVERLAY_FORMAT_YUV422_PLANAR: div = 2; break;
645 case OVERLAY_FORMAT_YUV420_PLANAR: div = 4; break;
646 }
647 start[1] = start[0] + size;
648 start[2] = start[1] + size / div;
649 setup_frame_dma(ofb->fbi, DMA_OV2_Y, -1, start[0], size);
650 setup_frame_dma(ofb->fbi, DMA_OV2_Cb, -1, start[1], size / div);
651 setup_frame_dma(ofb->fbi, DMA_OV2_Cr, -1, start[2], size / div);
652 }
653}
654
655static void overlay2fb_enable(struct pxafb_layer *ofb)
656{
657 int pfor = NONSTD_TO_PFOR(ofb->fb.var.nonstd);
658 int enabled = lcd_readl(ofb->fbi, OVL2C1) & OVLxC1_OEN;
659 uint32_t fdadr2 = ofb->fbi->fdadr[DMA_OV2_Y] | (enabled ? 0x1 : 0);
660 uint32_t fdadr3 = ofb->fbi->fdadr[DMA_OV2_Cb] | (enabled ? 0x1 : 0);
661 uint32_t fdadr4 = ofb->fbi->fdadr[DMA_OV2_Cr] | (enabled ? 0x1 : 0);
662
663 if (pfor == OVERLAY_FORMAT_RGB || pfor == OVERLAY_FORMAT_YUV444_PACKED)
664 lcd_writel(ofb->fbi, enabled ? FBR2 : FDADR2, fdadr2);
665 else {
666 lcd_writel(ofb->fbi, enabled ? FBR2 : FDADR2, fdadr2);
667 lcd_writel(ofb->fbi, enabled ? FBR3 : FDADR3, fdadr3);
668 lcd_writel(ofb->fbi, enabled ? FBR4 : FDADR4, fdadr4);
669 }
670 lcd_writel(ofb->fbi, OVL2C2, ofb->control[1]);
671 lcd_writel(ofb->fbi, OVL2C1, ofb->control[0] | OVLxC1_OEN);
672}
673
674static void overlay2fb_disable(struct pxafb_layer *ofb)
675{
676 uint32_t lccr5 = lcd_readl(ofb->fbi, LCCR5);
677
678 lcd_writel(ofb->fbi, OVL2C1, ofb->control[0] & ~OVLxC1_OEN);
679
680 lcd_writel(ofb->fbi, LCSR1, LCSR1_BS(2));
681 lcd_writel(ofb->fbi, LCCR5, lccr5 & ~LCSR1_BS(2));
682 lcd_writel(ofb->fbi, FBR2, ofb->fbi->fdadr[DMA_OV2_Y] | 0x3);
683 lcd_writel(ofb->fbi, FBR3, ofb->fbi->fdadr[DMA_OV2_Cb] | 0x3);
684 lcd_writel(ofb->fbi, FBR4, ofb->fbi->fdadr[DMA_OV2_Cr] | 0x3);
685
686 if (wait_for_completion_timeout(&ofb->branch_done, 1 * HZ) == 0)
687 pr_warning("%s: timeout disabling overlay2\n", __func__);
688}
689
690static struct pxafb_layer_ops ofb_ops[] = {
691 [0] = {
692 .enable = overlay1fb_enable,
693 .disable = overlay1fb_disable,
694 .setup = overlay1fb_setup,
695 },
696 [1] = {
697 .enable = overlay2fb_enable,
698 .disable = overlay2fb_disable,
699 .setup = overlay2fb_setup,
700 },
701};
702
703static int overlayfb_open(struct fb_info *info, int user)
704{
705 struct pxafb_layer *ofb = (struct pxafb_layer *)info;
706
707 /* no support for framebuffer console on overlay */
708 if (user == 0)
709 return -ENODEV;
710
711 /* allow only one user at a time */
712 if (atomic_inc_and_test(&ofb->usage))
713 return -EBUSY;
714
715 /* unblank the base framebuffer */
716 fb_blank(&ofb->fbi->fb, FB_BLANK_UNBLANK);
717 return 0;
718}
719
720static int overlayfb_release(struct fb_info *info, int user)
721{
722 struct pxafb_layer *ofb = (struct pxafb_layer*) info;
723
724 atomic_dec(&ofb->usage);
725 ofb->ops->disable(ofb);
726
727 free_pages_exact(ofb->video_mem, ofb->video_mem_size);
728 ofb->video_mem = NULL;
729 ofb->video_mem_size = 0;
730 return 0;
731}
732
733static int overlayfb_check_var(struct fb_var_screeninfo *var,
734 struct fb_info *info)
735{
736 struct pxafb_layer *ofb = (struct pxafb_layer *)info;
737 struct fb_var_screeninfo *base_var = &ofb->fbi->fb.var;
738 int xpos, ypos, pfor, bpp;
739
740 xpos = NONSTD_TO_XPOS(var->nonstd);
741 ypos = NONSTD_TO_XPOS(var->nonstd);
742 pfor = NONSTD_TO_PFOR(var->nonstd);
743
744 bpp = pxafb_var_to_bpp(var);
745 if (bpp < 0)
746 return -EINVAL;
747
748 /* no support for YUV format on overlay1 */
749 if (ofb->id == OVERLAY1 && pfor != 0)
750 return -EINVAL;
751
752 /* for YUV packed formats, bpp = 'minimum bpp of YUV components' */
753 switch (pfor) {
754 case OVERLAY_FORMAT_RGB:
755 bpp = pxafb_var_to_bpp(var);
756 if (bpp < 0)
757 return -EINVAL;
758
759 pxafb_set_pixfmt(var, var_to_depth(var));
760 break;
761 case OVERLAY_FORMAT_YUV444_PACKED: bpp = 24; break;
762 case OVERLAY_FORMAT_YUV444_PLANAR: bpp = 8; break;
763 case OVERLAY_FORMAT_YUV422_PLANAR: bpp = 4; break;
764 case OVERLAY_FORMAT_YUV420_PLANAR: bpp = 2; break;
765 default:
766 return -EINVAL;
767 }
768
769 /* each line must start at a 32-bit word boundary */
770 if ((xpos * bpp) % 32)
771 return -EINVAL;
772
773 /* xres must align on 32-bit word boundary */
774 var->xres = roundup(var->xres * bpp, 32) / bpp;
775
776 if ((xpos + var->xres > base_var->xres) ||
777 (ypos + var->yres > base_var->yres))
778 return -EINVAL;
779
780 var->xres_virtual = var->xres;
781 var->yres_virtual = max(var->yres, var->yres_virtual);
782 return 0;
783}
784
785static int overlayfb_map_video_memory(struct pxafb_layer *ofb)
786{
787 struct fb_var_screeninfo *var = &ofb->fb.var;
788 int pfor = NONSTD_TO_PFOR(var->nonstd);
789 int size, bpp = 0;
790
791 switch (pfor) {
792 case OVERLAY_FORMAT_RGB: bpp = var->bits_per_pixel; break;
793 case OVERLAY_FORMAT_YUV444_PACKED: bpp = 24; break;
794 case OVERLAY_FORMAT_YUV444_PLANAR: bpp = 24; break;
795 case OVERLAY_FORMAT_YUV422_PLANAR: bpp = 16; break;
796 case OVERLAY_FORMAT_YUV420_PLANAR: bpp = 12; break;
797 }
798
799 ofb->fb.fix.line_length = var->xres_virtual * bpp / 8;
800
801 size = PAGE_ALIGN(ofb->fb.fix.line_length * var->yres_virtual);
802
803 /* don't re-allocate if the original video memory is enough */
804 if (ofb->video_mem) {
805 if (ofb->video_mem_size >= size)
806 return 0;
807
808 free_pages_exact(ofb->video_mem, ofb->video_mem_size);
809 }
810
811 ofb->video_mem = alloc_pages_exact(size, GFP_KERNEL | __GFP_ZERO);
812 if (ofb->video_mem == NULL)
813 return -ENOMEM;
814
815 ofb->video_mem_phys = virt_to_phys(ofb->video_mem);
816 ofb->video_mem_size = size;
817
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700818 mutex_lock(&ofb->fb.mm_lock);
Eric Miao198fc102008-12-23 17:49:43 +0800819 ofb->fb.fix.smem_start = ofb->video_mem_phys;
820 ofb->fb.fix.smem_len = ofb->fb.fix.line_length * var->yres_virtual;
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700821 mutex_unlock(&ofb->fb.mm_lock);
Eric Miao198fc102008-12-23 17:49:43 +0800822 ofb->fb.screen_base = ofb->video_mem;
823 return 0;
824}
825
826static int overlayfb_set_par(struct fb_info *info)
827{
828 struct pxafb_layer *ofb = (struct pxafb_layer *)info;
829 struct fb_var_screeninfo *var = &info->var;
830 int xpos, ypos, pfor, bpp, ret;
831
832 ret = overlayfb_map_video_memory(ofb);
833 if (ret)
834 return ret;
835
836 bpp = pxafb_var_to_bpp(var);
837 xpos = NONSTD_TO_XPOS(var->nonstd);
838 ypos = NONSTD_TO_XPOS(var->nonstd);
839 pfor = NONSTD_TO_PFOR(var->nonstd);
840
841 ofb->control[0] = OVLxC1_PPL(var->xres) | OVLxC1_LPO(var->yres) |
842 OVLxC1_BPP(bpp);
843 ofb->control[1] = OVLxC2_XPOS(xpos) | OVLxC2_YPOS(ypos);
844
845 if (ofb->id == OVERLAY2)
846 ofb->control[1] |= OVL2C2_PFOR(pfor);
847
848 ofb->ops->setup(ofb);
849 ofb->ops->enable(ofb);
850 return 0;
851}
852
853static struct fb_ops overlay_fb_ops = {
854 .owner = THIS_MODULE,
855 .fb_open = overlayfb_open,
856 .fb_release = overlayfb_release,
857 .fb_check_var = overlayfb_check_var,
858 .fb_set_par = overlayfb_set_par,
859};
860
861static void __devinit init_pxafb_overlay(struct pxafb_info *fbi,
862 struct pxafb_layer *ofb, int id)
863{
864 sprintf(ofb->fb.fix.id, "overlay%d", id + 1);
865
866 ofb->fb.fix.type = FB_TYPE_PACKED_PIXELS;
867 ofb->fb.fix.xpanstep = 0;
868 ofb->fb.fix.ypanstep = 1;
869
870 ofb->fb.var.activate = FB_ACTIVATE_NOW;
871 ofb->fb.var.height = -1;
872 ofb->fb.var.width = -1;
873 ofb->fb.var.vmode = FB_VMODE_NONINTERLACED;
874
875 ofb->fb.fbops = &overlay_fb_ops;
876 ofb->fb.flags = FBINFO_FLAG_DEFAULT;
877 ofb->fb.node = -1;
878 ofb->fb.pseudo_palette = NULL;
879
880 ofb->id = id;
881 ofb->ops = &ofb_ops[id];
882 atomic_set(&ofb->usage, 0);
883 ofb->fbi = fbi;
884 init_completion(&ofb->branch_done);
885}
886
Eric Miao782385a2009-03-19 15:24:30 +0800887static inline int pxafb_overlay_supported(void)
888{
889 if (cpu_is_pxa27x() || cpu_is_pxa3xx())
890 return 1;
891
892 return 0;
893}
894
Eric Miao198fc102008-12-23 17:49:43 +0800895static int __devinit pxafb_overlay_init(struct pxafb_info *fbi)
896{
897 int i, ret;
898
Eric Miao782385a2009-03-19 15:24:30 +0800899 if (!pxafb_overlay_supported())
900 return 0;
901
Eric Miao198fc102008-12-23 17:49:43 +0800902 for (i = 0; i < 2; i++) {
903 init_pxafb_overlay(fbi, &fbi->overlay[i], i);
904 ret = register_framebuffer(&fbi->overlay[i].fb);
905 if (ret) {
906 dev_err(fbi->dev, "failed to register overlay %d\n", i);
907 return ret;
908 }
909 }
910
911 /* mask all IU/BS/EOF/SOF interrupts */
912 lcd_writel(fbi, LCCR5, ~0);
913
914 /* place overlay(s) on top of base */
915 fbi->lccr0 |= LCCR0_OUC;
916 pr_info("PXA Overlay driver loaded successfully!\n");
917 return 0;
918}
919
920static void __devexit pxafb_overlay_exit(struct pxafb_info *fbi)
921{
922 int i;
923
Eric Miao782385a2009-03-19 15:24:30 +0800924 if (!pxafb_overlay_supported())
925 return;
926
Eric Miao198fc102008-12-23 17:49:43 +0800927 for (i = 0; i < 2; i++)
928 unregister_framebuffer(&fbi->overlay[i].fb);
929}
930#else
931static inline void pxafb_overlay_init(struct pxafb_info *fbi) {}
932static inline void pxafb_overlay_exit(struct pxafb_info *fbi) {}
933#endif /* CONFIG_FB_PXA_OVERLAY */
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935/*
936 * Calculate the PCD value from the clock rate (in picoseconds).
937 * We take account of the PPCR clock setting.
938 * From PXA Developer's Manual:
939 *
940 * PixelClock = LCLK
941 * -------------
942 * 2 ( PCD + 1 )
943 *
944 * PCD = LCLK
945 * ------------- - 1
946 * 2(PixelClock)
947 *
948 * Where:
949 * LCLK = LCD/Memory Clock
950 * PCD = LCCR3[7:0]
951 *
952 * PixelClock here is in Hz while the pixclock argument given is the
953 * period in picoseconds. Hence PixelClock = 1 / ( pixclock * 10^-12 )
954 *
955 * The function get_lclk_frequency_10khz returns LCLK in units of
956 * 10khz. Calling the result of this function lclk gives us the
957 * following
958 *
959 * PCD = (lclk * 10^4 ) * ( pixclock * 10^-12 )
960 * -------------------------------------- - 1
961 * 2
962 *
963 * Factoring the 10^4 and 10^-12 out gives 10^-8 == 1 / 100000000 as used below.
964 */
eric miaob0086ef2008-04-30 00:52:19 -0700965static inline unsigned int get_pcd(struct pxafb_info *fbi,
966 unsigned int pixclock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 unsigned long long pcd;
969
970 /* FIXME: Need to take into account Double Pixel Clock mode
Russell King72e35242007-08-20 10:18:42 +0100971 * (DPC) bit? or perhaps set it based on the various clock
972 * speeds */
973 pcd = (unsigned long long)(clk_get_rate(fbi->clk) / 10000);
974 pcd *= pixclock;
Nicolas Pitrebf1b8ab2005-06-23 21:56:45 +0100975 do_div(pcd, 100000000 * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 /* no need for this, since we should subtract 1 anyway. they cancel */
977 /* pcd += 1; */ /* make up for integer math truncations */
978 return (unsigned int)pcd;
979}
980
981/*
Richard Purdieba44cd22005-09-09 13:10:03 -0700982 * Some touchscreens need hsync information from the video driver to
Russell King72e35242007-08-20 10:18:42 +0100983 * function correctly. We export it here. Note that 'hsync_time' and
984 * the value returned from pxafb_get_hsync_time() is the *reciprocal*
985 * of the hsync period in seconds.
Richard Purdieba44cd22005-09-09 13:10:03 -0700986 */
987static inline void set_hsync_time(struct pxafb_info *fbi, unsigned int pcd)
988{
Russell King72e35242007-08-20 10:18:42 +0100989 unsigned long htime;
Richard Purdieba44cd22005-09-09 13:10:03 -0700990
991 if ((pcd == 0) || (fbi->fb.var.hsync_len == 0)) {
eric miaob0086ef2008-04-30 00:52:19 -0700992 fbi->hsync_time = 0;
Richard Purdieba44cd22005-09-09 13:10:03 -0700993 return;
994 }
995
Russell King72e35242007-08-20 10:18:42 +0100996 htime = clk_get_rate(fbi->clk) / (pcd * fbi->fb.var.hsync_len);
997
Richard Purdieba44cd22005-09-09 13:10:03 -0700998 fbi->hsync_time = htime;
999}
1000
1001unsigned long pxafb_get_hsync_time(struct device *dev)
1002{
1003 struct pxafb_info *fbi = dev_get_drvdata(dev);
1004
1005 /* If display is blanked/suspended, hsync isn't active */
1006 if (!fbi || (fbi->state != C_ENABLE))
1007 return 0;
1008
1009 return fbi->hsync_time;
1010}
1011EXPORT_SYMBOL(pxafb_get_hsync_time);
1012
eric miao2c42dd82008-04-30 00:52:21 -07001013static int setup_frame_dma(struct pxafb_info *fbi, int dma, int pal,
Eric Miao198fc102008-12-23 17:49:43 +08001014 unsigned long start, size_t size)
eric miao2c42dd82008-04-30 00:52:21 -07001015{
1016 struct pxafb_dma_descriptor *dma_desc, *pal_desc;
1017 unsigned int dma_desc_off, pal_desc_off;
1018
Eric Miao6e354842008-12-17 16:50:43 +08001019 if (dma < 0 || dma >= DMA_MAX * 2)
eric miao2c42dd82008-04-30 00:52:21 -07001020 return -EINVAL;
1021
1022 dma_desc = &fbi->dma_buff->dma_desc[dma];
1023 dma_desc_off = offsetof(struct pxafb_dma_buff, dma_desc[dma]);
1024
Eric Miao198fc102008-12-23 17:49:43 +08001025 dma_desc->fsadr = start;
eric miao2c42dd82008-04-30 00:52:21 -07001026 dma_desc->fidr = 0;
1027 dma_desc->ldcmd = size;
1028
Eric Miao6e354842008-12-17 16:50:43 +08001029 if (pal < 0 || pal >= PAL_MAX * 2) {
eric miao2c42dd82008-04-30 00:52:21 -07001030 dma_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
1031 fbi->fdadr[dma] = fbi->dma_buff_phys + dma_desc_off;
1032 } else {
Jürgen Schindele62cfcf42008-06-11 19:56:06 +01001033 pal_desc = &fbi->dma_buff->pal_desc[pal];
1034 pal_desc_off = offsetof(struct pxafb_dma_buff, pal_desc[pal]);
eric miao2c42dd82008-04-30 00:52:21 -07001035
1036 pal_desc->fsadr = fbi->dma_buff_phys + pal * PALETTE_SIZE;
1037 pal_desc->fidr = 0;
1038
1039 if ((fbi->lccr4 & LCCR4_PAL_FOR_MASK) == LCCR4_PAL_FOR_0)
1040 pal_desc->ldcmd = fbi->palette_size * sizeof(u16);
1041 else
1042 pal_desc->ldcmd = fbi->palette_size * sizeof(u32);
1043
1044 pal_desc->ldcmd |= LDCMD_PAL;
1045
1046 /* flip back and forth between palette and frame buffer */
1047 pal_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
1048 dma_desc->fdadr = fbi->dma_buff_phys + pal_desc_off;
1049 fbi->fdadr[dma] = fbi->dma_buff_phys + dma_desc_off;
1050 }
1051
1052 return 0;
1053}
1054
Eric Miao6e354842008-12-17 16:50:43 +08001055static void setup_base_frame(struct pxafb_info *fbi, int branch)
1056{
1057 struct fb_var_screeninfo *var = &fbi->fb.var;
1058 struct fb_fix_screeninfo *fix = &fbi->fb.fix;
Eric Miao198fc102008-12-23 17:49:43 +08001059 int nbytes, dma, pal, bpp = var->bits_per_pixel;
1060 unsigned long offset;
Eric Miao6e354842008-12-17 16:50:43 +08001061
1062 dma = DMA_BASE + (branch ? DMA_MAX : 0);
1063 pal = (bpp >= 16) ? PAL_NONE : PAL_BASE + (branch ? PAL_MAX : 0);
1064
1065 nbytes = fix->line_length * var->yres;
Eric Miao198fc102008-12-23 17:49:43 +08001066 offset = fix->line_length * var->yoffset + fbi->video_mem_phys;
Eric Miao6e354842008-12-17 16:50:43 +08001067
1068 if (fbi->lccr0 & LCCR0_SDS) {
1069 nbytes = nbytes / 2;
1070 setup_frame_dma(fbi, dma + 1, PAL_NONE, offset + nbytes, nbytes);
1071 }
1072
1073 setup_frame_dma(fbi, dma, pal, offset, nbytes);
1074}
1075
Eric Miao3c42a442008-04-30 00:52:26 -07001076#ifdef CONFIG_FB_PXA_SMARTPANEL
1077static int setup_smart_dma(struct pxafb_info *fbi)
1078{
1079 struct pxafb_dma_descriptor *dma_desc;
1080 unsigned long dma_desc_off, cmd_buff_off;
1081
1082 dma_desc = &fbi->dma_buff->dma_desc[DMA_CMD];
1083 dma_desc_off = offsetof(struct pxafb_dma_buff, dma_desc[DMA_CMD]);
1084 cmd_buff_off = offsetof(struct pxafb_dma_buff, cmd_buff);
1085
1086 dma_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
1087 dma_desc->fsadr = fbi->dma_buff_phys + cmd_buff_off;
1088 dma_desc->fidr = 0;
1089 dma_desc->ldcmd = fbi->n_smart_cmds * sizeof(uint16_t);
1090
1091 fbi->fdadr[DMA_CMD] = dma_desc->fdadr;
1092 return 0;
1093}
1094
1095int pxafb_smart_flush(struct fb_info *info)
1096{
1097 struct pxafb_info *fbi = container_of(info, struct pxafb_info, fb);
1098 uint32_t prsr;
1099 int ret = 0;
1100
1101 /* disable controller until all registers are set up */
1102 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
1103
1104 /* 1. make it an even number of commands to align on 32-bit boundary
1105 * 2. add the interrupt command to the end of the chain so we can
1106 * keep track of the end of the transfer
1107 */
1108
1109 while (fbi->n_smart_cmds & 1)
1110 fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_NOOP;
1111
1112 fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_INTERRUPT;
1113 fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_WAIT_FOR_VSYNC;
1114 setup_smart_dma(fbi);
1115
1116 /* continue to execute next command */
1117 prsr = lcd_readl(fbi, PRSR) | PRSR_ST_OK | PRSR_CON_NT;
1118 lcd_writel(fbi, PRSR, prsr);
1119
1120 /* stop the processor in case it executed "wait for sync" cmd */
1121 lcd_writel(fbi, CMDCR, 0x0001);
1122
1123 /* don't send interrupts for fifo underruns on channel 6 */
1124 lcd_writel(fbi, LCCR5, LCCR5_IUM(6));
1125
1126 lcd_writel(fbi, LCCR1, fbi->reg_lccr1);
1127 lcd_writel(fbi, LCCR2, fbi->reg_lccr2);
1128 lcd_writel(fbi, LCCR3, fbi->reg_lccr3);
Eric Miaoa0427502008-12-18 22:10:00 +08001129 lcd_writel(fbi, LCCR4, fbi->reg_lccr4);
Eric Miao3c42a442008-04-30 00:52:26 -07001130 lcd_writel(fbi, FDADR0, fbi->fdadr[0]);
1131 lcd_writel(fbi, FDADR6, fbi->fdadr[6]);
1132
1133 /* begin sending */
1134 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 | LCCR0_ENB);
1135
1136 if (wait_for_completion_timeout(&fbi->command_done, HZ/2) == 0) {
1137 pr_warning("%s: timeout waiting for command done\n",
1138 __func__);
1139 ret = -ETIMEDOUT;
1140 }
1141
1142 /* quick disable */
1143 prsr = lcd_readl(fbi, PRSR) & ~(PRSR_ST_OK | PRSR_CON_NT);
1144 lcd_writel(fbi, PRSR, prsr);
1145 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
1146 lcd_writel(fbi, FDADR6, 0);
1147 fbi->n_smart_cmds = 0;
1148 return ret;
1149}
1150
1151int pxafb_smart_queue(struct fb_info *info, uint16_t *cmds, int n_cmds)
1152{
1153 int i;
1154 struct pxafb_info *fbi = container_of(info, struct pxafb_info, fb);
1155
Eric Miao69bdea72008-12-08 18:46:00 +08001156 for (i = 0; i < n_cmds; i++, cmds++) {
1157 /* if it is a software delay, flush and delay */
1158 if ((*cmds & 0xff00) == SMART_CMD_DELAY) {
1159 pxafb_smart_flush(info);
1160 mdelay(*cmds & 0xff);
1161 continue;
1162 }
1163
1164 /* leave 2 commands for INTERRUPT and WAIT_FOR_SYNC */
Eric Miao3c42a442008-04-30 00:52:26 -07001165 if (fbi->n_smart_cmds == CMD_BUFF_SIZE - 8)
1166 pxafb_smart_flush(info);
1167
Eric Miao69bdea72008-12-08 18:46:00 +08001168 fbi->smart_cmds[fbi->n_smart_cmds++] = *cmds;
Eric Miao3c42a442008-04-30 00:52:26 -07001169 }
1170
1171 return 0;
1172}
1173
1174static unsigned int __smart_timing(unsigned time_ns, unsigned long lcd_clk)
1175{
1176 unsigned int t = (time_ns * (lcd_clk / 1000000) / 1000);
1177 return (t == 0) ? 1 : t;
1178}
1179
1180static void setup_smart_timing(struct pxafb_info *fbi,
1181 struct fb_var_screeninfo *var)
1182{
1183 struct pxafb_mach_info *inf = fbi->dev->platform_data;
1184 struct pxafb_mode_info *mode = &inf->modes[0];
1185 unsigned long lclk = clk_get_rate(fbi->clk);
1186 unsigned t1, t2, t3, t4;
1187
1188 t1 = max(mode->a0csrd_set_hld, mode->a0cswr_set_hld);
1189 t2 = max(mode->rd_pulse_width, mode->wr_pulse_width);
1190 t3 = mode->op_hold_time;
1191 t4 = mode->cmd_inh_time;
1192
1193 fbi->reg_lccr1 =
1194 LCCR1_DisWdth(var->xres) |
1195 LCCR1_BegLnDel(__smart_timing(t1, lclk)) |
1196 LCCR1_EndLnDel(__smart_timing(t2, lclk)) |
1197 LCCR1_HorSnchWdth(__smart_timing(t3, lclk));
1198
1199 fbi->reg_lccr2 = LCCR2_DisHght(var->yres);
Eric Miaoc1f99c22008-12-08 18:35:03 +08001200 fbi->reg_lccr3 = fbi->lccr3 | LCCR3_PixClkDiv(__smart_timing(t4, lclk));
1201 fbi->reg_lccr3 |= (var->sync & FB_SYNC_HOR_HIGH_ACT) ? LCCR3_HSP : 0;
1202 fbi->reg_lccr3 |= (var->sync & FB_SYNC_VERT_HIGH_ACT) ? LCCR3_VSP : 0;
Eric Miao3c42a442008-04-30 00:52:26 -07001203
1204 /* FIXME: make this configurable */
1205 fbi->reg_cmdcr = 1;
1206}
1207
1208static int pxafb_smart_thread(void *arg)
1209{
Eric Miao7f1133c2008-04-30 00:52:27 -07001210 struct pxafb_info *fbi = arg;
Eric Miao3c42a442008-04-30 00:52:26 -07001211 struct pxafb_mach_info *inf = fbi->dev->platform_data;
1212
1213 if (!fbi || !inf->smart_update) {
1214 pr_err("%s: not properly initialized, thread terminated\n",
1215 __func__);
1216 return -EINVAL;
1217 }
1218
1219 pr_debug("%s(): task starting\n", __func__);
1220
1221 set_freezable();
1222 while (!kthread_should_stop()) {
1223
1224 if (try_to_freeze())
1225 continue;
1226
Eric Miao07f651c2008-12-08 18:51:01 +08001227 mutex_lock(&fbi->ctrlr_lock);
1228
Eric Miao3c42a442008-04-30 00:52:26 -07001229 if (fbi->state == C_ENABLE) {
1230 inf->smart_update(&fbi->fb);
1231 complete(&fbi->refresh_done);
1232 }
1233
Eric Miao07f651c2008-12-08 18:51:01 +08001234 mutex_unlock(&fbi->ctrlr_lock);
1235
Eric Miao3c42a442008-04-30 00:52:26 -07001236 set_current_state(TASK_INTERRUPTIBLE);
1237 schedule_timeout(30 * HZ / 1000);
1238 }
1239
1240 pr_debug("%s(): task ending\n", __func__);
1241 return 0;
1242}
1243
1244static int pxafb_smart_init(struct pxafb_info *fbi)
1245{
Eric Miao07df1c42008-12-04 11:14:11 +08001246 if (!(fbi->lccr0 & LCCR0_LCDT))
Eric Miao6cc4abe2008-11-11 21:47:07 +08001247 return 0;
1248
Eric Miao07df1c42008-12-04 11:14:11 +08001249 fbi->smart_cmds = (uint16_t *) fbi->dma_buff->cmd_buff;
1250 fbi->n_smart_cmds = 0;
1251
1252 init_completion(&fbi->command_done);
1253 init_completion(&fbi->refresh_done);
1254
Eric Miao3c42a442008-04-30 00:52:26 -07001255 fbi->smart_thread = kthread_run(pxafb_smart_thread, fbi,
1256 "lcd_refresh");
1257 if (IS_ERR(fbi->smart_thread)) {
Eric Miao07df1c42008-12-04 11:14:11 +08001258 pr_err("%s: unable to create kernel thread\n", __func__);
Eric Miao3c42a442008-04-30 00:52:26 -07001259 return PTR_ERR(fbi->smart_thread);
1260 }
Eric Miaoa5718a12008-11-11 21:50:39 +08001261
Eric Miao3c42a442008-04-30 00:52:26 -07001262 return 0;
1263}
1264#else
1265int pxafb_smart_queue(struct fb_info *info, uint16_t *cmds, int n_cmds)
1266{
1267 return 0;
1268}
1269
1270int pxafb_smart_flush(struct fb_info *info)
1271{
1272 return 0;
1273}
Eric Miao07df1c42008-12-04 11:14:11 +08001274
1275static inline int pxafb_smart_init(struct pxafb_info *fbi) { return 0; }
1276#endif /* CONFIG_FB_PXA_SMARTPANEL */
Eric Miao3c42a442008-04-30 00:52:26 -07001277
Eric Miao90eabbf2008-04-30 00:52:25 -07001278static void setup_parallel_timing(struct pxafb_info *fbi,
1279 struct fb_var_screeninfo *var)
1280{
1281 unsigned int lines_per_panel, pcd = get_pcd(fbi, var->pixclock);
1282
1283 fbi->reg_lccr1 =
1284 LCCR1_DisWdth(var->xres) +
1285 LCCR1_HorSnchWdth(var->hsync_len) +
1286 LCCR1_BegLnDel(var->left_margin) +
1287 LCCR1_EndLnDel(var->right_margin);
1288
1289 /*
1290 * If we have a dual scan LCD, we need to halve
1291 * the YRES parameter.
1292 */
1293 lines_per_panel = var->yres;
1294 if ((fbi->lccr0 & LCCR0_SDS) == LCCR0_Dual)
1295 lines_per_panel /= 2;
1296
1297 fbi->reg_lccr2 =
1298 LCCR2_DisHght(lines_per_panel) +
1299 LCCR2_VrtSnchWdth(var->vsync_len) +
1300 LCCR2_BegFrmDel(var->upper_margin) +
1301 LCCR2_EndFrmDel(var->lower_margin);
1302
1303 fbi->reg_lccr3 = fbi->lccr3 |
1304 (var->sync & FB_SYNC_HOR_HIGH_ACT ?
1305 LCCR3_HorSnchH : LCCR3_HorSnchL) |
1306 (var->sync & FB_SYNC_VERT_HIGH_ACT ?
1307 LCCR3_VrtSnchH : LCCR3_VrtSnchL);
1308
1309 if (pcd) {
1310 fbi->reg_lccr3 |= LCCR3_PixClkDiv(pcd);
1311 set_hsync_time(fbi, pcd);
1312 }
1313}
1314
Richard Purdieba44cd22005-09-09 13:10:03 -07001315/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 * pxafb_activate_var():
eric miaob0086ef2008-04-30 00:52:19 -07001317 * Configures LCD Controller based on entries in var parameter.
1318 * Settings are only written to the controller if changes were made.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 */
eric miaob0086ef2008-04-30 00:52:19 -07001320static int pxafb_activate_var(struct fb_var_screeninfo *var,
1321 struct pxafb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 u_long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 /* Update shadow copy atomically */
1326 local_irq_save(flags);
1327
Eric Miao3c42a442008-04-30 00:52:26 -07001328#ifdef CONFIG_FB_PXA_SMARTPANEL
1329 if (fbi->lccr0 & LCCR0_LCDT)
1330 setup_smart_timing(fbi, var);
1331 else
1332#endif
1333 setup_parallel_timing(fbi, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Eric Miao6e354842008-12-17 16:50:43 +08001335 setup_base_frame(fbi, 0);
1336
Eric Miao90eabbf2008-04-30 00:52:25 -07001337 fbi->reg_lccr0 = fbi->lccr0 |
1338 (LCCR0_LDM | LCCR0_SFM | LCCR0_IUM | LCCR0_EFM |
1339 LCCR0_QDM | LCCR0_BM | LCCR0_OUM);
1340
Eric Miao878f5782008-12-18 22:36:26 +08001341 fbi->reg_lccr3 |= pxafb_var_to_lccr3(var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Eric Miaoa7535ba2008-04-30 00:52:24 -07001343 fbi->reg_lccr4 = lcd_readl(fbi, LCCR4) & ~LCCR4_PAL_FOR_MASK;
Hans J. Koch9ffa7392007-10-16 01:28:41 -07001344 fbi->reg_lccr4 |= (fbi->lccr4 & LCCR4_PAL_FOR_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 local_irq_restore(flags);
1346
1347 /*
1348 * Only update the registers if the controller is enabled
1349 * and something has changed.
1350 */
Eric Miaoa7535ba2008-04-30 00:52:24 -07001351 if ((lcd_readl(fbi, LCCR0) != fbi->reg_lccr0) ||
1352 (lcd_readl(fbi, LCCR1) != fbi->reg_lccr1) ||
1353 (lcd_readl(fbi, LCCR2) != fbi->reg_lccr2) ||
1354 (lcd_readl(fbi, LCCR3) != fbi->reg_lccr3) ||
Eric Miaoa0427502008-12-18 22:10:00 +08001355 (lcd_readl(fbi, LCCR4) != fbi->reg_lccr4) ||
Eric Miaoa7535ba2008-04-30 00:52:24 -07001356 (lcd_readl(fbi, FDADR0) != fbi->fdadr[0]) ||
1357 (lcd_readl(fbi, FDADR1) != fbi->fdadr[1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 pxafb_schedule_work(fbi, C_REENABLE);
1359
1360 return 0;
1361}
1362
1363/*
1364 * NOTE! The following functions are purely helpers for set_ctrlr_state.
1365 * Do not call them directly; set_ctrlr_state does the correct serialisation
1366 * to ensure that things happen in the right way 100% of time time.
1367 * -- rmk
1368 */
1369static inline void __pxafb_backlight_power(struct pxafb_info *fbi, int on)
1370{
Russell Kingca5da712005-09-29 09:44:54 +01001371 pr_debug("pxafb: backlight o%s\n", on ? "n" : "ff");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Eric Miaoa5718a12008-11-11 21:50:39 +08001373 if (fbi->backlight_power)
1374 fbi->backlight_power(on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375}
1376
1377static inline void __pxafb_lcd_power(struct pxafb_info *fbi, int on)
1378{
Russell Kingca5da712005-09-29 09:44:54 +01001379 pr_debug("pxafb: LCD power o%s\n", on ? "n" : "ff");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Eric Miaoa5718a12008-11-11 21:50:39 +08001381 if (fbi->lcd_power)
1382 fbi->lcd_power(on, &fbi->fb.var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385static void pxafb_enable_controller(struct pxafb_info *fbi)
1386{
Russell Kingca5da712005-09-29 09:44:54 +01001387 pr_debug("pxafb: Enabling LCD controller\n");
eric miao2c42dd82008-04-30 00:52:21 -07001388 pr_debug("fdadr0 0x%08x\n", (unsigned int) fbi->fdadr[0]);
1389 pr_debug("fdadr1 0x%08x\n", (unsigned int) fbi->fdadr[1]);
Russell Kingca5da712005-09-29 09:44:54 +01001390 pr_debug("reg_lccr0 0x%08x\n", (unsigned int) fbi->reg_lccr0);
1391 pr_debug("reg_lccr1 0x%08x\n", (unsigned int) fbi->reg_lccr1);
1392 pr_debug("reg_lccr2 0x%08x\n", (unsigned int) fbi->reg_lccr2);
1393 pr_debug("reg_lccr3 0x%08x\n", (unsigned int) fbi->reg_lccr3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Nicolas Pitre8d372262005-08-10 16:45:13 +01001395 /* enable LCD controller clock */
Russell King72e35242007-08-20 10:18:42 +01001396 clk_enable(fbi->clk);
Nicolas Pitre8d372262005-08-10 16:45:13 +01001397
Eric Miao3c42a442008-04-30 00:52:26 -07001398 if (fbi->lccr0 & LCCR0_LCDT)
1399 return;
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 /* Sequence from 11.7.10 */
Eric Miaoa0427502008-12-18 22:10:00 +08001402 lcd_writel(fbi, LCCR4, fbi->reg_lccr4);
Eric Miaoa7535ba2008-04-30 00:52:24 -07001403 lcd_writel(fbi, LCCR3, fbi->reg_lccr3);
1404 lcd_writel(fbi, LCCR2, fbi->reg_lccr2);
1405 lcd_writel(fbi, LCCR1, fbi->reg_lccr1);
1406 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Eric Miaoa7535ba2008-04-30 00:52:24 -07001408 lcd_writel(fbi, FDADR0, fbi->fdadr[0]);
1409 lcd_writel(fbi, FDADR1, fbi->fdadr[1]);
1410 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 | LCCR0_ENB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
1413static void pxafb_disable_controller(struct pxafb_info *fbi)
1414{
eric miaoce4fb7b2008-04-30 00:52:21 -07001415 uint32_t lccr0;
1416
Eric Miao3c42a442008-04-30 00:52:26 -07001417#ifdef CONFIG_FB_PXA_SMARTPANEL
1418 if (fbi->lccr0 & LCCR0_LCDT) {
1419 wait_for_completion_timeout(&fbi->refresh_done,
1420 200 * HZ / 1000);
1421 return;
1422 }
1423#endif
1424
eric miaoce4fb7b2008-04-30 00:52:21 -07001425 /* Clear LCD Status Register */
Eric Miaoa7535ba2008-04-30 00:52:24 -07001426 lcd_writel(fbi, LCSR, 0xffffffff);
eric miaoce4fb7b2008-04-30 00:52:21 -07001427
Eric Miaoa7535ba2008-04-30 00:52:24 -07001428 lccr0 = lcd_readl(fbi, LCCR0) & ~LCCR0_LDM;
1429 lcd_writel(fbi, LCCR0, lccr0);
1430 lcd_writel(fbi, LCCR0, lccr0 | LCCR0_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Eric Miao2ba162b2008-04-30 00:52:24 -07001432 wait_for_completion_timeout(&fbi->disable_done, 200 * HZ / 1000);
Nicolas Pitre8d372262005-08-10 16:45:13 +01001433
1434 /* disable LCD controller clock */
Russell King72e35242007-08-20 10:18:42 +01001435 clk_disable(fbi->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
1438/*
1439 * pxafb_handle_irq: Handle 'LCD DONE' interrupts.
1440 */
David Howells7d12e782006-10-05 14:55:46 +01001441static irqreturn_t pxafb_handle_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
1443 struct pxafb_info *fbi = dev_id;
Denis V. Lunevff14ed52009-04-21 12:23:59 -07001444 unsigned int lccr0, lcsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Eric Miao198fc102008-12-23 17:49:43 +08001446 lcsr = lcd_readl(fbi, LCSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 if (lcsr & LCSR_LDD) {
Eric Miaoa7535ba2008-04-30 00:52:24 -07001448 lccr0 = lcd_readl(fbi, LCCR0);
1449 lcd_writel(fbi, LCCR0, lccr0 | LCCR0_LDM);
Eric Miao2ba162b2008-04-30 00:52:24 -07001450 complete(&fbi->disable_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
1452
Eric Miao3c42a442008-04-30 00:52:26 -07001453#ifdef CONFIG_FB_PXA_SMARTPANEL
1454 if (lcsr & LCSR_CMD_INT)
1455 complete(&fbi->command_done);
1456#endif
Eric Miaoa7535ba2008-04-30 00:52:24 -07001457 lcd_writel(fbi, LCSR, lcsr);
Eric Miao198fc102008-12-23 17:49:43 +08001458
1459#ifdef CONFIG_FB_PXA_OVERLAY
Denis V. Lunevff14ed52009-04-21 12:23:59 -07001460 {
1461 unsigned int lcsr1 = lcd_readl(fbi, LCSR1);
1462 if (lcsr1 & LCSR1_BS(1))
1463 complete(&fbi->overlay[0].branch_done);
Eric Miao198fc102008-12-23 17:49:43 +08001464
Denis V. Lunevff14ed52009-04-21 12:23:59 -07001465 if (lcsr1 & LCSR1_BS(2))
1466 complete(&fbi->overlay[1].branch_done);
Eric Miao198fc102008-12-23 17:49:43 +08001467
Denis V. Lunevff14ed52009-04-21 12:23:59 -07001468 lcd_writel(fbi, LCSR1, lcsr1);
1469 }
Eric Miao198fc102008-12-23 17:49:43 +08001470#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return IRQ_HANDLED;
1472}
1473
1474/*
1475 * This function must be called from task context only, since it will
1476 * sleep when disabling the LCD controller, or if we get two contending
1477 * processes trying to alter state.
1478 */
1479static void set_ctrlr_state(struct pxafb_info *fbi, u_int state)
1480{
1481 u_int old_state;
1482
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -07001483 mutex_lock(&fbi->ctrlr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 old_state = fbi->state;
1486
1487 /*
1488 * Hack around fbcon initialisation.
1489 */
1490 if (old_state == C_STARTUP && state == C_REENABLE)
1491 state = C_ENABLE;
1492
1493 switch (state) {
1494 case C_DISABLE_CLKCHANGE:
1495 /*
1496 * Disable controller for clock change. If the
1497 * controller is already disabled, then do nothing.
1498 */
1499 if (old_state != C_DISABLE && old_state != C_DISABLE_PM) {
1500 fbi->state = state;
eric miaob0086ef2008-04-30 00:52:19 -07001501 /* TODO __pxafb_lcd_power(fbi, 0); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 pxafb_disable_controller(fbi);
1503 }
1504 break;
1505
1506 case C_DISABLE_PM:
1507 case C_DISABLE:
1508 /*
1509 * Disable controller
1510 */
1511 if (old_state != C_DISABLE) {
1512 fbi->state = state;
1513 __pxafb_backlight_power(fbi, 0);
1514 __pxafb_lcd_power(fbi, 0);
1515 if (old_state != C_DISABLE_CLKCHANGE)
1516 pxafb_disable_controller(fbi);
1517 }
1518 break;
1519
1520 case C_ENABLE_CLKCHANGE:
1521 /*
1522 * Enable the controller after clock change. Only
1523 * do this if we were disabled for the clock change.
1524 */
1525 if (old_state == C_DISABLE_CLKCHANGE) {
1526 fbi->state = C_ENABLE;
1527 pxafb_enable_controller(fbi);
eric miaob0086ef2008-04-30 00:52:19 -07001528 /* TODO __pxafb_lcd_power(fbi, 1); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
1530 break;
1531
1532 case C_REENABLE:
1533 /*
1534 * Re-enable the controller only if it was already
1535 * enabled. This is so we reprogram the control
1536 * registers.
1537 */
1538 if (old_state == C_ENABLE) {
Richard Purdied14b2722006-09-20 22:54:21 +01001539 __pxafb_lcd_power(fbi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 pxafb_disable_controller(fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 pxafb_enable_controller(fbi);
Richard Purdied14b2722006-09-20 22:54:21 +01001542 __pxafb_lcd_power(fbi, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
1544 break;
1545
1546 case C_ENABLE_PM:
1547 /*
1548 * Re-enable the controller after PM. This is not
1549 * perfect - think about the case where we were doing
1550 * a clock change, and we suspended half-way through.
1551 */
1552 if (old_state != C_DISABLE_PM)
1553 break;
1554 /* fall through */
1555
1556 case C_ENABLE:
1557 /*
1558 * Power up the LCD screen, enable controller, and
1559 * turn on the backlight.
1560 */
1561 if (old_state != C_ENABLE) {
1562 fbi->state = C_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 pxafb_enable_controller(fbi);
1564 __pxafb_lcd_power(fbi, 1);
1565 __pxafb_backlight_power(fbi, 1);
1566 }
1567 break;
1568 }
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -07001569 mutex_unlock(&fbi->ctrlr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570}
1571
1572/*
1573 * Our LCD controller task (which is called when we blank or unblank)
1574 * via keventd.
1575 */
David Howells6d5aefb2006-12-05 19:36:26 +00001576static void pxafb_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
David Howells6d5aefb2006-12-05 19:36:26 +00001578 struct pxafb_info *fbi =
1579 container_of(work, struct pxafb_info, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 u_int state = xchg(&fbi->task_state, -1);
1581
1582 set_ctrlr_state(fbi, state);
1583}
1584
1585#ifdef CONFIG_CPU_FREQ
1586/*
1587 * CPU clock speed change handler. We need to adjust the LCD timing
1588 * parameters when the CPU clock is adjusted by the power management
1589 * subsystem.
1590 *
1591 * TODO: Determine why f->new != 10*get_lclk_frequency_10khz()
1592 */
1593static int
1594pxafb_freq_transition(struct notifier_block *nb, unsigned long val, void *data)
1595{
1596 struct pxafb_info *fbi = TO_INF(nb, freq_transition);
eric miaob0086ef2008-04-30 00:52:19 -07001597 /* TODO struct cpufreq_freqs *f = data; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 u_int pcd;
1599
1600 switch (val) {
1601 case CPUFREQ_PRECHANGE:
1602 set_ctrlr_state(fbi, C_DISABLE_CLKCHANGE);
1603 break;
1604
1605 case CPUFREQ_POSTCHANGE:
Russell King72e35242007-08-20 10:18:42 +01001606 pcd = get_pcd(fbi, fbi->fb.var.pixclock);
Richard Purdieba44cd22005-09-09 13:10:03 -07001607 set_hsync_time(fbi, pcd);
eric miaob0086ef2008-04-30 00:52:19 -07001608 fbi->reg_lccr3 = (fbi->reg_lccr3 & ~0xff) |
1609 LCCR3_PixClkDiv(pcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 set_ctrlr_state(fbi, C_ENABLE_CLKCHANGE);
1611 break;
1612 }
1613 return 0;
1614}
1615
1616static int
1617pxafb_freq_policy(struct notifier_block *nb, unsigned long val, void *data)
1618{
1619 struct pxafb_info *fbi = TO_INF(nb, freq_policy);
1620 struct fb_var_screeninfo *var = &fbi->fb.var;
1621 struct cpufreq_policy *policy = data;
1622
1623 switch (val) {
1624 case CPUFREQ_ADJUST:
1625 case CPUFREQ_INCOMPATIBLE:
Holger Schurigac2bf5b2008-02-11 16:52:30 +01001626 pr_debug("min dma period: %d ps, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 "new clock %d kHz\n", pxafb_display_dma_period(var),
1628 policy->max);
eric miaob0086ef2008-04-30 00:52:19 -07001629 /* TODO: fill in min/max values */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 }
1632 return 0;
1633}
1634#endif
1635
1636#ifdef CONFIG_PM
1637/*
1638 * Power management hooks. Note that we won't be called from IRQ context,
1639 * unlike the blank functions above, so we may sleep.
1640 */
Russell King3ae5eae2005-11-09 22:32:44 +00001641static int pxafb_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
Russell King3ae5eae2005-11-09 22:32:44 +00001643 struct pxafb_info *fbi = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Russell King9480e302005-10-28 09:52:56 -07001645 set_ctrlr_state(fbi, C_DISABLE_PM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 return 0;
1647}
1648
Russell King3ae5eae2005-11-09 22:32:44 +00001649static int pxafb_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
Russell King3ae5eae2005-11-09 22:32:44 +00001651 struct pxafb_info *fbi = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Russell King9480e302005-10-28 09:52:56 -07001653 set_ctrlr_state(fbi, C_ENABLE_PM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 return 0;
1655}
1656#else
1657#define pxafb_suspend NULL
1658#define pxafb_resume NULL
1659#endif
1660
Eric Miao77e19672008-12-16 11:54:34 +08001661static int __devinit pxafb_init_video_memory(struct pxafb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662{
Eric Miao77e19672008-12-16 11:54:34 +08001663 int size = PAGE_ALIGN(fbi->video_mem_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Eric Miao77e19672008-12-16 11:54:34 +08001665 fbi->video_mem = alloc_pages_exact(size, GFP_KERNEL | __GFP_ZERO);
1666 if (fbi->video_mem == NULL)
1667 return -ENOMEM;
Eric Miao3c42a442008-04-30 00:52:26 -07001668
Eric Miao77e19672008-12-16 11:54:34 +08001669 fbi->video_mem_phys = virt_to_phys(fbi->video_mem);
1670 fbi->video_mem_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Eric Miao77e19672008-12-16 11:54:34 +08001672 fbi->fb.fix.smem_start = fbi->video_mem_phys;
1673 fbi->fb.fix.smem_len = fbi->video_mem_size;
1674 fbi->fb.screen_base = fbi->video_mem;
Eric Miao3c42a442008-04-30 00:52:26 -07001675
Eric Miao77e19672008-12-16 11:54:34 +08001676 return fbi->video_mem ? 0 : -ENOMEM;
eric miao84f43c32008-04-30 00:52:22 -07001677}
1678
Guennadi Liakhovetskiebdf9822008-05-05 15:31:44 +01001679static void pxafb_decode_mach_info(struct pxafb_info *fbi,
1680 struct pxafb_mach_info *inf)
eric miao84f43c32008-04-30 00:52:22 -07001681{
1682 unsigned int lcd_conn = inf->lcd_conn;
Eric Miao77e19672008-12-16 11:54:34 +08001683 struct pxafb_mode_info *m;
1684 int i;
eric miao84f43c32008-04-30 00:52:22 -07001685
1686 fbi->cmap_inverse = inf->cmap_inverse;
1687 fbi->cmap_static = inf->cmap_static;
Eric Miaoa0427502008-12-18 22:10:00 +08001688 fbi->lccr4 = inf->lccr4;
eric miao84f43c32008-04-30 00:52:22 -07001689
Eric Miao1ec26db2008-11-11 21:45:57 +08001690 switch (lcd_conn & LCD_TYPE_MASK) {
eric miao84f43c32008-04-30 00:52:22 -07001691 case LCD_TYPE_MONO_STN:
1692 fbi->lccr0 = LCCR0_CMS;
1693 break;
1694 case LCD_TYPE_MONO_DSTN:
1695 fbi->lccr0 = LCCR0_CMS | LCCR0_SDS;
1696 break;
1697 case LCD_TYPE_COLOR_STN:
1698 fbi->lccr0 = 0;
1699 break;
1700 case LCD_TYPE_COLOR_DSTN:
1701 fbi->lccr0 = LCCR0_SDS;
1702 break;
1703 case LCD_TYPE_COLOR_TFT:
1704 fbi->lccr0 = LCCR0_PAS;
1705 break;
1706 case LCD_TYPE_SMART_PANEL:
1707 fbi->lccr0 = LCCR0_LCDT | LCCR0_PAS;
1708 break;
1709 default:
1710 /* fall back to backward compatibility way */
1711 fbi->lccr0 = inf->lccr0;
1712 fbi->lccr3 = inf->lccr3;
Guennadi Liakhovetskiebdf9822008-05-05 15:31:44 +01001713 goto decode_mode;
eric miao84f43c32008-04-30 00:52:22 -07001714 }
1715
1716 if (lcd_conn == LCD_MONO_STN_8BPP)
1717 fbi->lccr0 |= LCCR0_DPD;
1718
Eric Miao9a1ac7e2008-08-15 02:50:44 -04001719 fbi->lccr0 |= (lcd_conn & LCD_ALTERNATE_MAPPING) ? LCCR0_LDDALT : 0;
1720
eric miao84f43c32008-04-30 00:52:22 -07001721 fbi->lccr3 = LCCR3_Acb((inf->lcd_conn >> 10) & 0xff);
1722 fbi->lccr3 |= (lcd_conn & LCD_BIAS_ACTIVE_LOW) ? LCCR3_OEP : 0;
1723 fbi->lccr3 |= (lcd_conn & LCD_PCLK_EDGE_FALL) ? LCCR3_PCP : 0;
1724
Guennadi Liakhovetskiebdf9822008-05-05 15:31:44 +01001725decode_mode:
Eric Miao77e19672008-12-16 11:54:34 +08001726 pxafb_setmode(&fbi->fb.var, &inf->modes[0]);
1727
1728 /* decide video memory size as follows:
1729 * 1. default to mode of maximum resolution
1730 * 2. allow platform to override
1731 * 3. allow module parameter to override
1732 */
1733 for (i = 0, m = &inf->modes[0]; i < inf->num_modes; i++, m++)
1734 fbi->video_mem_size = max_t(size_t, fbi->video_mem_size,
1735 m->xres * m->yres * m->bpp / 8);
1736
1737 if (inf->video_mem_size > fbi->video_mem_size)
1738 fbi->video_mem_size = inf->video_mem_size;
1739
1740 if (video_mem_size > fbi->video_mem_size)
1741 fbi->video_mem_size = video_mem_size;
eric miao84f43c32008-04-30 00:52:22 -07001742}
1743
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001744static struct pxafb_info * __devinit pxafb_init_fbinfo(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
1746 struct pxafb_info *fbi;
1747 void *addr;
1748 struct pxafb_mach_info *inf = dev->platform_data;
1749
1750 /* Alloc the pxafb_info and pseudo_palette in one step */
1751 fbi = kmalloc(sizeof(struct pxafb_info) + sizeof(u32) * 16, GFP_KERNEL);
1752 if (!fbi)
1753 return NULL;
1754
1755 memset(fbi, 0, sizeof(struct pxafb_info));
1756 fbi->dev = dev;
1757
Russell Kinge0d8b132008-11-11 17:52:32 +00001758 fbi->clk = clk_get(dev, NULL);
Russell King72e35242007-08-20 10:18:42 +01001759 if (IS_ERR(fbi->clk)) {
1760 kfree(fbi);
1761 return NULL;
1762 }
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 strcpy(fbi->fb.fix.id, PXA_NAME);
1765
1766 fbi->fb.fix.type = FB_TYPE_PACKED_PIXELS;
1767 fbi->fb.fix.type_aux = 0;
1768 fbi->fb.fix.xpanstep = 0;
Eric Miao7e4b19c2008-12-17 14:56:54 +08001769 fbi->fb.fix.ypanstep = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 fbi->fb.fix.ywrapstep = 0;
1771 fbi->fb.fix.accel = FB_ACCEL_NONE;
1772
1773 fbi->fb.var.nonstd = 0;
1774 fbi->fb.var.activate = FB_ACTIVATE_NOW;
1775 fbi->fb.var.height = -1;
1776 fbi->fb.var.width = -1;
Eric Miao7e4b19c2008-12-17 14:56:54 +08001777 fbi->fb.var.accel_flags = FB_ACCELF_TEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 fbi->fb.var.vmode = FB_VMODE_NONINTERLACED;
1779
1780 fbi->fb.fbops = &pxafb_ops;
1781 fbi->fb.flags = FBINFO_DEFAULT;
1782 fbi->fb.node = -1;
1783
1784 addr = fbi;
1785 addr = addr + sizeof(struct pxafb_info);
1786 fbi->fb.pseudo_palette = addr;
1787
eric miaob0086ef2008-04-30 00:52:19 -07001788 fbi->state = C_STARTUP;
1789 fbi->task_state = (u_char)-1;
Richard Purdied14b2722006-09-20 22:54:21 +01001790
eric miao84f43c32008-04-30 00:52:22 -07001791 pxafb_decode_mach_info(fbi, inf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 init_waitqueue_head(&fbi->ctrlr_wait);
David Howells6d5aefb2006-12-05 19:36:26 +00001794 INIT_WORK(&fbi->task, pxafb_task);
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -07001795 mutex_init(&fbi->ctrlr_lock);
Eric Miao2ba162b2008-04-30 00:52:24 -07001796 init_completion(&fbi->disable_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 return fbi;
1799}
1800
1801#ifdef CONFIG_FB_PXA_PARAMETERS
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001802static int __devinit parse_opt_mode(struct device *dev, const char *this_opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
1804 struct pxafb_mach_info *inf = dev->platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
eric miao817daf12008-04-30 00:52:18 -07001806 const char *name = this_opt+5;
1807 unsigned int namelen = strlen(name);
1808 int res_specified = 0, bpp_specified = 0;
1809 unsigned int xres = 0, yres = 0, bpp = 0;
1810 int yres_specified = 0;
1811 int i;
1812 for (i = namelen-1; i >= 0; i--) {
1813 switch (name[i]) {
1814 case '-':
1815 namelen = i;
1816 if (!bpp_specified && !yres_specified) {
1817 bpp = simple_strtoul(&name[i+1], NULL, 0);
1818 bpp_specified = 1;
1819 } else
1820 goto done;
1821 break;
1822 case 'x':
1823 if (!yres_specified) {
1824 yres = simple_strtoul(&name[i+1], NULL, 0);
1825 yres_specified = 1;
1826 } else
1827 goto done;
1828 break;
1829 case '0' ... '9':
1830 break;
1831 default:
1832 goto done;
1833 }
1834 }
1835 if (i < 0 && yres_specified) {
1836 xres = simple_strtoul(name, NULL, 0);
1837 res_specified = 1;
1838 }
1839done:
1840 if (res_specified) {
1841 dev_info(dev, "overriding resolution: %dx%d\n", xres, yres);
1842 inf->modes[0].xres = xres; inf->modes[0].yres = yres;
1843 }
1844 if (bpp_specified)
1845 switch (bpp) {
1846 case 1:
1847 case 2:
1848 case 4:
1849 case 8:
1850 case 16:
1851 inf->modes[0].bpp = bpp;
1852 dev_info(dev, "overriding bit depth: %d\n", bpp);
1853 break;
1854 default:
1855 dev_err(dev, "Depth %d is not valid\n", bpp);
1856 return -EINVAL;
1857 }
1858 return 0;
1859}
1860
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001861static int __devinit parse_opt(struct device *dev, char *this_opt)
eric miao817daf12008-04-30 00:52:18 -07001862{
1863 struct pxafb_mach_info *inf = dev->platform_data;
1864 struct pxafb_mode_info *mode = &inf->modes[0];
1865 char s[64];
1866
1867 s[0] = '\0';
1868
Eric Miao77e19672008-12-16 11:54:34 +08001869 if (!strncmp(this_opt, "vmem:", 5)) {
1870 video_mem_size = memparse(this_opt + 5, NULL);
1871 } else if (!strncmp(this_opt, "mode:", 5)) {
eric miao817daf12008-04-30 00:52:18 -07001872 return parse_opt_mode(dev, this_opt);
1873 } else if (!strncmp(this_opt, "pixclock:", 9)) {
1874 mode->pixclock = simple_strtoul(this_opt+9, NULL, 0);
1875 sprintf(s, "pixclock: %ld\n", mode->pixclock);
1876 } else if (!strncmp(this_opt, "left:", 5)) {
1877 mode->left_margin = simple_strtoul(this_opt+5, NULL, 0);
1878 sprintf(s, "left: %u\n", mode->left_margin);
1879 } else if (!strncmp(this_opt, "right:", 6)) {
1880 mode->right_margin = simple_strtoul(this_opt+6, NULL, 0);
1881 sprintf(s, "right: %u\n", mode->right_margin);
1882 } else if (!strncmp(this_opt, "upper:", 6)) {
1883 mode->upper_margin = simple_strtoul(this_opt+6, NULL, 0);
1884 sprintf(s, "upper: %u\n", mode->upper_margin);
1885 } else if (!strncmp(this_opt, "lower:", 6)) {
1886 mode->lower_margin = simple_strtoul(this_opt+6, NULL, 0);
1887 sprintf(s, "lower: %u\n", mode->lower_margin);
1888 } else if (!strncmp(this_opt, "hsynclen:", 9)) {
1889 mode->hsync_len = simple_strtoul(this_opt+9, NULL, 0);
1890 sprintf(s, "hsynclen: %u\n", mode->hsync_len);
1891 } else if (!strncmp(this_opt, "vsynclen:", 9)) {
1892 mode->vsync_len = simple_strtoul(this_opt+9, NULL, 0);
1893 sprintf(s, "vsynclen: %u\n", mode->vsync_len);
1894 } else if (!strncmp(this_opt, "hsync:", 6)) {
1895 if (simple_strtoul(this_opt+6, NULL, 0) == 0) {
1896 sprintf(s, "hsync: Active Low\n");
1897 mode->sync &= ~FB_SYNC_HOR_HIGH_ACT;
1898 } else {
1899 sprintf(s, "hsync: Active High\n");
1900 mode->sync |= FB_SYNC_HOR_HIGH_ACT;
1901 }
1902 } else if (!strncmp(this_opt, "vsync:", 6)) {
1903 if (simple_strtoul(this_opt+6, NULL, 0) == 0) {
1904 sprintf(s, "vsync: Active Low\n");
1905 mode->sync &= ~FB_SYNC_VERT_HIGH_ACT;
1906 } else {
1907 sprintf(s, "vsync: Active High\n");
1908 mode->sync |= FB_SYNC_VERT_HIGH_ACT;
1909 }
1910 } else if (!strncmp(this_opt, "dpc:", 4)) {
1911 if (simple_strtoul(this_opt+4, NULL, 0) == 0) {
1912 sprintf(s, "double pixel clock: false\n");
1913 inf->lccr3 &= ~LCCR3_DPC;
1914 } else {
1915 sprintf(s, "double pixel clock: true\n");
1916 inf->lccr3 |= LCCR3_DPC;
1917 }
1918 } else if (!strncmp(this_opt, "outputen:", 9)) {
1919 if (simple_strtoul(this_opt+9, NULL, 0) == 0) {
1920 sprintf(s, "output enable: active low\n");
1921 inf->lccr3 = (inf->lccr3 & ~LCCR3_OEP) | LCCR3_OutEnL;
1922 } else {
1923 sprintf(s, "output enable: active high\n");
1924 inf->lccr3 = (inf->lccr3 & ~LCCR3_OEP) | LCCR3_OutEnH;
1925 }
1926 } else if (!strncmp(this_opt, "pixclockpol:", 12)) {
1927 if (simple_strtoul(this_opt+12, NULL, 0) == 0) {
1928 sprintf(s, "pixel clock polarity: falling edge\n");
1929 inf->lccr3 = (inf->lccr3 & ~LCCR3_PCP) | LCCR3_PixFlEdg;
1930 } else {
1931 sprintf(s, "pixel clock polarity: rising edge\n");
1932 inf->lccr3 = (inf->lccr3 & ~LCCR3_PCP) | LCCR3_PixRsEdg;
1933 }
1934 } else if (!strncmp(this_opt, "color", 5)) {
1935 inf->lccr0 = (inf->lccr0 & ~LCCR0_CMS) | LCCR0_Color;
1936 } else if (!strncmp(this_opt, "mono", 4)) {
1937 inf->lccr0 = (inf->lccr0 & ~LCCR0_CMS) | LCCR0_Mono;
1938 } else if (!strncmp(this_opt, "active", 6)) {
1939 inf->lccr0 = (inf->lccr0 & ~LCCR0_PAS) | LCCR0_Act;
1940 } else if (!strncmp(this_opt, "passive", 7)) {
1941 inf->lccr0 = (inf->lccr0 & ~LCCR0_PAS) | LCCR0_Pas;
1942 } else if (!strncmp(this_opt, "single", 6)) {
1943 inf->lccr0 = (inf->lccr0 & ~LCCR0_SDS) | LCCR0_Sngl;
1944 } else if (!strncmp(this_opt, "dual", 4)) {
1945 inf->lccr0 = (inf->lccr0 & ~LCCR0_SDS) | LCCR0_Dual;
1946 } else if (!strncmp(this_opt, "4pix", 4)) {
1947 inf->lccr0 = (inf->lccr0 & ~LCCR0_DPD) | LCCR0_4PixMono;
1948 } else if (!strncmp(this_opt, "8pix", 4)) {
1949 inf->lccr0 = (inf->lccr0 & ~LCCR0_DPD) | LCCR0_8PixMono;
1950 } else {
1951 dev_err(dev, "unknown option: %s\n", this_opt);
1952 return -EINVAL;
1953 }
1954
1955 if (s[0] != '\0')
1956 dev_info(dev, "override %s", s);
1957
1958 return 0;
1959}
1960
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001961static int __devinit pxafb_parse_options(struct device *dev, char *options)
eric miao817daf12008-04-30 00:52:18 -07001962{
1963 char *this_opt;
1964 int ret;
1965
1966 if (!options || !*options)
1967 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969 dev_dbg(dev, "options are \"%s\"\n", options ? options : "null");
1970
1971 /* could be made table driven or similar?... */
eric miao817daf12008-04-30 00:52:18 -07001972 while ((this_opt = strsep(&options, ",")) != NULL) {
1973 ret = parse_opt(dev, this_opt);
1974 if (ret)
1975 return ret;
1976 }
1977 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978}
eric miao92ac73c2008-04-30 00:52:20 -07001979
1980static char g_options[256] __devinitdata = "";
1981
Jaya Kumarf1edfc42008-06-22 04:27:25 +01001982#ifndef MODULE
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001983static int __init pxafb_setup_options(void)
eric miao92ac73c2008-04-30 00:52:20 -07001984{
1985 char *options = NULL;
1986
1987 if (fb_get_options("pxafb", &options))
1988 return -ENODEV;
1989
1990 if (options)
1991 strlcpy(g_options, options, sizeof(g_options));
1992
1993 return 0;
1994}
1995#else
1996#define pxafb_setup_options() (0)
1997
1998module_param_string(options, g_options, sizeof(g_options), 0);
1999MODULE_PARM_DESC(options, "LCD parameters (see Documentation/fb/pxafb.txt)");
2000#endif
2001
2002#else
2003#define pxafb_parse_options(...) (0)
2004#define pxafb_setup_options() (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005#endif
2006
Eric Miao4f3e2662008-08-16 03:50:51 -04002007#ifdef DEBUG_VAR
2008/* Check for various illegal bit-combinations. Currently only
2009 * a warning is given. */
2010static void __devinit pxafb_check_options(struct device *dev,
2011 struct pxafb_mach_info *inf)
2012{
2013 if (inf->lcd_conn)
2014 return;
2015
2016 if (inf->lccr0 & LCCR0_INVALID_CONFIG_MASK)
2017 dev_warn(dev, "machine LCCR0 setting contains "
2018 "illegal bits: %08x\n",
2019 inf->lccr0 & LCCR0_INVALID_CONFIG_MASK);
2020 if (inf->lccr3 & LCCR3_INVALID_CONFIG_MASK)
2021 dev_warn(dev, "machine LCCR3 setting contains "
2022 "illegal bits: %08x\n",
2023 inf->lccr3 & LCCR3_INVALID_CONFIG_MASK);
2024 if (inf->lccr0 & LCCR0_DPD &&
2025 ((inf->lccr0 & LCCR0_PAS) != LCCR0_Pas ||
2026 (inf->lccr0 & LCCR0_SDS) != LCCR0_Sngl ||
2027 (inf->lccr0 & LCCR0_CMS) != LCCR0_Mono))
2028 dev_warn(dev, "Double Pixel Data (DPD) mode is "
2029 "only valid in passive mono"
2030 " single panel mode\n");
2031 if ((inf->lccr0 & LCCR0_PAS) == LCCR0_Act &&
2032 (inf->lccr0 & LCCR0_SDS) == LCCR0_Dual)
2033 dev_warn(dev, "Dual panel only valid in passive mode\n");
2034 if ((inf->lccr0 & LCCR0_PAS) == LCCR0_Pas &&
2035 (inf->modes->upper_margin || inf->modes->lower_margin))
2036 dev_warn(dev, "Upper and lower margins must be 0 in "
2037 "passive mode\n");
2038}
2039#else
2040#define pxafb_check_options(...) do {} while (0)
2041#endif
2042
Jaya Kumar9e6c2972008-06-22 04:27:27 +01002043static int __devinit pxafb_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
2045 struct pxafb_info *fbi;
2046 struct pxafb_mach_info *inf;
eric miaoce4fb7b2008-04-30 00:52:21 -07002047 struct resource *r;
2048 int irq, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Richard Purdie2cbbb3b2006-03-31 02:31:53 -08002050 dev_dbg(&dev->dev, "pxafb_probe\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Russell King3ae5eae2005-11-09 22:32:44 +00002052 inf = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 ret = -ENOMEM;
2054 fbi = NULL;
2055 if (!inf)
2056 goto failed;
2057
Russell King3ae5eae2005-11-09 22:32:44 +00002058 ret = pxafb_parse_options(&dev->dev, g_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 if (ret < 0)
2060 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Eric Miao4f3e2662008-08-16 03:50:51 -04002062 pxafb_check_options(&dev->dev, inf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
eric miaob0086ef2008-04-30 00:52:19 -07002064 dev_dbg(&dev->dev, "got a %dx%dx%d LCD\n",
2065 inf->modes->xres,
2066 inf->modes->yres,
2067 inf->modes->bpp);
2068 if (inf->modes->xres == 0 ||
2069 inf->modes->yres == 0 ||
2070 inf->modes->bpp == 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00002071 dev_err(&dev->dev, "Invalid resolution or bit depth\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 ret = -EINVAL;
2073 goto failed;
2074 }
Eric Miaoa5718a12008-11-11 21:50:39 +08002075
Russell King3ae5eae2005-11-09 22:32:44 +00002076 fbi = pxafb_init_fbinfo(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 if (!fbi) {
eric miaob0086ef2008-04-30 00:52:19 -07002078 /* only reason for pxafb_init_fbinfo to fail is kmalloc */
Russell King3ae5eae2005-11-09 22:32:44 +00002079 dev_err(&dev->dev, "Failed to initialize framebuffer device\n");
eric miaob0086ef2008-04-30 00:52:19 -07002080 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 goto failed;
2082 }
2083
Eric Miaoa5718a12008-11-11 21:50:39 +08002084 fbi->backlight_power = inf->pxafb_backlight_power;
2085 fbi->lcd_power = inf->pxafb_lcd_power;
2086
eric miaoce4fb7b2008-04-30 00:52:21 -07002087 r = platform_get_resource(dev, IORESOURCE_MEM, 0);
2088 if (r == NULL) {
2089 dev_err(&dev->dev, "no I/O memory resource defined\n");
2090 ret = -ENODEV;
Jaya Kumaree984762008-06-22 04:27:26 +01002091 goto failed_fbi;
eric miaoce4fb7b2008-04-30 00:52:21 -07002092 }
2093
2094 r = request_mem_region(r->start, r->end - r->start + 1, dev->name);
2095 if (r == NULL) {
2096 dev_err(&dev->dev, "failed to request I/O memory\n");
2097 ret = -EBUSY;
Jaya Kumaree984762008-06-22 04:27:26 +01002098 goto failed_fbi;
eric miaoce4fb7b2008-04-30 00:52:21 -07002099 }
2100
2101 fbi->mmio_base = ioremap(r->start, r->end - r->start + 1);
2102 if (fbi->mmio_base == NULL) {
2103 dev_err(&dev->dev, "failed to map I/O memory\n");
2104 ret = -EBUSY;
2105 goto failed_free_res;
2106 }
2107
Eric Miao77e19672008-12-16 11:54:34 +08002108 fbi->dma_buff_size = PAGE_ALIGN(sizeof(struct pxafb_dma_buff));
2109 fbi->dma_buff = dma_alloc_coherent(fbi->dev, fbi->dma_buff_size,
2110 &fbi->dma_buff_phys, GFP_KERNEL);
2111 if (fbi->dma_buff == NULL) {
2112 dev_err(&dev->dev, "failed to allocate memory for DMA\n");
2113 ret = -ENOMEM;
2114 goto failed_free_io;
2115 }
2116
2117 ret = pxafb_init_video_memory(fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 if (ret) {
Russell King3ae5eae2005-11-09 22:32:44 +00002119 dev_err(&dev->dev, "Failed to allocate video RAM: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 ret = -ENOMEM;
Eric Miao77e19672008-12-16 11:54:34 +08002121 goto failed_free_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
eric miaoce4fb7b2008-04-30 00:52:21 -07002124 irq = platform_get_irq(dev, 0);
2125 if (irq < 0) {
2126 dev_err(&dev->dev, "no IRQ defined\n");
2127 ret = -ENODEV;
2128 goto failed_free_mem;
2129 }
2130
2131 ret = request_irq(irq, pxafb_handle_irq, IRQF_DISABLED, "LCD", fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 if (ret) {
Russell King3ae5eae2005-11-09 22:32:44 +00002133 dev_err(&dev->dev, "request_irq failed: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 ret = -EBUSY;
eric miaoce4fb7b2008-04-30 00:52:21 -07002135 goto failed_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 }
2137
Eric Miao3c42a442008-04-30 00:52:26 -07002138 ret = pxafb_smart_init(fbi);
2139 if (ret) {
2140 dev_err(&dev->dev, "failed to initialize smartpanel\n");
2141 goto failed_free_irq;
2142 }
Eric Miao07df1c42008-12-04 11:14:11 +08002143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 /*
2145 * This makes sure that our colour bitfield
2146 * descriptors are correctly initialised.
2147 */
Jaya Kumaree984762008-06-22 04:27:26 +01002148 ret = pxafb_check_var(&fbi->fb.var, &fbi->fb);
2149 if (ret) {
2150 dev_err(&dev->dev, "failed to get suitable mode\n");
2151 goto failed_free_irq;
2152 }
2153
2154 ret = pxafb_set_par(&fbi->fb);
2155 if (ret) {
2156 dev_err(&dev->dev, "Failed to set parameters\n");
2157 goto failed_free_irq;
2158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Russell King3ae5eae2005-11-09 22:32:44 +00002160 platform_set_drvdata(dev, fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162 ret = register_framebuffer(&fbi->fb);
2163 if (ret < 0) {
eric miaob0086ef2008-04-30 00:52:19 -07002164 dev_err(&dev->dev,
2165 "Failed to register framebuffer device: %d\n", ret);
Jaya Kumaree984762008-06-22 04:27:26 +01002166 goto failed_free_cmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 }
2168
Eric Miao198fc102008-12-23 17:49:43 +08002169 pxafb_overlay_init(fbi);
2170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171#ifdef CONFIG_CPU_FREQ
2172 fbi->freq_transition.notifier_call = pxafb_freq_transition;
2173 fbi->freq_policy.notifier_call = pxafb_freq_policy;
eric miaob0086ef2008-04-30 00:52:19 -07002174 cpufreq_register_notifier(&fbi->freq_transition,
2175 CPUFREQ_TRANSITION_NOTIFIER);
2176 cpufreq_register_notifier(&fbi->freq_policy,
2177 CPUFREQ_POLICY_NOTIFIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178#endif
2179
2180 /*
2181 * Ok, now enable the LCD controller
2182 */
2183 set_ctrlr_state(fbi, C_ENABLE);
2184
2185 return 0;
2186
Jaya Kumaree984762008-06-22 04:27:26 +01002187failed_free_cmap:
2188 if (fbi->fb.cmap.len)
2189 fb_dealloc_cmap(&fbi->fb.cmap);
eric miaoce4fb7b2008-04-30 00:52:21 -07002190failed_free_irq:
2191 free_irq(irq, fbi);
eric miaoce4fb7b2008-04-30 00:52:21 -07002192failed_free_mem:
Eric Miao77e19672008-12-16 11:54:34 +08002193 free_pages_exact(fbi->video_mem, fbi->video_mem_size);
2194failed_free_dma:
2195 dma_free_coherent(&dev->dev, fbi->dma_buff_size,
2196 fbi->dma_buff, fbi->dma_buff_phys);
Jaya Kumaree984762008-06-22 04:27:26 +01002197failed_free_io:
2198 iounmap(fbi->mmio_base);
2199failed_free_res:
2200 release_mem_region(r->start, r->end - r->start + 1);
2201failed_fbi:
2202 clk_put(fbi->clk);
Russell King3ae5eae2005-11-09 22:32:44 +00002203 platform_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 kfree(fbi);
Jaya Kumaree984762008-06-22 04:27:26 +01002205failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 return ret;
2207}
2208
Jaya Kumar9f17f282008-06-22 04:27:28 +01002209static int __devexit pxafb_remove(struct platform_device *dev)
2210{
2211 struct pxafb_info *fbi = platform_get_drvdata(dev);
2212 struct resource *r;
2213 int irq;
2214 struct fb_info *info;
2215
2216 if (!fbi)
2217 return 0;
2218
2219 info = &fbi->fb;
2220
Eric Miao198fc102008-12-23 17:49:43 +08002221 pxafb_overlay_exit(fbi);
Jaya Kumar9f17f282008-06-22 04:27:28 +01002222 unregister_framebuffer(info);
2223
2224 pxafb_disable_controller(fbi);
2225
2226 if (fbi->fb.cmap.len)
2227 fb_dealloc_cmap(&fbi->fb.cmap);
2228
2229 irq = platform_get_irq(dev, 0);
2230 free_irq(irq, fbi);
2231
Eric Miao77e19672008-12-16 11:54:34 +08002232 free_pages_exact(fbi->video_mem, fbi->video_mem_size);
2233
2234 dma_free_writecombine(&dev->dev, fbi->dma_buff_size,
2235 fbi->dma_buff, fbi->dma_buff_phys);
Jaya Kumar9f17f282008-06-22 04:27:28 +01002236
2237 iounmap(fbi->mmio_base);
2238
2239 r = platform_get_resource(dev, IORESOURCE_MEM, 0);
2240 release_mem_region(r->start, r->end - r->start + 1);
2241
2242 clk_put(fbi->clk);
2243 kfree(fbi);
2244
2245 return 0;
2246}
2247
Russell King3ae5eae2005-11-09 22:32:44 +00002248static struct platform_driver pxafb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 .probe = pxafb_probe,
Russell Kingbdf602b2009-03-03 13:43:47 +00002250 .remove = __devexit_p(pxafb_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 .suspend = pxafb_suspend,
2252 .resume = pxafb_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00002253 .driver = {
Jaya Kumar9f17f282008-06-22 04:27:28 +01002254 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00002255 .name = "pxa2xx-fb",
2256 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257};
2258
Jaya Kumar9e6c2972008-06-22 04:27:27 +01002259static int __init pxafb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260{
eric miao92ac73c2008-04-30 00:52:20 -07002261 if (pxafb_setup_options())
2262 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
Russell King3ae5eae2005-11-09 22:32:44 +00002264 return platform_driver_register(&pxafb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265}
2266
Jaya Kumar9f17f282008-06-22 04:27:28 +01002267static void __exit pxafb_exit(void)
2268{
2269 platform_driver_unregister(&pxafb_driver);
2270}
2271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272module_init(pxafb_init);
Jaya Kumar9f17f282008-06-22 04:27:28 +01002273module_exit(pxafb_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275MODULE_DESCRIPTION("loadable framebuffer driver for PXA");
2276MODULE_LICENSE("GPL");