MXSFB: Fix driver registration
[linux-2.6.git] / drivers / video / mxsfb.c
blobd29c7c06ea7b22934a62e7d0520c8bce02898f36
1 /*
2 * Copyright (C) 2010 Juergen Beisert, Pengutronix
4 * This code is based on:
5 * Author: Vitaly Wool <vital@embeddedalley.com>
7 * Copyright 2008-2009 Freescale Semiconductor, Inc. All Rights Reserved.
8 * Copyright 2008 Embedded Alley Solutions, Inc All Rights Reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
20 #define DRIVER_NAME "mxsfb"
22 /**
23 * @file
24 * @brief LCDIF driver for i.MX23 and i.MX28
26 * The LCDIF support four modes of operation
27 * - MPU interface (to drive smart displays) -> not supported yet
28 * - VSYNC interface (like MPU interface plus Vsync) -> not supported yet
29 * - Dotclock interface (to drive LC displays with RGB data and sync signals)
30 * - DVI (to drive ITU-R BT656) -> not supported yet
32 * This driver depends on a correct setup of the pins used for this purpose
33 * (platform specific).
35 * For the developer: Don't forget to set the data bus width to the display
36 * in the imx_fb_videomode structure. You will else end up with ugly colours.
37 * If you fight against jitter you can vary the clock delay. This is a feature
38 * of the i.MX28 and you can vary it between 2 ns ... 8 ns in 2 ns steps. Give
39 * the required value in the imx_fb_videomode structure.
42 #include <linux/module.h>
43 #include <linux/kernel.h>
44 #include <linux/platform_device.h>
45 #include <linux/clk.h>
46 #include <linux/dma-mapping.h>
47 #include <linux/io.h>
48 #include <mach/mxsfb.h>
50 #define REG_SET 4
51 #define REG_CLR 8
53 #define LCDC_CTRL 0x00
54 #define LCDC_CTRL1 0x10
55 #define LCDC_V4_CTRL2 0x20
56 #define LCDC_V3_TRANSFER_COUNT 0x20
57 #define LCDC_V4_TRANSFER_COUNT 0x30
58 #define LCDC_V4_CUR_BUF 0x40
59 #define LCDC_V4_NEXT_BUF 0x50
60 #define LCDC_V3_CUR_BUF 0x30
61 #define LCDC_V3_NEXT_BUF 0x40
62 #define LCDC_TIMING 0x60
63 #define LCDC_VDCTRL0 0x70
64 #define LCDC_VDCTRL1 0x80
65 #define LCDC_VDCTRL2 0x90
66 #define LCDC_VDCTRL3 0xa0
67 #define LCDC_VDCTRL4 0xb0
68 #define LCDC_DVICTRL0 0xc0
69 #define LCDC_DVICTRL1 0xd0
70 #define LCDC_DVICTRL2 0xe0
71 #define LCDC_DVICTRL3 0xf0
72 #define LCDC_DVICTRL4 0x100
73 #define LCDC_V4_DATA 0x180
74 #define LCDC_V3_DATA 0x1b0
75 #define LCDC_V4_DEBUG0 0x1d0
76 #define LCDC_V3_DEBUG0 0x1f0
78 #define CTRL_SFTRST (1 << 31)
79 #define CTRL_CLKGATE (1 << 30)
80 #define CTRL_BYPASS_COUNT (1 << 19)
81 #define CTRL_VSYNC_MODE (1 << 18)
82 #define CTRL_DOTCLK_MODE (1 << 17)
83 #define CTRL_DATA_SELECT (1 << 16)
84 #define CTRL_SET_BUS_WIDTH(x) (((x) & 0x3) << 10)
85 #define CTRL_GET_BUS_WIDTH(x) (((x) >> 10) & 0x3)
86 #define CTRL_SET_WORD_LENGTH(x) (((x) & 0x3) << 8)
87 #define CTRL_GET_WORD_LENGTH(x) (((x) >> 8) & 0x3)
88 #define CTRL_MASTER (1 << 5)
89 #define CTRL_DF16 (1 << 3)
90 #define CTRL_DF18 (1 << 2)
91 #define CTRL_DF24 (1 << 1)
92 #define CTRL_RUN (1 << 0)
94 #define CTRL1_FIFO_CLEAR (1 << 21)
95 #define CTRL1_SET_BYTE_PACKAGING(x) (((x) & 0xf) << 16)
96 #define CTRL1_GET_BYTE_PACKAGING(x) (((x) >> 16) & 0xf)
98 #define TRANSFER_COUNT_SET_VCOUNT(x) (((x) & 0xffff) << 16)
99 #define TRANSFER_COUNT_GET_VCOUNT(x) (((x) >> 16) & 0xffff)
100 #define TRANSFER_COUNT_SET_HCOUNT(x) ((x) & 0xffff)
101 #define TRANSFER_COUNT_GET_HCOUNT(x) ((x) & 0xffff)
104 #define VDCTRL0_ENABLE_PRESENT (1 << 28)
105 #define VDCTRL0_VSYNC_ACT_HIGH (1 << 27)
106 #define VDCTRL0_HSYNC_ACT_HIGH (1 << 26)
107 #define VDCTRL0_DOTCLK_ACT_FAILING (1 << 25)
108 #define VDCTRL0_ENABLE_ACT_HIGH (1 << 24)
109 #define VDCTRL0_VSYNC_PERIOD_UNIT (1 << 21)
110 #define VDCTRL0_VSYNC_PULSE_WIDTH_UNIT (1 << 20)
111 #define VDCTRL0_HALF_LINE (1 << 19)
112 #define VDCTRL0_HALF_LINE_MODE (1 << 18)
113 #define VDCTRL0_SET_VSYNC_PULSE_WIDTH(x) ((x) & 0x3ffff)
114 #define VDCTRL0_GET_VSYNC_PULSE_WIDTH(x) ((x) & 0x3ffff)
116 #define VDCTRL2_SET_HSYNC_PERIOD(x) ((x) & 0x3ffff)
117 #define VDCTRL2_GET_HSYNC_PERIOD(x) ((x) & 0x3ffff)
119 #define VDCTRL3_MUX_SYNC_SIGNALS (1 << 29)
120 #define VDCTRL3_VSYNC_ONLY (1 << 28)
121 #define SET_HOR_WAIT_CNT(x) (((x) & 0xfff) << 16)
122 #define GET_HOR_WAIT_CNT(x) (((x) >> 16) & 0xfff)
123 #define SET_VERT_WAIT_CNT(x) ((x) & 0xffff)
124 #define GET_VERT_WAIT_CNT(x) ((x) & 0xffff)
126 #define VDCTRL4_SET_DOTCLK_DLY(x) (((x) & 0x7) << 29) /* v4 only */
127 #define VDCTRL4_GET_DOTCLK_DLY(x) (((x) >> 29) & 0x7) /* v4 only */
128 #define VDCTRL4_SYNC_SIGNALS_ON (1 << 18)
129 #define SET_DOTCLK_H_VALID_DATA_CNT(x) ((x) & 0x3ffff)
131 #define DEBUG0_HSYNC (1 < 26)
132 #define DEBUG0_VSYNC (1 < 25)
134 #define MIN_XRES 120
135 #define MIN_YRES 120
137 #define RED 0
138 #define GREEN 1
139 #define BLUE 2
140 #define TRANSP 3
142 enum mxsfb_devtype {
143 MXSFB_V3,
144 MXSFB_V4,
147 /* CPU dependent register offsets */
148 struct mxsfb_devdata {
149 unsigned transfer_count;
150 unsigned cur_buf;
151 unsigned next_buf;
152 unsigned debug0;
153 unsigned hs_wdth_mask;
154 unsigned hs_wdth_shift;
155 unsigned ipversion;
158 struct mxsfb_info {
159 struct fb_info fb_info;
160 struct platform_device *pdev;
161 struct clk *clk;
162 void __iomem *base; /* registers */
163 unsigned allocated_size;
164 int enabled;
165 unsigned ld_intf_width;
166 unsigned dotclk_delay;
167 const struct mxsfb_devdata *devdata;
168 int mapped;
171 #define mxsfb_is_v3(host) (host->devdata->ipversion == 3)
172 #define mxsfb_is_v4(host) (host->devdata->ipversion == 4)
174 static const struct mxsfb_devdata mxsfb_devdata[] = {
175 [MXSFB_V3] = {
176 .transfer_count = LCDC_V3_TRANSFER_COUNT,
177 .cur_buf = LCDC_V3_CUR_BUF,
178 .next_buf = LCDC_V3_NEXT_BUF,
179 .debug0 = LCDC_V3_DEBUG0,
180 .hs_wdth_mask = 0xff,
181 .hs_wdth_shift = 24,
182 .ipversion = 3,
184 [MXSFB_V4] = {
185 .transfer_count = LCDC_V4_TRANSFER_COUNT,
186 .cur_buf = LCDC_V4_CUR_BUF,
187 .next_buf = LCDC_V4_NEXT_BUF,
188 .debug0 = LCDC_V4_DEBUG0,
189 .hs_wdth_mask = 0x3fff,
190 .hs_wdth_shift = 18,
191 .ipversion = 4,
195 #define to_imxfb_host(x) (container_of(x, struct mxsfb_info, fb_info))
197 /* mask and shift depends on architecture */
198 static inline u32 set_hsync_pulse_width(struct mxsfb_info *host, unsigned val)
200 return (val & host->devdata->hs_wdth_mask) <<
201 host->devdata->hs_wdth_shift;
204 static inline u32 get_hsync_pulse_width(struct mxsfb_info *host, unsigned val)
206 return (val >> host->devdata->hs_wdth_shift) &
207 host->devdata->hs_wdth_mask;
210 static const struct fb_bitfield def_rgb565[] = {
211 [RED] = {
212 .offset = 11,
213 .length = 5,
215 [GREEN] = {
216 .offset = 5,
217 .length = 6,
219 [BLUE] = {
220 .offset = 0,
221 .length = 5,
223 [TRANSP] = { /* no support for transparency */
224 .length = 0,
228 static const struct fb_bitfield def_rgb666[] = {
229 [RED] = {
230 .offset = 16,
231 .length = 6,
233 [GREEN] = {
234 .offset = 8,
235 .length = 6,
237 [BLUE] = {
238 .offset = 0,
239 .length = 6,
241 [TRANSP] = { /* no support for transparency */
242 .length = 0,
246 static const struct fb_bitfield def_rgb888[] = {
247 [RED] = {
248 .offset = 16,
249 .length = 8,
251 [GREEN] = {
252 .offset = 8,
253 .length = 8,
255 [BLUE] = {
256 .offset = 0,
257 .length = 8,
259 [TRANSP] = { /* no support for transparency */
260 .length = 0,
264 static inline unsigned chan_to_field(unsigned chan, struct fb_bitfield *bf)
266 chan &= 0xffff;
267 chan >>= 16 - bf->length;
268 return chan << bf->offset;
271 static int mxsfb_check_var(struct fb_var_screeninfo *var,
272 struct fb_info *fb_info)
274 struct mxsfb_info *host = to_imxfb_host(fb_info);
275 const struct fb_bitfield *rgb = NULL;
277 if (var->xres < MIN_XRES)
278 var->xres = MIN_XRES;
279 if (var->yres < MIN_YRES)
280 var->yres = MIN_YRES;
282 var->xres_virtual = var->xres;
284 var->yres_virtual = var->yres;
286 switch (var->bits_per_pixel) {
287 case 16:
288 /* always expect RGB 565 */
289 rgb = def_rgb565;
290 break;
291 case 32:
292 switch (host->ld_intf_width) {
293 case STMLCDIF_8BIT:
294 pr_debug("Unsupported LCD bus width mapping\n");
295 break;
296 case STMLCDIF_16BIT:
297 case STMLCDIF_18BIT:
298 /* 24 bit to 18 bit mapping */
299 rgb = def_rgb666;
300 break;
301 case STMLCDIF_24BIT:
302 /* real 24 bit */
303 rgb = def_rgb888;
304 break;
306 break;
307 default:
308 pr_debug("Unsupported colour depth: %u\n", var->bits_per_pixel);
309 return -EINVAL;
313 * Copy the RGB parameters for this display
314 * from the machine specific parameters.
316 var->red = rgb[RED];
317 var->green = rgb[GREEN];
318 var->blue = rgb[BLUE];
319 var->transp = rgb[TRANSP];
321 return 0;
324 static void mxsfb_enable_controller(struct fb_info *fb_info)
326 struct mxsfb_info *host = to_imxfb_host(fb_info);
327 u32 reg;
329 dev_dbg(&host->pdev->dev, "%s\n", __func__);
331 clk_enable(host->clk);
332 clk_set_rate(host->clk, PICOS2KHZ(fb_info->var.pixclock) * 1000U);
334 /* if it was disabled, re-enable the mode again */
335 writel(CTRL_DOTCLK_MODE, host->base + LCDC_CTRL + REG_SET);
337 /* enable the SYNC signals first, then the DMA engine */
338 reg = readl(host->base + LCDC_VDCTRL4);
339 reg |= VDCTRL4_SYNC_SIGNALS_ON;
340 writel(reg, host->base + LCDC_VDCTRL4);
342 writel(CTRL_RUN, host->base + LCDC_CTRL + REG_SET);
344 host->enabled = 1;
347 static void mxsfb_disable_controller(struct fb_info *fb_info)
349 struct mxsfb_info *host = to_imxfb_host(fb_info);
350 unsigned loop;
351 u32 reg;
353 dev_dbg(&host->pdev->dev, "%s\n", __func__);
356 * Even if we disable the controller here, it will still continue
357 * until its FIFOs are running out of data
359 writel(CTRL_DOTCLK_MODE, host->base + LCDC_CTRL + REG_CLR);
361 loop = 1000;
362 while (loop) {
363 reg = readl(host->base + LCDC_CTRL);
364 if (!(reg & CTRL_RUN))
365 break;
366 loop--;
369 writel(VDCTRL4_SYNC_SIGNALS_ON, host->base + LCDC_VDCTRL4 + REG_CLR);
371 clk_disable(host->clk);
373 host->enabled = 0;
376 static int mxsfb_set_par(struct fb_info *fb_info)
378 struct mxsfb_info *host = to_imxfb_host(fb_info);
379 u32 ctrl, vdctrl0, vdctrl4;
380 int line_size, fb_size;
381 int reenable = 0;
383 line_size = fb_info->var.xres * (fb_info->var.bits_per_pixel >> 3);
384 fb_size = fb_info->var.yres_virtual * line_size;
386 if (fb_size > fb_info->fix.smem_len)
387 return -ENOMEM;
389 fb_info->fix.line_length = line_size;
392 * It seems, you can't re-program the controller if it is still running.
393 * This may lead into shifted pictures (FIFO issue?).
394 * So, first stop the controller and drain its FIFOs
396 if (host->enabled) {
397 reenable = 1;
398 mxsfb_disable_controller(fb_info);
401 /* clear the FIFOs */
402 writel(CTRL1_FIFO_CLEAR, host->base + LCDC_CTRL1 + REG_SET);
404 ctrl = CTRL_BYPASS_COUNT | CTRL_MASTER |
405 CTRL_SET_BUS_WIDTH(host->ld_intf_width);
407 switch (fb_info->var.bits_per_pixel) {
408 case 16:
409 dev_dbg(&host->pdev->dev, "Setting up RGB565 mode\n");
410 ctrl |= CTRL_SET_WORD_LENGTH(0);
411 writel(CTRL1_SET_BYTE_PACKAGING(0xf), host->base + LCDC_CTRL1);
412 break;
413 case 32:
414 dev_dbg(&host->pdev->dev, "Setting up RGB888/666 mode\n");
415 ctrl |= CTRL_SET_WORD_LENGTH(3);
416 switch (host->ld_intf_width) {
417 case STMLCDIF_8BIT:
418 dev_dbg(&host->pdev->dev,
419 "Unsupported LCD bus width mapping\n");
420 return -EINVAL;
421 case STMLCDIF_16BIT:
422 case STMLCDIF_18BIT:
423 /* 24 bit to 18 bit mapping */
424 ctrl |= CTRL_DF24; /* ignore the upper 2 bits in
425 * each colour component
427 break;
428 case STMLCDIF_24BIT:
429 /* real 24 bit */
430 break;
432 /* do not use packed pixels = one pixel per word instead */
433 writel(CTRL1_SET_BYTE_PACKAGING(0x7), host->base + LCDC_CTRL1);
434 break;
435 default:
436 dev_dbg(&host->pdev->dev, "Unhandled color depth of %u\n",
437 fb_info->var.bits_per_pixel);
438 return -EINVAL;
441 writel(ctrl, host->base + LCDC_CTRL);
443 writel(TRANSFER_COUNT_SET_VCOUNT(fb_info->var.yres) |
444 TRANSFER_COUNT_SET_HCOUNT(fb_info->var.xres),
445 host->base + host->devdata->transfer_count);
447 vdctrl0 = VDCTRL0_ENABLE_PRESENT | /* always in DOTCLOCK mode */
448 VDCTRL0_VSYNC_PERIOD_UNIT |
449 VDCTRL0_VSYNC_PULSE_WIDTH_UNIT |
450 VDCTRL0_SET_VSYNC_PULSE_WIDTH(fb_info->var.vsync_len);
451 if (fb_info->var.sync & FB_SYNC_HOR_HIGH_ACT)
452 vdctrl0 |= VDCTRL0_HSYNC_ACT_HIGH;
453 if (fb_info->var.sync & FB_SYNC_VERT_HIGH_ACT)
454 vdctrl0 |= VDCTRL0_VSYNC_ACT_HIGH;
455 if (fb_info->var.sync & FB_SYNC_DATA_ENABLE_HIGH_ACT)
456 vdctrl0 |= VDCTRL0_ENABLE_ACT_HIGH;
457 if (fb_info->var.sync & FB_SYNC_DOTCLK_FAILING_ACT)
458 vdctrl0 |= VDCTRL0_DOTCLK_ACT_FAILING;
460 writel(vdctrl0, host->base + LCDC_VDCTRL0);
462 /* frame length in lines */
463 writel(fb_info->var.upper_margin + fb_info->var.vsync_len +
464 fb_info->var.lower_margin + fb_info->var.yres,
465 host->base + LCDC_VDCTRL1);
467 /* line length in units of clocks or pixels */
468 writel(set_hsync_pulse_width(host, fb_info->var.hsync_len) |
469 VDCTRL2_SET_HSYNC_PERIOD(fb_info->var.left_margin +
470 fb_info->var.hsync_len + fb_info->var.right_margin +
471 fb_info->var.xres),
472 host->base + LCDC_VDCTRL2);
474 writel(SET_HOR_WAIT_CNT(fb_info->var.left_margin +
475 fb_info->var.hsync_len) |
476 SET_VERT_WAIT_CNT(fb_info->var.upper_margin +
477 fb_info->var.vsync_len),
478 host->base + LCDC_VDCTRL3);
480 vdctrl4 = SET_DOTCLK_H_VALID_DATA_CNT(fb_info->var.xres);
481 if (mxsfb_is_v4(host))
482 vdctrl4 |= VDCTRL4_SET_DOTCLK_DLY(host->dotclk_delay);
483 writel(vdctrl4, host->base + LCDC_VDCTRL4);
485 writel(fb_info->fix.smem_start +
486 fb_info->fix.line_length * fb_info->var.yoffset,
487 host->base + host->devdata->next_buf);
489 if (reenable)
490 mxsfb_enable_controller(fb_info);
492 return 0;
495 static int mxsfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
496 u_int transp, struct fb_info *fb_info)
498 unsigned int val;
499 int ret = -EINVAL;
502 * If greyscale is true, then we convert the RGB value
503 * to greyscale no matter what visual we are using.
505 if (fb_info->var.grayscale)
506 red = green = blue = (19595 * red + 38470 * green +
507 7471 * blue) >> 16;
509 switch (fb_info->fix.visual) {
510 case FB_VISUAL_TRUECOLOR:
512 * 12 or 16-bit True Colour. We encode the RGB value
513 * according to the RGB bitfield information.
515 if (regno < 16) {
516 u32 *pal = fb_info->pseudo_palette;
518 val = chan_to_field(red, &fb_info->var.red);
519 val |= chan_to_field(green, &fb_info->var.green);
520 val |= chan_to_field(blue, &fb_info->var.blue);
522 pal[regno] = val;
523 ret = 0;
525 break;
527 case FB_VISUAL_STATIC_PSEUDOCOLOR:
528 case FB_VISUAL_PSEUDOCOLOR:
529 break;
532 return ret;
535 static int mxsfb_blank(int blank, struct fb_info *fb_info)
537 struct mxsfb_info *host = to_imxfb_host(fb_info);
539 switch (blank) {
540 case FB_BLANK_POWERDOWN:
541 case FB_BLANK_VSYNC_SUSPEND:
542 case FB_BLANK_HSYNC_SUSPEND:
543 case FB_BLANK_NORMAL:
544 if (host->enabled)
545 mxsfb_disable_controller(fb_info);
546 break;
548 case FB_BLANK_UNBLANK:
549 if (!host->enabled)
550 mxsfb_enable_controller(fb_info);
551 break;
553 return 0;
556 static int mxsfb_pan_display(struct fb_var_screeninfo *var,
557 struct fb_info *fb_info)
559 struct mxsfb_info *host = to_imxfb_host(fb_info);
560 unsigned offset;
562 if (var->xoffset != 0)
563 return -EINVAL;
565 offset = fb_info->fix.line_length * var->yoffset;
567 /* update on next VSYNC */
568 writel(fb_info->fix.smem_start + offset,
569 host->base + host->devdata->next_buf);
571 return 0;
574 static struct fb_ops mxsfb_ops = {
575 .owner = THIS_MODULE,
576 .fb_check_var = mxsfb_check_var,
577 .fb_set_par = mxsfb_set_par,
578 .fb_setcolreg = mxsfb_setcolreg,
579 .fb_blank = mxsfb_blank,
580 .fb_pan_display = mxsfb_pan_display,
581 .fb_fillrect = cfb_fillrect,
582 .fb_copyarea = cfb_copyarea,
583 .fb_imageblit = cfb_imageblit,
586 static int __devinit mxsfb_restore_mode(struct mxsfb_info *host)
588 struct fb_info *fb_info = &host->fb_info;
589 unsigned line_count;
590 unsigned period;
591 unsigned long pa, fbsize;
592 int bits_per_pixel, ofs;
593 u32 transfer_count, vdctrl0, vdctrl2, vdctrl3, vdctrl4, ctrl;
594 struct fb_videomode vmode;
596 /* Only restore the mode when the controller is running */
597 ctrl = readl(host->base + LCDC_CTRL);
598 if (!(ctrl & CTRL_RUN))
599 return -EINVAL;
601 vdctrl0 = readl(host->base + LCDC_VDCTRL0);
602 vdctrl2 = readl(host->base + LCDC_VDCTRL2);
603 vdctrl3 = readl(host->base + LCDC_VDCTRL3);
604 vdctrl4 = readl(host->base + LCDC_VDCTRL4);
606 transfer_count = readl(host->base + host->devdata->transfer_count);
608 vmode.xres = TRANSFER_COUNT_GET_HCOUNT(transfer_count);
609 vmode.yres = TRANSFER_COUNT_GET_VCOUNT(transfer_count);
611 switch (CTRL_GET_WORD_LENGTH(ctrl)) {
612 case 0:
613 bits_per_pixel = 16;
614 break;
615 case 3:
616 bits_per_pixel = 32;
617 case 1:
618 default:
619 return -EINVAL;
622 fb_info->var.bits_per_pixel = bits_per_pixel;
624 vmode.pixclock = KHZ2PICOS(clk_get_rate(host->clk) / 1000U);
625 vmode.hsync_len = get_hsync_pulse_width(host, vdctrl2);
626 vmode.left_margin = GET_HOR_WAIT_CNT(vdctrl3) - vmode.hsync_len;
627 vmode.right_margin = VDCTRL2_GET_HSYNC_PERIOD(vdctrl2) - vmode.hsync_len -
628 vmode.left_margin - vmode.xres;
629 vmode.vsync_len = VDCTRL0_GET_VSYNC_PULSE_WIDTH(vdctrl0);
630 period = readl(host->base + LCDC_VDCTRL1);
631 vmode.upper_margin = GET_VERT_WAIT_CNT(vdctrl3) - vmode.vsync_len;
632 vmode.lower_margin = period - vmode.vsync_len - vmode.upper_margin - vmode.yres;
634 vmode.vmode = FB_VMODE_NONINTERLACED;
636 vmode.sync = 0;
637 if (vdctrl0 & VDCTRL0_HSYNC_ACT_HIGH)
638 vmode.sync |= FB_SYNC_HOR_HIGH_ACT;
639 if (vdctrl0 & VDCTRL0_VSYNC_ACT_HIGH)
640 vmode.sync |= FB_SYNC_VERT_HIGH_ACT;
642 pr_debug("Reconstructed video mode:\n");
643 pr_debug("%dx%d, hsync: %u left: %u, right: %u, vsync: %u, upper: %u, lower: %u\n",
644 vmode.xres, vmode.yres,
645 vmode.hsync_len, vmode.left_margin, vmode.right_margin,
646 vmode.vsync_len, vmode.upper_margin, vmode.lower_margin);
647 pr_debug("pixclk: %ldkHz\n", PICOS2KHZ(vmode.pixclock));
649 fb_add_videomode(&vmode, &fb_info->modelist);
651 host->ld_intf_width = CTRL_GET_BUS_WIDTH(ctrl);
652 host->dotclk_delay = VDCTRL4_GET_DOTCLK_DLY(vdctrl4);
654 fb_info->fix.line_length = vmode.xres * (bits_per_pixel >> 3);
656 pa = readl(host->base + host->devdata->cur_buf);
657 fbsize = fb_info->fix.line_length * vmode.yres;
658 if (pa < fb_info->fix.smem_start)
659 return -EINVAL;
660 if (pa + fbsize > fb_info->fix.smem_start + fb_info->fix.smem_len)
661 return -EINVAL;
662 ofs = pa - fb_info->fix.smem_start;
663 if (ofs) {
664 memmove(fb_info->screen_base, fb_info->screen_base + ofs, fbsize);
665 writel(fb_info->fix.smem_start, host->base + host->devdata->next_buf);
668 line_count = fb_info->fix.smem_len / fb_info->fix.line_length;
669 fb_info->fix.ypanstep = 1;
671 clk_enable(host->clk);
672 host->enabled = 1;
674 return 0;
677 static int __devinit mxsfb_init_fbinfo(struct mxsfb_info *host)
679 struct fb_info *fb_info = &host->fb_info;
680 struct fb_var_screeninfo *var = &fb_info->var;
681 struct mxsfb_platform_data *pdata = host->pdev->dev.platform_data;
682 dma_addr_t fb_phys;
683 void *fb_virt;
684 unsigned fb_size = pdata->fb_size;
686 fb_info->fbops = &mxsfb_ops;
687 fb_info->flags = FBINFO_FLAG_DEFAULT | FBINFO_READS_FAST;
688 strlcpy(fb_info->fix.id, "mxs", sizeof(fb_info->fix.id));
689 fb_info->fix.type = FB_TYPE_PACKED_PIXELS;
690 fb_info->fix.ypanstep = 1;
691 fb_info->fix.visual = FB_VISUAL_TRUECOLOR,
692 fb_info->fix.accel = FB_ACCEL_NONE;
694 var->bits_per_pixel = pdata->default_bpp ? pdata->default_bpp : 16;
695 var->nonstd = 0;
696 var->activate = FB_ACTIVATE_NOW;
697 var->accel_flags = 0;
698 var->vmode = FB_VMODE_NONINTERLACED;
700 host->dotclk_delay = pdata->dotclk_delay;
701 host->ld_intf_width = pdata->ld_intf_width;
703 /* Memory allocation for framebuffer */
704 if (pdata->fb_phys) {
705 if (!fb_size)
706 return -EINVAL;
708 fb_phys = pdata->fb_phys;
710 if (!request_mem_region(fb_phys, fb_size, host->pdev->name))
711 return -ENOMEM;
713 fb_virt = ioremap(fb_phys, fb_size);
714 if (!fb_virt) {
715 release_mem_region(fb_phys, fb_size);
716 return -ENOMEM;
718 host->mapped = 1;
719 } else {
720 if (!fb_size)
721 fb_size = SZ_2M; /* default */
722 fb_virt = alloc_pages_exact(fb_size, GFP_DMA);
723 if (!fb_virt)
724 return -ENOMEM;
726 fb_phys = virt_to_phys(fb_virt);
729 fb_info->fix.smem_start = fb_phys;
730 fb_info->screen_base = fb_virt;
731 fb_info->screen_size = fb_info->fix.smem_len = fb_size;
733 if (mxsfb_restore_mode(host))
734 memset(fb_virt, 0, fb_size);
736 return 0;
739 static void __devexit mxsfb_free_videomem(struct mxsfb_info *host)
741 struct fb_info *fb_info = &host->fb_info;
743 if (host->mapped) {
744 iounmap(fb_info->screen_base);
745 release_mem_region(fb_info->fix.smem_start,
746 fb_info->screen_size);
747 } else {
748 free_pages_exact(fb_info->screen_base, fb_info->fix.smem_len);
752 static int __devinit mxsfb_probe(struct platform_device *pdev)
754 struct mxsfb_platform_data *pdata = pdev->dev.platform_data;
755 struct resource *res;
756 struct mxsfb_info *host;
757 struct fb_info *fb_info;
758 struct fb_modelist *modelist;
759 int i, ret;
761 if (!pdata) {
762 dev_err(&pdev->dev, "No platformdata. Giving up\n");
763 return -ENODEV;
766 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
767 if (!res) {
768 dev_err(&pdev->dev, "Cannot get memory IO resource\n");
769 return -ENODEV;
772 if (!request_mem_region(res->start, resource_size(res), pdev->name))
773 return -EBUSY;
775 fb_info = framebuffer_alloc(sizeof(struct mxsfb_info), &pdev->dev);
776 if (!fb_info) {
777 dev_err(&pdev->dev, "Failed to allocate fbdev\n");
778 ret = -ENOMEM;
779 goto error_alloc_info;
782 host = to_imxfb_host(fb_info);
784 host->base = ioremap(res->start, resource_size(res));
785 if (!host->base) {
786 dev_err(&pdev->dev, "ioremap failed\n");
787 ret = -ENOMEM;
788 goto error_ioremap;
791 host->pdev = pdev;
792 platform_set_drvdata(pdev, host);
794 host->devdata = &mxsfb_devdata[pdev->id_entry->driver_data];
796 host->clk = clk_get(&host->pdev->dev, NULL);
797 if (IS_ERR(host->clk)) {
798 ret = PTR_ERR(host->clk);
799 goto error_getclock;
802 fb_info->pseudo_palette = kmalloc(sizeof(u32) * 16, GFP_KERNEL);
803 if (!fb_info->pseudo_palette) {
804 ret = -ENOMEM;
805 goto error_pseudo_pallette;
808 INIT_LIST_HEAD(&fb_info->modelist);
810 ret = mxsfb_init_fbinfo(host);
811 if (ret != 0)
812 goto error_init_fb;
814 for (i = 0; i < pdata->mode_count; i++)
815 fb_add_videomode(&pdata->mode_list[i], &fb_info->modelist);
817 modelist = list_first_entry(&fb_info->modelist,
818 struct fb_modelist, list);
819 fb_videomode_to_var(&fb_info->var, &modelist->mode);
821 /* init the color fields */
822 mxsfb_check_var(&fb_info->var, fb_info);
824 platform_set_drvdata(pdev, fb_info);
826 ret = register_framebuffer(fb_info);
827 if (ret != 0) {
828 dev_err(&pdev->dev,"Failed to register framebuffer\n");
829 goto error_register;
832 if (!host->enabled) {
833 writel(0, host->base + LCDC_CTRL);
834 mxsfb_set_par(fb_info);
835 mxsfb_enable_controller(fb_info);
838 dev_info(&pdev->dev, "initialized\n");
840 return 0;
842 error_register:
843 if (host->enabled)
844 clk_disable(host->clk);
845 fb_destroy_modelist(&fb_info->modelist);
846 error_init_fb:
847 kfree(fb_info->pseudo_palette);
848 error_pseudo_pallette:
849 clk_put(host->clk);
850 error_getclock:
851 iounmap(host->base);
852 error_ioremap:
853 framebuffer_release(fb_info);
854 error_alloc_info:
855 release_mem_region(res->start, resource_size(res));
857 return ret;
860 static int __devexit mxsfb_remove(struct platform_device *pdev)
862 struct fb_info *fb_info = platform_get_drvdata(pdev);
863 struct mxsfb_info *host = to_imxfb_host(fb_info);
864 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
866 if (host->enabled)
867 mxsfb_disable_controller(fb_info);
869 unregister_framebuffer(fb_info);
870 kfree(fb_info->pseudo_palette);
871 mxsfb_free_videomem(host);
872 iounmap(host->base);
873 clk_put(host->clk);
875 framebuffer_release(fb_info);
876 release_mem_region(res->start, resource_size(res));
878 platform_set_drvdata(pdev, NULL);
880 return 0;
883 static struct platform_device_id mxsfb_devtype[] = {
885 .name = "imx23-fb",
886 .driver_data = MXSFB_V3,
887 }, {
888 .name = "imx28-fb",
889 .driver_data = MXSFB_V4,
890 }, {
891 /* sentinel */
894 MODULE_DEVICE_TABLE(platform, mxsfb_devtype);
896 static struct platform_driver mxsfb_driver = {
897 .probe = mxsfb_probe,
898 .remove = __devexit_p(mxsfb_remove),
899 .id_table = mxsfb_devtype,
900 .driver = {
901 .name = DRIVER_NAME,
905 module_platform_driver(mxsfb_driver);
907 MODULE_DESCRIPTION("Freescale mxs framebuffer driver");
908 MODULE_AUTHOR("Sascha Hauer, Pengutronix");
909 MODULE_LICENSE("GPL");