2 * linux/drivers/video/fbmem.c
4 * Copyright (C) 1994 Martin Schaller
6 * 2001 - Documented with DocBook
7 * - Brad Douglas <brad@neruo.com>
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file COPYING in the main directory of this archive
14 #include <linux/module.h>
16 #include <linux/compat.h>
17 #include <linux/types.h>
18 #include <linux/errno.h>
19 #include <linux/smp_lock.h>
20 #include <linux/kernel.h>
21 #include <linux/major.h>
22 #include <linux/slab.h>
24 #include <linux/mman.h>
26 #include <linux/init.h>
27 #include <linux/linux_logo.h>
28 #include <linux/proc_fs.h>
29 #include <linux/seq_file.h>
30 #include <linux/console.h>
31 #include <linux/kmod.h>
32 #include <linux/err.h>
33 #include <linux/device.h>
34 #include <linux/efi.h>
41 * Frame buffer device initialization and setup routines
44 #define FBPIXMAPSIZE (1024 * 8)
46 struct fb_info
*registered_fb
[FB_MAX
] __read_mostly
;
47 int num_registered_fb __read_mostly
;
49 int lock_fb_info(struct fb_info
*info
)
51 mutex_lock(&info
->lock
);
53 mutex_unlock(&info
->lock
);
58 EXPORT_SYMBOL(lock_fb_info
);
64 int fb_get_color_depth(struct fb_var_screeninfo
*var
,
65 struct fb_fix_screeninfo
*fix
)
69 if (fix
->visual
== FB_VISUAL_MONO01
||
70 fix
->visual
== FB_VISUAL_MONO10
)
73 if (var
->green
.length
== var
->blue
.length
&&
74 var
->green
.length
== var
->red
.length
&&
75 var
->green
.offset
== var
->blue
.offset
&&
76 var
->green
.offset
== var
->red
.offset
)
77 depth
= var
->green
.length
;
79 depth
= var
->green
.length
+ var
->red
.length
+
85 EXPORT_SYMBOL(fb_get_color_depth
);
88 * Data padding functions.
90 void fb_pad_aligned_buffer(u8
*dst
, u32 d_pitch
, u8
*src
, u32 s_pitch
, u32 height
)
92 __fb_pad_aligned_buffer(dst
, d_pitch
, src
, s_pitch
, height
);
94 EXPORT_SYMBOL(fb_pad_aligned_buffer
);
96 void fb_pad_unaligned_buffer(u8
*dst
, u32 d_pitch
, u8
*src
, u32 idx
, u32 height
,
97 u32 shift_high
, u32 shift_low
, u32 mod
)
99 u8 mask
= (u8
) (0xfff << shift_high
), tmp
;
102 for (i
= height
; i
--; ) {
103 for (j
= 0; j
< idx
; j
++) {
106 tmp
|= *src
>> shift_low
;
108 tmp
= *src
<< shift_high
;
114 tmp
|= *src
>> shift_low
;
116 if (shift_high
< mod
) {
117 tmp
= *src
<< shift_high
;
124 EXPORT_SYMBOL(fb_pad_unaligned_buffer
);
127 * we need to lock this section since fb_cursor
128 * may use fb_imageblit()
130 char* fb_get_buffer_offset(struct fb_info
*info
, struct fb_pixmap
*buf
, u32 size
)
132 u32 align
= buf
->buf_align
- 1, offset
;
133 char *addr
= buf
->addr
;
135 /* If IO mapped, we need to sync before access, no sharing of
138 if (buf
->flags
& FB_PIXMAP_IO
) {
139 if (info
->fbops
->fb_sync
&& (buf
->flags
& FB_PIXMAP_SYNC
))
140 info
->fbops
->fb_sync(info
);
144 /* See if we fit in the remaining pixmap space */
145 offset
= buf
->offset
+ align
;
147 if (offset
+ size
> buf
->size
) {
148 /* We do not fit. In order to be able to re-use the buffer,
149 * we must ensure no asynchronous DMA'ing or whatever operation
150 * is in progress, we sync for that.
152 if (info
->fbops
->fb_sync
&& (buf
->flags
& FB_PIXMAP_SYNC
))
153 info
->fbops
->fb_sync(info
);
156 buf
->offset
= offset
+ size
;
164 static inline unsigned safe_shift(unsigned d
, int n
)
166 return n
< 0 ? d
>> -n
: d
<< n
;
169 static void fb_set_logocmap(struct fb_info
*info
,
170 const struct linux_logo
*logo
)
172 struct fb_cmap palette_cmap
;
173 u16 palette_green
[16];
174 u16 palette_blue
[16];
177 const unsigned char *clut
= logo
->clut
;
179 palette_cmap
.start
= 0;
180 palette_cmap
.len
= 16;
181 palette_cmap
.red
= palette_red
;
182 palette_cmap
.green
= palette_green
;
183 palette_cmap
.blue
= palette_blue
;
184 palette_cmap
.transp
= NULL
;
186 for (i
= 0; i
< logo
->clutsize
; i
+= n
) {
187 n
= logo
->clutsize
- i
;
188 /* palette_cmap provides space for only 16 colors at once */
191 palette_cmap
.start
= 32 + i
;
192 palette_cmap
.len
= n
;
193 for (j
= 0; j
< n
; ++j
) {
194 palette_cmap
.red
[j
] = clut
[0] << 8 | clut
[0];
195 palette_cmap
.green
[j
] = clut
[1] << 8 | clut
[1];
196 palette_cmap
.blue
[j
] = clut
[2] << 8 | clut
[2];
199 fb_set_cmap(&palette_cmap
, info
);
203 static void fb_set_logo_truepalette(struct fb_info
*info
,
204 const struct linux_logo
*logo
,
207 static const unsigned char mask
[] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
208 unsigned char redmask
, greenmask
, bluemask
;
209 int redshift
, greenshift
, blueshift
;
211 const unsigned char *clut
= logo
->clut
;
214 * We have to create a temporary palette since console palette is only
217 /* Bug: Doesn't obey msb_right ... (who needs that?) */
218 redmask
= mask
[info
->var
.red
.length
< 8 ? info
->var
.red
.length
: 8];
219 greenmask
= mask
[info
->var
.green
.length
< 8 ? info
->var
.green
.length
: 8];
220 bluemask
= mask
[info
->var
.blue
.length
< 8 ? info
->var
.blue
.length
: 8];
221 redshift
= info
->var
.red
.offset
- (8 - info
->var
.red
.length
);
222 greenshift
= info
->var
.green
.offset
- (8 - info
->var
.green
.length
);
223 blueshift
= info
->var
.blue
.offset
- (8 - info
->var
.blue
.length
);
225 for ( i
= 0; i
< logo
->clutsize
; i
++) {
226 palette
[i
+32] = (safe_shift((clut
[0] & redmask
), redshift
) |
227 safe_shift((clut
[1] & greenmask
), greenshift
) |
228 safe_shift((clut
[2] & bluemask
), blueshift
));
233 static void fb_set_logo_directpalette(struct fb_info
*info
,
234 const struct linux_logo
*logo
,
237 int redshift
, greenshift
, blueshift
;
240 redshift
= info
->var
.red
.offset
;
241 greenshift
= info
->var
.green
.offset
;
242 blueshift
= info
->var
.blue
.offset
;
244 for (i
= 32; i
< 32 + logo
->clutsize
; i
++)
245 palette
[i
] = i
<< redshift
| i
<< greenshift
| i
<< blueshift
;
248 static void fb_set_logo(struct fb_info
*info
,
249 const struct linux_logo
*logo
, u8
*dst
,
253 const u8
*src
= logo
->data
;
254 u8
xor = (info
->fix
.visual
== FB_VISUAL_MONO01
) ? 0xff : 0;
257 switch (fb_get_color_depth(&info
->var
, &info
->fix
)) {
269 if (info
->fix
.visual
== FB_VISUAL_MONO01
||
270 info
->fix
.visual
== FB_VISUAL_MONO10
)
271 fg
= ~((u8
) (0xfff << info
->var
.green
.length
));
275 for (i
= 0; i
< logo
->height
; i
++)
276 for (j
= 0; j
< logo
->width
; src
++) {
279 if (j
< logo
->width
) {
280 *dst
++ = *src
& 0x0f;
286 for (i
= 0; i
< logo
->height
; i
++) {
287 for (j
= 0; j
< logo
->width
; src
++) {
289 for (k
= 7; k
>= 0; k
--) {
290 *dst
++ = ((d
>> k
) & 1) ? fg
: 0;
300 * Three (3) kinds of logo maps exist. linux_logo_clut224 (>16 colors),
301 * linux_logo_vga16 (16 colors) and linux_logo_mono (2 colors). Depending on
302 * the visual format and color depth of the framebuffer, the DAC, the
303 * pseudo_palette, and the logo data will be adjusted accordingly.
305 * Case 1 - linux_logo_clut224:
306 * Color exceeds the number of console colors (16), thus we set the hardware DAC
307 * using fb_set_cmap() appropriately. The "needs_cmapreset" flag will be set.
309 * For visuals that require color info from the pseudo_palette, we also construct
310 * one for temporary use. The "needs_directpalette" or "needs_truepalette" flags
313 * Case 2 - linux_logo_vga16:
314 * The number of colors just matches the console colors, thus there is no need
315 * to set the DAC or the pseudo_palette. However, the bitmap is packed, ie,
316 * each byte contains color information for two pixels (upper and lower nibble).
317 * To be consistent with fb_imageblit() usage, we therefore separate the two
318 * nibbles into separate bytes. The "depth" flag will be set to 4.
320 * Case 3 - linux_logo_mono:
321 * This is similar with Case 2. Each byte contains information for 8 pixels.
322 * We isolate each bit and expand each into a byte. The "depth" flag will
325 static struct logo_data
{
327 int needs_directpalette
;
328 int needs_truepalette
;
330 const struct linux_logo
*logo
;
331 } fb_logo __read_mostly
;
333 static void fb_rotate_logo_ud(const u8
*in
, u8
*out
, u32 width
, u32 height
)
335 u32 size
= width
* height
, i
;
339 for (i
= size
; i
--; )
343 static void fb_rotate_logo_cw(const u8
*in
, u8
*out
, u32 width
, u32 height
)
345 int i
, j
, h
= height
- 1;
347 for (i
= 0; i
< height
; i
++)
348 for (j
= 0; j
< width
; j
++)
349 out
[height
* j
+ h
- i
] = *in
++;
352 static void fb_rotate_logo_ccw(const u8
*in
, u8
*out
, u32 width
, u32 height
)
354 int i
, j
, w
= width
- 1;
356 for (i
= 0; i
< height
; i
++)
357 for (j
= 0; j
< width
; j
++)
358 out
[height
* (w
- j
) + i
] = *in
++;
361 static void fb_rotate_logo(struct fb_info
*info
, u8
*dst
,
362 struct fb_image
*image
, int rotate
)
366 if (rotate
== FB_ROTATE_UD
) {
367 fb_rotate_logo_ud(image
->data
, dst
, image
->width
,
369 image
->dx
= info
->var
.xres
- image
->width
- image
->dx
;
370 image
->dy
= info
->var
.yres
- image
->height
- image
->dy
;
371 } else if (rotate
== FB_ROTATE_CW
) {
372 fb_rotate_logo_cw(image
->data
, dst
, image
->width
,
375 image
->width
= image
->height
;
378 image
->dy
= image
->dx
;
379 image
->dx
= info
->var
.xres
- image
->width
- tmp
;
380 } else if (rotate
== FB_ROTATE_CCW
) {
381 fb_rotate_logo_ccw(image
->data
, dst
, image
->width
,
384 image
->width
= image
->height
;
387 image
->dx
= image
->dy
;
388 image
->dy
= info
->var
.yres
- image
->height
- tmp
;
394 static void fb_do_show_logo(struct fb_info
*info
, struct fb_image
*image
,
395 int rotate
, unsigned int num
)
399 if (rotate
== FB_ROTATE_UR
) {
401 x
< num
&& image
->dx
+ image
->width
<= info
->var
.xres
;
403 info
->fbops
->fb_imageblit(info
, image
);
404 image
->dx
+= image
->width
+ 8;
406 } else if (rotate
== FB_ROTATE_UD
) {
407 for (x
= 0; x
< num
&& image
->dx
>= 0; x
++) {
408 info
->fbops
->fb_imageblit(info
, image
);
409 image
->dx
-= image
->width
+ 8;
411 } else if (rotate
== FB_ROTATE_CW
) {
413 x
< num
&& image
->dy
+ image
->height
<= info
->var
.yres
;
415 info
->fbops
->fb_imageblit(info
, image
);
416 image
->dy
+= image
->height
+ 8;
418 } else if (rotate
== FB_ROTATE_CCW
) {
419 for (x
= 0; x
< num
&& image
->dy
>= 0; x
++) {
420 info
->fbops
->fb_imageblit(info
, image
);
421 image
->dy
-= image
->height
+ 8;
426 static int fb_show_logo_line(struct fb_info
*info
, int rotate
,
427 const struct linux_logo
*logo
, int y
,
430 u32
*palette
= NULL
, *saved_pseudo_palette
= NULL
;
431 unsigned char *logo_new
= NULL
, *logo_rotate
= NULL
;
432 struct fb_image image
;
434 /* Return if the frame buffer is not mapped or suspended */
435 if (logo
== NULL
|| info
->state
!= FBINFO_STATE_RUNNING
||
436 info
->flags
& FBINFO_MODULE
)
440 image
.data
= logo
->data
;
442 if (fb_logo
.needs_cmapreset
)
443 fb_set_logocmap(info
, logo
);
445 if (fb_logo
.needs_truepalette
||
446 fb_logo
.needs_directpalette
) {
447 palette
= kmalloc(256 * 4, GFP_KERNEL
);
451 if (fb_logo
.needs_truepalette
)
452 fb_set_logo_truepalette(info
, logo
, palette
);
454 fb_set_logo_directpalette(info
, logo
, palette
);
456 saved_pseudo_palette
= info
->pseudo_palette
;
457 info
->pseudo_palette
= palette
;
460 if (fb_logo
.depth
<= 4) {
461 logo_new
= kmalloc(logo
->width
* logo
->height
, GFP_KERNEL
);
462 if (logo_new
== NULL
) {
464 if (saved_pseudo_palette
)
465 info
->pseudo_palette
= saved_pseudo_palette
;
468 image
.data
= logo_new
;
469 fb_set_logo(info
, logo
, logo_new
, fb_logo
.depth
);
474 image
.width
= logo
->width
;
475 image
.height
= logo
->height
;
478 logo_rotate
= kmalloc(logo
->width
*
479 logo
->height
, GFP_KERNEL
);
481 fb_rotate_logo(info
, logo_rotate
, &image
, rotate
);
484 fb_do_show_logo(info
, &image
, rotate
, n
);
487 if (saved_pseudo_palette
!= NULL
)
488 info
->pseudo_palette
= saved_pseudo_palette
;
495 #ifdef CONFIG_FB_LOGO_EXTRA
497 #define FB_LOGO_EX_NUM_MAX 10
498 static struct logo_data_extra
{
499 const struct linux_logo
*logo
;
501 } fb_logo_ex
[FB_LOGO_EX_NUM_MAX
];
502 static unsigned int fb_logo_ex_num
;
504 void fb_append_extra_logo(const struct linux_logo
*logo
, unsigned int n
)
506 if (!n
|| fb_logo_ex_num
== FB_LOGO_EX_NUM_MAX
)
509 fb_logo_ex
[fb_logo_ex_num
].logo
= logo
;
510 fb_logo_ex
[fb_logo_ex_num
].n
= n
;
514 static int fb_prepare_extra_logos(struct fb_info
*info
, unsigned int height
,
519 /* FIXME: logo_ex supports only truecolor fb. */
520 if (info
->fix
.visual
!= FB_VISUAL_TRUECOLOR
)
523 for (i
= 0; i
< fb_logo_ex_num
; i
++) {
524 if (fb_logo_ex
[i
].logo
->type
!= fb_logo
.logo
->type
) {
525 fb_logo_ex
[i
].logo
= NULL
;
528 height
+= fb_logo_ex
[i
].logo
->height
;
530 height
-= fb_logo_ex
[i
].logo
->height
;
538 static int fb_show_extra_logos(struct fb_info
*info
, int y
, int rotate
)
542 for (i
= 0; i
< fb_logo_ex_num
; i
++)
543 y
+= fb_show_logo_line(info
, rotate
,
544 fb_logo_ex
[i
].logo
, y
, fb_logo_ex
[i
].n
);
549 #else /* !CONFIG_FB_LOGO_EXTRA */
551 static inline int fb_prepare_extra_logos(struct fb_info
*info
,
558 static inline int fb_show_extra_logos(struct fb_info
*info
, int y
, int rotate
)
563 #endif /* CONFIG_FB_LOGO_EXTRA */
566 int fb_prepare_logo(struct fb_info
*info
, int rotate
)
568 int depth
= fb_get_color_depth(&info
->var
, &info
->fix
);
571 memset(&fb_logo
, 0, sizeof(struct logo_data
));
573 if (info
->flags
& FBINFO_MISC_TILEBLITTING
||
574 info
->flags
& FBINFO_MODULE
)
577 if (info
->fix
.visual
== FB_VISUAL_DIRECTCOLOR
) {
578 depth
= info
->var
.blue
.length
;
579 if (info
->var
.red
.length
< depth
)
580 depth
= info
->var
.red
.length
;
581 if (info
->var
.green
.length
< depth
)
582 depth
= info
->var
.green
.length
;
585 if (info
->fix
.visual
== FB_VISUAL_STATIC_PSEUDOCOLOR
&& depth
> 4) {
586 /* assume console colormap */
590 /* Return if no suitable logo was found */
591 fb_logo
.logo
= fb_find_logo(depth
);
597 if (rotate
== FB_ROTATE_UR
|| rotate
== FB_ROTATE_UD
)
598 yres
= info
->var
.yres
;
600 yres
= info
->var
.xres
;
602 if (fb_logo
.logo
->height
> yres
) {
607 /* What depth we asked for might be different from what we get */
608 if (fb_logo
.logo
->type
== LINUX_LOGO_CLUT224
)
610 else if (fb_logo
.logo
->type
== LINUX_LOGO_VGA16
)
616 if (fb_logo
.depth
> 4 && depth
> 4) {
617 switch (info
->fix
.visual
) {
618 case FB_VISUAL_TRUECOLOR
:
619 fb_logo
.needs_truepalette
= 1;
621 case FB_VISUAL_DIRECTCOLOR
:
622 fb_logo
.needs_directpalette
= 1;
623 fb_logo
.needs_cmapreset
= 1;
625 case FB_VISUAL_PSEUDOCOLOR
:
626 fb_logo
.needs_cmapreset
= 1;
631 return fb_prepare_extra_logos(info
, fb_logo
.logo
->height
, yres
);
634 int fb_show_logo(struct fb_info
*info
, int rotate
)
638 y
= fb_show_logo_line(info
, rotate
, fb_logo
.logo
, 0,
640 y
= fb_show_extra_logos(info
, y
, rotate
);
645 int fb_prepare_logo(struct fb_info
*info
, int rotate
) { return 0; }
646 int fb_show_logo(struct fb_info
*info
, int rotate
) { return 0; }
647 #endif /* CONFIG_LOGO */
649 static void *fb_seq_start(struct seq_file
*m
, loff_t
*pos
)
651 return (*pos
< FB_MAX
) ? pos
: NULL
;
654 static void *fb_seq_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
657 return (*pos
< FB_MAX
) ? pos
: NULL
;
660 static void fb_seq_stop(struct seq_file
*m
, void *v
)
664 static int fb_seq_show(struct seq_file
*m
, void *v
)
666 int i
= *(loff_t
*)v
;
667 struct fb_info
*fi
= registered_fb
[i
];
670 seq_printf(m
, "%d %s\n", fi
->node
, fi
->fix
.id
);
674 static const struct seq_operations proc_fb_seq_ops
= {
675 .start
= fb_seq_start
,
681 static int proc_fb_open(struct inode
*inode
, struct file
*file
)
683 return seq_open(file
, &proc_fb_seq_ops
);
686 static const struct file_operations fb_proc_fops
= {
687 .owner
= THIS_MODULE
,
688 .open
= proc_fb_open
,
691 .release
= seq_release
,
695 fb_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*ppos
)
697 unsigned long p
= *ppos
;
698 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
699 int fbidx
= iminor(inode
);
700 struct fb_info
*info
= registered_fb
[fbidx
];
703 int c
, i
, cnt
= 0, err
= 0;
704 unsigned long total_size
;
706 if (!info
|| ! info
->screen_base
)
709 if (info
->state
!= FBINFO_STATE_RUNNING
)
712 if (info
->fbops
->fb_read
)
713 return info
->fbops
->fb_read(info
, buf
, count
, ppos
);
715 total_size
= info
->screen_size
;
718 total_size
= info
->fix
.smem_len
;
723 if (count
>= total_size
)
726 if (count
+ p
> total_size
)
727 count
= total_size
- p
;
729 buffer
= kmalloc((count
> PAGE_SIZE
) ? PAGE_SIZE
: count
,
734 src
= (u32 __iomem
*) (info
->screen_base
+ p
);
736 if (info
->fbops
->fb_sync
)
737 info
->fbops
->fb_sync(info
);
740 c
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
742 for (i
= c
>> 2; i
--; )
743 *dst
++ = fb_readl(src
++);
745 u8
*dst8
= (u8
*) dst
;
746 u8 __iomem
*src8
= (u8 __iomem
*) src
;
748 for (i
= c
& 3; i
--;)
749 *dst8
++ = fb_readb(src8
++);
751 src
= (u32 __iomem
*) src8
;
754 if (copy_to_user(buf
, buffer
, c
)) {
766 return (err
) ? err
: cnt
;
770 fb_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*ppos
)
772 unsigned long p
= *ppos
;
773 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
774 int fbidx
= iminor(inode
);
775 struct fb_info
*info
= registered_fb
[fbidx
];
778 int c
, i
, cnt
= 0, err
= 0;
779 unsigned long total_size
;
781 if (!info
|| !info
->screen_base
)
784 if (info
->state
!= FBINFO_STATE_RUNNING
)
787 if (info
->fbops
->fb_write
)
788 return info
->fbops
->fb_write(info
, buf
, count
, ppos
);
790 total_size
= info
->screen_size
;
793 total_size
= info
->fix
.smem_len
;
798 if (count
> total_size
) {
803 if (count
+ p
> total_size
) {
807 count
= total_size
- p
;
810 buffer
= kmalloc((count
> PAGE_SIZE
) ? PAGE_SIZE
: count
,
815 dst
= (u32 __iomem
*) (info
->screen_base
+ p
);
817 if (info
->fbops
->fb_sync
)
818 info
->fbops
->fb_sync(info
);
821 c
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
824 if (copy_from_user(src
, buf
, c
)) {
829 for (i
= c
>> 2; i
--; )
830 fb_writel(*src
++, dst
++);
833 u8
*src8
= (u8
*) src
;
834 u8 __iomem
*dst8
= (u8 __iomem
*) dst
;
836 for (i
= c
& 3; i
--; )
837 fb_writeb(*src8
++, dst8
++);
839 dst
= (u32 __iomem
*) dst8
;
850 return (cnt
) ? cnt
: err
;
854 fb_pan_display(struct fb_info
*info
, struct fb_var_screeninfo
*var
)
856 struct fb_fix_screeninfo
*fix
= &info
->fix
;
857 unsigned int yres
= info
->var
.yres
;
860 if (var
->yoffset
> 0) {
861 if (var
->vmode
& FB_VMODE_YWRAP
) {
862 if (!fix
->ywrapstep
|| (var
->yoffset
% fix
->ywrapstep
))
866 } else if (!fix
->ypanstep
|| (var
->yoffset
% fix
->ypanstep
))
870 if (var
->xoffset
> 0 && (!fix
->xpanstep
||
871 (var
->xoffset
% fix
->xpanstep
)))
874 if (err
|| !info
->fbops
->fb_pan_display
||
875 var
->yoffset
+ yres
> info
->var
.yres_virtual
||
876 var
->xoffset
+ info
->var
.xres
> info
->var
.xres_virtual
)
879 if ((err
= info
->fbops
->fb_pan_display(var
, info
)))
881 info
->var
.xoffset
= var
->xoffset
;
882 info
->var
.yoffset
= var
->yoffset
;
883 if (var
->vmode
& FB_VMODE_YWRAP
)
884 info
->var
.vmode
|= FB_VMODE_YWRAP
;
886 info
->var
.vmode
&= ~FB_VMODE_YWRAP
;
890 static int fb_check_caps(struct fb_info
*info
, struct fb_var_screeninfo
*var
,
893 struct fb_event event
;
894 struct fb_blit_caps caps
, fbcaps
;
897 memset(&caps
, 0, sizeof(caps
));
898 memset(&fbcaps
, 0, sizeof(fbcaps
));
899 caps
.flags
= (activate
& FB_ACTIVATE_ALL
) ? 1 : 0;
902 fb_notifier_call_chain(FB_EVENT_GET_REQ
, &event
);
903 info
->fbops
->fb_get_caps(info
, &fbcaps
, var
);
905 if (((fbcaps
.x
^ caps
.x
) & caps
.x
) ||
906 ((fbcaps
.y
^ caps
.y
) & caps
.y
) ||
907 (fbcaps
.len
< caps
.len
))
914 fb_set_var(struct fb_info
*info
, struct fb_var_screeninfo
*var
)
916 int flags
= info
->flags
;
919 if (var
->activate
& FB_ACTIVATE_INV_MODE
) {
920 struct fb_videomode mode1
, mode2
;
922 fb_var_to_videomode(&mode1
, var
);
923 fb_var_to_videomode(&mode2
, &info
->var
);
924 /* make sure we don't delete the videomode of current var */
925 ret
= fb_mode_is_equal(&mode1
, &mode2
);
928 struct fb_event event
;
932 ret
= fb_notifier_call_chain(FB_EVENT_MODE_DELETE
, &event
);
936 fb_delete_videomode(&mode1
, &info
->modelist
);
939 ret
= (ret
) ? -EINVAL
: 0;
943 if ((var
->activate
& FB_ACTIVATE_FORCE
) ||
944 memcmp(&info
->var
, var
, sizeof(struct fb_var_screeninfo
))) {
945 u32 activate
= var
->activate
;
947 if (!info
->fbops
->fb_check_var
) {
952 ret
= info
->fbops
->fb_check_var(var
, info
);
957 if ((var
->activate
& FB_ACTIVATE_MASK
) == FB_ACTIVATE_NOW
) {
958 struct fb_videomode mode
;
960 if (info
->fbops
->fb_get_caps
) {
961 ret
= fb_check_caps(info
, var
, activate
);
969 if (info
->fbops
->fb_set_par
)
970 info
->fbops
->fb_set_par(info
);
972 fb_pan_display(info
, &info
->var
);
973 fb_set_cmap(&info
->cmap
, info
);
974 fb_var_to_videomode(&mode
, &info
->var
);
976 if (info
->modelist
.prev
&& info
->modelist
.next
&&
977 !list_empty(&info
->modelist
))
978 ret
= fb_add_videomode(&mode
, &info
->modelist
);
980 if (!ret
&& (flags
& FBINFO_MISC_USEREVENT
)) {
981 struct fb_event event
;
982 int evnt
= (activate
& FB_ACTIVATE_ALL
) ?
983 FB_EVENT_MODE_CHANGE_ALL
:
984 FB_EVENT_MODE_CHANGE
;
986 info
->flags
&= ~FBINFO_MISC_USEREVENT
;
989 fb_notifier_call_chain(evnt
, &event
);
999 fb_blank(struct fb_info
*info
, int blank
)
1003 if (blank
> FB_BLANK_POWERDOWN
)
1004 blank
= FB_BLANK_POWERDOWN
;
1006 if (info
->fbops
->fb_blank
)
1007 ret
= info
->fbops
->fb_blank(blank
, info
);
1010 struct fb_event event
;
1013 event
.data
= &blank
;
1014 fb_notifier_call_chain(FB_EVENT_BLANK
, &event
);
1020 static long do_fb_ioctl(struct fb_info
*info
, unsigned int cmd
,
1024 struct fb_var_screeninfo var
;
1025 struct fb_fix_screeninfo fix
;
1026 struct fb_con2fbmap con2fb
;
1027 struct fb_cmap cmap_from
;
1028 struct fb_cmap_user cmap
;
1029 struct fb_event event
;
1030 void __user
*argp
= (void __user
*)arg
;
1034 case FBIOGET_VSCREENINFO
:
1035 if (!lock_fb_info(info
))
1038 unlock_fb_info(info
);
1040 ret
= copy_to_user(argp
, &var
, sizeof(var
)) ? -EFAULT
: 0;
1042 case FBIOPUT_VSCREENINFO
:
1043 if (copy_from_user(&var
, argp
, sizeof(var
)))
1045 if (!lock_fb_info(info
))
1047 acquire_console_sem();
1048 info
->flags
|= FBINFO_MISC_USEREVENT
;
1049 ret
= fb_set_var(info
, &var
);
1050 info
->flags
&= ~FBINFO_MISC_USEREVENT
;
1051 release_console_sem();
1052 unlock_fb_info(info
);
1053 if (!ret
&& copy_to_user(argp
, &var
, sizeof(var
)))
1056 case FBIOGET_FSCREENINFO
:
1057 if (!lock_fb_info(info
))
1060 unlock_fb_info(info
);
1062 ret
= copy_to_user(argp
, &fix
, sizeof(fix
)) ? -EFAULT
: 0;
1065 if (copy_from_user(&cmap
, argp
, sizeof(cmap
)))
1067 ret
= fb_set_user_cmap(&cmap
, info
);
1070 if (copy_from_user(&cmap
, argp
, sizeof(cmap
)))
1072 if (!lock_fb_info(info
))
1074 cmap_from
= info
->cmap
;
1075 unlock_fb_info(info
);
1076 ret
= fb_cmap_to_user(&cmap_from
, &cmap
);
1078 case FBIOPAN_DISPLAY
:
1079 if (copy_from_user(&var
, argp
, sizeof(var
)))
1081 if (!lock_fb_info(info
))
1083 acquire_console_sem();
1084 ret
= fb_pan_display(info
, &var
);
1085 release_console_sem();
1086 unlock_fb_info(info
);
1087 if (ret
== 0 && copy_to_user(argp
, &var
, sizeof(var
)))
1093 case FBIOGET_CON2FBMAP
:
1094 if (copy_from_user(&con2fb
, argp
, sizeof(con2fb
)))
1096 if (con2fb
.console
< 1 || con2fb
.console
> MAX_NR_CONSOLES
)
1098 con2fb
.framebuffer
= -1;
1099 event
.data
= &con2fb
;
1100 if (!lock_fb_info(info
))
1103 fb_notifier_call_chain(FB_EVENT_GET_CONSOLE_MAP
, &event
);
1104 unlock_fb_info(info
);
1105 ret
= copy_to_user(argp
, &con2fb
, sizeof(con2fb
)) ? -EFAULT
: 0;
1107 case FBIOPUT_CON2FBMAP
:
1108 if (copy_from_user(&con2fb
, argp
, sizeof(con2fb
)))
1110 if (con2fb
.console
< 1 || con2fb
.console
> MAX_NR_CONSOLES
)
1112 if (con2fb
.framebuffer
< 0 || con2fb
.framebuffer
>= FB_MAX
)
1114 if (!registered_fb
[con2fb
.framebuffer
])
1115 request_module("fb%d", con2fb
.framebuffer
);
1116 if (!registered_fb
[con2fb
.framebuffer
]) {
1120 event
.data
= &con2fb
;
1121 if (!lock_fb_info(info
))
1124 ret
= fb_notifier_call_chain(FB_EVENT_SET_CONSOLE_MAP
, &event
);
1125 unlock_fb_info(info
);
1128 if (!lock_fb_info(info
))
1130 acquire_console_sem();
1131 info
->flags
|= FBINFO_MISC_USEREVENT
;
1132 ret
= fb_blank(info
, arg
);
1133 info
->flags
&= ~FBINFO_MISC_USEREVENT
;
1134 release_console_sem();
1135 unlock_fb_info(info
);
1138 if (!lock_fb_info(info
))
1142 ret
= fb
->fb_ioctl(info
, cmd
, arg
);
1145 unlock_fb_info(info
);
1150 static long fb_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1152 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1153 int fbidx
= iminor(inode
);
1154 struct fb_info
*info
= registered_fb
[fbidx
];
1156 return do_fb_ioctl(info
, cmd
, arg
);
1159 #ifdef CONFIG_COMPAT
1160 struct fb_fix_screeninfo32
{
1162 compat_caddr_t smem_start
;
1171 compat_caddr_t mmio_start
;
1181 compat_caddr_t green
;
1182 compat_caddr_t blue
;
1183 compat_caddr_t transp
;
1186 static int fb_getput_cmap(struct fb_info
*info
, unsigned int cmd
,
1189 struct fb_cmap_user __user
*cmap
;
1190 struct fb_cmap32 __user
*cmap32
;
1194 cmap
= compat_alloc_user_space(sizeof(*cmap
));
1195 cmap32
= compat_ptr(arg
);
1197 if (copy_in_user(&cmap
->start
, &cmap32
->start
, 2 * sizeof(__u32
)))
1200 if (get_user(data
, &cmap32
->red
) ||
1201 put_user(compat_ptr(data
), &cmap
->red
) ||
1202 get_user(data
, &cmap32
->green
) ||
1203 put_user(compat_ptr(data
), &cmap
->green
) ||
1204 get_user(data
, &cmap32
->blue
) ||
1205 put_user(compat_ptr(data
), &cmap
->blue
) ||
1206 get_user(data
, &cmap32
->transp
) ||
1207 put_user(compat_ptr(data
), &cmap
->transp
))
1210 err
= do_fb_ioctl(info
, cmd
, (unsigned long) cmap
);
1213 if (copy_in_user(&cmap32
->start
,
1221 static int do_fscreeninfo_to_user(struct fb_fix_screeninfo
*fix
,
1222 struct fb_fix_screeninfo32 __user
*fix32
)
1227 err
= copy_to_user(&fix32
->id
, &fix
->id
, sizeof(fix32
->id
));
1229 data
= (__u32
) (unsigned long) fix
->smem_start
;
1230 err
|= put_user(data
, &fix32
->smem_start
);
1232 err
|= put_user(fix
->smem_len
, &fix32
->smem_len
);
1233 err
|= put_user(fix
->type
, &fix32
->type
);
1234 err
|= put_user(fix
->type_aux
, &fix32
->type_aux
);
1235 err
|= put_user(fix
->visual
, &fix32
->visual
);
1236 err
|= put_user(fix
->xpanstep
, &fix32
->xpanstep
);
1237 err
|= put_user(fix
->ypanstep
, &fix32
->ypanstep
);
1238 err
|= put_user(fix
->ywrapstep
, &fix32
->ywrapstep
);
1239 err
|= put_user(fix
->line_length
, &fix32
->line_length
);
1241 data
= (__u32
) (unsigned long) fix
->mmio_start
;
1242 err
|= put_user(data
, &fix32
->mmio_start
);
1244 err
|= put_user(fix
->mmio_len
, &fix32
->mmio_len
);
1245 err
|= put_user(fix
->accel
, &fix32
->accel
);
1246 err
|= copy_to_user(fix32
->reserved
, fix
->reserved
,
1247 sizeof(fix
->reserved
));
1252 static int fb_get_fscreeninfo(struct fb_info
*info
, unsigned int cmd
,
1255 mm_segment_t old_fs
;
1256 struct fb_fix_screeninfo fix
;
1257 struct fb_fix_screeninfo32 __user
*fix32
;
1260 fix32
= compat_ptr(arg
);
1264 err
= do_fb_ioctl(info
, cmd
, (unsigned long) &fix
);
1268 err
= do_fscreeninfo_to_user(&fix
, fix32
);
1273 static long fb_compat_ioctl(struct file
*file
, unsigned int cmd
,
1276 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1277 int fbidx
= iminor(inode
);
1278 struct fb_info
*info
= registered_fb
[fbidx
];
1279 struct fb_ops
*fb
= info
->fbops
;
1280 long ret
= -ENOIOCTLCMD
;
1283 case FBIOGET_VSCREENINFO
:
1284 case FBIOPUT_VSCREENINFO
:
1285 case FBIOPAN_DISPLAY
:
1286 case FBIOGET_CON2FBMAP
:
1287 case FBIOPUT_CON2FBMAP
:
1288 arg
= (unsigned long) compat_ptr(arg
);
1290 ret
= do_fb_ioctl(info
, cmd
, arg
);
1293 case FBIOGET_FSCREENINFO
:
1294 ret
= fb_get_fscreeninfo(info
, cmd
, arg
);
1299 ret
= fb_getput_cmap(info
, cmd
, arg
);
1303 if (fb
->fb_compat_ioctl
)
1304 ret
= fb
->fb_compat_ioctl(info
, cmd
, arg
);
1312 fb_mmap(struct file
*file
, struct vm_area_struct
* vma
)
1313 __acquires(&info
->lock
)
1314 __releases(&info
->lock
)
1316 int fbidx
= iminor(file
->f_path
.dentry
->d_inode
);
1317 struct fb_info
*info
= registered_fb
[fbidx
];
1318 struct fb_ops
*fb
= info
->fbops
;
1320 unsigned long start
;
1323 if (vma
->vm_pgoff
> (~0UL >> PAGE_SHIFT
))
1325 off
= vma
->vm_pgoff
<< PAGE_SHIFT
;
1330 mutex_lock(&info
->lock
);
1331 res
= fb
->fb_mmap(info
, vma
);
1332 mutex_unlock(&info
->lock
);
1336 mutex_lock(&info
->lock
);
1338 /* frame buffer memory */
1339 start
= info
->fix
.smem_start
;
1340 len
= PAGE_ALIGN((start
& ~PAGE_MASK
) + info
->fix
.smem_len
);
1342 /* memory mapped io */
1344 if (info
->var
.accel_flags
) {
1345 mutex_unlock(&info
->lock
);
1348 start
= info
->fix
.mmio_start
;
1349 len
= PAGE_ALIGN((start
& ~PAGE_MASK
) + info
->fix
.mmio_len
);
1351 mutex_unlock(&info
->lock
);
1353 if ((vma
->vm_end
- vma
->vm_start
+ off
) > len
)
1356 vma
->vm_pgoff
= off
>> PAGE_SHIFT
;
1357 /* This is an IO map - tell maydump to skip this VMA */
1358 vma
->vm_flags
|= VM_IO
| VM_RESERVED
;
1359 fb_pgprotect(file
, vma
, off
);
1360 if (io_remap_pfn_range(vma
, vma
->vm_start
, off
>> PAGE_SHIFT
,
1361 vma
->vm_end
- vma
->vm_start
, vma
->vm_page_prot
))
1367 fb_open(struct inode
*inode
, struct file
*file
)
1368 __acquires(&info
->lock
)
1369 __releases(&info
->lock
)
1371 int fbidx
= iminor(inode
);
1372 struct fb_info
*info
;
1375 if (fbidx
>= FB_MAX
)
1377 info
= registered_fb
[fbidx
];
1379 request_module("fb%d", fbidx
);
1380 info
= registered_fb
[fbidx
];
1383 mutex_lock(&info
->lock
);
1384 if (!try_module_get(info
->fbops
->owner
)) {
1388 file
->private_data
= info
;
1389 if (info
->fbops
->fb_open
) {
1390 res
= info
->fbops
->fb_open(info
,1);
1392 module_put(info
->fbops
->owner
);
1394 #ifdef CONFIG_FB_DEFERRED_IO
1396 fb_deferred_io_open(info
, inode
, file
);
1399 mutex_unlock(&info
->lock
);
1404 fb_release(struct inode
*inode
, struct file
*file
)
1405 __acquires(&info
->lock
)
1406 __releases(&info
->lock
)
1408 struct fb_info
* const info
= file
->private_data
;
1410 mutex_lock(&info
->lock
);
1411 if (info
->fbops
->fb_release
)
1412 info
->fbops
->fb_release(info
,1);
1413 module_put(info
->fbops
->owner
);
1414 mutex_unlock(&info
->lock
);
1418 static const struct file_operations fb_fops
= {
1419 .owner
= THIS_MODULE
,
1422 .unlocked_ioctl
= fb_ioctl
,
1423 #ifdef CONFIG_COMPAT
1424 .compat_ioctl
= fb_compat_ioctl
,
1428 .release
= fb_release
,
1429 #ifdef HAVE_ARCH_FB_UNMAPPED_AREA
1430 .get_unmapped_area
= get_fb_unmapped_area
,
1432 #ifdef CONFIG_FB_DEFERRED_IO
1433 .fsync
= fb_deferred_io_fsync
,
1437 struct class *fb_class
;
1438 EXPORT_SYMBOL(fb_class
);
1440 static int fb_check_foreignness(struct fb_info
*fi
)
1442 const bool foreign_endian
= fi
->flags
& FBINFO_FOREIGN_ENDIAN
;
1444 fi
->flags
&= ~FBINFO_FOREIGN_ENDIAN
;
1447 fi
->flags
|= foreign_endian
? 0 : FBINFO_BE_MATH
;
1449 fi
->flags
|= foreign_endian
? FBINFO_BE_MATH
: 0;
1450 #endif /* __BIG_ENDIAN */
1452 if (fi
->flags
& FBINFO_BE_MATH
&& !fb_be_math(fi
)) {
1453 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1454 "support this framebuffer\n", fi
->fix
.id
);
1456 } else if (!(fi
->flags
& FBINFO_BE_MATH
) && fb_be_math(fi
)) {
1457 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1458 "support this framebuffer\n", fi
->fix
.id
);
1466 * register_framebuffer - registers a frame buffer device
1467 * @fb_info: frame buffer info structure
1469 * Registers a frame buffer device @fb_info.
1471 * Returns negative errno on error, or zero for success.
1476 register_framebuffer(struct fb_info
*fb_info
)
1479 struct fb_event event
;
1480 struct fb_videomode mode
;
1482 if (num_registered_fb
== FB_MAX
)
1485 if (fb_check_foreignness(fb_info
))
1488 num_registered_fb
++;
1489 for (i
= 0 ; i
< FB_MAX
; i
++)
1490 if (!registered_fb
[i
])
1493 mutex_init(&fb_info
->lock
);
1495 fb_info
->dev
= device_create(fb_class
, fb_info
->device
,
1496 MKDEV(FB_MAJOR
, i
), NULL
, "fb%d", i
);
1497 if (IS_ERR(fb_info
->dev
)) {
1499 printk(KERN_WARNING
"Unable to create device for framebuffer %d; errno = %ld\n", i
, PTR_ERR(fb_info
->dev
));
1500 fb_info
->dev
= NULL
;
1502 fb_init_device(fb_info
);
1504 if (fb_info
->pixmap
.addr
== NULL
) {
1505 fb_info
->pixmap
.addr
= kmalloc(FBPIXMAPSIZE
, GFP_KERNEL
);
1506 if (fb_info
->pixmap
.addr
) {
1507 fb_info
->pixmap
.size
= FBPIXMAPSIZE
;
1508 fb_info
->pixmap
.buf_align
= 1;
1509 fb_info
->pixmap
.scan_align
= 1;
1510 fb_info
->pixmap
.access_align
= 32;
1511 fb_info
->pixmap
.flags
= FB_PIXMAP_DEFAULT
;
1514 fb_info
->pixmap
.offset
= 0;
1516 if (!fb_info
->pixmap
.blit_x
)
1517 fb_info
->pixmap
.blit_x
= ~(u32
)0;
1519 if (!fb_info
->pixmap
.blit_y
)
1520 fb_info
->pixmap
.blit_y
= ~(u32
)0;
1522 if (!fb_info
->modelist
.prev
|| !fb_info
->modelist
.next
)
1523 INIT_LIST_HEAD(&fb_info
->modelist
);
1525 fb_var_to_videomode(&mode
, &fb_info
->var
);
1526 fb_add_videomode(&mode
, &fb_info
->modelist
);
1527 registered_fb
[i
] = fb_info
;
1529 event
.info
= fb_info
;
1530 if (!lock_fb_info(fb_info
))
1532 fb_notifier_call_chain(FB_EVENT_FB_REGISTERED
, &event
);
1533 unlock_fb_info(fb_info
);
1539 * unregister_framebuffer - releases a frame buffer device
1540 * @fb_info: frame buffer info structure
1542 * Unregisters a frame buffer device @fb_info.
1544 * Returns negative errno on error, or zero for success.
1546 * This function will also notify the framebuffer console
1547 * to release the driver.
1549 * This is meant to be called within a driver's module_exit()
1550 * function. If this is called outside module_exit(), ensure
1551 * that the driver implements fb_open() and fb_release() to
1552 * check that no processes are using the device.
1556 unregister_framebuffer(struct fb_info
*fb_info
)
1558 struct fb_event event
;
1562 if (!registered_fb
[i
]) {
1568 if (!lock_fb_info(fb_info
))
1570 event
.info
= fb_info
;
1571 ret
= fb_notifier_call_chain(FB_EVENT_FB_UNBIND
, &event
);
1572 unlock_fb_info(fb_info
);
1579 if (fb_info
->pixmap
.addr
&&
1580 (fb_info
->pixmap
.flags
& FB_PIXMAP_DEFAULT
))
1581 kfree(fb_info
->pixmap
.addr
);
1582 fb_destroy_modelist(&fb_info
->modelist
);
1583 registered_fb
[i
]=NULL
;
1584 num_registered_fb
--;
1585 fb_cleanup_device(fb_info
);
1586 device_destroy(fb_class
, MKDEV(FB_MAJOR
, i
));
1587 event
.info
= fb_info
;
1588 fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED
, &event
);
1594 * fb_set_suspend - low level driver signals suspend
1595 * @info: framebuffer affected
1596 * @state: 0 = resuming, !=0 = suspending
1598 * This is meant to be used by low level drivers to
1599 * signal suspend/resume to the core & clients.
1600 * It must be called with the console semaphore held
1602 void fb_set_suspend(struct fb_info
*info
, int state
)
1604 struct fb_event event
;
1606 if (!lock_fb_info(info
))
1610 fb_notifier_call_chain(FB_EVENT_SUSPEND
, &event
);
1611 info
->state
= FBINFO_STATE_SUSPENDED
;
1613 info
->state
= FBINFO_STATE_RUNNING
;
1614 fb_notifier_call_chain(FB_EVENT_RESUME
, &event
);
1616 unlock_fb_info(info
);
1620 * fbmem_init - init frame buffer subsystem
1622 * Initialize the frame buffer subsystem.
1624 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1631 proc_create("fb", 0, NULL
, &fb_proc_fops
);
1633 if (register_chrdev(FB_MAJOR
,"fb",&fb_fops
))
1634 printk("unable to get major %d for fb devs\n", FB_MAJOR
);
1636 fb_class
= class_create(THIS_MODULE
, "graphics");
1637 if (IS_ERR(fb_class
)) {
1638 printk(KERN_WARNING
"Unable to create fb class; errno = %ld\n", PTR_ERR(fb_class
));
1645 module_init(fbmem_init
);
1649 remove_proc_entry("fb", NULL
);
1650 class_destroy(fb_class
);
1651 unregister_chrdev(FB_MAJOR
, "fb");
1654 module_exit(fbmem_exit
);
1655 MODULE_LICENSE("GPL");
1656 MODULE_DESCRIPTION("Framebuffer base");
1658 subsys_initcall(fbmem_init
);
1661 int fb_new_modelist(struct fb_info
*info
)
1663 struct fb_event event
;
1664 struct fb_var_screeninfo var
= info
->var
;
1665 struct list_head
*pos
, *n
;
1666 struct fb_modelist
*modelist
;
1667 struct fb_videomode
*m
, mode
;
1670 list_for_each_safe(pos
, n
, &info
->modelist
) {
1671 modelist
= list_entry(pos
, struct fb_modelist
, list
);
1672 m
= &modelist
->mode
;
1673 fb_videomode_to_var(&var
, m
);
1674 var
.activate
= FB_ACTIVATE_TEST
;
1675 err
= fb_set_var(info
, &var
);
1676 fb_var_to_videomode(&mode
, &var
);
1677 if (err
|| !fb_mode_is_equal(m
, &mode
)) {
1685 if (!list_empty(&info
->modelist
)) {
1686 if (!lock_fb_info(info
))
1689 err
= fb_notifier_call_chain(FB_EVENT_NEW_MODELIST
, &event
);
1690 unlock_fb_info(info
);
1696 static char *video_options
[FB_MAX
] __read_mostly
;
1697 static int ofonly __read_mostly
;
1700 * fb_get_options - get kernel boot parameters
1701 * @name: framebuffer name as it would appear in
1702 * the boot parameter line
1703 * (video=<name>:<options>)
1704 * @option: the option will be stored here
1706 * NOTE: Needed to maintain backwards compatibility
1708 int fb_get_options(char *name
, char **option
)
1710 char *opt
, *options
= NULL
;
1711 int opt_len
, retval
= 0;
1712 int name_len
= strlen(name
), i
;
1714 if (name_len
&& ofonly
&& strncmp(name
, "offb", 4))
1717 if (name_len
&& !retval
) {
1718 for (i
= 0; i
< FB_MAX
; i
++) {
1719 if (video_options
[i
] == NULL
)
1721 opt_len
= strlen(video_options
[i
]);
1724 opt
= video_options
[i
];
1725 if (!strncmp(name
, opt
, name_len
) &&
1726 opt
[name_len
] == ':')
1727 options
= opt
+ name_len
+ 1;
1730 if (options
&& !strncmp(options
, "off", 3))
1741 * video_setup - process command line options
1742 * @options: string of options
1744 * Process command line options for frame buffer subsystem.
1746 * NOTE: This function is a __setup and __init function.
1747 * It only stores the options. Drivers have to call
1748 * fb_get_options() as necessary.
1753 static int __init
video_setup(char *options
)
1757 if (!options
|| !*options
)
1760 if (!global
&& !strncmp(options
, "ofonly", 6)) {
1765 if (!global
&& !strstr(options
, "fb:")) {
1766 fb_mode_option
= options
;
1771 for (i
= 0; i
< FB_MAX
; i
++) {
1772 if (video_options
[i
] == NULL
) {
1773 video_options
[i
] = options
;
1782 __setup("video=", video_setup
);
1786 * Visible symbols for modules
1789 EXPORT_SYMBOL(register_framebuffer
);
1790 EXPORT_SYMBOL(unregister_framebuffer
);
1791 EXPORT_SYMBOL(num_registered_fb
);
1792 EXPORT_SYMBOL(registered_fb
);
1793 EXPORT_SYMBOL(fb_show_logo
);
1794 EXPORT_SYMBOL(fb_set_var
);
1795 EXPORT_SYMBOL(fb_blank
);
1796 EXPORT_SYMBOL(fb_pan_display
);
1797 EXPORT_SYMBOL(fb_get_buffer_offset
);
1798 EXPORT_SYMBOL(fb_set_suspend
);
1799 EXPORT_SYMBOL(fb_get_options
);
1801 MODULE_LICENSE("GPL");