2 * File: drivers/video/omap/omapfb_main.c
4 * Framebuffer driver for TI OMAP boards
6 * Copyright (C) 2004 Nokia Corporation
7 * Author: Imre Deak <imre.deak@nokia.com>
10 * Alex McMains <aam@ridgerun.com> - Original driver
11 * Juha Yrjola <juha.yrjola@nokia.com> - Original driver and improvements
12 * Dirk Behme <dirk.behme@de.bosch.com> - changes for 2.6 kernel API
13 * Texas Instruments - H3 support
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the
17 * Free Software Foundation; either version 2 of the License, or (at your
18 * option) any later version.
20 * This program is distributed in the hope that it will be useful, but
21 * WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 * General Public License for more details.
25 * You should have received a copy of the GNU General Public License along
26 * with this program; if not, write to the Free Software Foundation, Inc.,
27 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 #include <linux/platform_device.h>
31 #include <asm/uaccess.h>
32 #include <asm/mach-types.h>
33 #include <asm/arch/dma.h>
34 #include <asm/arch/omapfb.h>
36 #define MODULE_NAME "omapfb"
38 static unsigned int def_accel;
39 static unsigned long def_vram[OMAPFB_PLANE_NUM];
40 static int def_vram_cnt;
41 static unsigned long def_vxres;
42 static unsigned long def_vyres;
43 static unsigned int def_rotate;
44 static unsigned int def_mirror;
46 #ifdef CONFIG_FB_OMAP_MANUAL_UPDATE
47 static int manual_update = 1;
49 static int manual_update;
52 static struct platform_device *fbdev_pdev;
53 static struct lcd_panel *fbdev_panel;
54 static struct omapfb_device *omapfb_dev;
56 static struct caps_table_struct {
59 } omapfb_caps_table[] = {
60 { OMAPFB_CAPS_MANUAL_UPDATE, "manual update" },
61 { OMAPFB_CAPS_TEARSYNC, "tearing synchronization" },
62 { OMAPFB_CAPS_SET_BACKLIGHT, "backlight setting" },
66 * ---------------------------------------------------------------------------
68 * ---------------------------------------------------------------------------
70 extern struct lcd_ctrl omap1_int_ctrl;
71 extern struct lcd_ctrl omap2_int_ctrl;
72 extern struct lcd_ctrl hwa742_ctrl;
73 extern struct lcd_ctrl blizzard_ctrl;
75 static struct lcd_ctrl *ctrls[] = {
76 #ifdef CONFIG_ARCH_OMAP1
82 #ifdef CONFIG_FB_OMAP_LCDC_HWA742
85 #ifdef CONFIG_FB_OMAP_LCDC_BLIZZARD
90 #ifdef CONFIG_FB_OMAP_LCDC_EXTERNAL
91 #ifdef CONFIG_ARCH_OMAP1
92 extern struct lcd_ctrl_extif omap1_ext_if;
94 extern struct lcd_ctrl_extif omap2_ext_if;
98 static void omapfb_rqueue_lock(struct omapfb_device *fbdev)
100 mutex_lock(&fbdev->rqueue_mutex);
103 static void omapfb_rqueue_unlock(struct omapfb_device *fbdev)
105 mutex_unlock(&fbdev->rqueue_mutex);
109 * ---------------------------------------------------------------------------
110 * LCD controller and LCD DMA
111 * ---------------------------------------------------------------------------
113 /* Lookup table to map elem size to elem type. */
114 static const int dma_elem_type[] = {
116 OMAP_DMA_DATA_TYPE_S8,
117 OMAP_DMA_DATA_TYPE_S16,
119 OMAP_DMA_DATA_TYPE_S32,
122 /* Allocate resources needed for LCD controller and LCD DMA operations. Video
123 * memory is allocated from system memory according to the virtual display
124 * size, except if a bigger memory size is specified explicitly as a kernel
127 static int ctrl_init(struct omapfb_device *fbdev)
132 /* kernel/module vram parameters override boot tags/board config */
134 for (i = 0; i < def_vram_cnt; i++)
135 fbdev->mem_desc.region[i].size = def_vram[i];
136 fbdev->mem_desc.region_cnt = i;
138 struct omapfb_platform_data *conf;
140 conf = fbdev->dev->platform_data;
141 fbdev->mem_desc = conf->mem_desc;
144 if (!fbdev->mem_desc.region_cnt) {
145 struct lcd_panel *panel = fbdev->panel;
147 int bpp = panel->bpp;
149 /* 12 bpp is packed in 16 bits */
152 def_size = def_vxres * def_vyres * bpp / 8;
153 fbdev->mem_desc.region_cnt = 1;
154 fbdev->mem_desc.region[0].size = def_size;
156 r = fbdev->ctrl->init(fbdev, 0, &fbdev->mem_desc);
158 dev_err(fbdev->dev, "controller initialization failed (%d)\n", r);
163 for (i = 0; i < fbdev->mem_desc.region_cnt; i++) {
164 dev_dbg(fbdev->dev, "region%d phys %08x virt %p size=%lu\n",
166 fbdev->mem_desc.region[i].paddr,
167 fbdev->mem_desc.region[i].vaddr,
168 fbdev->mem_desc.region[i].size);
174 static void ctrl_cleanup(struct omapfb_device *fbdev)
176 fbdev->ctrl->cleanup();
179 static int ctrl_change_mode(struct fb_info *fbi)
182 unsigned long offset;
183 struct omapfb_plane_struct *plane = fbi->par;
184 struct omapfb_device *fbdev = plane->fbdev;
185 struct fb_var_screeninfo *var = &fbi->var;
187 offset = var->yoffset * fbi->fix.line_length +
188 var->xoffset * var->bits_per_pixel / 8;
190 omapfb_rqueue_lock(fbdev);
191 r = fbdev->ctrl->setup_plane(plane->idx, plane->info.channel_out,
192 offset, var->xres_virtual,
193 plane->info.pos_x, plane->info.pos_y,
194 var->xres, var->yres, plane->color_mode);
195 if (fbdev->ctrl->set_scale != NULL)
196 r = fbdev->ctrl->set_scale(plane->idx,
197 var->xres, var->yres,
198 plane->info.out_width,
199 plane->info.out_height);
200 omapfb_rqueue_unlock(fbdev);
206 * ---------------------------------------------------------------------------
207 * fbdev framework callbacks and the ioctl interface
208 * ---------------------------------------------------------------------------
210 /* Called each time the omapfb device is opened */
211 static int omapfb_open(struct fb_info *info, int user)
216 static void omapfb_sync(struct fb_info *info);
218 /* Called when the omapfb device is closed. We make sure that any pending
219 * gfx DMA operations are ended, before we return. */
220 static int omapfb_release(struct fb_info *info, int user)
226 /* Store a single color palette entry into a pseudo palette or the hardware
227 * palette if one is available. For now we support only 16bpp and thus store
228 * the entry only to the pseudo palette.
230 static int _setcolreg(struct fb_info *info, u_int regno, u_int red, u_int green,
231 u_int blue, u_int transp, int update_hw_pal)
233 struct omapfb_plane_struct *plane = info->par;
234 struct omapfb_device *fbdev = plane->fbdev;
235 struct fb_var_screeninfo *var = &info->var;
238 switch (plane->color_mode) {
239 case OMAPFB_COLOR_YUV422:
240 case OMAPFB_COLOR_YUV420:
241 case OMAPFB_COLOR_YUY422:
244 case OMAPFB_COLOR_CLUT_8BPP:
245 case OMAPFB_COLOR_CLUT_4BPP:
246 case OMAPFB_COLOR_CLUT_2BPP:
247 case OMAPFB_COLOR_CLUT_1BPP:
248 if (fbdev->ctrl->setcolreg)
249 r = fbdev->ctrl->setcolreg(regno, red, green, blue,
250 transp, update_hw_pal);
252 case OMAPFB_COLOR_RGB565:
253 case OMAPFB_COLOR_RGB444:
264 pal = ((red >> (16 - var->red.length)) <<
266 ((green >> (16 - var->green.length)) <<
268 (blue >> (16 - var->blue.length));
269 ((u32 *)(info->pseudo_palette))[regno] = pal;
278 static int omapfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
279 u_int transp, struct fb_info *info)
281 return _setcolreg(info, regno, red, green, blue, transp, 1);
284 static int omapfb_setcmap(struct fb_cmap *cmap, struct fb_info *info)
287 u16 *red, *green, *blue, *transp;
293 transp = cmap->transp;
296 for (count = 0; count < cmap->len; count++) {
299 r = _setcolreg(info, index++, *red++, *green++, *blue++, trans,
300 count == cmap->len - 1);
308 static int omapfb_update_full_screen(struct fb_info *fbi);
310 static int omapfb_blank(int blank, struct fb_info *fbi)
312 struct omapfb_plane_struct *plane = fbi->par;
313 struct omapfb_device *fbdev = plane->fbdev;
317 omapfb_rqueue_lock(fbdev);
319 case VESA_NO_BLANKING:
320 if (fbdev->state == OMAPFB_SUSPENDED) {
321 if (fbdev->ctrl->resume)
322 fbdev->ctrl->resume();
323 fbdev->panel->enable(fbdev->panel);
324 fbdev->state = OMAPFB_ACTIVE;
325 if (fbdev->ctrl->get_update_mode() ==
326 OMAPFB_MANUAL_UPDATE)
331 if (fbdev->state == OMAPFB_ACTIVE) {
332 fbdev->panel->disable(fbdev->panel);
333 if (fbdev->ctrl->suspend)
334 fbdev->ctrl->suspend();
335 fbdev->state = OMAPFB_SUSPENDED;
341 omapfb_rqueue_unlock(fbdev);
343 if (r == 0 && do_update)
344 r = omapfb_update_full_screen(fbi);
349 static void omapfb_sync(struct fb_info *fbi)
351 struct omapfb_plane_struct *plane = fbi->par;
352 struct omapfb_device *fbdev = plane->fbdev;
354 omapfb_rqueue_lock(fbdev);
355 if (fbdev->ctrl->sync)
357 omapfb_rqueue_unlock(fbdev);
360 /* Set fb_info.fix fields and also updates fbdev.
361 * When calling this fb_info.var must be set up already.
363 static void set_fb_fix(struct fb_info *fbi)
365 struct fb_fix_screeninfo *fix = &fbi->fix;
366 struct fb_var_screeninfo *var = &fbi->var;
369 fix->type = FB_TYPE_PACKED_PIXELS;
370 bpp = var->bits_per_pixel;
372 fix->visual = FB_VISUAL_PSEUDOCOLOR;
373 else switch (var->bits_per_pixel) {
376 fix->visual = FB_VISUAL_TRUECOLOR;
377 /* 12bpp is stored in 16 bits */
384 fix->visual = FB_VISUAL_PSEUDOCOLOR;
387 fix->accel = FB_ACCEL_OMAP1610;
388 fix->line_length = var->xres_virtual * bpp / 8;
391 static int set_color_mode(struct omapfb_plane_struct *plane,
392 struct fb_var_screeninfo *var)
394 switch (var->nonstd) {
397 case OMAPFB_COLOR_YUV422:
398 var->bits_per_pixel = 16;
399 plane->color_mode = var->nonstd;
401 case OMAPFB_COLOR_YUV420:
402 var->bits_per_pixel = 12;
403 plane->color_mode = var->nonstd;
405 case OMAPFB_COLOR_YUY422:
406 var->bits_per_pixel = 16;
407 plane->color_mode = var->nonstd;
413 switch (var->bits_per_pixel) {
415 plane->color_mode = OMAPFB_COLOR_CLUT_1BPP;
418 plane->color_mode = OMAPFB_COLOR_CLUT_2BPP;
421 plane->color_mode = OMAPFB_COLOR_CLUT_4BPP;
424 plane->color_mode = OMAPFB_COLOR_CLUT_8BPP;
427 var->bits_per_pixel = 16;
428 plane->color_mode = OMAPFB_COLOR_RGB444;
431 plane->color_mode = OMAPFB_COLOR_RGB565;
438 /* Check the values in var against our capabilities and in case of out of
439 * bound values try to adjust them.
441 static int set_fb_var(struct fb_info *fbi,
442 struct fb_var_screeninfo *var)
445 unsigned long max_frame_size;
446 unsigned long line_size;
447 int xres_min, xres_max;
448 int yres_min, yres_max;
449 struct omapfb_plane_struct *plane = fbi->par;
450 struct omapfb_device *fbdev = plane->fbdev;
451 struct lcd_panel *panel = fbdev->panel;
453 if (set_color_mode(plane, var) < 0)
456 bpp = var->bits_per_pixel;
457 if (plane->color_mode == OMAPFB_COLOR_RGB444)
460 switch (var->rotate) {
463 xres_min = OMAPFB_PLANE_XRES_MIN;
464 xres_max = panel->x_res;
465 yres_min = OMAPFB_PLANE_YRES_MIN;
466 yres_max = panel->y_res;
467 if (cpu_is_omap15xx()) {
468 var->xres = panel->x_res;
469 var->yres = panel->y_res;
474 xres_min = OMAPFB_PLANE_YRES_MIN;
475 xres_max = panel->y_res;
476 yres_min = OMAPFB_PLANE_XRES_MIN;
477 yres_max = panel->x_res;
478 if (cpu_is_omap15xx()) {
479 var->xres = panel->y_res;
480 var->yres = panel->x_res;
487 if (var->xres < xres_min)
488 var->xres = xres_min;
489 if (var->yres < yres_min)
490 var->yres = yres_min;
491 if (var->xres > xres_max)
492 var->xres = xres_max;
493 if (var->yres > yres_max)
494 var->yres = yres_max;
496 if (var->xres_virtual < var->xres)
497 var->xres_virtual = var->xres;
498 if (var->yres_virtual < var->yres)
499 var->yres_virtual = var->yres;
500 max_frame_size = fbdev->mem_desc.region[plane->idx].size;
501 line_size = var->xres_virtual * bpp / 8;
502 if (line_size * var->yres_virtual > max_frame_size) {
503 /* Try to keep yres_virtual first */
504 line_size = max_frame_size / var->yres_virtual;
505 var->xres_virtual = line_size * 8 / bpp;
506 if (var->xres_virtual < var->xres) {
507 /* Still doesn't fit. Shrink yres_virtual too */
508 var->xres_virtual = var->xres;
509 line_size = var->xres * bpp / 8;
510 var->yres_virtual = max_frame_size / line_size;
513 if (var->xres + var->xoffset > var->xres_virtual)
514 var->xoffset = var->xres_virtual - var->xres;
515 if (var->yres + var->yoffset > var->yres_virtual)
516 var->yoffset = var->yres_virtual - var->yres;
517 line_size = var->xres * bpp / 8;
519 if (plane->color_mode == OMAPFB_COLOR_RGB444) {
520 var->red.offset = 8; var->red.length = 4;
521 var->red.msb_right = 0;
522 var->green.offset = 4; var->green.length = 4;
523 var->green.msb_right = 0;
524 var->blue.offset = 0; var->blue.length = 4;
525 var->blue.msb_right = 0;
527 var->red.offset = 11; var->red.length = 5;
528 var->red.msb_right = 0;
529 var->green.offset= 5; var->green.length = 6;
530 var->green.msb_right = 0;
531 var->blue.offset = 0; var->blue.length = 5;
532 var->blue.msb_right = 0;
539 /* pixclock in ps, the rest in pixclock */
540 var->pixclock = 10000000 / (panel->pixel_clock / 100);
541 var->left_margin = panel->hfp;
542 var->right_margin = panel->hbp;
543 var->upper_margin = panel->vfp;
544 var->lower_margin = panel->vbp;
545 var->hsync_len = panel->hsw;
546 var->vsync_len = panel->vsw;
548 /* TODO: get these from panel->config */
549 var->vmode = FB_VMODE_NONINTERLACED;
555 static struct fb_var_screeninfo new_var;
557 /* Set rotation (0, 90, 180, 270 degree), and switch to the new mode. */
558 static void omapfb_rotate(struct fb_info *fbi, int rotate)
560 if (cpu_is_omap15xx() && rotate != fbi->var.rotate) {
561 memcpy(&new_var, &fbi->var, sizeof(new_var));
562 new_var.rotate = rotate;
563 if (set_fb_var(fbi, &new_var) == 0 &&
564 memcmp(&new_var, &fbi->var, sizeof(new_var))) {
565 memcpy(&fbi->var, &new_var, sizeof(new_var));
566 ctrl_change_mode(fbi);
571 /* Set new x,y offsets in the virtual display for the visible area and switch
574 static int omapfb_pan_display(struct fb_var_screeninfo *var,
579 if (var->xoffset != fbi->var.xoffset ||
580 var->yoffset != fbi->var.yoffset) {
581 memcpy(&new_var, &fbi->var, sizeof(new_var));
582 new_var.xoffset = var->xoffset;
583 new_var.yoffset = var->yoffset;
584 if (set_fb_var(fbi, &new_var))
587 memcpy(&fbi->var, &new_var, sizeof(new_var));
588 ctrl_change_mode(fbi);
595 /* Set mirror to vertical axis and switch to the new mode. */
596 static int omapfb_mirror(struct fb_info *fbi, int mirror)
598 struct omapfb_plane_struct *plane = fbi->par;
601 mirror = mirror ? 1 : 0;
602 if (cpu_is_omap15xx())
604 else if (mirror != plane->info.mirror) {
605 plane->info.mirror = mirror;
606 r = ctrl_change_mode(fbi);
612 /* Check values in var, try to adjust them in case of out of bound values if
613 * possible, or return error.
615 static int omapfb_check_var(struct fb_var_screeninfo *var, struct fb_info *fbi)
617 return set_fb_var(fbi, var);
620 /* Switch to a new mode. The parameters for it has been check already by
623 static int omapfb_set_par(struct fb_info *fbi)
626 return ctrl_change_mode(fbi);
629 int omapfb_update_window_async(struct fb_info *fbi,
630 struct omapfb_update_window *win,
631 void (*callback)(void *),
634 struct omapfb_plane_struct *plane;
635 struct omapfb_device *fbdev;
636 struct fb_var_screeninfo *var;
642 fbdev = plane->fbdev;
645 if (win->x >= var->xres || win->y >= var->yres)
648 if (!fbdev->ctrl->update_window ||
649 fbdev->ctrl->get_update_mode() != OMAPFB_MANUAL_UPDATE)
652 if (win->x + win->width >= var->xres)
653 win->width = var->xres - win->x;
654 if (win->y + win->height >= var->yres)
655 win->height = var->yres - win->y;
656 if (!win->width || !win->height)
659 return fbdev->ctrl->update_window(fbi, win, callback, callback_data);
661 EXPORT_SYMBOL(omapfb_update_window_async);
663 static int omapfb_update_win(struct fb_info *fbi,
664 struct omapfb_update_window *win)
666 struct omapfb_plane_struct *plane = fbi->par;
669 omapfb_rqueue_lock(plane->fbdev);
670 ret = omapfb_update_window_async(fbi, win, NULL, 0);
671 omapfb_rqueue_unlock(plane->fbdev);
676 static int omapfb_update_full_screen(struct fb_info *fbi)
678 struct omapfb_plane_struct *plane = fbi->par;
679 struct omapfb_device *fbdev = plane->fbdev;
680 struct omapfb_update_window win;
683 if (!fbdev->ctrl->update_window ||
684 fbdev->ctrl->get_update_mode() != OMAPFB_MANUAL_UPDATE)
689 win.width = fbi->var.xres;
690 win.height = fbi->var.yres;
693 omapfb_rqueue_lock(fbdev);
694 r = fbdev->ctrl->update_window(fbi, &win, NULL, 0);
695 omapfb_rqueue_unlock(fbdev);
700 static int omapfb_setup_plane(struct fb_info *fbi, struct omapfb_plane_info *pi)
702 struct omapfb_plane_struct *plane = fbi->par;
703 struct omapfb_device *fbdev = plane->fbdev;
704 struct lcd_panel *panel = fbdev->panel;
707 if (pi->pos_x + pi->out_width > panel->x_res ||
708 pi->pos_y + pi->out_height > panel->y_res)
712 r = ctrl_change_mode(fbi);
715 return fbdev->ctrl->enable_plane(plane->idx, pi->enabled);
718 static int omapfb_query_plane(struct fb_info *fbi, struct omapfb_plane_info *pi)
720 struct omapfb_plane_struct *plane = fbi->par;
726 static int omapfb_set_color_key(struct omapfb_device *fbdev,
727 struct omapfb_color_key *ck)
731 if (!fbdev->ctrl->set_color_key)
734 omapfb_rqueue_lock(fbdev);
735 r = fbdev->ctrl->set_color_key(ck);
736 omapfb_rqueue_unlock(fbdev);
741 static int omapfb_get_color_key(struct omapfb_device *fbdev,
742 struct omapfb_color_key *ck)
746 if (!fbdev->ctrl->get_color_key)
749 omapfb_rqueue_lock(fbdev);
750 r = fbdev->ctrl->get_color_key(ck);
751 omapfb_rqueue_unlock(fbdev);
756 static struct blocking_notifier_head omapfb_client_list[OMAPFB_PLANE_NUM];
757 static int notifier_inited;
759 static void omapfb_init_notifier(void)
763 for (i = 0; i < OMAPFB_PLANE_NUM; i++)
764 BLOCKING_INIT_NOTIFIER_HEAD(&omapfb_client_list[i]);
767 int omapfb_register_client(struct omapfb_notifier_block *omapfb_nb,
768 omapfb_notifier_callback_t callback,
773 if ((unsigned)omapfb_nb->plane_idx > OMAPFB_PLANE_NUM)
776 if (!notifier_inited) {
777 omapfb_init_notifier();
781 omapfb_nb->nb.notifier_call = (int (*)(struct notifier_block *,
782 unsigned long, void *))callback;
783 omapfb_nb->data = callback_data;
784 r = blocking_notifier_chain_register(
785 &omapfb_client_list[omapfb_nb->plane_idx],
789 if (omapfb_dev != NULL &&
790 omapfb_dev->ctrl && omapfb_dev->ctrl->bind_client) {
791 omapfb_dev->ctrl->bind_client(omapfb_nb);
796 EXPORT_SYMBOL(omapfb_register_client);
798 int omapfb_unregister_client(struct omapfb_notifier_block *omapfb_nb)
800 return blocking_notifier_chain_unregister(
801 &omapfb_client_list[omapfb_nb->plane_idx], &omapfb_nb->nb);
803 EXPORT_SYMBOL(omapfb_unregister_client);
805 void omapfb_notify_clients(struct omapfb_device *fbdev, unsigned long event)
809 if (!notifier_inited)
810 /* no client registered yet */
813 for (i = 0; i < OMAPFB_PLANE_NUM; i++)
814 blocking_notifier_call_chain(&omapfb_client_list[i], event,
817 EXPORT_SYMBOL(omapfb_notify_clients);
819 static int omapfb_set_update_mode(struct omapfb_device *fbdev,
820 enum omapfb_update_mode mode)
824 omapfb_rqueue_lock(fbdev);
825 r = fbdev->ctrl->set_update_mode(mode);
826 omapfb_rqueue_unlock(fbdev);
831 static enum omapfb_update_mode omapfb_get_update_mode(struct omapfb_device *fbdev)
835 omapfb_rqueue_lock(fbdev);
836 r = fbdev->ctrl->get_update_mode();
837 omapfb_rqueue_unlock(fbdev);
842 static unsigned long omapfb_get_caps(struct omapfb_device *fbdev)
847 caps |= fbdev->panel->get_caps(fbdev->panel);
848 caps |= fbdev->ctrl->get_caps();
852 /* For lcd testing */
853 void omapfb_write_first_pixel(struct omapfb_device *fbdev, u16 pixval)
855 omapfb_rqueue_lock(fbdev);
856 *(u16 *)fbdev->mem_desc.region[0].vaddr = pixval;
857 if (fbdev->ctrl->get_update_mode() == OMAPFB_MANUAL_UPDATE) {
858 struct omapfb_update_window win;
865 fbdev->ctrl->update_window(fbdev->fb_info[0], &win, NULL, 0);
867 omapfb_rqueue_unlock(fbdev);
869 EXPORT_SYMBOL(omapfb_write_first_pixel);
871 /* Ioctl interface. Part of the kernel mode frame buffer API is duplicated
872 * here to be accessible by user mode code.
874 static int omapfb_ioctl(struct fb_info *fbi, unsigned int cmd,
877 struct omapfb_plane_struct *plane = fbi->par;
878 struct omapfb_device *fbdev = plane->fbdev;
879 struct fb_ops *ops = fbi->fbops;
881 struct omapfb_update_window update_window;
882 struct omapfb_plane_info plane_info;
883 struct omapfb_color_key color_key;
884 enum omapfb_update_mode update_mode;
896 if (get_user(p.mirror, (int __user *)arg))
899 omapfb_mirror(fbi, p.mirror);
901 case OMAPFB_SYNC_GFX:
906 case OMAPFB_SET_UPDATE_MODE:
907 if (get_user(p.update_mode, (int __user *)arg))
910 r = omapfb_set_update_mode(fbdev, p.update_mode);
912 case OMAPFB_GET_UPDATE_MODE:
913 p.update_mode = omapfb_get_update_mode(fbdev);
914 if (put_user(p.update_mode,
915 (enum omapfb_update_mode __user *)arg))
918 case OMAPFB_UPDATE_WINDOW_OLD:
919 if (copy_from_user(&p.update_window, (void __user *)arg,
920 sizeof(struct omapfb_update_window_old)))
923 p.update_window.format = 0;
924 r = omapfb_update_win(fbi, &p.update_window);
927 case OMAPFB_UPDATE_WINDOW:
928 if (copy_from_user(&p.update_window, (void __user *)arg,
929 sizeof(p.update_window)))
932 r = omapfb_update_win(fbi, &p.update_window);
934 case OMAPFB_SETUP_PLANE:
935 if (copy_from_user(&p.plane_info, (void __user *)arg,
936 sizeof(p.plane_info)))
939 r = omapfb_setup_plane(fbi, &p.plane_info);
941 case OMAPFB_QUERY_PLANE:
942 if ((r = omapfb_query_plane(fbi, &p.plane_info)) < 0)
944 if (copy_to_user((void __user *)arg, &p.plane_info,
945 sizeof(p.plane_info)))
948 case OMAPFB_SET_COLOR_KEY:
949 if (copy_from_user(&p.color_key, (void __user *)arg,
950 sizeof(p.color_key)))
953 r = omapfb_set_color_key(fbdev, &p.color_key);
955 case OMAPFB_GET_COLOR_KEY:
956 if ((r = omapfb_get_color_key(fbdev, &p.color_key)) < 0)
958 if (copy_to_user((void __user *)arg, &p.color_key,
959 sizeof(p.color_key)))
962 case OMAPFB_GET_CAPS:
963 p.caps = omapfb_get_caps(fbdev);
964 if (put_user(p.caps, (unsigned long __user *)arg))
967 case OMAPFB_LCD_TEST:
971 if (get_user(test_num, (int __user *)arg)) {
975 if (!fbdev->panel->run_test) {
979 r = fbdev->panel->run_test(fbdev->panel, test_num);
982 case OMAPFB_CTRL_TEST:
986 if (get_user(test_num, (int __user *)arg)) {
990 if (!fbdev->ctrl->run_test) {
994 r = fbdev->ctrl->run_test(test_num);
1004 /* Callback table for the frame buffer framework. Some of these pointers
1005 * will be changed according to the current setting of fb_info->accel_flags.
1007 static struct fb_ops omapfb_ops = {
1008 .owner = THIS_MODULE,
1009 .fb_open = omapfb_open,
1010 .fb_release = omapfb_release,
1011 .fb_setcolreg = omapfb_setcolreg,
1012 .fb_setcmap = omapfb_setcmap,
1013 .fb_fillrect = cfb_fillrect,
1014 .fb_copyarea = cfb_copyarea,
1015 .fb_imageblit = cfb_imageblit,
1016 .fb_blank = omapfb_blank,
1017 .fb_ioctl = omapfb_ioctl,
1018 .fb_check_var = omapfb_check_var,
1019 .fb_set_par = omapfb_set_par,
1020 .fb_rotate = omapfb_rotate,
1021 .fb_pan_display = omapfb_pan_display,
1025 * ---------------------------------------------------------------------------
1027 * ---------------------------------------------------------------------------
1029 /* omapfbX sysfs entries */
1030 static ssize_t omapfb_show_caps_num(struct device *dev, struct device_attribute *attr, char *buf)
1032 struct omapfb_device *fbdev = (struct omapfb_device *)dev->driver_data;
1034 return snprintf(buf, PAGE_SIZE, "%#010lx\n", omapfb_get_caps(fbdev));
1037 static ssize_t omapfb_show_caps_text(struct device *dev, struct device_attribute *attr, char *buf)
1039 struct omapfb_device *fbdev = (struct omapfb_device *)dev->driver_data;
1044 caps = omapfb_get_caps(fbdev);
1045 for (i = 0; i < ARRAY_SIZE(omapfb_caps_table) && pos < PAGE_SIZE; i++) {
1046 if (omapfb_caps_table[i].flag & caps) {
1047 pos += snprintf(&buf[pos], PAGE_SIZE - pos, "%s\n",
1048 omapfb_caps_table[i].name);
1051 return min((int)PAGE_SIZE, pos);
1054 static DEVICE_ATTR(caps_num, 0444, omapfb_show_caps_num, NULL);
1055 static DEVICE_ATTR(caps_text, 0444, omapfb_show_caps_text, NULL);
1057 /* panel sysfs entries */
1058 static ssize_t omapfb_show_panel_name(struct device *dev,
1059 struct device_attribute *attr, char *buf)
1061 struct omapfb_device *fbdev = (struct omapfb_device *)dev->driver_data;
1063 return snprintf(buf, PAGE_SIZE, "%s\n", fbdev->panel->name);
1066 static ssize_t omapfb_show_bklight_level(struct device *dev,
1067 struct device_attribute *attr,
1070 struct omapfb_device *fbdev = (struct omapfb_device *)dev->driver_data;
1073 if (fbdev->panel->get_bklight_level) {
1074 r = snprintf(buf, PAGE_SIZE, "%d\n",
1075 fbdev->panel->get_bklight_level(fbdev->panel));
1081 static ssize_t omapfb_store_bklight_level(struct device *dev,
1082 struct device_attribute *attr,
1083 const char *buf, size_t size)
1085 struct omapfb_device *fbdev = (struct omapfb_device *)dev->driver_data;
1088 if (fbdev->panel->set_bklight_level) {
1091 if (sscanf(buf, "%10d", &level) == 1) {
1092 r = fbdev->panel->set_bklight_level(fbdev->panel, level);
1097 return r ? r : size;
1100 static ssize_t omapfb_show_bklight_max(struct device *dev,
1101 struct device_attribute *attr, char *buf)
1103 struct omapfb_device *fbdev = (struct omapfb_device *)dev->driver_data;
1106 if (fbdev->panel->get_bklight_level) {
1107 r = snprintf(buf, PAGE_SIZE, "%d\n",
1108 fbdev->panel->get_bklight_max(fbdev->panel));
1114 static struct device_attribute dev_attr_panel_name =
1115 __ATTR(name, 0444, omapfb_show_panel_name, NULL);
1116 static DEVICE_ATTR(backlight_level, 0664,
1117 omapfb_show_bklight_level, omapfb_store_bklight_level);
1118 static DEVICE_ATTR(backlight_max, 0444, omapfb_show_bklight_max, NULL);
1120 static struct attribute *panel_attrs[] = {
1121 &dev_attr_panel_name.attr,
1122 &dev_attr_backlight_level.attr,
1123 &dev_attr_backlight_max.attr,
1127 static struct attribute_group panel_attr_grp = {
1129 .attrs = panel_attrs,
1132 /* ctrl sysfs entries */
1133 static ssize_t omapfb_show_ctrl_name(struct device *dev,
1134 struct device_attribute *attr, char *buf)
1136 struct omapfb_device *fbdev = (struct omapfb_device *)dev->driver_data;
1138 return snprintf(buf, PAGE_SIZE, "%s\n", fbdev->ctrl->name);
1141 static struct device_attribute dev_attr_ctrl_name =
1142 __ATTR(name, 0444, omapfb_show_ctrl_name, NULL);
1144 static struct attribute *ctrl_attrs[] = {
1145 &dev_attr_ctrl_name.attr,
1149 static struct attribute_group ctrl_attr_grp = {
1151 .attrs = ctrl_attrs,
1154 static int omapfb_register_sysfs(struct omapfb_device *fbdev)
1158 if ((r = device_create_file(fbdev->dev, &dev_attr_caps_num)))
1161 if ((r = device_create_file(fbdev->dev, &dev_attr_caps_text)))
1164 if ((r = sysfs_create_group(&fbdev->dev->kobj, &panel_attr_grp)))
1167 if ((r = sysfs_create_group(&fbdev->dev->kobj, &ctrl_attr_grp)))
1172 sysfs_remove_group(&fbdev->dev->kobj, &panel_attr_grp);
1174 device_remove_file(fbdev->dev, &dev_attr_caps_text);
1176 device_remove_file(fbdev->dev, &dev_attr_caps_num);
1178 dev_err(fbdev->dev, "unable to register sysfs interface\n");
1182 static void omapfb_unregister_sysfs(struct omapfb_device *fbdev)
1184 sysfs_remove_group(&fbdev->dev->kobj, &ctrl_attr_grp);
1185 sysfs_remove_group(&fbdev->dev->kobj, &panel_attr_grp);
1186 device_remove_file(fbdev->dev, &dev_attr_caps_num);
1187 device_remove_file(fbdev->dev, &dev_attr_caps_text);
1191 * ---------------------------------------------------------------------------
1193 * ---------------------------------------------------------------------------
1195 /* Initialize system fb_info object and set the default video mode.
1196 * The frame buffer memory already allocated by lcddma_init
1198 static int fbinfo_init(struct omapfb_device *fbdev, struct fb_info *info,
1199 struct omapfb_mem_region *region)
1201 struct fb_var_screeninfo *var = &info->var;
1202 struct fb_fix_screeninfo *fix = &info->fix;
1205 info->fbops = &omapfb_ops;
1206 info->flags = FBINFO_FLAG_DEFAULT;
1208 strncpy(fix->id, MODULE_NAME, sizeof(fix->id));
1210 info->screen_base = (char __iomem *)region->vaddr;
1211 fix->smem_start = region->paddr;
1212 fix->smem_len = region->size;
1214 info->pseudo_palette = fbdev->pseudo_palette;
1216 var->accel_flags = def_accel ? FB_ACCELF_TEXT : 0;
1217 var->xres = def_vxres;
1218 var->yres = def_vyres;
1219 var->xres_virtual = def_vxres;
1220 var->yres_virtual = def_vyres;
1221 var->rotate = def_rotate;
1222 var->bits_per_pixel = fbdev->panel->bpp;
1224 set_fb_var(info, var);
1227 r = fb_alloc_cmap(&info->cmap, 16, 0);
1229 dev_err(fbdev->dev, "unable to allocate color map memory\n");
1234 /* Release the fb_info object */
1235 static void fbinfo_cleanup(struct omapfb_device *fbdev, struct fb_info *fbi)
1237 fb_dealloc_cmap(&fbi->cmap);
1240 static void planes_cleanup(struct omapfb_device *fbdev)
1244 for (i = 0; i < fbdev->mem_desc.region_cnt; i++) {
1245 if (fbdev->fb_info[i] == NULL)
1247 fbinfo_cleanup(fbdev, fbdev->fb_info[i]);
1248 framebuffer_release(fbdev->fb_info[i]);
1252 static int planes_init(struct omapfb_device *fbdev)
1254 struct fb_info *fbi;
1258 for (i = 0; i < fbdev->mem_desc.region_cnt; i++) {
1259 struct omapfb_plane_struct *plane;
1260 fbi = framebuffer_alloc(sizeof(struct omapfb_plane_struct),
1264 "unable to allocate memory for plane info\n");
1265 planes_cleanup(fbdev);
1270 plane->fbdev = fbdev;
1271 plane->info.mirror = def_mirror;
1272 fbdev->fb_info[i] = fbi;
1274 if ((r = fbinfo_init(fbdev, fbi,
1275 &fbdev->mem_desc.region[i])) < 0) {
1276 framebuffer_release(fbi);
1277 planes_cleanup(fbdev);
1280 plane->info.out_width = fbi->var.xres;
1281 plane->info.out_height = fbi->var.yres;
1286 /* Free driver resources. Can be called to rollback an aborted initialization
1289 static void omapfb_free_resources(struct omapfb_device *fbdev, int state)
1295 for (i = 0; i < fbdev->mem_desc.region_cnt; i++)
1296 unregister_framebuffer(fbdev->fb_info[i]);
1298 omapfb_unregister_sysfs(fbdev);
1300 fbdev->panel->disable(fbdev->panel);
1302 omapfb_set_update_mode(fbdev, OMAPFB_UPDATE_DISABLED);
1304 planes_cleanup(fbdev);
1306 ctrl_cleanup(fbdev);
1308 fbdev->panel->cleanup(fbdev->panel);
1310 dev_set_drvdata(fbdev->dev, NULL);
1313 /* nothing to free */
1320 static int omapfb_find_ctrl(struct omapfb_device *fbdev)
1322 struct omapfb_platform_data *conf;
1326 conf = fbdev->dev->platform_data;
1330 strncpy(name, conf->lcd.ctrl_name, sizeof(name) - 1);
1331 name[sizeof(name) - 1] = '\0';
1333 if (strcmp(name, "internal") == 0) {
1334 fbdev->ctrl = fbdev->int_ctrl;
1338 for (i = 0; i < ARRAY_SIZE(ctrls); i++) {
1339 dev_dbg(fbdev->dev, "ctrl %s\n", ctrls[i]->name);
1340 if (strcmp(ctrls[i]->name, name) == 0) {
1341 fbdev->ctrl = ctrls[i];
1346 if (fbdev->ctrl == NULL) {
1347 dev_dbg(fbdev->dev, "ctrl %s not supported\n", name);
1354 static void check_required_callbacks(struct omapfb_device *fbdev)
1356 #define _C(x) (fbdev->ctrl->x != NULL)
1357 #define _P(x) (fbdev->panel->x != NULL)
1358 BUG_ON(fbdev->ctrl == NULL || fbdev->panel == NULL);
1359 BUG_ON(!(_C(init) && _C(cleanup) && _C(get_caps) &&
1360 _C(set_update_mode) && _C(setup_plane) && _C(enable_plane) &&
1361 _P(init) && _P(cleanup) && _P(enable) && _P(disable) &&
1367 /* Called by LDM binding to probe and attach a new device.
1368 * Initialization sequence:
1369 * 1. allocate system omapfb_device structure
1370 * 2. select controller type according to platform configuration
1372 * 3. init LCD controller and LCD DMA
1373 * 4. init system fb_info structure for all planes
1374 * 5. setup video mode for first plane and enable it
1375 * 6. enable LCD panel
1376 * 7. register sysfs attributes
1377 * OMAPFB_ACTIVE: register system fb_info structure for all planes
1379 static int omapfb_do_probe(struct platform_device *pdev, struct lcd_panel *panel)
1381 struct omapfb_device *fbdev = NULL;
1383 unsigned long phz, hhz, vhz;
1390 if (pdev->num_resources != 0) {
1391 dev_err(&pdev->dev, "probed for an unknown device\n");
1396 if (pdev->dev.platform_data == NULL) {
1397 dev_err(&pdev->dev, "missing platform data\n");
1402 fbdev = kzalloc(sizeof(struct omapfb_device), GFP_KERNEL);
1403 if (fbdev == NULL) {
1405 "unable to allocate memory for device info\n");
1411 fbdev->dev = &pdev->dev;
1412 fbdev->panel = panel;
1413 platform_set_drvdata(pdev, fbdev);
1415 mutex_init(&fbdev->rqueue_mutex);
1417 #ifdef CONFIG_ARCH_OMAP1
1418 fbdev->int_ctrl = &omap1_int_ctrl;
1419 #ifdef CONFIG_FB_OMAP_LCDC_EXTERNAL
1420 fbdev->ext_if = &omap1_ext_if;
1423 fbdev->int_ctrl = &omap2_int_ctrl;
1424 #ifdef CONFIG_FB_OMAP_LCDC_EXTERNAL
1425 fbdev->ext_if = &omap2_ext_if;
1428 if (omapfb_find_ctrl(fbdev) < 0) {
1430 "LCD controller not found, board not supported\n");
1435 r = fbdev->panel->init(fbdev->panel, fbdev);
1439 pr_info("omapfb: configured for panel %s\n", fbdev->panel->name);
1441 def_vxres = def_vxres ? : fbdev->panel->x_res;
1442 def_vyres = def_vyres ? : fbdev->panel->y_res;
1446 r = ctrl_init(fbdev);
1451 check_required_callbacks(fbdev);
1453 r = planes_init(fbdev);
1458 #ifdef CONFIG_FB_OMAP_DMA_TUNE
1459 /* Set DMA priority for EMIFF access to highest */
1460 if (cpu_class_is_omap1())
1461 omap_set_dma_priority(0, OMAP_DMA_PORT_EMIFF, 15);
1464 r = ctrl_change_mode(fbdev->fb_info[0]);
1466 dev_err(fbdev->dev, "mode setting failed\n");
1470 /* GFX plane is enabled by default */
1471 r = fbdev->ctrl->enable_plane(OMAPFB_PLANE_GFX, 1);
1475 omapfb_set_update_mode(fbdev, manual_update ?
1476 OMAPFB_MANUAL_UPDATE : OMAPFB_AUTO_UPDATE);
1479 r = fbdev->panel->enable(fbdev->panel);
1484 r = omapfb_register_sysfs(fbdev);
1490 for (i = 0; i < fbdev->mem_desc.region_cnt; i++) {
1491 r = register_framebuffer(fbdev->fb_info[i]);
1494 "registering framebuffer %d failed\n", i);
1497 vram += fbdev->mem_desc.region[i].size;
1500 fbdev->state = OMAPFB_ACTIVE;
1502 panel = fbdev->panel;
1503 phz = panel->pixel_clock * 1000;
1504 hhz = phz * 10 / (panel->hfp + panel->x_res + panel->hbp + panel->hsw);
1505 vhz = hhz / (panel->vfp + panel->y_res + panel->vbp + panel->vsw);
1509 pr_info("omapfb: Framebuffer initialized. Total vram %lu planes %d\n",
1510 vram, fbdev->mem_desc.region_cnt);
1511 pr_info("omapfb: Pixclock %lu kHz hfreq %lu.%lu kHz "
1512 "vfreq %lu.%lu Hz\n",
1513 phz / 1000, hhz / 10000, hhz % 10, vhz / 10, vhz % 10);
1518 omapfb_free_resources(fbdev, init_state);
1523 static int omapfb_probe(struct platform_device *pdev)
1525 BUG_ON(fbdev_pdev != NULL);
1527 /* Delay actual initialization until the LCD is registered */
1529 if (fbdev_panel != NULL)
1530 omapfb_do_probe(fbdev_pdev, fbdev_panel);
1534 void omapfb_register_panel(struct lcd_panel *panel)
1536 BUG_ON(fbdev_panel != NULL);
1538 fbdev_panel = panel;
1539 if (fbdev_pdev != NULL)
1540 omapfb_do_probe(fbdev_pdev, fbdev_panel);
1543 /* Called when the device is being detached from the driver */
1544 static int omapfb_remove(struct platform_device *pdev)
1546 struct omapfb_device *fbdev = platform_get_drvdata(pdev);
1547 enum omapfb_state saved_state = fbdev->state;
1549 /* FIXME: wait till completion of pending events */
1551 fbdev->state = OMAPFB_DISABLED;
1552 omapfb_free_resources(fbdev, saved_state);
1558 static int omapfb_suspend(struct platform_device *pdev, pm_message_t mesg)
1560 struct omapfb_device *fbdev = platform_get_drvdata(pdev);
1562 omapfb_blank(VESA_POWERDOWN, fbdev->fb_info[0]);
1568 static int omapfb_resume(struct platform_device *pdev)
1570 struct omapfb_device *fbdev = platform_get_drvdata(pdev);
1572 omapfb_blank(VESA_NO_BLANKING, fbdev->fb_info[0]);
1576 static struct platform_driver omapfb_driver = {
1577 .probe = omapfb_probe,
1578 .remove = omapfb_remove,
1579 .suspend = omapfb_suspend,
1580 .resume = omapfb_resume,
1582 .name = MODULE_NAME,
1583 .owner = THIS_MODULE,
1589 /* Process kernel command line parameters */
1590 static int __init omapfb_setup(char *options)
1592 char *this_opt = NULL;
1595 pr_debug("omapfb: options %s\n", options);
1597 if (!options || !*options)
1600 while (!r && (this_opt = strsep(&options, ",")) != NULL) {
1601 if (!strncmp(this_opt, "accel", 5))
1603 else if (!strncmp(this_opt, "vram:", 5)) {
1606 vram = (simple_strtoul(this_opt + 5, &suffix, 0));
1607 switch (suffix[0]) {
1619 pr_debug("omapfb: invalid vram suffix %c\n",
1623 def_vram[def_vram_cnt++] = vram;
1625 else if (!strncmp(this_opt, "vxres:", 6))
1626 def_vxres = simple_strtoul(this_opt + 6, NULL, 0);
1627 else if (!strncmp(this_opt, "vyres:", 6))
1628 def_vyres = simple_strtoul(this_opt + 6, NULL, 0);
1629 else if (!strncmp(this_opt, "rotate:", 7))
1630 def_rotate = (simple_strtoul(this_opt + 7, NULL, 0));
1631 else if (!strncmp(this_opt, "mirror:", 7))
1632 def_mirror = (simple_strtoul(this_opt + 7, NULL, 0));
1633 else if (!strncmp(this_opt, "manual_update", 13))
1636 pr_debug("omapfb: invalid option\n");
1646 /* Register both the driver and the device */
1647 static int __init omapfb_init(void)
1652 if (fb_get_options("omapfb", &option))
1654 omapfb_setup(option);
1656 /* Register the driver with LDM */
1657 if (platform_driver_register(&omapfb_driver)) {
1658 pr_debug("failed to register omapfb driver\n");
1665 static void __exit omapfb_cleanup(void)
1667 platform_driver_unregister(&omapfb_driver);
1670 module_param_named(accel, def_accel, uint, 0664);
1671 module_param_array_named(vram, def_vram, ulong, &def_vram_cnt, 0664);
1672 module_param_named(vxres, def_vxres, long, 0664);
1673 module_param_named(vyres, def_vyres, long, 0664);
1674 module_param_named(rotate, def_rotate, uint, 0664);
1675 module_param_named(mirror, def_mirror, uint, 0664);
1676 module_param_named(manual_update, manual_update, bool, 0664);
1678 module_init(omapfb_init);
1679 module_exit(omapfb_cleanup);
1681 MODULE_DESCRIPTION("TI OMAP framebuffer driver");
1682 MODULE_AUTHOR("Imre Deak <imre.deak@nokia.com>");
1683 MODULE_LICENSE("GPL");