blob: e89778f4081fcd7257baa8da27275190c1d4cd78 [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);
Sven Neumann448ac472009-10-22 08:34:34 +020083static void setup_base_frame(struct pxafb_info *fbi,
84 struct fb_var_screeninfo *var, int branch);
Eric Miao198fc102008-12-23 17:49:43 +080085static int setup_frame_dma(struct pxafb_info *fbi, int dma, int pal,
86 unsigned long offset, size_t size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Eric Miao77e19672008-12-16 11:54:34 +080088static unsigned long video_mem_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Eric Miaoa7535ba2008-04-30 00:52:24 -070090static inline unsigned long
91lcd_readl(struct pxafb_info *fbi, unsigned int off)
92{
93 return __raw_readl(fbi->mmio_base + off);
94}
95
96static inline void
97lcd_writel(struct pxafb_info *fbi, unsigned int off, unsigned long val)
98{
99 __raw_writel(val, fbi->mmio_base + off);
100}
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static inline void pxafb_schedule_work(struct pxafb_info *fbi, u_int state)
103{
104 unsigned long flags;
105
106 local_irq_save(flags);
107 /*
108 * We need to handle two requests being made at the same time.
109 * There are two important cases:
eric miaob0086ef2008-04-30 00:52:19 -0700110 * 1. When we are changing VT (C_REENABLE) while unblanking
111 * (C_ENABLE) We must perform the unblanking, which will
112 * do our REENABLE for us.
113 * 2. When we are blanking, but immediately unblank before
114 * we have blanked. We do the "REENABLE" thing here as
115 * well, just to be sure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 */
117 if (fbi->task_state == C_ENABLE && state == C_REENABLE)
118 state = (u_int) -1;
119 if (fbi->task_state == C_DISABLE && state == C_ENABLE)
120 state = C_REENABLE;
121
122 if (state != (u_int)-1) {
123 fbi->task_state = state;
124 schedule_work(&fbi->task);
125 }
126 local_irq_restore(flags);
127}
128
129static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf)
130{
131 chan &= 0xffff;
132 chan >>= 16 - bf->length;
133 return chan << bf->offset;
134}
135
136static int
137pxafb_setpalettereg(u_int regno, u_int red, u_int green, u_int blue,
138 u_int trans, struct fb_info *info)
139{
140 struct pxafb_info *fbi = (struct pxafb_info *)info;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700141 u_int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700143 if (regno >= fbi->palette_size)
144 return 1;
145
146 if (fbi->fb.var.grayscale) {
147 fbi->palette_cpu[regno] = ((blue >> 8) & 0x00ff);
148 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700150
151 switch (fbi->lccr4 & LCCR4_PAL_FOR_MASK) {
152 case LCCR4_PAL_FOR_0:
153 val = ((red >> 0) & 0xf800);
154 val |= ((green >> 5) & 0x07e0);
155 val |= ((blue >> 11) & 0x001f);
156 fbi->palette_cpu[regno] = val;
157 break;
158 case LCCR4_PAL_FOR_1:
159 val = ((red << 8) & 0x00f80000);
160 val |= ((green >> 0) & 0x0000fc00);
161 val |= ((blue >> 8) & 0x000000f8);
eric miaob0086ef2008-04-30 00:52:19 -0700162 ((u32 *)(fbi->palette_cpu))[regno] = val;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700163 break;
164 case LCCR4_PAL_FOR_2:
165 val = ((red << 8) & 0x00fc0000);
166 val |= ((green >> 0) & 0x0000fc00);
167 val |= ((blue >> 8) & 0x000000fc);
eric miaob0086ef2008-04-30 00:52:19 -0700168 ((u32 *)(fbi->palette_cpu))[regno] = val;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700169 break;
Eric Miaoa0427502008-12-18 22:10:00 +0800170 case LCCR4_PAL_FOR_3:
171 val = ((red << 8) & 0x00ff0000);
172 val |= ((green >> 0) & 0x0000ff00);
173 val |= ((blue >> 8) & 0x000000ff);
174 ((u32 *)(fbi->palette_cpu))[regno] = val;
175 break;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700176 }
177
178 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
181static int
182pxafb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
183 u_int trans, struct fb_info *info)
184{
185 struct pxafb_info *fbi = (struct pxafb_info *)info;
186 unsigned int val;
187 int ret = 1;
188
189 /*
190 * If inverse mode was selected, invert all the colours
191 * rather than the register number. The register number
192 * is what you poke into the framebuffer to produce the
193 * colour you requested.
194 */
195 if (fbi->cmap_inverse) {
196 red = 0xffff - red;
197 green = 0xffff - green;
198 blue = 0xffff - blue;
199 }
200
201 /*
202 * If greyscale is true, then we convert the RGB value
203 * to greyscale no matter what visual we are using.
204 */
205 if (fbi->fb.var.grayscale)
206 red = green = blue = (19595 * red + 38470 * green +
207 7471 * blue) >> 16;
208
209 switch (fbi->fb.fix.visual) {
210 case FB_VISUAL_TRUECOLOR:
211 /*
212 * 16-bit True Colour. We encode the RGB value
213 * according to the RGB bitfield information.
214 */
215 if (regno < 16) {
216 u32 *pal = fbi->fb.pseudo_palette;
217
218 val = chan_to_field(red, &fbi->fb.var.red);
219 val |= chan_to_field(green, &fbi->fb.var.green);
220 val |= chan_to_field(blue, &fbi->fb.var.blue);
221
222 pal[regno] = val;
223 ret = 0;
224 }
225 break;
226
227 case FB_VISUAL_STATIC_PSEUDOCOLOR:
228 case FB_VISUAL_PSEUDOCOLOR:
229 ret = pxafb_setpalettereg(regno, red, green, blue, trans, info);
230 break;
231 }
232
233 return ret;
234}
235
Eric Miao878f5782008-12-18 22:36:26 +0800236/* calculate pixel depth, transparency bit included, >=16bpp formats _only_ */
237static inline int var_to_depth(struct fb_var_screeninfo *var)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Eric Miao878f5782008-12-18 22:36:26 +0800239 return var->red.length + var->green.length +
240 var->blue.length + var->transp.length;
241}
242
243/* calculate 4-bit BPP value for LCCR3 and OVLxC1 */
244static int pxafb_var_to_bpp(struct fb_var_screeninfo *var)
245{
246 int bpp = -EINVAL;
247
eric miaob0086ef2008-04-30 00:52:19 -0700248 switch (var->bits_per_pixel) {
Eric Miao878f5782008-12-18 22:36:26 +0800249 case 1: bpp = 0; break;
250 case 2: bpp = 1; break;
251 case 4: bpp = 2; break;
252 case 8: bpp = 3; break;
253 case 16: bpp = 4; break;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100254 case 24:
Eric Miao878f5782008-12-18 22:36:26 +0800255 switch (var_to_depth(var)) {
256 case 18: bpp = 6; break; /* 18-bits/pixel packed */
257 case 19: bpp = 8; break; /* 19-bits/pixel packed */
258 case 24: bpp = 9; break;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100259 }
260 break;
261 case 32:
Eric Miao878f5782008-12-18 22:36:26 +0800262 switch (var_to_depth(var)) {
263 case 18: bpp = 5; break; /* 18-bits/pixel unpacked */
264 case 19: bpp = 7; break; /* 19-bits/pixel unpacked */
265 case 25: bpp = 10; break;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100266 }
267 break;
eric miaob0086ef2008-04-30 00:52:19 -0700268 }
Eric Miao878f5782008-12-18 22:36:26 +0800269 return bpp;
270}
271
272/*
273 * pxafb_var_to_lccr3():
274 * Convert a bits per pixel value to the correct bit pattern for LCCR3
275 *
276 * NOTE: for PXA27x with overlays support, the LCCR3_PDFOR_x bits have an
277 * implication of the acutal use of transparency bit, which we handle it
278 * here separatedly. See PXA27x Developer's Manual, Section <<7.4.6 Pixel
279 * Formats>> for the valid combination of PDFOR, PAL_FOR for various BPP.
280 *
281 * Transparency for palette pixel formats is not supported at the moment.
282 */
283static uint32_t pxafb_var_to_lccr3(struct fb_var_screeninfo *var)
284{
285 int bpp = pxafb_var_to_bpp(var);
286 uint32_t lccr3;
287
288 if (bpp < 0)
289 return 0;
290
291 lccr3 = LCCR3_BPP(bpp);
292
293 switch (var_to_depth(var)) {
294 case 16: lccr3 |= var->transp.length ? LCCR3_PDFOR_3 : 0; break;
295 case 18: lccr3 |= LCCR3_PDFOR_3; break;
296 case 24: lccr3 |= var->transp.length ? LCCR3_PDFOR_2 : LCCR3_PDFOR_3;
297 break;
298 case 19:
299 case 25: lccr3 |= LCCR3_PDFOR_0; break;
300 }
301 return lccr3;
302}
303
304#define SET_PIXFMT(v, r, g, b, t) \
305({ \
306 (v)->transp.offset = (t) ? (r) + (g) + (b) : 0; \
307 (v)->transp.length = (t) ? (t) : 0; \
308 (v)->blue.length = (b); (v)->blue.offset = 0; \
309 (v)->green.length = (g); (v)->green.offset = (b); \
310 (v)->red.length = (r); (v)->red.offset = (b) + (g); \
311})
312
313/* set the RGBT bitfields of fb_var_screeninf according to
314 * var->bits_per_pixel and given depth
315 */
316static void pxafb_set_pixfmt(struct fb_var_screeninfo *var, int depth)
317{
318 if (depth == 0)
319 depth = var->bits_per_pixel;
320
321 if (var->bits_per_pixel < 16) {
322 /* indexed pixel formats */
323 var->red.offset = 0; var->red.length = 8;
324 var->green.offset = 0; var->green.length = 8;
325 var->blue.offset = 0; var->blue.length = 8;
326 var->transp.offset = 0; var->transp.length = 8;
327 }
328
329 switch (depth) {
330 case 16: var->transp.length ?
331 SET_PIXFMT(var, 5, 5, 5, 1) : /* RGBT555 */
332 SET_PIXFMT(var, 5, 6, 5, 0); break; /* RGB565 */
333 case 18: SET_PIXFMT(var, 6, 6, 6, 0); break; /* RGB666 */
334 case 19: SET_PIXFMT(var, 6, 6, 6, 1); break; /* RGBT666 */
335 case 24: var->transp.length ?
336 SET_PIXFMT(var, 8, 8, 7, 1) : /* RGBT887 */
337 SET_PIXFMT(var, 8, 8, 8, 0); break; /* RGB888 */
338 case 25: SET_PIXFMT(var, 8, 8, 8, 1); break; /* RGBT888 */
339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342#ifdef CONFIG_CPU_FREQ
343/*
344 * pxafb_display_dma_period()
345 * Calculate the minimum period (in picoseconds) between two DMA
346 * requests for the LCD controller. If we hit this, it means we're
347 * doing nothing but LCD DMA.
348 */
349static unsigned int pxafb_display_dma_period(struct fb_var_screeninfo *var)
350{
eric miaob0086ef2008-04-30 00:52:19 -0700351 /*
352 * Period = pixclock * bits_per_byte * bytes_per_transfer
353 * / memory_bits_per_pixel;
354 */
355 return var->pixclock * 8 * 16 / var->bits_per_pixel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357#endif
358
359/*
Richard Purdied14b2722006-09-20 22:54:21 +0100360 * Select the smallest mode that allows the desired resolution to be
361 * displayed. If desired parameters can be rounded up.
362 */
eric miaob0086ef2008-04-30 00:52:19 -0700363static struct pxafb_mode_info *pxafb_getmode(struct pxafb_mach_info *mach,
364 struct fb_var_screeninfo *var)
Richard Purdied14b2722006-09-20 22:54:21 +0100365{
366 struct pxafb_mode_info *mode = NULL;
367 struct pxafb_mode_info *modelist = mach->modes;
368 unsigned int best_x = 0xffffffff, best_y = 0xffffffff;
369 unsigned int i;
370
eric miaob0086ef2008-04-30 00:52:19 -0700371 for (i = 0; i < mach->num_modes; i++) {
372 if (modelist[i].xres >= var->xres &&
373 modelist[i].yres >= var->yres &&
374 modelist[i].xres < best_x &&
375 modelist[i].yres < best_y &&
376 modelist[i].bpp >= var->bits_per_pixel) {
Richard Purdied14b2722006-09-20 22:54:21 +0100377 best_x = modelist[i].xres;
378 best_y = modelist[i].yres;
379 mode = &modelist[i];
380 }
381 }
382
383 return mode;
384}
385
eric miaob0086ef2008-04-30 00:52:19 -0700386static void pxafb_setmode(struct fb_var_screeninfo *var,
387 struct pxafb_mode_info *mode)
Richard Purdied14b2722006-09-20 22:54:21 +0100388{
389 var->xres = mode->xres;
390 var->yres = mode->yres;
391 var->bits_per_pixel = mode->bpp;
392 var->pixclock = mode->pixclock;
393 var->hsync_len = mode->hsync_len;
394 var->left_margin = mode->left_margin;
395 var->right_margin = mode->right_margin;
396 var->vsync_len = mode->vsync_len;
397 var->upper_margin = mode->upper_margin;
398 var->lower_margin = mode->lower_margin;
399 var->sync = mode->sync;
400 var->grayscale = mode->cmap_greyscale;
Pieter Grimmerink049ad832009-11-13 10:28:54 +0100401 var->transp.length = mode->transparency;
Eric Miao878f5782008-12-18 22:36:26 +0800402
403 /* set the initial RGBA bitfields */
404 pxafb_set_pixfmt(var, mode->depth);
Richard Purdied14b2722006-09-20 22:54:21 +0100405}
406
Eric Miao3f16ff62008-12-18 22:51:54 +0800407static int pxafb_adjust_timing(struct pxafb_info *fbi,
408 struct fb_var_screeninfo *var)
409{
410 int line_length;
411
412 var->xres = max_t(int, var->xres, MIN_XRES);
413 var->yres = max_t(int, var->yres, MIN_YRES);
414
415 if (!(fbi->lccr0 & LCCR0_LCDT)) {
416 clamp_val(var->hsync_len, 1, 64);
417 clamp_val(var->vsync_len, 1, 64);
418 clamp_val(var->left_margin, 1, 255);
419 clamp_val(var->right_margin, 1, 255);
420 clamp_val(var->upper_margin, 1, 255);
421 clamp_val(var->lower_margin, 1, 255);
422 }
423
424 /* make sure each line is aligned on word boundary */
425 line_length = var->xres * var->bits_per_pixel / 8;
426 line_length = ALIGN(line_length, 4);
427 var->xres = line_length * 8 / var->bits_per_pixel;
428
429 /* we don't support xpan, force xres_virtual to be equal to xres */
430 var->xres_virtual = var->xres;
431
432 if (var->accel_flags & FB_ACCELF_TEXT)
433 var->yres_virtual = fbi->fb.fix.smem_len / line_length;
434 else
435 var->yres_virtual = max(var->yres_virtual, var->yres);
436
437 /* check for limits */
438 if (var->xres > MAX_XRES || var->yres > MAX_YRES)
439 return -EINVAL;
440
441 if (var->yres > var->yres_virtual)
442 return -EINVAL;
443
444 return 0;
Richard Purdied14b2722006-09-20 22:54:21 +0100445}
446
447/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 * pxafb_check_var():
449 * Get the video params out of 'var'. If a value doesn't fit, round it up,
450 * if it's too big, return -EINVAL.
451 *
452 * Round up in the following order: bits_per_pixel, xres,
453 * yres, xres_virtual, yres_virtual, xoffset, yoffset, grayscale,
454 * bitfields, horizontal timing, vertical timing.
455 */
456static int pxafb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
457{
458 struct pxafb_info *fbi = (struct pxafb_info *)info;
Richard Purdied14b2722006-09-20 22:54:21 +0100459 struct pxafb_mach_info *inf = fbi->dev->platform_data;
Eric Miao878f5782008-12-18 22:36:26 +0800460 int err;
Richard Purdied14b2722006-09-20 22:54:21 +0100461
462 if (inf->fixed_modes) {
463 struct pxafb_mode_info *mode;
464
465 mode = pxafb_getmode(inf, var);
466 if (!mode)
467 return -EINVAL;
468 pxafb_setmode(var, mode);
Richard Purdied14b2722006-09-20 22:54:21 +0100469 }
470
Eric Miao878f5782008-12-18 22:36:26 +0800471 /* do a test conversion to BPP fields to check the color formats */
472 err = pxafb_var_to_bpp(var);
473 if (err < 0)
474 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Eric Miao878f5782008-12-18 22:36:26 +0800476 pxafb_set_pixfmt(var, var_to_depth(var));
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100477
Eric Miao3f16ff62008-12-18 22:51:54 +0800478 err = pxafb_adjust_timing(fbi, var);
479 if (err)
480 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482#ifdef CONFIG_CPU_FREQ
Russell King78d3cfd2008-05-17 22:51:14 +0100483 pr_debug("pxafb: dma period = %d ps\n",
484 pxafb_display_dma_period(var));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485#endif
486
487 return 0;
488}
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490/*
491 * pxafb_set_par():
492 * Set the user defined part of the display for the specified console
493 */
494static int pxafb_set_par(struct fb_info *info)
495{
496 struct pxafb_info *fbi = (struct pxafb_info *)info;
497 struct fb_var_screeninfo *var = &info->var;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100499 if (var->bits_per_pixel >= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 fbi->fb.fix.visual = FB_VISUAL_TRUECOLOR;
501 else if (!fbi->cmap_static)
502 fbi->fb.fix.visual = FB_VISUAL_PSEUDOCOLOR;
503 else {
504 /*
505 * Some people have weird ideas about wanting static
506 * pseudocolor maps. I suspect their user space
507 * applications are broken.
508 */
509 fbi->fb.fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR;
510 }
511
512 fbi->fb.fix.line_length = var->xres_virtual *
513 var->bits_per_pixel / 8;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100514 if (var->bits_per_pixel >= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 fbi->palette_size = 0;
516 else
eric miaob0086ef2008-04-30 00:52:19 -0700517 fbi->palette_size = var->bits_per_pixel == 1 ?
518 4 : 1 << var->bits_per_pixel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
eric miao2c42dd82008-04-30 00:52:21 -0700520 fbi->palette_cpu = (u16 *)&fbi->dma_buff->palette[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100522 if (fbi->fb.var.bits_per_pixel >= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 fb_dealloc_cmap(&fbi->fb.cmap);
524 else
525 fb_alloc_cmap(&fbi->fb.cmap, 1<<fbi->fb.var.bits_per_pixel, 0);
526
527 pxafb_activate_var(var, fbi);
528
529 return 0;
530}
531
Eric Miao6e354842008-12-17 16:50:43 +0800532static int pxafb_pan_display(struct fb_var_screeninfo *var,
533 struct fb_info *info)
534{
535 struct pxafb_info *fbi = (struct pxafb_info *)info;
Sven Neumann448ac472009-10-22 08:34:34 +0200536 struct fb_var_screeninfo newvar;
Eric Miao6e354842008-12-17 16:50:43 +0800537 int dma = DMA_MAX + DMA_BASE;
538
539 if (fbi->state != C_ENABLE)
540 return 0;
541
Sven Neumann448ac472009-10-22 08:34:34 +0200542 /* Only take .xoffset, .yoffset and .vmode & FB_VMODE_YWRAP from what
543 * was passed in and copy the rest from the old screeninfo.
544 */
545 memcpy(&newvar, &fbi->fb.var, sizeof(newvar));
546 newvar.xoffset = var->xoffset;
547 newvar.yoffset = var->yoffset;
548 newvar.vmode &= ~FB_VMODE_YWRAP;
549 newvar.vmode |= var->vmode & FB_VMODE_YWRAP;
550
551 setup_base_frame(fbi, &newvar, 1);
Eric Miao6e354842008-12-17 16:50:43 +0800552
553 if (fbi->lccr0 & LCCR0_SDS)
554 lcd_writel(fbi, FBR1, fbi->fdadr[dma + 1] | 0x1);
555
556 lcd_writel(fbi, FBR0, fbi->fdadr[dma] | 0x1);
557 return 0;
558}
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 * pxafb_blank():
562 * Blank the display by setting all palette values to zero. Note, the
563 * 16 bpp mode does not really use the palette, so this will not
564 * blank the display in all modes.
565 */
566static int pxafb_blank(int blank, struct fb_info *info)
567{
568 struct pxafb_info *fbi = (struct pxafb_info *)info;
569 int i;
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 switch (blank) {
572 case FB_BLANK_POWERDOWN:
573 case FB_BLANK_VSYNC_SUSPEND:
574 case FB_BLANK_HSYNC_SUSPEND:
575 case FB_BLANK_NORMAL:
576 if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||
577 fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)
578 for (i = 0; i < fbi->palette_size; i++)
579 pxafb_setpalettereg(i, 0, 0, 0, 0, info);
580
581 pxafb_schedule_work(fbi, C_DISABLE);
eric miaob0086ef2008-04-30 00:52:19 -0700582 /* TODO if (pxafb_blank_helper) pxafb_blank_helper(blank); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 break;
584
585 case FB_BLANK_UNBLANK:
eric miaob0086ef2008-04-30 00:52:19 -0700586 /* TODO if (pxafb_blank_helper) pxafb_blank_helper(blank); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||
588 fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)
589 fb_set_cmap(&fbi->fb.cmap, info);
590 pxafb_schedule_work(fbi, C_ENABLE);
591 }
592 return 0;
593}
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595static struct fb_ops pxafb_ops = {
596 .owner = THIS_MODULE,
597 .fb_check_var = pxafb_check_var,
598 .fb_set_par = pxafb_set_par,
Eric Miao6e354842008-12-17 16:50:43 +0800599 .fb_pan_display = pxafb_pan_display,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 .fb_setcolreg = pxafb_setcolreg,
601 .fb_fillrect = cfb_fillrect,
602 .fb_copyarea = cfb_copyarea,
603 .fb_imageblit = cfb_imageblit,
604 .fb_blank = pxafb_blank,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605};
606
Eric Miao198fc102008-12-23 17:49:43 +0800607#ifdef CONFIG_FB_PXA_OVERLAY
608static void overlay1fb_setup(struct pxafb_layer *ofb)
609{
610 int size = ofb->fb.fix.line_length * ofb->fb.var.yres_virtual;
611 unsigned long start = ofb->video_mem_phys;
612 setup_frame_dma(ofb->fbi, DMA_OV1, PAL_NONE, start, size);
613}
614
615/* Depending on the enable status of overlay1/2, the DMA should be
616 * updated from FDADRx (when disabled) or FBRx (when enabled).
617 */
618static void overlay1fb_enable(struct pxafb_layer *ofb)
619{
620 int enabled = lcd_readl(ofb->fbi, OVL1C1) & OVLxC1_OEN;
621 uint32_t fdadr1 = ofb->fbi->fdadr[DMA_OV1] | (enabled ? 0x1 : 0);
622
623 lcd_writel(ofb->fbi, enabled ? FBR1 : FDADR1, fdadr1);
624 lcd_writel(ofb->fbi, OVL1C2, ofb->control[1]);
625 lcd_writel(ofb->fbi, OVL1C1, ofb->control[0] | OVLxC1_OEN);
626}
627
628static void overlay1fb_disable(struct pxafb_layer *ofb)
629{
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200630 uint32_t lccr5;
631
632 if (!(lcd_readl(ofb->fbi, OVL1C1) & OVLxC1_OEN))
633 return;
634
635 lccr5 = lcd_readl(ofb->fbi, LCCR5);
Eric Miao198fc102008-12-23 17:49:43 +0800636
637 lcd_writel(ofb->fbi, OVL1C1, ofb->control[0] & ~OVLxC1_OEN);
638
639 lcd_writel(ofb->fbi, LCSR1, LCSR1_BS(1));
640 lcd_writel(ofb->fbi, LCCR5, lccr5 & ~LCSR1_BS(1));
641 lcd_writel(ofb->fbi, FBR1, ofb->fbi->fdadr[DMA_OV1] | 0x3);
642
643 if (wait_for_completion_timeout(&ofb->branch_done, 1 * HZ) == 0)
644 pr_warning("%s: timeout disabling overlay1\n", __func__);
645
646 lcd_writel(ofb->fbi, LCCR5, lccr5);
647}
648
649static void overlay2fb_setup(struct pxafb_layer *ofb)
650{
651 int size, div = 1, pfor = NONSTD_TO_PFOR(ofb->fb.var.nonstd);
652 unsigned long start[3] = { ofb->video_mem_phys, 0, 0 };
653
654 if (pfor == OVERLAY_FORMAT_RGB || pfor == OVERLAY_FORMAT_YUV444_PACKED) {
655 size = ofb->fb.fix.line_length * ofb->fb.var.yres_virtual;
656 setup_frame_dma(ofb->fbi, DMA_OV2_Y, -1, start[0], size);
657 } else {
658 size = ofb->fb.var.xres_virtual * ofb->fb.var.yres_virtual;
659 switch (pfor) {
660 case OVERLAY_FORMAT_YUV444_PLANAR: div = 1; break;
661 case OVERLAY_FORMAT_YUV422_PLANAR: div = 2; break;
662 case OVERLAY_FORMAT_YUV420_PLANAR: div = 4; break;
663 }
664 start[1] = start[0] + size;
665 start[2] = start[1] + size / div;
666 setup_frame_dma(ofb->fbi, DMA_OV2_Y, -1, start[0], size);
667 setup_frame_dma(ofb->fbi, DMA_OV2_Cb, -1, start[1], size / div);
668 setup_frame_dma(ofb->fbi, DMA_OV2_Cr, -1, start[2], size / div);
669 }
670}
671
672static void overlay2fb_enable(struct pxafb_layer *ofb)
673{
674 int pfor = NONSTD_TO_PFOR(ofb->fb.var.nonstd);
675 int enabled = lcd_readl(ofb->fbi, OVL2C1) & OVLxC1_OEN;
676 uint32_t fdadr2 = ofb->fbi->fdadr[DMA_OV2_Y] | (enabled ? 0x1 : 0);
677 uint32_t fdadr3 = ofb->fbi->fdadr[DMA_OV2_Cb] | (enabled ? 0x1 : 0);
678 uint32_t fdadr4 = ofb->fbi->fdadr[DMA_OV2_Cr] | (enabled ? 0x1 : 0);
679
680 if (pfor == OVERLAY_FORMAT_RGB || pfor == OVERLAY_FORMAT_YUV444_PACKED)
681 lcd_writel(ofb->fbi, enabled ? FBR2 : FDADR2, fdadr2);
682 else {
683 lcd_writel(ofb->fbi, enabled ? FBR2 : FDADR2, fdadr2);
684 lcd_writel(ofb->fbi, enabled ? FBR3 : FDADR3, fdadr3);
685 lcd_writel(ofb->fbi, enabled ? FBR4 : FDADR4, fdadr4);
686 }
687 lcd_writel(ofb->fbi, OVL2C2, ofb->control[1]);
688 lcd_writel(ofb->fbi, OVL2C1, ofb->control[0] | OVLxC1_OEN);
689}
690
691static void overlay2fb_disable(struct pxafb_layer *ofb)
692{
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200693 uint32_t lccr5;
694
695 if (!(lcd_readl(ofb->fbi, OVL2C1) & OVLxC1_OEN))
696 return;
697
698 lccr5 = lcd_readl(ofb->fbi, LCCR5);
Eric Miao198fc102008-12-23 17:49:43 +0800699
700 lcd_writel(ofb->fbi, OVL2C1, ofb->control[0] & ~OVLxC1_OEN);
701
702 lcd_writel(ofb->fbi, LCSR1, LCSR1_BS(2));
703 lcd_writel(ofb->fbi, LCCR5, lccr5 & ~LCSR1_BS(2));
704 lcd_writel(ofb->fbi, FBR2, ofb->fbi->fdadr[DMA_OV2_Y] | 0x3);
705 lcd_writel(ofb->fbi, FBR3, ofb->fbi->fdadr[DMA_OV2_Cb] | 0x3);
706 lcd_writel(ofb->fbi, FBR4, ofb->fbi->fdadr[DMA_OV2_Cr] | 0x3);
707
708 if (wait_for_completion_timeout(&ofb->branch_done, 1 * HZ) == 0)
709 pr_warning("%s: timeout disabling overlay2\n", __func__);
710}
711
712static struct pxafb_layer_ops ofb_ops[] = {
713 [0] = {
714 .enable = overlay1fb_enable,
715 .disable = overlay1fb_disable,
716 .setup = overlay1fb_setup,
717 },
718 [1] = {
719 .enable = overlay2fb_enable,
720 .disable = overlay2fb_disable,
721 .setup = overlay2fb_setup,
722 },
723};
724
725static int overlayfb_open(struct fb_info *info, int user)
726{
727 struct pxafb_layer *ofb = (struct pxafb_layer *)info;
728
729 /* no support for framebuffer console on overlay */
730 if (user == 0)
731 return -ENODEV;
732
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200733 if (ofb->usage++ == 0)
734 /* unblank the base framebuffer */
735 fb_blank(&ofb->fbi->fb, FB_BLANK_UNBLANK);
Eric Miao198fc102008-12-23 17:49:43 +0800736
Eric Miao198fc102008-12-23 17:49:43 +0800737 return 0;
738}
739
740static int overlayfb_release(struct fb_info *info, int user)
741{
742 struct pxafb_layer *ofb = (struct pxafb_layer*) info;
743
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200744 if (ofb->usage == 1) {
745 ofb->ops->disable(ofb);
746 ofb->fb.var.height = -1;
747 ofb->fb.var.width = -1;
748 ofb->fb.var.xres = ofb->fb.var.xres_virtual = 0;
749 ofb->fb.var.yres = ofb->fb.var.yres_virtual = 0;
Eric Miao198fc102008-12-23 17:49:43 +0800750
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200751 ofb->usage--;
752 }
Eric Miao198fc102008-12-23 17:49:43 +0800753 return 0;
754}
755
756static int overlayfb_check_var(struct fb_var_screeninfo *var,
757 struct fb_info *info)
758{
759 struct pxafb_layer *ofb = (struct pxafb_layer *)info;
760 struct fb_var_screeninfo *base_var = &ofb->fbi->fb.var;
761 int xpos, ypos, pfor, bpp;
762
763 xpos = NONSTD_TO_XPOS(var->nonstd);
Vasily Khoruzhickdcf8eee2011-03-11 11:20:49 +0200764 ypos = NONSTD_TO_YPOS(var->nonstd);
Eric Miao198fc102008-12-23 17:49:43 +0800765 pfor = NONSTD_TO_PFOR(var->nonstd);
766
767 bpp = pxafb_var_to_bpp(var);
768 if (bpp < 0)
769 return -EINVAL;
770
771 /* no support for YUV format on overlay1 */
772 if (ofb->id == OVERLAY1 && pfor != 0)
773 return -EINVAL;
774
775 /* for YUV packed formats, bpp = 'minimum bpp of YUV components' */
776 switch (pfor) {
777 case OVERLAY_FORMAT_RGB:
778 bpp = pxafb_var_to_bpp(var);
779 if (bpp < 0)
780 return -EINVAL;
781
782 pxafb_set_pixfmt(var, var_to_depth(var));
783 break;
784 case OVERLAY_FORMAT_YUV444_PACKED: bpp = 24; break;
785 case OVERLAY_FORMAT_YUV444_PLANAR: bpp = 8; break;
786 case OVERLAY_FORMAT_YUV422_PLANAR: bpp = 4; break;
787 case OVERLAY_FORMAT_YUV420_PLANAR: bpp = 2; break;
788 default:
789 return -EINVAL;
790 }
791
792 /* each line must start at a 32-bit word boundary */
793 if ((xpos * bpp) % 32)
794 return -EINVAL;
795
796 /* xres must align on 32-bit word boundary */
797 var->xres = roundup(var->xres * bpp, 32) / bpp;
798
799 if ((xpos + var->xres > base_var->xres) ||
800 (ypos + var->yres > base_var->yres))
801 return -EINVAL;
802
803 var->xres_virtual = var->xres;
804 var->yres_virtual = max(var->yres, var->yres_virtual);
805 return 0;
806}
807
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200808static int overlayfb_check_video_memory(struct pxafb_layer *ofb)
Eric Miao198fc102008-12-23 17:49:43 +0800809{
810 struct fb_var_screeninfo *var = &ofb->fb.var;
811 int pfor = NONSTD_TO_PFOR(var->nonstd);
812 int size, bpp = 0;
813
814 switch (pfor) {
815 case OVERLAY_FORMAT_RGB: bpp = var->bits_per_pixel; break;
816 case OVERLAY_FORMAT_YUV444_PACKED: bpp = 24; break;
817 case OVERLAY_FORMAT_YUV444_PLANAR: bpp = 24; break;
818 case OVERLAY_FORMAT_YUV422_PLANAR: bpp = 16; break;
819 case OVERLAY_FORMAT_YUV420_PLANAR: bpp = 12; break;
820 }
821
822 ofb->fb.fix.line_length = var->xres_virtual * bpp / 8;
823
824 size = PAGE_ALIGN(ofb->fb.fix.line_length * var->yres_virtual);
825
Eric Miao198fc102008-12-23 17:49:43 +0800826 if (ofb->video_mem) {
827 if (ofb->video_mem_size >= size)
828 return 0;
Eric Miao198fc102008-12-23 17:49:43 +0800829 }
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200830 return -EINVAL;
Eric Miao198fc102008-12-23 17:49:43 +0800831}
832
833static int overlayfb_set_par(struct fb_info *info)
834{
835 struct pxafb_layer *ofb = (struct pxafb_layer *)info;
836 struct fb_var_screeninfo *var = &info->var;
837 int xpos, ypos, pfor, bpp, ret;
838
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200839 ret = overlayfb_check_video_memory(ofb);
Eric Miao198fc102008-12-23 17:49:43 +0800840 if (ret)
841 return ret;
842
843 bpp = pxafb_var_to_bpp(var);
844 xpos = NONSTD_TO_XPOS(var->nonstd);
Vasily Khoruzhickdcf8eee2011-03-11 11:20:49 +0200845 ypos = NONSTD_TO_YPOS(var->nonstd);
Eric Miao198fc102008-12-23 17:49:43 +0800846 pfor = NONSTD_TO_PFOR(var->nonstd);
847
848 ofb->control[0] = OVLxC1_PPL(var->xres) | OVLxC1_LPO(var->yres) |
849 OVLxC1_BPP(bpp);
850 ofb->control[1] = OVLxC2_XPOS(xpos) | OVLxC2_YPOS(ypos);
851
852 if (ofb->id == OVERLAY2)
853 ofb->control[1] |= OVL2C2_PFOR(pfor);
854
855 ofb->ops->setup(ofb);
856 ofb->ops->enable(ofb);
857 return 0;
858}
859
860static struct fb_ops overlay_fb_ops = {
861 .owner = THIS_MODULE,
862 .fb_open = overlayfb_open,
863 .fb_release = overlayfb_release,
864 .fb_check_var = overlayfb_check_var,
865 .fb_set_par = overlayfb_set_par,
866};
867
868static void __devinit init_pxafb_overlay(struct pxafb_info *fbi,
869 struct pxafb_layer *ofb, int id)
870{
871 sprintf(ofb->fb.fix.id, "overlay%d", id + 1);
872
873 ofb->fb.fix.type = FB_TYPE_PACKED_PIXELS;
874 ofb->fb.fix.xpanstep = 0;
875 ofb->fb.fix.ypanstep = 1;
876
877 ofb->fb.var.activate = FB_ACTIVATE_NOW;
878 ofb->fb.var.height = -1;
879 ofb->fb.var.width = -1;
880 ofb->fb.var.vmode = FB_VMODE_NONINTERLACED;
881
882 ofb->fb.fbops = &overlay_fb_ops;
883 ofb->fb.flags = FBINFO_FLAG_DEFAULT;
884 ofb->fb.node = -1;
885 ofb->fb.pseudo_palette = NULL;
886
887 ofb->id = id;
888 ofb->ops = &ofb_ops[id];
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200889 ofb->usage = 0;
Eric Miao198fc102008-12-23 17:49:43 +0800890 ofb->fbi = fbi;
891 init_completion(&ofb->branch_done);
892}
893
Eric Miao782385a2009-03-19 15:24:30 +0800894static inline int pxafb_overlay_supported(void)
895{
896 if (cpu_is_pxa27x() || cpu_is_pxa3xx())
897 return 1;
898
899 return 0;
900}
901
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200902static int __devinit pxafb_overlay_map_video_memory(struct pxafb_info *pxafb,
903 struct pxafb_layer *ofb)
904{
905 /* We assume that user will use at most video_mem_size for overlay fb,
906 * anyway, it's useless to use 16bpp main plane and 24bpp overlay
907 */
908 ofb->video_mem = alloc_pages_exact(PAGE_ALIGN(pxafb->video_mem_size),
909 GFP_KERNEL | __GFP_ZERO);
910 if (ofb->video_mem == NULL)
911 return -ENOMEM;
912
913 ofb->video_mem_phys = virt_to_phys(ofb->video_mem);
914 ofb->video_mem_size = PAGE_ALIGN(pxafb->video_mem_size);
915
916 mutex_lock(&ofb->fb.mm_lock);
917 ofb->fb.fix.smem_start = ofb->video_mem_phys;
918 ofb->fb.fix.smem_len = pxafb->video_mem_size;
919 mutex_unlock(&ofb->fb.mm_lock);
920
921 ofb->fb.screen_base = ofb->video_mem;
922
923 return 0;
924}
925
926static void __devinit pxafb_overlay_init(struct pxafb_info *fbi)
Eric Miao198fc102008-12-23 17:49:43 +0800927{
928 int i, ret;
929
Eric Miao782385a2009-03-19 15:24:30 +0800930 if (!pxafb_overlay_supported())
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200931 return;
Eric Miao782385a2009-03-19 15:24:30 +0800932
Eric Miao198fc102008-12-23 17:49:43 +0800933 for (i = 0; i < 2; i++) {
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200934 struct pxafb_layer *ofb = &fbi->overlay[i];
935 init_pxafb_overlay(fbi, ofb, i);
936 ret = register_framebuffer(&ofb->fb);
Eric Miao198fc102008-12-23 17:49:43 +0800937 if (ret) {
938 dev_err(fbi->dev, "failed to register overlay %d\n", i);
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200939 continue;
Eric Miao198fc102008-12-23 17:49:43 +0800940 }
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200941 ret = pxafb_overlay_map_video_memory(fbi, ofb);
942 if (ret) {
943 dev_err(fbi->dev,
944 "failed to map video memory for overlay %d\n",
945 i);
946 unregister_framebuffer(&ofb->fb);
947 continue;
948 }
949 ofb->registered = 1;
Eric Miao198fc102008-12-23 17:49:43 +0800950 }
951
952 /* mask all IU/BS/EOF/SOF interrupts */
953 lcd_writel(fbi, LCCR5, ~0);
954
Eric Miao198fc102008-12-23 17:49:43 +0800955 pr_info("PXA Overlay driver loaded successfully!\n");
Eric Miao198fc102008-12-23 17:49:43 +0800956}
957
958static void __devexit pxafb_overlay_exit(struct pxafb_info *fbi)
959{
960 int i;
961
Eric Miao782385a2009-03-19 15:24:30 +0800962 if (!pxafb_overlay_supported())
963 return;
964
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +0200965 for (i = 0; i < 2; i++) {
966 struct pxafb_layer *ofb = &fbi->overlay[i];
967 if (ofb->registered) {
968 if (ofb->video_mem)
969 free_pages_exact(ofb->video_mem,
970 ofb->video_mem_size);
971 unregister_framebuffer(&ofb->fb);
972 }
973 }
Eric Miao198fc102008-12-23 17:49:43 +0800974}
975#else
976static inline void pxafb_overlay_init(struct pxafb_info *fbi) {}
977static inline void pxafb_overlay_exit(struct pxafb_info *fbi) {}
978#endif /* CONFIG_FB_PXA_OVERLAY */
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980/*
981 * Calculate the PCD value from the clock rate (in picoseconds).
982 * We take account of the PPCR clock setting.
983 * From PXA Developer's Manual:
984 *
985 * PixelClock = LCLK
986 * -------------
987 * 2 ( PCD + 1 )
988 *
989 * PCD = LCLK
990 * ------------- - 1
991 * 2(PixelClock)
992 *
993 * Where:
994 * LCLK = LCD/Memory Clock
995 * PCD = LCCR3[7:0]
996 *
997 * PixelClock here is in Hz while the pixclock argument given is the
998 * period in picoseconds. Hence PixelClock = 1 / ( pixclock * 10^-12 )
999 *
1000 * The function get_lclk_frequency_10khz returns LCLK in units of
1001 * 10khz. Calling the result of this function lclk gives us the
1002 * following
1003 *
1004 * PCD = (lclk * 10^4 ) * ( pixclock * 10^-12 )
1005 * -------------------------------------- - 1
1006 * 2
1007 *
1008 * Factoring the 10^4 and 10^-12 out gives 10^-8 == 1 / 100000000 as used below.
1009 */
eric miaob0086ef2008-04-30 00:52:19 -07001010static inline unsigned int get_pcd(struct pxafb_info *fbi,
1011 unsigned int pixclock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
1013 unsigned long long pcd;
1014
1015 /* FIXME: Need to take into account Double Pixel Clock mode
Russell King72e35242007-08-20 10:18:42 +01001016 * (DPC) bit? or perhaps set it based on the various clock
1017 * speeds */
1018 pcd = (unsigned long long)(clk_get_rate(fbi->clk) / 10000);
1019 pcd *= pixclock;
Nicolas Pitrebf1b8ab2005-06-23 21:56:45 +01001020 do_div(pcd, 100000000 * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 /* no need for this, since we should subtract 1 anyway. they cancel */
1022 /* pcd += 1; */ /* make up for integer math truncations */
1023 return (unsigned int)pcd;
1024}
1025
1026/*
Richard Purdieba44cd22005-09-09 13:10:03 -07001027 * Some touchscreens need hsync information from the video driver to
Russell King72e35242007-08-20 10:18:42 +01001028 * function correctly. We export it here. Note that 'hsync_time' and
1029 * the value returned from pxafb_get_hsync_time() is the *reciprocal*
1030 * of the hsync period in seconds.
Richard Purdieba44cd22005-09-09 13:10:03 -07001031 */
1032static inline void set_hsync_time(struct pxafb_info *fbi, unsigned int pcd)
1033{
Russell King72e35242007-08-20 10:18:42 +01001034 unsigned long htime;
Richard Purdieba44cd22005-09-09 13:10:03 -07001035
1036 if ((pcd == 0) || (fbi->fb.var.hsync_len == 0)) {
eric miaob0086ef2008-04-30 00:52:19 -07001037 fbi->hsync_time = 0;
Richard Purdieba44cd22005-09-09 13:10:03 -07001038 return;
1039 }
1040
Russell King72e35242007-08-20 10:18:42 +01001041 htime = clk_get_rate(fbi->clk) / (pcd * fbi->fb.var.hsync_len);
1042
Richard Purdieba44cd22005-09-09 13:10:03 -07001043 fbi->hsync_time = htime;
1044}
1045
1046unsigned long pxafb_get_hsync_time(struct device *dev)
1047{
1048 struct pxafb_info *fbi = dev_get_drvdata(dev);
1049
1050 /* If display is blanked/suspended, hsync isn't active */
1051 if (!fbi || (fbi->state != C_ENABLE))
1052 return 0;
1053
1054 return fbi->hsync_time;
1055}
1056EXPORT_SYMBOL(pxafb_get_hsync_time);
1057
eric miao2c42dd82008-04-30 00:52:21 -07001058static int setup_frame_dma(struct pxafb_info *fbi, int dma, int pal,
Eric Miao198fc102008-12-23 17:49:43 +08001059 unsigned long start, size_t size)
eric miao2c42dd82008-04-30 00:52:21 -07001060{
1061 struct pxafb_dma_descriptor *dma_desc, *pal_desc;
1062 unsigned int dma_desc_off, pal_desc_off;
1063
Eric Miao6e354842008-12-17 16:50:43 +08001064 if (dma < 0 || dma >= DMA_MAX * 2)
eric miao2c42dd82008-04-30 00:52:21 -07001065 return -EINVAL;
1066
1067 dma_desc = &fbi->dma_buff->dma_desc[dma];
1068 dma_desc_off = offsetof(struct pxafb_dma_buff, dma_desc[dma]);
1069
Eric Miao198fc102008-12-23 17:49:43 +08001070 dma_desc->fsadr = start;
eric miao2c42dd82008-04-30 00:52:21 -07001071 dma_desc->fidr = 0;
1072 dma_desc->ldcmd = size;
1073
Eric Miao6e354842008-12-17 16:50:43 +08001074 if (pal < 0 || pal >= PAL_MAX * 2) {
eric miao2c42dd82008-04-30 00:52:21 -07001075 dma_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
1076 fbi->fdadr[dma] = fbi->dma_buff_phys + dma_desc_off;
1077 } else {
Jürgen Schindele62cfcf42008-06-11 19:56:06 +01001078 pal_desc = &fbi->dma_buff->pal_desc[pal];
1079 pal_desc_off = offsetof(struct pxafb_dma_buff, pal_desc[pal]);
eric miao2c42dd82008-04-30 00:52:21 -07001080
1081 pal_desc->fsadr = fbi->dma_buff_phys + pal * PALETTE_SIZE;
1082 pal_desc->fidr = 0;
1083
1084 if ((fbi->lccr4 & LCCR4_PAL_FOR_MASK) == LCCR4_PAL_FOR_0)
1085 pal_desc->ldcmd = fbi->palette_size * sizeof(u16);
1086 else
1087 pal_desc->ldcmd = fbi->palette_size * sizeof(u32);
1088
1089 pal_desc->ldcmd |= LDCMD_PAL;
1090
1091 /* flip back and forth between palette and frame buffer */
1092 pal_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
1093 dma_desc->fdadr = fbi->dma_buff_phys + pal_desc_off;
1094 fbi->fdadr[dma] = fbi->dma_buff_phys + dma_desc_off;
1095 }
1096
1097 return 0;
1098}
1099
Sven Neumann448ac472009-10-22 08:34:34 +02001100static void setup_base_frame(struct pxafb_info *fbi,
1101 struct fb_var_screeninfo *var,
1102 int branch)
Eric Miao6e354842008-12-17 16:50:43 +08001103{
Eric Miao6e354842008-12-17 16:50:43 +08001104 struct fb_fix_screeninfo *fix = &fbi->fb.fix;
Eric Miao198fc102008-12-23 17:49:43 +08001105 int nbytes, dma, pal, bpp = var->bits_per_pixel;
1106 unsigned long offset;
Eric Miao6e354842008-12-17 16:50:43 +08001107
1108 dma = DMA_BASE + (branch ? DMA_MAX : 0);
1109 pal = (bpp >= 16) ? PAL_NONE : PAL_BASE + (branch ? PAL_MAX : 0);
1110
1111 nbytes = fix->line_length * var->yres;
Eric Miao198fc102008-12-23 17:49:43 +08001112 offset = fix->line_length * var->yoffset + fbi->video_mem_phys;
Eric Miao6e354842008-12-17 16:50:43 +08001113
1114 if (fbi->lccr0 & LCCR0_SDS) {
1115 nbytes = nbytes / 2;
1116 setup_frame_dma(fbi, dma + 1, PAL_NONE, offset + nbytes, nbytes);
1117 }
1118
1119 setup_frame_dma(fbi, dma, pal, offset, nbytes);
1120}
1121
Eric Miao3c42a442008-04-30 00:52:26 -07001122#ifdef CONFIG_FB_PXA_SMARTPANEL
1123static int setup_smart_dma(struct pxafb_info *fbi)
1124{
1125 struct pxafb_dma_descriptor *dma_desc;
1126 unsigned long dma_desc_off, cmd_buff_off;
1127
1128 dma_desc = &fbi->dma_buff->dma_desc[DMA_CMD];
1129 dma_desc_off = offsetof(struct pxafb_dma_buff, dma_desc[DMA_CMD]);
1130 cmd_buff_off = offsetof(struct pxafb_dma_buff, cmd_buff);
1131
1132 dma_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
1133 dma_desc->fsadr = fbi->dma_buff_phys + cmd_buff_off;
1134 dma_desc->fidr = 0;
1135 dma_desc->ldcmd = fbi->n_smart_cmds * sizeof(uint16_t);
1136
1137 fbi->fdadr[DMA_CMD] = dma_desc->fdadr;
1138 return 0;
1139}
1140
1141int pxafb_smart_flush(struct fb_info *info)
1142{
1143 struct pxafb_info *fbi = container_of(info, struct pxafb_info, fb);
1144 uint32_t prsr;
1145 int ret = 0;
1146
1147 /* disable controller until all registers are set up */
1148 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
1149
1150 /* 1. make it an even number of commands to align on 32-bit boundary
1151 * 2. add the interrupt command to the end of the chain so we can
1152 * keep track of the end of the transfer
1153 */
1154
1155 while (fbi->n_smart_cmds & 1)
1156 fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_NOOP;
1157
1158 fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_INTERRUPT;
1159 fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_WAIT_FOR_VSYNC;
1160 setup_smart_dma(fbi);
1161
1162 /* continue to execute next command */
1163 prsr = lcd_readl(fbi, PRSR) | PRSR_ST_OK | PRSR_CON_NT;
1164 lcd_writel(fbi, PRSR, prsr);
1165
1166 /* stop the processor in case it executed "wait for sync" cmd */
1167 lcd_writel(fbi, CMDCR, 0x0001);
1168
1169 /* don't send interrupts for fifo underruns on channel 6 */
1170 lcd_writel(fbi, LCCR5, LCCR5_IUM(6));
1171
1172 lcd_writel(fbi, LCCR1, fbi->reg_lccr1);
1173 lcd_writel(fbi, LCCR2, fbi->reg_lccr2);
1174 lcd_writel(fbi, LCCR3, fbi->reg_lccr3);
Eric Miaoa0427502008-12-18 22:10:00 +08001175 lcd_writel(fbi, LCCR4, fbi->reg_lccr4);
Eric Miao3c42a442008-04-30 00:52:26 -07001176 lcd_writel(fbi, FDADR0, fbi->fdadr[0]);
1177 lcd_writel(fbi, FDADR6, fbi->fdadr[6]);
1178
1179 /* begin sending */
1180 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 | LCCR0_ENB);
1181
1182 if (wait_for_completion_timeout(&fbi->command_done, HZ/2) == 0) {
1183 pr_warning("%s: timeout waiting for command done\n",
1184 __func__);
1185 ret = -ETIMEDOUT;
1186 }
1187
1188 /* quick disable */
1189 prsr = lcd_readl(fbi, PRSR) & ~(PRSR_ST_OK | PRSR_CON_NT);
1190 lcd_writel(fbi, PRSR, prsr);
1191 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
1192 lcd_writel(fbi, FDADR6, 0);
1193 fbi->n_smart_cmds = 0;
1194 return ret;
1195}
1196
1197int pxafb_smart_queue(struct fb_info *info, uint16_t *cmds, int n_cmds)
1198{
1199 int i;
1200 struct pxafb_info *fbi = container_of(info, struct pxafb_info, fb);
1201
Eric Miao69bdea72008-12-08 18:46:00 +08001202 for (i = 0; i < n_cmds; i++, cmds++) {
1203 /* if it is a software delay, flush and delay */
1204 if ((*cmds & 0xff00) == SMART_CMD_DELAY) {
1205 pxafb_smart_flush(info);
1206 mdelay(*cmds & 0xff);
1207 continue;
1208 }
1209
1210 /* leave 2 commands for INTERRUPT and WAIT_FOR_SYNC */
Eric Miao3c42a442008-04-30 00:52:26 -07001211 if (fbi->n_smart_cmds == CMD_BUFF_SIZE - 8)
1212 pxafb_smart_flush(info);
1213
Eric Miao69bdea72008-12-08 18:46:00 +08001214 fbi->smart_cmds[fbi->n_smart_cmds++] = *cmds;
Eric Miao3c42a442008-04-30 00:52:26 -07001215 }
1216
1217 return 0;
1218}
1219
1220static unsigned int __smart_timing(unsigned time_ns, unsigned long lcd_clk)
1221{
1222 unsigned int t = (time_ns * (lcd_clk / 1000000) / 1000);
1223 return (t == 0) ? 1 : t;
1224}
1225
1226static void setup_smart_timing(struct pxafb_info *fbi,
1227 struct fb_var_screeninfo *var)
1228{
1229 struct pxafb_mach_info *inf = fbi->dev->platform_data;
1230 struct pxafb_mode_info *mode = &inf->modes[0];
1231 unsigned long lclk = clk_get_rate(fbi->clk);
1232 unsigned t1, t2, t3, t4;
1233
1234 t1 = max(mode->a0csrd_set_hld, mode->a0cswr_set_hld);
1235 t2 = max(mode->rd_pulse_width, mode->wr_pulse_width);
1236 t3 = mode->op_hold_time;
1237 t4 = mode->cmd_inh_time;
1238
1239 fbi->reg_lccr1 =
1240 LCCR1_DisWdth(var->xres) |
1241 LCCR1_BegLnDel(__smart_timing(t1, lclk)) |
1242 LCCR1_EndLnDel(__smart_timing(t2, lclk)) |
1243 LCCR1_HorSnchWdth(__smart_timing(t3, lclk));
1244
1245 fbi->reg_lccr2 = LCCR2_DisHght(var->yres);
Eric Miaoc1f99c22008-12-08 18:35:03 +08001246 fbi->reg_lccr3 = fbi->lccr3 | LCCR3_PixClkDiv(__smart_timing(t4, lclk));
1247 fbi->reg_lccr3 |= (var->sync & FB_SYNC_HOR_HIGH_ACT) ? LCCR3_HSP : 0;
1248 fbi->reg_lccr3 |= (var->sync & FB_SYNC_VERT_HIGH_ACT) ? LCCR3_VSP : 0;
Eric Miao3c42a442008-04-30 00:52:26 -07001249
1250 /* FIXME: make this configurable */
1251 fbi->reg_cmdcr = 1;
1252}
1253
1254static int pxafb_smart_thread(void *arg)
1255{
Eric Miao7f1133c2008-04-30 00:52:27 -07001256 struct pxafb_info *fbi = arg;
Eric Miaoda2c3f02009-12-26 16:25:18 +08001257 struct pxafb_mach_info *inf = fbi->dev->platform_data;
Eric Miao3c42a442008-04-30 00:52:26 -07001258
Eric Miaoda2c3f02009-12-26 16:25:18 +08001259 if (!inf->smart_update) {
Eric Miao3c42a442008-04-30 00:52:26 -07001260 pr_err("%s: not properly initialized, thread terminated\n",
1261 __func__);
1262 return -EINVAL;
1263 }
Julia Lawalld2a34c12009-12-15 16:46:26 -08001264 inf = fbi->dev->platform_data;
Eric Miao3c42a442008-04-30 00:52:26 -07001265
1266 pr_debug("%s(): task starting\n", __func__);
1267
1268 set_freezable();
1269 while (!kthread_should_stop()) {
1270
1271 if (try_to_freeze())
1272 continue;
1273
Eric Miao07f651c2008-12-08 18:51:01 +08001274 mutex_lock(&fbi->ctrlr_lock);
1275
Eric Miao3c42a442008-04-30 00:52:26 -07001276 if (fbi->state == C_ENABLE) {
1277 inf->smart_update(&fbi->fb);
1278 complete(&fbi->refresh_done);
1279 }
1280
Eric Miao07f651c2008-12-08 18:51:01 +08001281 mutex_unlock(&fbi->ctrlr_lock);
1282
Eric Miao3c42a442008-04-30 00:52:26 -07001283 set_current_state(TASK_INTERRUPTIBLE);
1284 schedule_timeout(30 * HZ / 1000);
1285 }
1286
1287 pr_debug("%s(): task ending\n", __func__);
1288 return 0;
1289}
1290
1291static int pxafb_smart_init(struct pxafb_info *fbi)
1292{
Eric Miao07df1c42008-12-04 11:14:11 +08001293 if (!(fbi->lccr0 & LCCR0_LCDT))
Eric Miao6cc4abe2008-11-11 21:47:07 +08001294 return 0;
1295
Eric Miao07df1c42008-12-04 11:14:11 +08001296 fbi->smart_cmds = (uint16_t *) fbi->dma_buff->cmd_buff;
1297 fbi->n_smart_cmds = 0;
1298
1299 init_completion(&fbi->command_done);
1300 init_completion(&fbi->refresh_done);
1301
Eric Miao3c42a442008-04-30 00:52:26 -07001302 fbi->smart_thread = kthread_run(pxafb_smart_thread, fbi,
1303 "lcd_refresh");
1304 if (IS_ERR(fbi->smart_thread)) {
Eric Miao07df1c42008-12-04 11:14:11 +08001305 pr_err("%s: unable to create kernel thread\n", __func__);
Eric Miao3c42a442008-04-30 00:52:26 -07001306 return PTR_ERR(fbi->smart_thread);
1307 }
Eric Miaoa5718a12008-11-11 21:50:39 +08001308
Eric Miao3c42a442008-04-30 00:52:26 -07001309 return 0;
1310}
1311#else
1312int pxafb_smart_queue(struct fb_info *info, uint16_t *cmds, int n_cmds)
1313{
1314 return 0;
1315}
1316
1317int pxafb_smart_flush(struct fb_info *info)
1318{
1319 return 0;
1320}
Eric Miao07df1c42008-12-04 11:14:11 +08001321
1322static inline int pxafb_smart_init(struct pxafb_info *fbi) { return 0; }
1323#endif /* CONFIG_FB_PXA_SMARTPANEL */
Eric Miao3c42a442008-04-30 00:52:26 -07001324
Eric Miao90eabbf2008-04-30 00:52:25 -07001325static void setup_parallel_timing(struct pxafb_info *fbi,
1326 struct fb_var_screeninfo *var)
1327{
1328 unsigned int lines_per_panel, pcd = get_pcd(fbi, var->pixclock);
1329
1330 fbi->reg_lccr1 =
1331 LCCR1_DisWdth(var->xres) +
1332 LCCR1_HorSnchWdth(var->hsync_len) +
1333 LCCR1_BegLnDel(var->left_margin) +
1334 LCCR1_EndLnDel(var->right_margin);
1335
1336 /*
1337 * If we have a dual scan LCD, we need to halve
1338 * the YRES parameter.
1339 */
1340 lines_per_panel = var->yres;
1341 if ((fbi->lccr0 & LCCR0_SDS) == LCCR0_Dual)
1342 lines_per_panel /= 2;
1343
1344 fbi->reg_lccr2 =
1345 LCCR2_DisHght(lines_per_panel) +
1346 LCCR2_VrtSnchWdth(var->vsync_len) +
1347 LCCR2_BegFrmDel(var->upper_margin) +
1348 LCCR2_EndFrmDel(var->lower_margin);
1349
1350 fbi->reg_lccr3 = fbi->lccr3 |
1351 (var->sync & FB_SYNC_HOR_HIGH_ACT ?
1352 LCCR3_HorSnchH : LCCR3_HorSnchL) |
1353 (var->sync & FB_SYNC_VERT_HIGH_ACT ?
1354 LCCR3_VrtSnchH : LCCR3_VrtSnchL);
1355
1356 if (pcd) {
1357 fbi->reg_lccr3 |= LCCR3_PixClkDiv(pcd);
1358 set_hsync_time(fbi, pcd);
1359 }
1360}
1361
Richard Purdieba44cd22005-09-09 13:10:03 -07001362/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 * pxafb_activate_var():
eric miaob0086ef2008-04-30 00:52:19 -07001364 * Configures LCD Controller based on entries in var parameter.
1365 * Settings are only written to the controller if changes were made.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 */
eric miaob0086ef2008-04-30 00:52:19 -07001367static int pxafb_activate_var(struct fb_var_screeninfo *var,
1368 struct pxafb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 u_long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 /* Update shadow copy atomically */
1373 local_irq_save(flags);
1374
Eric Miao3c42a442008-04-30 00:52:26 -07001375#ifdef CONFIG_FB_PXA_SMARTPANEL
1376 if (fbi->lccr0 & LCCR0_LCDT)
1377 setup_smart_timing(fbi, var);
1378 else
1379#endif
1380 setup_parallel_timing(fbi, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Sven Neumann448ac472009-10-22 08:34:34 +02001382 setup_base_frame(fbi, var, 0);
Eric Miao6e354842008-12-17 16:50:43 +08001383
Eric Miao90eabbf2008-04-30 00:52:25 -07001384 fbi->reg_lccr0 = fbi->lccr0 |
1385 (LCCR0_LDM | LCCR0_SFM | LCCR0_IUM | LCCR0_EFM |
1386 LCCR0_QDM | LCCR0_BM | LCCR0_OUM);
1387
Eric Miao878f5782008-12-18 22:36:26 +08001388 fbi->reg_lccr3 |= pxafb_var_to_lccr3(var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Eric Miaoa7535ba2008-04-30 00:52:24 -07001390 fbi->reg_lccr4 = lcd_readl(fbi, LCCR4) & ~LCCR4_PAL_FOR_MASK;
Hans J. Koch9ffa7392007-10-16 01:28:41 -07001391 fbi->reg_lccr4 |= (fbi->lccr4 & LCCR4_PAL_FOR_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 local_irq_restore(flags);
1393
1394 /*
1395 * Only update the registers if the controller is enabled
1396 * and something has changed.
1397 */
Eric Miaoa7535ba2008-04-30 00:52:24 -07001398 if ((lcd_readl(fbi, LCCR0) != fbi->reg_lccr0) ||
1399 (lcd_readl(fbi, LCCR1) != fbi->reg_lccr1) ||
1400 (lcd_readl(fbi, LCCR2) != fbi->reg_lccr2) ||
1401 (lcd_readl(fbi, LCCR3) != fbi->reg_lccr3) ||
Eric Miaoa0427502008-12-18 22:10:00 +08001402 (lcd_readl(fbi, LCCR4) != fbi->reg_lccr4) ||
Eric Miaoa7535ba2008-04-30 00:52:24 -07001403 (lcd_readl(fbi, FDADR0) != fbi->fdadr[0]) ||
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +02001404 ((fbi->lccr0 & LCCR0_SDS) &&
1405 (lcd_readl(fbi, FDADR1) != fbi->fdadr[1])))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 pxafb_schedule_work(fbi, C_REENABLE);
1407
1408 return 0;
1409}
1410
1411/*
1412 * NOTE! The following functions are purely helpers for set_ctrlr_state.
1413 * Do not call them directly; set_ctrlr_state does the correct serialisation
1414 * to ensure that things happen in the right way 100% of time time.
1415 * -- rmk
1416 */
1417static inline void __pxafb_backlight_power(struct pxafb_info *fbi, int on)
1418{
Russell Kingca5da712005-09-29 09:44:54 +01001419 pr_debug("pxafb: backlight o%s\n", on ? "n" : "ff");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Eric Miaoa5718a12008-11-11 21:50:39 +08001421 if (fbi->backlight_power)
1422 fbi->backlight_power(on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423}
1424
1425static inline void __pxafb_lcd_power(struct pxafb_info *fbi, int on)
1426{
Russell Kingca5da712005-09-29 09:44:54 +01001427 pr_debug("pxafb: LCD power o%s\n", on ? "n" : "ff");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Eric Miaoa5718a12008-11-11 21:50:39 +08001429 if (fbi->lcd_power)
1430 fbi->lcd_power(on, &fbi->fb.var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433static void pxafb_enable_controller(struct pxafb_info *fbi)
1434{
Russell Kingca5da712005-09-29 09:44:54 +01001435 pr_debug("pxafb: Enabling LCD controller\n");
eric miao2c42dd82008-04-30 00:52:21 -07001436 pr_debug("fdadr0 0x%08x\n", (unsigned int) fbi->fdadr[0]);
1437 pr_debug("fdadr1 0x%08x\n", (unsigned int) fbi->fdadr[1]);
Russell Kingca5da712005-09-29 09:44:54 +01001438 pr_debug("reg_lccr0 0x%08x\n", (unsigned int) fbi->reg_lccr0);
1439 pr_debug("reg_lccr1 0x%08x\n", (unsigned int) fbi->reg_lccr1);
1440 pr_debug("reg_lccr2 0x%08x\n", (unsigned int) fbi->reg_lccr2);
1441 pr_debug("reg_lccr3 0x%08x\n", (unsigned int) fbi->reg_lccr3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Nicolas Pitre8d372262005-08-10 16:45:13 +01001443 /* enable LCD controller clock */
Russell King72e35242007-08-20 10:18:42 +01001444 clk_enable(fbi->clk);
Nicolas Pitre8d372262005-08-10 16:45:13 +01001445
Eric Miao3c42a442008-04-30 00:52:26 -07001446 if (fbi->lccr0 & LCCR0_LCDT)
1447 return;
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 /* Sequence from 11.7.10 */
Eric Miaoa0427502008-12-18 22:10:00 +08001450 lcd_writel(fbi, LCCR4, fbi->reg_lccr4);
Eric Miaoa7535ba2008-04-30 00:52:24 -07001451 lcd_writel(fbi, LCCR3, fbi->reg_lccr3);
1452 lcd_writel(fbi, LCCR2, fbi->reg_lccr2);
1453 lcd_writel(fbi, LCCR1, fbi->reg_lccr1);
1454 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Eric Miaoa7535ba2008-04-30 00:52:24 -07001456 lcd_writel(fbi, FDADR0, fbi->fdadr[0]);
Vasily Khoruzhick1b98d7c2011-03-11 11:20:47 +02001457 if (fbi->lccr0 & LCCR0_SDS)
1458 lcd_writel(fbi, FDADR1, fbi->fdadr[1]);
Eric Miaoa7535ba2008-04-30 00:52:24 -07001459 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 | LCCR0_ENB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460}
1461
1462static void pxafb_disable_controller(struct pxafb_info *fbi)
1463{
eric miaoce4fb7b2008-04-30 00:52:21 -07001464 uint32_t lccr0;
1465
Eric Miao3c42a442008-04-30 00:52:26 -07001466#ifdef CONFIG_FB_PXA_SMARTPANEL
1467 if (fbi->lccr0 & LCCR0_LCDT) {
1468 wait_for_completion_timeout(&fbi->refresh_done,
1469 200 * HZ / 1000);
1470 return;
1471 }
1472#endif
1473
eric miaoce4fb7b2008-04-30 00:52:21 -07001474 /* Clear LCD Status Register */
Eric Miaoa7535ba2008-04-30 00:52:24 -07001475 lcd_writel(fbi, LCSR, 0xffffffff);
eric miaoce4fb7b2008-04-30 00:52:21 -07001476
Eric Miaoa7535ba2008-04-30 00:52:24 -07001477 lccr0 = lcd_readl(fbi, LCCR0) & ~LCCR0_LDM;
1478 lcd_writel(fbi, LCCR0, lccr0);
1479 lcd_writel(fbi, LCCR0, lccr0 | LCCR0_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Eric Miao2ba162b2008-04-30 00:52:24 -07001481 wait_for_completion_timeout(&fbi->disable_done, 200 * HZ / 1000);
Nicolas Pitre8d372262005-08-10 16:45:13 +01001482
1483 /* disable LCD controller clock */
Russell King72e35242007-08-20 10:18:42 +01001484 clk_disable(fbi->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
1486
1487/*
1488 * pxafb_handle_irq: Handle 'LCD DONE' interrupts.
1489 */
David Howells7d12e782006-10-05 14:55:46 +01001490static irqreturn_t pxafb_handle_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
1492 struct pxafb_info *fbi = dev_id;
Denis V. Lunevff14ed52009-04-21 12:23:59 -07001493 unsigned int lccr0, lcsr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Eric Miao198fc102008-12-23 17:49:43 +08001495 lcsr = lcd_readl(fbi, LCSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 if (lcsr & LCSR_LDD) {
Eric Miaoa7535ba2008-04-30 00:52:24 -07001497 lccr0 = lcd_readl(fbi, LCCR0);
1498 lcd_writel(fbi, LCCR0, lccr0 | LCCR0_LDM);
Eric Miao2ba162b2008-04-30 00:52:24 -07001499 complete(&fbi->disable_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
1501
Eric Miao3c42a442008-04-30 00:52:26 -07001502#ifdef CONFIG_FB_PXA_SMARTPANEL
1503 if (lcsr & LCSR_CMD_INT)
1504 complete(&fbi->command_done);
1505#endif
Eric Miaoa7535ba2008-04-30 00:52:24 -07001506 lcd_writel(fbi, LCSR, lcsr);
Eric Miao198fc102008-12-23 17:49:43 +08001507
1508#ifdef CONFIG_FB_PXA_OVERLAY
Denis V. Lunevff14ed52009-04-21 12:23:59 -07001509 {
1510 unsigned int lcsr1 = lcd_readl(fbi, LCSR1);
1511 if (lcsr1 & LCSR1_BS(1))
1512 complete(&fbi->overlay[0].branch_done);
Eric Miao198fc102008-12-23 17:49:43 +08001513
Denis V. Lunevff14ed52009-04-21 12:23:59 -07001514 if (lcsr1 & LCSR1_BS(2))
1515 complete(&fbi->overlay[1].branch_done);
Eric Miao198fc102008-12-23 17:49:43 +08001516
Denis V. Lunevff14ed52009-04-21 12:23:59 -07001517 lcd_writel(fbi, LCSR1, lcsr1);
1518 }
Eric Miao198fc102008-12-23 17:49:43 +08001519#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return IRQ_HANDLED;
1521}
1522
1523/*
1524 * This function must be called from task context only, since it will
1525 * sleep when disabling the LCD controller, or if we get two contending
1526 * processes trying to alter state.
1527 */
1528static void set_ctrlr_state(struct pxafb_info *fbi, u_int state)
1529{
1530 u_int old_state;
1531
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -07001532 mutex_lock(&fbi->ctrlr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 old_state = fbi->state;
1535
1536 /*
1537 * Hack around fbcon initialisation.
1538 */
1539 if (old_state == C_STARTUP && state == C_REENABLE)
1540 state = C_ENABLE;
1541
1542 switch (state) {
1543 case C_DISABLE_CLKCHANGE:
1544 /*
1545 * Disable controller for clock change. If the
1546 * controller is already disabled, then do nothing.
1547 */
1548 if (old_state != C_DISABLE && old_state != C_DISABLE_PM) {
1549 fbi->state = state;
eric miaob0086ef2008-04-30 00:52:19 -07001550 /* TODO __pxafb_lcd_power(fbi, 0); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 pxafb_disable_controller(fbi);
1552 }
1553 break;
1554
1555 case C_DISABLE_PM:
1556 case C_DISABLE:
1557 /*
1558 * Disable controller
1559 */
1560 if (old_state != C_DISABLE) {
1561 fbi->state = state;
1562 __pxafb_backlight_power(fbi, 0);
1563 __pxafb_lcd_power(fbi, 0);
1564 if (old_state != C_DISABLE_CLKCHANGE)
1565 pxafb_disable_controller(fbi);
1566 }
1567 break;
1568
1569 case C_ENABLE_CLKCHANGE:
1570 /*
1571 * Enable the controller after clock change. Only
1572 * do this if we were disabled for the clock change.
1573 */
1574 if (old_state == C_DISABLE_CLKCHANGE) {
1575 fbi->state = C_ENABLE;
1576 pxafb_enable_controller(fbi);
eric miaob0086ef2008-04-30 00:52:19 -07001577 /* TODO __pxafb_lcd_power(fbi, 1); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 }
1579 break;
1580
1581 case C_REENABLE:
1582 /*
1583 * Re-enable the controller only if it was already
1584 * enabled. This is so we reprogram the control
1585 * registers.
1586 */
1587 if (old_state == C_ENABLE) {
Richard Purdied14b2722006-09-20 22:54:21 +01001588 __pxafb_lcd_power(fbi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 pxafb_disable_controller(fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 pxafb_enable_controller(fbi);
Richard Purdied14b2722006-09-20 22:54:21 +01001591 __pxafb_lcd_power(fbi, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 }
1593 break;
1594
1595 case C_ENABLE_PM:
1596 /*
1597 * Re-enable the controller after PM. This is not
1598 * perfect - think about the case where we were doing
1599 * a clock change, and we suspended half-way through.
1600 */
1601 if (old_state != C_DISABLE_PM)
1602 break;
1603 /* fall through */
1604
1605 case C_ENABLE:
1606 /*
1607 * Power up the LCD screen, enable controller, and
1608 * turn on the backlight.
1609 */
1610 if (old_state != C_ENABLE) {
1611 fbi->state = C_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 pxafb_enable_controller(fbi);
1613 __pxafb_lcd_power(fbi, 1);
1614 __pxafb_backlight_power(fbi, 1);
1615 }
1616 break;
1617 }
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -07001618 mutex_unlock(&fbi->ctrlr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
1621/*
1622 * Our LCD controller task (which is called when we blank or unblank)
1623 * via keventd.
1624 */
David Howells6d5aefb2006-12-05 19:36:26 +00001625static void pxafb_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
David Howells6d5aefb2006-12-05 19:36:26 +00001627 struct pxafb_info *fbi =
1628 container_of(work, struct pxafb_info, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 u_int state = xchg(&fbi->task_state, -1);
1630
1631 set_ctrlr_state(fbi, state);
1632}
1633
1634#ifdef CONFIG_CPU_FREQ
1635/*
1636 * CPU clock speed change handler. We need to adjust the LCD timing
1637 * parameters when the CPU clock is adjusted by the power management
1638 * subsystem.
1639 *
1640 * TODO: Determine why f->new != 10*get_lclk_frequency_10khz()
1641 */
1642static int
1643pxafb_freq_transition(struct notifier_block *nb, unsigned long val, void *data)
1644{
1645 struct pxafb_info *fbi = TO_INF(nb, freq_transition);
eric miaob0086ef2008-04-30 00:52:19 -07001646 /* TODO struct cpufreq_freqs *f = data; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 u_int pcd;
1648
1649 switch (val) {
1650 case CPUFREQ_PRECHANGE:
Marek Vasuta6d710f2011-03-22 13:09:50 +01001651#ifdef CONFIG_FB_PXA_OVERLAY
1652 if (!(fbi->overlay[0].usage || fbi->overlay[1].usage))
1653#endif
Vasily Khoruzhick27be9a92011-03-11 11:20:50 +02001654 set_ctrlr_state(fbi, C_DISABLE_CLKCHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 break;
1656
1657 case CPUFREQ_POSTCHANGE:
Russell King72e35242007-08-20 10:18:42 +01001658 pcd = get_pcd(fbi, fbi->fb.var.pixclock);
Richard Purdieba44cd22005-09-09 13:10:03 -07001659 set_hsync_time(fbi, pcd);
eric miaob0086ef2008-04-30 00:52:19 -07001660 fbi->reg_lccr3 = (fbi->reg_lccr3 & ~0xff) |
1661 LCCR3_PixClkDiv(pcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 set_ctrlr_state(fbi, C_ENABLE_CLKCHANGE);
1663 break;
1664 }
1665 return 0;
1666}
1667
1668static int
1669pxafb_freq_policy(struct notifier_block *nb, unsigned long val, void *data)
1670{
1671 struct pxafb_info *fbi = TO_INF(nb, freq_policy);
1672 struct fb_var_screeninfo *var = &fbi->fb.var;
1673 struct cpufreq_policy *policy = data;
1674
1675 switch (val) {
1676 case CPUFREQ_ADJUST:
1677 case CPUFREQ_INCOMPATIBLE:
Holger Schurigac2bf5b2008-02-11 16:52:30 +01001678 pr_debug("min dma period: %d ps, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 "new clock %d kHz\n", pxafb_display_dma_period(var),
1680 policy->max);
eric miaob0086ef2008-04-30 00:52:19 -07001681 /* TODO: fill in min/max values */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 }
1684 return 0;
1685}
1686#endif
1687
1688#ifdef CONFIG_PM
1689/*
1690 * Power management hooks. Note that we won't be called from IRQ context,
1691 * unlike the blank functions above, so we may sleep.
1692 */
Mike Rapoport4f3edfe2009-07-21 17:51:50 +03001693static int pxafb_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694{
Mike Rapoport4f3edfe2009-07-21 17:51:50 +03001695 struct pxafb_info *fbi = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Russell King9480e302005-10-28 09:52:56 -07001697 set_ctrlr_state(fbi, C_DISABLE_PM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 return 0;
1699}
1700
Mike Rapoport4f3edfe2009-07-21 17:51:50 +03001701static int pxafb_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
Mike Rapoport4f3edfe2009-07-21 17:51:50 +03001703 struct pxafb_info *fbi = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Russell King9480e302005-10-28 09:52:56 -07001705 set_ctrlr_state(fbi, C_ENABLE_PM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 return 0;
1707}
Mike Rapoport4f3edfe2009-07-21 17:51:50 +03001708
Alexey Dobriyan47145212009-12-14 18:00:08 -08001709static const struct dev_pm_ops pxafb_pm_ops = {
Mike Rapoport4f3edfe2009-07-21 17:51:50 +03001710 .suspend = pxafb_suspend,
1711 .resume = pxafb_resume,
1712};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713#endif
1714
Eric Miao77e19672008-12-16 11:54:34 +08001715static int __devinit pxafb_init_video_memory(struct pxafb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716{
Eric Miao77e19672008-12-16 11:54:34 +08001717 int size = PAGE_ALIGN(fbi->video_mem_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Eric Miao77e19672008-12-16 11:54:34 +08001719 fbi->video_mem = alloc_pages_exact(size, GFP_KERNEL | __GFP_ZERO);
1720 if (fbi->video_mem == NULL)
1721 return -ENOMEM;
Eric Miao3c42a442008-04-30 00:52:26 -07001722
Eric Miao77e19672008-12-16 11:54:34 +08001723 fbi->video_mem_phys = virt_to_phys(fbi->video_mem);
1724 fbi->video_mem_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Eric Miao77e19672008-12-16 11:54:34 +08001726 fbi->fb.fix.smem_start = fbi->video_mem_phys;
1727 fbi->fb.fix.smem_len = fbi->video_mem_size;
1728 fbi->fb.screen_base = fbi->video_mem;
Eric Miao3c42a442008-04-30 00:52:26 -07001729
Eric Miao77e19672008-12-16 11:54:34 +08001730 return fbi->video_mem ? 0 : -ENOMEM;
eric miao84f43c32008-04-30 00:52:22 -07001731}
1732
Guennadi Liakhovetskiebdf9822008-05-05 15:31:44 +01001733static void pxafb_decode_mach_info(struct pxafb_info *fbi,
1734 struct pxafb_mach_info *inf)
eric miao84f43c32008-04-30 00:52:22 -07001735{
1736 unsigned int lcd_conn = inf->lcd_conn;
Eric Miao77e19672008-12-16 11:54:34 +08001737 struct pxafb_mode_info *m;
1738 int i;
eric miao84f43c32008-04-30 00:52:22 -07001739
1740 fbi->cmap_inverse = inf->cmap_inverse;
1741 fbi->cmap_static = inf->cmap_static;
Eric Miaoa0427502008-12-18 22:10:00 +08001742 fbi->lccr4 = inf->lccr4;
eric miao84f43c32008-04-30 00:52:22 -07001743
Eric Miao1ec26db2008-11-11 21:45:57 +08001744 switch (lcd_conn & LCD_TYPE_MASK) {
eric miao84f43c32008-04-30 00:52:22 -07001745 case LCD_TYPE_MONO_STN:
1746 fbi->lccr0 = LCCR0_CMS;
1747 break;
1748 case LCD_TYPE_MONO_DSTN:
1749 fbi->lccr0 = LCCR0_CMS | LCCR0_SDS;
1750 break;
1751 case LCD_TYPE_COLOR_STN:
1752 fbi->lccr0 = 0;
1753 break;
1754 case LCD_TYPE_COLOR_DSTN:
1755 fbi->lccr0 = LCCR0_SDS;
1756 break;
1757 case LCD_TYPE_COLOR_TFT:
1758 fbi->lccr0 = LCCR0_PAS;
1759 break;
1760 case LCD_TYPE_SMART_PANEL:
1761 fbi->lccr0 = LCCR0_LCDT | LCCR0_PAS;
1762 break;
1763 default:
1764 /* fall back to backward compatibility way */
1765 fbi->lccr0 = inf->lccr0;
1766 fbi->lccr3 = inf->lccr3;
Guennadi Liakhovetskiebdf9822008-05-05 15:31:44 +01001767 goto decode_mode;
eric miao84f43c32008-04-30 00:52:22 -07001768 }
1769
1770 if (lcd_conn == LCD_MONO_STN_8BPP)
1771 fbi->lccr0 |= LCCR0_DPD;
1772
Eric Miao9a1ac7e2008-08-15 02:50:44 -04001773 fbi->lccr0 |= (lcd_conn & LCD_ALTERNATE_MAPPING) ? LCCR0_LDDALT : 0;
1774
eric miao84f43c32008-04-30 00:52:22 -07001775 fbi->lccr3 = LCCR3_Acb((inf->lcd_conn >> 10) & 0xff);
1776 fbi->lccr3 |= (lcd_conn & LCD_BIAS_ACTIVE_LOW) ? LCCR3_OEP : 0;
1777 fbi->lccr3 |= (lcd_conn & LCD_PCLK_EDGE_FALL) ? LCCR3_PCP : 0;
1778
Guennadi Liakhovetskiebdf9822008-05-05 15:31:44 +01001779decode_mode:
Eric Miao77e19672008-12-16 11:54:34 +08001780 pxafb_setmode(&fbi->fb.var, &inf->modes[0]);
1781
1782 /* decide video memory size as follows:
1783 * 1. default to mode of maximum resolution
1784 * 2. allow platform to override
1785 * 3. allow module parameter to override
1786 */
1787 for (i = 0, m = &inf->modes[0]; i < inf->num_modes; i++, m++)
1788 fbi->video_mem_size = max_t(size_t, fbi->video_mem_size,
1789 m->xres * m->yres * m->bpp / 8);
1790
1791 if (inf->video_mem_size > fbi->video_mem_size)
1792 fbi->video_mem_size = inf->video_mem_size;
1793
1794 if (video_mem_size > fbi->video_mem_size)
1795 fbi->video_mem_size = video_mem_size;
eric miao84f43c32008-04-30 00:52:22 -07001796}
1797
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001798static struct pxafb_info * __devinit pxafb_init_fbinfo(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799{
1800 struct pxafb_info *fbi;
1801 void *addr;
1802 struct pxafb_mach_info *inf = dev->platform_data;
1803
1804 /* Alloc the pxafb_info and pseudo_palette in one step */
1805 fbi = kmalloc(sizeof(struct pxafb_info) + sizeof(u32) * 16, GFP_KERNEL);
1806 if (!fbi)
1807 return NULL;
1808
1809 memset(fbi, 0, sizeof(struct pxafb_info));
1810 fbi->dev = dev;
1811
Russell Kinge0d8b132008-11-11 17:52:32 +00001812 fbi->clk = clk_get(dev, NULL);
Russell King72e35242007-08-20 10:18:42 +01001813 if (IS_ERR(fbi->clk)) {
1814 kfree(fbi);
1815 return NULL;
1816 }
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 strcpy(fbi->fb.fix.id, PXA_NAME);
1819
1820 fbi->fb.fix.type = FB_TYPE_PACKED_PIXELS;
1821 fbi->fb.fix.type_aux = 0;
1822 fbi->fb.fix.xpanstep = 0;
Eric Miao7e4b19c2008-12-17 14:56:54 +08001823 fbi->fb.fix.ypanstep = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 fbi->fb.fix.ywrapstep = 0;
1825 fbi->fb.fix.accel = FB_ACCEL_NONE;
1826
1827 fbi->fb.var.nonstd = 0;
1828 fbi->fb.var.activate = FB_ACTIVATE_NOW;
1829 fbi->fb.var.height = -1;
1830 fbi->fb.var.width = -1;
Eric Miao7e4b19c2008-12-17 14:56:54 +08001831 fbi->fb.var.accel_flags = FB_ACCELF_TEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 fbi->fb.var.vmode = FB_VMODE_NONINTERLACED;
1833
1834 fbi->fb.fbops = &pxafb_ops;
1835 fbi->fb.flags = FBINFO_DEFAULT;
1836 fbi->fb.node = -1;
1837
1838 addr = fbi;
1839 addr = addr + sizeof(struct pxafb_info);
1840 fbi->fb.pseudo_palette = addr;
1841
eric miaob0086ef2008-04-30 00:52:19 -07001842 fbi->state = C_STARTUP;
1843 fbi->task_state = (u_char)-1;
Richard Purdied14b2722006-09-20 22:54:21 +01001844
eric miao84f43c32008-04-30 00:52:22 -07001845 pxafb_decode_mach_info(fbi, inf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Vasily Khoruzhick7779cee2011-03-11 11:20:48 +02001847#ifdef CONFIG_FB_PXA_OVERLAY
1848 /* place overlay(s) on top of base */
1849 if (pxafb_overlay_supported())
1850 fbi->lccr0 |= LCCR0_OUC;
1851#endif
1852
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 init_waitqueue_head(&fbi->ctrlr_wait);
David Howells6d5aefb2006-12-05 19:36:26 +00001854 INIT_WORK(&fbi->task, pxafb_task);
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -07001855 mutex_init(&fbi->ctrlr_lock);
Eric Miao2ba162b2008-04-30 00:52:24 -07001856 init_completion(&fbi->disable_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858 return fbi;
1859}
1860
1861#ifdef CONFIG_FB_PXA_PARAMETERS
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001862static int __devinit parse_opt_mode(struct device *dev, const char *this_opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
1864 struct pxafb_mach_info *inf = dev->platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
eric miao817daf12008-04-30 00:52:18 -07001866 const char *name = this_opt+5;
1867 unsigned int namelen = strlen(name);
1868 int res_specified = 0, bpp_specified = 0;
1869 unsigned int xres = 0, yres = 0, bpp = 0;
1870 int yres_specified = 0;
1871 int i;
1872 for (i = namelen-1; i >= 0; i--) {
1873 switch (name[i]) {
1874 case '-':
1875 namelen = i;
1876 if (!bpp_specified && !yres_specified) {
1877 bpp = simple_strtoul(&name[i+1], NULL, 0);
1878 bpp_specified = 1;
1879 } else
1880 goto done;
1881 break;
1882 case 'x':
1883 if (!yres_specified) {
1884 yres = simple_strtoul(&name[i+1], NULL, 0);
1885 yres_specified = 1;
1886 } else
1887 goto done;
1888 break;
1889 case '0' ... '9':
1890 break;
1891 default:
1892 goto done;
1893 }
1894 }
1895 if (i < 0 && yres_specified) {
1896 xres = simple_strtoul(name, NULL, 0);
1897 res_specified = 1;
1898 }
1899done:
1900 if (res_specified) {
1901 dev_info(dev, "overriding resolution: %dx%d\n", xres, yres);
1902 inf->modes[0].xres = xres; inf->modes[0].yres = yres;
1903 }
1904 if (bpp_specified)
1905 switch (bpp) {
1906 case 1:
1907 case 2:
1908 case 4:
1909 case 8:
1910 case 16:
1911 inf->modes[0].bpp = bpp;
1912 dev_info(dev, "overriding bit depth: %d\n", bpp);
1913 break;
1914 default:
1915 dev_err(dev, "Depth %d is not valid\n", bpp);
1916 return -EINVAL;
1917 }
1918 return 0;
1919}
1920
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001921static int __devinit parse_opt(struct device *dev, char *this_opt)
eric miao817daf12008-04-30 00:52:18 -07001922{
1923 struct pxafb_mach_info *inf = dev->platform_data;
1924 struct pxafb_mode_info *mode = &inf->modes[0];
1925 char s[64];
1926
1927 s[0] = '\0';
1928
Eric Miao77e19672008-12-16 11:54:34 +08001929 if (!strncmp(this_opt, "vmem:", 5)) {
1930 video_mem_size = memparse(this_opt + 5, NULL);
1931 } else if (!strncmp(this_opt, "mode:", 5)) {
eric miao817daf12008-04-30 00:52:18 -07001932 return parse_opt_mode(dev, this_opt);
1933 } else if (!strncmp(this_opt, "pixclock:", 9)) {
1934 mode->pixclock = simple_strtoul(this_opt+9, NULL, 0);
1935 sprintf(s, "pixclock: %ld\n", mode->pixclock);
1936 } else if (!strncmp(this_opt, "left:", 5)) {
1937 mode->left_margin = simple_strtoul(this_opt+5, NULL, 0);
1938 sprintf(s, "left: %u\n", mode->left_margin);
1939 } else if (!strncmp(this_opt, "right:", 6)) {
1940 mode->right_margin = simple_strtoul(this_opt+6, NULL, 0);
1941 sprintf(s, "right: %u\n", mode->right_margin);
1942 } else if (!strncmp(this_opt, "upper:", 6)) {
1943 mode->upper_margin = simple_strtoul(this_opt+6, NULL, 0);
1944 sprintf(s, "upper: %u\n", mode->upper_margin);
1945 } else if (!strncmp(this_opt, "lower:", 6)) {
1946 mode->lower_margin = simple_strtoul(this_opt+6, NULL, 0);
1947 sprintf(s, "lower: %u\n", mode->lower_margin);
1948 } else if (!strncmp(this_opt, "hsynclen:", 9)) {
1949 mode->hsync_len = simple_strtoul(this_opt+9, NULL, 0);
1950 sprintf(s, "hsynclen: %u\n", mode->hsync_len);
1951 } else if (!strncmp(this_opt, "vsynclen:", 9)) {
1952 mode->vsync_len = simple_strtoul(this_opt+9, NULL, 0);
1953 sprintf(s, "vsynclen: %u\n", mode->vsync_len);
1954 } else if (!strncmp(this_opt, "hsync:", 6)) {
1955 if (simple_strtoul(this_opt+6, NULL, 0) == 0) {
1956 sprintf(s, "hsync: Active Low\n");
1957 mode->sync &= ~FB_SYNC_HOR_HIGH_ACT;
1958 } else {
1959 sprintf(s, "hsync: Active High\n");
1960 mode->sync |= FB_SYNC_HOR_HIGH_ACT;
1961 }
1962 } else if (!strncmp(this_opt, "vsync:", 6)) {
1963 if (simple_strtoul(this_opt+6, NULL, 0) == 0) {
1964 sprintf(s, "vsync: Active Low\n");
1965 mode->sync &= ~FB_SYNC_VERT_HIGH_ACT;
1966 } else {
1967 sprintf(s, "vsync: Active High\n");
1968 mode->sync |= FB_SYNC_VERT_HIGH_ACT;
1969 }
1970 } else if (!strncmp(this_opt, "dpc:", 4)) {
1971 if (simple_strtoul(this_opt+4, NULL, 0) == 0) {
1972 sprintf(s, "double pixel clock: false\n");
1973 inf->lccr3 &= ~LCCR3_DPC;
1974 } else {
1975 sprintf(s, "double pixel clock: true\n");
1976 inf->lccr3 |= LCCR3_DPC;
1977 }
1978 } else if (!strncmp(this_opt, "outputen:", 9)) {
1979 if (simple_strtoul(this_opt+9, NULL, 0) == 0) {
1980 sprintf(s, "output enable: active low\n");
1981 inf->lccr3 = (inf->lccr3 & ~LCCR3_OEP) | LCCR3_OutEnL;
1982 } else {
1983 sprintf(s, "output enable: active high\n");
1984 inf->lccr3 = (inf->lccr3 & ~LCCR3_OEP) | LCCR3_OutEnH;
1985 }
1986 } else if (!strncmp(this_opt, "pixclockpol:", 12)) {
1987 if (simple_strtoul(this_opt+12, NULL, 0) == 0) {
1988 sprintf(s, "pixel clock polarity: falling edge\n");
1989 inf->lccr3 = (inf->lccr3 & ~LCCR3_PCP) | LCCR3_PixFlEdg;
1990 } else {
1991 sprintf(s, "pixel clock polarity: rising edge\n");
1992 inf->lccr3 = (inf->lccr3 & ~LCCR3_PCP) | LCCR3_PixRsEdg;
1993 }
1994 } else if (!strncmp(this_opt, "color", 5)) {
1995 inf->lccr0 = (inf->lccr0 & ~LCCR0_CMS) | LCCR0_Color;
1996 } else if (!strncmp(this_opt, "mono", 4)) {
1997 inf->lccr0 = (inf->lccr0 & ~LCCR0_CMS) | LCCR0_Mono;
1998 } else if (!strncmp(this_opt, "active", 6)) {
1999 inf->lccr0 = (inf->lccr0 & ~LCCR0_PAS) | LCCR0_Act;
2000 } else if (!strncmp(this_opt, "passive", 7)) {
2001 inf->lccr0 = (inf->lccr0 & ~LCCR0_PAS) | LCCR0_Pas;
2002 } else if (!strncmp(this_opt, "single", 6)) {
2003 inf->lccr0 = (inf->lccr0 & ~LCCR0_SDS) | LCCR0_Sngl;
2004 } else if (!strncmp(this_opt, "dual", 4)) {
2005 inf->lccr0 = (inf->lccr0 & ~LCCR0_SDS) | LCCR0_Dual;
2006 } else if (!strncmp(this_opt, "4pix", 4)) {
2007 inf->lccr0 = (inf->lccr0 & ~LCCR0_DPD) | LCCR0_4PixMono;
2008 } else if (!strncmp(this_opt, "8pix", 4)) {
2009 inf->lccr0 = (inf->lccr0 & ~LCCR0_DPD) | LCCR0_8PixMono;
2010 } else {
2011 dev_err(dev, "unknown option: %s\n", this_opt);
2012 return -EINVAL;
2013 }
2014
2015 if (s[0] != '\0')
2016 dev_info(dev, "override %s", s);
2017
2018 return 0;
2019}
2020
Jaya Kumar9e6c2972008-06-22 04:27:27 +01002021static int __devinit pxafb_parse_options(struct device *dev, char *options)
eric miao817daf12008-04-30 00:52:18 -07002022{
2023 char *this_opt;
2024 int ret;
2025
2026 if (!options || !*options)
2027 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029 dev_dbg(dev, "options are \"%s\"\n", options ? options : "null");
2030
2031 /* could be made table driven or similar?... */
eric miao817daf12008-04-30 00:52:18 -07002032 while ((this_opt = strsep(&options, ",")) != NULL) {
2033 ret = parse_opt(dev, this_opt);
2034 if (ret)
2035 return ret;
2036 }
2037 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038}
eric miao92ac73c2008-04-30 00:52:20 -07002039
2040static char g_options[256] __devinitdata = "";
2041
Jaya Kumarf1edfc42008-06-22 04:27:25 +01002042#ifndef MODULE
Jaya Kumar9e6c2972008-06-22 04:27:27 +01002043static int __init pxafb_setup_options(void)
eric miao92ac73c2008-04-30 00:52:20 -07002044{
2045 char *options = NULL;
2046
2047 if (fb_get_options("pxafb", &options))
2048 return -ENODEV;
2049
2050 if (options)
2051 strlcpy(g_options, options, sizeof(g_options));
2052
2053 return 0;
2054}
2055#else
2056#define pxafb_setup_options() (0)
2057
2058module_param_string(options, g_options, sizeof(g_options), 0);
2059MODULE_PARM_DESC(options, "LCD parameters (see Documentation/fb/pxafb.txt)");
2060#endif
2061
2062#else
2063#define pxafb_parse_options(...) (0)
2064#define pxafb_setup_options() (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065#endif
2066
Eric Miao4f3e2662008-08-16 03:50:51 -04002067#ifdef DEBUG_VAR
2068/* Check for various illegal bit-combinations. Currently only
2069 * a warning is given. */
2070static void __devinit pxafb_check_options(struct device *dev,
2071 struct pxafb_mach_info *inf)
2072{
2073 if (inf->lcd_conn)
2074 return;
2075
2076 if (inf->lccr0 & LCCR0_INVALID_CONFIG_MASK)
2077 dev_warn(dev, "machine LCCR0 setting contains "
2078 "illegal bits: %08x\n",
2079 inf->lccr0 & LCCR0_INVALID_CONFIG_MASK);
2080 if (inf->lccr3 & LCCR3_INVALID_CONFIG_MASK)
2081 dev_warn(dev, "machine LCCR3 setting contains "
2082 "illegal bits: %08x\n",
2083 inf->lccr3 & LCCR3_INVALID_CONFIG_MASK);
2084 if (inf->lccr0 & LCCR0_DPD &&
2085 ((inf->lccr0 & LCCR0_PAS) != LCCR0_Pas ||
2086 (inf->lccr0 & LCCR0_SDS) != LCCR0_Sngl ||
2087 (inf->lccr0 & LCCR0_CMS) != LCCR0_Mono))
2088 dev_warn(dev, "Double Pixel Data (DPD) mode is "
2089 "only valid in passive mono"
2090 " single panel mode\n");
2091 if ((inf->lccr0 & LCCR0_PAS) == LCCR0_Act &&
2092 (inf->lccr0 & LCCR0_SDS) == LCCR0_Dual)
2093 dev_warn(dev, "Dual panel only valid in passive mode\n");
2094 if ((inf->lccr0 & LCCR0_PAS) == LCCR0_Pas &&
2095 (inf->modes->upper_margin || inf->modes->lower_margin))
2096 dev_warn(dev, "Upper and lower margins must be 0 in "
2097 "passive mode\n");
2098}
2099#else
2100#define pxafb_check_options(...) do {} while (0)
2101#endif
2102
Jaya Kumar9e6c2972008-06-22 04:27:27 +01002103static int __devinit pxafb_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
2105 struct pxafb_info *fbi;
2106 struct pxafb_mach_info *inf;
eric miaoce4fb7b2008-04-30 00:52:21 -07002107 struct resource *r;
2108 int irq, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Richard Purdie2cbbb3b2006-03-31 02:31:53 -08002110 dev_dbg(&dev->dev, "pxafb_probe\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Russell King3ae5eae2005-11-09 22:32:44 +00002112 inf = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 ret = -ENOMEM;
2114 fbi = NULL;
2115 if (!inf)
2116 goto failed;
2117
Russell King3ae5eae2005-11-09 22:32:44 +00002118 ret = pxafb_parse_options(&dev->dev, g_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 if (ret < 0)
2120 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Eric Miao4f3e2662008-08-16 03:50:51 -04002122 pxafb_check_options(&dev->dev, inf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
eric miaob0086ef2008-04-30 00:52:19 -07002124 dev_dbg(&dev->dev, "got a %dx%dx%d LCD\n",
2125 inf->modes->xres,
2126 inf->modes->yres,
2127 inf->modes->bpp);
2128 if (inf->modes->xres == 0 ||
2129 inf->modes->yres == 0 ||
2130 inf->modes->bpp == 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00002131 dev_err(&dev->dev, "Invalid resolution or bit depth\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 ret = -EINVAL;
2133 goto failed;
2134 }
Eric Miaoa5718a12008-11-11 21:50:39 +08002135
Russell King3ae5eae2005-11-09 22:32:44 +00002136 fbi = pxafb_init_fbinfo(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 if (!fbi) {
eric miaob0086ef2008-04-30 00:52:19 -07002138 /* only reason for pxafb_init_fbinfo to fail is kmalloc */
Russell King3ae5eae2005-11-09 22:32:44 +00002139 dev_err(&dev->dev, "Failed to initialize framebuffer device\n");
eric miaob0086ef2008-04-30 00:52:19 -07002140 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 goto failed;
2142 }
2143
Daniel Mack52a7a1c2009-09-10 15:26:30 +02002144 if (cpu_is_pxa3xx() && inf->acceleration_enabled)
2145 fbi->fb.fix.accel = FB_ACCEL_PXA3XX;
2146
Eric Miaoa5718a12008-11-11 21:50:39 +08002147 fbi->backlight_power = inf->pxafb_backlight_power;
2148 fbi->lcd_power = inf->pxafb_lcd_power;
2149
eric miaoce4fb7b2008-04-30 00:52:21 -07002150 r = platform_get_resource(dev, IORESOURCE_MEM, 0);
2151 if (r == NULL) {
2152 dev_err(&dev->dev, "no I/O memory resource defined\n");
2153 ret = -ENODEV;
Jaya Kumaree984762008-06-22 04:27:26 +01002154 goto failed_fbi;
eric miaoce4fb7b2008-04-30 00:52:21 -07002155 }
2156
Daniel Mack53eff412009-06-22 21:08:04 +02002157 r = request_mem_region(r->start, resource_size(r), dev->name);
eric miaoce4fb7b2008-04-30 00:52:21 -07002158 if (r == NULL) {
2159 dev_err(&dev->dev, "failed to request I/O memory\n");
2160 ret = -EBUSY;
Jaya Kumaree984762008-06-22 04:27:26 +01002161 goto failed_fbi;
eric miaoce4fb7b2008-04-30 00:52:21 -07002162 }
2163
Daniel Mack53eff412009-06-22 21:08:04 +02002164 fbi->mmio_base = ioremap(r->start, resource_size(r));
eric miaoce4fb7b2008-04-30 00:52:21 -07002165 if (fbi->mmio_base == NULL) {
2166 dev_err(&dev->dev, "failed to map I/O memory\n");
2167 ret = -EBUSY;
2168 goto failed_free_res;
2169 }
2170
Eric Miao77e19672008-12-16 11:54:34 +08002171 fbi->dma_buff_size = PAGE_ALIGN(sizeof(struct pxafb_dma_buff));
2172 fbi->dma_buff = dma_alloc_coherent(fbi->dev, fbi->dma_buff_size,
2173 &fbi->dma_buff_phys, GFP_KERNEL);
2174 if (fbi->dma_buff == NULL) {
2175 dev_err(&dev->dev, "failed to allocate memory for DMA\n");
2176 ret = -ENOMEM;
2177 goto failed_free_io;
2178 }
2179
2180 ret = pxafb_init_video_memory(fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 if (ret) {
Russell King3ae5eae2005-11-09 22:32:44 +00002182 dev_err(&dev->dev, "Failed to allocate video RAM: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 ret = -ENOMEM;
Eric Miao77e19672008-12-16 11:54:34 +08002184 goto failed_free_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
eric miaoce4fb7b2008-04-30 00:52:21 -07002187 irq = platform_get_irq(dev, 0);
2188 if (irq < 0) {
2189 dev_err(&dev->dev, "no IRQ defined\n");
2190 ret = -ENODEV;
2191 goto failed_free_mem;
2192 }
2193
Yong Zhangf8798cc2011-09-22 16:59:16 +08002194 ret = request_irq(irq, pxafb_handle_irq, 0, "LCD", fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 if (ret) {
Russell King3ae5eae2005-11-09 22:32:44 +00002196 dev_err(&dev->dev, "request_irq failed: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 ret = -EBUSY;
eric miaoce4fb7b2008-04-30 00:52:21 -07002198 goto failed_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 }
2200
Eric Miao3c42a442008-04-30 00:52:26 -07002201 ret = pxafb_smart_init(fbi);
2202 if (ret) {
2203 dev_err(&dev->dev, "failed to initialize smartpanel\n");
2204 goto failed_free_irq;
2205 }
Eric Miao07df1c42008-12-04 11:14:11 +08002206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 /*
2208 * This makes sure that our colour bitfield
2209 * descriptors are correctly initialised.
2210 */
Jaya Kumaree984762008-06-22 04:27:26 +01002211 ret = pxafb_check_var(&fbi->fb.var, &fbi->fb);
2212 if (ret) {
2213 dev_err(&dev->dev, "failed to get suitable mode\n");
2214 goto failed_free_irq;
2215 }
2216
2217 ret = pxafb_set_par(&fbi->fb);
2218 if (ret) {
2219 dev_err(&dev->dev, "Failed to set parameters\n");
2220 goto failed_free_irq;
2221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
Russell King3ae5eae2005-11-09 22:32:44 +00002223 platform_set_drvdata(dev, fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225 ret = register_framebuffer(&fbi->fb);
2226 if (ret < 0) {
eric miaob0086ef2008-04-30 00:52:19 -07002227 dev_err(&dev->dev,
2228 "Failed to register framebuffer device: %d\n", ret);
Jaya Kumaree984762008-06-22 04:27:26 +01002229 goto failed_free_cmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 }
2231
Eric Miao198fc102008-12-23 17:49:43 +08002232 pxafb_overlay_init(fbi);
2233
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234#ifdef CONFIG_CPU_FREQ
2235 fbi->freq_transition.notifier_call = pxafb_freq_transition;
2236 fbi->freq_policy.notifier_call = pxafb_freq_policy;
eric miaob0086ef2008-04-30 00:52:19 -07002237 cpufreq_register_notifier(&fbi->freq_transition,
2238 CPUFREQ_TRANSITION_NOTIFIER);
2239 cpufreq_register_notifier(&fbi->freq_policy,
2240 CPUFREQ_POLICY_NOTIFIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241#endif
2242
2243 /*
2244 * Ok, now enable the LCD controller
2245 */
2246 set_ctrlr_state(fbi, C_ENABLE);
2247
2248 return 0;
2249
Jaya Kumaree984762008-06-22 04:27:26 +01002250failed_free_cmap:
2251 if (fbi->fb.cmap.len)
2252 fb_dealloc_cmap(&fbi->fb.cmap);
eric miaoce4fb7b2008-04-30 00:52:21 -07002253failed_free_irq:
2254 free_irq(irq, fbi);
eric miaoce4fb7b2008-04-30 00:52:21 -07002255failed_free_mem:
Eric Miao77e19672008-12-16 11:54:34 +08002256 free_pages_exact(fbi->video_mem, fbi->video_mem_size);
2257failed_free_dma:
2258 dma_free_coherent(&dev->dev, fbi->dma_buff_size,
2259 fbi->dma_buff, fbi->dma_buff_phys);
Jaya Kumaree984762008-06-22 04:27:26 +01002260failed_free_io:
2261 iounmap(fbi->mmio_base);
2262failed_free_res:
Daniel Mack53eff412009-06-22 21:08:04 +02002263 release_mem_region(r->start, resource_size(r));
Jaya Kumaree984762008-06-22 04:27:26 +01002264failed_fbi:
2265 clk_put(fbi->clk);
Russell King3ae5eae2005-11-09 22:32:44 +00002266 platform_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 kfree(fbi);
Jaya Kumaree984762008-06-22 04:27:26 +01002268failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 return ret;
2270}
2271
Jaya Kumar9f17f282008-06-22 04:27:28 +01002272static int __devexit pxafb_remove(struct platform_device *dev)
2273{
2274 struct pxafb_info *fbi = platform_get_drvdata(dev);
2275 struct resource *r;
2276 int irq;
2277 struct fb_info *info;
2278
2279 if (!fbi)
2280 return 0;
2281
2282 info = &fbi->fb;
2283
Eric Miao198fc102008-12-23 17:49:43 +08002284 pxafb_overlay_exit(fbi);
Jaya Kumar9f17f282008-06-22 04:27:28 +01002285 unregister_framebuffer(info);
2286
2287 pxafb_disable_controller(fbi);
2288
2289 if (fbi->fb.cmap.len)
2290 fb_dealloc_cmap(&fbi->fb.cmap);
2291
2292 irq = platform_get_irq(dev, 0);
2293 free_irq(irq, fbi);
2294
Eric Miao77e19672008-12-16 11:54:34 +08002295 free_pages_exact(fbi->video_mem, fbi->video_mem_size);
2296
2297 dma_free_writecombine(&dev->dev, fbi->dma_buff_size,
2298 fbi->dma_buff, fbi->dma_buff_phys);
Jaya Kumar9f17f282008-06-22 04:27:28 +01002299
2300 iounmap(fbi->mmio_base);
2301
2302 r = platform_get_resource(dev, IORESOURCE_MEM, 0);
Daniel Mack53eff412009-06-22 21:08:04 +02002303 release_mem_region(r->start, resource_size(r));
Jaya Kumar9f17f282008-06-22 04:27:28 +01002304
2305 clk_put(fbi->clk);
2306 kfree(fbi);
2307
2308 return 0;
2309}
2310
Russell King3ae5eae2005-11-09 22:32:44 +00002311static struct platform_driver pxafb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 .probe = pxafb_probe,
Russell Kingbdf602b2009-03-03 13:43:47 +00002313 .remove = __devexit_p(pxafb_remove),
Russell King3ae5eae2005-11-09 22:32:44 +00002314 .driver = {
Jaya Kumar9f17f282008-06-22 04:27:28 +01002315 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00002316 .name = "pxa2xx-fb",
Mike Rapoport4f3edfe2009-07-21 17:51:50 +03002317#ifdef CONFIG_PM
2318 .pm = &pxafb_pm_ops,
2319#endif
Russell King3ae5eae2005-11-09 22:32:44 +00002320 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321};
2322
Jaya Kumar9e6c2972008-06-22 04:27:27 +01002323static int __init pxafb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324{
eric miao92ac73c2008-04-30 00:52:20 -07002325 if (pxafb_setup_options())
2326 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Russell King3ae5eae2005-11-09 22:32:44 +00002328 return platform_driver_register(&pxafb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329}
2330
Jaya Kumar9f17f282008-06-22 04:27:28 +01002331static void __exit pxafb_exit(void)
2332{
2333 platform_driver_unregister(&pxafb_driver);
2334}
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336module_init(pxafb_init);
Jaya Kumar9f17f282008-06-22 04:27:28 +01002337module_exit(pxafb_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
2339MODULE_DESCRIPTION("loadable framebuffer driver for PXA");
2340MODULE_LICENSE("GPL");