blob: b43907d36d66bee0e433bfff162fbdc4e781f91b [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);
Eric Miao6e354842008-12-17 16:50:43 +080074static void setup_base_frame(struct pxafb_info *fbi, int branch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Eric Miao77e19672008-12-16 11:54:34 +080076static unsigned long video_mem_size = 0;
77
Eric Miaoa7535ba2008-04-30 00:52:24 -070078static inline unsigned long
79lcd_readl(struct pxafb_info *fbi, unsigned int off)
80{
81 return __raw_readl(fbi->mmio_base + off);
82}
83
84static inline void
85lcd_writel(struct pxafb_info *fbi, unsigned int off, unsigned long val)
86{
87 __raw_writel(val, fbi->mmio_base + off);
88}
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static inline void pxafb_schedule_work(struct pxafb_info *fbi, u_int state)
91{
92 unsigned long flags;
93
94 local_irq_save(flags);
95 /*
96 * We need to handle two requests being made at the same time.
97 * There are two important cases:
eric miaob0086ef2008-04-30 00:52:19 -070098 * 1. When we are changing VT (C_REENABLE) while unblanking
99 * (C_ENABLE) We must perform the unblanking, which will
100 * do our REENABLE for us.
101 * 2. When we are blanking, but immediately unblank before
102 * we have blanked. We do the "REENABLE" thing here as
103 * well, just to be sure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 */
105 if (fbi->task_state == C_ENABLE && state == C_REENABLE)
106 state = (u_int) -1;
107 if (fbi->task_state == C_DISABLE && state == C_ENABLE)
108 state = C_REENABLE;
109
110 if (state != (u_int)-1) {
111 fbi->task_state = state;
112 schedule_work(&fbi->task);
113 }
114 local_irq_restore(flags);
115}
116
117static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf)
118{
119 chan &= 0xffff;
120 chan >>= 16 - bf->length;
121 return chan << bf->offset;
122}
123
124static int
125pxafb_setpalettereg(u_int regno, u_int red, u_int green, u_int blue,
126 u_int trans, struct fb_info *info)
127{
128 struct pxafb_info *fbi = (struct pxafb_info *)info;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700129 u_int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700131 if (regno >= fbi->palette_size)
132 return 1;
133
134 if (fbi->fb.var.grayscale) {
135 fbi->palette_cpu[regno] = ((blue >> 8) & 0x00ff);
136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700138
139 switch (fbi->lccr4 & LCCR4_PAL_FOR_MASK) {
140 case LCCR4_PAL_FOR_0:
141 val = ((red >> 0) & 0xf800);
142 val |= ((green >> 5) & 0x07e0);
143 val |= ((blue >> 11) & 0x001f);
144 fbi->palette_cpu[regno] = val;
145 break;
146 case LCCR4_PAL_FOR_1:
147 val = ((red << 8) & 0x00f80000);
148 val |= ((green >> 0) & 0x0000fc00);
149 val |= ((blue >> 8) & 0x000000f8);
eric miaob0086ef2008-04-30 00:52:19 -0700150 ((u32 *)(fbi->palette_cpu))[regno] = val;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700151 break;
152 case LCCR4_PAL_FOR_2:
153 val = ((red << 8) & 0x00fc0000);
154 val |= ((green >> 0) & 0x0000fc00);
155 val |= ((blue >> 8) & 0x000000fc);
eric miaob0086ef2008-04-30 00:52:19 -0700156 ((u32 *)(fbi->palette_cpu))[regno] = val;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700157 break;
158 }
159
160 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
163static int
164pxafb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
165 u_int trans, struct fb_info *info)
166{
167 struct pxafb_info *fbi = (struct pxafb_info *)info;
168 unsigned int val;
169 int ret = 1;
170
171 /*
172 * If inverse mode was selected, invert all the colours
173 * rather than the register number. The register number
174 * is what you poke into the framebuffer to produce the
175 * colour you requested.
176 */
177 if (fbi->cmap_inverse) {
178 red = 0xffff - red;
179 green = 0xffff - green;
180 blue = 0xffff - blue;
181 }
182
183 /*
184 * If greyscale is true, then we convert the RGB value
185 * to greyscale no matter what visual we are using.
186 */
187 if (fbi->fb.var.grayscale)
188 red = green = blue = (19595 * red + 38470 * green +
189 7471 * blue) >> 16;
190
191 switch (fbi->fb.fix.visual) {
192 case FB_VISUAL_TRUECOLOR:
193 /*
194 * 16-bit True Colour. We encode the RGB value
195 * according to the RGB bitfield information.
196 */
197 if (regno < 16) {
198 u32 *pal = fbi->fb.pseudo_palette;
199
200 val = chan_to_field(red, &fbi->fb.var.red);
201 val |= chan_to_field(green, &fbi->fb.var.green);
202 val |= chan_to_field(blue, &fbi->fb.var.blue);
203
204 pal[regno] = val;
205 ret = 0;
206 }
207 break;
208
209 case FB_VISUAL_STATIC_PSEUDOCOLOR:
210 case FB_VISUAL_PSEUDOCOLOR:
211 ret = pxafb_setpalettereg(regno, red, green, blue, trans, info);
212 break;
213 }
214
215 return ret;
216}
217
218/*
219 * pxafb_bpp_to_lccr3():
220 * Convert a bits per pixel value to the correct bit pattern for LCCR3
221 */
222static int pxafb_bpp_to_lccr3(struct fb_var_screeninfo *var)
223{
eric miaob0086ef2008-04-30 00:52:19 -0700224 int ret = 0;
225 switch (var->bits_per_pixel) {
226 case 1: ret = LCCR3_1BPP; break;
227 case 2: ret = LCCR3_2BPP; break;
228 case 4: ret = LCCR3_4BPP; break;
229 case 8: ret = LCCR3_8BPP; break;
230 case 16: ret = LCCR3_16BPP; break;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100231 case 24:
232 switch (var->red.length + var->green.length +
233 var->blue.length + var->transp.length) {
234 case 18: ret = LCCR3_18BPP_P | LCCR3_PDFOR_3; break;
235 case 19: ret = LCCR3_19BPP_P; break;
236 }
237 break;
238 case 32:
239 switch (var->red.length + var->green.length +
240 var->blue.length + var->transp.length) {
241 case 18: ret = LCCR3_18BPP | LCCR3_PDFOR_3; break;
242 case 19: ret = LCCR3_19BPP; break;
243 case 24: ret = LCCR3_24BPP | LCCR3_PDFOR_3; break;
244 case 25: ret = LCCR3_25BPP; break;
245 }
246 break;
eric miaob0086ef2008-04-30 00:52:19 -0700247 }
248 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
251#ifdef CONFIG_CPU_FREQ
252/*
253 * pxafb_display_dma_period()
254 * Calculate the minimum period (in picoseconds) between two DMA
255 * requests for the LCD controller. If we hit this, it means we're
256 * doing nothing but LCD DMA.
257 */
258static unsigned int pxafb_display_dma_period(struct fb_var_screeninfo *var)
259{
eric miaob0086ef2008-04-30 00:52:19 -0700260 /*
261 * Period = pixclock * bits_per_byte * bytes_per_transfer
262 * / memory_bits_per_pixel;
263 */
264 return var->pixclock * 8 * 16 / var->bits_per_pixel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266#endif
267
268/*
Richard Purdied14b2722006-09-20 22:54:21 +0100269 * Select the smallest mode that allows the desired resolution to be
270 * displayed. If desired parameters can be rounded up.
271 */
eric miaob0086ef2008-04-30 00:52:19 -0700272static struct pxafb_mode_info *pxafb_getmode(struct pxafb_mach_info *mach,
273 struct fb_var_screeninfo *var)
Richard Purdied14b2722006-09-20 22:54:21 +0100274{
275 struct pxafb_mode_info *mode = NULL;
276 struct pxafb_mode_info *modelist = mach->modes;
277 unsigned int best_x = 0xffffffff, best_y = 0xffffffff;
278 unsigned int i;
279
eric miaob0086ef2008-04-30 00:52:19 -0700280 for (i = 0; i < mach->num_modes; i++) {
281 if (modelist[i].xres >= var->xres &&
282 modelist[i].yres >= var->yres &&
283 modelist[i].xres < best_x &&
284 modelist[i].yres < best_y &&
285 modelist[i].bpp >= var->bits_per_pixel) {
Richard Purdied14b2722006-09-20 22:54:21 +0100286 best_x = modelist[i].xres;
287 best_y = modelist[i].yres;
288 mode = &modelist[i];
289 }
290 }
291
292 return mode;
293}
294
eric miaob0086ef2008-04-30 00:52:19 -0700295static void pxafb_setmode(struct fb_var_screeninfo *var,
296 struct pxafb_mode_info *mode)
Richard Purdied14b2722006-09-20 22:54:21 +0100297{
298 var->xres = mode->xres;
299 var->yres = mode->yres;
300 var->bits_per_pixel = mode->bpp;
301 var->pixclock = mode->pixclock;
302 var->hsync_len = mode->hsync_len;
303 var->left_margin = mode->left_margin;
304 var->right_margin = mode->right_margin;
305 var->vsync_len = mode->vsync_len;
306 var->upper_margin = mode->upper_margin;
307 var->lower_margin = mode->lower_margin;
308 var->sync = mode->sync;
309 var->grayscale = mode->cmap_greyscale;
Richard Purdied14b2722006-09-20 22:54:21 +0100310}
311
312/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * pxafb_check_var():
314 * Get the video params out of 'var'. If a value doesn't fit, round it up,
315 * if it's too big, return -EINVAL.
316 *
317 * Round up in the following order: bits_per_pixel, xres,
318 * yres, xres_virtual, yres_virtual, xoffset, yoffset, grayscale,
319 * bitfields, horizontal timing, vertical timing.
320 */
321static int pxafb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
322{
323 struct pxafb_info *fbi = (struct pxafb_info *)info;
Richard Purdied14b2722006-09-20 22:54:21 +0100324 struct pxafb_mach_info *inf = fbi->dev->platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 if (var->xres < MIN_XRES)
327 var->xres = MIN_XRES;
328 if (var->yres < MIN_YRES)
329 var->yres = MIN_YRES;
Richard Purdied14b2722006-09-20 22:54:21 +0100330
331 if (inf->fixed_modes) {
332 struct pxafb_mode_info *mode;
333
334 mode = pxafb_getmode(inf, var);
335 if (!mode)
336 return -EINVAL;
337 pxafb_setmode(var, mode);
338 } else {
339 if (var->xres > inf->modes->xres)
340 return -EINVAL;
341 if (var->yres > inf->modes->yres)
342 return -EINVAL;
343 if (var->bits_per_pixel > inf->modes->bpp)
344 return -EINVAL;
345 }
346
Eric Miao7e4b19c2008-12-17 14:56:54 +0800347 /* we don't support xpan, force xres_virtual to be equal to xres */
348 var->xres_virtual = var->xres;
349
350 if (var->accel_flags & FB_ACCELF_TEXT)
351 var->yres_virtual = fbi->fb.fix.smem_len /
352 (var->xres_virtual * var->bits_per_pixel / 8);
353 else
354 var->yres_virtual = max(var->yres_virtual, var->yres);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
eric miaob0086ef2008-04-30 00:52:19 -0700356 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 * Setup the RGB parameters for this display.
358 *
359 * The pixel packing format is described on page 7-11 of the
360 * PXA2XX Developer's Manual.
eric miaob0086ef2008-04-30 00:52:19 -0700361 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (var->bits_per_pixel == 16) {
363 var->red.offset = 11; var->red.length = 5;
364 var->green.offset = 5; var->green.length = 6;
365 var->blue.offset = 0; var->blue.length = 5;
366 var->transp.offset = var->transp.length = 0;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100367 } else if (var->bits_per_pixel > 16) {
368 struct pxafb_mode_info *mode;
369
370 mode = pxafb_getmode(inf, var);
371 if (!mode)
372 return -EINVAL;
373
374 switch (mode->depth) {
375 case 18: /* RGB666 */
376 var->transp.offset = var->transp.length = 0;
377 var->red.offset = 12; var->red.length = 6;
378 var->green.offset = 6; var->green.length = 6;
379 var->blue.offset = 0; var->blue.length = 6;
380 break;
381 case 19: /* RGBT666 */
382 var->transp.offset = 18; var->transp.length = 1;
383 var->red.offset = 12; var->red.length = 6;
384 var->green.offset = 6; var->green.length = 6;
385 var->blue.offset = 0; var->blue.length = 6;
386 break;
387 case 24: /* RGB888 */
388 var->transp.offset = var->transp.length = 0;
389 var->red.offset = 16; var->red.length = 8;
390 var->green.offset = 8; var->green.length = 8;
391 var->blue.offset = 0; var->blue.length = 8;
392 break;
393 case 25: /* RGBT888 */
394 var->transp.offset = 24; var->transp.length = 1;
395 var->red.offset = 16; var->red.length = 8;
396 var->green.offset = 8; var->green.length = 8;
397 var->blue.offset = 0; var->blue.length = 8;
398 break;
399 default:
400 return -EINVAL;
401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 } else {
eric miaob0086ef2008-04-30 00:52:19 -0700403 var->red.offset = var->green.offset = 0;
404 var->blue.offset = var->transp.offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 var->red.length = 8;
406 var->green.length = 8;
407 var->blue.length = 8;
408 var->transp.length = 0;
409 }
410
411#ifdef CONFIG_CPU_FREQ
Russell King78d3cfd2008-05-17 22:51:14 +0100412 pr_debug("pxafb: dma period = %d ps\n",
413 pxafb_display_dma_period(var));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414#endif
415
416 return 0;
417}
418
419static inline void pxafb_set_truecolor(u_int is_true_color)
420{
eric miaob0086ef2008-04-30 00:52:19 -0700421 /* do your machine-specific setup if needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
424/*
425 * pxafb_set_par():
426 * Set the user defined part of the display for the specified console
427 */
428static int pxafb_set_par(struct fb_info *info)
429{
430 struct pxafb_info *fbi = (struct pxafb_info *)info;
431 struct fb_var_screeninfo *var = &info->var;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100433 if (var->bits_per_pixel >= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 fbi->fb.fix.visual = FB_VISUAL_TRUECOLOR;
435 else if (!fbi->cmap_static)
436 fbi->fb.fix.visual = FB_VISUAL_PSEUDOCOLOR;
437 else {
438 /*
439 * Some people have weird ideas about wanting static
440 * pseudocolor maps. I suspect their user space
441 * applications are broken.
442 */
443 fbi->fb.fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR;
444 }
445
446 fbi->fb.fix.line_length = var->xres_virtual *
447 var->bits_per_pixel / 8;
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100448 if (var->bits_per_pixel >= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 fbi->palette_size = 0;
450 else
eric miaob0086ef2008-04-30 00:52:19 -0700451 fbi->palette_size = var->bits_per_pixel == 1 ?
452 4 : 1 << var->bits_per_pixel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
eric miao2c42dd82008-04-30 00:52:21 -0700454 fbi->palette_cpu = (u16 *)&fbi->dma_buff->palette[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 /*
457 * Set (any) board control register to handle new color depth
458 */
459 pxafb_set_truecolor(fbi->fb.fix.visual == FB_VISUAL_TRUECOLOR);
460
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100461 if (fbi->fb.var.bits_per_pixel >= 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 fb_dealloc_cmap(&fbi->fb.cmap);
463 else
464 fb_alloc_cmap(&fbi->fb.cmap, 1<<fbi->fb.var.bits_per_pixel, 0);
465
466 pxafb_activate_var(var, fbi);
467
468 return 0;
469}
470
Eric Miao6e354842008-12-17 16:50:43 +0800471static int pxafb_pan_display(struct fb_var_screeninfo *var,
472 struct fb_info *info)
473{
474 struct pxafb_info *fbi = (struct pxafb_info *)info;
475 int dma = DMA_MAX + DMA_BASE;
476
477 if (fbi->state != C_ENABLE)
478 return 0;
479
480 setup_base_frame(fbi, 1);
481
482 if (fbi->lccr0 & LCCR0_SDS)
483 lcd_writel(fbi, FBR1, fbi->fdadr[dma + 1] | 0x1);
484
485 lcd_writel(fbi, FBR0, fbi->fdadr[dma] | 0x1);
486 return 0;
487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 * pxafb_blank():
491 * Blank the display by setting all palette values to zero. Note, the
492 * 16 bpp mode does not really use the palette, so this will not
493 * blank the display in all modes.
494 */
495static int pxafb_blank(int blank, struct fb_info *info)
496{
497 struct pxafb_info *fbi = (struct pxafb_info *)info;
498 int i;
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 switch (blank) {
501 case FB_BLANK_POWERDOWN:
502 case FB_BLANK_VSYNC_SUSPEND:
503 case FB_BLANK_HSYNC_SUSPEND:
504 case FB_BLANK_NORMAL:
505 if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||
506 fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)
507 for (i = 0; i < fbi->palette_size; i++)
508 pxafb_setpalettereg(i, 0, 0, 0, 0, info);
509
510 pxafb_schedule_work(fbi, C_DISABLE);
eric miaob0086ef2008-04-30 00:52:19 -0700511 /* TODO if (pxafb_blank_helper) pxafb_blank_helper(blank); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 break;
513
514 case FB_BLANK_UNBLANK:
eric miaob0086ef2008-04-30 00:52:19 -0700515 /* TODO if (pxafb_blank_helper) pxafb_blank_helper(blank); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||
517 fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)
518 fb_set_cmap(&fbi->fb.cmap, info);
519 pxafb_schedule_work(fbi, C_ENABLE);
520 }
521 return 0;
522}
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524static struct fb_ops pxafb_ops = {
525 .owner = THIS_MODULE,
526 .fb_check_var = pxafb_check_var,
527 .fb_set_par = pxafb_set_par,
Eric Miao6e354842008-12-17 16:50:43 +0800528 .fb_pan_display = pxafb_pan_display,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 .fb_setcolreg = pxafb_setcolreg,
530 .fb_fillrect = cfb_fillrect,
531 .fb_copyarea = cfb_copyarea,
532 .fb_imageblit = cfb_imageblit,
533 .fb_blank = pxafb_blank,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534};
535
536/*
537 * Calculate the PCD value from the clock rate (in picoseconds).
538 * We take account of the PPCR clock setting.
539 * From PXA Developer's Manual:
540 *
541 * PixelClock = LCLK
542 * -------------
543 * 2 ( PCD + 1 )
544 *
545 * PCD = LCLK
546 * ------------- - 1
547 * 2(PixelClock)
548 *
549 * Where:
550 * LCLK = LCD/Memory Clock
551 * PCD = LCCR3[7:0]
552 *
553 * PixelClock here is in Hz while the pixclock argument given is the
554 * period in picoseconds. Hence PixelClock = 1 / ( pixclock * 10^-12 )
555 *
556 * The function get_lclk_frequency_10khz returns LCLK in units of
557 * 10khz. Calling the result of this function lclk gives us the
558 * following
559 *
560 * PCD = (lclk * 10^4 ) * ( pixclock * 10^-12 )
561 * -------------------------------------- - 1
562 * 2
563 *
564 * Factoring the 10^4 and 10^-12 out gives 10^-8 == 1 / 100000000 as used below.
565 */
eric miaob0086ef2008-04-30 00:52:19 -0700566static inline unsigned int get_pcd(struct pxafb_info *fbi,
567 unsigned int pixclock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 unsigned long long pcd;
570
571 /* FIXME: Need to take into account Double Pixel Clock mode
Russell King72e35242007-08-20 10:18:42 +0100572 * (DPC) bit? or perhaps set it based on the various clock
573 * speeds */
574 pcd = (unsigned long long)(clk_get_rate(fbi->clk) / 10000);
575 pcd *= pixclock;
Nicolas Pitrebf1b8ab2005-06-23 21:56:45 +0100576 do_div(pcd, 100000000 * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 /* no need for this, since we should subtract 1 anyway. they cancel */
578 /* pcd += 1; */ /* make up for integer math truncations */
579 return (unsigned int)pcd;
580}
581
582/*
Richard Purdieba44cd22005-09-09 13:10:03 -0700583 * Some touchscreens need hsync information from the video driver to
Russell King72e35242007-08-20 10:18:42 +0100584 * function correctly. We export it here. Note that 'hsync_time' and
585 * the value returned from pxafb_get_hsync_time() is the *reciprocal*
586 * of the hsync period in seconds.
Richard Purdieba44cd22005-09-09 13:10:03 -0700587 */
588static inline void set_hsync_time(struct pxafb_info *fbi, unsigned int pcd)
589{
Russell King72e35242007-08-20 10:18:42 +0100590 unsigned long htime;
Richard Purdieba44cd22005-09-09 13:10:03 -0700591
592 if ((pcd == 0) || (fbi->fb.var.hsync_len == 0)) {
eric miaob0086ef2008-04-30 00:52:19 -0700593 fbi->hsync_time = 0;
Richard Purdieba44cd22005-09-09 13:10:03 -0700594 return;
595 }
596
Russell King72e35242007-08-20 10:18:42 +0100597 htime = clk_get_rate(fbi->clk) / (pcd * fbi->fb.var.hsync_len);
598
Richard Purdieba44cd22005-09-09 13:10:03 -0700599 fbi->hsync_time = htime;
600}
601
602unsigned long pxafb_get_hsync_time(struct device *dev)
603{
604 struct pxafb_info *fbi = dev_get_drvdata(dev);
605
606 /* If display is blanked/suspended, hsync isn't active */
607 if (!fbi || (fbi->state != C_ENABLE))
608 return 0;
609
610 return fbi->hsync_time;
611}
612EXPORT_SYMBOL(pxafb_get_hsync_time);
613
eric miao2c42dd82008-04-30 00:52:21 -0700614static int setup_frame_dma(struct pxafb_info *fbi, int dma, int pal,
615 unsigned int offset, size_t size)
616{
617 struct pxafb_dma_descriptor *dma_desc, *pal_desc;
618 unsigned int dma_desc_off, pal_desc_off;
619
Eric Miao6e354842008-12-17 16:50:43 +0800620 if (dma < 0 || dma >= DMA_MAX * 2)
eric miao2c42dd82008-04-30 00:52:21 -0700621 return -EINVAL;
622
623 dma_desc = &fbi->dma_buff->dma_desc[dma];
624 dma_desc_off = offsetof(struct pxafb_dma_buff, dma_desc[dma]);
625
Eric Miao77e19672008-12-16 11:54:34 +0800626 dma_desc->fsadr = fbi->video_mem_phys + offset;
eric miao2c42dd82008-04-30 00:52:21 -0700627 dma_desc->fidr = 0;
628 dma_desc->ldcmd = size;
629
Eric Miao6e354842008-12-17 16:50:43 +0800630 if (pal < 0 || pal >= PAL_MAX * 2) {
eric miao2c42dd82008-04-30 00:52:21 -0700631 dma_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
632 fbi->fdadr[dma] = fbi->dma_buff_phys + dma_desc_off;
633 } else {
Jürgen Schindele62cfcf42008-06-11 19:56:06 +0100634 pal_desc = &fbi->dma_buff->pal_desc[pal];
635 pal_desc_off = offsetof(struct pxafb_dma_buff, pal_desc[pal]);
eric miao2c42dd82008-04-30 00:52:21 -0700636
637 pal_desc->fsadr = fbi->dma_buff_phys + pal * PALETTE_SIZE;
638 pal_desc->fidr = 0;
639
640 if ((fbi->lccr4 & LCCR4_PAL_FOR_MASK) == LCCR4_PAL_FOR_0)
641 pal_desc->ldcmd = fbi->palette_size * sizeof(u16);
642 else
643 pal_desc->ldcmd = fbi->palette_size * sizeof(u32);
644
645 pal_desc->ldcmd |= LDCMD_PAL;
646
647 /* flip back and forth between palette and frame buffer */
648 pal_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
649 dma_desc->fdadr = fbi->dma_buff_phys + pal_desc_off;
650 fbi->fdadr[dma] = fbi->dma_buff_phys + dma_desc_off;
651 }
652
653 return 0;
654}
655
Eric Miao6e354842008-12-17 16:50:43 +0800656static void setup_base_frame(struct pxafb_info *fbi, int branch)
657{
658 struct fb_var_screeninfo *var = &fbi->fb.var;
659 struct fb_fix_screeninfo *fix = &fbi->fb.fix;
660 unsigned int nbytes, offset;
661 int dma, pal, bpp = var->bits_per_pixel;
662
663 dma = DMA_BASE + (branch ? DMA_MAX : 0);
664 pal = (bpp >= 16) ? PAL_NONE : PAL_BASE + (branch ? PAL_MAX : 0);
665
666 nbytes = fix->line_length * var->yres;
667 offset = fix->line_length * var->yoffset;
668
669 if (fbi->lccr0 & LCCR0_SDS) {
670 nbytes = nbytes / 2;
671 setup_frame_dma(fbi, dma + 1, PAL_NONE, offset + nbytes, nbytes);
672 }
673
674 setup_frame_dma(fbi, dma, pal, offset, nbytes);
675}
676
Eric Miao3c42a442008-04-30 00:52:26 -0700677#ifdef CONFIG_FB_PXA_SMARTPANEL
678static int setup_smart_dma(struct pxafb_info *fbi)
679{
680 struct pxafb_dma_descriptor *dma_desc;
681 unsigned long dma_desc_off, cmd_buff_off;
682
683 dma_desc = &fbi->dma_buff->dma_desc[DMA_CMD];
684 dma_desc_off = offsetof(struct pxafb_dma_buff, dma_desc[DMA_CMD]);
685 cmd_buff_off = offsetof(struct pxafb_dma_buff, cmd_buff);
686
687 dma_desc->fdadr = fbi->dma_buff_phys + dma_desc_off;
688 dma_desc->fsadr = fbi->dma_buff_phys + cmd_buff_off;
689 dma_desc->fidr = 0;
690 dma_desc->ldcmd = fbi->n_smart_cmds * sizeof(uint16_t);
691
692 fbi->fdadr[DMA_CMD] = dma_desc->fdadr;
693 return 0;
694}
695
696int pxafb_smart_flush(struct fb_info *info)
697{
698 struct pxafb_info *fbi = container_of(info, struct pxafb_info, fb);
699 uint32_t prsr;
700 int ret = 0;
701
702 /* disable controller until all registers are set up */
703 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
704
705 /* 1. make it an even number of commands to align on 32-bit boundary
706 * 2. add the interrupt command to the end of the chain so we can
707 * keep track of the end of the transfer
708 */
709
710 while (fbi->n_smart_cmds & 1)
711 fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_NOOP;
712
713 fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_INTERRUPT;
714 fbi->smart_cmds[fbi->n_smart_cmds++] = SMART_CMD_WAIT_FOR_VSYNC;
715 setup_smart_dma(fbi);
716
717 /* continue to execute next command */
718 prsr = lcd_readl(fbi, PRSR) | PRSR_ST_OK | PRSR_CON_NT;
719 lcd_writel(fbi, PRSR, prsr);
720
721 /* stop the processor in case it executed "wait for sync" cmd */
722 lcd_writel(fbi, CMDCR, 0x0001);
723
724 /* don't send interrupts for fifo underruns on channel 6 */
725 lcd_writel(fbi, LCCR5, LCCR5_IUM(6));
726
727 lcd_writel(fbi, LCCR1, fbi->reg_lccr1);
728 lcd_writel(fbi, LCCR2, fbi->reg_lccr2);
729 lcd_writel(fbi, LCCR3, fbi->reg_lccr3);
730 lcd_writel(fbi, FDADR0, fbi->fdadr[0]);
731 lcd_writel(fbi, FDADR6, fbi->fdadr[6]);
732
733 /* begin sending */
734 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 | LCCR0_ENB);
735
736 if (wait_for_completion_timeout(&fbi->command_done, HZ/2) == 0) {
737 pr_warning("%s: timeout waiting for command done\n",
738 __func__);
739 ret = -ETIMEDOUT;
740 }
741
742 /* quick disable */
743 prsr = lcd_readl(fbi, PRSR) & ~(PRSR_ST_OK | PRSR_CON_NT);
744 lcd_writel(fbi, PRSR, prsr);
745 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
746 lcd_writel(fbi, FDADR6, 0);
747 fbi->n_smart_cmds = 0;
748 return ret;
749}
750
751int pxafb_smart_queue(struct fb_info *info, uint16_t *cmds, int n_cmds)
752{
753 int i;
754 struct pxafb_info *fbi = container_of(info, struct pxafb_info, fb);
755
Eric Miao69bdea72008-12-08 18:46:00 +0800756 for (i = 0; i < n_cmds; i++, cmds++) {
757 /* if it is a software delay, flush and delay */
758 if ((*cmds & 0xff00) == SMART_CMD_DELAY) {
759 pxafb_smart_flush(info);
760 mdelay(*cmds & 0xff);
761 continue;
762 }
763
764 /* leave 2 commands for INTERRUPT and WAIT_FOR_SYNC */
Eric Miao3c42a442008-04-30 00:52:26 -0700765 if (fbi->n_smart_cmds == CMD_BUFF_SIZE - 8)
766 pxafb_smart_flush(info);
767
Eric Miao69bdea72008-12-08 18:46:00 +0800768 fbi->smart_cmds[fbi->n_smart_cmds++] = *cmds;
Eric Miao3c42a442008-04-30 00:52:26 -0700769 }
770
771 return 0;
772}
773
774static unsigned int __smart_timing(unsigned time_ns, unsigned long lcd_clk)
775{
776 unsigned int t = (time_ns * (lcd_clk / 1000000) / 1000);
777 return (t == 0) ? 1 : t;
778}
779
780static void setup_smart_timing(struct pxafb_info *fbi,
781 struct fb_var_screeninfo *var)
782{
783 struct pxafb_mach_info *inf = fbi->dev->platform_data;
784 struct pxafb_mode_info *mode = &inf->modes[0];
785 unsigned long lclk = clk_get_rate(fbi->clk);
786 unsigned t1, t2, t3, t4;
787
788 t1 = max(mode->a0csrd_set_hld, mode->a0cswr_set_hld);
789 t2 = max(mode->rd_pulse_width, mode->wr_pulse_width);
790 t3 = mode->op_hold_time;
791 t4 = mode->cmd_inh_time;
792
793 fbi->reg_lccr1 =
794 LCCR1_DisWdth(var->xres) |
795 LCCR1_BegLnDel(__smart_timing(t1, lclk)) |
796 LCCR1_EndLnDel(__smart_timing(t2, lclk)) |
797 LCCR1_HorSnchWdth(__smart_timing(t3, lclk));
798
799 fbi->reg_lccr2 = LCCR2_DisHght(var->yres);
Eric Miaoc1f99c22008-12-08 18:35:03 +0800800 fbi->reg_lccr3 = fbi->lccr3 | LCCR3_PixClkDiv(__smart_timing(t4, lclk));
801 fbi->reg_lccr3 |= (var->sync & FB_SYNC_HOR_HIGH_ACT) ? LCCR3_HSP : 0;
802 fbi->reg_lccr3 |= (var->sync & FB_SYNC_VERT_HIGH_ACT) ? LCCR3_VSP : 0;
Eric Miao3c42a442008-04-30 00:52:26 -0700803
804 /* FIXME: make this configurable */
805 fbi->reg_cmdcr = 1;
806}
807
808static int pxafb_smart_thread(void *arg)
809{
Eric Miao7f1133c2008-04-30 00:52:27 -0700810 struct pxafb_info *fbi = arg;
Eric Miao3c42a442008-04-30 00:52:26 -0700811 struct pxafb_mach_info *inf = fbi->dev->platform_data;
812
813 if (!fbi || !inf->smart_update) {
814 pr_err("%s: not properly initialized, thread terminated\n",
815 __func__);
816 return -EINVAL;
817 }
818
819 pr_debug("%s(): task starting\n", __func__);
820
821 set_freezable();
822 while (!kthread_should_stop()) {
823
824 if (try_to_freeze())
825 continue;
826
Eric Miao07f651c2008-12-08 18:51:01 +0800827 mutex_lock(&fbi->ctrlr_lock);
828
Eric Miao3c42a442008-04-30 00:52:26 -0700829 if (fbi->state == C_ENABLE) {
830 inf->smart_update(&fbi->fb);
831 complete(&fbi->refresh_done);
832 }
833
Eric Miao07f651c2008-12-08 18:51:01 +0800834 mutex_unlock(&fbi->ctrlr_lock);
835
Eric Miao3c42a442008-04-30 00:52:26 -0700836 set_current_state(TASK_INTERRUPTIBLE);
837 schedule_timeout(30 * HZ / 1000);
838 }
839
840 pr_debug("%s(): task ending\n", __func__);
841 return 0;
842}
843
844static int pxafb_smart_init(struct pxafb_info *fbi)
845{
Eric Miao07df1c42008-12-04 11:14:11 +0800846 if (!(fbi->lccr0 & LCCR0_LCDT))
Eric Miao6cc4abe2008-11-11 21:47:07 +0800847 return 0;
848
Eric Miao07df1c42008-12-04 11:14:11 +0800849 fbi->smart_cmds = (uint16_t *) fbi->dma_buff->cmd_buff;
850 fbi->n_smart_cmds = 0;
851
852 init_completion(&fbi->command_done);
853 init_completion(&fbi->refresh_done);
854
Eric Miao3c42a442008-04-30 00:52:26 -0700855 fbi->smart_thread = kthread_run(pxafb_smart_thread, fbi,
856 "lcd_refresh");
857 if (IS_ERR(fbi->smart_thread)) {
Eric Miao07df1c42008-12-04 11:14:11 +0800858 pr_err("%s: unable to create kernel thread\n", __func__);
Eric Miao3c42a442008-04-30 00:52:26 -0700859 return PTR_ERR(fbi->smart_thread);
860 }
Eric Miaoa5718a12008-11-11 21:50:39 +0800861
Eric Miao3c42a442008-04-30 00:52:26 -0700862 return 0;
863}
864#else
865int pxafb_smart_queue(struct fb_info *info, uint16_t *cmds, int n_cmds)
866{
867 return 0;
868}
869
870int pxafb_smart_flush(struct fb_info *info)
871{
872 return 0;
873}
Eric Miao07df1c42008-12-04 11:14:11 +0800874
875static inline int pxafb_smart_init(struct pxafb_info *fbi) { return 0; }
876#endif /* CONFIG_FB_PXA_SMARTPANEL */
Eric Miao3c42a442008-04-30 00:52:26 -0700877
Eric Miao90eabbf2008-04-30 00:52:25 -0700878static void setup_parallel_timing(struct pxafb_info *fbi,
879 struct fb_var_screeninfo *var)
880{
881 unsigned int lines_per_panel, pcd = get_pcd(fbi, var->pixclock);
882
883 fbi->reg_lccr1 =
884 LCCR1_DisWdth(var->xres) +
885 LCCR1_HorSnchWdth(var->hsync_len) +
886 LCCR1_BegLnDel(var->left_margin) +
887 LCCR1_EndLnDel(var->right_margin);
888
889 /*
890 * If we have a dual scan LCD, we need to halve
891 * the YRES parameter.
892 */
893 lines_per_panel = var->yres;
894 if ((fbi->lccr0 & LCCR0_SDS) == LCCR0_Dual)
895 lines_per_panel /= 2;
896
897 fbi->reg_lccr2 =
898 LCCR2_DisHght(lines_per_panel) +
899 LCCR2_VrtSnchWdth(var->vsync_len) +
900 LCCR2_BegFrmDel(var->upper_margin) +
901 LCCR2_EndFrmDel(var->lower_margin);
902
903 fbi->reg_lccr3 = fbi->lccr3 |
904 (var->sync & FB_SYNC_HOR_HIGH_ACT ?
905 LCCR3_HorSnchH : LCCR3_HorSnchL) |
906 (var->sync & FB_SYNC_VERT_HIGH_ACT ?
907 LCCR3_VrtSnchH : LCCR3_VrtSnchL);
908
909 if (pcd) {
910 fbi->reg_lccr3 |= LCCR3_PixClkDiv(pcd);
911 set_hsync_time(fbi, pcd);
912 }
913}
914
Richard Purdieba44cd22005-09-09 13:10:03 -0700915/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 * pxafb_activate_var():
eric miaob0086ef2008-04-30 00:52:19 -0700917 * Configures LCD Controller based on entries in var parameter.
918 * Settings are only written to the controller if changes were made.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 */
eric miaob0086ef2008-04-30 00:52:19 -0700920static int pxafb_activate_var(struct fb_var_screeninfo *var,
921 struct pxafb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 u_long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925#if DEBUG_VAR
Eric Miao3c42a442008-04-30 00:52:26 -0700926 if (!(fbi->lccr0 & LCCR0_LCDT)) {
927 if (var->xres < 16 || var->xres > 1024)
928 printk(KERN_ERR "%s: invalid xres %d\n",
929 fbi->fb.fix.id, var->xres);
930 switch (var->bits_per_pixel) {
931 case 1:
932 case 2:
933 case 4:
934 case 8:
935 case 16:
Stefan Schmidtc1450f12008-07-09 08:06:32 +0100936 case 24:
937 case 32:
Eric Miao3c42a442008-04-30 00:52:26 -0700938 break;
939 default:
940 printk(KERN_ERR "%s: invalid bit depth %d\n",
941 fbi->fb.fix.id, var->bits_per_pixel);
942 break;
943 }
944
945 if (var->hsync_len < 1 || var->hsync_len > 64)
946 printk(KERN_ERR "%s: invalid hsync_len %d\n",
947 fbi->fb.fix.id, var->hsync_len);
948 if (var->left_margin < 1 || var->left_margin > 255)
949 printk(KERN_ERR "%s: invalid left_margin %d\n",
950 fbi->fb.fix.id, var->left_margin);
951 if (var->right_margin < 1 || var->right_margin > 255)
952 printk(KERN_ERR "%s: invalid right_margin %d\n",
953 fbi->fb.fix.id, var->right_margin);
954 if (var->yres < 1 || var->yres > 1024)
955 printk(KERN_ERR "%s: invalid yres %d\n",
956 fbi->fb.fix.id, var->yres);
957 if (var->vsync_len < 1 || var->vsync_len > 64)
958 printk(KERN_ERR "%s: invalid vsync_len %d\n",
959 fbi->fb.fix.id, var->vsync_len);
960 if (var->upper_margin < 0 || var->upper_margin > 255)
961 printk(KERN_ERR "%s: invalid upper_margin %d\n",
962 fbi->fb.fix.id, var->upper_margin);
963 if (var->lower_margin < 0 || var->lower_margin > 255)
964 printk(KERN_ERR "%s: invalid lower_margin %d\n",
965 fbi->fb.fix.id, var->lower_margin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 /* Update shadow copy atomically */
969 local_irq_save(flags);
970
Eric Miao3c42a442008-04-30 00:52:26 -0700971#ifdef CONFIG_FB_PXA_SMARTPANEL
972 if (fbi->lccr0 & LCCR0_LCDT)
973 setup_smart_timing(fbi, var);
974 else
975#endif
976 setup_parallel_timing(fbi, var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Eric Miao6e354842008-12-17 16:50:43 +0800978 setup_base_frame(fbi, 0);
979
Eric Miao90eabbf2008-04-30 00:52:25 -0700980 fbi->reg_lccr0 = fbi->lccr0 |
981 (LCCR0_LDM | LCCR0_SFM | LCCR0_IUM | LCCR0_EFM |
982 LCCR0_QDM | LCCR0_BM | LCCR0_OUM);
983
984 fbi->reg_lccr3 |= pxafb_bpp_to_lccr3(var);
985
Eric Miaoa7535ba2008-04-30 00:52:24 -0700986 fbi->reg_lccr4 = lcd_readl(fbi, LCCR4) & ~LCCR4_PAL_FOR_MASK;
Hans J. Koch9ffa7392007-10-16 01:28:41 -0700987 fbi->reg_lccr4 |= (fbi->lccr4 & LCCR4_PAL_FOR_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 local_irq_restore(flags);
989
990 /*
991 * Only update the registers if the controller is enabled
992 * and something has changed.
993 */
Eric Miaoa7535ba2008-04-30 00:52:24 -0700994 if ((lcd_readl(fbi, LCCR0) != fbi->reg_lccr0) ||
995 (lcd_readl(fbi, LCCR1) != fbi->reg_lccr1) ||
996 (lcd_readl(fbi, LCCR2) != fbi->reg_lccr2) ||
997 (lcd_readl(fbi, LCCR3) != fbi->reg_lccr3) ||
998 (lcd_readl(fbi, FDADR0) != fbi->fdadr[0]) ||
999 (lcd_readl(fbi, FDADR1) != fbi->fdadr[1]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 pxafb_schedule_work(fbi, C_REENABLE);
1001
1002 return 0;
1003}
1004
1005/*
1006 * NOTE! The following functions are purely helpers for set_ctrlr_state.
1007 * Do not call them directly; set_ctrlr_state does the correct serialisation
1008 * to ensure that things happen in the right way 100% of time time.
1009 * -- rmk
1010 */
1011static inline void __pxafb_backlight_power(struct pxafb_info *fbi, int on)
1012{
Russell Kingca5da712005-09-29 09:44:54 +01001013 pr_debug("pxafb: backlight o%s\n", on ? "n" : "ff");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Eric Miaoa5718a12008-11-11 21:50:39 +08001015 if (fbi->backlight_power)
1016 fbi->backlight_power(on);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
1019static inline void __pxafb_lcd_power(struct pxafb_info *fbi, int on)
1020{
Russell Kingca5da712005-09-29 09:44:54 +01001021 pr_debug("pxafb: LCD power o%s\n", on ? "n" : "ff");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Eric Miaoa5718a12008-11-11 21:50:39 +08001023 if (fbi->lcd_power)
1024 fbi->lcd_power(on, &fbi->fb.var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027static void pxafb_enable_controller(struct pxafb_info *fbi)
1028{
Russell Kingca5da712005-09-29 09:44:54 +01001029 pr_debug("pxafb: Enabling LCD controller\n");
eric miao2c42dd82008-04-30 00:52:21 -07001030 pr_debug("fdadr0 0x%08x\n", (unsigned int) fbi->fdadr[0]);
1031 pr_debug("fdadr1 0x%08x\n", (unsigned int) fbi->fdadr[1]);
Russell Kingca5da712005-09-29 09:44:54 +01001032 pr_debug("reg_lccr0 0x%08x\n", (unsigned int) fbi->reg_lccr0);
1033 pr_debug("reg_lccr1 0x%08x\n", (unsigned int) fbi->reg_lccr1);
1034 pr_debug("reg_lccr2 0x%08x\n", (unsigned int) fbi->reg_lccr2);
1035 pr_debug("reg_lccr3 0x%08x\n", (unsigned int) fbi->reg_lccr3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Nicolas Pitre8d372262005-08-10 16:45:13 +01001037 /* enable LCD controller clock */
Russell King72e35242007-08-20 10:18:42 +01001038 clk_enable(fbi->clk);
Nicolas Pitre8d372262005-08-10 16:45:13 +01001039
Eric Miao3c42a442008-04-30 00:52:26 -07001040 if (fbi->lccr0 & LCCR0_LCDT)
1041 return;
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 /* Sequence from 11.7.10 */
Eric Miaoa7535ba2008-04-30 00:52:24 -07001044 lcd_writel(fbi, LCCR3, fbi->reg_lccr3);
1045 lcd_writel(fbi, LCCR2, fbi->reg_lccr2);
1046 lcd_writel(fbi, LCCR1, fbi->reg_lccr1);
1047 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 & ~LCCR0_ENB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Eric Miaoa7535ba2008-04-30 00:52:24 -07001049 lcd_writel(fbi, FDADR0, fbi->fdadr[0]);
1050 lcd_writel(fbi, FDADR1, fbi->fdadr[1]);
1051 lcd_writel(fbi, LCCR0, fbi->reg_lccr0 | LCCR0_ENB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052}
1053
1054static void pxafb_disable_controller(struct pxafb_info *fbi)
1055{
eric miaoce4fb7b2008-04-30 00:52:21 -07001056 uint32_t lccr0;
1057
Eric Miao3c42a442008-04-30 00:52:26 -07001058#ifdef CONFIG_FB_PXA_SMARTPANEL
1059 if (fbi->lccr0 & LCCR0_LCDT) {
1060 wait_for_completion_timeout(&fbi->refresh_done,
1061 200 * HZ / 1000);
1062 return;
1063 }
1064#endif
1065
eric miaoce4fb7b2008-04-30 00:52:21 -07001066 /* Clear LCD Status Register */
Eric Miaoa7535ba2008-04-30 00:52:24 -07001067 lcd_writel(fbi, LCSR, 0xffffffff);
eric miaoce4fb7b2008-04-30 00:52:21 -07001068
Eric Miaoa7535ba2008-04-30 00:52:24 -07001069 lccr0 = lcd_readl(fbi, LCCR0) & ~LCCR0_LDM;
1070 lcd_writel(fbi, LCCR0, lccr0);
1071 lcd_writel(fbi, LCCR0, lccr0 | LCCR0_DIS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Eric Miao2ba162b2008-04-30 00:52:24 -07001073 wait_for_completion_timeout(&fbi->disable_done, 200 * HZ / 1000);
Nicolas Pitre8d372262005-08-10 16:45:13 +01001074
1075 /* disable LCD controller clock */
Russell King72e35242007-08-20 10:18:42 +01001076 clk_disable(fbi->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078
1079/*
1080 * pxafb_handle_irq: Handle 'LCD DONE' interrupts.
1081 */
David Howells7d12e782006-10-05 14:55:46 +01001082static irqreturn_t pxafb_handle_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
1084 struct pxafb_info *fbi = dev_id;
Eric Miaoa7535ba2008-04-30 00:52:24 -07001085 unsigned int lccr0, lcsr = lcd_readl(fbi, LCSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087 if (lcsr & LCSR_LDD) {
Eric Miaoa7535ba2008-04-30 00:52:24 -07001088 lccr0 = lcd_readl(fbi, LCCR0);
1089 lcd_writel(fbi, LCCR0, lccr0 | LCCR0_LDM);
Eric Miao2ba162b2008-04-30 00:52:24 -07001090 complete(&fbi->disable_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 }
1092
Eric Miao3c42a442008-04-30 00:52:26 -07001093#ifdef CONFIG_FB_PXA_SMARTPANEL
1094 if (lcsr & LCSR_CMD_INT)
1095 complete(&fbi->command_done);
1096#endif
1097
Eric Miaoa7535ba2008-04-30 00:52:24 -07001098 lcd_writel(fbi, LCSR, lcsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return IRQ_HANDLED;
1100}
1101
1102/*
1103 * This function must be called from task context only, since it will
1104 * sleep when disabling the LCD controller, or if we get two contending
1105 * processes trying to alter state.
1106 */
1107static void set_ctrlr_state(struct pxafb_info *fbi, u_int state)
1108{
1109 u_int old_state;
1110
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -07001111 mutex_lock(&fbi->ctrlr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 old_state = fbi->state;
1114
1115 /*
1116 * Hack around fbcon initialisation.
1117 */
1118 if (old_state == C_STARTUP && state == C_REENABLE)
1119 state = C_ENABLE;
1120
1121 switch (state) {
1122 case C_DISABLE_CLKCHANGE:
1123 /*
1124 * Disable controller for clock change. If the
1125 * controller is already disabled, then do nothing.
1126 */
1127 if (old_state != C_DISABLE && old_state != C_DISABLE_PM) {
1128 fbi->state = state;
eric miaob0086ef2008-04-30 00:52:19 -07001129 /* TODO __pxafb_lcd_power(fbi, 0); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 pxafb_disable_controller(fbi);
1131 }
1132 break;
1133
1134 case C_DISABLE_PM:
1135 case C_DISABLE:
1136 /*
1137 * Disable controller
1138 */
1139 if (old_state != C_DISABLE) {
1140 fbi->state = state;
1141 __pxafb_backlight_power(fbi, 0);
1142 __pxafb_lcd_power(fbi, 0);
1143 if (old_state != C_DISABLE_CLKCHANGE)
1144 pxafb_disable_controller(fbi);
1145 }
1146 break;
1147
1148 case C_ENABLE_CLKCHANGE:
1149 /*
1150 * Enable the controller after clock change. Only
1151 * do this if we were disabled for the clock change.
1152 */
1153 if (old_state == C_DISABLE_CLKCHANGE) {
1154 fbi->state = C_ENABLE;
1155 pxafb_enable_controller(fbi);
eric miaob0086ef2008-04-30 00:52:19 -07001156 /* TODO __pxafb_lcd_power(fbi, 1); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
1158 break;
1159
1160 case C_REENABLE:
1161 /*
1162 * Re-enable the controller only if it was already
1163 * enabled. This is so we reprogram the control
1164 * registers.
1165 */
1166 if (old_state == C_ENABLE) {
Richard Purdied14b2722006-09-20 22:54:21 +01001167 __pxafb_lcd_power(fbi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 pxafb_disable_controller(fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 pxafb_enable_controller(fbi);
Richard Purdied14b2722006-09-20 22:54:21 +01001170 __pxafb_lcd_power(fbi, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
1172 break;
1173
1174 case C_ENABLE_PM:
1175 /*
1176 * Re-enable the controller after PM. This is not
1177 * perfect - think about the case where we were doing
1178 * a clock change, and we suspended half-way through.
1179 */
1180 if (old_state != C_DISABLE_PM)
1181 break;
1182 /* fall through */
1183
1184 case C_ENABLE:
1185 /*
1186 * Power up the LCD screen, enable controller, and
1187 * turn on the backlight.
1188 */
1189 if (old_state != C_ENABLE) {
1190 fbi->state = C_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 pxafb_enable_controller(fbi);
1192 __pxafb_lcd_power(fbi, 1);
1193 __pxafb_backlight_power(fbi, 1);
1194 }
1195 break;
1196 }
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -07001197 mutex_unlock(&fbi->ctrlr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
1200/*
1201 * Our LCD controller task (which is called when we blank or unblank)
1202 * via keventd.
1203 */
David Howells6d5aefb2006-12-05 19:36:26 +00001204static void pxafb_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
David Howells6d5aefb2006-12-05 19:36:26 +00001206 struct pxafb_info *fbi =
1207 container_of(work, struct pxafb_info, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 u_int state = xchg(&fbi->task_state, -1);
1209
1210 set_ctrlr_state(fbi, state);
1211}
1212
1213#ifdef CONFIG_CPU_FREQ
1214/*
1215 * CPU clock speed change handler. We need to adjust the LCD timing
1216 * parameters when the CPU clock is adjusted by the power management
1217 * subsystem.
1218 *
1219 * TODO: Determine why f->new != 10*get_lclk_frequency_10khz()
1220 */
1221static int
1222pxafb_freq_transition(struct notifier_block *nb, unsigned long val, void *data)
1223{
1224 struct pxafb_info *fbi = TO_INF(nb, freq_transition);
eric miaob0086ef2008-04-30 00:52:19 -07001225 /* TODO struct cpufreq_freqs *f = data; */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 u_int pcd;
1227
1228 switch (val) {
1229 case CPUFREQ_PRECHANGE:
1230 set_ctrlr_state(fbi, C_DISABLE_CLKCHANGE);
1231 break;
1232
1233 case CPUFREQ_POSTCHANGE:
Russell King72e35242007-08-20 10:18:42 +01001234 pcd = get_pcd(fbi, fbi->fb.var.pixclock);
Richard Purdieba44cd22005-09-09 13:10:03 -07001235 set_hsync_time(fbi, pcd);
eric miaob0086ef2008-04-30 00:52:19 -07001236 fbi->reg_lccr3 = (fbi->reg_lccr3 & ~0xff) |
1237 LCCR3_PixClkDiv(pcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 set_ctrlr_state(fbi, C_ENABLE_CLKCHANGE);
1239 break;
1240 }
1241 return 0;
1242}
1243
1244static int
1245pxafb_freq_policy(struct notifier_block *nb, unsigned long val, void *data)
1246{
1247 struct pxafb_info *fbi = TO_INF(nb, freq_policy);
1248 struct fb_var_screeninfo *var = &fbi->fb.var;
1249 struct cpufreq_policy *policy = data;
1250
1251 switch (val) {
1252 case CPUFREQ_ADJUST:
1253 case CPUFREQ_INCOMPATIBLE:
Holger Schurigac2bf5b2008-02-11 16:52:30 +01001254 pr_debug("min dma period: %d ps, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 "new clock %d kHz\n", pxafb_display_dma_period(var),
1256 policy->max);
eric miaob0086ef2008-04-30 00:52:19 -07001257 /* TODO: fill in min/max values */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260 return 0;
1261}
1262#endif
1263
1264#ifdef CONFIG_PM
1265/*
1266 * Power management hooks. Note that we won't be called from IRQ context,
1267 * unlike the blank functions above, so we may sleep.
1268 */
Russell King3ae5eae2005-11-09 22:32:44 +00001269static int pxafb_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Russell King3ae5eae2005-11-09 22:32:44 +00001271 struct pxafb_info *fbi = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Russell King9480e302005-10-28 09:52:56 -07001273 set_ctrlr_state(fbi, C_DISABLE_PM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 return 0;
1275}
1276
Russell King3ae5eae2005-11-09 22:32:44 +00001277static int pxafb_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
Russell King3ae5eae2005-11-09 22:32:44 +00001279 struct pxafb_info *fbi = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Russell King9480e302005-10-28 09:52:56 -07001281 set_ctrlr_state(fbi, C_ENABLE_PM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 return 0;
1283}
1284#else
1285#define pxafb_suspend NULL
1286#define pxafb_resume NULL
1287#endif
1288
Eric Miao77e19672008-12-16 11:54:34 +08001289static int __devinit pxafb_init_video_memory(struct pxafb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Eric Miao77e19672008-12-16 11:54:34 +08001291 int size = PAGE_ALIGN(fbi->video_mem_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Eric Miao77e19672008-12-16 11:54:34 +08001293 fbi->video_mem = alloc_pages_exact(size, GFP_KERNEL | __GFP_ZERO);
1294 if (fbi->video_mem == NULL)
1295 return -ENOMEM;
Eric Miao3c42a442008-04-30 00:52:26 -07001296
Eric Miao77e19672008-12-16 11:54:34 +08001297 fbi->video_mem_phys = virt_to_phys(fbi->video_mem);
1298 fbi->video_mem_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Eric Miao77e19672008-12-16 11:54:34 +08001300 fbi->fb.fix.smem_start = fbi->video_mem_phys;
1301 fbi->fb.fix.smem_len = fbi->video_mem_size;
1302 fbi->fb.screen_base = fbi->video_mem;
Eric Miao3c42a442008-04-30 00:52:26 -07001303
Eric Miao77e19672008-12-16 11:54:34 +08001304 return fbi->video_mem ? 0 : -ENOMEM;
eric miao84f43c32008-04-30 00:52:22 -07001305}
1306
Guennadi Liakhovetskiebdf9822008-05-05 15:31:44 +01001307static void pxafb_decode_mach_info(struct pxafb_info *fbi,
1308 struct pxafb_mach_info *inf)
eric miao84f43c32008-04-30 00:52:22 -07001309{
1310 unsigned int lcd_conn = inf->lcd_conn;
Eric Miao77e19672008-12-16 11:54:34 +08001311 struct pxafb_mode_info *m;
1312 int i;
eric miao84f43c32008-04-30 00:52:22 -07001313
1314 fbi->cmap_inverse = inf->cmap_inverse;
1315 fbi->cmap_static = inf->cmap_static;
1316
Eric Miao1ec26db2008-11-11 21:45:57 +08001317 switch (lcd_conn & LCD_TYPE_MASK) {
eric miao84f43c32008-04-30 00:52:22 -07001318 case LCD_TYPE_MONO_STN:
1319 fbi->lccr0 = LCCR0_CMS;
1320 break;
1321 case LCD_TYPE_MONO_DSTN:
1322 fbi->lccr0 = LCCR0_CMS | LCCR0_SDS;
1323 break;
1324 case LCD_TYPE_COLOR_STN:
1325 fbi->lccr0 = 0;
1326 break;
1327 case LCD_TYPE_COLOR_DSTN:
1328 fbi->lccr0 = LCCR0_SDS;
1329 break;
1330 case LCD_TYPE_COLOR_TFT:
1331 fbi->lccr0 = LCCR0_PAS;
1332 break;
1333 case LCD_TYPE_SMART_PANEL:
1334 fbi->lccr0 = LCCR0_LCDT | LCCR0_PAS;
1335 break;
1336 default:
1337 /* fall back to backward compatibility way */
1338 fbi->lccr0 = inf->lccr0;
1339 fbi->lccr3 = inf->lccr3;
1340 fbi->lccr4 = inf->lccr4;
Guennadi Liakhovetskiebdf9822008-05-05 15:31:44 +01001341 goto decode_mode;
eric miao84f43c32008-04-30 00:52:22 -07001342 }
1343
1344 if (lcd_conn == LCD_MONO_STN_8BPP)
1345 fbi->lccr0 |= LCCR0_DPD;
1346
Eric Miao9a1ac7e2008-08-15 02:50:44 -04001347 fbi->lccr0 |= (lcd_conn & LCD_ALTERNATE_MAPPING) ? LCCR0_LDDALT : 0;
1348
eric miao84f43c32008-04-30 00:52:22 -07001349 fbi->lccr3 = LCCR3_Acb((inf->lcd_conn >> 10) & 0xff);
1350 fbi->lccr3 |= (lcd_conn & LCD_BIAS_ACTIVE_LOW) ? LCCR3_OEP : 0;
1351 fbi->lccr3 |= (lcd_conn & LCD_PCLK_EDGE_FALL) ? LCCR3_PCP : 0;
1352
Guennadi Liakhovetskiebdf9822008-05-05 15:31:44 +01001353decode_mode:
Eric Miao77e19672008-12-16 11:54:34 +08001354 pxafb_setmode(&fbi->fb.var, &inf->modes[0]);
1355
1356 /* decide video memory size as follows:
1357 * 1. default to mode of maximum resolution
1358 * 2. allow platform to override
1359 * 3. allow module parameter to override
1360 */
1361 for (i = 0, m = &inf->modes[0]; i < inf->num_modes; i++, m++)
1362 fbi->video_mem_size = max_t(size_t, fbi->video_mem_size,
1363 m->xres * m->yres * m->bpp / 8);
1364
1365 if (inf->video_mem_size > fbi->video_mem_size)
1366 fbi->video_mem_size = inf->video_mem_size;
1367
1368 if (video_mem_size > fbi->video_mem_size)
1369 fbi->video_mem_size = video_mem_size;
eric miao84f43c32008-04-30 00:52:22 -07001370}
1371
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001372static struct pxafb_info * __devinit pxafb_init_fbinfo(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
1374 struct pxafb_info *fbi;
1375 void *addr;
1376 struct pxafb_mach_info *inf = dev->platform_data;
1377
1378 /* Alloc the pxafb_info and pseudo_palette in one step */
1379 fbi = kmalloc(sizeof(struct pxafb_info) + sizeof(u32) * 16, GFP_KERNEL);
1380 if (!fbi)
1381 return NULL;
1382
1383 memset(fbi, 0, sizeof(struct pxafb_info));
1384 fbi->dev = dev;
1385
Russell King72e35242007-08-20 10:18:42 +01001386 fbi->clk = clk_get(dev, "LCDCLK");
1387 if (IS_ERR(fbi->clk)) {
1388 kfree(fbi);
1389 return NULL;
1390 }
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 strcpy(fbi->fb.fix.id, PXA_NAME);
1393
1394 fbi->fb.fix.type = FB_TYPE_PACKED_PIXELS;
1395 fbi->fb.fix.type_aux = 0;
1396 fbi->fb.fix.xpanstep = 0;
Eric Miao7e4b19c2008-12-17 14:56:54 +08001397 fbi->fb.fix.ypanstep = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 fbi->fb.fix.ywrapstep = 0;
1399 fbi->fb.fix.accel = FB_ACCEL_NONE;
1400
1401 fbi->fb.var.nonstd = 0;
1402 fbi->fb.var.activate = FB_ACTIVATE_NOW;
1403 fbi->fb.var.height = -1;
1404 fbi->fb.var.width = -1;
Eric Miao7e4b19c2008-12-17 14:56:54 +08001405 fbi->fb.var.accel_flags = FB_ACCELF_TEXT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 fbi->fb.var.vmode = FB_VMODE_NONINTERLACED;
1407
1408 fbi->fb.fbops = &pxafb_ops;
1409 fbi->fb.flags = FBINFO_DEFAULT;
1410 fbi->fb.node = -1;
1411
1412 addr = fbi;
1413 addr = addr + sizeof(struct pxafb_info);
1414 fbi->fb.pseudo_palette = addr;
1415
eric miaob0086ef2008-04-30 00:52:19 -07001416 fbi->state = C_STARTUP;
1417 fbi->task_state = (u_char)-1;
Richard Purdied14b2722006-09-20 22:54:21 +01001418
eric miao84f43c32008-04-30 00:52:22 -07001419 pxafb_decode_mach_info(fbi, inf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 init_waitqueue_head(&fbi->ctrlr_wait);
David Howells6d5aefb2006-12-05 19:36:26 +00001422 INIT_WORK(&fbi->task, pxafb_task);
Matthias Kaehlckeb91dbce2008-07-23 21:31:14 -07001423 mutex_init(&fbi->ctrlr_lock);
Eric Miao2ba162b2008-04-30 00:52:24 -07001424 init_completion(&fbi->disable_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426 return fbi;
1427}
1428
1429#ifdef CONFIG_FB_PXA_PARAMETERS
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001430static int __devinit parse_opt_mode(struct device *dev, const char *this_opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
1432 struct pxafb_mach_info *inf = dev->platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
eric miao817daf12008-04-30 00:52:18 -07001434 const char *name = this_opt+5;
1435 unsigned int namelen = strlen(name);
1436 int res_specified = 0, bpp_specified = 0;
1437 unsigned int xres = 0, yres = 0, bpp = 0;
1438 int yres_specified = 0;
1439 int i;
1440 for (i = namelen-1; i >= 0; i--) {
1441 switch (name[i]) {
1442 case '-':
1443 namelen = i;
1444 if (!bpp_specified && !yres_specified) {
1445 bpp = simple_strtoul(&name[i+1], NULL, 0);
1446 bpp_specified = 1;
1447 } else
1448 goto done;
1449 break;
1450 case 'x':
1451 if (!yres_specified) {
1452 yres = simple_strtoul(&name[i+1], NULL, 0);
1453 yres_specified = 1;
1454 } else
1455 goto done;
1456 break;
1457 case '0' ... '9':
1458 break;
1459 default:
1460 goto done;
1461 }
1462 }
1463 if (i < 0 && yres_specified) {
1464 xres = simple_strtoul(name, NULL, 0);
1465 res_specified = 1;
1466 }
1467done:
1468 if (res_specified) {
1469 dev_info(dev, "overriding resolution: %dx%d\n", xres, yres);
1470 inf->modes[0].xres = xres; inf->modes[0].yres = yres;
1471 }
1472 if (bpp_specified)
1473 switch (bpp) {
1474 case 1:
1475 case 2:
1476 case 4:
1477 case 8:
1478 case 16:
1479 inf->modes[0].bpp = bpp;
1480 dev_info(dev, "overriding bit depth: %d\n", bpp);
1481 break;
1482 default:
1483 dev_err(dev, "Depth %d is not valid\n", bpp);
1484 return -EINVAL;
1485 }
1486 return 0;
1487}
1488
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001489static int __devinit parse_opt(struct device *dev, char *this_opt)
eric miao817daf12008-04-30 00:52:18 -07001490{
1491 struct pxafb_mach_info *inf = dev->platform_data;
1492 struct pxafb_mode_info *mode = &inf->modes[0];
1493 char s[64];
1494
1495 s[0] = '\0';
1496
Eric Miao77e19672008-12-16 11:54:34 +08001497 if (!strncmp(this_opt, "vmem:", 5)) {
1498 video_mem_size = memparse(this_opt + 5, NULL);
1499 } else if (!strncmp(this_opt, "mode:", 5)) {
eric miao817daf12008-04-30 00:52:18 -07001500 return parse_opt_mode(dev, this_opt);
1501 } else if (!strncmp(this_opt, "pixclock:", 9)) {
1502 mode->pixclock = simple_strtoul(this_opt+9, NULL, 0);
1503 sprintf(s, "pixclock: %ld\n", mode->pixclock);
1504 } else if (!strncmp(this_opt, "left:", 5)) {
1505 mode->left_margin = simple_strtoul(this_opt+5, NULL, 0);
1506 sprintf(s, "left: %u\n", mode->left_margin);
1507 } else if (!strncmp(this_opt, "right:", 6)) {
1508 mode->right_margin = simple_strtoul(this_opt+6, NULL, 0);
1509 sprintf(s, "right: %u\n", mode->right_margin);
1510 } else if (!strncmp(this_opt, "upper:", 6)) {
1511 mode->upper_margin = simple_strtoul(this_opt+6, NULL, 0);
1512 sprintf(s, "upper: %u\n", mode->upper_margin);
1513 } else if (!strncmp(this_opt, "lower:", 6)) {
1514 mode->lower_margin = simple_strtoul(this_opt+6, NULL, 0);
1515 sprintf(s, "lower: %u\n", mode->lower_margin);
1516 } else if (!strncmp(this_opt, "hsynclen:", 9)) {
1517 mode->hsync_len = simple_strtoul(this_opt+9, NULL, 0);
1518 sprintf(s, "hsynclen: %u\n", mode->hsync_len);
1519 } else if (!strncmp(this_opt, "vsynclen:", 9)) {
1520 mode->vsync_len = simple_strtoul(this_opt+9, NULL, 0);
1521 sprintf(s, "vsynclen: %u\n", mode->vsync_len);
1522 } else if (!strncmp(this_opt, "hsync:", 6)) {
1523 if (simple_strtoul(this_opt+6, NULL, 0) == 0) {
1524 sprintf(s, "hsync: Active Low\n");
1525 mode->sync &= ~FB_SYNC_HOR_HIGH_ACT;
1526 } else {
1527 sprintf(s, "hsync: Active High\n");
1528 mode->sync |= FB_SYNC_HOR_HIGH_ACT;
1529 }
1530 } else if (!strncmp(this_opt, "vsync:", 6)) {
1531 if (simple_strtoul(this_opt+6, NULL, 0) == 0) {
1532 sprintf(s, "vsync: Active Low\n");
1533 mode->sync &= ~FB_SYNC_VERT_HIGH_ACT;
1534 } else {
1535 sprintf(s, "vsync: Active High\n");
1536 mode->sync |= FB_SYNC_VERT_HIGH_ACT;
1537 }
1538 } else if (!strncmp(this_opt, "dpc:", 4)) {
1539 if (simple_strtoul(this_opt+4, NULL, 0) == 0) {
1540 sprintf(s, "double pixel clock: false\n");
1541 inf->lccr3 &= ~LCCR3_DPC;
1542 } else {
1543 sprintf(s, "double pixel clock: true\n");
1544 inf->lccr3 |= LCCR3_DPC;
1545 }
1546 } else if (!strncmp(this_opt, "outputen:", 9)) {
1547 if (simple_strtoul(this_opt+9, NULL, 0) == 0) {
1548 sprintf(s, "output enable: active low\n");
1549 inf->lccr3 = (inf->lccr3 & ~LCCR3_OEP) | LCCR3_OutEnL;
1550 } else {
1551 sprintf(s, "output enable: active high\n");
1552 inf->lccr3 = (inf->lccr3 & ~LCCR3_OEP) | LCCR3_OutEnH;
1553 }
1554 } else if (!strncmp(this_opt, "pixclockpol:", 12)) {
1555 if (simple_strtoul(this_opt+12, NULL, 0) == 0) {
1556 sprintf(s, "pixel clock polarity: falling edge\n");
1557 inf->lccr3 = (inf->lccr3 & ~LCCR3_PCP) | LCCR3_PixFlEdg;
1558 } else {
1559 sprintf(s, "pixel clock polarity: rising edge\n");
1560 inf->lccr3 = (inf->lccr3 & ~LCCR3_PCP) | LCCR3_PixRsEdg;
1561 }
1562 } else if (!strncmp(this_opt, "color", 5)) {
1563 inf->lccr0 = (inf->lccr0 & ~LCCR0_CMS) | LCCR0_Color;
1564 } else if (!strncmp(this_opt, "mono", 4)) {
1565 inf->lccr0 = (inf->lccr0 & ~LCCR0_CMS) | LCCR0_Mono;
1566 } else if (!strncmp(this_opt, "active", 6)) {
1567 inf->lccr0 = (inf->lccr0 & ~LCCR0_PAS) | LCCR0_Act;
1568 } else if (!strncmp(this_opt, "passive", 7)) {
1569 inf->lccr0 = (inf->lccr0 & ~LCCR0_PAS) | LCCR0_Pas;
1570 } else if (!strncmp(this_opt, "single", 6)) {
1571 inf->lccr0 = (inf->lccr0 & ~LCCR0_SDS) | LCCR0_Sngl;
1572 } else if (!strncmp(this_opt, "dual", 4)) {
1573 inf->lccr0 = (inf->lccr0 & ~LCCR0_SDS) | LCCR0_Dual;
1574 } else if (!strncmp(this_opt, "4pix", 4)) {
1575 inf->lccr0 = (inf->lccr0 & ~LCCR0_DPD) | LCCR0_4PixMono;
1576 } else if (!strncmp(this_opt, "8pix", 4)) {
1577 inf->lccr0 = (inf->lccr0 & ~LCCR0_DPD) | LCCR0_8PixMono;
1578 } else {
1579 dev_err(dev, "unknown option: %s\n", this_opt);
1580 return -EINVAL;
1581 }
1582
1583 if (s[0] != '\0')
1584 dev_info(dev, "override %s", s);
1585
1586 return 0;
1587}
1588
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001589static int __devinit pxafb_parse_options(struct device *dev, char *options)
eric miao817daf12008-04-30 00:52:18 -07001590{
1591 char *this_opt;
1592 int ret;
1593
1594 if (!options || !*options)
1595 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
1597 dev_dbg(dev, "options are \"%s\"\n", options ? options : "null");
1598
1599 /* could be made table driven or similar?... */
eric miao817daf12008-04-30 00:52:18 -07001600 while ((this_opt = strsep(&options, ",")) != NULL) {
1601 ret = parse_opt(dev, this_opt);
1602 if (ret)
1603 return ret;
1604 }
1605 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606}
eric miao92ac73c2008-04-30 00:52:20 -07001607
1608static char g_options[256] __devinitdata = "";
1609
Jaya Kumarf1edfc42008-06-22 04:27:25 +01001610#ifndef MODULE
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001611static int __init pxafb_setup_options(void)
eric miao92ac73c2008-04-30 00:52:20 -07001612{
1613 char *options = NULL;
1614
1615 if (fb_get_options("pxafb", &options))
1616 return -ENODEV;
1617
1618 if (options)
1619 strlcpy(g_options, options, sizeof(g_options));
1620
1621 return 0;
1622}
1623#else
1624#define pxafb_setup_options() (0)
1625
1626module_param_string(options, g_options, sizeof(g_options), 0);
1627MODULE_PARM_DESC(options, "LCD parameters (see Documentation/fb/pxafb.txt)");
1628#endif
1629
1630#else
1631#define pxafb_parse_options(...) (0)
1632#define pxafb_setup_options() (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633#endif
1634
Eric Miao4f3e2662008-08-16 03:50:51 -04001635#ifdef DEBUG_VAR
1636/* Check for various illegal bit-combinations. Currently only
1637 * a warning is given. */
1638static void __devinit pxafb_check_options(struct device *dev,
1639 struct pxafb_mach_info *inf)
1640{
1641 if (inf->lcd_conn)
1642 return;
1643
1644 if (inf->lccr0 & LCCR0_INVALID_CONFIG_MASK)
1645 dev_warn(dev, "machine LCCR0 setting contains "
1646 "illegal bits: %08x\n",
1647 inf->lccr0 & LCCR0_INVALID_CONFIG_MASK);
1648 if (inf->lccr3 & LCCR3_INVALID_CONFIG_MASK)
1649 dev_warn(dev, "machine LCCR3 setting contains "
1650 "illegal bits: %08x\n",
1651 inf->lccr3 & LCCR3_INVALID_CONFIG_MASK);
1652 if (inf->lccr0 & LCCR0_DPD &&
1653 ((inf->lccr0 & LCCR0_PAS) != LCCR0_Pas ||
1654 (inf->lccr0 & LCCR0_SDS) != LCCR0_Sngl ||
1655 (inf->lccr0 & LCCR0_CMS) != LCCR0_Mono))
1656 dev_warn(dev, "Double Pixel Data (DPD) mode is "
1657 "only valid in passive mono"
1658 " single panel mode\n");
1659 if ((inf->lccr0 & LCCR0_PAS) == LCCR0_Act &&
1660 (inf->lccr0 & LCCR0_SDS) == LCCR0_Dual)
1661 dev_warn(dev, "Dual panel only valid in passive mode\n");
1662 if ((inf->lccr0 & LCCR0_PAS) == LCCR0_Pas &&
1663 (inf->modes->upper_margin || inf->modes->lower_margin))
1664 dev_warn(dev, "Upper and lower margins must be 0 in "
1665 "passive mode\n");
1666}
1667#else
1668#define pxafb_check_options(...) do {} while (0)
1669#endif
1670
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001671static int __devinit pxafb_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
1673 struct pxafb_info *fbi;
1674 struct pxafb_mach_info *inf;
eric miaoce4fb7b2008-04-30 00:52:21 -07001675 struct resource *r;
1676 int irq, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Richard Purdie2cbbb3b2006-03-31 02:31:53 -08001678 dev_dbg(&dev->dev, "pxafb_probe\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Russell King3ae5eae2005-11-09 22:32:44 +00001680 inf = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 ret = -ENOMEM;
1682 fbi = NULL;
1683 if (!inf)
1684 goto failed;
1685
Russell King3ae5eae2005-11-09 22:32:44 +00001686 ret = pxafb_parse_options(&dev->dev, g_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 if (ret < 0)
1688 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Eric Miao4f3e2662008-08-16 03:50:51 -04001690 pxafb_check_options(&dev->dev, inf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
eric miaob0086ef2008-04-30 00:52:19 -07001692 dev_dbg(&dev->dev, "got a %dx%dx%d LCD\n",
1693 inf->modes->xres,
1694 inf->modes->yres,
1695 inf->modes->bpp);
1696 if (inf->modes->xres == 0 ||
1697 inf->modes->yres == 0 ||
1698 inf->modes->bpp == 0) {
Russell King3ae5eae2005-11-09 22:32:44 +00001699 dev_err(&dev->dev, "Invalid resolution or bit depth\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 ret = -EINVAL;
1701 goto failed;
1702 }
Eric Miaoa5718a12008-11-11 21:50:39 +08001703
Russell King3ae5eae2005-11-09 22:32:44 +00001704 fbi = pxafb_init_fbinfo(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 if (!fbi) {
eric miaob0086ef2008-04-30 00:52:19 -07001706 /* only reason for pxafb_init_fbinfo to fail is kmalloc */
Russell King3ae5eae2005-11-09 22:32:44 +00001707 dev_err(&dev->dev, "Failed to initialize framebuffer device\n");
eric miaob0086ef2008-04-30 00:52:19 -07001708 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 goto failed;
1710 }
1711
Eric Miaoa5718a12008-11-11 21:50:39 +08001712 fbi->backlight_power = inf->pxafb_backlight_power;
1713 fbi->lcd_power = inf->pxafb_lcd_power;
1714
eric miaoce4fb7b2008-04-30 00:52:21 -07001715 r = platform_get_resource(dev, IORESOURCE_MEM, 0);
1716 if (r == NULL) {
1717 dev_err(&dev->dev, "no I/O memory resource defined\n");
1718 ret = -ENODEV;
Jaya Kumaree984762008-06-22 04:27:26 +01001719 goto failed_fbi;
eric miaoce4fb7b2008-04-30 00:52:21 -07001720 }
1721
1722 r = request_mem_region(r->start, r->end - r->start + 1, dev->name);
1723 if (r == NULL) {
1724 dev_err(&dev->dev, "failed to request I/O memory\n");
1725 ret = -EBUSY;
Jaya Kumaree984762008-06-22 04:27:26 +01001726 goto failed_fbi;
eric miaoce4fb7b2008-04-30 00:52:21 -07001727 }
1728
1729 fbi->mmio_base = ioremap(r->start, r->end - r->start + 1);
1730 if (fbi->mmio_base == NULL) {
1731 dev_err(&dev->dev, "failed to map I/O memory\n");
1732 ret = -EBUSY;
1733 goto failed_free_res;
1734 }
1735
Eric Miao77e19672008-12-16 11:54:34 +08001736 fbi->dma_buff_size = PAGE_ALIGN(sizeof(struct pxafb_dma_buff));
1737 fbi->dma_buff = dma_alloc_coherent(fbi->dev, fbi->dma_buff_size,
1738 &fbi->dma_buff_phys, GFP_KERNEL);
1739 if (fbi->dma_buff == NULL) {
1740 dev_err(&dev->dev, "failed to allocate memory for DMA\n");
1741 ret = -ENOMEM;
1742 goto failed_free_io;
1743 }
1744
1745 ret = pxafb_init_video_memory(fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 if (ret) {
Russell King3ae5eae2005-11-09 22:32:44 +00001747 dev_err(&dev->dev, "Failed to allocate video RAM: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 ret = -ENOMEM;
Eric Miao77e19672008-12-16 11:54:34 +08001749 goto failed_free_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
eric miaoce4fb7b2008-04-30 00:52:21 -07001752 irq = platform_get_irq(dev, 0);
1753 if (irq < 0) {
1754 dev_err(&dev->dev, "no IRQ defined\n");
1755 ret = -ENODEV;
1756 goto failed_free_mem;
1757 }
1758
1759 ret = request_irq(irq, pxafb_handle_irq, IRQF_DISABLED, "LCD", fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (ret) {
Russell King3ae5eae2005-11-09 22:32:44 +00001761 dev_err(&dev->dev, "request_irq failed: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 ret = -EBUSY;
eric miaoce4fb7b2008-04-30 00:52:21 -07001763 goto failed_free_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
1765
Eric Miao3c42a442008-04-30 00:52:26 -07001766 ret = pxafb_smart_init(fbi);
1767 if (ret) {
1768 dev_err(&dev->dev, "failed to initialize smartpanel\n");
1769 goto failed_free_irq;
1770 }
Eric Miao07df1c42008-12-04 11:14:11 +08001771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 /*
1773 * This makes sure that our colour bitfield
1774 * descriptors are correctly initialised.
1775 */
Jaya Kumaree984762008-06-22 04:27:26 +01001776 ret = pxafb_check_var(&fbi->fb.var, &fbi->fb);
1777 if (ret) {
1778 dev_err(&dev->dev, "failed to get suitable mode\n");
1779 goto failed_free_irq;
1780 }
1781
1782 ret = pxafb_set_par(&fbi->fb);
1783 if (ret) {
1784 dev_err(&dev->dev, "Failed to set parameters\n");
1785 goto failed_free_irq;
1786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Russell King3ae5eae2005-11-09 22:32:44 +00001788 platform_set_drvdata(dev, fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790 ret = register_framebuffer(&fbi->fb);
1791 if (ret < 0) {
eric miaob0086ef2008-04-30 00:52:19 -07001792 dev_err(&dev->dev,
1793 "Failed to register framebuffer device: %d\n", ret);
Jaya Kumaree984762008-06-22 04:27:26 +01001794 goto failed_free_cmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797#ifdef CONFIG_CPU_FREQ
1798 fbi->freq_transition.notifier_call = pxafb_freq_transition;
1799 fbi->freq_policy.notifier_call = pxafb_freq_policy;
eric miaob0086ef2008-04-30 00:52:19 -07001800 cpufreq_register_notifier(&fbi->freq_transition,
1801 CPUFREQ_TRANSITION_NOTIFIER);
1802 cpufreq_register_notifier(&fbi->freq_policy,
1803 CPUFREQ_POLICY_NOTIFIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804#endif
1805
1806 /*
1807 * Ok, now enable the LCD controller
1808 */
1809 set_ctrlr_state(fbi, C_ENABLE);
1810
1811 return 0;
1812
Jaya Kumaree984762008-06-22 04:27:26 +01001813failed_free_cmap:
1814 if (fbi->fb.cmap.len)
1815 fb_dealloc_cmap(&fbi->fb.cmap);
eric miaoce4fb7b2008-04-30 00:52:21 -07001816failed_free_irq:
1817 free_irq(irq, fbi);
eric miaoce4fb7b2008-04-30 00:52:21 -07001818failed_free_mem:
Eric Miao77e19672008-12-16 11:54:34 +08001819 free_pages_exact(fbi->video_mem, fbi->video_mem_size);
1820failed_free_dma:
1821 dma_free_coherent(&dev->dev, fbi->dma_buff_size,
1822 fbi->dma_buff, fbi->dma_buff_phys);
Jaya Kumaree984762008-06-22 04:27:26 +01001823failed_free_io:
1824 iounmap(fbi->mmio_base);
1825failed_free_res:
1826 release_mem_region(r->start, r->end - r->start + 1);
1827failed_fbi:
1828 clk_put(fbi->clk);
Russell King3ae5eae2005-11-09 22:32:44 +00001829 platform_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 kfree(fbi);
Jaya Kumaree984762008-06-22 04:27:26 +01001831failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 return ret;
1833}
1834
Jaya Kumar9f17f282008-06-22 04:27:28 +01001835static int __devexit pxafb_remove(struct platform_device *dev)
1836{
1837 struct pxafb_info *fbi = platform_get_drvdata(dev);
1838 struct resource *r;
1839 int irq;
1840 struct fb_info *info;
1841
1842 if (!fbi)
1843 return 0;
1844
1845 info = &fbi->fb;
1846
1847 unregister_framebuffer(info);
1848
1849 pxafb_disable_controller(fbi);
1850
1851 if (fbi->fb.cmap.len)
1852 fb_dealloc_cmap(&fbi->fb.cmap);
1853
1854 irq = platform_get_irq(dev, 0);
1855 free_irq(irq, fbi);
1856
Eric Miao77e19672008-12-16 11:54:34 +08001857 free_pages_exact(fbi->video_mem, fbi->video_mem_size);
1858
1859 dma_free_writecombine(&dev->dev, fbi->dma_buff_size,
1860 fbi->dma_buff, fbi->dma_buff_phys);
Jaya Kumar9f17f282008-06-22 04:27:28 +01001861
1862 iounmap(fbi->mmio_base);
1863
1864 r = platform_get_resource(dev, IORESOURCE_MEM, 0);
1865 release_mem_region(r->start, r->end - r->start + 1);
1866
1867 clk_put(fbi->clk);
1868 kfree(fbi);
1869
1870 return 0;
1871}
1872
Russell King3ae5eae2005-11-09 22:32:44 +00001873static struct platform_driver pxafb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 .probe = pxafb_probe,
Jaya Kumar9f17f282008-06-22 04:27:28 +01001875 .remove = pxafb_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 .suspend = pxafb_suspend,
1877 .resume = pxafb_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001878 .driver = {
Jaya Kumar9f17f282008-06-22 04:27:28 +01001879 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00001880 .name = "pxa2xx-fb",
1881 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882};
1883
Jaya Kumar9e6c2972008-06-22 04:27:27 +01001884static int __init pxafb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
eric miao92ac73c2008-04-30 00:52:20 -07001886 if (pxafb_setup_options())
1887 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Russell King3ae5eae2005-11-09 22:32:44 +00001889 return platform_driver_register(&pxafb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890}
1891
Jaya Kumar9f17f282008-06-22 04:27:28 +01001892static void __exit pxafb_exit(void)
1893{
1894 platform_driver_unregister(&pxafb_driver);
1895}
1896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897module_init(pxafb_init);
Jaya Kumar9f17f282008-06-22 04:27:28 +01001898module_exit(pxafb_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900MODULE_DESCRIPTION("loadable framebuffer driver for PXA");
1901MODULE_LICENSE("GPL");