5 * Stefano Babic, DENX Software Engineering, sbabic@denx.de
7 * MX51 Linux framebuffer:
9 * (C) Copyright 2004-2010 Freescale Semiconductor, Inc.
11 * See file CREDITS for list of people who contributed to this
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 #include <asm/errno.h>
32 #include <linux/string.h>
33 #include <linux/list.h>
38 #include "videomodes.h"
42 static int mxcfb_map_video_memory(struct fb_info *fbi);
43 static int mxcfb_unmap_video_memory(struct fb_info *fbi);
46 static GraphicDevice panel;
47 static struct fb_videomode *gmode;
49 static uint32_t gpixfmt;
51 void fb_videomode_to_var(struct fb_var_screeninfo *var,
52 const struct fb_videomode *mode)
54 var->xres = mode->xres;
55 var->yres = mode->yres;
56 var->xres_virtual = mode->xres;
57 var->yres_virtual = mode->yres;
60 var->pixclock = mode->pixclock;
61 var->left_margin = mode->left_margin;
62 var->right_margin = mode->right_margin;
63 var->upper_margin = mode->upper_margin;
64 var->lower_margin = mode->lower_margin;
65 var->hsync_len = mode->hsync_len;
66 var->vsync_len = mode->vsync_len;
67 var->sync = mode->sync;
68 var->vmode = mode->vmode & FB_VMODE_MASK;
72 * Structure containing the MXC specific framebuffer information.
79 unsigned char overlay;
80 unsigned char alpha_chan_en;
81 dma_addr_t alpha_phy_addr0;
82 dma_addr_t alpha_phy_addr1;
83 void *alpha_virt_addr0;
84 void *alpha_virt_addr1;
85 uint32_t alpha_mem_len;
87 uint32_t cur_ipu_alpha_buf;
89 u32 pseudo_palette[16];
99 static unsigned long default_bpp = 16;
100 static unsigned char g_dp_in_use;
101 static struct fb_info *mxcfb_info[3];
102 static int ext_clk_used;
104 static uint32_t bpp_to_pixfmt(struct fb_info *fbi)
108 debug("bpp_to_pixfmt: %d\n", fbi->var.bits_per_pixel);
111 return fbi->var.nonstd;
113 switch (fbi->var.bits_per_pixel) {
115 pixfmt = IPU_PIX_FMT_BGR24;
118 pixfmt = IPU_PIX_FMT_BGR32;
121 pixfmt = IPU_PIX_FMT_RGB565;
128 * Set fixed framebuffer parameters based on variable settings.
130 * @param info framebuffer information pointer
132 static int mxcfb_set_fix(struct fb_info *info)
134 struct fb_fix_screeninfo *fix = &info->fix;
135 struct fb_var_screeninfo *var = &info->var;
137 fix->line_length = var->xres_virtual * var->bits_per_pixel / 8;
139 fix->type = FB_TYPE_PACKED_PIXELS;
140 fix->accel = FB_ACCEL_NONE;
141 fix->visual = FB_VISUAL_TRUECOLOR;
148 static int setup_disp_channel1(struct fb_info *fbi)
150 ipu_channel_params_t params;
151 struct mxcfb_info *mxc_fbi = (struct mxcfb_info *)fbi->par;
153 memset(¶ms, 0, sizeof(params));
154 params.mem_dp_bg_sync.di = mxc_fbi->ipu_di;
156 debug("%s called\n", __func__);
158 * Assuming interlaced means yuv output, below setting also
159 * valid for mem_dc_sync. FG should have the same vmode as BG.
161 if (fbi->var.vmode & FB_VMODE_INTERLACED) {
162 params.mem_dp_bg_sync.interlaced = 1;
163 params.mem_dp_bg_sync.out_pixel_fmt =
166 if (mxc_fbi->ipu_di_pix_fmt) {
167 params.mem_dp_bg_sync.out_pixel_fmt =
168 mxc_fbi->ipu_di_pix_fmt;
170 params.mem_dp_bg_sync.out_pixel_fmt =
174 params.mem_dp_bg_sync.in_pixel_fmt = bpp_to_pixfmt(fbi);
175 if (mxc_fbi->alpha_chan_en)
176 params.mem_dp_bg_sync.alpha_chan_en = 1;
178 ipu_init_channel(mxc_fbi->ipu_ch, ¶ms);
183 static int setup_disp_channel2(struct fb_info *fbi)
186 struct mxcfb_info *mxc_fbi = (struct mxcfb_info *)fbi->par;
188 mxc_fbi->cur_ipu_buf = 1;
189 if (mxc_fbi->alpha_chan_en)
190 mxc_fbi->cur_ipu_alpha_buf = 1;
192 fbi->var.xoffset = fbi->var.yoffset = 0;
194 debug("%s: %x %d %d %d %lx %lx\n",
199 fbi->fix.line_length,
201 fbi->fix.smem_start +
202 (fbi->fix.line_length * fbi->var.yres));
204 retval = ipu_init_channel_buffer(mxc_fbi->ipu_ch, IPU_INPUT_BUFFER,
206 fbi->var.xres, fbi->var.yres,
207 fbi->fix.line_length,
208 fbi->fix.smem_start +
209 (fbi->fix.line_length * fbi->var.yres),
213 printf("ipu_init_channel_buffer error %d\n", retval);
219 * Set framebuffer parameters and change the operating mode.
221 * @param info framebuffer information pointer
223 static int mxcfb_set_par(struct fb_info *fbi)
227 ipu_di_signal_cfg_t sig_cfg;
228 struct mxcfb_info *mxc_fbi = (struct mxcfb_info *)fbi->par;
229 uint32_t out_pixel_fmt;
231 ipu_disable_channel(mxc_fbi->ipu_ch);
232 ipu_uninit_channel(mxc_fbi->ipu_ch);
235 mem_len = fbi->var.yres_virtual * fbi->fix.line_length;
236 if (!fbi->fix.smem_start || (mem_len > fbi->fix.smem_len)) {
237 if (fbi->fix.smem_start)
238 mxcfb_unmap_video_memory(fbi);
240 if (mxcfb_map_video_memory(fbi) < 0)
244 setup_disp_channel1(fbi);
246 memset(&sig_cfg, 0, sizeof(sig_cfg));
247 if (fbi->var.vmode & FB_VMODE_INTERLACED) {
248 sig_cfg.interlaced = 1;
249 out_pixel_fmt = IPU_PIX_FMT_YUV444;
251 if (mxc_fbi->ipu_di_pix_fmt)
252 out_pixel_fmt = mxc_fbi->ipu_di_pix_fmt;
254 out_pixel_fmt = IPU_PIX_FMT_RGB666;
256 if (fbi->var.vmode & FB_VMODE_ODD_FLD_FIRST) /* PAL */
257 sig_cfg.odd_field_first = 1;
258 if ((fbi->var.sync & FB_SYNC_EXT) || ext_clk_used)
260 if (fbi->var.sync & FB_SYNC_HOR_HIGH_ACT)
261 sig_cfg.Hsync_pol = 1;
262 if (fbi->var.sync & FB_SYNC_VERT_HIGH_ACT)
263 sig_cfg.Vsync_pol = 1;
264 if (!(fbi->var.sync & FB_SYNC_CLK_LAT_FALL))
266 if (fbi->var.sync & FB_SYNC_DATA_INVERT)
267 sig_cfg.data_pol = 1;
268 if (!(fbi->var.sync & FB_SYNC_OE_LOW_ACT))
269 sig_cfg.enable_pol = 1;
270 if (fbi->var.sync & FB_SYNC_CLK_IDLE_EN)
271 sig_cfg.clkidle_en = 1;
273 debug("pixclock = %ul Hz\n",
274 (u32) (PICOS2KHZ(fbi->var.pixclock) * 1000UL));
276 if (ipu_init_sync_panel(mxc_fbi->ipu_di,
277 (PICOS2KHZ(fbi->var.pixclock)) * 1000UL,
278 fbi->var.xres, fbi->var.yres,
280 fbi->var.left_margin,
282 fbi->var.right_margin,
283 fbi->var.upper_margin,
285 fbi->var.lower_margin,
287 puts("mxcfb: Error initializing panel.\n");
291 retval = setup_disp_channel2(fbi);
295 if (mxc_fbi->blank == FB_BLANK_UNBLANK)
296 ipu_enable_channel(mxc_fbi->ipu_ch);
302 * Check framebuffer variable parameters and adjust to valid values.
304 * @param var framebuffer variable parameters
306 * @param info framebuffer information pointer
308 static int mxcfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
313 if (var->xres_virtual < var->xres)
314 var->xres_virtual = var->xres;
315 if (var->yres_virtual < var->yres)
316 var->yres_virtual = var->yres;
318 if ((var->bits_per_pixel != 32) && (var->bits_per_pixel != 24) &&
319 (var->bits_per_pixel != 16) && (var->bits_per_pixel != 8))
320 var->bits_per_pixel = default_bpp;
322 switch (var->bits_per_pixel) {
326 var->red.msb_right = 0;
328 var->green.length = 3;
329 var->green.offset = 2;
330 var->green.msb_right = 0;
332 var->blue.length = 2;
333 var->blue.offset = 0;
334 var->blue.msb_right = 0;
336 var->transp.length = 0;
337 var->transp.offset = 0;
338 var->transp.msb_right = 0;
342 var->red.offset = 11;
343 var->red.msb_right = 0;
345 var->green.length = 6;
346 var->green.offset = 5;
347 var->green.msb_right = 0;
349 var->blue.length = 5;
350 var->blue.offset = 0;
351 var->blue.msb_right = 0;
353 var->transp.length = 0;
354 var->transp.offset = 0;
355 var->transp.msb_right = 0;
359 var->red.offset = 16;
360 var->red.msb_right = 0;
362 var->green.length = 8;
363 var->green.offset = 8;
364 var->green.msb_right = 0;
366 var->blue.length = 8;
367 var->blue.offset = 0;
368 var->blue.msb_right = 0;
370 var->transp.length = 0;
371 var->transp.offset = 0;
372 var->transp.msb_right = 0;
376 var->red.offset = 16;
377 var->red.msb_right = 0;
379 var->green.length = 8;
380 var->green.offset = 8;
381 var->green.msb_right = 0;
383 var->blue.length = 8;
384 var->blue.offset = 0;
385 var->blue.msb_right = 0;
387 var->transp.length = 8;
388 var->transp.offset = 24;
389 var->transp.msb_right = 0;
393 if (var->pixclock < 1000) {
394 htotal = var->xres + var->right_margin + var->hsync_len +
396 vtotal = var->yres + var->lower_margin + var->vsync_len +
398 var->pixclock = (vtotal * htotal * 6UL) / 100UL;
399 var->pixclock = KHZ2PICOS(var->pixclock);
400 printf("pixclock set for 60Hz refresh = %u ps\n",
411 static int mxcfb_map_video_memory(struct fb_info *fbi)
413 if (fbi->fix.smem_len < fbi->var.yres_virtual * fbi->fix.line_length) {
414 fbi->fix.smem_len = fbi->var.yres_virtual *
415 fbi->fix.line_length;
418 fbi->screen_base = (char *)malloc(fbi->fix.smem_len);
419 fbi->fix.smem_start = (unsigned long)fbi->screen_base;
420 if (fbi->screen_base == 0) {
421 puts("Unable to allocate framebuffer memory\n");
422 fbi->fix.smem_len = 0;
423 fbi->fix.smem_start = 0;
427 debug("allocated fb @ paddr=0x%08X, size=%d.\n",
428 (uint32_t) fbi->fix.smem_start, fbi->fix.smem_len);
430 fbi->screen_size = fbi->fix.smem_len;
432 /* Clear the screen */
433 memset((char *)fbi->screen_base, 0, fbi->fix.smem_len);
438 static int mxcfb_unmap_video_memory(struct fb_info *fbi)
440 fbi->screen_base = 0;
441 fbi->fix.smem_start = 0;
442 fbi->fix.smem_len = 0;
447 * Initializes the framebuffer information pointer. After allocating
448 * sufficient memory for the framebuffer structure, the fields are
449 * filled with custom information passed in from the configurable
450 * structures. This includes information such as bits per pixel,
451 * color maps, screen width/height and RGBA offsets.
453 * @return Framebuffer structure initialized with our information
455 static struct fb_info *mxcfb_init_fbinfo(void)
457 #define BYTES_PER_LONG 4
458 #define PADDING (BYTES_PER_LONG - (sizeof(struct fb_info) % BYTES_PER_LONG))
460 struct mxcfb_info *mxcfbi;
462 int size = sizeof(struct mxcfb_info) + PADDING +
463 sizeof(struct fb_info);
465 debug("%s: %d %d %d %d\n",
469 sizeof(struct mxcfb_info),
470 sizeof(struct fb_info));
472 * Allocate sufficient memory for the fb structure
481 fbi = (struct fb_info *)p;
482 fbi->par = p + sizeof(struct fb_info) + PADDING;
484 mxcfbi = (struct mxcfb_info *)fbi->par;
485 debug("Framebuffer structures at: fbi=0x%x mxcfbi=0x%x\n",
486 (unsigned int)fbi, (unsigned int)mxcfbi);
488 fbi->var.activate = FB_ACTIVATE_NOW;
490 fbi->flags = FBINFO_FLAG_DEFAULT;
491 fbi->pseudo_palette = mxcfbi->pseudo_palette;
497 * Probe routine for the framebuffer driver. It is called during the
498 * driver binding process. The following functions are performed in
499 * this routine: Framebuffer initialization, Memory allocation and
500 * mapping, Framebuffer registration, IPU initialization.
502 * @return Appropriate error code to the kernel common code
504 static int mxcfb_probe(u32 interface_pix_fmt, uint8_t disp,
505 struct fb_videomode *mode)
508 struct mxcfb_info *mxcfbi;
512 * Initialize FB structures
514 fbi = mxcfb_init_fbinfo();
519 mxcfbi = (struct mxcfb_info *)fbi->par;
522 mxcfbi->ipu_ch = MEM_BG_SYNC;
523 mxcfbi->blank = FB_BLANK_UNBLANK;
525 mxcfbi->ipu_ch = MEM_DC_SYNC;
526 mxcfbi->blank = FB_BLANK_POWERDOWN;
529 mxcfbi->ipu_di = disp;
531 ipu_disp_set_global_alpha(mxcfbi->ipu_ch, 1, 0x80);
532 ipu_disp_set_color_key(mxcfbi->ipu_ch, 0, 0);
533 strcpy(fbi->fix.id, "DISP3 BG");
537 mxcfb_info[mxcfbi->ipu_di] = fbi;
539 /* Need dummy values until real panel is configured */
541 mxcfbi->ipu_di_pix_fmt = interface_pix_fmt;
542 fb_videomode_to_var(&fbi->var, mode);
543 fbi->var.bits_per_pixel = 16;
544 fbi->fix.line_length = fbi->var.xres * (fbi->var.bits_per_pixel / 8);
545 fbi->fix.smem_len = fbi->var.yres_virtual * fbi->fix.line_length;
547 mxcfb_check_var(&fbi->var, fbi);
549 /* Default Y virtual size is 2x panel size */
550 fbi->var.yres_virtual = fbi->var.yres * 2;
554 /* alocate fb first */
555 if (mxcfb_map_video_memory(fbi) < 0)
560 panel.winSizeX = mode->xres;
561 panel.winSizeY = mode->yres;
562 panel.plnSizeX = mode->xres;
563 panel.plnSizeY = mode->yres;
565 panel.frameAdrs = (u32)fbi->screen_base;
566 panel.memSize = fbi->screen_size;
568 panel.gdfBytesPP = 2;
569 panel.gdfIndex = GDF_16BIT_565RGB;
571 ipu_dump_registers();
579 void *video_hw_init(void)
585 puts("Error initializing IPU\n");
587 ret = mxcfb_probe(gpixfmt, gdisp, gmode);
588 debug("Framebuffer at 0x%x\n", (unsigned int)panel.frameAdrs);
590 return (void *)&panel;
593 void video_set_lut(unsigned int index, /* color number */
594 unsigned char r, /* red */
595 unsigned char g, /* green */
596 unsigned char b /* blue */
602 int ipuv3_fb_init(struct fb_videomode *mode, uint8_t disp, uint32_t pixfmt)