2 * Framebuffer driver for TI OMAP boards
4 * Copyright (C) 2004 Nokia Corporation
5 * Author: Imre Deak <imre.deak@nokia.com>
8 * Alex McMains <aam@ridgerun.com> - Original driver
9 * Juha Yrjola <juha.yrjola@nokia.com> - Original driver and improvements
10 * Dirk Behme <dirk.behme@de.bosch.com> - changes for 2.6 kernel API
11 * Texas Instruments - H3 support
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
18 * This program is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * General Public License for more details.
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 #include <linux/platform_device.h>
29 #include <linux/uaccess.h>
37 #define MODULE_NAME "omapfb"
39 static unsigned int def_accel
;
40 static unsigned long def_vram
[OMAPFB_PLANE_NUM
];
41 static unsigned int def_vram_cnt
;
42 static unsigned long def_vxres
;
43 static unsigned long def_vyres
;
44 static unsigned int def_rotate
;
45 static unsigned int def_mirror
;
47 #ifdef CONFIG_FB_OMAP_MANUAL_UPDATE
48 static int manual_update
= 1;
50 static int manual_update
;
53 static struct platform_device
*fbdev_pdev
;
54 static struct lcd_panel
*fbdev_panel
;
55 static struct omapfb_device
*omapfb_dev
;
57 struct caps_table_struct
{
62 static struct caps_table_struct ctrl_caps
[] = {
63 { OMAPFB_CAPS_MANUAL_UPDATE
, "manual update" },
64 { OMAPFB_CAPS_TEARSYNC
, "tearing synchronization" },
65 { OMAPFB_CAPS_PLANE_RELOCATE_MEM
, "relocate plane memory" },
66 { OMAPFB_CAPS_PLANE_SCALE
, "scale plane" },
67 { OMAPFB_CAPS_WINDOW_PIXEL_DOUBLE
, "pixel double window" },
68 { OMAPFB_CAPS_WINDOW_SCALE
, "scale window" },
69 { OMAPFB_CAPS_WINDOW_OVERLAY
, "overlay window" },
70 { OMAPFB_CAPS_WINDOW_ROTATE
, "rotate window" },
71 { OMAPFB_CAPS_SET_BACKLIGHT
, "backlight setting" },
74 static struct caps_table_struct color_caps
[] = {
75 { 1 << OMAPFB_COLOR_RGB565
, "RGB565", },
76 { 1 << OMAPFB_COLOR_YUV422
, "YUV422", },
77 { 1 << OMAPFB_COLOR_YUV420
, "YUV420", },
78 { 1 << OMAPFB_COLOR_CLUT_8BPP
, "CLUT8", },
79 { 1 << OMAPFB_COLOR_CLUT_4BPP
, "CLUT4", },
80 { 1 << OMAPFB_COLOR_CLUT_2BPP
, "CLUT2", },
81 { 1 << OMAPFB_COLOR_CLUT_1BPP
, "CLUT1", },
82 { 1 << OMAPFB_COLOR_RGB444
, "RGB444", },
83 { 1 << OMAPFB_COLOR_YUY422
, "YUY422", },
87 * ---------------------------------------------------------------------------
89 * ---------------------------------------------------------------------------
91 extern struct lcd_ctrl hwa742_ctrl
;
92 extern struct lcd_ctrl blizzard_ctrl
;
94 static const struct lcd_ctrl
*ctrls
[] = {
95 #ifdef CONFIG_ARCH_OMAP1
101 #ifdef CONFIG_FB_OMAP_LCDC_HWA742
104 #ifdef CONFIG_FB_OMAP_LCDC_BLIZZARD
109 #ifdef CONFIG_FB_OMAP_LCDC_EXTERNAL
110 #ifdef CONFIG_ARCH_OMAP1
111 extern struct lcd_ctrl_extif omap1_ext_if
;
113 extern struct lcd_ctrl_extif omap2_ext_if
;
117 static void omapfb_rqueue_lock(struct omapfb_device
*fbdev
)
119 mutex_lock(&fbdev
->rqueue_mutex
);
122 static void omapfb_rqueue_unlock(struct omapfb_device
*fbdev
)
124 mutex_unlock(&fbdev
->rqueue_mutex
);
128 * ---------------------------------------------------------------------------
129 * LCD controller and LCD DMA
130 * ---------------------------------------------------------------------------
132 /* Lookup table to map elem size to elem type. */
133 static const int dma_elem_type
[] = {
135 OMAP_DMA_DATA_TYPE_S8
,
136 OMAP_DMA_DATA_TYPE_S16
,
138 OMAP_DMA_DATA_TYPE_S32
,
142 * Allocate resources needed for LCD controller and LCD DMA operations. Video
143 * memory is allocated from system memory according to the virtual display
144 * size, except if a bigger memory size is specified explicitly as a kernel
147 static int ctrl_init(struct omapfb_device
*fbdev
)
152 /* kernel/module vram parameters override boot tags/board config */
154 for (i
= 0; i
< def_vram_cnt
; i
++)
155 fbdev
->mem_desc
.region
[i
].size
=
156 PAGE_ALIGN(def_vram
[i
]);
157 fbdev
->mem_desc
.region_cnt
= i
;
159 struct omapfb_platform_data
*conf
;
161 conf
= fbdev
->dev
->platform_data
;
162 fbdev
->mem_desc
= conf
->mem_desc
;
165 if (!fbdev
->mem_desc
.region_cnt
) {
166 struct lcd_panel
*panel
= fbdev
->panel
;
168 int bpp
= panel
->bpp
;
170 /* 12 bpp is packed in 16 bits */
173 def_size
= def_vxres
* def_vyres
* bpp
/ 8;
174 fbdev
->mem_desc
.region_cnt
= 1;
175 fbdev
->mem_desc
.region
[0].size
= PAGE_ALIGN(def_size
);
177 r
= fbdev
->ctrl
->init(fbdev
, 0, &fbdev
->mem_desc
);
179 dev_err(fbdev
->dev
, "controller initialization failed (%d)\n",
185 for (i
= 0; i
< fbdev
->mem_desc
.region_cnt
; i
++) {
186 dev_dbg(fbdev
->dev
, "region%d phys %08x virt %p size=%lu\n",
188 fbdev
->mem_desc
.region
[i
].paddr
,
189 fbdev
->mem_desc
.region
[i
].vaddr
,
190 fbdev
->mem_desc
.region
[i
].size
);
196 static void ctrl_cleanup(struct omapfb_device
*fbdev
)
198 fbdev
->ctrl
->cleanup();
201 /* Must be called with fbdev->rqueue_mutex held. */
202 static int ctrl_change_mode(struct fb_info
*fbi
)
205 unsigned long offset
;
206 struct omapfb_plane_struct
*plane
= fbi
->par
;
207 struct omapfb_device
*fbdev
= plane
->fbdev
;
208 struct fb_var_screeninfo
*var
= &fbi
->var
;
210 offset
= var
->yoffset
* fbi
->fix
.line_length
+
211 var
->xoffset
* var
->bits_per_pixel
/ 8;
213 if (fbdev
->ctrl
->sync
)
215 r
= fbdev
->ctrl
->setup_plane(plane
->idx
, plane
->info
.channel_out
,
216 offset
, var
->xres_virtual
,
217 plane
->info
.pos_x
, plane
->info
.pos_y
,
218 var
->xres
, var
->yres
, plane
->color_mode
);
222 if (fbdev
->ctrl
->set_rotate
!= NULL
) {
223 r
= fbdev
->ctrl
->set_rotate(var
->rotate
);
228 if (fbdev
->ctrl
->set_scale
!= NULL
)
229 r
= fbdev
->ctrl
->set_scale(plane
->idx
,
230 var
->xres
, var
->yres
,
231 plane
->info
.out_width
,
232 plane
->info
.out_height
);
238 * ---------------------------------------------------------------------------
239 * fbdev framework callbacks and the ioctl interface
240 * ---------------------------------------------------------------------------
242 /* Called each time the omapfb device is opened */
243 static int omapfb_open(struct fb_info
*info
, int user
)
248 static void omapfb_sync(struct fb_info
*info
);
250 /* Called when the omapfb device is closed. We make sure that any pending
251 * gfx DMA operations are ended, before we return. */
252 static int omapfb_release(struct fb_info
*info
, int user
)
258 /* Store a single color palette entry into a pseudo palette or the hardware
259 * palette if one is available. For now we support only 16bpp and thus store
260 * the entry only to the pseudo palette.
262 static int _setcolreg(struct fb_info
*info
, u_int regno
, u_int red
, u_int green
,
263 u_int blue
, u_int transp
, int update_hw_pal
)
265 struct omapfb_plane_struct
*plane
= info
->par
;
266 struct omapfb_device
*fbdev
= plane
->fbdev
;
267 struct fb_var_screeninfo
*var
= &info
->var
;
270 switch (plane
->color_mode
) {
271 case OMAPFB_COLOR_YUV422
:
272 case OMAPFB_COLOR_YUV420
:
273 case OMAPFB_COLOR_YUY422
:
276 case OMAPFB_COLOR_CLUT_8BPP
:
277 case OMAPFB_COLOR_CLUT_4BPP
:
278 case OMAPFB_COLOR_CLUT_2BPP
:
279 case OMAPFB_COLOR_CLUT_1BPP
:
280 if (fbdev
->ctrl
->setcolreg
)
281 r
= fbdev
->ctrl
->setcolreg(regno
, red
, green
, blue
,
282 transp
, update_hw_pal
);
284 case OMAPFB_COLOR_RGB565
:
285 case OMAPFB_COLOR_RGB444
:
296 pal
= ((red
>> (16 - var
->red
.length
)) <<
298 ((green
>> (16 - var
->green
.length
)) <<
300 (blue
>> (16 - var
->blue
.length
));
301 ((u32
*)(info
->pseudo_palette
))[regno
] = pal
;
310 static int omapfb_setcolreg(u_int regno
, u_int red
, u_int green
, u_int blue
,
311 u_int transp
, struct fb_info
*info
)
313 return _setcolreg(info
, regno
, red
, green
, blue
, transp
, 1);
316 static int omapfb_setcmap(struct fb_cmap
*cmap
, struct fb_info
*info
)
319 u16
*red
, *green
, *blue
, *transp
;
325 transp
= cmap
->transp
;
328 for (count
= 0; count
< cmap
->len
; count
++) {
331 r
= _setcolreg(info
, index
++, *red
++, *green
++, *blue
++, trans
,
332 count
== cmap
->len
- 1);
340 static int omapfb_update_full_screen(struct fb_info
*fbi
);
342 static int omapfb_blank(int blank
, struct fb_info
*fbi
)
344 struct omapfb_plane_struct
*plane
= fbi
->par
;
345 struct omapfb_device
*fbdev
= plane
->fbdev
;
349 omapfb_rqueue_lock(fbdev
);
351 case FB_BLANK_UNBLANK
:
352 if (fbdev
->state
== OMAPFB_SUSPENDED
) {
353 if (fbdev
->ctrl
->resume
)
354 fbdev
->ctrl
->resume();
355 fbdev
->panel
->enable(fbdev
->panel
);
356 fbdev
->state
= OMAPFB_ACTIVE
;
357 if (fbdev
->ctrl
->get_update_mode() ==
358 OMAPFB_MANUAL_UPDATE
)
362 case FB_BLANK_POWERDOWN
:
363 if (fbdev
->state
== OMAPFB_ACTIVE
) {
364 fbdev
->panel
->disable(fbdev
->panel
);
365 if (fbdev
->ctrl
->suspend
)
366 fbdev
->ctrl
->suspend();
367 fbdev
->state
= OMAPFB_SUSPENDED
;
373 omapfb_rqueue_unlock(fbdev
);
375 if (r
== 0 && do_update
)
376 r
= omapfb_update_full_screen(fbi
);
381 static void omapfb_sync(struct fb_info
*fbi
)
383 struct omapfb_plane_struct
*plane
= fbi
->par
;
384 struct omapfb_device
*fbdev
= plane
->fbdev
;
386 omapfb_rqueue_lock(fbdev
);
387 if (fbdev
->ctrl
->sync
)
389 omapfb_rqueue_unlock(fbdev
);
393 * Set fb_info.fix fields and also updates fbdev.
394 * When calling this fb_info.var must be set up already.
396 static void set_fb_fix(struct fb_info
*fbi
, int from_init
)
398 struct fb_fix_screeninfo
*fix
= &fbi
->fix
;
399 struct fb_var_screeninfo
*var
= &fbi
->var
;
400 struct omapfb_plane_struct
*plane
= fbi
->par
;
401 struct omapfb_mem_region
*rg
;
404 rg
= &plane
->fbdev
->mem_desc
.region
[plane
->idx
];
405 fbi
->screen_base
= rg
->vaddr
;
408 mutex_lock(&fbi
->mm_lock
);
409 fix
->smem_start
= rg
->paddr
;
410 fix
->smem_len
= rg
->size
;
411 mutex_unlock(&fbi
->mm_lock
);
413 fix
->smem_start
= rg
->paddr
;
414 fix
->smem_len
= rg
->size
;
417 fix
->type
= FB_TYPE_PACKED_PIXELS
;
418 bpp
= var
->bits_per_pixel
;
420 fix
->visual
= FB_VISUAL_PSEUDOCOLOR
;
421 else switch (var
->bits_per_pixel
) {
424 fix
->visual
= FB_VISUAL_TRUECOLOR
;
425 /* 12bpp is stored in 16 bits */
432 fix
->visual
= FB_VISUAL_PSEUDOCOLOR
;
435 fix
->accel
= FB_ACCEL_OMAP1610
;
436 fix
->line_length
= var
->xres_virtual
* bpp
/ 8;
439 static int set_color_mode(struct omapfb_plane_struct
*plane
,
440 struct fb_var_screeninfo
*var
)
442 switch (var
->nonstd
) {
445 case OMAPFB_COLOR_YUV422
:
446 var
->bits_per_pixel
= 16;
447 plane
->color_mode
= var
->nonstd
;
449 case OMAPFB_COLOR_YUV420
:
450 var
->bits_per_pixel
= 12;
451 plane
->color_mode
= var
->nonstd
;
453 case OMAPFB_COLOR_YUY422
:
454 var
->bits_per_pixel
= 16;
455 plane
->color_mode
= var
->nonstd
;
461 switch (var
->bits_per_pixel
) {
463 plane
->color_mode
= OMAPFB_COLOR_CLUT_1BPP
;
466 plane
->color_mode
= OMAPFB_COLOR_CLUT_2BPP
;
469 plane
->color_mode
= OMAPFB_COLOR_CLUT_4BPP
;
472 plane
->color_mode
= OMAPFB_COLOR_CLUT_8BPP
;
475 var
->bits_per_pixel
= 16;
476 plane
->color_mode
= OMAPFB_COLOR_RGB444
;
479 plane
->color_mode
= OMAPFB_COLOR_RGB565
;
487 * Check the values in var against our capabilities and in case of out of
488 * bound values try to adjust them.
490 static int set_fb_var(struct fb_info
*fbi
,
491 struct fb_var_screeninfo
*var
)
494 unsigned long max_frame_size
;
495 unsigned long line_size
;
496 int xres_min
, xres_max
;
497 int yres_min
, yres_max
;
498 struct omapfb_plane_struct
*plane
= fbi
->par
;
499 struct omapfb_device
*fbdev
= plane
->fbdev
;
500 struct lcd_panel
*panel
= fbdev
->panel
;
502 if (set_color_mode(plane
, var
) < 0)
505 bpp
= var
->bits_per_pixel
;
506 if (plane
->color_mode
== OMAPFB_COLOR_RGB444
)
509 switch (var
->rotate
) {
512 xres_min
= OMAPFB_PLANE_XRES_MIN
;
513 xres_max
= panel
->x_res
;
514 yres_min
= OMAPFB_PLANE_YRES_MIN
;
515 yres_max
= panel
->y_res
;
516 if (cpu_is_omap15xx()) {
517 var
->xres
= panel
->x_res
;
518 var
->yres
= panel
->y_res
;
523 xres_min
= OMAPFB_PLANE_YRES_MIN
;
524 xres_max
= panel
->y_res
;
525 yres_min
= OMAPFB_PLANE_XRES_MIN
;
526 yres_max
= panel
->x_res
;
527 if (cpu_is_omap15xx()) {
528 var
->xres
= panel
->y_res
;
529 var
->yres
= panel
->x_res
;
536 if (var
->xres
< xres_min
)
537 var
->xres
= xres_min
;
538 if (var
->yres
< yres_min
)
539 var
->yres
= yres_min
;
540 if (var
->xres
> xres_max
)
541 var
->xres
= xres_max
;
542 if (var
->yres
> yres_max
)
543 var
->yres
= yres_max
;
545 if (var
->xres_virtual
< var
->xres
)
546 var
->xres_virtual
= var
->xres
;
547 if (var
->yres_virtual
< var
->yres
)
548 var
->yres_virtual
= var
->yres
;
549 max_frame_size
= fbdev
->mem_desc
.region
[plane
->idx
].size
;
550 line_size
= var
->xres_virtual
* bpp
/ 8;
551 if (line_size
* var
->yres_virtual
> max_frame_size
) {
552 /* Try to keep yres_virtual first */
553 line_size
= max_frame_size
/ var
->yres_virtual
;
554 var
->xres_virtual
= line_size
* 8 / bpp
;
555 if (var
->xres_virtual
< var
->xres
) {
556 /* Still doesn't fit. Shrink yres_virtual too */
557 var
->xres_virtual
= var
->xres
;
558 line_size
= var
->xres
* bpp
/ 8;
559 var
->yres_virtual
= max_frame_size
/ line_size
;
561 /* Recheck this, as the virtual size changed. */
562 if (var
->xres_virtual
< var
->xres
)
563 var
->xres
= var
->xres_virtual
;
564 if (var
->yres_virtual
< var
->yres
)
565 var
->yres
= var
->yres_virtual
;
566 if (var
->xres
< xres_min
|| var
->yres
< yres_min
)
569 if (var
->xres
+ var
->xoffset
> var
->xres_virtual
)
570 var
->xoffset
= var
->xres_virtual
- var
->xres
;
571 if (var
->yres
+ var
->yoffset
> var
->yres_virtual
)
572 var
->yoffset
= var
->yres_virtual
- var
->yres
;
574 if (plane
->color_mode
== OMAPFB_COLOR_RGB444
) {
575 var
->red
.offset
= 8; var
->red
.length
= 4;
576 var
->red
.msb_right
= 0;
577 var
->green
.offset
= 4; var
->green
.length
= 4;
578 var
->green
.msb_right
= 0;
579 var
->blue
.offset
= 0; var
->blue
.length
= 4;
580 var
->blue
.msb_right
= 0;
582 var
->red
.offset
= 11; var
->red
.length
= 5;
583 var
->red
.msb_right
= 0;
584 var
->green
.offset
= 5; var
->green
.length
= 6;
585 var
->green
.msb_right
= 0;
586 var
->blue
.offset
= 0; var
->blue
.length
= 5;
587 var
->blue
.msb_right
= 0;
594 /* pixclock in ps, the rest in pixclock */
595 var
->pixclock
= 10000000 / (panel
->pixel_clock
/ 100);
596 var
->left_margin
= panel
->hfp
;
597 var
->right_margin
= panel
->hbp
;
598 var
->upper_margin
= panel
->vfp
;
599 var
->lower_margin
= panel
->vbp
;
600 var
->hsync_len
= panel
->hsw
;
601 var
->vsync_len
= panel
->vsw
;
603 /* TODO: get these from panel->config */
604 var
->vmode
= FB_VMODE_NONINTERLACED
;
611 /* Set rotation (0, 90, 180, 270 degree), and switch to the new mode. */
612 static void omapfb_rotate(struct fb_info
*fbi
, int rotate
)
614 struct omapfb_plane_struct
*plane
= fbi
->par
;
615 struct omapfb_device
*fbdev
= plane
->fbdev
;
617 omapfb_rqueue_lock(fbdev
);
618 if (rotate
!= fbi
->var
.rotate
) {
619 struct fb_var_screeninfo
*new_var
= &fbdev
->new_var
;
621 memcpy(new_var
, &fbi
->var
, sizeof(*new_var
));
622 new_var
->rotate
= rotate
;
623 if (set_fb_var(fbi
, new_var
) == 0 &&
624 memcmp(new_var
, &fbi
->var
, sizeof(*new_var
))) {
625 memcpy(&fbi
->var
, new_var
, sizeof(*new_var
));
626 ctrl_change_mode(fbi
);
629 omapfb_rqueue_unlock(fbdev
);
633 * Set new x,y offsets in the virtual display for the visible area and switch
636 static int omapfb_pan_display(struct fb_var_screeninfo
*var
,
639 struct omapfb_plane_struct
*plane
= fbi
->par
;
640 struct omapfb_device
*fbdev
= plane
->fbdev
;
643 omapfb_rqueue_lock(fbdev
);
644 if (var
->xoffset
!= fbi
->var
.xoffset
||
645 var
->yoffset
!= fbi
->var
.yoffset
) {
646 struct fb_var_screeninfo
*new_var
= &fbdev
->new_var
;
648 memcpy(new_var
, &fbi
->var
, sizeof(*new_var
));
649 new_var
->xoffset
= var
->xoffset
;
650 new_var
->yoffset
= var
->yoffset
;
651 if (set_fb_var(fbi
, new_var
))
654 memcpy(&fbi
->var
, new_var
, sizeof(*new_var
));
655 ctrl_change_mode(fbi
);
658 omapfb_rqueue_unlock(fbdev
);
663 /* Set mirror to vertical axis and switch to the new mode. */
664 static int omapfb_mirror(struct fb_info
*fbi
, int mirror
)
666 struct omapfb_plane_struct
*plane
= fbi
->par
;
667 struct omapfb_device
*fbdev
= plane
->fbdev
;
670 omapfb_rqueue_lock(fbdev
);
671 mirror
= mirror
? 1 : 0;
672 if (cpu_is_omap15xx())
674 else if (mirror
!= plane
->info
.mirror
) {
675 plane
->info
.mirror
= mirror
;
676 r
= ctrl_change_mode(fbi
);
678 omapfb_rqueue_unlock(fbdev
);
684 * Check values in var, try to adjust them in case of out of bound values if
685 * possible, or return error.
687 static int omapfb_check_var(struct fb_var_screeninfo
*var
, struct fb_info
*fbi
)
689 struct omapfb_plane_struct
*plane
= fbi
->par
;
690 struct omapfb_device
*fbdev
= plane
->fbdev
;
693 omapfb_rqueue_lock(fbdev
);
694 if (fbdev
->ctrl
->sync
!= NULL
)
696 r
= set_fb_var(fbi
, var
);
697 omapfb_rqueue_unlock(fbdev
);
703 * Switch to a new mode. The parameters for it has been check already by
706 static int omapfb_set_par(struct fb_info
*fbi
)
708 struct omapfb_plane_struct
*plane
= fbi
->par
;
709 struct omapfb_device
*fbdev
= plane
->fbdev
;
712 omapfb_rqueue_lock(fbdev
);
714 r
= ctrl_change_mode(fbi
);
715 omapfb_rqueue_unlock(fbdev
);
720 int omapfb_update_window_async(struct fb_info
*fbi
,
721 struct omapfb_update_window
*win
,
722 void (*callback
)(void *),
726 struct omapfb_plane_struct
*plane
= fbi
->par
;
727 struct omapfb_device
*fbdev
= plane
->fbdev
;
728 struct fb_var_screeninfo
*var
= &fbi
->var
;
730 switch (var
->rotate
) {
733 xres
= fbdev
->panel
->x_res
;
734 yres
= fbdev
->panel
->y_res
;
738 xres
= fbdev
->panel
->y_res
;
739 yres
= fbdev
->panel
->x_res
;
745 if (win
->x
>= xres
|| win
->y
>= yres
||
746 win
->out_x
> xres
|| win
->out_y
> yres
)
749 if (!fbdev
->ctrl
->update_window
||
750 fbdev
->ctrl
->get_update_mode() != OMAPFB_MANUAL_UPDATE
)
753 if (win
->x
+ win
->width
> xres
)
754 win
->width
= xres
- win
->x
;
755 if (win
->y
+ win
->height
> yres
)
756 win
->height
= yres
- win
->y
;
757 if (win
->out_x
+ win
->out_width
> xres
)
758 win
->out_width
= xres
- win
->out_x
;
759 if (win
->out_y
+ win
->out_height
> yres
)
760 win
->out_height
= yres
- win
->out_y
;
761 if (!win
->width
|| !win
->height
|| !win
->out_width
|| !win
->out_height
)
764 return fbdev
->ctrl
->update_window(fbi
, win
, callback
, callback_data
);
766 EXPORT_SYMBOL(omapfb_update_window_async
);
768 static int omapfb_update_win(struct fb_info
*fbi
,
769 struct omapfb_update_window
*win
)
771 struct omapfb_plane_struct
*plane
= fbi
->par
;
774 omapfb_rqueue_lock(plane
->fbdev
);
775 ret
= omapfb_update_window_async(fbi
, win
, NULL
, NULL
);
776 omapfb_rqueue_unlock(plane
->fbdev
);
781 static int omapfb_update_full_screen(struct fb_info
*fbi
)
783 struct omapfb_plane_struct
*plane
= fbi
->par
;
784 struct omapfb_device
*fbdev
= plane
->fbdev
;
785 struct omapfb_update_window win
;
788 if (!fbdev
->ctrl
->update_window
||
789 fbdev
->ctrl
->get_update_mode() != OMAPFB_MANUAL_UPDATE
)
794 win
.width
= fbi
->var
.xres
;
795 win
.height
= fbi
->var
.yres
;
798 win
.out_width
= fbi
->var
.xres
;
799 win
.out_height
= fbi
->var
.yres
;
802 omapfb_rqueue_lock(fbdev
);
803 r
= fbdev
->ctrl
->update_window(fbi
, &win
, NULL
, NULL
);
804 omapfb_rqueue_unlock(fbdev
);
809 static int omapfb_setup_plane(struct fb_info
*fbi
, struct omapfb_plane_info
*pi
)
811 struct omapfb_plane_struct
*plane
= fbi
->par
;
812 struct omapfb_device
*fbdev
= plane
->fbdev
;
813 struct lcd_panel
*panel
= fbdev
->panel
;
814 struct omapfb_plane_info old_info
;
817 if (pi
->pos_x
+ pi
->out_width
> panel
->x_res
||
818 pi
->pos_y
+ pi
->out_height
> panel
->y_res
)
821 omapfb_rqueue_lock(fbdev
);
822 if (pi
->enabled
&& !fbdev
->mem_desc
.region
[plane
->idx
].size
) {
824 * This plane's memory was freed, can't enable it
825 * until it's reallocated.
830 old_info
= plane
->info
;
833 r
= ctrl_change_mode(fbi
);
835 plane
->info
= old_info
;
839 r
= fbdev
->ctrl
->enable_plane(plane
->idx
, pi
->enabled
);
841 plane
->info
= old_info
;
845 omapfb_rqueue_unlock(fbdev
);
849 static int omapfb_query_plane(struct fb_info
*fbi
, struct omapfb_plane_info
*pi
)
851 struct omapfb_plane_struct
*plane
= fbi
->par
;
857 static int omapfb_setup_mem(struct fb_info
*fbi
, struct omapfb_mem_info
*mi
)
859 struct omapfb_plane_struct
*plane
= fbi
->par
;
860 struct omapfb_device
*fbdev
= plane
->fbdev
;
861 struct omapfb_mem_region
*rg
= &fbdev
->mem_desc
.region
[plane
->idx
];
865 if (fbdev
->ctrl
->setup_mem
== NULL
)
867 if (mi
->type
> OMAPFB_MEMTYPE_MAX
)
870 size
= PAGE_ALIGN(mi
->size
);
871 omapfb_rqueue_lock(fbdev
);
872 if (plane
->info
.enabled
) {
876 if (rg
->size
!= size
|| rg
->type
!= mi
->type
) {
877 struct fb_var_screeninfo
*new_var
= &fbdev
->new_var
;
878 unsigned long old_size
= rg
->size
;
879 u8 old_type
= rg
->type
;
885 * size == 0 is a special case, for which we
886 * don't check / adjust the screen parameters.
887 * This isn't a problem since the plane can't
888 * be reenabled unless its size is > 0.
890 if (old_size
!= size
&& size
) {
892 memcpy(new_var
, &fbi
->var
, sizeof(*new_var
));
893 r
= set_fb_var(fbi
, new_var
);
899 if (fbdev
->ctrl
->sync
)
901 r
= fbdev
->ctrl
->setup_mem(plane
->idx
, size
, mi
->type
, &paddr
);
903 /* Revert changes. */
910 if (old_size
!= size
) {
912 memcpy(&fbi
->var
, new_var
, sizeof(fbi
->var
));
916 * Set these explicitly to indicate that the
917 * plane memory is dealloce'd, the other
918 * screen parameters in var / fix are invalid.
920 mutex_lock(&fbi
->mm_lock
);
921 fbi
->fix
.smem_start
= 0;
922 fbi
->fix
.smem_len
= 0;
923 mutex_unlock(&fbi
->mm_lock
);
928 omapfb_rqueue_unlock(fbdev
);
933 static int omapfb_query_mem(struct fb_info
*fbi
, struct omapfb_mem_info
*mi
)
935 struct omapfb_plane_struct
*plane
= fbi
->par
;
936 struct omapfb_device
*fbdev
= plane
->fbdev
;
937 struct omapfb_mem_region
*rg
;
939 rg
= &fbdev
->mem_desc
.region
[plane
->idx
];
940 memset(mi
, 0, sizeof(*mi
));
947 static int omapfb_set_color_key(struct omapfb_device
*fbdev
,
948 struct omapfb_color_key
*ck
)
952 if (!fbdev
->ctrl
->set_color_key
)
955 omapfb_rqueue_lock(fbdev
);
956 r
= fbdev
->ctrl
->set_color_key(ck
);
957 omapfb_rqueue_unlock(fbdev
);
962 static int omapfb_get_color_key(struct omapfb_device
*fbdev
,
963 struct omapfb_color_key
*ck
)
967 if (!fbdev
->ctrl
->get_color_key
)
970 omapfb_rqueue_lock(fbdev
);
971 r
= fbdev
->ctrl
->get_color_key(ck
);
972 omapfb_rqueue_unlock(fbdev
);
977 static struct blocking_notifier_head omapfb_client_list
[OMAPFB_PLANE_NUM
];
978 static int notifier_inited
;
980 static void omapfb_init_notifier(void)
984 for (i
= 0; i
< OMAPFB_PLANE_NUM
; i
++)
985 BLOCKING_INIT_NOTIFIER_HEAD(&omapfb_client_list
[i
]);
988 int omapfb_register_client(struct omapfb_notifier_block
*omapfb_nb
,
989 omapfb_notifier_callback_t callback
,
994 if ((unsigned)omapfb_nb
->plane_idx
> OMAPFB_PLANE_NUM
)
997 if (!notifier_inited
) {
998 omapfb_init_notifier();
1002 omapfb_nb
->nb
.notifier_call
= (int (*)(struct notifier_block
*,
1003 unsigned long, void *))callback
;
1004 omapfb_nb
->data
= callback_data
;
1005 r
= blocking_notifier_chain_register(
1006 &omapfb_client_list
[omapfb_nb
->plane_idx
],
1010 if (omapfb_dev
!= NULL
&&
1011 omapfb_dev
->ctrl
&& omapfb_dev
->ctrl
->bind_client
) {
1012 omapfb_dev
->ctrl
->bind_client(omapfb_nb
);
1017 EXPORT_SYMBOL(omapfb_register_client
);
1019 int omapfb_unregister_client(struct omapfb_notifier_block
*omapfb_nb
)
1021 return blocking_notifier_chain_unregister(
1022 &omapfb_client_list
[omapfb_nb
->plane_idx
], &omapfb_nb
->nb
);
1024 EXPORT_SYMBOL(omapfb_unregister_client
);
1026 void omapfb_notify_clients(struct omapfb_device
*fbdev
, unsigned long event
)
1030 if (!notifier_inited
)
1031 /* no client registered yet */
1034 for (i
= 0; i
< OMAPFB_PLANE_NUM
; i
++)
1035 blocking_notifier_call_chain(&omapfb_client_list
[i
], event
,
1038 EXPORT_SYMBOL(omapfb_notify_clients
);
1040 static int omapfb_set_update_mode(struct omapfb_device
*fbdev
,
1041 enum omapfb_update_mode mode
)
1045 omapfb_rqueue_lock(fbdev
);
1046 r
= fbdev
->ctrl
->set_update_mode(mode
);
1047 omapfb_rqueue_unlock(fbdev
);
1052 static enum omapfb_update_mode
omapfb_get_update_mode(struct omapfb_device
*fbdev
)
1056 omapfb_rqueue_lock(fbdev
);
1057 r
= fbdev
->ctrl
->get_update_mode();
1058 omapfb_rqueue_unlock(fbdev
);
1063 static void omapfb_get_caps(struct omapfb_device
*fbdev
, int plane
,
1064 struct omapfb_caps
*caps
)
1066 memset(caps
, 0, sizeof(*caps
));
1067 fbdev
->ctrl
->get_caps(plane
, caps
);
1068 caps
->ctrl
|= fbdev
->panel
->get_caps(fbdev
->panel
);
1071 /* For lcd testing */
1072 void omapfb_write_first_pixel(struct omapfb_device
*fbdev
, u16 pixval
)
1074 omapfb_rqueue_lock(fbdev
);
1075 *(u16
*)fbdev
->mem_desc
.region
[0].vaddr
= pixval
;
1076 if (fbdev
->ctrl
->get_update_mode() == OMAPFB_MANUAL_UPDATE
) {
1077 struct omapfb_update_window win
;
1079 memset(&win
, 0, sizeof(win
));
1084 fbdev
->ctrl
->update_window(fbdev
->fb_info
[0], &win
, NULL
, NULL
);
1086 omapfb_rqueue_unlock(fbdev
);
1088 EXPORT_SYMBOL(omapfb_write_first_pixel
);
1091 * Ioctl interface. Part of the kernel mode frame buffer API is duplicated
1092 * here to be accessible by user mode code.
1094 static int omapfb_ioctl(struct fb_info
*fbi
, unsigned int cmd
,
1097 struct omapfb_plane_struct
*plane
= fbi
->par
;
1098 struct omapfb_device
*fbdev
= plane
->fbdev
;
1099 struct fb_ops
*ops
= fbi
->fbops
;
1101 struct omapfb_update_window update_window
;
1102 struct omapfb_plane_info plane_info
;
1103 struct omapfb_mem_info mem_info
;
1104 struct omapfb_color_key color_key
;
1105 enum omapfb_update_mode update_mode
;
1106 struct omapfb_caps caps
;
1107 unsigned int mirror
;
1116 if (get_user(p
.mirror
, (int __user
*)arg
))
1119 omapfb_mirror(fbi
, p
.mirror
);
1121 case OMAPFB_SYNC_GFX
:
1126 case OMAPFB_SET_UPDATE_MODE
:
1127 if (get_user(p
.update_mode
, (int __user
*)arg
))
1130 r
= omapfb_set_update_mode(fbdev
, p
.update_mode
);
1132 case OMAPFB_GET_UPDATE_MODE
:
1133 p
.update_mode
= omapfb_get_update_mode(fbdev
);
1134 if (put_user(p
.update_mode
,
1135 (enum omapfb_update_mode __user
*)arg
))
1138 case OMAPFB_UPDATE_WINDOW_OLD
:
1139 if (copy_from_user(&p
.update_window
, (void __user
*)arg
,
1140 sizeof(struct omapfb_update_window_old
)))
1143 struct omapfb_update_window
*u
= &p
.update_window
;
1146 u
->out_width
= u
->width
;
1147 u
->out_height
= u
->height
;
1148 memset(u
->reserved
, 0, sizeof(u
->reserved
));
1149 r
= omapfb_update_win(fbi
, u
);
1152 case OMAPFB_UPDATE_WINDOW
:
1153 if (copy_from_user(&p
.update_window
, (void __user
*)arg
,
1154 sizeof(p
.update_window
)))
1157 r
= omapfb_update_win(fbi
, &p
.update_window
);
1159 case OMAPFB_SETUP_PLANE
:
1160 if (copy_from_user(&p
.plane_info
, (void __user
*)arg
,
1161 sizeof(p
.plane_info
)))
1164 r
= omapfb_setup_plane(fbi
, &p
.plane_info
);
1166 case OMAPFB_QUERY_PLANE
:
1167 if ((r
= omapfb_query_plane(fbi
, &p
.plane_info
)) < 0)
1169 if (copy_to_user((void __user
*)arg
, &p
.plane_info
,
1170 sizeof(p
.plane_info
)))
1173 case OMAPFB_SETUP_MEM
:
1174 if (copy_from_user(&p
.mem_info
, (void __user
*)arg
,
1175 sizeof(p
.mem_info
)))
1178 r
= omapfb_setup_mem(fbi
, &p
.mem_info
);
1180 case OMAPFB_QUERY_MEM
:
1181 if ((r
= omapfb_query_mem(fbi
, &p
.mem_info
)) < 0)
1183 if (copy_to_user((void __user
*)arg
, &p
.mem_info
,
1184 sizeof(p
.mem_info
)))
1187 case OMAPFB_SET_COLOR_KEY
:
1188 if (copy_from_user(&p
.color_key
, (void __user
*)arg
,
1189 sizeof(p
.color_key
)))
1192 r
= omapfb_set_color_key(fbdev
, &p
.color_key
);
1194 case OMAPFB_GET_COLOR_KEY
:
1195 if ((r
= omapfb_get_color_key(fbdev
, &p
.color_key
)) < 0)
1197 if (copy_to_user((void __user
*)arg
, &p
.color_key
,
1198 sizeof(p
.color_key
)))
1201 case OMAPFB_GET_CAPS
:
1202 omapfb_get_caps(fbdev
, plane
->idx
, &p
.caps
);
1203 if (copy_to_user((void __user
*)arg
, &p
.caps
, sizeof(p
.caps
)))
1206 case OMAPFB_LCD_TEST
:
1210 if (get_user(test_num
, (int __user
*)arg
)) {
1214 if (!fbdev
->panel
->run_test
) {
1218 r
= fbdev
->panel
->run_test(fbdev
->panel
, test_num
);
1221 case OMAPFB_CTRL_TEST
:
1225 if (get_user(test_num
, (int __user
*)arg
)) {
1229 if (!fbdev
->ctrl
->run_test
) {
1233 r
= fbdev
->ctrl
->run_test(test_num
);
1243 static int omapfb_mmap(struct fb_info
*info
, struct vm_area_struct
*vma
)
1245 struct omapfb_plane_struct
*plane
= info
->par
;
1246 struct omapfb_device
*fbdev
= plane
->fbdev
;
1249 omapfb_rqueue_lock(fbdev
);
1250 r
= fbdev
->ctrl
->mmap(info
, vma
);
1251 omapfb_rqueue_unlock(fbdev
);
1257 * Callback table for the frame buffer framework. Some of these pointers
1258 * will be changed according to the current setting of fb_info->accel_flags.
1260 static struct fb_ops omapfb_ops
= {
1261 .owner
= THIS_MODULE
,
1262 .fb_open
= omapfb_open
,
1263 .fb_release
= omapfb_release
,
1264 .fb_setcolreg
= omapfb_setcolreg
,
1265 .fb_setcmap
= omapfb_setcmap
,
1266 .fb_fillrect
= cfb_fillrect
,
1267 .fb_copyarea
= cfb_copyarea
,
1268 .fb_imageblit
= cfb_imageblit
,
1269 .fb_blank
= omapfb_blank
,
1270 .fb_ioctl
= omapfb_ioctl
,
1271 .fb_check_var
= omapfb_check_var
,
1272 .fb_set_par
= omapfb_set_par
,
1273 .fb_rotate
= omapfb_rotate
,
1274 .fb_pan_display
= omapfb_pan_display
,
1278 * ---------------------------------------------------------------------------
1280 * ---------------------------------------------------------------------------
1282 /* omapfbX sysfs entries */
1283 static ssize_t
omapfb_show_caps_num(struct device
*dev
,
1284 struct device_attribute
*attr
, char *buf
)
1286 struct omapfb_device
*fbdev
= dev_get_drvdata(dev
);
1289 struct omapfb_caps caps
;
1293 while (size
< PAGE_SIZE
&& plane
< OMAPFB_PLANE_NUM
) {
1294 omapfb_get_caps(fbdev
, plane
, &caps
);
1295 size
+= snprintf(&buf
[size
], PAGE_SIZE
- size
,
1296 "plane#%d %#010x %#010x %#010x\n",
1297 plane
, caps
.ctrl
, caps
.plane_color
, caps
.wnd_color
);
1303 static ssize_t
omapfb_show_caps_text(struct device
*dev
,
1304 struct device_attribute
*attr
, char *buf
)
1306 struct omapfb_device
*fbdev
= dev_get_drvdata(dev
);
1308 struct omapfb_caps caps
;
1314 while (size
< PAGE_SIZE
&& plane
< OMAPFB_PLANE_NUM
) {
1315 omapfb_get_caps(fbdev
, plane
, &caps
);
1316 size
+= snprintf(&buf
[size
], PAGE_SIZE
- size
,
1317 "plane#%d:\n", plane
);
1318 for (i
= 0; i
< ARRAY_SIZE(ctrl_caps
) &&
1319 size
< PAGE_SIZE
; i
++) {
1320 if (ctrl_caps
[i
].flag
& caps
.ctrl
)
1321 size
+= snprintf(&buf
[size
], PAGE_SIZE
- size
,
1322 " %s\n", ctrl_caps
[i
].name
);
1324 size
+= snprintf(&buf
[size
], PAGE_SIZE
- size
,
1325 " plane colors:\n");
1326 for (i
= 0; i
< ARRAY_SIZE(color_caps
) &&
1327 size
< PAGE_SIZE
; i
++) {
1328 if (color_caps
[i
].flag
& caps
.plane_color
)
1329 size
+= snprintf(&buf
[size
], PAGE_SIZE
- size
,
1330 " %s\n", color_caps
[i
].name
);
1332 size
+= snprintf(&buf
[size
], PAGE_SIZE
- size
,
1333 " window colors:\n");
1334 for (i
= 0; i
< ARRAY_SIZE(color_caps
) &&
1335 size
< PAGE_SIZE
; i
++) {
1336 if (color_caps
[i
].flag
& caps
.wnd_color
)
1337 size
+= snprintf(&buf
[size
], PAGE_SIZE
- size
,
1338 " %s\n", color_caps
[i
].name
);
1346 static DEVICE_ATTR(caps_num
, 0444, omapfb_show_caps_num
, NULL
);
1347 static DEVICE_ATTR(caps_text
, 0444, omapfb_show_caps_text
, NULL
);
1349 /* panel sysfs entries */
1350 static ssize_t
omapfb_show_panel_name(struct device
*dev
,
1351 struct device_attribute
*attr
, char *buf
)
1353 struct omapfb_device
*fbdev
= dev_get_drvdata(dev
);
1355 return snprintf(buf
, PAGE_SIZE
, "%s\n", fbdev
->panel
->name
);
1358 static ssize_t
omapfb_show_bklight_level(struct device
*dev
,
1359 struct device_attribute
*attr
,
1362 struct omapfb_device
*fbdev
= dev_get_drvdata(dev
);
1365 if (fbdev
->panel
->get_bklight_level
) {
1366 r
= snprintf(buf
, PAGE_SIZE
, "%d\n",
1367 fbdev
->panel
->get_bklight_level(fbdev
->panel
));
1373 static ssize_t
omapfb_store_bklight_level(struct device
*dev
,
1374 struct device_attribute
*attr
,
1375 const char *buf
, size_t size
)
1377 struct omapfb_device
*fbdev
= dev_get_drvdata(dev
);
1380 if (fbdev
->panel
->set_bklight_level
) {
1383 if (sscanf(buf
, "%10d", &level
) == 1) {
1384 r
= fbdev
->panel
->set_bklight_level(fbdev
->panel
,
1390 return r
? r
: size
;
1393 static ssize_t
omapfb_show_bklight_max(struct device
*dev
,
1394 struct device_attribute
*attr
, char *buf
)
1396 struct omapfb_device
*fbdev
= dev_get_drvdata(dev
);
1399 if (fbdev
->panel
->get_bklight_level
) {
1400 r
= snprintf(buf
, PAGE_SIZE
, "%d\n",
1401 fbdev
->panel
->get_bklight_max(fbdev
->panel
));
1407 static struct device_attribute dev_attr_panel_name
=
1408 __ATTR(name
, 0444, omapfb_show_panel_name
, NULL
);
1409 static DEVICE_ATTR(backlight_level
, 0664,
1410 omapfb_show_bklight_level
, omapfb_store_bklight_level
);
1411 static DEVICE_ATTR(backlight_max
, 0444, omapfb_show_bklight_max
, NULL
);
1413 static struct attribute
*panel_attrs
[] = {
1414 &dev_attr_panel_name
.attr
,
1415 &dev_attr_backlight_level
.attr
,
1416 &dev_attr_backlight_max
.attr
,
1420 static struct attribute_group panel_attr_grp
= {
1422 .attrs
= panel_attrs
,
1425 /* ctrl sysfs entries */
1426 static ssize_t
omapfb_show_ctrl_name(struct device
*dev
,
1427 struct device_attribute
*attr
, char *buf
)
1429 struct omapfb_device
*fbdev
= dev_get_drvdata(dev
);
1431 return snprintf(buf
, PAGE_SIZE
, "%s\n", fbdev
->ctrl
->name
);
1434 static struct device_attribute dev_attr_ctrl_name
=
1435 __ATTR(name
, 0444, omapfb_show_ctrl_name
, NULL
);
1437 static struct attribute
*ctrl_attrs
[] = {
1438 &dev_attr_ctrl_name
.attr
,
1442 static struct attribute_group ctrl_attr_grp
= {
1444 .attrs
= ctrl_attrs
,
1447 static int omapfb_register_sysfs(struct omapfb_device
*fbdev
)
1451 if ((r
= device_create_file(fbdev
->dev
, &dev_attr_caps_num
)))
1454 if ((r
= device_create_file(fbdev
->dev
, &dev_attr_caps_text
)))
1457 if ((r
= sysfs_create_group(&fbdev
->dev
->kobj
, &panel_attr_grp
)))
1460 if ((r
= sysfs_create_group(&fbdev
->dev
->kobj
, &ctrl_attr_grp
)))
1465 sysfs_remove_group(&fbdev
->dev
->kobj
, &panel_attr_grp
);
1467 device_remove_file(fbdev
->dev
, &dev_attr_caps_text
);
1469 device_remove_file(fbdev
->dev
, &dev_attr_caps_num
);
1471 dev_err(fbdev
->dev
, "unable to register sysfs interface\n");
1475 static void omapfb_unregister_sysfs(struct omapfb_device
*fbdev
)
1477 sysfs_remove_group(&fbdev
->dev
->kobj
, &ctrl_attr_grp
);
1478 sysfs_remove_group(&fbdev
->dev
->kobj
, &panel_attr_grp
);
1479 device_remove_file(fbdev
->dev
, &dev_attr_caps_num
);
1480 device_remove_file(fbdev
->dev
, &dev_attr_caps_text
);
1484 * ---------------------------------------------------------------------------
1486 * ---------------------------------------------------------------------------
1488 /* Initialize system fb_info object and set the default video mode.
1489 * The frame buffer memory already allocated by lcddma_init
1491 static int fbinfo_init(struct omapfb_device
*fbdev
, struct fb_info
*info
)
1493 struct fb_var_screeninfo
*var
= &info
->var
;
1494 struct fb_fix_screeninfo
*fix
= &info
->fix
;
1497 info
->fbops
= &omapfb_ops
;
1498 info
->flags
= FBINFO_FLAG_DEFAULT
;
1500 strncpy(fix
->id
, MODULE_NAME
, sizeof(fix
->id
));
1502 info
->pseudo_palette
= fbdev
->pseudo_palette
;
1504 var
->accel_flags
= def_accel
? FB_ACCELF_TEXT
: 0;
1505 var
->xres
= def_vxres
;
1506 var
->yres
= def_vyres
;
1507 var
->xres_virtual
= def_vxres
;
1508 var
->yres_virtual
= def_vyres
;
1509 var
->rotate
= def_rotate
;
1510 var
->bits_per_pixel
= fbdev
->panel
->bpp
;
1512 set_fb_var(info
, var
);
1513 set_fb_fix(info
, 1);
1515 r
= fb_alloc_cmap(&info
->cmap
, 16, 0);
1517 dev_err(fbdev
->dev
, "unable to allocate color map memory\n");
1522 /* Release the fb_info object */
1523 static void fbinfo_cleanup(struct omapfb_device
*fbdev
, struct fb_info
*fbi
)
1525 fb_dealloc_cmap(&fbi
->cmap
);
1528 static void planes_cleanup(struct omapfb_device
*fbdev
)
1532 for (i
= 0; i
< fbdev
->mem_desc
.region_cnt
; i
++) {
1533 if (fbdev
->fb_info
[i
] == NULL
)
1535 fbinfo_cleanup(fbdev
, fbdev
->fb_info
[i
]);
1536 framebuffer_release(fbdev
->fb_info
[i
]);
1540 static int planes_init(struct omapfb_device
*fbdev
)
1542 struct fb_info
*fbi
;
1546 for (i
= 0; i
< fbdev
->mem_desc
.region_cnt
; i
++) {
1547 struct omapfb_plane_struct
*plane
;
1548 fbi
= framebuffer_alloc(sizeof(struct omapfb_plane_struct
),
1552 "unable to allocate memory for plane info\n");
1553 planes_cleanup(fbdev
);
1558 plane
->fbdev
= fbdev
;
1559 plane
->info
.mirror
= def_mirror
;
1560 fbdev
->fb_info
[i
] = fbi
;
1562 if ((r
= fbinfo_init(fbdev
, fbi
)) < 0) {
1563 framebuffer_release(fbi
);
1564 planes_cleanup(fbdev
);
1567 plane
->info
.out_width
= fbi
->var
.xres
;
1568 plane
->info
.out_height
= fbi
->var
.yres
;
1574 * Free driver resources. Can be called to rollback an aborted initialization
1577 static void omapfb_free_resources(struct omapfb_device
*fbdev
, int state
)
1583 for (i
= 0; i
< fbdev
->mem_desc
.region_cnt
; i
++)
1584 unregister_framebuffer(fbdev
->fb_info
[i
]);
1586 omapfb_unregister_sysfs(fbdev
);
1588 fbdev
->panel
->disable(fbdev
->panel
);
1590 omapfb_set_update_mode(fbdev
, OMAPFB_UPDATE_DISABLED
);
1592 planes_cleanup(fbdev
);
1594 ctrl_cleanup(fbdev
);
1596 fbdev
->panel
->cleanup(fbdev
->panel
);
1598 dev_set_drvdata(fbdev
->dev
, NULL
);
1601 /* nothing to free */
1608 static int omapfb_find_ctrl(struct omapfb_device
*fbdev
)
1610 struct omapfb_platform_data
*conf
;
1614 conf
= fbdev
->dev
->platform_data
;
1618 strncpy(name
, conf
->lcd
.ctrl_name
, sizeof(name
) - 1);
1619 name
[sizeof(name
) - 1] = '\0';
1621 if (strcmp(name
, "internal") == 0) {
1622 fbdev
->ctrl
= fbdev
->int_ctrl
;
1626 for (i
= 0; i
< ARRAY_SIZE(ctrls
); i
++) {
1627 dev_dbg(fbdev
->dev
, "ctrl %s\n", ctrls
[i
]->name
);
1628 if (strcmp(ctrls
[i
]->name
, name
) == 0) {
1629 fbdev
->ctrl
= ctrls
[i
];
1634 if (fbdev
->ctrl
== NULL
) {
1635 dev_dbg(fbdev
->dev
, "ctrl %s not supported\n", name
);
1642 static void check_required_callbacks(struct omapfb_device
*fbdev
)
1644 #define _C(x) (fbdev->ctrl->x != NULL)
1645 #define _P(x) (fbdev->panel->x != NULL)
1646 BUG_ON(fbdev
->ctrl
== NULL
|| fbdev
->panel
== NULL
);
1647 BUG_ON(!(_C(init
) && _C(cleanup
) && _C(get_caps
) &&
1648 _C(set_update_mode
) && _C(setup_plane
) && _C(enable_plane
) &&
1649 _P(init
) && _P(cleanup
) && _P(enable
) && _P(disable
) &&
1656 * Called by LDM binding to probe and attach a new device.
1657 * Initialization sequence:
1658 * 1. allocate system omapfb_device structure
1659 * 2. select controller type according to platform configuration
1661 * 3. init LCD controller and LCD DMA
1662 * 4. init system fb_info structure for all planes
1663 * 5. setup video mode for first plane and enable it
1664 * 6. enable LCD panel
1665 * 7. register sysfs attributes
1666 * OMAPFB_ACTIVE: register system fb_info structure for all planes
1668 static int omapfb_do_probe(struct platform_device
*pdev
,
1669 struct lcd_panel
*panel
)
1671 struct omapfb_device
*fbdev
= NULL
;
1673 unsigned long phz
, hhz
, vhz
;
1680 if (pdev
->num_resources
!= 0) {
1681 dev_err(&pdev
->dev
, "probed for an unknown device\n");
1686 if (pdev
->dev
.platform_data
== NULL
) {
1687 dev_err(&pdev
->dev
, "missing platform data\n");
1692 fbdev
= kzalloc(sizeof(struct omapfb_device
), GFP_KERNEL
);
1693 if (fbdev
== NULL
) {
1695 "unable to allocate memory for device info\n");
1701 fbdev
->dev
= &pdev
->dev
;
1702 fbdev
->panel
= panel
;
1703 platform_set_drvdata(pdev
, fbdev
);
1705 mutex_init(&fbdev
->rqueue_mutex
);
1707 #ifdef CONFIG_ARCH_OMAP1
1708 fbdev
->int_ctrl
= &omap1_int_ctrl
;
1709 #ifdef CONFIG_FB_OMAP_LCDC_EXTERNAL
1710 fbdev
->ext_if
= &omap1_ext_if
;
1713 fbdev
->int_ctrl
= &omap2_int_ctrl
;
1714 #ifdef CONFIG_FB_OMAP_LCDC_EXTERNAL
1715 fbdev
->ext_if
= &omap2_ext_if
;
1718 if (omapfb_find_ctrl(fbdev
) < 0) {
1720 "LCD controller not found, board not supported\n");
1725 r
= fbdev
->panel
->init(fbdev
->panel
, fbdev
);
1729 pr_info("omapfb: configured for panel %s\n", fbdev
->panel
->name
);
1731 def_vxres
= def_vxres
? def_vxres
: fbdev
->panel
->x_res
;
1732 def_vyres
= def_vyres
? def_vyres
: fbdev
->panel
->y_res
;
1736 r
= ctrl_init(fbdev
);
1739 if (fbdev
->ctrl
->mmap
!= NULL
)
1740 omapfb_ops
.fb_mmap
= omapfb_mmap
;
1743 check_required_callbacks(fbdev
);
1745 r
= planes_init(fbdev
);
1750 #ifdef CONFIG_FB_OMAP_DMA_TUNE
1751 /* Set DMA priority for EMIFF access to highest */
1752 if (cpu_class_is_omap1())
1753 omap_set_dma_priority(0, OMAP_DMA_PORT_EMIFF
, 15);
1756 r
= ctrl_change_mode(fbdev
->fb_info
[0]);
1758 dev_err(fbdev
->dev
, "mode setting failed\n");
1762 /* GFX plane is enabled by default */
1763 r
= fbdev
->ctrl
->enable_plane(OMAPFB_PLANE_GFX
, 1);
1767 omapfb_set_update_mode(fbdev
, manual_update
?
1768 OMAPFB_MANUAL_UPDATE
: OMAPFB_AUTO_UPDATE
);
1771 r
= fbdev
->panel
->enable(fbdev
->panel
);
1776 r
= omapfb_register_sysfs(fbdev
);
1782 for (i
= 0; i
< fbdev
->mem_desc
.region_cnt
; i
++) {
1783 r
= register_framebuffer(fbdev
->fb_info
[i
]);
1786 "registering framebuffer %d failed\n", i
);
1789 vram
+= fbdev
->mem_desc
.region
[i
].size
;
1792 fbdev
->state
= OMAPFB_ACTIVE
;
1794 panel
= fbdev
->panel
;
1795 phz
= panel
->pixel_clock
* 1000;
1796 hhz
= phz
* 10 / (panel
->hfp
+ panel
->x_res
+ panel
->hbp
+ panel
->hsw
);
1797 vhz
= hhz
/ (panel
->vfp
+ panel
->y_res
+ panel
->vbp
+ panel
->vsw
);
1801 pr_info("omapfb: Framebuffer initialized. Total vram %lu planes %d\n",
1802 vram
, fbdev
->mem_desc
.region_cnt
);
1803 pr_info("omapfb: Pixclock %lu kHz hfreq %lu.%lu kHz "
1804 "vfreq %lu.%lu Hz\n",
1805 phz
/ 1000, hhz
/ 10000, hhz
% 10, vhz
/ 10, vhz
% 10);
1810 omapfb_free_resources(fbdev
, init_state
);
1815 static int omapfb_probe(struct platform_device
*pdev
)
1817 BUG_ON(fbdev_pdev
!= NULL
);
1819 /* Delay actual initialization until the LCD is registered */
1821 if (fbdev_panel
!= NULL
)
1822 omapfb_do_probe(fbdev_pdev
, fbdev_panel
);
1826 void omapfb_register_panel(struct lcd_panel
*panel
)
1828 BUG_ON(fbdev_panel
!= NULL
);
1830 fbdev_panel
= panel
;
1831 if (fbdev_pdev
!= NULL
)
1832 omapfb_do_probe(fbdev_pdev
, fbdev_panel
);
1835 /* Called when the device is being detached from the driver */
1836 static int omapfb_remove(struct platform_device
*pdev
)
1838 struct omapfb_device
*fbdev
= platform_get_drvdata(pdev
);
1839 enum omapfb_state saved_state
= fbdev
->state
;
1841 /* FIXME: wait till completion of pending events */
1843 fbdev
->state
= OMAPFB_DISABLED
;
1844 omapfb_free_resources(fbdev
, saved_state
);
1850 static int omapfb_suspend(struct platform_device
*pdev
, pm_message_t mesg
)
1852 struct omapfb_device
*fbdev
= platform_get_drvdata(pdev
);
1855 omapfb_blank(FB_BLANK_POWERDOWN
, fbdev
->fb_info
[0]);
1860 static int omapfb_resume(struct platform_device
*pdev
)
1862 struct omapfb_device
*fbdev
= platform_get_drvdata(pdev
);
1865 omapfb_blank(FB_BLANK_UNBLANK
, fbdev
->fb_info
[0]);
1869 static struct platform_driver omapfb_driver
= {
1870 .probe
= omapfb_probe
,
1871 .remove
= omapfb_remove
,
1872 .suspend
= omapfb_suspend
,
1873 .resume
= omapfb_resume
,
1875 .name
= MODULE_NAME
,
1876 .owner
= THIS_MODULE
,
1882 /* Process kernel command line parameters */
1883 static int __init
omapfb_setup(char *options
)
1885 char *this_opt
= NULL
;
1888 pr_debug("omapfb: options %s\n", options
);
1890 if (!options
|| !*options
)
1893 while (!r
&& (this_opt
= strsep(&options
, ",")) != NULL
) {
1894 if (!strncmp(this_opt
, "accel", 5))
1896 else if (!strncmp(this_opt
, "vram:", 5)) {
1899 vram
= (simple_strtoul(this_opt
+ 5, &suffix
, 0));
1900 switch (suffix
[0]) {
1912 pr_debug("omapfb: invalid vram suffix %c\n",
1916 def_vram
[def_vram_cnt
++] = vram
;
1918 else if (!strncmp(this_opt
, "vxres:", 6))
1919 def_vxres
= simple_strtoul(this_opt
+ 6, NULL
, 0);
1920 else if (!strncmp(this_opt
, "vyres:", 6))
1921 def_vyres
= simple_strtoul(this_opt
+ 6, NULL
, 0);
1922 else if (!strncmp(this_opt
, "rotate:", 7))
1923 def_rotate
= (simple_strtoul(this_opt
+ 7, NULL
, 0));
1924 else if (!strncmp(this_opt
, "mirror:", 7))
1925 def_mirror
= (simple_strtoul(this_opt
+ 7, NULL
, 0));
1926 else if (!strncmp(this_opt
, "manual_update", 13))
1929 pr_debug("omapfb: invalid option\n");
1939 /* Register both the driver and the device */
1940 static int __init
omapfb_init(void)
1945 if (fb_get_options("omapfb", &option
))
1947 omapfb_setup(option
);
1949 /* Register the driver with LDM */
1950 if (platform_driver_register(&omapfb_driver
)) {
1951 pr_debug("failed to register omapfb driver\n");
1958 static void __exit
omapfb_cleanup(void)
1960 platform_driver_unregister(&omapfb_driver
);
1963 module_param_named(accel
, def_accel
, uint
, 0664);
1964 module_param_array_named(vram
, def_vram
, ulong
, &def_vram_cnt
, 0664);
1965 module_param_named(vxres
, def_vxres
, long, 0664);
1966 module_param_named(vyres
, def_vyres
, long, 0664);
1967 module_param_named(rotate
, def_rotate
, uint
, 0664);
1968 module_param_named(mirror
, def_mirror
, uint
, 0664);
1969 module_param_named(manual_update
, manual_update
, bool, 0664);
1971 module_init(omapfb_init
);
1972 module_exit(omapfb_cleanup
);
1974 MODULE_DESCRIPTION("TI OMAP framebuffer driver");
1975 MODULE_AUTHOR("Imre Deak <imre.deak@nokia.com>");
1976 MODULE_LICENSE("GPL");