blob: ab689597f259bf81ca2e59ec6efe9b23760ca74e [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 *
23 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/kernel.h>
28#include <linux/sched.h>
29#include <linux/errno.h>
30#include <linux/string.h>
31#include <linux/interrupt.h>
32#include <linux/slab.h>
Andrea Righi27ac7922008-07-23 21:28:13 -070033#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/fb.h>
35#include <linux/delay.h>
36#include <linux/init.h>
37#include <linux/ioport.h>
38#include <linux/cpufreq.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010039#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/dma-mapping.h>
Russell King72e35242007-08-20 10:18:42 +010041#include <linux/clk.h>
42#include <linux/err.h>
Eric Miao2ba162b2008-04-30 00:52:24 -070043#include <linux/completion.h>
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -070044#include <linux/mutex.h>
Eric Miao3c42a442008-04-30 00:52:26 -070045#include <linux/kthread.h>
46#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Russell Kinga09e64f2008-08-05 16:14:15 +010048#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <asm/io.h>
50#include <asm/irq.h>
Nicolas Pitrebf1b8ab2005-06-23 21:56:45 +010051#include <asm/div64.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010052#include <mach/pxa-regs.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010053#include <mach/bitfield.h>
54#include <mach/pxafb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
57 * Complain if VAR is out of range.
58 */
59#define DEBUG_VAR 1
60
61#include "pxafb.h"
62
63/* Bits which should not be set in machine configuration structures */
eric miaob0086ef2008-04-30 00:52:19 -070064#define LCCR0_INVALID_CONFIG_MASK (LCCR0_OUM | LCCR0_BM | LCCR0_QDM |\
65 LCCR0_DIS | LCCR0_EFM | LCCR0_IUM |\
66 LCCR0_SFM | LCCR0_LDM | LCCR0_ENB)
67
68#define LCCR3_INVALID_CONFIG_MASK (LCCR3_HSP | LCCR3_VSP |\
69 LCCR3_PCD | LCCR3_BPP)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
eric miaob0086ef2008-04-30 00:52:19 -070071static int pxafb_activate_var(struct fb_var_screeninfo *var,
72 struct pxafb_info *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static void set_ctrlr_state(struct pxafb_info *fbi, u_int state);
74
Eric Miaoa7535ba2008-04-30 00:52:24 -070075static inline unsigned long
76lcd_readl(struct pxafb_info *fbi, unsigned int off)
77{
78 return __raw_readl(fbi->mmio_base + off);
79}
80
81static inline void
82lcd_writel(struct pxafb_info *fbi, unsigned int off, unsigned long val)
83{
84 __raw_writel(val, fbi->mmio_base + off);
85}
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static inline void pxafb_schedule_work(struct pxafb_info *fbi, u_int state)
88{
89 unsigned long flags;
90
91 local_irq_save(flags);
92 /*
93 * We need to handle two requests being made at the same time.
94 * There are two important cases:
eric miaob0086ef2008-04-30 00:52:19 -070095 * 1. When we are changing VT (C_REENABLE) while unblanking
96 * (C_ENABLE) We must perform the unblanking, which will
97 * do our REENABLE for us.
98 * 2. When we are blanking, but immediately unblank before
99 * we have blanked. We do the "REENABLE" thing here as
100 * well, just to be sure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 */
102 if (fbi->task_state == C_ENABLE && state == C_REENABLE)
103 state = (u_int) -1;
104 if (fbi->task_state == C_DISABLE && state == C_ENABLE)
105 state = C_REENABLE;
106
107 if (state != (u_int)-1) {
108 fbi->task_state = state;
109 schedule_work(&fbi->task);
110 }
111 local_irq_restore(flags);
112}
113
114static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf)
115{
116 chan &= 0xffff;
117 chan >>= 16 - bf->length;
118 return chan << bf->offset;
119}
120
121static int
122pxafb_setpalettereg(u_int regno, u_int red, u_int green, u_int blue,
123 u_int trans, struct fb_info *info)
124{
125 struct pxafb_info *fbi = (struct pxafb_info *)info;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700126 u_int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700128 if (regno >= fbi->palette_size)
129 return 1;
130
131 if (fbi->fb.var.grayscale) {
132 fbi->palette_cpu[regno] = ((blue >> 8) & 0x00ff);
133 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700135
136 switch (fbi->lccr4 & LCCR4_PAL_FOR_MASK) {
137 case LCCR4_PAL_FOR_0:
138 val = ((red >> 0) & 0xf800);
139 val |= ((green >> 5) & 0x07e0);
140 val |= ((blue >> 11) & 0x001f);
141 fbi->palette_cpu[regno] = val;
142 break;
143 case LCCR4_PAL_FOR_1:
144 val = ((red << 8) & 0x00f80000);
145 val |= ((green >> 0) & 0x0000fc00);
146 val |= ((blue >> 8) & 0x000000f8);
eric miaob0086ef2008-04-30 00:52:19 -0700147 ((u32 *)(fbi->palette_cpu))[regno] = val;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700148 break;
149 case LCCR4_PAL_FOR_2:
150 val = ((red << 8) & 0x00fc0000);
151 val |= ((green >> 0) & 0x0000fc00);
152 val |= ((blue >> 8) & 0x000000fc);
eric miaob0086ef2008-04-30 00:52:19 -0700153 ((u32 *)(fbi->palette_cpu))[regno] = val;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700154 break;
155 }
156
157 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160static int
161pxafb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
162 u_int trans, struct fb_info *info)
163{
164 struct pxafb_info *fbi = (struct pxafb_info *)info;
165 unsigned int val;
166 int ret = 1;
167
168 /*
169 * If inverse mode was selected, invert all the colours
170 * rather than the register number. The register number
171 * is what you poke into the framebuffer to produce the
172 * colour you requested.
173 */
174 if (fbi->cmap_inverse) {
175 red = 0xffff - red;
176 green = 0xffff - green;
177 blue = 0xffff - blue;
178 }
179
180 /*
181 * If greyscale is true, then we convert the RGB value
182 * to greyscale no matter what visual we are using.
183 */
184 if (fbi->fb.var.grayscale)
185 red = green = blue = (19595 * red + 38470 * green +
186 7471 * blue) >> 16;
187
188 switch (fbi->fb.fix.visual) {
189 case FB_VISUAL_TRUECOLOR:
190 /*
191 * 16-bit True Colour. We encode the RGB value
192 * according to the RGB bitfield information.
193 */
194 if (regno < 16) {
195 u32 *pal = fbi->fb.pseudo_palette;
196
197 val = chan_to_field(red, &fbi->fb.var.red);
198 val |= chan_to_field(green, &fbi->fb.var.green);
199 val |= chan_to_field(blue, &fbi->fb.var.blue);
200
201 pal[regno] = val;
202 ret = 0;
203 }
204 break;
205
206 case FB_VISUAL_STATIC_PSEUDOCOLOR:
207 case FB_VISUAL_PSEUDOCOLOR:
208 ret = pxafb_setpalettereg(regno, red, green, blue, trans, info);
209 break;
210 }
211
212 return ret;
213}
214
215/*
216 * pxafb_bpp_to_lccr3():
217 * Convert a bits per pixel value to the correct bit pattern for LCCR3
218 */
219static int pxafb_bpp_to_lccr3(struct fb_var_screeninfo *var)
220{
eric miaob0086ef2008-04-30 00:52:19 -0700221 int ret = 0;
222 switch (var->bits_per_pixel) {
223 case 1: ret = LCCR3_1BPP; break;
224 case 2: ret = LCCR3_2BPP; break;
225 case 4: ret = LCCR3_4BPP; break;
226 case 8: ret = LCCR3_8BPP; break;
227 case 16: ret = LCCR3_16BPP; break;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100228 case 24:
229 switch (var->red.length + var->green.length +
230 var->blue.length + var->transp.length) {
231 case 18: ret = LCCR3_18BPP_P | LCCR3_PDFOR_3; break;
232 case 19: ret = LCCR3_19BPP_P; break;
233 }
234 break;
235 case 32:
236 switch (var->red.length + var->green.length +
237 var->blue.length + var->transp.length) {
238 case 18: ret = LCCR3_18BPP | LCCR3_PDFOR_3; break;
239 case 19: ret = LCCR3_19BPP; break;
240 case 24: ret = LCCR3_24BPP | LCCR3_PDFOR_3; break;
241 case 25: ret = LCCR3_25BPP; break;
242 }
243 break;
eric miaob0086ef2008-04-30 00:52:19 -0700244 }
245 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
248#ifdef CONFIG_CPU_FREQ
249/*
250 * pxafb_display_dma_period()
251 * Calculate the minimum period (in picoseconds) between two DMA
252 * requests for the LCD controller. If we hit this, it means we're
253 * doing nothing but LCD DMA.
254 */
255static unsigned int pxafb_display_dma_period(struct fb_var_screeninfo *var)
256{
eric miaob0086ef2008-04-30 00:52:19 -0700257 /*
258 * Period = pixclock * bits_per_byte * bytes_per_transfer
259 * / memory_bits_per_pixel;
260 */
261 return var->pixclock * 8 * 16 / var->bits_per_pixel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263#endif
264
265/*
Richard Purdied14b2722006-09-20 22:54:21 +0100266 * Select the smallest mode that allows the desired resolution to be
267 * displayed. If desired parameters can be rounded up.
268 */
eric miaob0086ef2008-04-30 00:52:19 -0700269static struct pxafb_mode_info *pxafb_getmode(struct pxafb_mach_info *mach,
270 struct fb_var_screeninfo *var)
Richard Purdied14b2722006-09-20 22:54:21 +0100271{
272 struct pxafb_mode_info *mode = NULL;
273 struct pxafb_mode_info *modelist = mach->modes;
274 unsigned int best_x = 0xffffffff, best_y = 0xffffffff;
275 unsigned int i;
276
eric miaob0086ef2008-04-30 00:52:19 -0700277 for (i = 0; i < mach->num_modes; i++) {
278 if (modelist[i].xres >= var->xres &&
279 modelist[i].yres >= var->yres &&
280 modelist[i].xres < best_x &&
281 modelist[i].yres < best_y &&
282 modelist[i].bpp >= var->bits_per_pixel) {
Richard Purdied14b2722006-09-20 22:54:21 +0100283 best_x = modelist[i].xres;
284 best_y = modelist[i].yres;
285 mode = &modelist[i];
286 }
287 }
288
289 return mode;
290}
291
eric miaob0086ef2008-04-30 00:52:19 -0700292static void pxafb_setmode(struct fb_var_screeninfo *var,
293 struct pxafb_mode_info *mode)
Richard Purdied14b2722006-09-20 22:54:21 +0100294{
295 var->xres = mode->xres;
296 var->yres = mode->yres;
297 var->bits_per_pixel = mode->bpp;
298 var->pixclock = mode->pixclock;
299 var->hsync_len = mode->hsync_len;
300 var->left_margin = mode->left_margin;
301 var->right_margin = mode->right_margin;
302 var->vsync_len = mode->vsync_len;
303 var->upper_margin = mode->upper_margin;
304 var->lower_margin = mode->lower_margin;
305 var->sync = mode->sync;
306 var->grayscale = mode->cmap_greyscale;
307 var->xres_virtual = var->xres;
308 var->yres_virtual = var->yres;
309}
310
311/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 * pxafb_check_var():
313 * Get the video params out of 'var'. If a value doesn't fit, round it up,
314 * if it's too big, return -EINVAL.
315 *
316 * Round up in the following order: bits_per_pixel, xres,
317 * yres, xres_virtual, yres_virtual, xoffset, yoffset, grayscale,
318 * bitfields, horizontal timing, vertical timing.
319 */
320static int pxafb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
321{
322 struct pxafb_info *fbi = (struct pxafb_info *)info;
Richard Purdied14b2722006-09-20 22:54:21 +0100323 struct pxafb_mach_info *inf = fbi->dev->platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 if (var->xres < MIN_XRES)
326 var->xres = MIN_XRES;
327 if (var->yres < MIN_YRES)
328 var->yres = MIN_YRES;
Richard Purdied14b2722006-09-20 22:54:21 +0100329
330 if (inf->fixed_modes) {
331 struct pxafb_mode_info *mode;
332
333 mode = pxafb_getmode(inf, var);
334 if (!mode)
335 return -EINVAL;
336 pxafb_setmode(var, mode);
337 } else {
338 if (var->xres > inf->modes->xres)
339 return -EINVAL;
340 if (var->yres > inf->modes->yres)
341 return -EINVAL;
342 if (var->bits_per_pixel > inf->modes->bpp)
343 return -EINVAL;
344 }
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 var->xres_virtual =
347 max(var->xres_virtual, var->xres);
348 var->yres_virtual =
349 max(var->yres_virtual, var->yres);
350
eric miaob0086ef2008-04-30 00:52:19 -0700351 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 * Setup the RGB parameters for this display.
353 *
354 * The pixel packing format is described on page 7-11 of the
355 * PXA2XX Developer's Manual.
eric miaob0086ef2008-04-30 00:52:19 -0700356 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (var->bits_per_pixel == 16) {
358 var->red.offset = 11; var->red.length = 5;
359 var->green.offset = 5; var->green.length = 6;
360 var->blue.offset = 0; var->blue.length = 5;
361 var->transp.offset = var->transp.length = 0;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100362 } else if (var->bits_per_pixel > 16) {
363 struct pxafb_mode_info *mode;
364
365 mode = pxafb_getmode(inf, var);
366 if (!mode)
367 return -EINVAL;
368
369 switch (mode->depth) {
370 case 18: /* RGB666 */
371 var->transp.offset = var->transp.length = 0;
372 var->red.offset = 12; var->red.length = 6;
373 var->green.offset = 6; var->green.length = 6;
374 var->blue.offset = 0; var->blue.length = 6;
375 break;
376 case 19: /* RGBT666 */
377 var->transp.offset = 18; var->transp.length = 1;
378 var->red.offset = 12; var->red.length = 6;
379 var->green.offset = 6; var->green.length = 6;
380 var->blue.offset = 0; var->blue.length = 6;
381 break;
382 case 24: /* RGB888 */
383 var->transp.offset = var->transp.length = 0;
384 var->red.offset = 16; var->red.length = 8;
385 var->green.offset = 8; var->green.length = 8;
386 var->blue.offset = 0; var->blue.length = 8;
387 break;
388 case 25: /* RGBT888 */
389 var->transp.offset = 24; var->transp.length = 1;
390 var->red.offset = 16; var->red.length = 8;
391 var->green.offset = 8; var->green.length = 8;
392 var->blue.offset = 0; var->blue.length = 8;
393 break;
394 default:
395 return -EINVAL;
396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 } else {
eric miaob0086ef2008-04-30 00:52:19 -0700398 var->red.offset = var->green.offset = 0;
399 var->blue.offset = var->transp.offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 var->red.length = 8;
401 var->green.length = 8;
402 var->blue.length = 8;
403 var->transp.length = 0;
404 }
405
406#ifdef CONFIG_CPU_FREQ
Russell King78d3cfd2008-05-17 22:51:14 +0100407 pr_debug("pxafb: dma period = %d ps\n",
408 pxafb_display_dma_period(var));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409#endif
410
411 return 0;
412}
413
414static inline void pxafb_set_truecolor(u_int is_true_color)
415{
eric miaob0086ef2008-04-30 00:52:19 -0700416 /* do your machine-specific setup if needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
419/*
420 * pxafb_set_par():
421 * Set the user defined part of the display for the specified console
422 */
423static int pxafb_set_par(struct fb_info *info)
424{
425 struct pxafb_info *fbi = (struct pxafb_info *)info;
426 struct fb_var_screeninfo *var = &info->var;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100428 if (var->bits_per_pixel >= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 fbi->fb.fix.visual = FB_VISUAL_TRUECOLOR;
430 else if (!fbi->cmap_static)
431 fbi->fb.fix.visual = FB_VISUAL_PSEUDOCOLOR;
432 else {
433 /*
434 * Some people have weird ideas about wanting static
435 * pseudocolor maps. I suspect their user space
436 * applications are broken.
437 */
438 fbi->fb.fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR;
439 }
440
441 fbi->fb.fix.line_length = var->xres_virtual *
442 var->bits_per_pixel / 8;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100443 if (var->bits_per_pixel >= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 fbi->palette_size = 0;
445 else
eric miaob0086ef2008-04-30 00:52:19 -0700446 fbi->palette_size = var->bits_per_pixel == 1 ?
447 4 : 1 << var->bits_per_pixel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
eric miao2c42dd82008-04-30 00:52:21 -0700449 fbi->palette_cpu = (u16 *)&fbi->dma_buff->palette[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /*
452 * Set (any) board control register to handle new color depth
453 */
454 pxafb_set_truecolor(fbi->fb.fix.visual == FB_VISUAL_TRUECOLOR);
455
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100456 if (fbi->fb.var.bits_per_pixel >= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 fb_dealloc_cmap(&fbi->fb.cmap);
458 else
459 fb_alloc_cmap(&fbi->fb.cmap, 1<<fbi->fb.var.bits_per_pixel, 0);
460
461 pxafb_activate_var(var, fbi);
462
463 return 0;
464}
465
466/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * pxafb_blank():
468 * Blank the display by setting all palette values to zero. Note, the
469 * 16 bpp mode does not really use the palette, so this will not
470 * blank the display in all modes.
471 */
472static int pxafb_blank(int blank, struct fb_info *info)
473{
474 struct pxafb_info *fbi = (struct pxafb_info *)info;
475 int i;
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 switch (blank) {
478 case FB_BLANK_POWERDOWN:
479 case FB_BLANK_VSYNC_SUSPEND:
480 case FB_BLANK_HSYNC_SUSPEND:
481 case FB_BLANK_NORMAL:
482 if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||
483 fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)
484 for (i = 0; i < fbi->palette_size; i++)
485 pxafb_setpalettereg(i, 0, 0, 0, 0, info);
486
487 pxafb_schedule_work(fbi, C_DISABLE);
eric miaob0086ef2008-04-30 00:52:19 -0700488 /* TODO if (pxafb_blank_helper) pxafb_blank_helper(blank); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 break;
490
491 case FB_BLANK_UNBLANK:
eric miaob0086ef2008-04-30 00:52:19 -0700492 /* TODO if (pxafb_blank_helper) pxafb_blank_helper(blank); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||
494 fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)
495 fb_set_cmap(&fbi->fb.cmap, info);
496 pxafb_schedule_work(fbi, C_ENABLE);
497 }
498 return 0;
499}
500
Christoph Hellwig216d5262006-01-14 13:21:25 -0800501static int pxafb_mmap(struct fb_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 struct vm_area_struct *vma)
503{
504 struct pxafb_info *fbi = (struct pxafb_info *)info;
505 unsigned long off = vma->vm_pgoff << PAGE_SHIFT;
506
507 if (off < info->fix.smem_len) {
Eric Miao3c42a442008-04-30 00:52:26 -0700508 vma->vm_pgoff += fbi->video_offset / PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return dma_mmap_writecombine(fbi->dev, vma, fbi->map_cpu,
510 fbi->map_dma, fbi->map_size);
511 }
512 return -EINVAL;
513}
514
515static struct fb_ops pxafb_ops = {
516 .owner = THIS_MODULE,
517 .fb_check_var = pxafb_check_var,
518 .fb_set_par = pxafb_set_par,
519 .fb_setcolreg = pxafb_setcolreg,
520 .fb_fillrect = cfb_fillrect,
521 .fb_copyarea = cfb_copyarea,
522 .fb_imageblit = cfb_imageblit,
523 .fb_blank = pxafb_blank,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 .fb_mmap = pxafb_mmap,
525};
526
527/*
528 * Calculate the PCD value from the clock rate (in picoseconds).
529 * We take account of the PPCR clock setting.
530 * From PXA Developer's Manual:
531 *
532 * PixelClock = LCLK
533 * -------------
534 * 2 ( PCD + 1 )
535 *
536 * PCD = LCLK
537 * ------------- - 1
538 * 2(PixelClock)
539 *
540 * Where:
541 * LCLK = LCD/Memory Clock
542 * PCD = LCCR3[7:0]
543 *
544 * PixelClock here is in Hz while the pixclock argument given is the
545 * period in picoseconds. Hence PixelClock = 1 / ( pixclock * 10^-12 )
546 *
547 * The function get_lclk_frequency_10khz returns LCLK in units of
548 * 10khz. Calling the result of this function lclk gives us the
549 * following
550 *
551 * PCD = (lclk * 10^4 ) * ( pixclock * 10^-12 )
552 * -------------------------------------- - 1
553 * 2
554 *
555 * Factoring the 10^4 and 10^-12 out gives 10^-8 == 1 / 100000000 as used below.
556 */
eric miaob0086ef2008-04-30 00:52:19 -0700557static inline unsigned int get_pcd(struct pxafb_info *fbi,
558 unsigned int pixclock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 unsigned long long pcd;
561
562 /* FIXME: Need to take into account Double Pixel Clock mode
Russell King72e35242007-08-20 10:18:42 +0100563 * (DPC) bit? or perhaps set it based on the various clock
564 * speeds */
565 pcd = (unsigned long long)(clk_get_rate(fbi->clk) / 10000);
566 pcd *= pixclock;
Nicolas Pitrebf1b8ab2005-06-23 21:56:45 +0100567 do_div(pcd, 100000000 * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 /* no need for this, since we should subtract 1 anyway. they cancel */
569 /* pcd += 1; */ /* make up for integer math truncations */
570 return (unsigned int)pcd;
571}
572
573/*
Richard Purdieba44cd22005-09-09 13:10:03 -0700574 * Some touchscreens need hsync information from the video driver to
Russell King72e35242007-08-20 10:18:42 +0100575 * function correctly. We export it here. Note that 'hsync_time' and
576 * the value returned from pxafb_get_hsync_time() is the *reciprocal*
577 * of the hsync period in seconds.
Richard Purdieba44cd22005-09-09 13:10:03 -0700578 */
579static inline void set_hsync_time(struct pxafb_info *fbi, unsigned int pcd)
580{
Russell King72e35242007-08-20 10:18:42 +0100581 unsigned long htime;
Richard Purdieba44cd22005-09-09 13:10:03 -0700582
583 if ((pcd == 0) || (fbi->fb.var.hsync_len == 0)) {
eric miaob0086ef2008-04-30 00:52:19 -0700584 fbi->hsync_time = 0;
Richard Purdieba44cd22005-09-09 13:10:03 -0700585 return;
586 }
587
Russell King72e35242007-08-20 10:18:42 +0100588 htime = clk_get_rate(fbi->clk) / (pcd * fbi->fb.var.hsync_len);
589
Richard Purdieba44cd22005-09-09 13:10:03 -0700590 fbi->hsync_time = htime;
591}
592
593unsigned long pxafb_get_hsync_time(struct device *dev)
594{
595 struct pxafb_info *fbi = dev_get_drvdata(dev);
596
597 /* If display is blanked/suspended, hsync isn't active */
598 if (!fbi || (fbi->state != C_ENABLE))
599 return 0;
600
601 return fbi->hsync_time;
602}
603EXPORT_SYMBOL(pxafb_get_hsync_time);
604
eric miao2c42dd82008-04-30 00:52:21 -0700605static int setup_frame_dma(struct pxafb_info *fbi, int dma, int pal,
606 unsigned int offset, size_t size)
607{
608 struct pxafb_dma_descriptor *dma_desc, *pal_desc;
609 unsigned int dma_desc_off, pal_desc_off;
610
611 if (dma < 0 || dma >= DMA_MAX)
612 return -EINVAL;
613
614 dma_desc = &fbi->dma_buff->dma_desc[dma];
615 dma_desc_off = offsetof(struct pxafb_dma_buff, dma_desc[dma]);
616
617 dma_desc->fsadr = fbi->screen_dma + offset;
618 dma_desc->fidr = 0;
619 dma_desc->ldcmd = size;
620
621 if (pal < 0 || pal >= PAL_MAX) {
622 dma_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
623 fbi->fdadr[dma] = fbi->dma_buff_phys + dma_desc_off;
624 } else {
Jürgen Schindele62cfcf42008-06-11 19:56:06 +0100625 pal_desc = &fbi->dma_buff->pal_desc[pal];
626 pal_desc_off = offsetof(struct pxafb_dma_buff, pal_desc[pal]);
eric miao2c42dd82008-04-30 00:52:21 -0700627
628 pal_desc->fsadr = fbi->dma_buff_phys + pal * PALETTE_SIZE;
629 pal_desc->fidr = 0;
630
631 if ((fbi->lccr4 & LCCR4_PAL_FOR_MASK) == LCCR4_PAL_FOR_0)
632 pal_desc->ldcmd = fbi->palette_size * sizeof(u16);
633 else
634 pal_desc->ldcmd = fbi->palette_size * sizeof(u32);
635
636 pal_desc->ldcmd |= LDCMD_PAL;
637
638 /* flip back and forth between palette and frame buffer */
639 pal_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
640 dma_desc->fdadr = fbi->dma_buff_phys + pal_desc_off;
641 fbi->fdadr[dma] = fbi->dma_buff_phys + dma_desc_off;
642 }
643
644 return 0;
645}
646
Eric Miao3c42a442008-04-30 00:52:26 -0700647#ifdef CONFIG_FB_PXA_SMARTPANEL
648static int setup_smart_dma(struct pxafb_info *fbi)
649{
650 struct pxafb_dma_descriptor *dma_desc;
651 unsigned long dma_desc_off, cmd_buff_off;
652
653 dma_desc = &fbi->dma_buff->dma_desc[DMA_CMD];
654 dma_desc_off = offsetof(struct pxafb_dma_buff, dma_desc[DMA_CMD]);
655 cmd_buff_off = offsetof(struct pxafb_dma_buff, cmd_buff);
656
657 dma_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
658 dma_desc->fsadr = fbi->dma_buff_phys + cmd_buff_off;
659 dma_desc->fidr = 0;
660 dma_desc->ldcmd = fbi->n_smart_cmds * sizeof(uint16_t);
661
662 fbi->fdadr[DMA_CMD] = dma_desc->fdadr;
663 return 0;
664}
665
666int pxafb_smart_flush(struct fb_info *info)
667{
668 struct pxafb_info *fbi = container_of(info, struct pxafb_info, fb);
669 uint32_t prsr;
670 int ret = 0;
671
672 /* disable controller until all registers are set up */
673 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
674
675 /* 1. make it an even number of commands to align on 32-bit boundary
676 * 2. add the interrupt command to the end of the chain so we can
677 * keep track of the end of the transfer
678 */
679
680 while (fbi->n_smart_cmds & 1)
681 fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_NOOP;
682
683 fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_INTERRUPT;
684 fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_WAIT_FOR_VSYNC;
685 setup_smart_dma(fbi);
686
687 /* continue to execute next command */
688 prsr = lcd_readl(fbi, PRSR) | PRSR_ST_OK | PRSR_CON_NT;
689 lcd_writel(fbi, PRSR, prsr);
690
691 /* stop the processor in case it executed "wait for sync" cmd */
692 lcd_writel(fbi, CMDCR, 0x0001);
693
694 /* don't send interrupts for fifo underruns on channel 6 */
695 lcd_writel(fbi, LCCR5, LCCR5_IUM(6));
696
697 lcd_writel(fbi, LCCR1, fbi->reg_lccr1);
698 lcd_writel(fbi, LCCR2, fbi->reg_lccr2);
699 lcd_writel(fbi, LCCR3, fbi->reg_lccr3);
700 lcd_writel(fbi, FDADR0, fbi->fdadr[0]);
701 lcd_writel(fbi, FDADR6, fbi->fdadr[6]);
702
703 /* begin sending */
704 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 | LCCR0_ENB);
705
706 if (wait_for_completion_timeout(&fbi->command_done, HZ/2) == 0) {
707 pr_warning("%s: timeout waiting for command done\n",
708 __func__);
709 ret = -ETIMEDOUT;
710 }
711
712 /* quick disable */
713 prsr = lcd_readl(fbi, PRSR) & ~(PRSR_ST_OK | PRSR_CON_NT);
714 lcd_writel(fbi, PRSR, prsr);
715 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
716 lcd_writel(fbi, FDADR6, 0);
717 fbi->n_smart_cmds = 0;
718 return ret;
719}
720
721int pxafb_smart_queue(struct fb_info *info, uint16_t *cmds, int n_cmds)
722{
723 int i;
724 struct pxafb_info *fbi = container_of(info, struct pxafb_info, fb);
725
Eric Miao69bdea72008-12-08 18:46:00 +0800726 for (i = 0; i < n_cmds; i++, cmds++) {
727 /* if it is a software delay, flush and delay */
728 if ((*cmds & 0xff00) == SMART_CMD_DELAY) {
729 pxafb_smart_flush(info);
730 mdelay(*cmds & 0xff);
731 continue;
732 }
733
734 /* leave 2 commands for INTERRUPT and WAIT_FOR_SYNC */
Eric Miao3c42a442008-04-30 00:52:26 -0700735 if (fbi->n_smart_cmds == CMD_BUFF_SIZE - 8)
736 pxafb_smart_flush(info);
737
Eric Miao69bdea72008-12-08 18:46:00 +0800738 fbi->smart_cmds[fbi->n_smart_cmds++] = *cmds;
Eric Miao3c42a442008-04-30 00:52:26 -0700739 }
740
741 return 0;
742}
743
744static unsigned int __smart_timing(unsigned time_ns, unsigned long lcd_clk)
745{
746 unsigned int t = (time_ns * (lcd_clk / 1000000) / 1000);
747 return (t == 0) ? 1 : t;
748}
749
750static void setup_smart_timing(struct pxafb_info *fbi,
751 struct fb_var_screeninfo *var)
752{
753 struct pxafb_mach_info *inf = fbi->dev->platform_data;
754 struct pxafb_mode_info *mode = &inf->modes[0];
755 unsigned long lclk = clk_get_rate(fbi->clk);
756 unsigned t1, t2, t3, t4;
757
758 t1 = max(mode->a0csrd_set_hld, mode->a0cswr_set_hld);
759 t2 = max(mode->rd_pulse_width, mode->wr_pulse_width);
760 t3 = mode->op_hold_time;
761 t4 = mode->cmd_inh_time;
762
763 fbi->reg_lccr1 =
764 LCCR1_DisWdth(var->xres) |
765 LCCR1_BegLnDel(__smart_timing(t1, lclk)) |
766 LCCR1_EndLnDel(__smart_timing(t2, lclk)) |
767 LCCR1_HorSnchWdth(__smart_timing(t3, lclk));
768
769 fbi->reg_lccr2 = LCCR2_DisHght(var->yres);
Eric Miaoc1f99c22008-12-08 18:35:03 +0800770 fbi->reg_lccr3 = fbi->lccr3 | LCCR3_PixClkDiv(__smart_timing(t4, lclk));
771 fbi->reg_lccr3 |= (var->sync & FB_SYNC_HOR_HIGH_ACT) ? LCCR3_HSP : 0;
772 fbi->reg_lccr3 |= (var->sync & FB_SYNC_VERT_HIGH_ACT) ? LCCR3_VSP : 0;
Eric Miao3c42a442008-04-30 00:52:26 -0700773
774 /* FIXME: make this configurable */
775 fbi->reg_cmdcr = 1;
776}
777
778static int pxafb_smart_thread(void *arg)
779{
Eric Miao7f1133c2008-04-30 00:52:27 -0700780 struct pxafb_info *fbi = arg;
Eric Miao3c42a442008-04-30 00:52:26 -0700781 struct pxafb_mach_info *inf = fbi->dev->platform_data;
782
783 if (!fbi || !inf->smart_update) {
784 pr_err("%s: not properly initialized, thread terminated\n",
785 __func__);
786 return -EINVAL;
787 }
788
789 pr_debug("%s(): task starting\n", __func__);
790
791 set_freezable();
792 while (!kthread_should_stop()) {
793
794 if (try_to_freeze())
795 continue;
796
Eric Miao07f651c2008-12-08 18:51:01 +0800797 mutex_lock(&fbi->ctrlr_lock);
798
Eric Miao3c42a442008-04-30 00:52:26 -0700799 if (fbi->state == C_ENABLE) {
800 inf->smart_update(&fbi->fb);
801 complete(&fbi->refresh_done);
802 }
803
Eric Miao07f651c2008-12-08 18:51:01 +0800804 mutex_unlock(&fbi->ctrlr_lock);
805
Eric Miao3c42a442008-04-30 00:52:26 -0700806 set_current_state(TASK_INTERRUPTIBLE);
807 schedule_timeout(30 * HZ / 1000);
808 }
809
810 pr_debug("%s(): task ending\n", __func__);
811 return 0;
812}
813
814static int pxafb_smart_init(struct pxafb_info *fbi)
815{
Eric Miao07df1c42008-12-04 11:14:11 +0800816 if (!(fbi->lccr0 & LCCR0_LCDT))
Eric Miao6cc4abe2008-11-11 21:47:07 +0800817 return 0;
818
Eric Miao07df1c42008-12-04 11:14:11 +0800819 fbi->smart_cmds = (uint16_t *) fbi->dma_buff->cmd_buff;
820 fbi->n_smart_cmds = 0;
821
822 init_completion(&fbi->command_done);
823 init_completion(&fbi->refresh_done);
824
Eric Miao3c42a442008-04-30 00:52:26 -0700825 fbi->smart_thread = kthread_run(pxafb_smart_thread, fbi,
826 "lcd_refresh");
827 if (IS_ERR(fbi->smart_thread)) {
Eric Miao07df1c42008-12-04 11:14:11 +0800828 pr_err("%s: unable to create kernel thread\n", __func__);
Eric Miao3c42a442008-04-30 00:52:26 -0700829 return PTR_ERR(fbi->smart_thread);
830 }
Eric Miaoa5718a12008-11-11 21:50:39 +0800831
Eric Miao3c42a442008-04-30 00:52:26 -0700832 return 0;
833}
834#else
835int pxafb_smart_queue(struct fb_info *info, uint16_t *cmds, int n_cmds)
836{
837 return 0;
838}
839
840int pxafb_smart_flush(struct fb_info *info)
841{
842 return 0;
843}
Eric Miao07df1c42008-12-04 11:14:11 +0800844
845static inline int pxafb_smart_init(struct pxafb_info *fbi) { return 0; }
846#endif /* CONFIG_FB_PXA_SMARTPANEL */
Eric Miao3c42a442008-04-30 00:52:26 -0700847
Eric Miao90eabbf2008-04-30 00:52:25 -0700848static void setup_parallel_timing(struct pxafb_info *fbi,
849 struct fb_var_screeninfo *var)
850{
851 unsigned int lines_per_panel, pcd = get_pcd(fbi, var->pixclock);
852
853 fbi->reg_lccr1 =
854 LCCR1_DisWdth(var->xres) +
855 LCCR1_HorSnchWdth(var->hsync_len) +
856 LCCR1_BegLnDel(var->left_margin) +
857 LCCR1_EndLnDel(var->right_margin);
858
859 /*
860 * If we have a dual scan LCD, we need to halve
861 * the YRES parameter.
862 */
863 lines_per_panel = var->yres;
864 if ((fbi->lccr0 & LCCR0_SDS) == LCCR0_Dual)
865 lines_per_panel /= 2;
866
867 fbi->reg_lccr2 =
868 LCCR2_DisHght(lines_per_panel) +
869 LCCR2_VrtSnchWdth(var->vsync_len) +
870 LCCR2_BegFrmDel(var->upper_margin) +
871 LCCR2_EndFrmDel(var->lower_margin);
872
873 fbi->reg_lccr3 = fbi->lccr3 |
874 (var->sync & FB_SYNC_HOR_HIGH_ACT ?
875 LCCR3_HorSnchH : LCCR3_HorSnchL) |
876 (var->sync & FB_SYNC_VERT_HIGH_ACT ?
877 LCCR3_VrtSnchH : LCCR3_VrtSnchL);
878
879 if (pcd) {
880 fbi->reg_lccr3 |= LCCR3_PixClkDiv(pcd);
881 set_hsync_time(fbi, pcd);
882 }
883}
884
Richard Purdieba44cd22005-09-09 13:10:03 -0700885/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 * pxafb_activate_var():
eric miaob0086ef2008-04-30 00:52:19 -0700887 * Configures LCD Controller based on entries in var parameter.
888 * Settings are only written to the controller if changes were made.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 */
eric miaob0086ef2008-04-30 00:52:19 -0700890static int pxafb_activate_var(struct fb_var_screeninfo *var,
891 struct pxafb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 u_long flags;
eric miao2c42dd82008-04-30 00:52:21 -0700894 size_t nbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896#if DEBUG_VAR
Eric Miao3c42a442008-04-30 00:52:26 -0700897 if (!(fbi->lccr0 & LCCR0_LCDT)) {
898 if (var->xres < 16 || var->xres > 1024)
899 printk(KERN_ERR "%s: invalid xres %d\n",
900 fbi->fb.fix.id, var->xres);
901 switch (var->bits_per_pixel) {
902 case 1:
903 case 2:
904 case 4:
905 case 8:
906 case 16:
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100907 case 24:
908 case 32:
Eric Miao3c42a442008-04-30 00:52:26 -0700909 break;
910 default:
911 printk(KERN_ERR "%s: invalid bit depth %d\n",
912 fbi->fb.fix.id, var->bits_per_pixel);
913 break;
914 }
915
916 if (var->hsync_len < 1 || var->hsync_len > 64)
917 printk(KERN_ERR "%s: invalid hsync_len %d\n",
918 fbi->fb.fix.id, var->hsync_len);
919 if (var->left_margin < 1 || var->left_margin > 255)
920 printk(KERN_ERR "%s: invalid left_margin %d\n",
921 fbi->fb.fix.id, var->left_margin);
922 if (var->right_margin < 1 || var->right_margin > 255)
923 printk(KERN_ERR "%s: invalid right_margin %d\n",
924 fbi->fb.fix.id, var->right_margin);
925 if (var->yres < 1 || var->yres > 1024)
926 printk(KERN_ERR "%s: invalid yres %d\n",
927 fbi->fb.fix.id, var->yres);
928 if (var->vsync_len < 1 || var->vsync_len > 64)
929 printk(KERN_ERR "%s: invalid vsync_len %d\n",
930 fbi->fb.fix.id, var->vsync_len);
931 if (var->upper_margin < 0 || var->upper_margin > 255)
932 printk(KERN_ERR "%s: invalid upper_margin %d\n",
933 fbi->fb.fix.id, var->upper_margin);
934 if (var->lower_margin < 0 || var->lower_margin > 255)
935 printk(KERN_ERR "%s: invalid lower_margin %d\n",
936 fbi->fb.fix.id, var->lower_margin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 /* Update shadow copy atomically */
940 local_irq_save(flags);
941
Eric Miao3c42a442008-04-30 00:52:26 -0700942#ifdef CONFIG_FB_PXA_SMARTPANEL
943 if (fbi->lccr0 & LCCR0_LCDT)
944 setup_smart_timing(fbi, var);
945 else
946#endif
947 setup_parallel_timing(fbi, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Eric Miao90eabbf2008-04-30 00:52:25 -0700949 fbi->reg_lccr0 = fbi->lccr0 |
950 (LCCR0_LDM | LCCR0_SFM | LCCR0_IUM | LCCR0_EFM |
951 LCCR0_QDM | LCCR0_BM | LCCR0_OUM);
952
953 fbi->reg_lccr3 |= pxafb_bpp_to_lccr3(var);
954
955 nbytes = var->yres * fbi->fb.fix.line_length;
956
957 if ((fbi->lccr0 & LCCR0_SDS) == LCCR0_Dual) {
958 nbytes = nbytes / 2;
eric miao2c42dd82008-04-30 00:52:21 -0700959 setup_frame_dma(fbi, DMA_LOWER, PAL_NONE, nbytes, nbytes);
Eric Miao90eabbf2008-04-30 00:52:25 -0700960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Eric Miao3c42a442008-04-30 00:52:26 -0700962 if ((var->bits_per_pixel >= 16) || (fbi->lccr0 & LCCR0_LCDT))
eric miao2c42dd82008-04-30 00:52:21 -0700963 setup_frame_dma(fbi, DMA_BASE, PAL_NONE, 0, nbytes);
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700964 else
eric miao2c42dd82008-04-30 00:52:21 -0700965 setup_frame_dma(fbi, DMA_BASE, PAL_BASE, 0, nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Eric Miaoa7535ba2008-04-30 00:52:24 -0700967 fbi->reg_lccr4 = lcd_readl(fbi, LCCR4) & ~LCCR4_PAL_FOR_MASK;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700968 fbi->reg_lccr4 |= (fbi->lccr4 & LCCR4_PAL_FOR_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 local_irq_restore(flags);
970
971 /*
972 * Only update the registers if the controller is enabled
973 * and something has changed.
974 */
Eric Miaoa7535ba2008-04-30 00:52:24 -0700975 if ((lcd_readl(fbi, LCCR0) != fbi->reg_lccr0) ||
976 (lcd_readl(fbi, LCCR1) != fbi->reg_lccr1) ||
977 (lcd_readl(fbi, LCCR2) != fbi->reg_lccr2) ||
978 (lcd_readl(fbi, LCCR3) != fbi->reg_lccr3) ||
979 (lcd_readl(fbi, FDADR0) != fbi->fdadr[0]) ||
980 (lcd_readl(fbi, FDADR1) != fbi->fdadr[1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 pxafb_schedule_work(fbi, C_REENABLE);
982
983 return 0;
984}
985
986/*
987 * NOTE! The following functions are purely helpers for set_ctrlr_state.
988 * Do not call them directly; set_ctrlr_state does the correct serialisation
989 * to ensure that things happen in the right way 100% of time time.
990 * -- rmk
991 */
992static inline void __pxafb_backlight_power(struct pxafb_info *fbi, int on)
993{
Russell Kingca5da712005-09-29 09:44:54 +0100994 pr_debug("pxafb: backlight o%s\n", on ? "n" : "ff");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Eric Miaoa5718a12008-11-11 21:50:39 +0800996 if (fbi->backlight_power)
997 fbi->backlight_power(on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998}
999
1000static inline void __pxafb_lcd_power(struct pxafb_info *fbi, int on)
1001{
Russell Kingca5da712005-09-29 09:44:54 +01001002 pr_debug("pxafb: LCD power o%s\n", on ? "n" : "ff");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Eric Miaoa5718a12008-11-11 21:50:39 +08001004 if (fbi->lcd_power)
1005 fbi->lcd_power(on, &fbi->fb.var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008static void pxafb_enable_controller(struct pxafb_info *fbi)
1009{
Russell Kingca5da712005-09-29 09:44:54 +01001010 pr_debug("pxafb: Enabling LCD controller\n");
eric miao2c42dd82008-04-30 00:52:21 -07001011 pr_debug("fdadr0 0x%08x\n", (unsigned int) fbi->fdadr[0]);
1012 pr_debug("fdadr1 0x%08x\n", (unsigned int) fbi->fdadr[1]);
Russell Kingca5da712005-09-29 09:44:54 +01001013 pr_debug("reg_lccr0 0x%08x\n", (unsigned int) fbi->reg_lccr0);
1014 pr_debug("reg_lccr1 0x%08x\n", (unsigned int) fbi->reg_lccr1);
1015 pr_debug("reg_lccr2 0x%08x\n", (unsigned int) fbi->reg_lccr2);
1016 pr_debug("reg_lccr3 0x%08x\n", (unsigned int) fbi->reg_lccr3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Nicolas Pitre8d372262005-08-10 16:45:13 +01001018 /* enable LCD controller clock */
Russell King72e35242007-08-20 10:18:42 +01001019 clk_enable(fbi->clk);
Nicolas Pitre8d372262005-08-10 16:45:13 +01001020
Eric Miao3c42a442008-04-30 00:52:26 -07001021 if (fbi->lccr0 & LCCR0_LCDT)
1022 return;
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 /* Sequence from 11.7.10 */
Eric Miaoa7535ba2008-04-30 00:52:24 -07001025 lcd_writel(fbi, LCCR3, fbi->reg_lccr3);
1026 lcd_writel(fbi, LCCR2, fbi->reg_lccr2);
1027 lcd_writel(fbi, LCCR1, fbi->reg_lccr1);
1028 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Eric Miaoa7535ba2008-04-30 00:52:24 -07001030 lcd_writel(fbi, FDADR0, fbi->fdadr[0]);
1031 lcd_writel(fbi, FDADR1, fbi->fdadr[1]);
1032 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 | LCCR0_ENB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
1035static void pxafb_disable_controller(struct pxafb_info *fbi)
1036{
eric miaoce4fb7b2008-04-30 00:52:21 -07001037 uint32_t lccr0;
1038
Eric Miao3c42a442008-04-30 00:52:26 -07001039#ifdef CONFIG_FB_PXA_SMARTPANEL
1040 if (fbi->lccr0 & LCCR0_LCDT) {
1041 wait_for_completion_timeout(&fbi->refresh_done,
1042 200 * HZ / 1000);
1043 return;
1044 }
1045#endif
1046
eric miaoce4fb7b2008-04-30 00:52:21 -07001047 /* Clear LCD Status Register */
Eric Miaoa7535ba2008-04-30 00:52:24 -07001048 lcd_writel(fbi, LCSR, 0xffffffff);
eric miaoce4fb7b2008-04-30 00:52:21 -07001049
Eric Miaoa7535ba2008-04-30 00:52:24 -07001050 lccr0 = lcd_readl(fbi, LCCR0) & ~LCCR0_LDM;
1051 lcd_writel(fbi, LCCR0, lccr0);
1052 lcd_writel(fbi, LCCR0, lccr0 | LCCR0_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Eric Miao2ba162b2008-04-30 00:52:24 -07001054 wait_for_completion_timeout(&fbi->disable_done, 200 * HZ / 1000);
Nicolas Pitre8d372262005-08-10 16:45:13 +01001055
1056 /* disable LCD controller clock */
Russell King72e35242007-08-20 10:18:42 +01001057 clk_disable(fbi->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059
1060/*
1061 * pxafb_handle_irq: Handle 'LCD DONE' interrupts.
1062 */
David Howells7d12e782006-10-05 14:55:46 +01001063static irqreturn_t pxafb_handle_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
1065 struct pxafb_info *fbi = dev_id;
Eric Miaoa7535ba2008-04-30 00:52:24 -07001066 unsigned int lccr0, lcsr = lcd_readl(fbi, LCSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 if (lcsr & LCSR_LDD) {
Eric Miaoa7535ba2008-04-30 00:52:24 -07001069 lccr0 = lcd_readl(fbi, LCCR0);
1070 lcd_writel(fbi, LCCR0, lccr0 | LCCR0_LDM);
Eric Miao2ba162b2008-04-30 00:52:24 -07001071 complete(&fbi->disable_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073
Eric Miao3c42a442008-04-30 00:52:26 -07001074#ifdef CONFIG_FB_PXA_SMARTPANEL
1075 if (lcsr & LCSR_CMD_INT)
1076 complete(&fbi->command_done);
1077#endif
1078
Eric Miaoa7535ba2008-04-30 00:52:24 -07001079 lcd_writel(fbi, LCSR, lcsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 return IRQ_HANDLED;
1081}
1082
1083/*
1084 * This function must be called from task context only, since it will
1085 * sleep when disabling the LCD controller, or if we get two contending
1086 * processes trying to alter state.
1087 */
1088static void set_ctrlr_state(struct pxafb_info *fbi, u_int state)
1089{
1090 u_int old_state;
1091
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -07001092 mutex_lock(&fbi->ctrlr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 old_state = fbi->state;
1095
1096 /*
1097 * Hack around fbcon initialisation.
1098 */
1099 if (old_state == C_STARTUP && state == C_REENABLE)
1100 state = C_ENABLE;
1101
1102 switch (state) {
1103 case C_DISABLE_CLKCHANGE:
1104 /*
1105 * Disable controller for clock change. If the
1106 * controller is already disabled, then do nothing.
1107 */
1108 if (old_state != C_DISABLE && old_state != C_DISABLE_PM) {
1109 fbi->state = state;
eric miaob0086ef2008-04-30 00:52:19 -07001110 /* TODO __pxafb_lcd_power(fbi, 0); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 pxafb_disable_controller(fbi);
1112 }
1113 break;
1114
1115 case C_DISABLE_PM:
1116 case C_DISABLE:
1117 /*
1118 * Disable controller
1119 */
1120 if (old_state != C_DISABLE) {
1121 fbi->state = state;
1122 __pxafb_backlight_power(fbi, 0);
1123 __pxafb_lcd_power(fbi, 0);
1124 if (old_state != C_DISABLE_CLKCHANGE)
1125 pxafb_disable_controller(fbi);
1126 }
1127 break;
1128
1129 case C_ENABLE_CLKCHANGE:
1130 /*
1131 * Enable the controller after clock change. Only
1132 * do this if we were disabled for the clock change.
1133 */
1134 if (old_state == C_DISABLE_CLKCHANGE) {
1135 fbi->state = C_ENABLE;
1136 pxafb_enable_controller(fbi);
eric miaob0086ef2008-04-30 00:52:19 -07001137 /* TODO __pxafb_lcd_power(fbi, 1); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 }
1139 break;
1140
1141 case C_REENABLE:
1142 /*
1143 * Re-enable the controller only if it was already
1144 * enabled. This is so we reprogram the control
1145 * registers.
1146 */
1147 if (old_state == C_ENABLE) {
Richard Purdied14b2722006-09-20 22:54:21 +01001148 __pxafb_lcd_power(fbi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 pxafb_disable_controller(fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 pxafb_enable_controller(fbi);
Richard Purdied14b2722006-09-20 22:54:21 +01001151 __pxafb_lcd_power(fbi, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
1153 break;
1154
1155 case C_ENABLE_PM:
1156 /*
1157 * Re-enable the controller after PM. This is not
1158 * perfect - think about the case where we were doing
1159 * a clock change, and we suspended half-way through.
1160 */
1161 if (old_state != C_DISABLE_PM)
1162 break;
1163 /* fall through */
1164
1165 case C_ENABLE:
1166 /*
1167 * Power up the LCD screen, enable controller, and
1168 * turn on the backlight.
1169 */
1170 if (old_state != C_ENABLE) {
1171 fbi->state = C_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 pxafb_enable_controller(fbi);
1173 __pxafb_lcd_power(fbi, 1);
1174 __pxafb_backlight_power(fbi, 1);
1175 }
1176 break;
1177 }
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -07001178 mutex_unlock(&fbi->ctrlr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
1181/*
1182 * Our LCD controller task (which is called when we blank or unblank)
1183 * via keventd.
1184 */
David Howells6d5aefb2006-12-05 19:36:26 +00001185static void pxafb_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
David Howells6d5aefb2006-12-05 19:36:26 +00001187 struct pxafb_info *fbi =
1188 container_of(work, struct pxafb_info, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 u_int state = xchg(&fbi->task_state, -1);
1190
1191 set_ctrlr_state(fbi, state);
1192}
1193
1194#ifdef CONFIG_CPU_FREQ
1195/*
1196 * CPU clock speed change handler. We need to adjust the LCD timing
1197 * parameters when the CPU clock is adjusted by the power management
1198 * subsystem.
1199 *
1200 * TODO: Determine why f->new != 10*get_lclk_frequency_10khz()
1201 */
1202static int
1203pxafb_freq_transition(struct notifier_block *nb, unsigned long val, void *data)
1204{
1205 struct pxafb_info *fbi = TO_INF(nb, freq_transition);
eric miaob0086ef2008-04-30 00:52:19 -07001206 /* TODO struct cpufreq_freqs *f = data; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 u_int pcd;
1208
1209 switch (val) {
1210 case CPUFREQ_PRECHANGE:
1211 set_ctrlr_state(fbi, C_DISABLE_CLKCHANGE);
1212 break;
1213
1214 case CPUFREQ_POSTCHANGE:
Russell King72e35242007-08-20 10:18:42 +01001215 pcd = get_pcd(fbi, fbi->fb.var.pixclock);
Richard Purdieba44cd22005-09-09 13:10:03 -07001216 set_hsync_time(fbi, pcd);
eric miaob0086ef2008-04-30 00:52:19 -07001217 fbi->reg_lccr3 = (fbi->reg_lccr3 & ~0xff) |
1218 LCCR3_PixClkDiv(pcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 set_ctrlr_state(fbi, C_ENABLE_CLKCHANGE);
1220 break;
1221 }
1222 return 0;
1223}
1224
1225static int
1226pxafb_freq_policy(struct notifier_block *nb, unsigned long val, void *data)
1227{
1228 struct pxafb_info *fbi = TO_INF(nb, freq_policy);
1229 struct fb_var_screeninfo *var = &fbi->fb.var;
1230 struct cpufreq_policy *policy = data;
1231
1232 switch (val) {
1233 case CPUFREQ_ADJUST:
1234 case CPUFREQ_INCOMPATIBLE:
Holger Schurigac2bf5b2008-02-11 16:52:30 +01001235 pr_debug("min dma period: %d ps, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 "new clock %d kHz\n", pxafb_display_dma_period(var),
1237 policy->max);
eric miaob0086ef2008-04-30 00:52:19 -07001238 /* TODO: fill in min/max values */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
1241 return 0;
1242}
1243#endif
1244
1245#ifdef CONFIG_PM
1246/*
1247 * Power management hooks. Note that we won't be called from IRQ context,
1248 * unlike the blank functions above, so we may sleep.
1249 */
Russell King3ae5eae2005-11-09 22:32:44 +00001250static int pxafb_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
Russell King3ae5eae2005-11-09 22:32:44 +00001252 struct pxafb_info *fbi = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Russell King9480e302005-10-28 09:52:56 -07001254 set_ctrlr_state(fbi, C_DISABLE_PM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return 0;
1256}
1257
Russell King3ae5eae2005-11-09 22:32:44 +00001258static int pxafb_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Russell King3ae5eae2005-11-09 22:32:44 +00001260 struct pxafb_info *fbi = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Russell King9480e302005-10-28 09:52:56 -07001262 set_ctrlr_state(fbi, C_ENABLE_PM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 return 0;
1264}
1265#else
1266#define pxafb_suspend NULL
1267#define pxafb_resume NULL
1268#endif
1269
1270/*
1271 * pxafb_map_video_memory():
1272 * Allocates the DRAM memory for the frame buffer. This buffer is
1273 * remapped into a non-cached, non-buffered, memory region to
1274 * allow palette and pixel writes to occur without flushing the
1275 * cache. Once this area is remapped, all virtual memory
1276 * access to the video memory should occur at the new region.
1277 */
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001278static int __devinit pxafb_map_video_memory(struct pxafb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 /*
1281 * We reserve one page for the palette, plus the size
1282 * of the framebuffer.
1283 */
Eric Miao3c42a442008-04-30 00:52:26 -07001284 fbi->video_offset = PAGE_ALIGN(sizeof(struct pxafb_dma_buff));
1285 fbi->map_size = PAGE_ALIGN(fbi->fb.fix.smem_len + fbi->video_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 fbi->map_cpu = dma_alloc_writecombine(fbi->dev, fbi->map_size,
1287 &fbi->map_dma, GFP_KERNEL);
1288
1289 if (fbi->map_cpu) {
1290 /* prevent initial garbage on screen */
1291 memset(fbi->map_cpu, 0, fbi->map_size);
Eric Miao3c42a442008-04-30 00:52:26 -07001292 fbi->fb.screen_base = fbi->map_cpu + fbi->video_offset;
1293 fbi->screen_dma = fbi->map_dma + fbi->video_offset;
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 /*
1296 * FIXME: this is actually the wrong thing to place in
1297 * smem_start. But fbdev suffers from the problem that
1298 * it needs an API which doesn't exist (in this case,
1299 * dma_writecombine_mmap)
1300 */
1301 fbi->fb.fix.smem_start = fbi->screen_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 fbi->palette_size = fbi->fb.var.bits_per_pixel == 8 ? 256 : 16;
1303
Eric Miao3c42a442008-04-30 00:52:26 -07001304 fbi->dma_buff = (void *) fbi->map_cpu;
eric miao2c42dd82008-04-30 00:52:21 -07001305 fbi->dma_buff_phys = fbi->map_dma;
Eric Miao3c42a442008-04-30 00:52:26 -07001306 fbi->palette_cpu = (u16 *) fbi->dma_buff->palette;
1307
Ian Moltone84e9542008-07-21 11:02:40 +01001308 pr_debug("pxafb: palette_mem_size = 0x%08x\n", fbi->palette_size*sizeof(u16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 }
1310
1311 return fbi->map_cpu ? 0 : -ENOMEM;
1312}
1313
eric miao84f43c32008-04-30 00:52:22 -07001314static void pxafb_decode_mode_info(struct pxafb_info *fbi,
1315 struct pxafb_mode_info *modes,
1316 unsigned int num_modes)
1317{
1318 unsigned int i, smemlen;
1319
1320 pxafb_setmode(&fbi->fb.var, &modes[0]);
1321
1322 for (i = 0; i < num_modes; i++) {
1323 smemlen = modes[i].xres * modes[i].yres * modes[i].bpp / 8;
1324 if (smemlen > fbi->fb.fix.smem_len)
1325 fbi->fb.fix.smem_len = smemlen;
1326 }
1327}
1328
Guennadi Liakhovetskiebdf9822008-05-05 15:31:44 +01001329static void pxafb_decode_mach_info(struct pxafb_info *fbi,
1330 struct pxafb_mach_info *inf)
eric miao84f43c32008-04-30 00:52:22 -07001331{
1332 unsigned int lcd_conn = inf->lcd_conn;
1333
1334 fbi->cmap_inverse = inf->cmap_inverse;
1335 fbi->cmap_static = inf->cmap_static;
1336
Eric Miao1ec26db2008-11-11 21:45:57 +08001337 switch (lcd_conn & LCD_TYPE_MASK) {
eric miao84f43c32008-04-30 00:52:22 -07001338 case LCD_TYPE_MONO_STN:
1339 fbi->lccr0 = LCCR0_CMS;
1340 break;
1341 case LCD_TYPE_MONO_DSTN:
1342 fbi->lccr0 = LCCR0_CMS | LCCR0_SDS;
1343 break;
1344 case LCD_TYPE_COLOR_STN:
1345 fbi->lccr0 = 0;
1346 break;
1347 case LCD_TYPE_COLOR_DSTN:
1348 fbi->lccr0 = LCCR0_SDS;
1349 break;
1350 case LCD_TYPE_COLOR_TFT:
1351 fbi->lccr0 = LCCR0_PAS;
1352 break;
1353 case LCD_TYPE_SMART_PANEL:
1354 fbi->lccr0 = LCCR0_LCDT | LCCR0_PAS;
1355 break;
1356 default:
1357 /* fall back to backward compatibility way */
1358 fbi->lccr0 = inf->lccr0;
1359 fbi->lccr3 = inf->lccr3;
1360 fbi->lccr4 = inf->lccr4;
Guennadi Liakhovetskiebdf9822008-05-05 15:31:44 +01001361 goto decode_mode;
eric miao84f43c32008-04-30 00:52:22 -07001362 }
1363
1364 if (lcd_conn == LCD_MONO_STN_8BPP)
1365 fbi->lccr0 |= LCCR0_DPD;
1366
Eric Miao9a1ac7e2008-08-15 02:50:44 -04001367 fbi->lccr0 |= (lcd_conn & LCD_ALTERNATE_MAPPING) ? LCCR0_LDDALT : 0;
1368
eric miao84f43c32008-04-30 00:52:22 -07001369 fbi->lccr3 = LCCR3_Acb((inf->lcd_conn >> 10) & 0xff);
1370 fbi->lccr3 |= (lcd_conn & LCD_BIAS_ACTIVE_LOW) ? LCCR3_OEP : 0;
1371 fbi->lccr3 |= (lcd_conn & LCD_PCLK_EDGE_FALL) ? LCCR3_PCP : 0;
1372
Guennadi Liakhovetskiebdf9822008-05-05 15:31:44 +01001373decode_mode:
eric miao84f43c32008-04-30 00:52:22 -07001374 pxafb_decode_mode_info(fbi, inf->modes, inf->num_modes);
eric miao84f43c32008-04-30 00:52:22 -07001375}
1376
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001377static struct pxafb_info * __devinit pxafb_init_fbinfo(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
1379 struct pxafb_info *fbi;
1380 void *addr;
1381 struct pxafb_mach_info *inf = dev->platform_data;
1382
1383 /* Alloc the pxafb_info and pseudo_palette in one step */
1384 fbi = kmalloc(sizeof(struct pxafb_info) + sizeof(u32) * 16, GFP_KERNEL);
1385 if (!fbi)
1386 return NULL;
1387
1388 memset(fbi, 0, sizeof(struct pxafb_info));
1389 fbi->dev = dev;
1390
Russell King72e35242007-08-20 10:18:42 +01001391 fbi->clk = clk_get(dev, "LCDCLK");
1392 if (IS_ERR(fbi->clk)) {
1393 kfree(fbi);
1394 return NULL;
1395 }
1396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 strcpy(fbi->fb.fix.id, PXA_NAME);
1398
1399 fbi->fb.fix.type = FB_TYPE_PACKED_PIXELS;
1400 fbi->fb.fix.type_aux = 0;
1401 fbi->fb.fix.xpanstep = 0;
1402 fbi->fb.fix.ypanstep = 0;
1403 fbi->fb.fix.ywrapstep = 0;
1404 fbi->fb.fix.accel = FB_ACCEL_NONE;
1405
1406 fbi->fb.var.nonstd = 0;
1407 fbi->fb.var.activate = FB_ACTIVATE_NOW;
1408 fbi->fb.var.height = -1;
1409 fbi->fb.var.width = -1;
1410 fbi->fb.var.accel_flags = 0;
1411 fbi->fb.var.vmode = FB_VMODE_NONINTERLACED;
1412
1413 fbi->fb.fbops = &pxafb_ops;
1414 fbi->fb.flags = FBINFO_DEFAULT;
1415 fbi->fb.node = -1;
1416
1417 addr = fbi;
1418 addr = addr + sizeof(struct pxafb_info);
1419 fbi->fb.pseudo_palette = addr;
1420
eric miaob0086ef2008-04-30 00:52:19 -07001421 fbi->state = C_STARTUP;
1422 fbi->task_state = (u_char)-1;
Richard Purdied14b2722006-09-20 22:54:21 +01001423
eric miao84f43c32008-04-30 00:52:22 -07001424 pxafb_decode_mach_info(fbi, inf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426 init_waitqueue_head(&fbi->ctrlr_wait);
David Howells6d5aefb2006-12-05 19:36:26 +00001427 INIT_WORK(&fbi->task, pxafb_task);
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -07001428 mutex_init(&fbi->ctrlr_lock);
Eric Miao2ba162b2008-04-30 00:52:24 -07001429 init_completion(&fbi->disable_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 return fbi;
1432}
1433
1434#ifdef CONFIG_FB_PXA_PARAMETERS
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001435static int __devinit parse_opt_mode(struct device *dev, const char *this_opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
1437 struct pxafb_mach_info *inf = dev->platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
eric miao817daf12008-04-30 00:52:18 -07001439 const char *name = this_opt+5;
1440 unsigned int namelen = strlen(name);
1441 int res_specified = 0, bpp_specified = 0;
1442 unsigned int xres = 0, yres = 0, bpp = 0;
1443 int yres_specified = 0;
1444 int i;
1445 for (i = namelen-1; i >= 0; i--) {
1446 switch (name[i]) {
1447 case '-':
1448 namelen = i;
1449 if (!bpp_specified && !yres_specified) {
1450 bpp = simple_strtoul(&name[i+1], NULL, 0);
1451 bpp_specified = 1;
1452 } else
1453 goto done;
1454 break;
1455 case 'x':
1456 if (!yres_specified) {
1457 yres = simple_strtoul(&name[i+1], NULL, 0);
1458 yres_specified = 1;
1459 } else
1460 goto done;
1461 break;
1462 case '0' ... '9':
1463 break;
1464 default:
1465 goto done;
1466 }
1467 }
1468 if (i < 0 && yres_specified) {
1469 xres = simple_strtoul(name, NULL, 0);
1470 res_specified = 1;
1471 }
1472done:
1473 if (res_specified) {
1474 dev_info(dev, "overriding resolution: %dx%d\n", xres, yres);
1475 inf->modes[0].xres = xres; inf->modes[0].yres = yres;
1476 }
1477 if (bpp_specified)
1478 switch (bpp) {
1479 case 1:
1480 case 2:
1481 case 4:
1482 case 8:
1483 case 16:
1484 inf->modes[0].bpp = bpp;
1485 dev_info(dev, "overriding bit depth: %d\n", bpp);
1486 break;
1487 default:
1488 dev_err(dev, "Depth %d is not valid\n", bpp);
1489 return -EINVAL;
1490 }
1491 return 0;
1492}
1493
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001494static int __devinit parse_opt(struct device *dev, char *this_opt)
eric miao817daf12008-04-30 00:52:18 -07001495{
1496 struct pxafb_mach_info *inf = dev->platform_data;
1497 struct pxafb_mode_info *mode = &inf->modes[0];
1498 char s[64];
1499
1500 s[0] = '\0';
1501
1502 if (!strncmp(this_opt, "mode:", 5)) {
1503 return parse_opt_mode(dev, this_opt);
1504 } else if (!strncmp(this_opt, "pixclock:", 9)) {
1505 mode->pixclock = simple_strtoul(this_opt+9, NULL, 0);
1506 sprintf(s, "pixclock: %ld\n", mode->pixclock);
1507 } else if (!strncmp(this_opt, "left:", 5)) {
1508 mode->left_margin = simple_strtoul(this_opt+5, NULL, 0);
1509 sprintf(s, "left: %u\n", mode->left_margin);
1510 } else if (!strncmp(this_opt, "right:", 6)) {
1511 mode->right_margin = simple_strtoul(this_opt+6, NULL, 0);
1512 sprintf(s, "right: %u\n", mode->right_margin);
1513 } else if (!strncmp(this_opt, "upper:", 6)) {
1514 mode->upper_margin = simple_strtoul(this_opt+6, NULL, 0);
1515 sprintf(s, "upper: %u\n", mode->upper_margin);
1516 } else if (!strncmp(this_opt, "lower:", 6)) {
1517 mode->lower_margin = simple_strtoul(this_opt+6, NULL, 0);
1518 sprintf(s, "lower: %u\n", mode->lower_margin);
1519 } else if (!strncmp(this_opt, "hsynclen:", 9)) {
1520 mode->hsync_len = simple_strtoul(this_opt+9, NULL, 0);
1521 sprintf(s, "hsynclen: %u\n", mode->hsync_len);
1522 } else if (!strncmp(this_opt, "vsynclen:", 9)) {
1523 mode->vsync_len = simple_strtoul(this_opt+9, NULL, 0);
1524 sprintf(s, "vsynclen: %u\n", mode->vsync_len);
1525 } else if (!strncmp(this_opt, "hsync:", 6)) {
1526 if (simple_strtoul(this_opt+6, NULL, 0) == 0) {
1527 sprintf(s, "hsync: Active Low\n");
1528 mode->sync &= ~FB_SYNC_HOR_HIGH_ACT;
1529 } else {
1530 sprintf(s, "hsync: Active High\n");
1531 mode->sync |= FB_SYNC_HOR_HIGH_ACT;
1532 }
1533 } else if (!strncmp(this_opt, "vsync:", 6)) {
1534 if (simple_strtoul(this_opt+6, NULL, 0) == 0) {
1535 sprintf(s, "vsync: Active Low\n");
1536 mode->sync &= ~FB_SYNC_VERT_HIGH_ACT;
1537 } else {
1538 sprintf(s, "vsync: Active High\n");
1539 mode->sync |= FB_SYNC_VERT_HIGH_ACT;
1540 }
1541 } else if (!strncmp(this_opt, "dpc:", 4)) {
1542 if (simple_strtoul(this_opt+4, NULL, 0) == 0) {
1543 sprintf(s, "double pixel clock: false\n");
1544 inf->lccr3 &= ~LCCR3_DPC;
1545 } else {
1546 sprintf(s, "double pixel clock: true\n");
1547 inf->lccr3 |= LCCR3_DPC;
1548 }
1549 } else if (!strncmp(this_opt, "outputen:", 9)) {
1550 if (simple_strtoul(this_opt+9, NULL, 0) == 0) {
1551 sprintf(s, "output enable: active low\n");
1552 inf->lccr3 = (inf->lccr3 & ~LCCR3_OEP) | LCCR3_OutEnL;
1553 } else {
1554 sprintf(s, "output enable: active high\n");
1555 inf->lccr3 = (inf->lccr3 & ~LCCR3_OEP) | LCCR3_OutEnH;
1556 }
1557 } else if (!strncmp(this_opt, "pixclockpol:", 12)) {
1558 if (simple_strtoul(this_opt+12, NULL, 0) == 0) {
1559 sprintf(s, "pixel clock polarity: falling edge\n");
1560 inf->lccr3 = (inf->lccr3 & ~LCCR3_PCP) | LCCR3_PixFlEdg;
1561 } else {
1562 sprintf(s, "pixel clock polarity: rising edge\n");
1563 inf->lccr3 = (inf->lccr3 & ~LCCR3_PCP) | LCCR3_PixRsEdg;
1564 }
1565 } else if (!strncmp(this_opt, "color", 5)) {
1566 inf->lccr0 = (inf->lccr0 & ~LCCR0_CMS) | LCCR0_Color;
1567 } else if (!strncmp(this_opt, "mono", 4)) {
1568 inf->lccr0 = (inf->lccr0 & ~LCCR0_CMS) | LCCR0_Mono;
1569 } else if (!strncmp(this_opt, "active", 6)) {
1570 inf->lccr0 = (inf->lccr0 & ~LCCR0_PAS) | LCCR0_Act;
1571 } else if (!strncmp(this_opt, "passive", 7)) {
1572 inf->lccr0 = (inf->lccr0 & ~LCCR0_PAS) | LCCR0_Pas;
1573 } else if (!strncmp(this_opt, "single", 6)) {
1574 inf->lccr0 = (inf->lccr0 & ~LCCR0_SDS) | LCCR0_Sngl;
1575 } else if (!strncmp(this_opt, "dual", 4)) {
1576 inf->lccr0 = (inf->lccr0 & ~LCCR0_SDS) | LCCR0_Dual;
1577 } else if (!strncmp(this_opt, "4pix", 4)) {
1578 inf->lccr0 = (inf->lccr0 & ~LCCR0_DPD) | LCCR0_4PixMono;
1579 } else if (!strncmp(this_opt, "8pix", 4)) {
1580 inf->lccr0 = (inf->lccr0 & ~LCCR0_DPD) | LCCR0_8PixMono;
1581 } else {
1582 dev_err(dev, "unknown option: %s\n", this_opt);
1583 return -EINVAL;
1584 }
1585
1586 if (s[0] != '\0')
1587 dev_info(dev, "override %s", s);
1588
1589 return 0;
1590}
1591
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001592static int __devinit pxafb_parse_options(struct device *dev, char *options)
eric miao817daf12008-04-30 00:52:18 -07001593{
1594 char *this_opt;
1595 int ret;
1596
1597 if (!options || !*options)
1598 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
1600 dev_dbg(dev, "options are \"%s\"\n", options ? options : "null");
1601
1602 /* could be made table driven or similar?... */
eric miao817daf12008-04-30 00:52:18 -07001603 while ((this_opt = strsep(&options, ",")) != NULL) {
1604 ret = parse_opt(dev, this_opt);
1605 if (ret)
1606 return ret;
1607 }
1608 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609}
eric miao92ac73c2008-04-30 00:52:20 -07001610
1611static char g_options[256] __devinitdata = "";
1612
Jaya Kumarf1edfc42008-06-22 04:27:25 +01001613#ifndef MODULE
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001614static int __init pxafb_setup_options(void)
eric miao92ac73c2008-04-30 00:52:20 -07001615{
1616 char *options = NULL;
1617
1618 if (fb_get_options("pxafb", &options))
1619 return -ENODEV;
1620
1621 if (options)
1622 strlcpy(g_options, options, sizeof(g_options));
1623
1624 return 0;
1625}
1626#else
1627#define pxafb_setup_options() (0)
1628
1629module_param_string(options, g_options, sizeof(g_options), 0);
1630MODULE_PARM_DESC(options, "LCD parameters (see Documentation/fb/pxafb.txt)");
1631#endif
1632
1633#else
1634#define pxafb_parse_options(...) (0)
1635#define pxafb_setup_options() (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636#endif
1637
Eric Miao4f3e2662008-08-16 03:50:51 -04001638#ifdef DEBUG_VAR
1639/* Check for various illegal bit-combinations. Currently only
1640 * a warning is given. */
1641static void __devinit pxafb_check_options(struct device *dev,
1642 struct pxafb_mach_info *inf)
1643{
1644 if (inf->lcd_conn)
1645 return;
1646
1647 if (inf->lccr0 & LCCR0_INVALID_CONFIG_MASK)
1648 dev_warn(dev, "machine LCCR0 setting contains "
1649 "illegal bits: %08x\n",
1650 inf->lccr0 & LCCR0_INVALID_CONFIG_MASK);
1651 if (inf->lccr3 & LCCR3_INVALID_CONFIG_MASK)
1652 dev_warn(dev, "machine LCCR3 setting contains "
1653 "illegal bits: %08x\n",
1654 inf->lccr3 & LCCR3_INVALID_CONFIG_MASK);
1655 if (inf->lccr0 & LCCR0_DPD &&
1656 ((inf->lccr0 & LCCR0_PAS) != LCCR0_Pas ||
1657 (inf->lccr0 & LCCR0_SDS) != LCCR0_Sngl ||
1658 (inf->lccr0 & LCCR0_CMS) != LCCR0_Mono))
1659 dev_warn(dev, "Double Pixel Data (DPD) mode is "
1660 "only valid in passive mono"
1661 " single panel mode\n");
1662 if ((inf->lccr0 & LCCR0_PAS) == LCCR0_Act &&
1663 (inf->lccr0 & LCCR0_SDS) == LCCR0_Dual)
1664 dev_warn(dev, "Dual panel only valid in passive mode\n");
1665 if ((inf->lccr0 & LCCR0_PAS) == LCCR0_Pas &&
1666 (inf->modes->upper_margin || inf->modes->lower_margin))
1667 dev_warn(dev, "Upper and lower margins must be 0 in "
1668 "passive mode\n");
1669}
1670#else
1671#define pxafb_check_options(...) do {} while (0)
1672#endif
1673
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001674static int __devinit pxafb_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
1676 struct pxafb_info *fbi;
1677 struct pxafb_mach_info *inf;
eric miaoce4fb7b2008-04-30 00:52:21 -07001678 struct resource *r;
1679 int irq, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Richard Purdie2cbbb3b2006-03-31 02:31:53 -08001681 dev_dbg(&dev->dev, "pxafb_probe\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Russell King3ae5eae2005-11-09 22:32:44 +00001683 inf = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 ret = -ENOMEM;
1685 fbi = NULL;
1686 if (!inf)
1687 goto failed;
1688
Russell King3ae5eae2005-11-09 22:32:44 +00001689 ret = pxafb_parse_options(&dev->dev, g_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 if (ret < 0)
1691 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Eric Miao4f3e2662008-08-16 03:50:51 -04001693 pxafb_check_options(&dev->dev, inf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
eric miaob0086ef2008-04-30 00:52:19 -07001695 dev_dbg(&dev->dev, "got a %dx%dx%d LCD\n",
1696 inf->modes->xres,
1697 inf->modes->yres,
1698 inf->modes->bpp);
1699 if (inf->modes->xres == 0 ||
1700 inf->modes->yres == 0 ||
1701 inf->modes->bpp == 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00001702 dev_err(&dev->dev, "Invalid resolution or bit depth\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 ret = -EINVAL;
1704 goto failed;
1705 }
Eric Miaoa5718a12008-11-11 21:50:39 +08001706
Russell King3ae5eae2005-11-09 22:32:44 +00001707 fbi = pxafb_init_fbinfo(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 if (!fbi) {
eric miaob0086ef2008-04-30 00:52:19 -07001709 /* only reason for pxafb_init_fbinfo to fail is kmalloc */
Russell King3ae5eae2005-11-09 22:32:44 +00001710 dev_err(&dev->dev, "Failed to initialize framebuffer device\n");
eric miaob0086ef2008-04-30 00:52:19 -07001711 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 goto failed;
1713 }
1714
Eric Miaoa5718a12008-11-11 21:50:39 +08001715 fbi->backlight_power = inf->pxafb_backlight_power;
1716 fbi->lcd_power = inf->pxafb_lcd_power;
1717
eric miaoce4fb7b2008-04-30 00:52:21 -07001718 r = platform_get_resource(dev, IORESOURCE_MEM, 0);
1719 if (r == NULL) {
1720 dev_err(&dev->dev, "no I/O memory resource defined\n");
1721 ret = -ENODEV;
Jaya Kumaree984762008-06-22 04:27:26 +01001722 goto failed_fbi;
eric miaoce4fb7b2008-04-30 00:52:21 -07001723 }
1724
1725 r = request_mem_region(r->start, r->end - r->start + 1, dev->name);
1726 if (r == NULL) {
1727 dev_err(&dev->dev, "failed to request I/O memory\n");
1728 ret = -EBUSY;
Jaya Kumaree984762008-06-22 04:27:26 +01001729 goto failed_fbi;
eric miaoce4fb7b2008-04-30 00:52:21 -07001730 }
1731
1732 fbi->mmio_base = ioremap(r->start, r->end - r->start + 1);
1733 if (fbi->mmio_base == NULL) {
1734 dev_err(&dev->dev, "failed to map I/O memory\n");
1735 ret = -EBUSY;
1736 goto failed_free_res;
1737 }
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 /* Initialize video memory */
1740 ret = pxafb_map_video_memory(fbi);
1741 if (ret) {
Russell King3ae5eae2005-11-09 22:32:44 +00001742 dev_err(&dev->dev, "Failed to allocate video RAM: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 ret = -ENOMEM;
eric miaoce4fb7b2008-04-30 00:52:21 -07001744 goto failed_free_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
eric miaoce4fb7b2008-04-30 00:52:21 -07001747 irq = platform_get_irq(dev, 0);
1748 if (irq < 0) {
1749 dev_err(&dev->dev, "no IRQ defined\n");
1750 ret = -ENODEV;
1751 goto failed_free_mem;
1752 }
1753
1754 ret = request_irq(irq, pxafb_handle_irq, IRQF_DISABLED, "LCD", fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (ret) {
Russell King3ae5eae2005-11-09 22:32:44 +00001756 dev_err(&dev->dev, "request_irq failed: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 ret = -EBUSY;
eric miaoce4fb7b2008-04-30 00:52:21 -07001758 goto failed_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 }
1760
Eric Miao3c42a442008-04-30 00:52:26 -07001761 ret = pxafb_smart_init(fbi);
1762 if (ret) {
1763 dev_err(&dev->dev, "failed to initialize smartpanel\n");
1764 goto failed_free_irq;
1765 }
Eric Miao07df1c42008-12-04 11:14:11 +08001766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 /*
1768 * This makes sure that our colour bitfield
1769 * descriptors are correctly initialised.
1770 */
Jaya Kumaree984762008-06-22 04:27:26 +01001771 ret = pxafb_check_var(&fbi->fb.var, &fbi->fb);
1772 if (ret) {
1773 dev_err(&dev->dev, "failed to get suitable mode\n");
1774 goto failed_free_irq;
1775 }
1776
1777 ret = pxafb_set_par(&fbi->fb);
1778 if (ret) {
1779 dev_err(&dev->dev, "Failed to set parameters\n");
1780 goto failed_free_irq;
1781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Russell King3ae5eae2005-11-09 22:32:44 +00001783 platform_set_drvdata(dev, fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
1785 ret = register_framebuffer(&fbi->fb);
1786 if (ret < 0) {
eric miaob0086ef2008-04-30 00:52:19 -07001787 dev_err(&dev->dev,
1788 "Failed to register framebuffer device: %d\n", ret);
Jaya Kumaree984762008-06-22 04:27:26 +01001789 goto failed_free_cmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 }
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792#ifdef CONFIG_CPU_FREQ
1793 fbi->freq_transition.notifier_call = pxafb_freq_transition;
1794 fbi->freq_policy.notifier_call = pxafb_freq_policy;
eric miaob0086ef2008-04-30 00:52:19 -07001795 cpufreq_register_notifier(&fbi->freq_transition,
1796 CPUFREQ_TRANSITION_NOTIFIER);
1797 cpufreq_register_notifier(&fbi->freq_policy,
1798 CPUFREQ_POLICY_NOTIFIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799#endif
1800
1801 /*
1802 * Ok, now enable the LCD controller
1803 */
1804 set_ctrlr_state(fbi, C_ENABLE);
1805
1806 return 0;
1807
Jaya Kumaree984762008-06-22 04:27:26 +01001808failed_free_cmap:
1809 if (fbi->fb.cmap.len)
1810 fb_dealloc_cmap(&fbi->fb.cmap);
eric miaoce4fb7b2008-04-30 00:52:21 -07001811failed_free_irq:
1812 free_irq(irq, fbi);
eric miaoce4fb7b2008-04-30 00:52:21 -07001813failed_free_mem:
1814 dma_free_writecombine(&dev->dev, fbi->map_size,
1815 fbi->map_cpu, fbi->map_dma);
Jaya Kumaree984762008-06-22 04:27:26 +01001816failed_free_io:
1817 iounmap(fbi->mmio_base);
1818failed_free_res:
1819 release_mem_region(r->start, r->end - r->start + 1);
1820failed_fbi:
1821 clk_put(fbi->clk);
Russell King3ae5eae2005-11-09 22:32:44 +00001822 platform_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 kfree(fbi);
Jaya Kumaree984762008-06-22 04:27:26 +01001824failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 return ret;
1826}
1827
Jaya Kumar9f17f282008-06-22 04:27:28 +01001828static int __devexit pxafb_remove(struct platform_device *dev)
1829{
1830 struct pxafb_info *fbi = platform_get_drvdata(dev);
1831 struct resource *r;
1832 int irq;
1833 struct fb_info *info;
1834
1835 if (!fbi)
1836 return 0;
1837
1838 info = &fbi->fb;
1839
1840 unregister_framebuffer(info);
1841
1842 pxafb_disable_controller(fbi);
1843
1844 if (fbi->fb.cmap.len)
1845 fb_dealloc_cmap(&fbi->fb.cmap);
1846
1847 irq = platform_get_irq(dev, 0);
1848 free_irq(irq, fbi);
1849
1850 dma_free_writecombine(&dev->dev, fbi->map_size,
1851 fbi->map_cpu, fbi->map_dma);
1852
1853 iounmap(fbi->mmio_base);
1854
1855 r = platform_get_resource(dev, IORESOURCE_MEM, 0);
1856 release_mem_region(r->start, r->end - r->start + 1);
1857
1858 clk_put(fbi->clk);
1859 kfree(fbi);
1860
1861 return 0;
1862}
1863
Russell King3ae5eae2005-11-09 22:32:44 +00001864static struct platform_driver pxafb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 .probe = pxafb_probe,
Jaya Kumar9f17f282008-06-22 04:27:28 +01001866 .remove = pxafb_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 .suspend = pxafb_suspend,
1868 .resume = pxafb_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001869 .driver = {
Jaya Kumar9f17f282008-06-22 04:27:28 +01001870 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00001871 .name = "pxa2xx-fb",
1872 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873};
1874
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001875static int __init pxafb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
eric miao92ac73c2008-04-30 00:52:20 -07001877 if (pxafb_setup_options())
1878 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Russell King3ae5eae2005-11-09 22:32:44 +00001880 return platform_driver_register(&pxafb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
1882
Jaya Kumar9f17f282008-06-22 04:27:28 +01001883static void __exit pxafb_exit(void)
1884{
1885 platform_driver_unregister(&pxafb_driver);
1886}
1887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888module_init(pxafb_init);
Jaya Kumar9f17f282008-06-22 04:27:28 +01001889module_exit(pxafb_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
1891MODULE_DESCRIPTION("loadable framebuffer driver for PXA");
1892MODULE_LICENSE("GPL");