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>
35 #include <linux/fbcon.h>
36 #include <linux/mem_encrypt.h>
42 * Frame buffer device initialization and setup routines
45 #define FBPIXMAPSIZE (1024 * 8)
47 static DEFINE_MUTEX(registration_lock
);
49 struct fb_info
*registered_fb
[FB_MAX
] __read_mostly
;
50 EXPORT_SYMBOL(registered_fb
);
52 int num_registered_fb __read_mostly
;
53 EXPORT_SYMBOL(num_registered_fb
);
55 static struct fb_info
*get_fb_info(unsigned int idx
)
57 struct fb_info
*fb_info
;
60 return ERR_PTR(-ENODEV
);
62 mutex_lock(®istration_lock
);
63 fb_info
= registered_fb
[idx
];
65 atomic_inc(&fb_info
->count
);
66 mutex_unlock(®istration_lock
);
71 static void put_fb_info(struct fb_info
*fb_info
)
73 if (!atomic_dec_and_test(&fb_info
->count
))
75 if (fb_info
->fbops
->fb_destroy
)
76 fb_info
->fbops
->fb_destroy(fb_info
);
79 int lock_fb_info(struct fb_info
*info
)
81 mutex_lock(&info
->lock
);
83 mutex_unlock(&info
->lock
);
88 EXPORT_SYMBOL(lock_fb_info
);
94 int fb_get_color_depth(struct fb_var_screeninfo
*var
,
95 struct fb_fix_screeninfo
*fix
)
99 if (fix
->visual
== FB_VISUAL_MONO01
||
100 fix
->visual
== FB_VISUAL_MONO10
)
103 if (var
->green
.length
== var
->blue
.length
&&
104 var
->green
.length
== var
->red
.length
&&
105 var
->green
.offset
== var
->blue
.offset
&&
106 var
->green
.offset
== var
->red
.offset
)
107 depth
= var
->green
.length
;
109 depth
= var
->green
.length
+ var
->red
.length
+
115 EXPORT_SYMBOL(fb_get_color_depth
);
118 * Data padding functions.
120 void fb_pad_aligned_buffer(u8
*dst
, u32 d_pitch
, u8
*src
, u32 s_pitch
, u32 height
)
122 __fb_pad_aligned_buffer(dst
, d_pitch
, src
, s_pitch
, height
);
124 EXPORT_SYMBOL(fb_pad_aligned_buffer
);
126 void fb_pad_unaligned_buffer(u8
*dst
, u32 d_pitch
, u8
*src
, u32 idx
, u32 height
,
127 u32 shift_high
, u32 shift_low
, u32 mod
)
129 u8 mask
= (u8
) (0xfff << shift_high
), tmp
;
132 for (i
= height
; i
--; ) {
133 for (j
= 0; j
< idx
; j
++) {
136 tmp
|= *src
>> shift_low
;
138 tmp
= *src
<< shift_high
;
144 tmp
|= *src
>> shift_low
;
146 if (shift_high
< mod
) {
147 tmp
= *src
<< shift_high
;
154 EXPORT_SYMBOL(fb_pad_unaligned_buffer
);
157 * we need to lock this section since fb_cursor
158 * may use fb_imageblit()
160 char* fb_get_buffer_offset(struct fb_info
*info
, struct fb_pixmap
*buf
, u32 size
)
162 u32 align
= buf
->buf_align
- 1, offset
;
163 char *addr
= buf
->addr
;
165 /* If IO mapped, we need to sync before access, no sharing of
168 if (buf
->flags
& FB_PIXMAP_IO
) {
169 if (info
->fbops
->fb_sync
&& (buf
->flags
& FB_PIXMAP_SYNC
))
170 info
->fbops
->fb_sync(info
);
174 /* See if we fit in the remaining pixmap space */
175 offset
= buf
->offset
+ align
;
177 if (offset
+ size
> buf
->size
) {
178 /* We do not fit. In order to be able to re-use the buffer,
179 * we must ensure no asynchronous DMA'ing or whatever operation
180 * is in progress, we sync for that.
182 if (info
->fbops
->fb_sync
&& (buf
->flags
& FB_PIXMAP_SYNC
))
183 info
->fbops
->fb_sync(info
);
186 buf
->offset
= offset
+ size
;
191 EXPORT_SYMBOL(fb_get_buffer_offset
);
195 static inline unsigned safe_shift(unsigned d
, int n
)
197 return n
< 0 ? d
>> -n
: d
<< n
;
200 static void fb_set_logocmap(struct fb_info
*info
,
201 const struct linux_logo
*logo
)
203 struct fb_cmap palette_cmap
;
204 u16 palette_green
[16];
205 u16 palette_blue
[16];
208 const unsigned char *clut
= logo
->clut
;
210 palette_cmap
.start
= 0;
211 palette_cmap
.len
= 16;
212 palette_cmap
.red
= palette_red
;
213 palette_cmap
.green
= palette_green
;
214 palette_cmap
.blue
= palette_blue
;
215 palette_cmap
.transp
= NULL
;
217 for (i
= 0; i
< logo
->clutsize
; i
+= n
) {
218 n
= logo
->clutsize
- i
;
219 /* palette_cmap provides space for only 16 colors at once */
222 palette_cmap
.start
= 32 + i
;
223 palette_cmap
.len
= n
;
224 for (j
= 0; j
< n
; ++j
) {
225 palette_cmap
.red
[j
] = clut
[0] << 8 | clut
[0];
226 palette_cmap
.green
[j
] = clut
[1] << 8 | clut
[1];
227 palette_cmap
.blue
[j
] = clut
[2] << 8 | clut
[2];
230 fb_set_cmap(&palette_cmap
, info
);
234 static void fb_set_logo_truepalette(struct fb_info
*info
,
235 const struct linux_logo
*logo
,
238 static const unsigned char mask
[] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
239 unsigned char redmask
, greenmask
, bluemask
;
240 int redshift
, greenshift
, blueshift
;
242 const unsigned char *clut
= logo
->clut
;
245 * We have to create a temporary palette since console palette is only
248 /* Bug: Doesn't obey msb_right ... (who needs that?) */
249 redmask
= mask
[info
->var
.red
.length
< 8 ? info
->var
.red
.length
: 8];
250 greenmask
= mask
[info
->var
.green
.length
< 8 ? info
->var
.green
.length
: 8];
251 bluemask
= mask
[info
->var
.blue
.length
< 8 ? info
->var
.blue
.length
: 8];
252 redshift
= info
->var
.red
.offset
- (8 - info
->var
.red
.length
);
253 greenshift
= info
->var
.green
.offset
- (8 - info
->var
.green
.length
);
254 blueshift
= info
->var
.blue
.offset
- (8 - info
->var
.blue
.length
);
256 for ( i
= 0; i
< logo
->clutsize
; i
++) {
257 palette
[i
+32] = (safe_shift((clut
[0] & redmask
), redshift
) |
258 safe_shift((clut
[1] & greenmask
), greenshift
) |
259 safe_shift((clut
[2] & bluemask
), blueshift
));
264 static void fb_set_logo_directpalette(struct fb_info
*info
,
265 const struct linux_logo
*logo
,
268 int redshift
, greenshift
, blueshift
;
271 redshift
= info
->var
.red
.offset
;
272 greenshift
= info
->var
.green
.offset
;
273 blueshift
= info
->var
.blue
.offset
;
275 for (i
= 32; i
< 32 + logo
->clutsize
; i
++)
276 palette
[i
] = i
<< redshift
| i
<< greenshift
| i
<< blueshift
;
279 static void fb_set_logo(struct fb_info
*info
,
280 const struct linux_logo
*logo
, u8
*dst
,
284 const u8
*src
= logo
->data
;
285 u8
xor = (info
->fix
.visual
== FB_VISUAL_MONO01
) ? 0xff : 0;
288 switch (fb_get_color_depth(&info
->var
, &info
->fix
)) {
300 if (info
->fix
.visual
== FB_VISUAL_MONO01
||
301 info
->fix
.visual
== FB_VISUAL_MONO10
)
302 fg
= ~((u8
) (0xfff << info
->var
.green
.length
));
306 for (i
= 0; i
< logo
->height
; i
++)
307 for (j
= 0; j
< logo
->width
; src
++) {
310 if (j
< logo
->width
) {
311 *dst
++ = *src
& 0x0f;
317 for (i
= 0; i
< logo
->height
; i
++) {
318 for (j
= 0; j
< logo
->width
; src
++) {
320 for (k
= 7; k
>= 0 && j
< logo
->width
; k
--) {
321 *dst
++ = ((d
>> k
) & 1) ? fg
: 0;
331 * Three (3) kinds of logo maps exist. linux_logo_clut224 (>16 colors),
332 * linux_logo_vga16 (16 colors) and linux_logo_mono (2 colors). Depending on
333 * the visual format and color depth of the framebuffer, the DAC, the
334 * pseudo_palette, and the logo data will be adjusted accordingly.
336 * Case 1 - linux_logo_clut224:
337 * Color exceeds the number of console colors (16), thus we set the hardware DAC
338 * using fb_set_cmap() appropriately. The "needs_cmapreset" flag will be set.
340 * For visuals that require color info from the pseudo_palette, we also construct
341 * one for temporary use. The "needs_directpalette" or "needs_truepalette" flags
344 * Case 2 - linux_logo_vga16:
345 * The number of colors just matches the console colors, thus there is no need
346 * to set the DAC or the pseudo_palette. However, the bitmap is packed, ie,
347 * each byte contains color information for two pixels (upper and lower nibble).
348 * To be consistent with fb_imageblit() usage, we therefore separate the two
349 * nibbles into separate bytes. The "depth" flag will be set to 4.
351 * Case 3 - linux_logo_mono:
352 * This is similar with Case 2. Each byte contains information for 8 pixels.
353 * We isolate each bit and expand each into a byte. The "depth" flag will
356 static struct logo_data
{
358 int needs_directpalette
;
359 int needs_truepalette
;
361 const struct linux_logo
*logo
;
362 } fb_logo __read_mostly
;
364 static void fb_rotate_logo_ud(const u8
*in
, u8
*out
, u32 width
, u32 height
)
366 u32 size
= width
* height
, i
;
370 for (i
= size
; i
--; )
374 static void fb_rotate_logo_cw(const u8
*in
, u8
*out
, u32 width
, u32 height
)
376 int i
, j
, h
= height
- 1;
378 for (i
= 0; i
< height
; i
++)
379 for (j
= 0; j
< width
; j
++)
380 out
[height
* j
+ h
- i
] = *in
++;
383 static void fb_rotate_logo_ccw(const u8
*in
, u8
*out
, u32 width
, u32 height
)
385 int i
, j
, w
= width
- 1;
387 for (i
= 0; i
< height
; i
++)
388 for (j
= 0; j
< width
; j
++)
389 out
[height
* (w
- j
) + i
] = *in
++;
392 static void fb_rotate_logo(struct fb_info
*info
, u8
*dst
,
393 struct fb_image
*image
, int rotate
)
397 if (rotate
== FB_ROTATE_UD
) {
398 fb_rotate_logo_ud(image
->data
, dst
, image
->width
,
400 image
->dx
= info
->var
.xres
- image
->width
- image
->dx
;
401 image
->dy
= info
->var
.yres
- image
->height
- image
->dy
;
402 } else if (rotate
== FB_ROTATE_CW
) {
403 fb_rotate_logo_cw(image
->data
, dst
, image
->width
,
406 image
->width
= image
->height
;
409 image
->dy
= image
->dx
;
410 image
->dx
= info
->var
.xres
- image
->width
- tmp
;
411 } else if (rotate
== FB_ROTATE_CCW
) {
412 fb_rotate_logo_ccw(image
->data
, dst
, image
->width
,
415 image
->width
= image
->height
;
418 image
->dx
= image
->dy
;
419 image
->dy
= info
->var
.yres
- image
->height
- tmp
;
425 static void fb_do_show_logo(struct fb_info
*info
, struct fb_image
*image
,
426 int rotate
, unsigned int num
)
430 if (rotate
== FB_ROTATE_UR
) {
432 x
< num
&& image
->dx
+ image
->width
<= info
->var
.xres
;
434 info
->fbops
->fb_imageblit(info
, image
);
435 image
->dx
+= image
->width
+ 8;
437 } else if (rotate
== FB_ROTATE_UD
) {
438 for (x
= 0; x
< num
; x
++) {
439 info
->fbops
->fb_imageblit(info
, image
);
440 image
->dx
-= image
->width
+ 8;
442 } else if (rotate
== FB_ROTATE_CW
) {
444 x
< num
&& image
->dy
+ image
->height
<= info
->var
.yres
;
446 info
->fbops
->fb_imageblit(info
, image
);
447 image
->dy
+= image
->height
+ 8;
449 } else if (rotate
== FB_ROTATE_CCW
) {
450 for (x
= 0; x
< num
; x
++) {
451 info
->fbops
->fb_imageblit(info
, image
);
452 image
->dy
-= image
->height
+ 8;
457 static int fb_show_logo_line(struct fb_info
*info
, int rotate
,
458 const struct linux_logo
*logo
, int y
,
461 u32
*palette
= NULL
, *saved_pseudo_palette
= NULL
;
462 unsigned char *logo_new
= NULL
, *logo_rotate
= NULL
;
463 struct fb_image image
;
465 /* Return if the frame buffer is not mapped or suspended */
466 if (logo
== NULL
|| info
->state
!= FBINFO_STATE_RUNNING
||
471 image
.data
= logo
->data
;
473 if (fb_logo
.needs_cmapreset
)
474 fb_set_logocmap(info
, logo
);
476 if (fb_logo
.needs_truepalette
||
477 fb_logo
.needs_directpalette
) {
478 palette
= kmalloc(256 * 4, GFP_KERNEL
);
482 if (fb_logo
.needs_truepalette
)
483 fb_set_logo_truepalette(info
, logo
, palette
);
485 fb_set_logo_directpalette(info
, logo
, palette
);
487 saved_pseudo_palette
= info
->pseudo_palette
;
488 info
->pseudo_palette
= palette
;
491 if (fb_logo
.depth
<= 4) {
492 logo_new
= kmalloc(logo
->width
* logo
->height
, GFP_KERNEL
);
493 if (logo_new
== NULL
) {
495 if (saved_pseudo_palette
)
496 info
->pseudo_palette
= saved_pseudo_palette
;
499 image
.data
= logo_new
;
500 fb_set_logo(info
, logo
, logo_new
, fb_logo
.depth
);
505 image
.width
= logo
->width
;
506 image
.height
= logo
->height
;
509 logo_rotate
= kmalloc(logo
->width
*
510 logo
->height
, GFP_KERNEL
);
512 fb_rotate_logo(info
, logo_rotate
, &image
, rotate
);
515 fb_do_show_logo(info
, &image
, rotate
, n
);
518 if (saved_pseudo_palette
!= NULL
)
519 info
->pseudo_palette
= saved_pseudo_palette
;
526 #ifdef CONFIG_FB_LOGO_EXTRA
528 #define FB_LOGO_EX_NUM_MAX 10
529 static struct logo_data_extra
{
530 const struct linux_logo
*logo
;
532 } fb_logo_ex
[FB_LOGO_EX_NUM_MAX
];
533 static unsigned int fb_logo_ex_num
;
535 void fb_append_extra_logo(const struct linux_logo
*logo
, unsigned int n
)
537 if (!n
|| fb_logo_ex_num
== FB_LOGO_EX_NUM_MAX
)
540 fb_logo_ex
[fb_logo_ex_num
].logo
= logo
;
541 fb_logo_ex
[fb_logo_ex_num
].n
= n
;
545 static int fb_prepare_extra_logos(struct fb_info
*info
, unsigned int height
,
550 /* FIXME: logo_ex supports only truecolor fb. */
551 if (info
->fix
.visual
!= FB_VISUAL_TRUECOLOR
)
554 for (i
= 0; i
< fb_logo_ex_num
; i
++) {
555 if (fb_logo_ex
[i
].logo
->type
!= fb_logo
.logo
->type
) {
556 fb_logo_ex
[i
].logo
= NULL
;
559 height
+= fb_logo_ex
[i
].logo
->height
;
561 height
-= fb_logo_ex
[i
].logo
->height
;
569 static int fb_show_extra_logos(struct fb_info
*info
, int y
, int rotate
)
573 for (i
= 0; i
< fb_logo_ex_num
; i
++)
574 y
+= fb_show_logo_line(info
, rotate
,
575 fb_logo_ex
[i
].logo
, y
, fb_logo_ex
[i
].n
);
580 #else /* !CONFIG_FB_LOGO_EXTRA */
582 static inline int fb_prepare_extra_logos(struct fb_info
*info
,
589 static inline int fb_show_extra_logos(struct fb_info
*info
, int y
, int rotate
)
594 #endif /* CONFIG_FB_LOGO_EXTRA */
597 int fb_prepare_logo(struct fb_info
*info
, int rotate
)
599 int depth
= fb_get_color_depth(&info
->var
, &info
->fix
);
602 memset(&fb_logo
, 0, sizeof(struct logo_data
));
604 if (info
->flags
& FBINFO_MISC_TILEBLITTING
||
608 if (info
->fix
.visual
== FB_VISUAL_DIRECTCOLOR
) {
609 depth
= info
->var
.blue
.length
;
610 if (info
->var
.red
.length
< depth
)
611 depth
= info
->var
.red
.length
;
612 if (info
->var
.green
.length
< depth
)
613 depth
= info
->var
.green
.length
;
616 if (info
->fix
.visual
== FB_VISUAL_STATIC_PSEUDOCOLOR
&& depth
> 4) {
617 /* assume console colormap */
621 /* Return if no suitable logo was found */
622 fb_logo
.logo
= fb_find_logo(depth
);
628 if (rotate
== FB_ROTATE_UR
|| rotate
== FB_ROTATE_UD
)
629 yres
= info
->var
.yres
;
631 yres
= info
->var
.xres
;
633 if (fb_logo
.logo
->height
> yres
) {
638 /* What depth we asked for might be different from what we get */
639 if (fb_logo
.logo
->type
== LINUX_LOGO_CLUT224
)
641 else if (fb_logo
.logo
->type
== LINUX_LOGO_VGA16
)
647 if (fb_logo
.depth
> 4 && depth
> 4) {
648 switch (info
->fix
.visual
) {
649 case FB_VISUAL_TRUECOLOR
:
650 fb_logo
.needs_truepalette
= 1;
652 case FB_VISUAL_DIRECTCOLOR
:
653 fb_logo
.needs_directpalette
= 1;
654 fb_logo
.needs_cmapreset
= 1;
656 case FB_VISUAL_PSEUDOCOLOR
:
657 fb_logo
.needs_cmapreset
= 1;
662 return fb_prepare_extra_logos(info
, fb_logo
.logo
->height
, yres
);
665 int fb_show_logo(struct fb_info
*info
, int rotate
)
669 y
= fb_show_logo_line(info
, rotate
, fb_logo
.logo
, 0,
671 y
= fb_show_extra_logos(info
, y
, rotate
);
676 int fb_prepare_logo(struct fb_info
*info
, int rotate
) { return 0; }
677 int fb_show_logo(struct fb_info
*info
, int rotate
) { return 0; }
678 #endif /* CONFIG_LOGO */
679 EXPORT_SYMBOL(fb_prepare_logo
);
680 EXPORT_SYMBOL(fb_show_logo
);
682 static void *fb_seq_start(struct seq_file
*m
, loff_t
*pos
)
684 mutex_lock(®istration_lock
);
685 return (*pos
< FB_MAX
) ? pos
: NULL
;
688 static void *fb_seq_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
691 return (*pos
< FB_MAX
) ? pos
: NULL
;
694 static void fb_seq_stop(struct seq_file
*m
, void *v
)
696 mutex_unlock(®istration_lock
);
699 static int fb_seq_show(struct seq_file
*m
, void *v
)
701 int i
= *(loff_t
*)v
;
702 struct fb_info
*fi
= registered_fb
[i
];
705 seq_printf(m
, "%d %s\n", fi
->node
, fi
->fix
.id
);
709 static const struct seq_operations proc_fb_seq_ops
= {
710 .start
= fb_seq_start
,
716 static int proc_fb_open(struct inode
*inode
, struct file
*file
)
718 return seq_open(file
, &proc_fb_seq_ops
);
721 static const struct file_operations fb_proc_fops
= {
722 .owner
= THIS_MODULE
,
723 .open
= proc_fb_open
,
726 .release
= seq_release
,
730 * We hold a reference to the fb_info in file->private_data,
731 * but if the current registered fb has changed, we don't
732 * actually want to use it.
734 * So look up the fb_info using the inode minor number,
735 * and just verify it against the reference we have.
737 static struct fb_info
*file_fb_info(struct file
*file
)
739 struct inode
*inode
= file_inode(file
);
740 int fbidx
= iminor(inode
);
741 struct fb_info
*info
= registered_fb
[fbidx
];
743 if (info
!= file
->private_data
)
749 fb_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*ppos
)
751 unsigned long p
= *ppos
;
752 struct fb_info
*info
= file_fb_info(file
);
755 int c
, cnt
= 0, err
= 0;
756 unsigned long total_size
;
758 if (!info
|| ! info
->screen_base
)
761 if (info
->state
!= FBINFO_STATE_RUNNING
)
764 if (info
->fbops
->fb_read
)
765 return info
->fbops
->fb_read(info
, buf
, count
, ppos
);
767 total_size
= info
->screen_size
;
770 total_size
= info
->fix
.smem_len
;
775 if (count
>= total_size
)
778 if (count
+ p
> total_size
)
779 count
= total_size
- p
;
781 buffer
= kmalloc((count
> PAGE_SIZE
) ? PAGE_SIZE
: count
,
786 src
= (u8 __iomem
*) (info
->screen_base
+ p
);
788 if (info
->fbops
->fb_sync
)
789 info
->fbops
->fb_sync(info
);
792 c
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
794 fb_memcpy_fromfb(dst
, src
, c
);
798 if (copy_to_user(buf
, buffer
, c
)) {
810 return (err
) ? err
: cnt
;
814 fb_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*ppos
)
816 unsigned long p
= *ppos
;
817 struct fb_info
*info
= file_fb_info(file
);
820 int c
, cnt
= 0, err
= 0;
821 unsigned long total_size
;
823 if (!info
|| !info
->screen_base
)
826 if (info
->state
!= FBINFO_STATE_RUNNING
)
829 if (info
->fbops
->fb_write
)
830 return info
->fbops
->fb_write(info
, buf
, count
, ppos
);
832 total_size
= info
->screen_size
;
835 total_size
= info
->fix
.smem_len
;
840 if (count
> total_size
) {
845 if (count
+ p
> total_size
) {
849 count
= total_size
- p
;
852 buffer
= kmalloc((count
> PAGE_SIZE
) ? PAGE_SIZE
: count
,
857 dst
= (u8 __iomem
*) (info
->screen_base
+ p
);
859 if (info
->fbops
->fb_sync
)
860 info
->fbops
->fb_sync(info
);
863 c
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
866 if (copy_from_user(src
, buf
, c
)) {
871 fb_memcpy_tofb(dst
, src
, c
);
882 return (cnt
) ? cnt
: err
;
886 fb_pan_display(struct fb_info
*info
, struct fb_var_screeninfo
*var
)
888 struct fb_fix_screeninfo
*fix
= &info
->fix
;
889 unsigned int yres
= info
->var
.yres
;
892 if (var
->yoffset
> 0) {
893 if (var
->vmode
& FB_VMODE_YWRAP
) {
894 if (!fix
->ywrapstep
|| (var
->yoffset
% fix
->ywrapstep
))
898 } else if (!fix
->ypanstep
|| (var
->yoffset
% fix
->ypanstep
))
902 if (var
->xoffset
> 0 && (!fix
->xpanstep
||
903 (var
->xoffset
% fix
->xpanstep
)))
906 if (err
|| !info
->fbops
->fb_pan_display
||
907 var
->yoffset
> info
->var
.yres_virtual
- yres
||
908 var
->xoffset
> info
->var
.xres_virtual
- info
->var
.xres
)
911 if ((err
= info
->fbops
->fb_pan_display(var
, info
)))
913 info
->var
.xoffset
= var
->xoffset
;
914 info
->var
.yoffset
= var
->yoffset
;
915 if (var
->vmode
& FB_VMODE_YWRAP
)
916 info
->var
.vmode
|= FB_VMODE_YWRAP
;
918 info
->var
.vmode
&= ~FB_VMODE_YWRAP
;
921 EXPORT_SYMBOL(fb_pan_display
);
923 static int fb_check_caps(struct fb_info
*info
, struct fb_var_screeninfo
*var
,
926 struct fb_event event
;
927 struct fb_blit_caps caps
, fbcaps
;
930 memset(&caps
, 0, sizeof(caps
));
931 memset(&fbcaps
, 0, sizeof(fbcaps
));
932 caps
.flags
= (activate
& FB_ACTIVATE_ALL
) ? 1 : 0;
935 fb_notifier_call_chain(FB_EVENT_GET_REQ
, &event
);
936 info
->fbops
->fb_get_caps(info
, &fbcaps
, var
);
938 if (((fbcaps
.x
^ caps
.x
) & caps
.x
) ||
939 ((fbcaps
.y
^ caps
.y
) & caps
.y
) ||
940 (fbcaps
.len
< caps
.len
))
947 fb_set_var(struct fb_info
*info
, struct fb_var_screeninfo
*var
)
949 int flags
= info
->flags
;
952 if (var
->activate
& FB_ACTIVATE_INV_MODE
) {
953 struct fb_videomode mode1
, mode2
;
955 fb_var_to_videomode(&mode1
, var
);
956 fb_var_to_videomode(&mode2
, &info
->var
);
957 /* make sure we don't delete the videomode of current var */
958 ret
= fb_mode_is_equal(&mode1
, &mode2
);
961 struct fb_event event
;
965 ret
= fb_notifier_call_chain(FB_EVENT_MODE_DELETE
, &event
);
969 fb_delete_videomode(&mode1
, &info
->modelist
);
972 ret
= (ret
) ? -EINVAL
: 0;
976 if ((var
->activate
& FB_ACTIVATE_FORCE
) ||
977 memcmp(&info
->var
, var
, sizeof(struct fb_var_screeninfo
))) {
978 u32 activate
= var
->activate
;
980 /* When using FOURCC mode, make sure the red, green, blue and
981 * transp fields are set to 0.
983 if ((info
->fix
.capabilities
& FB_CAP_FOURCC
) &&
984 var
->grayscale
> 1) {
985 if (var
->red
.offset
|| var
->green
.offset
||
986 var
->blue
.offset
|| var
->transp
.offset
||
987 var
->red
.length
|| var
->green
.length
||
988 var
->blue
.length
|| var
->transp
.length
||
989 var
->red
.msb_right
|| var
->green
.msb_right
||
990 var
->blue
.msb_right
|| var
->transp
.msb_right
)
994 if (!info
->fbops
->fb_check_var
) {
999 ret
= info
->fbops
->fb_check_var(var
, info
);
1004 if ((var
->activate
& FB_ACTIVATE_MASK
) == FB_ACTIVATE_NOW
) {
1005 struct fb_var_screeninfo old_var
;
1006 struct fb_videomode mode
;
1008 if (info
->fbops
->fb_get_caps
) {
1009 ret
= fb_check_caps(info
, var
, activate
);
1015 old_var
= info
->var
;
1018 if (info
->fbops
->fb_set_par
) {
1019 ret
= info
->fbops
->fb_set_par(info
);
1022 info
->var
= old_var
;
1023 printk(KERN_WARNING
"detected "
1024 "fb_set_par error, "
1025 "error code: %d\n", ret
);
1030 fb_pan_display(info
, &info
->var
);
1031 fb_set_cmap(&info
->cmap
, info
);
1032 fb_var_to_videomode(&mode
, &info
->var
);
1034 if (info
->modelist
.prev
&& info
->modelist
.next
&&
1035 !list_empty(&info
->modelist
))
1036 ret
= fb_add_videomode(&mode
, &info
->modelist
);
1038 if (!ret
&& (flags
& FBINFO_MISC_USEREVENT
)) {
1039 struct fb_event event
;
1040 int evnt
= (activate
& FB_ACTIVATE_ALL
) ?
1041 FB_EVENT_MODE_CHANGE_ALL
:
1042 FB_EVENT_MODE_CHANGE
;
1044 info
->flags
&= ~FBINFO_MISC_USEREVENT
;
1047 fb_notifier_call_chain(evnt
, &event
);
1055 EXPORT_SYMBOL(fb_set_var
);
1058 fb_blank(struct fb_info
*info
, int blank
)
1060 struct fb_event event
;
1061 int ret
= -EINVAL
, early_ret
;
1063 if (blank
> FB_BLANK_POWERDOWN
)
1064 blank
= FB_BLANK_POWERDOWN
;
1067 event
.data
= &blank
;
1069 early_ret
= fb_notifier_call_chain(FB_EARLY_EVENT_BLANK
, &event
);
1071 if (info
->fbops
->fb_blank
)
1072 ret
= info
->fbops
->fb_blank(blank
, info
);
1075 fb_notifier_call_chain(FB_EVENT_BLANK
, &event
);
1078 * if fb_blank is failed then revert effects of
1079 * the early blank event.
1082 fb_notifier_call_chain(FB_R_EARLY_EVENT_BLANK
, &event
);
1087 EXPORT_SYMBOL(fb_blank
);
1089 static long do_fb_ioctl(struct fb_info
*info
, unsigned int cmd
,
1093 struct fb_var_screeninfo var
;
1094 struct fb_fix_screeninfo fix
;
1095 struct fb_con2fbmap con2fb
;
1096 struct fb_cmap cmap_from
;
1097 struct fb_cmap_user cmap
;
1098 struct fb_event event
;
1099 void __user
*argp
= (void __user
*)arg
;
1103 case FBIOGET_VSCREENINFO
:
1104 if (!lock_fb_info(info
))
1107 unlock_fb_info(info
);
1109 ret
= copy_to_user(argp
, &var
, sizeof(var
)) ? -EFAULT
: 0;
1111 case FBIOPUT_VSCREENINFO
:
1112 if (copy_from_user(&var
, argp
, sizeof(var
)))
1115 if (!lock_fb_info(info
)) {
1119 info
->flags
|= FBINFO_MISC_USEREVENT
;
1120 ret
= fb_set_var(info
, &var
);
1121 info
->flags
&= ~FBINFO_MISC_USEREVENT
;
1122 unlock_fb_info(info
);
1124 if (!ret
&& copy_to_user(argp
, &var
, sizeof(var
)))
1127 case FBIOGET_FSCREENINFO
:
1128 if (!lock_fb_info(info
))
1131 unlock_fb_info(info
);
1133 ret
= copy_to_user(argp
, &fix
, sizeof(fix
)) ? -EFAULT
: 0;
1136 if (copy_from_user(&cmap
, argp
, sizeof(cmap
)))
1138 ret
= fb_set_user_cmap(&cmap
, info
);
1141 if (copy_from_user(&cmap
, argp
, sizeof(cmap
)))
1143 if (!lock_fb_info(info
))
1145 cmap_from
= info
->cmap
;
1146 unlock_fb_info(info
);
1147 ret
= fb_cmap_to_user(&cmap_from
, &cmap
);
1149 case FBIOPAN_DISPLAY
:
1150 if (copy_from_user(&var
, argp
, sizeof(var
)))
1153 if (!lock_fb_info(info
)) {
1157 ret
= fb_pan_display(info
, &var
);
1158 unlock_fb_info(info
);
1160 if (ret
== 0 && copy_to_user(argp
, &var
, sizeof(var
)))
1166 case FBIOGET_CON2FBMAP
:
1167 if (copy_from_user(&con2fb
, argp
, sizeof(con2fb
)))
1169 if (con2fb
.console
< 1 || con2fb
.console
> MAX_NR_CONSOLES
)
1171 con2fb
.framebuffer
= -1;
1172 event
.data
= &con2fb
;
1173 if (!lock_fb_info(info
))
1176 fb_notifier_call_chain(FB_EVENT_GET_CONSOLE_MAP
, &event
);
1177 unlock_fb_info(info
);
1178 ret
= copy_to_user(argp
, &con2fb
, sizeof(con2fb
)) ? -EFAULT
: 0;
1180 case FBIOPUT_CON2FBMAP
:
1181 if (copy_from_user(&con2fb
, argp
, sizeof(con2fb
)))
1183 if (con2fb
.console
< 1 || con2fb
.console
> MAX_NR_CONSOLES
)
1185 if (con2fb
.framebuffer
>= FB_MAX
)
1187 if (!registered_fb
[con2fb
.framebuffer
])
1188 request_module("fb%d", con2fb
.framebuffer
);
1189 if (!registered_fb
[con2fb
.framebuffer
]) {
1193 event
.data
= &con2fb
;
1195 if (!lock_fb_info(info
)) {
1200 ret
= fb_notifier_call_chain(FB_EVENT_SET_CONSOLE_MAP
, &event
);
1201 unlock_fb_info(info
);
1206 if (!lock_fb_info(info
)) {
1210 info
->flags
|= FBINFO_MISC_USEREVENT
;
1211 ret
= fb_blank(info
, arg
);
1212 info
->flags
&= ~FBINFO_MISC_USEREVENT
;
1213 unlock_fb_info(info
);
1217 if (!lock_fb_info(info
))
1221 ret
= fb
->fb_ioctl(info
, cmd
, arg
);
1224 unlock_fb_info(info
);
1229 static long fb_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1231 struct fb_info
*info
= file_fb_info(file
);
1235 return do_fb_ioctl(info
, cmd
, arg
);
1238 #ifdef CONFIG_COMPAT
1239 struct fb_fix_screeninfo32
{
1241 compat_caddr_t smem_start
;
1250 compat_caddr_t mmio_start
;
1260 compat_caddr_t green
;
1261 compat_caddr_t blue
;
1262 compat_caddr_t transp
;
1265 static int fb_getput_cmap(struct fb_info
*info
, unsigned int cmd
,
1268 struct fb_cmap_user __user
*cmap
;
1269 struct fb_cmap32 __user
*cmap32
;
1273 cmap
= compat_alloc_user_space(sizeof(*cmap
));
1274 cmap32
= compat_ptr(arg
);
1276 if (copy_in_user(&cmap
->start
, &cmap32
->start
, 2 * sizeof(__u32
)))
1279 if (get_user(data
, &cmap32
->red
) ||
1280 put_user(compat_ptr(data
), &cmap
->red
) ||
1281 get_user(data
, &cmap32
->green
) ||
1282 put_user(compat_ptr(data
), &cmap
->green
) ||
1283 get_user(data
, &cmap32
->blue
) ||
1284 put_user(compat_ptr(data
), &cmap
->blue
) ||
1285 get_user(data
, &cmap32
->transp
) ||
1286 put_user(compat_ptr(data
), &cmap
->transp
))
1289 err
= do_fb_ioctl(info
, cmd
, (unsigned long) cmap
);
1292 if (copy_in_user(&cmap32
->start
,
1300 static int do_fscreeninfo_to_user(struct fb_fix_screeninfo
*fix
,
1301 struct fb_fix_screeninfo32 __user
*fix32
)
1306 err
= copy_to_user(&fix32
->id
, &fix
->id
, sizeof(fix32
->id
));
1308 data
= (__u32
) (unsigned long) fix
->smem_start
;
1309 err
|= put_user(data
, &fix32
->smem_start
);
1311 err
|= put_user(fix
->smem_len
, &fix32
->smem_len
);
1312 err
|= put_user(fix
->type
, &fix32
->type
);
1313 err
|= put_user(fix
->type_aux
, &fix32
->type_aux
);
1314 err
|= put_user(fix
->visual
, &fix32
->visual
);
1315 err
|= put_user(fix
->xpanstep
, &fix32
->xpanstep
);
1316 err
|= put_user(fix
->ypanstep
, &fix32
->ypanstep
);
1317 err
|= put_user(fix
->ywrapstep
, &fix32
->ywrapstep
);
1318 err
|= put_user(fix
->line_length
, &fix32
->line_length
);
1320 data
= (__u32
) (unsigned long) fix
->mmio_start
;
1321 err
|= put_user(data
, &fix32
->mmio_start
);
1323 err
|= put_user(fix
->mmio_len
, &fix32
->mmio_len
);
1324 err
|= put_user(fix
->accel
, &fix32
->accel
);
1325 err
|= copy_to_user(fix32
->reserved
, fix
->reserved
,
1326 sizeof(fix
->reserved
));
1333 static int fb_get_fscreeninfo(struct fb_info
*info
, unsigned int cmd
,
1336 struct fb_fix_screeninfo fix
;
1338 if (!lock_fb_info(info
))
1341 unlock_fb_info(info
);
1342 return do_fscreeninfo_to_user(&fix
, compat_ptr(arg
));
1345 static long fb_compat_ioctl(struct file
*file
, unsigned int cmd
,
1348 struct fb_info
*info
= file_fb_info(file
);
1350 long ret
= -ENOIOCTLCMD
;
1356 case FBIOGET_VSCREENINFO
:
1357 case FBIOPUT_VSCREENINFO
:
1358 case FBIOPAN_DISPLAY
:
1359 case FBIOGET_CON2FBMAP
:
1360 case FBIOPUT_CON2FBMAP
:
1361 arg
= (unsigned long) compat_ptr(arg
);
1363 ret
= do_fb_ioctl(info
, cmd
, arg
);
1366 case FBIOGET_FSCREENINFO
:
1367 ret
= fb_get_fscreeninfo(info
, cmd
, arg
);
1372 ret
= fb_getput_cmap(info
, cmd
, arg
);
1376 if (fb
->fb_compat_ioctl
)
1377 ret
= fb
->fb_compat_ioctl(info
, cmd
, arg
);
1385 fb_mmap(struct file
*file
, struct vm_area_struct
* vma
)
1387 struct fb_info
*info
= file_fb_info(file
);
1389 unsigned long mmio_pgoff
;
1390 unsigned long start
;
1398 mutex_lock(&info
->mm_lock
);
1403 * The framebuffer needs to be accessed decrypted, be sure
1404 * SME protection is removed ahead of the call
1406 vma
->vm_page_prot
= pgprot_decrypted(vma
->vm_page_prot
);
1407 res
= fb
->fb_mmap(info
, vma
);
1408 mutex_unlock(&info
->mm_lock
);
1413 * Ugh. This can be either the frame buffer mapping, or
1414 * if pgoff points past it, the mmio mapping.
1416 start
= info
->fix
.smem_start
;
1417 len
= info
->fix
.smem_len
;
1418 mmio_pgoff
= PAGE_ALIGN((start
& ~PAGE_MASK
) + len
) >> PAGE_SHIFT
;
1419 if (vma
->vm_pgoff
>= mmio_pgoff
) {
1420 if (info
->var
.accel_flags
) {
1421 mutex_unlock(&info
->mm_lock
);
1425 vma
->vm_pgoff
-= mmio_pgoff
;
1426 start
= info
->fix
.mmio_start
;
1427 len
= info
->fix
.mmio_len
;
1429 mutex_unlock(&info
->mm_lock
);
1431 vma
->vm_page_prot
= vm_get_page_prot(vma
->vm_flags
);
1433 * The framebuffer needs to be accessed decrypted, be sure
1434 * SME protection is removed
1436 vma
->vm_page_prot
= pgprot_decrypted(vma
->vm_page_prot
);
1437 fb_pgprotect(file
, vma
, start
);
1439 return vm_iomap_memory(vma
, start
, len
);
1443 fb_open(struct inode
*inode
, struct file
*file
)
1444 __acquires(&info
->lock
)
1445 __releases(&info
->lock
)
1447 int fbidx
= iminor(inode
);
1448 struct fb_info
*info
;
1451 info
= get_fb_info(fbidx
);
1453 request_module("fb%d", fbidx
);
1454 info
= get_fb_info(fbidx
);
1459 return PTR_ERR(info
);
1461 mutex_lock(&info
->lock
);
1462 if (!try_module_get(info
->fbops
->owner
)) {
1466 file
->private_data
= info
;
1467 if (info
->fbops
->fb_open
) {
1468 res
= info
->fbops
->fb_open(info
,1);
1470 module_put(info
->fbops
->owner
);
1472 #ifdef CONFIG_FB_DEFERRED_IO
1474 fb_deferred_io_open(info
, inode
, file
);
1477 mutex_unlock(&info
->lock
);
1484 fb_release(struct inode
*inode
, struct file
*file
)
1485 __acquires(&info
->lock
)
1486 __releases(&info
->lock
)
1488 struct fb_info
* const info
= file
->private_data
;
1490 mutex_lock(&info
->lock
);
1491 if (info
->fbops
->fb_release
)
1492 info
->fbops
->fb_release(info
,1);
1493 module_put(info
->fbops
->owner
);
1494 mutex_unlock(&info
->lock
);
1499 #if defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && !defined(CONFIG_MMU)
1500 unsigned long get_fb_unmapped_area(struct file
*filp
,
1501 unsigned long addr
, unsigned long len
,
1502 unsigned long pgoff
, unsigned long flags
)
1504 struct fb_info
* const info
= filp
->private_data
;
1505 unsigned long fb_size
= PAGE_ALIGN(info
->fix
.smem_len
);
1507 if (pgoff
> fb_size
|| len
> fb_size
- pgoff
)
1510 return (unsigned long)info
->screen_base
+ pgoff
;
1514 static const struct file_operations fb_fops
= {
1515 .owner
= THIS_MODULE
,
1518 .unlocked_ioctl
= fb_ioctl
,
1519 #ifdef CONFIG_COMPAT
1520 .compat_ioctl
= fb_compat_ioctl
,
1524 .release
= fb_release
,
1525 #if defined(HAVE_ARCH_FB_UNMAPPED_AREA) || \
1526 (defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && \
1527 !defined(CONFIG_MMU))
1528 .get_unmapped_area
= get_fb_unmapped_area
,
1530 #ifdef CONFIG_FB_DEFERRED_IO
1531 .fsync
= fb_deferred_io_fsync
,
1533 .llseek
= default_llseek
,
1536 struct class *fb_class
;
1537 EXPORT_SYMBOL(fb_class
);
1539 static int fb_check_foreignness(struct fb_info
*fi
)
1541 const bool foreign_endian
= fi
->flags
& FBINFO_FOREIGN_ENDIAN
;
1543 fi
->flags
&= ~FBINFO_FOREIGN_ENDIAN
;
1546 fi
->flags
|= foreign_endian
? 0 : FBINFO_BE_MATH
;
1548 fi
->flags
|= foreign_endian
? FBINFO_BE_MATH
: 0;
1549 #endif /* __BIG_ENDIAN */
1551 if (fi
->flags
& FBINFO_BE_MATH
&& !fb_be_math(fi
)) {
1552 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1553 "support this framebuffer\n", fi
->fix
.id
);
1555 } else if (!(fi
->flags
& FBINFO_BE_MATH
) && fb_be_math(fi
)) {
1556 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1557 "support this framebuffer\n", fi
->fix
.id
);
1564 static bool apertures_overlap(struct aperture
*gen
, struct aperture
*hw
)
1566 /* is the generic aperture base the same as the HW one */
1567 if (gen
->base
== hw
->base
)
1569 /* is the generic aperture base inside the hw base->hw base+size */
1570 if (gen
->base
> hw
->base
&& gen
->base
< hw
->base
+ hw
->size
)
1575 static bool fb_do_apertures_overlap(struct apertures_struct
*gena
,
1576 struct apertures_struct
*hwa
)
1582 for (i
= 0; i
< hwa
->count
; ++i
) {
1583 struct aperture
*h
= &hwa
->ranges
[i
];
1584 for (j
= 0; j
< gena
->count
; ++j
) {
1585 struct aperture
*g
= &gena
->ranges
[j
];
1586 printk(KERN_DEBUG
"checking generic (%llx %llx) vs hw (%llx %llx)\n",
1587 (unsigned long long)g
->base
,
1588 (unsigned long long)g
->size
,
1589 (unsigned long long)h
->base
,
1590 (unsigned long long)h
->size
);
1591 if (apertures_overlap(g
, h
))
1599 static int do_unregister_framebuffer(struct fb_info
*fb_info
);
1601 #define VGA_FB_PHYS 0xA0000
1602 static int do_remove_conflicting_framebuffers(struct apertures_struct
*a
,
1603 const char *name
, bool primary
)
1607 /* check all firmware fbs and kick off if the base addr overlaps */
1608 for (i
= 0 ; i
< FB_MAX
; i
++) {
1609 struct apertures_struct
*gen_aper
;
1610 if (!registered_fb
[i
])
1613 if (!(registered_fb
[i
]->flags
& FBINFO_MISC_FIRMWARE
))
1616 gen_aper
= registered_fb
[i
]->apertures
;
1617 if (fb_do_apertures_overlap(gen_aper
, a
) ||
1618 (primary
&& gen_aper
&& gen_aper
->count
&&
1619 gen_aper
->ranges
[0].base
== VGA_FB_PHYS
)) {
1621 printk(KERN_INFO
"fb: switching to %s from %s\n",
1622 name
, registered_fb
[i
]->fix
.id
);
1623 ret
= do_unregister_framebuffer(registered_fb
[i
]);
1632 static bool lockless_register_fb
;
1633 module_param_named_unsafe(lockless_register_fb
, lockless_register_fb
, bool, 0400);
1634 MODULE_PARM_DESC(lockless_register_fb
,
1635 "Lockless framebuffer registration for debugging [default=off]");
1637 static int do_register_framebuffer(struct fb_info
*fb_info
)
1640 struct fb_event event
;
1641 struct fb_videomode mode
;
1643 if (fb_check_foreignness(fb_info
))
1646 ret
= do_remove_conflicting_framebuffers(fb_info
->apertures
,
1648 fb_is_primary_device(fb_info
));
1652 if (num_registered_fb
== FB_MAX
)
1655 num_registered_fb
++;
1656 for (i
= 0 ; i
< FB_MAX
; i
++)
1657 if (!registered_fb
[i
])
1660 atomic_set(&fb_info
->count
, 1);
1661 mutex_init(&fb_info
->lock
);
1662 mutex_init(&fb_info
->mm_lock
);
1664 fb_info
->dev
= device_create(fb_class
, fb_info
->device
,
1665 MKDEV(FB_MAJOR
, i
), NULL
, "fb%d", i
);
1666 if (IS_ERR(fb_info
->dev
)) {
1668 printk(KERN_WARNING
"Unable to create device for framebuffer %d; errno = %ld\n", i
, PTR_ERR(fb_info
->dev
));
1669 fb_info
->dev
= NULL
;
1671 fb_init_device(fb_info
);
1673 if (fb_info
->pixmap
.addr
== NULL
) {
1674 fb_info
->pixmap
.addr
= kmalloc(FBPIXMAPSIZE
, GFP_KERNEL
);
1675 if (fb_info
->pixmap
.addr
) {
1676 fb_info
->pixmap
.size
= FBPIXMAPSIZE
;
1677 fb_info
->pixmap
.buf_align
= 1;
1678 fb_info
->pixmap
.scan_align
= 1;
1679 fb_info
->pixmap
.access_align
= 32;
1680 fb_info
->pixmap
.flags
= FB_PIXMAP_DEFAULT
;
1683 fb_info
->pixmap
.offset
= 0;
1685 if (!fb_info
->pixmap
.blit_x
)
1686 fb_info
->pixmap
.blit_x
= ~(u32
)0;
1688 if (!fb_info
->pixmap
.blit_y
)
1689 fb_info
->pixmap
.blit_y
= ~(u32
)0;
1691 if (!fb_info
->modelist
.prev
|| !fb_info
->modelist
.next
)
1692 INIT_LIST_HEAD(&fb_info
->modelist
);
1694 if (fb_info
->skip_vt_switch
)
1695 pm_vt_switch_required(fb_info
->dev
, false);
1697 pm_vt_switch_required(fb_info
->dev
, true);
1699 fb_var_to_videomode(&mode
, &fb_info
->var
);
1700 fb_add_videomode(&mode
, &fb_info
->modelist
);
1701 registered_fb
[i
] = fb_info
;
1703 event
.info
= fb_info
;
1704 if (!lockless_register_fb
)
1706 if (!lock_fb_info(fb_info
)) {
1707 if (!lockless_register_fb
)
1712 fb_notifier_call_chain(FB_EVENT_FB_REGISTERED
, &event
);
1713 unlock_fb_info(fb_info
);
1714 if (!lockless_register_fb
)
1719 static int do_unregister_framebuffer(struct fb_info
*fb_info
)
1721 struct fb_event event
;
1725 if (i
< 0 || i
>= FB_MAX
|| registered_fb
[i
] != fb_info
)
1729 if (!lock_fb_info(fb_info
)) {
1734 event
.info
= fb_info
;
1735 ret
= fb_notifier_call_chain(FB_EVENT_FB_UNBIND
, &event
);
1736 unlock_fb_info(fb_info
);
1742 pm_vt_switch_unregister(fb_info
->dev
);
1744 unlink_framebuffer(fb_info
);
1745 if (fb_info
->pixmap
.addr
&&
1746 (fb_info
->pixmap
.flags
& FB_PIXMAP_DEFAULT
))
1747 kfree(fb_info
->pixmap
.addr
);
1748 fb_destroy_modelist(&fb_info
->modelist
);
1749 registered_fb
[i
] = NULL
;
1750 num_registered_fb
--;
1751 fb_cleanup_device(fb_info
);
1752 event
.info
= fb_info
;
1754 fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED
, &event
);
1757 /* this may free fb info */
1758 put_fb_info(fb_info
);
1762 int unlink_framebuffer(struct fb_info
*fb_info
)
1767 if (i
< 0 || i
>= FB_MAX
|| registered_fb
[i
] != fb_info
)
1771 device_destroy(fb_class
, MKDEV(FB_MAJOR
, i
));
1772 fb_info
->dev
= NULL
;
1776 EXPORT_SYMBOL(unlink_framebuffer
);
1778 int remove_conflicting_framebuffers(struct apertures_struct
*a
,
1779 const char *name
, bool primary
)
1783 mutex_lock(®istration_lock
);
1784 ret
= do_remove_conflicting_framebuffers(a
, name
, primary
);
1785 mutex_unlock(®istration_lock
);
1789 EXPORT_SYMBOL(remove_conflicting_framebuffers
);
1792 * register_framebuffer - registers a frame buffer device
1793 * @fb_info: frame buffer info structure
1795 * Registers a frame buffer device @fb_info.
1797 * Returns negative errno on error, or zero for success.
1801 register_framebuffer(struct fb_info
*fb_info
)
1805 mutex_lock(®istration_lock
);
1806 ret
= do_register_framebuffer(fb_info
);
1807 mutex_unlock(®istration_lock
);
1811 EXPORT_SYMBOL(register_framebuffer
);
1814 * unregister_framebuffer - releases a frame buffer device
1815 * @fb_info: frame buffer info structure
1817 * Unregisters a frame buffer device @fb_info.
1819 * Returns negative errno on error, or zero for success.
1821 * This function will also notify the framebuffer console
1822 * to release the driver.
1824 * This is meant to be called within a driver's module_exit()
1825 * function. If this is called outside module_exit(), ensure
1826 * that the driver implements fb_open() and fb_release() to
1827 * check that no processes are using the device.
1830 unregister_framebuffer(struct fb_info
*fb_info
)
1834 mutex_lock(®istration_lock
);
1835 ret
= do_unregister_framebuffer(fb_info
);
1836 mutex_unlock(®istration_lock
);
1840 EXPORT_SYMBOL(unregister_framebuffer
);
1843 * fb_set_suspend - low level driver signals suspend
1844 * @info: framebuffer affected
1845 * @state: 0 = resuming, !=0 = suspending
1847 * This is meant to be used by low level drivers to
1848 * signal suspend/resume to the core & clients.
1849 * It must be called with the console semaphore held
1851 void fb_set_suspend(struct fb_info
*info
, int state
)
1853 struct fb_event event
;
1857 fb_notifier_call_chain(FB_EVENT_SUSPEND
, &event
);
1858 info
->state
= FBINFO_STATE_SUSPENDED
;
1860 info
->state
= FBINFO_STATE_RUNNING
;
1861 fb_notifier_call_chain(FB_EVENT_RESUME
, &event
);
1864 EXPORT_SYMBOL(fb_set_suspend
);
1867 * fbmem_init - init frame buffer subsystem
1869 * Initialize the frame buffer subsystem.
1871 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1880 if (!proc_create("fb", 0, NULL
, &fb_proc_fops
))
1883 ret
= register_chrdev(FB_MAJOR
, "fb", &fb_fops
);
1885 printk("unable to get major %d for fb devs\n", FB_MAJOR
);
1889 fb_class
= class_create(THIS_MODULE
, "graphics");
1890 if (IS_ERR(fb_class
)) {
1891 ret
= PTR_ERR(fb_class
);
1892 pr_warn("Unable to create fb class; errno = %d\n", ret
);
1902 unregister_chrdev(FB_MAJOR
, "fb");
1904 remove_proc_entry("fb", NULL
);
1909 module_init(fbmem_init
);
1915 remove_proc_entry("fb", NULL
);
1916 class_destroy(fb_class
);
1917 unregister_chrdev(FB_MAJOR
, "fb");
1920 module_exit(fbmem_exit
);
1921 MODULE_LICENSE("GPL");
1922 MODULE_DESCRIPTION("Framebuffer base");
1924 subsys_initcall(fbmem_init
);
1927 int fb_new_modelist(struct fb_info
*info
)
1929 struct fb_event event
;
1930 struct fb_var_screeninfo var
= info
->var
;
1931 struct list_head
*pos
, *n
;
1932 struct fb_modelist
*modelist
;
1933 struct fb_videomode
*m
, mode
;
1936 list_for_each_safe(pos
, n
, &info
->modelist
) {
1937 modelist
= list_entry(pos
, struct fb_modelist
, list
);
1938 m
= &modelist
->mode
;
1939 fb_videomode_to_var(&var
, m
);
1940 var
.activate
= FB_ACTIVATE_TEST
;
1941 err
= fb_set_var(info
, &var
);
1942 fb_var_to_videomode(&mode
, &var
);
1943 if (err
|| !fb_mode_is_equal(m
, &mode
)) {
1951 if (!list_empty(&info
->modelist
)) {
1953 err
= fb_notifier_call_chain(FB_EVENT_NEW_MODELIST
, &event
);
1959 MODULE_LICENSE("GPL");