2 * Freescale i.MX Frame Buffer device driver
4 * Copyright (C) 2004 Sascha Hauer, Pengutronix
5 * Based on acornfb.c Copyright (C) Russell King.
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file COPYING in the main directory of this archive for
11 * Please direct your questions and comments on this driver to the following
14 * linux-arm-kernel@lists.arm.linux.org.uk
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/errno.h>
20 #include <linux/string.h>
21 #include <linux/interrupt.h>
22 #include <linux/slab.h>
25 #include <linux/delay.h>
26 #include <linux/init.h>
27 #include <linux/ioport.h>
28 #include <linux/cpufreq.h>
29 #include <linux/clk.h>
30 #include <linux/platform_device.h>
31 #include <linux/dma-mapping.h>
33 #include <linux/math64.h>
35 #include <mach/imxfb.h>
36 #include <mach/hardware.h>
39 * Complain if VAR is out of range.
43 #if defined(CONFIG_BACKLIGHT_CLASS_DEVICE) || \
44 (defined(CONFIG_BACKLIGHT_CLASS_DEVICE_MODULE) && \
45 defined(CONFIG_FB_IMX_MODULE))
46 #define PWMR_BACKLIGHT_AVAILABLE
49 #define DRIVER_NAME "imx-fb"
53 #define LCDC_SIZE 0x04
54 #define SIZE_XMAX(x) ((((x) >> 4) & 0x3f) << 20)
56 #define YMAX_MASK (cpu_is_mx1() ? 0x1ff : 0x3ff)
57 #define SIZE_YMAX(y) ((y) & YMAX_MASK)
60 #define VPW_VPW(x) ((x) & 0x3ff)
62 #define LCDC_CPOS 0x0C
63 #define CPOS_CC1 (1<<31)
64 #define CPOS_CC0 (1<<30)
65 #define CPOS_OP (1<<28)
66 #define CPOS_CXP(x) (((x) & 3ff) << 16)
68 #define LCDC_LCWHB 0x10
69 #define LCWHB_BK_EN (1<<31)
70 #define LCWHB_CW(w) (((w) & 0x1f) << 24)
71 #define LCWHB_CH(h) (((h) & 0x1f) << 16)
72 #define LCWHB_BD(x) ((x) & 0xff)
74 #define LCDC_LCHCC 0x14
79 #define HCR_H_WIDTH(x) (((x) & 0x3f) << 26)
80 #define HCR_H_WAIT_1(x) (((x) & 0xff) << 8)
81 #define HCR_H_WAIT_2(x) ((x) & 0xff)
84 #define VCR_V_WIDTH(x) (((x) & 0x3f) << 26)
85 #define VCR_V_WAIT_1(x) (((x) & 0xff) << 8)
86 #define VCR_V_WAIT_2(x) ((x) & 0xff)
89 #define POS_POS(x) ((x) & 1f)
91 #define LCDC_LSCR1 0x28
92 /* bit fields in imxfb.h */
94 #define LCDC_PWMR 0x2C
95 /* bit fields in imxfb.h */
97 #define LCDC_DMACR 0x30
98 /* bit fields in imxfb.h */
100 #define LCDC_RMCR 0x34
102 #define RMCR_LCDC_EN_MX1 (1<<1)
104 #define RMCR_SELF_REF (1<<0)
106 #define LCDC_LCDICR 0x38
107 #define LCDICR_INT_SYN (1<<2)
108 #define LCDICR_INT_CON (1)
110 #define LCDC_LCDISR 0x40
111 #define LCDISR_UDR_ERR (1<<3)
112 #define LCDISR_ERR_RES (1<<2)
113 #define LCDISR_EOF (1<<1)
114 #define LCDISR_BOF (1<<0)
116 /* Used fb-mode. Can be set on kernel command line, therefore file-static. */
117 static const char *fb_mode
;
121 * These are the bitfields for each
122 * display depth that we support.
125 struct fb_bitfield red
;
126 struct fb_bitfield green
;
127 struct fb_bitfield blue
;
128 struct fb_bitfield transp
;
132 struct platform_device
*pdev
;
137 * These are the addresses we mapped
138 * the framebuffer memory region to.
145 dma_addr_t screen_dma
;
155 u_int cmap_inverse
:1,
159 struct imx_fb_videomode
*mode
;
161 #ifdef PWMR_BACKLIGHT_AVAILABLE
162 struct backlight_device
*bl
;
165 void (*lcd_power
)(int);
166 void (*backlight_power
)(int);
169 #define IMX_NAME "IMX"
172 * Minimum X and Y resolutions
177 /* Actually this really is 18bit support, the lowest 2 bits of each colour
178 * are unused in hardware. We claim to have 24bit support to make software
179 * like X work, which does not support 18bit.
181 static struct imxfb_rgb def_rgb_18
= {
182 .red
= {.offset
= 16, .length
= 8,},
183 .green
= {.offset
= 8, .length
= 8,},
184 .blue
= {.offset
= 0, .length
= 8,},
185 .transp
= {.offset
= 0, .length
= 0,},
188 static struct imxfb_rgb def_rgb_16_tft
= {
189 .red
= {.offset
= 11, .length
= 5,},
190 .green
= {.offset
= 5, .length
= 6,},
191 .blue
= {.offset
= 0, .length
= 5,},
192 .transp
= {.offset
= 0, .length
= 0,},
195 static struct imxfb_rgb def_rgb_16_stn
= {
196 .red
= {.offset
= 8, .length
= 4,},
197 .green
= {.offset
= 4, .length
= 4,},
198 .blue
= {.offset
= 0, .length
= 4,},
199 .transp
= {.offset
= 0, .length
= 0,},
202 static struct imxfb_rgb def_rgb_8
= {
203 .red
= {.offset
= 0, .length
= 8,},
204 .green
= {.offset
= 0, .length
= 8,},
205 .blue
= {.offset
= 0, .length
= 8,},
206 .transp
= {.offset
= 0, .length
= 0,},
209 static int imxfb_activate_var(struct fb_var_screeninfo
*var
,
210 struct fb_info
*info
);
212 static inline u_int
chan_to_field(u_int chan
, struct fb_bitfield
*bf
)
215 chan
>>= 16 - bf
->length
;
216 return chan
<< bf
->offset
;
219 static int imxfb_setpalettereg(u_int regno
, u_int red
, u_int green
, u_int blue
,
220 u_int trans
, struct fb_info
*info
)
222 struct imxfb_info
*fbi
= info
->par
;
225 #define CNVT_TOHW(val,width) ((((val)<<(width))+0x7FFF-(val))>>16)
226 if (regno
< fbi
->palette_size
) {
227 val
= (CNVT_TOHW(red
, 4) << 8) |
228 (CNVT_TOHW(green
,4) << 4) |
231 writel(val
, fbi
->regs
+ 0x800 + (regno
<< 2));
237 static int imxfb_setcolreg(u_int regno
, u_int red
, u_int green
, u_int blue
,
238 u_int trans
, struct fb_info
*info
)
240 struct imxfb_info
*fbi
= info
->par
;
245 * If inverse mode was selected, invert all the colours
246 * rather than the register number. The register number
247 * is what you poke into the framebuffer to produce the
248 * colour you requested.
250 if (fbi
->cmap_inverse
) {
252 green
= 0xffff - green
;
253 blue
= 0xffff - blue
;
257 * If greyscale is true, then we convert the RGB value
258 * to greyscale no mater what visual we are using.
260 if (info
->var
.grayscale
)
261 red
= green
= blue
= (19595 * red
+ 38470 * green
+
264 switch (info
->fix
.visual
) {
265 case FB_VISUAL_TRUECOLOR
:
267 * 12 or 16-bit True Colour. We encode the RGB value
268 * according to the RGB bitfield information.
271 u32
*pal
= info
->pseudo_palette
;
273 val
= chan_to_field(red
, &info
->var
.red
);
274 val
|= chan_to_field(green
, &info
->var
.green
);
275 val
|= chan_to_field(blue
, &info
->var
.blue
);
282 case FB_VISUAL_STATIC_PSEUDOCOLOR
:
283 case FB_VISUAL_PSEUDOCOLOR
:
284 ret
= imxfb_setpalettereg(regno
, red
, green
, blue
, trans
, info
);
291 static const struct imx_fb_videomode
*imxfb_find_mode(struct imxfb_info
*fbi
)
293 struct imx_fb_videomode
*m
;
296 for (i
= 0, m
= &fbi
->mode
[0]; i
< fbi
->num_modes
; i
++, m
++) {
297 if (!strcmp(m
->mode
.name
, fb_mode
))
305 * Round up in the following order: bits_per_pixel, xres,
306 * yres, xres_virtual, yres_virtual, xoffset, yoffset, grayscale,
307 * bitfields, horizontal timing, vertical timing.
309 static int imxfb_check_var(struct fb_var_screeninfo
*var
, struct fb_info
*info
)
311 struct imxfb_info
*fbi
= info
->par
;
312 struct imxfb_rgb
*rgb
;
313 const struct imx_fb_videomode
*imxfb_mode
;
314 unsigned long lcd_clk
;
315 unsigned long long tmp
;
318 if (var
->xres
< MIN_XRES
)
319 var
->xres
= MIN_XRES
;
320 if (var
->yres
< MIN_YRES
)
321 var
->yres
= MIN_YRES
;
323 imxfb_mode
= imxfb_find_mode(fbi
);
327 var
->xres
= imxfb_mode
->mode
.xres
;
328 var
->yres
= imxfb_mode
->mode
.yres
;
329 var
->bits_per_pixel
= imxfb_mode
->bpp
;
330 var
->pixclock
= imxfb_mode
->mode
.pixclock
;
331 var
->hsync_len
= imxfb_mode
->mode
.hsync_len
;
332 var
->left_margin
= imxfb_mode
->mode
.left_margin
;
333 var
->right_margin
= imxfb_mode
->mode
.right_margin
;
334 var
->vsync_len
= imxfb_mode
->mode
.vsync_len
;
335 var
->upper_margin
= imxfb_mode
->mode
.upper_margin
;
336 var
->lower_margin
= imxfb_mode
->mode
.lower_margin
;
337 var
->sync
= imxfb_mode
->mode
.sync
;
338 var
->xres_virtual
= max(var
->xres_virtual
, var
->xres
);
339 var
->yres_virtual
= max(var
->yres_virtual
, var
->yres
);
341 pr_debug("var->bits_per_pixel=%d\n", var
->bits_per_pixel
);
343 lcd_clk
= clk_get_rate(fbi
->clk
);
345 tmp
= var
->pixclock
* (unsigned long long)lcd_clk
;
347 do_div(tmp
, 1000000);
349 if (do_div(tmp
, 1000000) > 500000)
352 pcr
= (unsigned int)tmp
;
356 printk(KERN_WARNING
"Must limit pixel clock to %luHz\n",
360 switch (var
->bits_per_pixel
) {
372 if (imxfb_mode
->pcr
& PCR_TFT
)
373 rgb
= &def_rgb_16_tft
;
375 rgb
= &def_rgb_16_stn
;
383 /* add sync polarities */
384 pcr
|= imxfb_mode
->pcr
& ~(0x3f | (7 << 25));
389 * Copy the RGB parameters for this display
390 * from the machine specific parameters.
393 var
->green
= rgb
->green
;
394 var
->blue
= rgb
->blue
;
395 var
->transp
= rgb
->transp
;
397 pr_debug("RGBT length = %d:%d:%d:%d\n",
398 var
->red
.length
, var
->green
.length
, var
->blue
.length
,
401 pr_debug("RGBT offset = %d:%d:%d:%d\n",
402 var
->red
.offset
, var
->green
.offset
, var
->blue
.offset
,
410 * Set the user defined part of the display for the specified console
412 static int imxfb_set_par(struct fb_info
*info
)
414 struct imxfb_info
*fbi
= info
->par
;
415 struct fb_var_screeninfo
*var
= &info
->var
;
417 if (var
->bits_per_pixel
== 16 || var
->bits_per_pixel
== 32)
418 info
->fix
.visual
= FB_VISUAL_TRUECOLOR
;
419 else if (!fbi
->cmap_static
)
420 info
->fix
.visual
= FB_VISUAL_PSEUDOCOLOR
;
423 * Some people have weird ideas about wanting static
424 * pseudocolor maps. I suspect their user space
425 * applications are broken.
427 info
->fix
.visual
= FB_VISUAL_STATIC_PSEUDOCOLOR
;
430 info
->fix
.line_length
= var
->xres_virtual
* var
->bits_per_pixel
/ 8;
431 fbi
->palette_size
= var
->bits_per_pixel
== 8 ? 256 : 16;
433 imxfb_activate_var(var
, info
);
438 #ifdef PWMR_BACKLIGHT_AVAILABLE
439 static int imxfb_bl_get_brightness(struct backlight_device
*bl
)
441 struct imxfb_info
*fbi
= bl_get_data(bl
);
443 return readl(fbi
->regs
+ LCDC_PWMR
) & 0xFF;
446 static int imxfb_bl_update_status(struct backlight_device
*bl
)
448 struct imxfb_info
*fbi
= bl_get_data(bl
);
449 int brightness
= bl
->props
.brightness
;
451 if (bl
->props
.power
!= FB_BLANK_UNBLANK
)
453 if (bl
->props
.fb_blank
!= FB_BLANK_UNBLANK
)
456 fbi
->pwmr
= (fbi
->pwmr
& ~0xFF) | brightness
;
458 if (bl
->props
.fb_blank
!= FB_BLANK_UNBLANK
)
459 clk_enable(fbi
->clk
);
460 writel(fbi
->pwmr
, fbi
->regs
+ LCDC_PWMR
);
461 if (bl
->props
.fb_blank
!= FB_BLANK_UNBLANK
)
462 clk_disable(fbi
->clk
);
467 static const struct backlight_ops imxfb_lcdc_bl_ops
= {
468 .update_status
= imxfb_bl_update_status
,
469 .get_brightness
= imxfb_bl_get_brightness
,
472 static void imxfb_init_backlight(struct imxfb_info
*fbi
)
474 struct backlight_properties props
;
475 struct backlight_device
*bl
;
480 memset(&props
, 0, sizeof(struct backlight_properties
));
481 props
.max_brightness
= 0xff;
482 props
.type
= BACKLIGHT_RAW
;
483 writel(fbi
->pwmr
, fbi
->regs
+ LCDC_PWMR
);
485 bl
= backlight_device_register("imxfb-bl", &fbi
->pdev
->dev
, fbi
,
486 &imxfb_lcdc_bl_ops
, &props
);
488 dev_err(&fbi
->pdev
->dev
, "error %ld on backlight register\n",
494 bl
->props
.power
= FB_BLANK_UNBLANK
;
495 bl
->props
.fb_blank
= FB_BLANK_UNBLANK
;
496 bl
->props
.brightness
= imxfb_bl_get_brightness(bl
);
499 static void imxfb_exit_backlight(struct imxfb_info
*fbi
)
502 backlight_device_unregister(fbi
->bl
);
506 static void imxfb_enable_controller(struct imxfb_info
*fbi
)
508 pr_debug("Enabling LCD controller\n");
510 writel(fbi
->screen_dma
, fbi
->regs
+ LCDC_SSA
);
512 /* panning offset 0 (0 pixel offset) */
513 writel(0x00000000, fbi
->regs
+ LCDC_POS
);
515 /* disable hardware cursor */
516 writel(readl(fbi
->regs
+ LCDC_CPOS
) & ~(CPOS_CC0
| CPOS_CC1
),
517 fbi
->regs
+ LCDC_CPOS
);
520 * RMCR_LCDC_EN_MX1 is present on i.MX1 only, but doesn't hurt
523 writel(RMCR_LCDC_EN_MX1
, fbi
->regs
+ LCDC_RMCR
);
525 clk_enable(fbi
->clk
);
527 if (fbi
->backlight_power
)
528 fbi
->backlight_power(1);
533 static void imxfb_disable_controller(struct imxfb_info
*fbi
)
535 pr_debug("Disabling LCD controller\n");
537 if (fbi
->backlight_power
)
538 fbi
->backlight_power(0);
542 clk_disable(fbi
->clk
);
544 writel(0, fbi
->regs
+ LCDC_RMCR
);
547 static int imxfb_blank(int blank
, struct fb_info
*info
)
549 struct imxfb_info
*fbi
= info
->par
;
551 pr_debug("imxfb_blank: blank=%d\n", blank
);
554 case FB_BLANK_POWERDOWN
:
555 case FB_BLANK_VSYNC_SUSPEND
:
556 case FB_BLANK_HSYNC_SUSPEND
:
557 case FB_BLANK_NORMAL
:
558 imxfb_disable_controller(fbi
);
561 case FB_BLANK_UNBLANK
:
562 imxfb_enable_controller(fbi
);
568 static struct fb_ops imxfb_ops
= {
569 .owner
= THIS_MODULE
,
570 .fb_check_var
= imxfb_check_var
,
571 .fb_set_par
= imxfb_set_par
,
572 .fb_setcolreg
= imxfb_setcolreg
,
573 .fb_fillrect
= cfb_fillrect
,
574 .fb_copyarea
= cfb_copyarea
,
575 .fb_imageblit
= cfb_imageblit
,
576 .fb_blank
= imxfb_blank
,
580 * imxfb_activate_var():
581 * Configures LCD Controller based on entries in var parameter. Settings are
582 * only written to the controller if changes were made.
584 static int imxfb_activate_var(struct fb_var_screeninfo
*var
, struct fb_info
*info
)
586 struct imxfb_info
*fbi
= info
->par
;
588 pr_debug("var: xres=%d hslen=%d lm=%d rm=%d\n",
589 var
->xres
, var
->hsync_len
,
590 var
->left_margin
, var
->right_margin
);
591 pr_debug("var: yres=%d vslen=%d um=%d bm=%d\n",
592 var
->yres
, var
->vsync_len
,
593 var
->upper_margin
, var
->lower_margin
);
596 if (var
->xres
< 16 || var
->xres
> 1024)
597 printk(KERN_ERR
"%s: invalid xres %d\n",
598 info
->fix
.id
, var
->xres
);
599 if (var
->hsync_len
< 1 || var
->hsync_len
> 64)
600 printk(KERN_ERR
"%s: invalid hsync_len %d\n",
601 info
->fix
.id
, var
->hsync_len
);
602 if (var
->left_margin
> 255)
603 printk(KERN_ERR
"%s: invalid left_margin %d\n",
604 info
->fix
.id
, var
->left_margin
);
605 if (var
->right_margin
> 255)
606 printk(KERN_ERR
"%s: invalid right_margin %d\n",
607 info
->fix
.id
, var
->right_margin
);
608 if (var
->yres
< 1 || var
->yres
> YMAX_MASK
)
609 printk(KERN_ERR
"%s: invalid yres %d\n",
610 info
->fix
.id
, var
->yres
);
611 if (var
->vsync_len
> 100)
612 printk(KERN_ERR
"%s: invalid vsync_len %d\n",
613 info
->fix
.id
, var
->vsync_len
);
614 if (var
->upper_margin
> 63)
615 printk(KERN_ERR
"%s: invalid upper_margin %d\n",
616 info
->fix
.id
, var
->upper_margin
);
617 if (var
->lower_margin
> 255)
618 printk(KERN_ERR
"%s: invalid lower_margin %d\n",
619 info
->fix
.id
, var
->lower_margin
);
622 /* physical screen start address */
623 writel(VPW_VPW(var
->xres
* var
->bits_per_pixel
/ 8 / 4),
624 fbi
->regs
+ LCDC_VPW
);
626 writel(HCR_H_WIDTH(var
->hsync_len
- 1) |
627 HCR_H_WAIT_1(var
->right_margin
- 1) |
628 HCR_H_WAIT_2(var
->left_margin
- 3),
629 fbi
->regs
+ LCDC_HCR
);
631 writel(VCR_V_WIDTH(var
->vsync_len
) |
632 VCR_V_WAIT_1(var
->lower_margin
) |
633 VCR_V_WAIT_2(var
->upper_margin
),
634 fbi
->regs
+ LCDC_VCR
);
636 writel(SIZE_XMAX(var
->xres
) | SIZE_YMAX(var
->yres
),
637 fbi
->regs
+ LCDC_SIZE
);
639 writel(fbi
->pcr
, fbi
->regs
+ LCDC_PCR
);
640 #ifndef PWMR_BACKLIGHT_AVAILABLE
641 writel(fbi
->pwmr
, fbi
->regs
+ LCDC_PWMR
);
643 writel(fbi
->lscr1
, fbi
->regs
+ LCDC_LSCR1
);
644 writel(fbi
->dmacr
, fbi
->regs
+ LCDC_DMACR
);
651 * Power management hooks. Note that we won't be called from IRQ context,
652 * unlike the blank functions above, so we may sleep.
654 static int imxfb_suspend(struct platform_device
*dev
, pm_message_t state
)
656 struct fb_info
*info
= platform_get_drvdata(dev
);
657 struct imxfb_info
*fbi
= info
->par
;
659 pr_debug("%s\n", __func__
);
661 imxfb_disable_controller(fbi
);
665 static int imxfb_resume(struct platform_device
*dev
)
667 struct fb_info
*info
= platform_get_drvdata(dev
);
668 struct imxfb_info
*fbi
= info
->par
;
670 pr_debug("%s\n", __func__
);
672 imxfb_enable_controller(fbi
);
676 #define imxfb_suspend NULL
677 #define imxfb_resume NULL
680 static int __init
imxfb_init_fbinfo(struct platform_device
*pdev
)
682 struct imx_fb_platform_data
*pdata
= pdev
->dev
.platform_data
;
683 struct fb_info
*info
= dev_get_drvdata(&pdev
->dev
);
684 struct imxfb_info
*fbi
= info
->par
;
685 struct imx_fb_videomode
*m
;
688 pr_debug("%s\n",__func__
);
690 info
->pseudo_palette
= kmalloc(sizeof(u32
) * 16, GFP_KERNEL
);
691 if (!info
->pseudo_palette
)
694 memset(fbi
, 0, sizeof(struct imxfb_info
));
696 strlcpy(info
->fix
.id
, IMX_NAME
, sizeof(info
->fix
.id
));
698 info
->fix
.type
= FB_TYPE_PACKED_PIXELS
;
699 info
->fix
.type_aux
= 0;
700 info
->fix
.xpanstep
= 0;
701 info
->fix
.ypanstep
= 0;
702 info
->fix
.ywrapstep
= 0;
703 info
->fix
.accel
= FB_ACCEL_NONE
;
705 info
->var
.nonstd
= 0;
706 info
->var
.activate
= FB_ACTIVATE_NOW
;
707 info
->var
.height
= -1;
708 info
->var
.width
= -1;
709 info
->var
.accel_flags
= 0;
710 info
->var
.vmode
= FB_VMODE_NONINTERLACED
;
712 info
->fbops
= &imxfb_ops
;
713 info
->flags
= FBINFO_FLAG_DEFAULT
|
715 info
->var
.grayscale
= pdata
->cmap_greyscale
;
716 fbi
->cmap_inverse
= pdata
->cmap_inverse
;
717 fbi
->cmap_static
= pdata
->cmap_static
;
718 fbi
->lscr1
= pdata
->lscr1
;
719 fbi
->dmacr
= pdata
->dmacr
;
720 fbi
->pwmr
= pdata
->pwmr
;
721 fbi
->lcd_power
= pdata
->lcd_power
;
722 fbi
->backlight_power
= pdata
->backlight_power
;
724 for (i
= 0, m
= &pdata
->mode
[0]; i
< pdata
->num_modes
; i
++, m
++)
725 info
->fix
.smem_len
= max_t(size_t, info
->fix
.smem_len
,
726 m
->mode
.xres
* m
->mode
.yres
* m
->bpp
/ 8);
731 static int __init
imxfb_probe(struct platform_device
*pdev
)
733 struct imxfb_info
*fbi
;
734 struct fb_info
*info
;
735 struct imx_fb_platform_data
*pdata
;
736 struct resource
*res
;
739 dev_info(&pdev
->dev
, "i.MX Framebuffer driver\n");
741 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
745 pdata
= pdev
->dev
.platform_data
;
747 dev_err(&pdev
->dev
,"No platform_data available\n");
751 info
= framebuffer_alloc(sizeof(struct imxfb_info
), &pdev
->dev
);
758 fb_mode
= pdata
->mode
[0].mode
.name
;
760 platform_set_drvdata(pdev
, info
);
762 ret
= imxfb_init_fbinfo(pdev
);
766 res
= request_mem_region(res
->start
, resource_size(res
),
773 fbi
->clk
= clk_get(&pdev
->dev
, NULL
);
774 if (IS_ERR(fbi
->clk
)) {
775 ret
= PTR_ERR(fbi
->clk
);
776 dev_err(&pdev
->dev
, "unable to get clock: %d\n", ret
);
777 goto failed_getclock
;
780 fbi
->regs
= ioremap(res
->start
, resource_size(res
));
781 if (fbi
->regs
== NULL
) {
782 dev_err(&pdev
->dev
, "Cannot map frame buffer registers\n");
786 if (!pdata
->fixed_screen_cpu
) {
787 fbi
->map_size
= PAGE_ALIGN(info
->fix
.smem_len
);
788 fbi
->map_cpu
= dma_alloc_writecombine(&pdev
->dev
,
789 fbi
->map_size
, &fbi
->map_dma
, GFP_KERNEL
);
792 dev_err(&pdev
->dev
, "Failed to allocate video RAM: %d\n", ret
);
797 info
->screen_base
= fbi
->map_cpu
;
798 fbi
->screen_cpu
= fbi
->map_cpu
;
799 fbi
->screen_dma
= fbi
->map_dma
;
800 info
->fix
.smem_start
= fbi
->screen_dma
;
802 /* Fixed framebuffer mapping enables location of the screen in eSRAM */
803 fbi
->map_cpu
= pdata
->fixed_screen_cpu
;
804 fbi
->map_dma
= pdata
->fixed_screen_dma
;
805 info
->screen_base
= fbi
->map_cpu
;
806 fbi
->screen_cpu
= fbi
->map_cpu
;
807 fbi
->screen_dma
= fbi
->map_dma
;
808 info
->fix
.smem_start
= fbi
->screen_dma
;
812 ret
= pdata
->init(fbi
->pdev
);
814 goto failed_platform_init
;
817 fbi
->mode
= pdata
->mode
;
818 fbi
->num_modes
= pdata
->num_modes
;
820 INIT_LIST_HEAD(&info
->modelist
);
821 for (i
= 0; i
< pdata
->num_modes
; i
++)
822 fb_add_videomode(&pdata
->mode
[i
].mode
, &info
->modelist
);
825 * This makes sure that our colour bitfield
826 * descriptors are correctly initialised.
828 imxfb_check_var(&info
->var
, info
);
830 ret
= fb_alloc_cmap(&info
->cmap
, 1 << info
->var
.bits_per_pixel
, 0);
835 ret
= register_framebuffer(info
);
837 dev_err(&pdev
->dev
, "failed to register framebuffer\n");
838 goto failed_register
;
841 imxfb_enable_controller(fbi
);
843 #ifdef PWMR_BACKLIGHT_AVAILABLE
844 imxfb_init_backlight(fbi
);
850 fb_dealloc_cmap(&info
->cmap
);
853 pdata
->exit(fbi
->pdev
);
854 failed_platform_init
:
855 if (!pdata
->fixed_screen_cpu
)
856 dma_free_writecombine(&pdev
->dev
,fbi
->map_size
,fbi
->map_cpu
,
863 release_mem_region(res
->start
, resource_size(res
));
865 kfree(info
->pseudo_palette
);
867 platform_set_drvdata(pdev
, NULL
);
868 framebuffer_release(info
);
872 static int __devexit
imxfb_remove(struct platform_device
*pdev
)
874 struct imx_fb_platform_data
*pdata
;
875 struct fb_info
*info
= platform_get_drvdata(pdev
);
876 struct imxfb_info
*fbi
= info
->par
;
877 struct resource
*res
;
879 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
881 imxfb_disable_controller(fbi
);
883 #ifdef PWMR_BACKLIGHT_AVAILABLE
884 imxfb_exit_backlight(fbi
);
886 unregister_framebuffer(info
);
888 pdata
= pdev
->dev
.platform_data
;
890 pdata
->exit(fbi
->pdev
);
892 fb_dealloc_cmap(&info
->cmap
);
893 kfree(info
->pseudo_palette
);
894 framebuffer_release(info
);
897 release_mem_region(res
->start
, resource_size(res
));
898 clk_disable(fbi
->clk
);
901 platform_set_drvdata(pdev
, NULL
);
906 void imxfb_shutdown(struct platform_device
* dev
)
908 struct fb_info
*info
= platform_get_drvdata(dev
);
909 struct imxfb_info
*fbi
= info
->par
;
910 imxfb_disable_controller(fbi
);
913 static struct platform_driver imxfb_driver
= {
914 .suspend
= imxfb_suspend
,
915 .resume
= imxfb_resume
,
916 .remove
= __devexit_p(imxfb_remove
),
917 .shutdown
= imxfb_shutdown
,
923 static int imxfb_setup(void)
926 char *opt
, *options
= NULL
;
928 if (fb_get_options("imxfb", &options
))
931 if (!options
|| !*options
)
934 while ((opt
= strsep(&options
, ",")) != NULL
) {
944 int __init
imxfb_init(void)
946 int ret
= imxfb_setup();
951 return platform_driver_probe(&imxfb_driver
, imxfb_probe
);
954 static void __exit
imxfb_cleanup(void)
956 platform_driver_unregister(&imxfb_driver
);
959 module_init(imxfb_init
);
960 module_exit(imxfb_cleanup
);
962 MODULE_DESCRIPTION("Freescale i.MX framebuffer driver");
963 MODULE_AUTHOR("Sascha Hauer, Pengutronix");
964 MODULE_LICENSE("GPL");