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/kernel.h>
20 #include <linux/major.h>
21 #include <linux/slab.h>
23 #include <linux/mman.h>
25 #include <linux/init.h>
26 #include <linux/linux_logo.h>
27 #include <linux/proc_fs.h>
28 #include <linux/seq_file.h>
29 #include <linux/console.h>
30 #include <linux/kmod.h>
31 #include <linux/err.h>
32 #include <linux/device.h>
33 #include <linux/efi.h>
40 * Frame buffer device initialization and setup routines
43 #define FBPIXMAPSIZE (1024 * 8)
45 static DEFINE_MUTEX(registration_lock
);
46 struct fb_info
*registered_fb
[FB_MAX
] __read_mostly
;
47 int num_registered_fb __read_mostly
;
49 static struct fb_info
*get_fb_info(unsigned int idx
)
51 struct fb_info
*fb_info
;
54 return ERR_PTR(-ENODEV
);
56 mutex_lock(®istration_lock
);
57 fb_info
= registered_fb
[idx
];
59 atomic_inc(&fb_info
->count
);
60 mutex_unlock(®istration_lock
);
65 static void put_fb_info(struct fb_info
*fb_info
)
67 if (!atomic_dec_and_test(&fb_info
->count
))
69 if (fb_info
->fbops
->fb_destroy
)
70 fb_info
->fbops
->fb_destroy(fb_info
);
73 int lock_fb_info(struct fb_info
*info
)
75 mutex_lock(&info
->lock
);
77 mutex_unlock(&info
->lock
);
82 EXPORT_SYMBOL(lock_fb_info
);
88 int fb_get_color_depth(struct fb_var_screeninfo
*var
,
89 struct fb_fix_screeninfo
*fix
)
93 if (fix
->visual
== FB_VISUAL_MONO01
||
94 fix
->visual
== FB_VISUAL_MONO10
)
97 if (var
->green
.length
== var
->blue
.length
&&
98 var
->green
.length
== var
->red
.length
&&
99 var
->green
.offset
== var
->blue
.offset
&&
100 var
->green
.offset
== var
->red
.offset
)
101 depth
= var
->green
.length
;
103 depth
= var
->green
.length
+ var
->red
.length
+
109 EXPORT_SYMBOL(fb_get_color_depth
);
112 * Data padding functions.
114 void fb_pad_aligned_buffer(u8
*dst
, u32 d_pitch
, u8
*src
, u32 s_pitch
, u32 height
)
116 __fb_pad_aligned_buffer(dst
, d_pitch
, src
, s_pitch
, height
);
118 EXPORT_SYMBOL(fb_pad_aligned_buffer
);
120 void fb_pad_unaligned_buffer(u8
*dst
, u32 d_pitch
, u8
*src
, u32 idx
, u32 height
,
121 u32 shift_high
, u32 shift_low
, u32 mod
)
123 u8 mask
= (u8
) (0xfff << shift_high
), tmp
;
126 for (i
= height
; i
--; ) {
127 for (j
= 0; j
< idx
; j
++) {
130 tmp
|= *src
>> shift_low
;
132 tmp
= *src
<< shift_high
;
138 tmp
|= *src
>> shift_low
;
140 if (shift_high
< mod
) {
141 tmp
= *src
<< shift_high
;
148 EXPORT_SYMBOL(fb_pad_unaligned_buffer
);
151 * we need to lock this section since fb_cursor
152 * may use fb_imageblit()
154 char* fb_get_buffer_offset(struct fb_info
*info
, struct fb_pixmap
*buf
, u32 size
)
156 u32 align
= buf
->buf_align
- 1, offset
;
157 char *addr
= buf
->addr
;
159 /* If IO mapped, we need to sync before access, no sharing of
162 if (buf
->flags
& FB_PIXMAP_IO
) {
163 if (info
->fbops
->fb_sync
&& (buf
->flags
& FB_PIXMAP_SYNC
))
164 info
->fbops
->fb_sync(info
);
168 /* See if we fit in the remaining pixmap space */
169 offset
= buf
->offset
+ align
;
171 if (offset
+ size
> buf
->size
) {
172 /* We do not fit. In order to be able to re-use the buffer,
173 * we must ensure no asynchronous DMA'ing or whatever operation
174 * is in progress, we sync for that.
176 if (info
->fbops
->fb_sync
&& (buf
->flags
& FB_PIXMAP_SYNC
))
177 info
->fbops
->fb_sync(info
);
180 buf
->offset
= offset
+ size
;
188 static inline unsigned safe_shift(unsigned d
, int n
)
190 return n
< 0 ? d
>> -n
: d
<< n
;
193 static void fb_set_logocmap(struct fb_info
*info
,
194 const struct linux_logo
*logo
)
196 struct fb_cmap palette_cmap
;
197 u16 palette_green
[16];
198 u16 palette_blue
[16];
201 const unsigned char *clut
= logo
->clut
;
203 palette_cmap
.start
= 0;
204 palette_cmap
.len
= 16;
205 palette_cmap
.red
= palette_red
;
206 palette_cmap
.green
= palette_green
;
207 palette_cmap
.blue
= palette_blue
;
208 palette_cmap
.transp
= NULL
;
210 for (i
= 0; i
< logo
->clutsize
; i
+= n
) {
211 n
= logo
->clutsize
- i
;
212 /* palette_cmap provides space for only 16 colors at once */
215 palette_cmap
.start
= 32 + i
;
216 palette_cmap
.len
= n
;
217 for (j
= 0; j
< n
; ++j
) {
218 palette_cmap
.red
[j
] = clut
[0] << 8 | clut
[0];
219 palette_cmap
.green
[j
] = clut
[1] << 8 | clut
[1];
220 palette_cmap
.blue
[j
] = clut
[2] << 8 | clut
[2];
223 fb_set_cmap(&palette_cmap
, info
);
227 static void fb_set_logo_truepalette(struct fb_info
*info
,
228 const struct linux_logo
*logo
,
231 static const unsigned char mask
[] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
232 unsigned char redmask
, greenmask
, bluemask
;
233 int redshift
, greenshift
, blueshift
;
235 const unsigned char *clut
= logo
->clut
;
238 * We have to create a temporary palette since console palette is only
241 /* Bug: Doesn't obey msb_right ... (who needs that?) */
242 redmask
= mask
[info
->var
.red
.length
< 8 ? info
->var
.red
.length
: 8];
243 greenmask
= mask
[info
->var
.green
.length
< 8 ? info
->var
.green
.length
: 8];
244 bluemask
= mask
[info
->var
.blue
.length
< 8 ? info
->var
.blue
.length
: 8];
245 redshift
= info
->var
.red
.offset
- (8 - info
->var
.red
.length
);
246 greenshift
= info
->var
.green
.offset
- (8 - info
->var
.green
.length
);
247 blueshift
= info
->var
.blue
.offset
- (8 - info
->var
.blue
.length
);
249 for ( i
= 0; i
< logo
->clutsize
; i
++) {
250 palette
[i
+32] = (safe_shift((clut
[0] & redmask
), redshift
) |
251 safe_shift((clut
[1] & greenmask
), greenshift
) |
252 safe_shift((clut
[2] & bluemask
), blueshift
));
257 static void fb_set_logo_directpalette(struct fb_info
*info
,
258 const struct linux_logo
*logo
,
261 int redshift
, greenshift
, blueshift
;
264 redshift
= info
->var
.red
.offset
;
265 greenshift
= info
->var
.green
.offset
;
266 blueshift
= info
->var
.blue
.offset
;
268 for (i
= 32; i
< 32 + logo
->clutsize
; i
++)
269 palette
[i
] = i
<< redshift
| i
<< greenshift
| i
<< blueshift
;
272 static void fb_set_logo(struct fb_info
*info
,
273 const struct linux_logo
*logo
, u8
*dst
,
277 const u8
*src
= logo
->data
;
278 u8
xor = (info
->fix
.visual
== FB_VISUAL_MONO01
) ? 0xff : 0;
281 switch (fb_get_color_depth(&info
->var
, &info
->fix
)) {
293 if (info
->fix
.visual
== FB_VISUAL_MONO01
||
294 info
->fix
.visual
== FB_VISUAL_MONO10
)
295 fg
= ~((u8
) (0xfff << info
->var
.green
.length
));
299 for (i
= 0; i
< logo
->height
; i
++)
300 for (j
= 0; j
< logo
->width
; src
++) {
303 if (j
< logo
->width
) {
304 *dst
++ = *src
& 0x0f;
310 for (i
= 0; i
< logo
->height
; i
++) {
311 for (j
= 0; j
< logo
->width
; src
++) {
313 for (k
= 7; k
>= 0; k
--) {
314 *dst
++ = ((d
>> k
) & 1) ? fg
: 0;
324 * Three (3) kinds of logo maps exist. linux_logo_clut224 (>16 colors),
325 * linux_logo_vga16 (16 colors) and linux_logo_mono (2 colors). Depending on
326 * the visual format and color depth of the framebuffer, the DAC, the
327 * pseudo_palette, and the logo data will be adjusted accordingly.
329 * Case 1 - linux_logo_clut224:
330 * Color exceeds the number of console colors (16), thus we set the hardware DAC
331 * using fb_set_cmap() appropriately. The "needs_cmapreset" flag will be set.
333 * For visuals that require color info from the pseudo_palette, we also construct
334 * one for temporary use. The "needs_directpalette" or "needs_truepalette" flags
337 * Case 2 - linux_logo_vga16:
338 * The number of colors just matches the console colors, thus there is no need
339 * to set the DAC or the pseudo_palette. However, the bitmap is packed, ie,
340 * each byte contains color information for two pixels (upper and lower nibble).
341 * To be consistent with fb_imageblit() usage, we therefore separate the two
342 * nibbles into separate bytes. The "depth" flag will be set to 4.
344 * Case 3 - linux_logo_mono:
345 * This is similar with Case 2. Each byte contains information for 8 pixels.
346 * We isolate each bit and expand each into a byte. The "depth" flag will
349 static struct logo_data
{
351 int needs_directpalette
;
352 int needs_truepalette
;
354 const struct linux_logo
*logo
;
355 } fb_logo __read_mostly
;
357 static void fb_rotate_logo_ud(const u8
*in
, u8
*out
, u32 width
, u32 height
)
359 u32 size
= width
* height
, i
;
363 for (i
= size
; i
--; )
367 static void fb_rotate_logo_cw(const u8
*in
, u8
*out
, u32 width
, u32 height
)
369 int i
, j
, h
= height
- 1;
371 for (i
= 0; i
< height
; i
++)
372 for (j
= 0; j
< width
; j
++)
373 out
[height
* j
+ h
- i
] = *in
++;
376 static void fb_rotate_logo_ccw(const u8
*in
, u8
*out
, u32 width
, u32 height
)
378 int i
, j
, w
= width
- 1;
380 for (i
= 0; i
< height
; i
++)
381 for (j
= 0; j
< width
; j
++)
382 out
[height
* (w
- j
) + i
] = *in
++;
385 static void fb_rotate_logo(struct fb_info
*info
, u8
*dst
,
386 struct fb_image
*image
, int rotate
)
390 if (rotate
== FB_ROTATE_UD
) {
391 fb_rotate_logo_ud(image
->data
, dst
, image
->width
,
393 image
->dx
= info
->var
.xres
- image
->width
- image
->dx
;
394 image
->dy
= info
->var
.yres
- image
->height
- image
->dy
;
395 } else if (rotate
== FB_ROTATE_CW
) {
396 fb_rotate_logo_cw(image
->data
, dst
, image
->width
,
399 image
->width
= image
->height
;
402 image
->dy
= image
->dx
;
403 image
->dx
= info
->var
.xres
- image
->width
- tmp
;
404 } else if (rotate
== FB_ROTATE_CCW
) {
405 fb_rotate_logo_ccw(image
->data
, dst
, image
->width
,
408 image
->width
= image
->height
;
411 image
->dx
= image
->dy
;
412 image
->dy
= info
->var
.yres
- image
->height
- tmp
;
418 static void fb_do_show_logo(struct fb_info
*info
, struct fb_image
*image
,
419 int rotate
, unsigned int num
)
423 if (rotate
== FB_ROTATE_UR
) {
425 x
< num
&& image
->dx
+ image
->width
<= info
->var
.xres
;
427 info
->fbops
->fb_imageblit(info
, image
);
428 image
->dx
+= image
->width
+ 8;
430 } else if (rotate
== FB_ROTATE_UD
) {
431 for (x
= 0; x
< num
&& image
->dx
>= 0; x
++) {
432 info
->fbops
->fb_imageblit(info
, image
);
433 image
->dx
-= image
->width
+ 8;
435 } else if (rotate
== FB_ROTATE_CW
) {
437 x
< num
&& image
->dy
+ image
->height
<= info
->var
.yres
;
439 info
->fbops
->fb_imageblit(info
, image
);
440 image
->dy
+= image
->height
+ 8;
442 } else if (rotate
== FB_ROTATE_CCW
) {
443 for (x
= 0; x
< num
&& image
->dy
>= 0; x
++) {
444 info
->fbops
->fb_imageblit(info
, image
);
445 image
->dy
-= image
->height
+ 8;
450 static int fb_show_logo_line(struct fb_info
*info
, int rotate
,
451 const struct linux_logo
*logo
, int y
,
454 u32
*palette
= NULL
, *saved_pseudo_palette
= NULL
;
455 unsigned char *logo_new
= NULL
, *logo_rotate
= NULL
;
456 struct fb_image image
;
458 /* Return if the frame buffer is not mapped or suspended */
459 if (logo
== NULL
|| info
->state
!= FBINFO_STATE_RUNNING
||
460 info
->flags
& FBINFO_MODULE
)
464 image
.data
= logo
->data
;
466 if (fb_logo
.needs_cmapreset
)
467 fb_set_logocmap(info
, logo
);
469 if (fb_logo
.needs_truepalette
||
470 fb_logo
.needs_directpalette
) {
471 palette
= kmalloc(256 * 4, GFP_KERNEL
);
475 if (fb_logo
.needs_truepalette
)
476 fb_set_logo_truepalette(info
, logo
, palette
);
478 fb_set_logo_directpalette(info
, logo
, palette
);
480 saved_pseudo_palette
= info
->pseudo_palette
;
481 info
->pseudo_palette
= palette
;
484 if (fb_logo
.depth
<= 4) {
485 logo_new
= kmalloc(logo
->width
* logo
->height
, GFP_KERNEL
);
486 if (logo_new
== NULL
) {
488 if (saved_pseudo_palette
)
489 info
->pseudo_palette
= saved_pseudo_palette
;
492 image
.data
= logo_new
;
493 fb_set_logo(info
, logo
, logo_new
, fb_logo
.depth
);
498 image
.width
= logo
->width
;
499 image
.height
= logo
->height
;
502 logo_rotate
= kmalloc(logo
->width
*
503 logo
->height
, GFP_KERNEL
);
505 fb_rotate_logo(info
, logo_rotate
, &image
, rotate
);
508 fb_do_show_logo(info
, &image
, rotate
, n
);
511 if (saved_pseudo_palette
!= NULL
)
512 info
->pseudo_palette
= saved_pseudo_palette
;
519 #ifdef CONFIG_FB_LOGO_EXTRA
521 #define FB_LOGO_EX_NUM_MAX 10
522 static struct logo_data_extra
{
523 const struct linux_logo
*logo
;
525 } fb_logo_ex
[FB_LOGO_EX_NUM_MAX
];
526 static unsigned int fb_logo_ex_num
;
528 void fb_append_extra_logo(const struct linux_logo
*logo
, unsigned int n
)
530 if (!n
|| fb_logo_ex_num
== FB_LOGO_EX_NUM_MAX
)
533 fb_logo_ex
[fb_logo_ex_num
].logo
= logo
;
534 fb_logo_ex
[fb_logo_ex_num
].n
= n
;
538 static int fb_prepare_extra_logos(struct fb_info
*info
, unsigned int height
,
543 /* FIXME: logo_ex supports only truecolor fb. */
544 if (info
->fix
.visual
!= FB_VISUAL_TRUECOLOR
)
547 for (i
= 0; i
< fb_logo_ex_num
; i
++) {
548 if (fb_logo_ex
[i
].logo
->type
!= fb_logo
.logo
->type
) {
549 fb_logo_ex
[i
].logo
= NULL
;
552 height
+= fb_logo_ex
[i
].logo
->height
;
554 height
-= fb_logo_ex
[i
].logo
->height
;
562 static int fb_show_extra_logos(struct fb_info
*info
, int y
, int rotate
)
566 for (i
= 0; i
< fb_logo_ex_num
; i
++)
567 y
+= fb_show_logo_line(info
, rotate
,
568 fb_logo_ex
[i
].logo
, y
, fb_logo_ex
[i
].n
);
573 #else /* !CONFIG_FB_LOGO_EXTRA */
575 static inline int fb_prepare_extra_logos(struct fb_info
*info
,
582 static inline int fb_show_extra_logos(struct fb_info
*info
, int y
, int rotate
)
587 #endif /* CONFIG_FB_LOGO_EXTRA */
590 int fb_prepare_logo(struct fb_info
*info
, int rotate
)
592 int depth
= fb_get_color_depth(&info
->var
, &info
->fix
);
595 memset(&fb_logo
, 0, sizeof(struct logo_data
));
597 if (info
->flags
& FBINFO_MISC_TILEBLITTING
||
598 info
->flags
& FBINFO_MODULE
)
601 if (info
->fix
.visual
== FB_VISUAL_DIRECTCOLOR
) {
602 depth
= info
->var
.blue
.length
;
603 if (info
->var
.red
.length
< depth
)
604 depth
= info
->var
.red
.length
;
605 if (info
->var
.green
.length
< depth
)
606 depth
= info
->var
.green
.length
;
609 if (info
->fix
.visual
== FB_VISUAL_STATIC_PSEUDOCOLOR
&& depth
> 4) {
610 /* assume console colormap */
614 /* Return if no suitable logo was found */
615 fb_logo
.logo
= fb_find_logo(depth
);
621 if (rotate
== FB_ROTATE_UR
|| rotate
== FB_ROTATE_UD
)
622 yres
= info
->var
.yres
;
624 yres
= info
->var
.xres
;
626 if (fb_logo
.logo
->height
> yres
) {
631 /* What depth we asked for might be different from what we get */
632 if (fb_logo
.logo
->type
== LINUX_LOGO_CLUT224
)
634 else if (fb_logo
.logo
->type
== LINUX_LOGO_VGA16
)
640 if (fb_logo
.depth
> 4 && depth
> 4) {
641 switch (info
->fix
.visual
) {
642 case FB_VISUAL_TRUECOLOR
:
643 fb_logo
.needs_truepalette
= 1;
645 case FB_VISUAL_DIRECTCOLOR
:
646 fb_logo
.needs_directpalette
= 1;
647 fb_logo
.needs_cmapreset
= 1;
649 case FB_VISUAL_PSEUDOCOLOR
:
650 fb_logo
.needs_cmapreset
= 1;
655 return fb_prepare_extra_logos(info
, fb_logo
.logo
->height
, yres
);
658 int fb_show_logo(struct fb_info
*info
, int rotate
)
662 y
= fb_show_logo_line(info
, rotate
, fb_logo
.logo
, 0,
664 y
= fb_show_extra_logos(info
, y
, rotate
);
669 int fb_prepare_logo(struct fb_info
*info
, int rotate
) { return 0; }
670 int fb_show_logo(struct fb_info
*info
, int rotate
) { return 0; }
671 #endif /* CONFIG_LOGO */
673 static void *fb_seq_start(struct seq_file
*m
, loff_t
*pos
)
675 mutex_lock(®istration_lock
);
676 return (*pos
< FB_MAX
) ? pos
: NULL
;
679 static void *fb_seq_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
682 return (*pos
< FB_MAX
) ? pos
: NULL
;
685 static void fb_seq_stop(struct seq_file
*m
, void *v
)
687 mutex_unlock(®istration_lock
);
690 static int fb_seq_show(struct seq_file
*m
, void *v
)
692 int i
= *(loff_t
*)v
;
693 struct fb_info
*fi
= registered_fb
[i
];
696 seq_printf(m
, "%d %s\n", fi
->node
, fi
->fix
.id
);
700 static const struct seq_operations proc_fb_seq_ops
= {
701 .start
= fb_seq_start
,
707 static int proc_fb_open(struct inode
*inode
, struct file
*file
)
709 return seq_open(file
, &proc_fb_seq_ops
);
712 static const struct file_operations fb_proc_fops
= {
713 .owner
= THIS_MODULE
,
714 .open
= proc_fb_open
,
717 .release
= seq_release
,
721 * We hold a reference to the fb_info in file->private_data,
722 * but if the current registered fb has changed, we don't
723 * actually want to use it.
725 * So look up the fb_info using the inode minor number,
726 * and just verify it against the reference we have.
728 static struct fb_info
*file_fb_info(struct file
*file
)
730 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
731 int fbidx
= iminor(inode
);
732 struct fb_info
*info
= registered_fb
[fbidx
];
734 if (info
!= file
->private_data
)
740 fb_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*ppos
)
742 unsigned long p
= *ppos
;
743 struct fb_info
*info
= file_fb_info(file
);
746 int c
, cnt
= 0, err
= 0;
747 unsigned long total_size
;
749 if (!info
|| ! info
->screen_base
)
752 if (info
->state
!= FBINFO_STATE_RUNNING
)
755 if (info
->fbops
->fb_read
)
756 return info
->fbops
->fb_read(info
, buf
, count
, ppos
);
758 total_size
= info
->screen_size
;
761 total_size
= info
->fix
.smem_len
;
766 if (count
>= total_size
)
769 if (count
+ p
> total_size
)
770 count
= total_size
- p
;
772 buffer
= kmalloc((count
> PAGE_SIZE
) ? PAGE_SIZE
: count
,
777 src
= (u8 __iomem
*) (info
->screen_base
+ p
);
779 if (info
->fbops
->fb_sync
)
780 info
->fbops
->fb_sync(info
);
783 c
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
785 fb_memcpy_fromfb(dst
, src
, c
);
789 if (copy_to_user(buf
, buffer
, c
)) {
801 return (err
) ? err
: cnt
;
805 fb_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*ppos
)
807 unsigned long p
= *ppos
;
808 struct fb_info
*info
= file_fb_info(file
);
811 int c
, cnt
= 0, err
= 0;
812 unsigned long total_size
;
814 if (!info
|| !info
->screen_base
)
817 if (info
->state
!= FBINFO_STATE_RUNNING
)
820 if (info
->fbops
->fb_write
)
821 return info
->fbops
->fb_write(info
, buf
, count
, ppos
);
823 total_size
= info
->screen_size
;
826 total_size
= info
->fix
.smem_len
;
831 if (count
> total_size
) {
836 if (count
+ p
> total_size
) {
840 count
= total_size
- p
;
843 buffer
= kmalloc((count
> PAGE_SIZE
) ? PAGE_SIZE
: count
,
848 dst
= (u8 __iomem
*) (info
->screen_base
+ p
);
850 if (info
->fbops
->fb_sync
)
851 info
->fbops
->fb_sync(info
);
854 c
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
857 if (copy_from_user(src
, buf
, c
)) {
862 fb_memcpy_tofb(dst
, src
, c
);
873 return (cnt
) ? cnt
: err
;
877 fb_pan_display(struct fb_info
*info
, struct fb_var_screeninfo
*var
)
879 struct fb_fix_screeninfo
*fix
= &info
->fix
;
880 unsigned int yres
= info
->var
.yres
;
883 if (var
->yoffset
> 0) {
884 if (var
->vmode
& FB_VMODE_YWRAP
) {
885 if (!fix
->ywrapstep
|| (var
->yoffset
% fix
->ywrapstep
))
889 } else if (!fix
->ypanstep
|| (var
->yoffset
% fix
->ypanstep
))
893 if (var
->xoffset
> 0 && (!fix
->xpanstep
||
894 (var
->xoffset
% fix
->xpanstep
)))
897 if (err
|| !info
->fbops
->fb_pan_display
||
898 var
->yoffset
> info
->var
.yres_virtual
- yres
||
899 var
->xoffset
> info
->var
.xres_virtual
- info
->var
.xres
)
902 if ((err
= info
->fbops
->fb_pan_display(var
, info
)))
904 info
->var
.xoffset
= var
->xoffset
;
905 info
->var
.yoffset
= var
->yoffset
;
906 if (var
->vmode
& FB_VMODE_YWRAP
)
907 info
->var
.vmode
|= FB_VMODE_YWRAP
;
909 info
->var
.vmode
&= ~FB_VMODE_YWRAP
;
913 static int fb_check_caps(struct fb_info
*info
, struct fb_var_screeninfo
*var
,
916 struct fb_event event
;
917 struct fb_blit_caps caps
, fbcaps
;
920 memset(&caps
, 0, sizeof(caps
));
921 memset(&fbcaps
, 0, sizeof(fbcaps
));
922 caps
.flags
= (activate
& FB_ACTIVATE_ALL
) ? 1 : 0;
925 fb_notifier_call_chain(FB_EVENT_GET_REQ
, &event
);
926 info
->fbops
->fb_get_caps(info
, &fbcaps
, var
);
928 if (((fbcaps
.x
^ caps
.x
) & caps
.x
) ||
929 ((fbcaps
.y
^ caps
.y
) & caps
.y
) ||
930 (fbcaps
.len
< caps
.len
))
937 fb_set_var(struct fb_info
*info
, struct fb_var_screeninfo
*var
)
939 int flags
= info
->flags
;
942 if (var
->activate
& FB_ACTIVATE_INV_MODE
) {
943 struct fb_videomode mode1
, mode2
;
945 fb_var_to_videomode(&mode1
, var
);
946 fb_var_to_videomode(&mode2
, &info
->var
);
947 /* make sure we don't delete the videomode of current var */
948 ret
= fb_mode_is_equal(&mode1
, &mode2
);
951 struct fb_event event
;
955 ret
= fb_notifier_call_chain(FB_EVENT_MODE_DELETE
, &event
);
959 fb_delete_videomode(&mode1
, &info
->modelist
);
962 ret
= (ret
) ? -EINVAL
: 0;
966 if ((var
->activate
& FB_ACTIVATE_FORCE
) ||
967 memcmp(&info
->var
, var
, sizeof(struct fb_var_screeninfo
))) {
968 u32 activate
= var
->activate
;
970 /* When using FOURCC mode, make sure the red, green, blue and
971 * transp fields are set to 0.
973 if ((info
->fix
.capabilities
& FB_CAP_FOURCC
) &&
974 var
->grayscale
> 1) {
975 if (var
->red
.offset
|| var
->green
.offset
||
976 var
->blue
.offset
|| var
->transp
.offset
||
977 var
->red
.length
|| var
->green
.length
||
978 var
->blue
.length
|| var
->transp
.length
||
979 var
->red
.msb_right
|| var
->green
.msb_right
||
980 var
->blue
.msb_right
|| var
->transp
.msb_right
)
984 if (!info
->fbops
->fb_check_var
) {
989 ret
= info
->fbops
->fb_check_var(var
, info
);
994 if ((var
->activate
& FB_ACTIVATE_MASK
) == FB_ACTIVATE_NOW
) {
995 struct fb_var_screeninfo old_var
;
996 struct fb_videomode mode
;
998 if (info
->fbops
->fb_get_caps
) {
999 ret
= fb_check_caps(info
, var
, activate
);
1005 old_var
= info
->var
;
1008 if (info
->fbops
->fb_set_par
) {
1009 ret
= info
->fbops
->fb_set_par(info
);
1012 info
->var
= old_var
;
1013 printk(KERN_WARNING
"detected "
1014 "fb_set_par error, "
1015 "error code: %d\n", ret
);
1020 fb_pan_display(info
, &info
->var
);
1021 fb_set_cmap(&info
->cmap
, info
);
1022 fb_var_to_videomode(&mode
, &info
->var
);
1024 if (info
->modelist
.prev
&& info
->modelist
.next
&&
1025 !list_empty(&info
->modelist
))
1026 ret
= fb_add_videomode(&mode
, &info
->modelist
);
1028 if (!ret
&& (flags
& FBINFO_MISC_USEREVENT
)) {
1029 struct fb_event event
;
1030 int evnt
= (activate
& FB_ACTIVATE_ALL
) ?
1031 FB_EVENT_MODE_CHANGE_ALL
:
1032 FB_EVENT_MODE_CHANGE
;
1034 info
->flags
&= ~FBINFO_MISC_USEREVENT
;
1037 fb_notifier_call_chain(evnt
, &event
);
1047 fb_blank(struct fb_info
*info
, int blank
)
1051 if (blank
> FB_BLANK_POWERDOWN
)
1052 blank
= FB_BLANK_POWERDOWN
;
1054 if (info
->fbops
->fb_blank
)
1055 ret
= info
->fbops
->fb_blank(blank
, info
);
1058 struct fb_event event
;
1061 event
.data
= &blank
;
1062 fb_notifier_call_chain(FB_EVENT_BLANK
, &event
);
1068 static long do_fb_ioctl(struct fb_info
*info
, unsigned int cmd
,
1072 struct fb_var_screeninfo var
;
1073 struct fb_fix_screeninfo fix
;
1074 struct fb_con2fbmap con2fb
;
1075 struct fb_cmap cmap_from
;
1076 struct fb_cmap_user cmap
;
1077 struct fb_event event
;
1078 void __user
*argp
= (void __user
*)arg
;
1082 case FBIOGET_VSCREENINFO
:
1083 if (!lock_fb_info(info
))
1086 unlock_fb_info(info
);
1088 ret
= copy_to_user(argp
, &var
, sizeof(var
)) ? -EFAULT
: 0;
1090 case FBIOPUT_VSCREENINFO
:
1091 if (copy_from_user(&var
, argp
, sizeof(var
)))
1093 if (!lock_fb_info(info
))
1096 info
->flags
|= FBINFO_MISC_USEREVENT
;
1097 ret
= fb_set_var(info
, &var
);
1098 info
->flags
&= ~FBINFO_MISC_USEREVENT
;
1100 unlock_fb_info(info
);
1101 if (!ret
&& copy_to_user(argp
, &var
, sizeof(var
)))
1104 case FBIOGET_FSCREENINFO
:
1105 if (!lock_fb_info(info
))
1108 unlock_fb_info(info
);
1110 ret
= copy_to_user(argp
, &fix
, sizeof(fix
)) ? -EFAULT
: 0;
1113 if (copy_from_user(&cmap
, argp
, sizeof(cmap
)))
1115 ret
= fb_set_user_cmap(&cmap
, info
);
1118 if (copy_from_user(&cmap
, argp
, sizeof(cmap
)))
1120 if (!lock_fb_info(info
))
1122 cmap_from
= info
->cmap
;
1123 unlock_fb_info(info
);
1124 ret
= fb_cmap_to_user(&cmap_from
, &cmap
);
1126 case FBIOPAN_DISPLAY
:
1127 if (copy_from_user(&var
, argp
, sizeof(var
)))
1129 if (!lock_fb_info(info
))
1132 ret
= fb_pan_display(info
, &var
);
1134 unlock_fb_info(info
);
1135 if (ret
== 0 && copy_to_user(argp
, &var
, sizeof(var
)))
1141 case FBIOGET_CON2FBMAP
:
1142 if (copy_from_user(&con2fb
, argp
, sizeof(con2fb
)))
1144 if (con2fb
.console
< 1 || con2fb
.console
> MAX_NR_CONSOLES
)
1146 con2fb
.framebuffer
= -1;
1147 event
.data
= &con2fb
;
1148 if (!lock_fb_info(info
))
1151 fb_notifier_call_chain(FB_EVENT_GET_CONSOLE_MAP
, &event
);
1152 unlock_fb_info(info
);
1153 ret
= copy_to_user(argp
, &con2fb
, sizeof(con2fb
)) ? -EFAULT
: 0;
1155 case FBIOPUT_CON2FBMAP
:
1156 if (copy_from_user(&con2fb
, argp
, sizeof(con2fb
)))
1158 if (con2fb
.console
< 1 || con2fb
.console
> MAX_NR_CONSOLES
)
1160 if (con2fb
.framebuffer
< 0 || con2fb
.framebuffer
>= FB_MAX
)
1162 if (!registered_fb
[con2fb
.framebuffer
])
1163 request_module("fb%d", con2fb
.framebuffer
);
1164 if (!registered_fb
[con2fb
.framebuffer
]) {
1168 event
.data
= &con2fb
;
1169 if (!lock_fb_info(info
))
1172 ret
= fb_notifier_call_chain(FB_EVENT_SET_CONSOLE_MAP
, &event
);
1173 unlock_fb_info(info
);
1176 if (!lock_fb_info(info
))
1179 info
->flags
|= FBINFO_MISC_USEREVENT
;
1180 ret
= fb_blank(info
, arg
);
1181 info
->flags
&= ~FBINFO_MISC_USEREVENT
;
1183 unlock_fb_info(info
);
1186 if (!lock_fb_info(info
))
1190 ret
= fb
->fb_ioctl(info
, cmd
, arg
);
1193 unlock_fb_info(info
);
1198 static long fb_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1200 struct fb_info
*info
= file_fb_info(file
);
1204 return do_fb_ioctl(info
, cmd
, arg
);
1207 #ifdef CONFIG_COMPAT
1208 struct fb_fix_screeninfo32
{
1210 compat_caddr_t smem_start
;
1219 compat_caddr_t mmio_start
;
1229 compat_caddr_t green
;
1230 compat_caddr_t blue
;
1231 compat_caddr_t transp
;
1234 static int fb_getput_cmap(struct fb_info
*info
, unsigned int cmd
,
1237 struct fb_cmap_user __user
*cmap
;
1238 struct fb_cmap32 __user
*cmap32
;
1242 cmap
= compat_alloc_user_space(sizeof(*cmap
));
1243 cmap32
= compat_ptr(arg
);
1245 if (copy_in_user(&cmap
->start
, &cmap32
->start
, 2 * sizeof(__u32
)))
1248 if (get_user(data
, &cmap32
->red
) ||
1249 put_user(compat_ptr(data
), &cmap
->red
) ||
1250 get_user(data
, &cmap32
->green
) ||
1251 put_user(compat_ptr(data
), &cmap
->green
) ||
1252 get_user(data
, &cmap32
->blue
) ||
1253 put_user(compat_ptr(data
), &cmap
->blue
) ||
1254 get_user(data
, &cmap32
->transp
) ||
1255 put_user(compat_ptr(data
), &cmap
->transp
))
1258 err
= do_fb_ioctl(info
, cmd
, (unsigned long) cmap
);
1261 if (copy_in_user(&cmap32
->start
,
1269 static int do_fscreeninfo_to_user(struct fb_fix_screeninfo
*fix
,
1270 struct fb_fix_screeninfo32 __user
*fix32
)
1275 err
= copy_to_user(&fix32
->id
, &fix
->id
, sizeof(fix32
->id
));
1277 data
= (__u32
) (unsigned long) fix
->smem_start
;
1278 err
|= put_user(data
, &fix32
->smem_start
);
1280 err
|= put_user(fix
->smem_len
, &fix32
->smem_len
);
1281 err
|= put_user(fix
->type
, &fix32
->type
);
1282 err
|= put_user(fix
->type_aux
, &fix32
->type_aux
);
1283 err
|= put_user(fix
->visual
, &fix32
->visual
);
1284 err
|= put_user(fix
->xpanstep
, &fix32
->xpanstep
);
1285 err
|= put_user(fix
->ypanstep
, &fix32
->ypanstep
);
1286 err
|= put_user(fix
->ywrapstep
, &fix32
->ywrapstep
);
1287 err
|= put_user(fix
->line_length
, &fix32
->line_length
);
1289 data
= (__u32
) (unsigned long) fix
->mmio_start
;
1290 err
|= put_user(data
, &fix32
->mmio_start
);
1292 err
|= put_user(fix
->mmio_len
, &fix32
->mmio_len
);
1293 err
|= put_user(fix
->accel
, &fix32
->accel
);
1294 err
|= copy_to_user(fix32
->reserved
, fix
->reserved
,
1295 sizeof(fix
->reserved
));
1300 static int fb_get_fscreeninfo(struct fb_info
*info
, unsigned int cmd
,
1303 mm_segment_t old_fs
;
1304 struct fb_fix_screeninfo fix
;
1305 struct fb_fix_screeninfo32 __user
*fix32
;
1308 fix32
= compat_ptr(arg
);
1312 err
= do_fb_ioctl(info
, cmd
, (unsigned long) &fix
);
1316 err
= do_fscreeninfo_to_user(&fix
, fix32
);
1321 static long fb_compat_ioctl(struct file
*file
, unsigned int cmd
,
1324 struct fb_info
*info
= file_fb_info(file
);
1326 long ret
= -ENOIOCTLCMD
;
1332 case FBIOGET_VSCREENINFO
:
1333 case FBIOPUT_VSCREENINFO
:
1334 case FBIOPAN_DISPLAY
:
1335 case FBIOGET_CON2FBMAP
:
1336 case FBIOPUT_CON2FBMAP
:
1337 arg
= (unsigned long) compat_ptr(arg
);
1339 ret
= do_fb_ioctl(info
, cmd
, arg
);
1342 case FBIOGET_FSCREENINFO
:
1343 ret
= fb_get_fscreeninfo(info
, cmd
, arg
);
1348 ret
= fb_getput_cmap(info
, cmd
, arg
);
1352 if (fb
->fb_compat_ioctl
)
1353 ret
= fb
->fb_compat_ioctl(info
, cmd
, arg
);
1361 fb_mmap(struct file
*file
, struct vm_area_struct
* vma
)
1363 struct fb_info
*info
= file_fb_info(file
);
1366 unsigned long start
;
1371 if (vma
->vm_pgoff
> (~0UL >> PAGE_SHIFT
))
1373 off
= vma
->vm_pgoff
<< PAGE_SHIFT
;
1377 mutex_lock(&info
->mm_lock
);
1380 res
= fb
->fb_mmap(info
, vma
);
1381 mutex_unlock(&info
->mm_lock
);
1385 /* frame buffer memory */
1386 start
= info
->fix
.smem_start
;
1387 len
= PAGE_ALIGN((start
& ~PAGE_MASK
) + info
->fix
.smem_len
);
1389 /* memory mapped io */
1391 if (info
->var
.accel_flags
) {
1392 mutex_unlock(&info
->mm_lock
);
1395 start
= info
->fix
.mmio_start
;
1396 len
= PAGE_ALIGN((start
& ~PAGE_MASK
) + info
->fix
.mmio_len
);
1398 mutex_unlock(&info
->mm_lock
);
1400 if ((vma
->vm_end
- vma
->vm_start
+ off
) > len
)
1403 vma
->vm_pgoff
= off
>> PAGE_SHIFT
;
1404 /* This is an IO map - tell maydump to skip this VMA */
1405 vma
->vm_flags
|= VM_IO
| VM_RESERVED
;
1406 vma
->vm_page_prot
= vm_get_page_prot(vma
->vm_flags
);
1407 fb_pgprotect(file
, vma
, off
);
1408 if (io_remap_pfn_range(vma
, vma
->vm_start
, off
>> PAGE_SHIFT
,
1409 vma
->vm_end
- vma
->vm_start
, vma
->vm_page_prot
))
1415 fb_open(struct inode
*inode
, struct file
*file
)
1416 __acquires(&info
->lock
)
1417 __releases(&info
->lock
)
1419 int fbidx
= iminor(inode
);
1420 struct fb_info
*info
;
1423 info
= get_fb_info(fbidx
);
1425 request_module("fb%d", fbidx
);
1426 info
= get_fb_info(fbidx
);
1431 return PTR_ERR(info
);
1433 mutex_lock(&info
->lock
);
1434 if (!try_module_get(info
->fbops
->owner
)) {
1438 file
->private_data
= info
;
1439 if (info
->fbops
->fb_open
) {
1440 res
= info
->fbops
->fb_open(info
,1);
1442 module_put(info
->fbops
->owner
);
1444 #ifdef CONFIG_FB_DEFERRED_IO
1446 fb_deferred_io_open(info
, inode
, file
);
1449 mutex_unlock(&info
->lock
);
1456 fb_release(struct inode
*inode
, struct file
*file
)
1457 __acquires(&info
->lock
)
1458 __releases(&info
->lock
)
1460 struct fb_info
* const info
= file
->private_data
;
1462 mutex_lock(&info
->lock
);
1463 if (info
->fbops
->fb_release
)
1464 info
->fbops
->fb_release(info
,1);
1465 module_put(info
->fbops
->owner
);
1466 mutex_unlock(&info
->lock
);
1471 static const struct file_operations fb_fops
= {
1472 .owner
= THIS_MODULE
,
1475 .unlocked_ioctl
= fb_ioctl
,
1476 #ifdef CONFIG_COMPAT
1477 .compat_ioctl
= fb_compat_ioctl
,
1481 .release
= fb_release
,
1482 #ifdef HAVE_ARCH_FB_UNMAPPED_AREA
1483 .get_unmapped_area
= get_fb_unmapped_area
,
1485 #ifdef CONFIG_FB_DEFERRED_IO
1486 .fsync
= fb_deferred_io_fsync
,
1488 .llseek
= default_llseek
,
1491 struct class *fb_class
;
1492 EXPORT_SYMBOL(fb_class
);
1494 static int fb_check_foreignness(struct fb_info
*fi
)
1496 const bool foreign_endian
= fi
->flags
& FBINFO_FOREIGN_ENDIAN
;
1498 fi
->flags
&= ~FBINFO_FOREIGN_ENDIAN
;
1501 fi
->flags
|= foreign_endian
? 0 : FBINFO_BE_MATH
;
1503 fi
->flags
|= foreign_endian
? FBINFO_BE_MATH
: 0;
1504 #endif /* __BIG_ENDIAN */
1506 if (fi
->flags
& FBINFO_BE_MATH
&& !fb_be_math(fi
)) {
1507 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1508 "support this framebuffer\n", fi
->fix
.id
);
1510 } else if (!(fi
->flags
& FBINFO_BE_MATH
) && fb_be_math(fi
)) {
1511 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1512 "support this framebuffer\n", fi
->fix
.id
);
1519 static bool apertures_overlap(struct aperture
*gen
, struct aperture
*hw
)
1521 /* is the generic aperture base the same as the HW one */
1522 if (gen
->base
== hw
->base
)
1524 /* is the generic aperture base inside the hw base->hw base+size */
1525 if (gen
->base
> hw
->base
&& gen
->base
< hw
->base
+ hw
->size
)
1530 static bool fb_do_apertures_overlap(struct apertures_struct
*gena
,
1531 struct apertures_struct
*hwa
)
1537 for (i
= 0; i
< hwa
->count
; ++i
) {
1538 struct aperture
*h
= &hwa
->ranges
[i
];
1539 for (j
= 0; j
< gena
->count
; ++j
) {
1540 struct aperture
*g
= &gena
->ranges
[j
];
1541 printk(KERN_DEBUG
"checking generic (%llx %llx) vs hw (%llx %llx)\n",
1542 (unsigned long long)g
->base
,
1543 (unsigned long long)g
->size
,
1544 (unsigned long long)h
->base
,
1545 (unsigned long long)h
->size
);
1546 if (apertures_overlap(g
, h
))
1554 static int do_unregister_framebuffer(struct fb_info
*fb_info
);
1556 #define VGA_FB_PHYS 0xA0000
1557 static void do_remove_conflicting_framebuffers(struct apertures_struct
*a
,
1558 const char *name
, bool primary
)
1562 /* check all firmware fbs and kick off if the base addr overlaps */
1563 for (i
= 0 ; i
< FB_MAX
; i
++) {
1564 struct apertures_struct
*gen_aper
;
1565 if (!registered_fb
[i
])
1568 if (!(registered_fb
[i
]->flags
& FBINFO_MISC_FIRMWARE
))
1571 gen_aper
= registered_fb
[i
]->apertures
;
1572 if (fb_do_apertures_overlap(gen_aper
, a
) ||
1573 (primary
&& gen_aper
&& gen_aper
->count
&&
1574 gen_aper
->ranges
[0].base
== VGA_FB_PHYS
)) {
1576 printk(KERN_INFO
"fb: conflicting fb hw usage "
1577 "%s vs %s - removing generic driver\n",
1578 name
, registered_fb
[i
]->fix
.id
);
1579 do_unregister_framebuffer(registered_fb
[i
]);
1584 static int do_register_framebuffer(struct fb_info
*fb_info
)
1587 struct fb_event event
;
1588 struct fb_videomode mode
;
1590 if (fb_check_foreignness(fb_info
))
1593 do_remove_conflicting_framebuffers(fb_info
->apertures
, fb_info
->fix
.id
,
1594 fb_is_primary_device(fb_info
));
1596 if (num_registered_fb
== FB_MAX
)
1599 num_registered_fb
++;
1600 for (i
= 0 ; i
< FB_MAX
; i
++)
1601 if (!registered_fb
[i
])
1604 atomic_set(&fb_info
->count
, 1);
1605 mutex_init(&fb_info
->lock
);
1606 mutex_init(&fb_info
->mm_lock
);
1608 fb_info
->dev
= device_create(fb_class
, fb_info
->device
,
1609 MKDEV(FB_MAJOR
, i
), NULL
, "fb%d", i
);
1610 if (IS_ERR(fb_info
->dev
)) {
1612 printk(KERN_WARNING
"Unable to create device for framebuffer %d; errno = %ld\n", i
, PTR_ERR(fb_info
->dev
));
1613 fb_info
->dev
= NULL
;
1615 fb_init_device(fb_info
);
1617 if (fb_info
->pixmap
.addr
== NULL
) {
1618 fb_info
->pixmap
.addr
= kmalloc(FBPIXMAPSIZE
, GFP_KERNEL
);
1619 if (fb_info
->pixmap
.addr
) {
1620 fb_info
->pixmap
.size
= FBPIXMAPSIZE
;
1621 fb_info
->pixmap
.buf_align
= 1;
1622 fb_info
->pixmap
.scan_align
= 1;
1623 fb_info
->pixmap
.access_align
= 32;
1624 fb_info
->pixmap
.flags
= FB_PIXMAP_DEFAULT
;
1627 fb_info
->pixmap
.offset
= 0;
1629 if (!fb_info
->pixmap
.blit_x
)
1630 fb_info
->pixmap
.blit_x
= ~(u32
)0;
1632 if (!fb_info
->pixmap
.blit_y
)
1633 fb_info
->pixmap
.blit_y
= ~(u32
)0;
1635 if (!fb_info
->modelist
.prev
|| !fb_info
->modelist
.next
)
1636 INIT_LIST_HEAD(&fb_info
->modelist
);
1638 fb_var_to_videomode(&mode
, &fb_info
->var
);
1639 fb_add_videomode(&mode
, &fb_info
->modelist
);
1640 registered_fb
[i
] = fb_info
;
1642 event
.info
= fb_info
;
1643 if (!lock_fb_info(fb_info
))
1645 fb_notifier_call_chain(FB_EVENT_FB_REGISTERED
, &event
);
1646 unlock_fb_info(fb_info
);
1650 static int do_unregister_framebuffer(struct fb_info
*fb_info
)
1652 struct fb_event event
;
1656 if (i
< 0 || i
>= FB_MAX
|| registered_fb
[i
] != fb_info
)
1659 if (!lock_fb_info(fb_info
))
1661 event
.info
= fb_info
;
1662 ret
= fb_notifier_call_chain(FB_EVENT_FB_UNBIND
, &event
);
1663 unlock_fb_info(fb_info
);
1668 unlink_framebuffer(fb_info
);
1669 if (fb_info
->pixmap
.addr
&&
1670 (fb_info
->pixmap
.flags
& FB_PIXMAP_DEFAULT
))
1671 kfree(fb_info
->pixmap
.addr
);
1672 fb_destroy_modelist(&fb_info
->modelist
);
1673 registered_fb
[i
] = NULL
;
1674 num_registered_fb
--;
1675 fb_cleanup_device(fb_info
);
1676 event
.info
= fb_info
;
1677 fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED
, &event
);
1679 /* this may free fb info */
1680 put_fb_info(fb_info
);
1684 int unlink_framebuffer(struct fb_info
*fb_info
)
1689 if (i
< 0 || i
>= FB_MAX
|| registered_fb
[i
] != fb_info
)
1693 device_destroy(fb_class
, MKDEV(FB_MAJOR
, i
));
1694 fb_info
->dev
= NULL
;
1698 EXPORT_SYMBOL(unlink_framebuffer
);
1700 void remove_conflicting_framebuffers(struct apertures_struct
*a
,
1701 const char *name
, bool primary
)
1703 mutex_lock(®istration_lock
);
1704 do_remove_conflicting_framebuffers(a
, name
, primary
);
1705 mutex_unlock(®istration_lock
);
1707 EXPORT_SYMBOL(remove_conflicting_framebuffers
);
1710 * register_framebuffer - registers a frame buffer device
1711 * @fb_info: frame buffer info structure
1713 * Registers a frame buffer device @fb_info.
1715 * Returns negative errno on error, or zero for success.
1719 register_framebuffer(struct fb_info
*fb_info
)
1723 mutex_lock(®istration_lock
);
1724 ret
= do_register_framebuffer(fb_info
);
1725 mutex_unlock(®istration_lock
);
1731 * unregister_framebuffer - releases a frame buffer device
1732 * @fb_info: frame buffer info structure
1734 * Unregisters a frame buffer device @fb_info.
1736 * Returns negative errno on error, or zero for success.
1738 * This function will also notify the framebuffer console
1739 * to release the driver.
1741 * This is meant to be called within a driver's module_exit()
1742 * function. If this is called outside module_exit(), ensure
1743 * that the driver implements fb_open() and fb_release() to
1744 * check that no processes are using the device.
1747 unregister_framebuffer(struct fb_info
*fb_info
)
1751 mutex_lock(®istration_lock
);
1752 ret
= do_unregister_framebuffer(fb_info
);
1753 mutex_unlock(®istration_lock
);
1759 * fb_set_suspend - low level driver signals suspend
1760 * @info: framebuffer affected
1761 * @state: 0 = resuming, !=0 = suspending
1763 * This is meant to be used by low level drivers to
1764 * signal suspend/resume to the core & clients.
1765 * It must be called with the console semaphore held
1767 void fb_set_suspend(struct fb_info
*info
, int state
)
1769 struct fb_event event
;
1773 fb_notifier_call_chain(FB_EVENT_SUSPEND
, &event
);
1774 info
->state
= FBINFO_STATE_SUSPENDED
;
1776 info
->state
= FBINFO_STATE_RUNNING
;
1777 fb_notifier_call_chain(FB_EVENT_RESUME
, &event
);
1782 * fbmem_init - init frame buffer subsystem
1784 * Initialize the frame buffer subsystem.
1786 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1793 proc_create("fb", 0, NULL
, &fb_proc_fops
);
1795 if (register_chrdev(FB_MAJOR
,"fb",&fb_fops
))
1796 printk("unable to get major %d for fb devs\n", FB_MAJOR
);
1798 fb_class
= class_create(THIS_MODULE
, "graphics");
1799 if (IS_ERR(fb_class
)) {
1800 printk(KERN_WARNING
"Unable to create fb class; errno = %ld\n", PTR_ERR(fb_class
));
1807 module_init(fbmem_init
);
1811 remove_proc_entry("fb", NULL
);
1812 class_destroy(fb_class
);
1813 unregister_chrdev(FB_MAJOR
, "fb");
1816 module_exit(fbmem_exit
);
1817 MODULE_LICENSE("GPL");
1818 MODULE_DESCRIPTION("Framebuffer base");
1820 subsys_initcall(fbmem_init
);
1823 int fb_new_modelist(struct fb_info
*info
)
1825 struct fb_event event
;
1826 struct fb_var_screeninfo var
= info
->var
;
1827 struct list_head
*pos
, *n
;
1828 struct fb_modelist
*modelist
;
1829 struct fb_videomode
*m
, mode
;
1832 list_for_each_safe(pos
, n
, &info
->modelist
) {
1833 modelist
= list_entry(pos
, struct fb_modelist
, list
);
1834 m
= &modelist
->mode
;
1835 fb_videomode_to_var(&var
, m
);
1836 var
.activate
= FB_ACTIVATE_TEST
;
1837 err
= fb_set_var(info
, &var
);
1838 fb_var_to_videomode(&mode
, &var
);
1839 if (err
|| !fb_mode_is_equal(m
, &mode
)) {
1847 if (!list_empty(&info
->modelist
)) {
1848 if (!lock_fb_info(info
))
1851 err
= fb_notifier_call_chain(FB_EVENT_NEW_MODELIST
, &event
);
1852 unlock_fb_info(info
);
1858 static char *video_options
[FB_MAX
] __read_mostly
;
1859 static int ofonly __read_mostly
;
1862 * fb_get_options - get kernel boot parameters
1863 * @name: framebuffer name as it would appear in
1864 * the boot parameter line
1865 * (video=<name>:<options>)
1866 * @option: the option will be stored here
1868 * NOTE: Needed to maintain backwards compatibility
1870 int fb_get_options(char *name
, char **option
)
1872 char *opt
, *options
= NULL
;
1874 int name_len
= strlen(name
), i
;
1876 if (name_len
&& ofonly
&& strncmp(name
, "offb", 4))
1879 if (name_len
&& !retval
) {
1880 for (i
= 0; i
< FB_MAX
; i
++) {
1881 if (video_options
[i
] == NULL
)
1883 if (!video_options
[i
][0])
1885 opt
= video_options
[i
];
1886 if (!strncmp(name
, opt
, name_len
) &&
1887 opt
[name_len
] == ':')
1888 options
= opt
+ name_len
+ 1;
1891 if (options
&& !strncmp(options
, "off", 3))
1902 * video_setup - process command line options
1903 * @options: string of options
1905 * Process command line options for frame buffer subsystem.
1907 * NOTE: This function is a __setup and __init function.
1908 * It only stores the options. Drivers have to call
1909 * fb_get_options() as necessary.
1914 static int __init
video_setup(char *options
)
1918 if (!options
|| !*options
)
1921 if (!global
&& !strncmp(options
, "ofonly", 6)) {
1926 if (!global
&& !strchr(options
, ':')) {
1927 fb_mode_option
= options
;
1932 for (i
= 0; i
< FB_MAX
; i
++) {
1933 if (video_options
[i
] == NULL
) {
1934 video_options
[i
] = options
;
1943 __setup("video=", video_setup
);
1947 * Visible symbols for modules
1950 EXPORT_SYMBOL(register_framebuffer
);
1951 EXPORT_SYMBOL(unregister_framebuffer
);
1952 EXPORT_SYMBOL(num_registered_fb
);
1953 EXPORT_SYMBOL(registered_fb
);
1954 EXPORT_SYMBOL(fb_show_logo
);
1955 EXPORT_SYMBOL(fb_set_var
);
1956 EXPORT_SYMBOL(fb_blank
);
1957 EXPORT_SYMBOL(fb_pan_display
);
1958 EXPORT_SYMBOL(fb_get_buffer_offset
);
1959 EXPORT_SYMBOL(fb_set_suspend
);
1960 EXPORT_SYMBOL(fb_get_options
);
1962 MODULE_LICENSE("GPL");