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 (image
->width
> info
->var
.xres
|| image
->height
> info
->var
.yres
)
433 if (rotate
== FB_ROTATE_UR
) {
435 x
< num
&& image
->dx
+ image
->width
<= info
->var
.xres
;
437 info
->fbops
->fb_imageblit(info
, image
);
438 image
->dx
+= image
->width
+ 8;
440 } else if (rotate
== FB_ROTATE_UD
) {
443 for (x
= 0; x
< num
&& image
->dx
<= dx
; x
++) {
444 info
->fbops
->fb_imageblit(info
, image
);
445 image
->dx
-= image
->width
+ 8;
447 } else if (rotate
== FB_ROTATE_CW
) {
449 x
< num
&& image
->dy
+ image
->height
<= info
->var
.yres
;
451 info
->fbops
->fb_imageblit(info
, image
);
452 image
->dy
+= image
->height
+ 8;
454 } else if (rotate
== FB_ROTATE_CCW
) {
457 for (x
= 0; x
< num
&& image
->dy
<= dy
; x
++) {
458 info
->fbops
->fb_imageblit(info
, image
);
459 image
->dy
-= image
->height
+ 8;
464 static int fb_show_logo_line(struct fb_info
*info
, int rotate
,
465 const struct linux_logo
*logo
, int y
,
468 u32
*palette
= NULL
, *saved_pseudo_palette
= NULL
;
469 unsigned char *logo_new
= NULL
, *logo_rotate
= NULL
;
470 struct fb_image image
;
472 /* Return if the frame buffer is not mapped or suspended */
473 if (logo
== NULL
|| info
->state
!= FBINFO_STATE_RUNNING
||
478 image
.data
= logo
->data
;
480 if (fb_logo
.needs_cmapreset
)
481 fb_set_logocmap(info
, logo
);
483 if (fb_logo
.needs_truepalette
||
484 fb_logo
.needs_directpalette
) {
485 palette
= kmalloc(256 * 4, GFP_KERNEL
);
489 if (fb_logo
.needs_truepalette
)
490 fb_set_logo_truepalette(info
, logo
, palette
);
492 fb_set_logo_directpalette(info
, logo
, palette
);
494 saved_pseudo_palette
= info
->pseudo_palette
;
495 info
->pseudo_palette
= palette
;
498 if (fb_logo
.depth
<= 4) {
499 logo_new
= kmalloc_array(logo
->width
, logo
->height
,
501 if (logo_new
== NULL
) {
503 if (saved_pseudo_palette
)
504 info
->pseudo_palette
= saved_pseudo_palette
;
507 image
.data
= logo_new
;
508 fb_set_logo(info
, logo
, logo_new
, fb_logo
.depth
);
513 image
.width
= logo
->width
;
514 image
.height
= logo
->height
;
517 logo_rotate
= kmalloc_array(logo
->width
, logo
->height
,
520 fb_rotate_logo(info
, logo_rotate
, &image
, rotate
);
523 fb_do_show_logo(info
, &image
, rotate
, n
);
526 if (saved_pseudo_palette
!= NULL
)
527 info
->pseudo_palette
= saved_pseudo_palette
;
534 #ifdef CONFIG_FB_LOGO_EXTRA
536 #define FB_LOGO_EX_NUM_MAX 10
537 static struct logo_data_extra
{
538 const struct linux_logo
*logo
;
540 } fb_logo_ex
[FB_LOGO_EX_NUM_MAX
];
541 static unsigned int fb_logo_ex_num
;
543 void fb_append_extra_logo(const struct linux_logo
*logo
, unsigned int n
)
545 if (!n
|| fb_logo_ex_num
== FB_LOGO_EX_NUM_MAX
)
548 fb_logo_ex
[fb_logo_ex_num
].logo
= logo
;
549 fb_logo_ex
[fb_logo_ex_num
].n
= n
;
553 static int fb_prepare_extra_logos(struct fb_info
*info
, unsigned int height
,
558 /* FIXME: logo_ex supports only truecolor fb. */
559 if (info
->fix
.visual
!= FB_VISUAL_TRUECOLOR
)
562 for (i
= 0; i
< fb_logo_ex_num
; i
++) {
563 if (fb_logo_ex
[i
].logo
->type
!= fb_logo
.logo
->type
) {
564 fb_logo_ex
[i
].logo
= NULL
;
567 height
+= fb_logo_ex
[i
].logo
->height
;
569 height
-= fb_logo_ex
[i
].logo
->height
;
577 static int fb_show_extra_logos(struct fb_info
*info
, int y
, int rotate
)
581 for (i
= 0; i
< fb_logo_ex_num
; i
++)
582 y
+= fb_show_logo_line(info
, rotate
,
583 fb_logo_ex
[i
].logo
, y
, fb_logo_ex
[i
].n
);
588 #else /* !CONFIG_FB_LOGO_EXTRA */
590 static inline int fb_prepare_extra_logos(struct fb_info
*info
,
597 static inline int fb_show_extra_logos(struct fb_info
*info
, int y
, int rotate
)
602 #endif /* CONFIG_FB_LOGO_EXTRA */
605 int fb_prepare_logo(struct fb_info
*info
, int rotate
)
607 int depth
= fb_get_color_depth(&info
->var
, &info
->fix
);
610 memset(&fb_logo
, 0, sizeof(struct logo_data
));
612 if (info
->flags
& FBINFO_MISC_TILEBLITTING
||
616 if (info
->fix
.visual
== FB_VISUAL_DIRECTCOLOR
) {
617 depth
= info
->var
.blue
.length
;
618 if (info
->var
.red
.length
< depth
)
619 depth
= info
->var
.red
.length
;
620 if (info
->var
.green
.length
< depth
)
621 depth
= info
->var
.green
.length
;
624 if (info
->fix
.visual
== FB_VISUAL_STATIC_PSEUDOCOLOR
&& depth
> 4) {
625 /* assume console colormap */
629 /* Return if no suitable logo was found */
630 fb_logo
.logo
= fb_find_logo(depth
);
636 if (rotate
== FB_ROTATE_UR
|| rotate
== FB_ROTATE_UD
)
637 yres
= info
->var
.yres
;
639 yres
= info
->var
.xres
;
641 if (fb_logo
.logo
->height
> yres
) {
646 /* What depth we asked for might be different from what we get */
647 if (fb_logo
.logo
->type
== LINUX_LOGO_CLUT224
)
649 else if (fb_logo
.logo
->type
== LINUX_LOGO_VGA16
)
655 if (fb_logo
.depth
> 4 && depth
> 4) {
656 switch (info
->fix
.visual
) {
657 case FB_VISUAL_TRUECOLOR
:
658 fb_logo
.needs_truepalette
= 1;
660 case FB_VISUAL_DIRECTCOLOR
:
661 fb_logo
.needs_directpalette
= 1;
662 fb_logo
.needs_cmapreset
= 1;
664 case FB_VISUAL_PSEUDOCOLOR
:
665 fb_logo
.needs_cmapreset
= 1;
670 return fb_prepare_extra_logos(info
, fb_logo
.logo
->height
, yres
);
673 int fb_show_logo(struct fb_info
*info
, int rotate
)
677 y
= fb_show_logo_line(info
, rotate
, fb_logo
.logo
, 0,
679 y
= fb_show_extra_logos(info
, y
, rotate
);
684 int fb_prepare_logo(struct fb_info
*info
, int rotate
) { return 0; }
685 int fb_show_logo(struct fb_info
*info
, int rotate
) { return 0; }
686 #endif /* CONFIG_LOGO */
687 EXPORT_SYMBOL(fb_prepare_logo
);
688 EXPORT_SYMBOL(fb_show_logo
);
690 static void *fb_seq_start(struct seq_file
*m
, loff_t
*pos
)
692 mutex_lock(®istration_lock
);
693 return (*pos
< FB_MAX
) ? pos
: NULL
;
696 static void *fb_seq_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
699 return (*pos
< FB_MAX
) ? pos
: NULL
;
702 static void fb_seq_stop(struct seq_file
*m
, void *v
)
704 mutex_unlock(®istration_lock
);
707 static int fb_seq_show(struct seq_file
*m
, void *v
)
709 int i
= *(loff_t
*)v
;
710 struct fb_info
*fi
= registered_fb
[i
];
713 seq_printf(m
, "%d %s\n", fi
->node
, fi
->fix
.id
);
717 static const struct seq_operations proc_fb_seq_ops
= {
718 .start
= fb_seq_start
,
725 * We hold a reference to the fb_info in file->private_data,
726 * but if the current registered fb has changed, we don't
727 * actually want to use it.
729 * So look up the fb_info using the inode minor number,
730 * and just verify it against the reference we have.
732 static struct fb_info
*file_fb_info(struct file
*file
)
734 struct inode
*inode
= file_inode(file
);
735 int fbidx
= iminor(inode
);
736 struct fb_info
*info
= registered_fb
[fbidx
];
738 if (info
!= file
->private_data
)
744 fb_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*ppos
)
746 unsigned long p
= *ppos
;
747 struct fb_info
*info
= file_fb_info(file
);
750 int c
, cnt
= 0, err
= 0;
751 unsigned long total_size
;
753 if (!info
|| ! info
->screen_base
)
756 if (info
->state
!= FBINFO_STATE_RUNNING
)
759 if (info
->fbops
->fb_read
)
760 return info
->fbops
->fb_read(info
, buf
, count
, ppos
);
762 total_size
= info
->screen_size
;
765 total_size
= info
->fix
.smem_len
;
770 if (count
>= total_size
)
773 if (count
+ p
> total_size
)
774 count
= total_size
- p
;
776 buffer
= kmalloc((count
> PAGE_SIZE
) ? PAGE_SIZE
: count
,
781 src
= (u8 __iomem
*) (info
->screen_base
+ p
);
783 if (info
->fbops
->fb_sync
)
784 info
->fbops
->fb_sync(info
);
787 c
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
789 fb_memcpy_fromfb(dst
, src
, c
);
793 if (copy_to_user(buf
, buffer
, c
)) {
805 return (err
) ? err
: cnt
;
809 fb_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*ppos
)
811 unsigned long p
= *ppos
;
812 struct fb_info
*info
= file_fb_info(file
);
815 int c
, cnt
= 0, err
= 0;
816 unsigned long total_size
;
818 if (!info
|| !info
->screen_base
)
821 if (info
->state
!= FBINFO_STATE_RUNNING
)
824 if (info
->fbops
->fb_write
)
825 return info
->fbops
->fb_write(info
, buf
, count
, ppos
);
827 total_size
= info
->screen_size
;
830 total_size
= info
->fix
.smem_len
;
835 if (count
> total_size
) {
840 if (count
+ p
> total_size
) {
844 count
= total_size
- p
;
847 buffer
= kmalloc((count
> PAGE_SIZE
) ? PAGE_SIZE
: count
,
852 dst
= (u8 __iomem
*) (info
->screen_base
+ p
);
854 if (info
->fbops
->fb_sync
)
855 info
->fbops
->fb_sync(info
);
858 c
= (count
> PAGE_SIZE
) ? PAGE_SIZE
: count
;
861 if (copy_from_user(src
, buf
, c
)) {
866 fb_memcpy_tofb(dst
, src
, c
);
877 return (cnt
) ? cnt
: err
;
881 fb_pan_display(struct fb_info
*info
, struct fb_var_screeninfo
*var
)
883 struct fb_fix_screeninfo
*fix
= &info
->fix
;
884 unsigned int yres
= info
->var
.yres
;
887 if (var
->yoffset
> 0) {
888 if (var
->vmode
& FB_VMODE_YWRAP
) {
889 if (!fix
->ywrapstep
|| (var
->yoffset
% fix
->ywrapstep
))
893 } else if (!fix
->ypanstep
|| (var
->yoffset
% fix
->ypanstep
))
897 if (var
->xoffset
> 0 && (!fix
->xpanstep
||
898 (var
->xoffset
% fix
->xpanstep
)))
901 if (err
|| !info
->fbops
->fb_pan_display
||
902 var
->yoffset
> info
->var
.yres_virtual
- yres
||
903 var
->xoffset
> info
->var
.xres_virtual
- info
->var
.xres
)
906 if ((err
= info
->fbops
->fb_pan_display(var
, info
)))
908 info
->var
.xoffset
= var
->xoffset
;
909 info
->var
.yoffset
= var
->yoffset
;
910 if (var
->vmode
& FB_VMODE_YWRAP
)
911 info
->var
.vmode
|= FB_VMODE_YWRAP
;
913 info
->var
.vmode
&= ~FB_VMODE_YWRAP
;
916 EXPORT_SYMBOL(fb_pan_display
);
918 static int fb_check_caps(struct fb_info
*info
, struct fb_var_screeninfo
*var
,
921 struct fb_event event
;
922 struct fb_blit_caps caps
, fbcaps
;
925 memset(&caps
, 0, sizeof(caps
));
926 memset(&fbcaps
, 0, sizeof(fbcaps
));
927 caps
.flags
= (activate
& FB_ACTIVATE_ALL
) ? 1 : 0;
930 fb_notifier_call_chain(FB_EVENT_GET_REQ
, &event
);
931 info
->fbops
->fb_get_caps(info
, &fbcaps
, var
);
933 if (((fbcaps
.x
^ caps
.x
) & caps
.x
) ||
934 ((fbcaps
.y
^ caps
.y
) & caps
.y
) ||
935 (fbcaps
.len
< caps
.len
))
942 fb_set_var(struct fb_info
*info
, struct fb_var_screeninfo
*var
)
944 int flags
= info
->flags
;
947 if (var
->activate
& FB_ACTIVATE_INV_MODE
) {
948 struct fb_videomode mode1
, mode2
;
950 fb_var_to_videomode(&mode1
, var
);
951 fb_var_to_videomode(&mode2
, &info
->var
);
952 /* make sure we don't delete the videomode of current var */
953 ret
= fb_mode_is_equal(&mode1
, &mode2
);
956 struct fb_event event
;
960 ret
= fb_notifier_call_chain(FB_EVENT_MODE_DELETE
, &event
);
964 fb_delete_videomode(&mode1
, &info
->modelist
);
967 ret
= (ret
) ? -EINVAL
: 0;
971 if ((var
->activate
& FB_ACTIVATE_FORCE
) ||
972 memcmp(&info
->var
, var
, sizeof(struct fb_var_screeninfo
))) {
973 u32 activate
= var
->activate
;
975 /* When using FOURCC mode, make sure the red, green, blue and
976 * transp fields are set to 0.
978 if ((info
->fix
.capabilities
& FB_CAP_FOURCC
) &&
979 var
->grayscale
> 1) {
980 if (var
->red
.offset
|| var
->green
.offset
||
981 var
->blue
.offset
|| var
->transp
.offset
||
982 var
->red
.length
|| var
->green
.length
||
983 var
->blue
.length
|| var
->transp
.length
||
984 var
->red
.msb_right
|| var
->green
.msb_right
||
985 var
->blue
.msb_right
|| var
->transp
.msb_right
)
989 if (!info
->fbops
->fb_check_var
) {
994 ret
= info
->fbops
->fb_check_var(var
, info
);
999 if ((var
->activate
& FB_ACTIVATE_MASK
) == FB_ACTIVATE_NOW
) {
1000 struct fb_var_screeninfo old_var
;
1001 struct fb_videomode mode
;
1003 if (info
->fbops
->fb_get_caps
) {
1004 ret
= fb_check_caps(info
, var
, activate
);
1010 old_var
= info
->var
;
1013 if (info
->fbops
->fb_set_par
) {
1014 ret
= info
->fbops
->fb_set_par(info
);
1017 info
->var
= old_var
;
1018 printk(KERN_WARNING
"detected "
1019 "fb_set_par error, "
1020 "error code: %d\n", ret
);
1025 fb_pan_display(info
, &info
->var
);
1026 fb_set_cmap(&info
->cmap
, info
);
1027 fb_var_to_videomode(&mode
, &info
->var
);
1029 if (info
->modelist
.prev
&& info
->modelist
.next
&&
1030 !list_empty(&info
->modelist
))
1031 ret
= fb_add_videomode(&mode
, &info
->modelist
);
1033 if (!ret
&& (flags
& FBINFO_MISC_USEREVENT
)) {
1034 struct fb_event event
;
1035 int evnt
= (activate
& FB_ACTIVATE_ALL
) ?
1036 FB_EVENT_MODE_CHANGE_ALL
:
1037 FB_EVENT_MODE_CHANGE
;
1039 info
->flags
&= ~FBINFO_MISC_USEREVENT
;
1042 fb_notifier_call_chain(evnt
, &event
);
1050 EXPORT_SYMBOL(fb_set_var
);
1053 fb_blank(struct fb_info
*info
, int blank
)
1055 struct fb_event event
;
1056 int ret
= -EINVAL
, early_ret
;
1058 if (blank
> FB_BLANK_POWERDOWN
)
1059 blank
= FB_BLANK_POWERDOWN
;
1062 event
.data
= &blank
;
1064 early_ret
= fb_notifier_call_chain(FB_EARLY_EVENT_BLANK
, &event
);
1066 if (info
->fbops
->fb_blank
)
1067 ret
= info
->fbops
->fb_blank(blank
, info
);
1070 fb_notifier_call_chain(FB_EVENT_BLANK
, &event
);
1073 * if fb_blank is failed then revert effects of
1074 * the early blank event.
1077 fb_notifier_call_chain(FB_R_EARLY_EVENT_BLANK
, &event
);
1082 EXPORT_SYMBOL(fb_blank
);
1084 static long do_fb_ioctl(struct fb_info
*info
, unsigned int cmd
,
1088 struct fb_var_screeninfo var
;
1089 struct fb_fix_screeninfo fix
;
1090 struct fb_con2fbmap con2fb
;
1091 struct fb_cmap cmap_from
;
1092 struct fb_cmap_user cmap
;
1093 struct fb_event event
;
1094 void __user
*argp
= (void __user
*)arg
;
1098 case FBIOGET_VSCREENINFO
:
1099 if (!lock_fb_info(info
))
1102 unlock_fb_info(info
);
1104 ret
= copy_to_user(argp
, &var
, sizeof(var
)) ? -EFAULT
: 0;
1106 case FBIOPUT_VSCREENINFO
:
1107 if (copy_from_user(&var
, argp
, sizeof(var
)))
1110 if (!lock_fb_info(info
)) {
1114 info
->flags
|= FBINFO_MISC_USEREVENT
;
1115 ret
= fb_set_var(info
, &var
);
1116 info
->flags
&= ~FBINFO_MISC_USEREVENT
;
1117 unlock_fb_info(info
);
1119 if (!ret
&& copy_to_user(argp
, &var
, sizeof(var
)))
1122 case FBIOGET_FSCREENINFO
:
1123 if (!lock_fb_info(info
))
1125 memcpy(&fix
, &info
->fix
, sizeof(fix
));
1126 unlock_fb_info(info
);
1128 ret
= copy_to_user(argp
, &fix
, sizeof(fix
)) ? -EFAULT
: 0;
1131 if (copy_from_user(&cmap
, argp
, sizeof(cmap
)))
1133 ret
= fb_set_user_cmap(&cmap
, info
);
1136 if (copy_from_user(&cmap
, argp
, sizeof(cmap
)))
1138 if (!lock_fb_info(info
))
1140 cmap_from
= info
->cmap
;
1141 unlock_fb_info(info
);
1142 ret
= fb_cmap_to_user(&cmap_from
, &cmap
);
1144 case FBIOPAN_DISPLAY
:
1145 if (copy_from_user(&var
, argp
, sizeof(var
)))
1148 if (!lock_fb_info(info
)) {
1152 ret
= fb_pan_display(info
, &var
);
1153 unlock_fb_info(info
);
1155 if (ret
== 0 && copy_to_user(argp
, &var
, sizeof(var
)))
1161 case FBIOGET_CON2FBMAP
:
1162 if (copy_from_user(&con2fb
, argp
, sizeof(con2fb
)))
1164 if (con2fb
.console
< 1 || con2fb
.console
> MAX_NR_CONSOLES
)
1166 con2fb
.framebuffer
= -1;
1167 event
.data
= &con2fb
;
1168 if (!lock_fb_info(info
))
1171 fb_notifier_call_chain(FB_EVENT_GET_CONSOLE_MAP
, &event
);
1172 unlock_fb_info(info
);
1173 ret
= copy_to_user(argp
, &con2fb
, sizeof(con2fb
)) ? -EFAULT
: 0;
1175 case FBIOPUT_CON2FBMAP
:
1176 if (copy_from_user(&con2fb
, argp
, sizeof(con2fb
)))
1178 if (con2fb
.console
< 1 || con2fb
.console
> MAX_NR_CONSOLES
)
1180 if (con2fb
.framebuffer
>= FB_MAX
)
1182 if (!registered_fb
[con2fb
.framebuffer
])
1183 request_module("fb%d", con2fb
.framebuffer
);
1184 if (!registered_fb
[con2fb
.framebuffer
]) {
1188 event
.data
= &con2fb
;
1190 if (!lock_fb_info(info
)) {
1195 ret
= fb_notifier_call_chain(FB_EVENT_SET_CONSOLE_MAP
, &event
);
1196 unlock_fb_info(info
);
1201 if (!lock_fb_info(info
)) {
1205 info
->flags
|= FBINFO_MISC_USEREVENT
;
1206 ret
= fb_blank(info
, arg
);
1207 info
->flags
&= ~FBINFO_MISC_USEREVENT
;
1208 unlock_fb_info(info
);
1212 if (!lock_fb_info(info
))
1216 ret
= fb
->fb_ioctl(info
, cmd
, arg
);
1219 unlock_fb_info(info
);
1224 static long fb_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
1226 struct fb_info
*info
= file_fb_info(file
);
1230 return do_fb_ioctl(info
, cmd
, arg
);
1233 #ifdef CONFIG_COMPAT
1234 struct fb_fix_screeninfo32
{
1236 compat_caddr_t smem_start
;
1245 compat_caddr_t mmio_start
;
1255 compat_caddr_t green
;
1256 compat_caddr_t blue
;
1257 compat_caddr_t transp
;
1260 static int fb_getput_cmap(struct fb_info
*info
, unsigned int cmd
,
1263 struct fb_cmap_user __user
*cmap
;
1264 struct fb_cmap32 __user
*cmap32
;
1268 cmap
= compat_alloc_user_space(sizeof(*cmap
));
1269 cmap32
= compat_ptr(arg
);
1271 if (copy_in_user(&cmap
->start
, &cmap32
->start
, 2 * sizeof(__u32
)))
1274 if (get_user(data
, &cmap32
->red
) ||
1275 put_user(compat_ptr(data
), &cmap
->red
) ||
1276 get_user(data
, &cmap32
->green
) ||
1277 put_user(compat_ptr(data
), &cmap
->green
) ||
1278 get_user(data
, &cmap32
->blue
) ||
1279 put_user(compat_ptr(data
), &cmap
->blue
) ||
1280 get_user(data
, &cmap32
->transp
) ||
1281 put_user(compat_ptr(data
), &cmap
->transp
))
1284 err
= do_fb_ioctl(info
, cmd
, (unsigned long) cmap
);
1287 if (copy_in_user(&cmap32
->start
,
1295 static int do_fscreeninfo_to_user(struct fb_fix_screeninfo
*fix
,
1296 struct fb_fix_screeninfo32 __user
*fix32
)
1301 err
= copy_to_user(&fix32
->id
, &fix
->id
, sizeof(fix32
->id
));
1303 data
= (__u32
) (unsigned long) fix
->smem_start
;
1304 err
|= put_user(data
, &fix32
->smem_start
);
1306 err
|= put_user(fix
->smem_len
, &fix32
->smem_len
);
1307 err
|= put_user(fix
->type
, &fix32
->type
);
1308 err
|= put_user(fix
->type_aux
, &fix32
->type_aux
);
1309 err
|= put_user(fix
->visual
, &fix32
->visual
);
1310 err
|= put_user(fix
->xpanstep
, &fix32
->xpanstep
);
1311 err
|= put_user(fix
->ypanstep
, &fix32
->ypanstep
);
1312 err
|= put_user(fix
->ywrapstep
, &fix32
->ywrapstep
);
1313 err
|= put_user(fix
->line_length
, &fix32
->line_length
);
1315 data
= (__u32
) (unsigned long) fix
->mmio_start
;
1316 err
|= put_user(data
, &fix32
->mmio_start
);
1318 err
|= put_user(fix
->mmio_len
, &fix32
->mmio_len
);
1319 err
|= put_user(fix
->accel
, &fix32
->accel
);
1320 err
|= copy_to_user(fix32
->reserved
, fix
->reserved
,
1321 sizeof(fix
->reserved
));
1328 static int fb_get_fscreeninfo(struct fb_info
*info
, unsigned int cmd
,
1331 struct fb_fix_screeninfo fix
;
1333 if (!lock_fb_info(info
))
1336 unlock_fb_info(info
);
1337 return do_fscreeninfo_to_user(&fix
, compat_ptr(arg
));
1340 static long fb_compat_ioctl(struct file
*file
, unsigned int cmd
,
1343 struct fb_info
*info
= file_fb_info(file
);
1345 long ret
= -ENOIOCTLCMD
;
1351 case FBIOGET_VSCREENINFO
:
1352 case FBIOPUT_VSCREENINFO
:
1353 case FBIOPAN_DISPLAY
:
1354 case FBIOGET_CON2FBMAP
:
1355 case FBIOPUT_CON2FBMAP
:
1356 arg
= (unsigned long) compat_ptr(arg
);
1359 ret
= do_fb_ioctl(info
, cmd
, arg
);
1362 case FBIOGET_FSCREENINFO
:
1363 ret
= fb_get_fscreeninfo(info
, cmd
, arg
);
1368 ret
= fb_getput_cmap(info
, cmd
, arg
);
1372 if (fb
->fb_compat_ioctl
)
1373 ret
= fb
->fb_compat_ioctl(info
, cmd
, arg
);
1381 fb_mmap(struct file
*file
, struct vm_area_struct
* vma
)
1383 struct fb_info
*info
= file_fb_info(file
);
1385 unsigned long mmio_pgoff
;
1386 unsigned long start
;
1394 mutex_lock(&info
->mm_lock
);
1399 * The framebuffer needs to be accessed decrypted, be sure
1400 * SME protection is removed ahead of the call
1402 vma
->vm_page_prot
= pgprot_decrypted(vma
->vm_page_prot
);
1403 res
= fb
->fb_mmap(info
, vma
);
1404 mutex_unlock(&info
->mm_lock
);
1409 * Ugh. This can be either the frame buffer mapping, or
1410 * if pgoff points past it, the mmio mapping.
1412 start
= info
->fix
.smem_start
;
1413 len
= info
->fix
.smem_len
;
1414 mmio_pgoff
= PAGE_ALIGN((start
& ~PAGE_MASK
) + len
) >> PAGE_SHIFT
;
1415 if (vma
->vm_pgoff
>= mmio_pgoff
) {
1416 if (info
->var
.accel_flags
) {
1417 mutex_unlock(&info
->mm_lock
);
1421 vma
->vm_pgoff
-= mmio_pgoff
;
1422 start
= info
->fix
.mmio_start
;
1423 len
= info
->fix
.mmio_len
;
1425 mutex_unlock(&info
->mm_lock
);
1427 vma
->vm_page_prot
= vm_get_page_prot(vma
->vm_flags
);
1429 * The framebuffer needs to be accessed decrypted, be sure
1430 * SME protection is removed
1432 vma
->vm_page_prot
= pgprot_decrypted(vma
->vm_page_prot
);
1433 fb_pgprotect(file
, vma
, start
);
1435 return vm_iomap_memory(vma
, start
, len
);
1439 fb_open(struct inode
*inode
, struct file
*file
)
1440 __acquires(&info
->lock
)
1441 __releases(&info
->lock
)
1443 int fbidx
= iminor(inode
);
1444 struct fb_info
*info
;
1447 info
= get_fb_info(fbidx
);
1449 request_module("fb%d", fbidx
);
1450 info
= get_fb_info(fbidx
);
1455 return PTR_ERR(info
);
1457 mutex_lock(&info
->lock
);
1458 if (!try_module_get(info
->fbops
->owner
)) {
1462 file
->private_data
= info
;
1463 if (info
->fbops
->fb_open
) {
1464 res
= info
->fbops
->fb_open(info
,1);
1466 module_put(info
->fbops
->owner
);
1468 #ifdef CONFIG_FB_DEFERRED_IO
1470 fb_deferred_io_open(info
, inode
, file
);
1473 mutex_unlock(&info
->lock
);
1480 fb_release(struct inode
*inode
, struct file
*file
)
1481 __acquires(&info
->lock
)
1482 __releases(&info
->lock
)
1484 struct fb_info
* const info
= file
->private_data
;
1486 mutex_lock(&info
->lock
);
1487 if (info
->fbops
->fb_release
)
1488 info
->fbops
->fb_release(info
,1);
1489 module_put(info
->fbops
->owner
);
1490 mutex_unlock(&info
->lock
);
1495 #if defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && !defined(CONFIG_MMU)
1496 unsigned long get_fb_unmapped_area(struct file
*filp
,
1497 unsigned long addr
, unsigned long len
,
1498 unsigned long pgoff
, unsigned long flags
)
1500 struct fb_info
* const info
= filp
->private_data
;
1501 unsigned long fb_size
= PAGE_ALIGN(info
->fix
.smem_len
);
1503 if (pgoff
> fb_size
|| len
> fb_size
- pgoff
)
1506 return (unsigned long)info
->screen_base
+ pgoff
;
1510 static const struct file_operations fb_fops
= {
1511 .owner
= THIS_MODULE
,
1514 .unlocked_ioctl
= fb_ioctl
,
1515 #ifdef CONFIG_COMPAT
1516 .compat_ioctl
= fb_compat_ioctl
,
1520 .release
= fb_release
,
1521 #if defined(HAVE_ARCH_FB_UNMAPPED_AREA) || \
1522 (defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && \
1523 !defined(CONFIG_MMU))
1524 .get_unmapped_area
= get_fb_unmapped_area
,
1526 #ifdef CONFIG_FB_DEFERRED_IO
1527 .fsync
= fb_deferred_io_fsync
,
1529 .llseek
= default_llseek
,
1532 struct class *fb_class
;
1533 EXPORT_SYMBOL(fb_class
);
1535 static int fb_check_foreignness(struct fb_info
*fi
)
1537 const bool foreign_endian
= fi
->flags
& FBINFO_FOREIGN_ENDIAN
;
1539 fi
->flags
&= ~FBINFO_FOREIGN_ENDIAN
;
1542 fi
->flags
|= foreign_endian
? 0 : FBINFO_BE_MATH
;
1544 fi
->flags
|= foreign_endian
? FBINFO_BE_MATH
: 0;
1545 #endif /* __BIG_ENDIAN */
1547 if (fi
->flags
& FBINFO_BE_MATH
&& !fb_be_math(fi
)) {
1548 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1549 "support this framebuffer\n", fi
->fix
.id
);
1551 } else if (!(fi
->flags
& FBINFO_BE_MATH
) && fb_be_math(fi
)) {
1552 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1553 "support this framebuffer\n", fi
->fix
.id
);
1560 static bool apertures_overlap(struct aperture
*gen
, struct aperture
*hw
)
1562 /* is the generic aperture base the same as the HW one */
1563 if (gen
->base
== hw
->base
)
1565 /* is the generic aperture base inside the hw base->hw base+size */
1566 if (gen
->base
> hw
->base
&& gen
->base
< hw
->base
+ hw
->size
)
1571 static bool fb_do_apertures_overlap(struct apertures_struct
*gena
,
1572 struct apertures_struct
*hwa
)
1578 for (i
= 0; i
< hwa
->count
; ++i
) {
1579 struct aperture
*h
= &hwa
->ranges
[i
];
1580 for (j
= 0; j
< gena
->count
; ++j
) {
1581 struct aperture
*g
= &gena
->ranges
[j
];
1582 printk(KERN_DEBUG
"checking generic (%llx %llx) vs hw (%llx %llx)\n",
1583 (unsigned long long)g
->base
,
1584 (unsigned long long)g
->size
,
1585 (unsigned long long)h
->base
,
1586 (unsigned long long)h
->size
);
1587 if (apertures_overlap(g
, h
))
1595 static int do_unregister_framebuffer(struct fb_info
*fb_info
);
1597 #define VGA_FB_PHYS 0xA0000
1598 static int do_remove_conflicting_framebuffers(struct apertures_struct
*a
,
1599 const char *name
, bool primary
)
1603 /* check all firmware fbs and kick off if the base addr overlaps */
1604 for_each_registered_fb(i
) {
1605 struct apertures_struct
*gen_aper
;
1607 if (!(registered_fb
[i
]->flags
& FBINFO_MISC_FIRMWARE
))
1610 gen_aper
= registered_fb
[i
]->apertures
;
1611 if (fb_do_apertures_overlap(gen_aper
, a
) ||
1612 (primary
&& gen_aper
&& gen_aper
->count
&&
1613 gen_aper
->ranges
[0].base
== VGA_FB_PHYS
)) {
1615 printk(KERN_INFO
"fb: switching to %s from %s\n",
1616 name
, registered_fb
[i
]->fix
.id
);
1617 ret
= do_unregister_framebuffer(registered_fb
[i
]);
1626 static bool lockless_register_fb
;
1627 module_param_named_unsafe(lockless_register_fb
, lockless_register_fb
, bool, 0400);
1628 MODULE_PARM_DESC(lockless_register_fb
,
1629 "Lockless framebuffer registration for debugging [default=off]");
1631 static int do_register_framebuffer(struct fb_info
*fb_info
)
1634 struct fb_event event
;
1635 struct fb_videomode mode
;
1637 if (fb_check_foreignness(fb_info
))
1640 ret
= do_remove_conflicting_framebuffers(fb_info
->apertures
,
1642 fb_is_primary_device(fb_info
));
1646 if (num_registered_fb
== FB_MAX
)
1649 num_registered_fb
++;
1650 for (i
= 0 ; i
< FB_MAX
; i
++)
1651 if (!registered_fb
[i
])
1654 atomic_set(&fb_info
->count
, 1);
1655 mutex_init(&fb_info
->lock
);
1656 mutex_init(&fb_info
->mm_lock
);
1658 fb_info
->dev
= device_create(fb_class
, fb_info
->device
,
1659 MKDEV(FB_MAJOR
, i
), NULL
, "fb%d", i
);
1660 if (IS_ERR(fb_info
->dev
)) {
1662 printk(KERN_WARNING
"Unable to create device for framebuffer %d; errno = %ld\n", i
, PTR_ERR(fb_info
->dev
));
1663 fb_info
->dev
= NULL
;
1665 fb_init_device(fb_info
);
1667 if (fb_info
->pixmap
.addr
== NULL
) {
1668 fb_info
->pixmap
.addr
= kmalloc(FBPIXMAPSIZE
, GFP_KERNEL
);
1669 if (fb_info
->pixmap
.addr
) {
1670 fb_info
->pixmap
.size
= FBPIXMAPSIZE
;
1671 fb_info
->pixmap
.buf_align
= 1;
1672 fb_info
->pixmap
.scan_align
= 1;
1673 fb_info
->pixmap
.access_align
= 32;
1674 fb_info
->pixmap
.flags
= FB_PIXMAP_DEFAULT
;
1677 fb_info
->pixmap
.offset
= 0;
1679 if (!fb_info
->pixmap
.blit_x
)
1680 fb_info
->pixmap
.blit_x
= ~(u32
)0;
1682 if (!fb_info
->pixmap
.blit_y
)
1683 fb_info
->pixmap
.blit_y
= ~(u32
)0;
1685 if (!fb_info
->modelist
.prev
|| !fb_info
->modelist
.next
)
1686 INIT_LIST_HEAD(&fb_info
->modelist
);
1688 if (fb_info
->skip_vt_switch
)
1689 pm_vt_switch_required(fb_info
->dev
, false);
1691 pm_vt_switch_required(fb_info
->dev
, true);
1693 fb_var_to_videomode(&mode
, &fb_info
->var
);
1694 fb_add_videomode(&mode
, &fb_info
->modelist
);
1695 registered_fb
[i
] = fb_info
;
1697 event
.info
= fb_info
;
1698 if (!lockless_register_fb
)
1701 atomic_inc(&ignore_console_lock_warning
);
1702 if (!lock_fb_info(fb_info
)) {
1704 goto unlock_console
;
1708 fb_notifier_call_chain(FB_EVENT_FB_REGISTERED
, &event
);
1709 unlock_fb_info(fb_info
);
1711 if (!lockless_register_fb
)
1714 atomic_dec(&ignore_console_lock_warning
);
1718 static int unbind_console(struct fb_info
*fb_info
)
1720 struct fb_event event
;
1722 int i
= fb_info
->node
;
1724 if (i
< 0 || i
>= FB_MAX
|| registered_fb
[i
] != fb_info
)
1728 if (!lock_fb_info(fb_info
)) {
1733 event
.info
= fb_info
;
1734 ret
= fb_notifier_call_chain(FB_EVENT_FB_UNBIND
, &event
);
1735 unlock_fb_info(fb_info
);
1741 static int __unlink_framebuffer(struct fb_info
*fb_info
);
1743 static int do_unregister_framebuffer(struct fb_info
*fb_info
)
1745 struct fb_event event
;
1748 ret
= unbind_console(fb_info
);
1753 pm_vt_switch_unregister(fb_info
->dev
);
1755 __unlink_framebuffer(fb_info
);
1756 if (fb_info
->pixmap
.addr
&&
1757 (fb_info
->pixmap
.flags
& FB_PIXMAP_DEFAULT
))
1758 kfree(fb_info
->pixmap
.addr
);
1759 fb_destroy_modelist(&fb_info
->modelist
);
1760 registered_fb
[fb_info
->node
] = NULL
;
1761 num_registered_fb
--;
1762 fb_cleanup_device(fb_info
);
1763 event
.info
= fb_info
;
1765 fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED
, &event
);
1768 /* this may free fb info */
1769 put_fb_info(fb_info
);
1773 static int __unlink_framebuffer(struct fb_info
*fb_info
)
1778 if (i
< 0 || i
>= FB_MAX
|| registered_fb
[i
] != fb_info
)
1782 device_destroy(fb_class
, MKDEV(FB_MAJOR
, i
));
1783 fb_info
->dev
= NULL
;
1789 int unlink_framebuffer(struct fb_info
*fb_info
)
1793 ret
= __unlink_framebuffer(fb_info
);
1797 unbind_console(fb_info
);
1801 EXPORT_SYMBOL(unlink_framebuffer
);
1803 int remove_conflicting_framebuffers(struct apertures_struct
*a
,
1804 const char *name
, bool primary
)
1808 mutex_lock(®istration_lock
);
1809 ret
= do_remove_conflicting_framebuffers(a
, name
, primary
);
1810 mutex_unlock(®istration_lock
);
1814 EXPORT_SYMBOL(remove_conflicting_framebuffers
);
1817 * register_framebuffer - registers a frame buffer device
1818 * @fb_info: frame buffer info structure
1820 * Registers a frame buffer device @fb_info.
1822 * Returns negative errno on error, or zero for success.
1826 register_framebuffer(struct fb_info
*fb_info
)
1830 mutex_lock(®istration_lock
);
1831 ret
= do_register_framebuffer(fb_info
);
1832 mutex_unlock(®istration_lock
);
1836 EXPORT_SYMBOL(register_framebuffer
);
1839 * unregister_framebuffer - releases a frame buffer device
1840 * @fb_info: frame buffer info structure
1842 * Unregisters a frame buffer device @fb_info.
1844 * Returns negative errno on error, or zero for success.
1846 * This function will also notify the framebuffer console
1847 * to release the driver.
1849 * This is meant to be called within a driver's module_exit()
1850 * function. If this is called outside module_exit(), ensure
1851 * that the driver implements fb_open() and fb_release() to
1852 * check that no processes are using the device.
1855 unregister_framebuffer(struct fb_info
*fb_info
)
1859 mutex_lock(®istration_lock
);
1860 ret
= do_unregister_framebuffer(fb_info
);
1861 mutex_unlock(®istration_lock
);
1865 EXPORT_SYMBOL(unregister_framebuffer
);
1868 * fb_set_suspend - low level driver signals suspend
1869 * @info: framebuffer affected
1870 * @state: 0 = resuming, !=0 = suspending
1872 * This is meant to be used by low level drivers to
1873 * signal suspend/resume to the core & clients.
1874 * It must be called with the console semaphore held
1876 void fb_set_suspend(struct fb_info
*info
, int state
)
1878 struct fb_event event
;
1882 fb_notifier_call_chain(FB_EVENT_SUSPEND
, &event
);
1883 info
->state
= FBINFO_STATE_SUSPENDED
;
1885 info
->state
= FBINFO_STATE_RUNNING
;
1886 fb_notifier_call_chain(FB_EVENT_RESUME
, &event
);
1889 EXPORT_SYMBOL(fb_set_suspend
);
1892 * fbmem_init - init frame buffer subsystem
1894 * Initialize the frame buffer subsystem.
1896 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1905 if (!proc_create_seq("fb", 0, NULL
, &proc_fb_seq_ops
))
1908 ret
= register_chrdev(FB_MAJOR
, "fb", &fb_fops
);
1910 printk("unable to get major %d for fb devs\n", FB_MAJOR
);
1914 fb_class
= class_create(THIS_MODULE
, "graphics");
1915 if (IS_ERR(fb_class
)) {
1916 ret
= PTR_ERR(fb_class
);
1917 pr_warn("Unable to create fb class; errno = %d\n", ret
);
1927 unregister_chrdev(FB_MAJOR
, "fb");
1929 remove_proc_entry("fb", NULL
);
1934 module_init(fbmem_init
);
1940 remove_proc_entry("fb", NULL
);
1941 class_destroy(fb_class
);
1942 unregister_chrdev(FB_MAJOR
, "fb");
1945 module_exit(fbmem_exit
);
1946 MODULE_LICENSE("GPL");
1947 MODULE_DESCRIPTION("Framebuffer base");
1949 subsys_initcall(fbmem_init
);
1952 int fb_new_modelist(struct fb_info
*info
)
1954 struct fb_event event
;
1955 struct fb_var_screeninfo var
= info
->var
;
1956 struct list_head
*pos
, *n
;
1957 struct fb_modelist
*modelist
;
1958 struct fb_videomode
*m
, mode
;
1961 list_for_each_safe(pos
, n
, &info
->modelist
) {
1962 modelist
= list_entry(pos
, struct fb_modelist
, list
);
1963 m
= &modelist
->mode
;
1964 fb_videomode_to_var(&var
, m
);
1965 var
.activate
= FB_ACTIVATE_TEST
;
1966 err
= fb_set_var(info
, &var
);
1967 fb_var_to_videomode(&mode
, &var
);
1968 if (err
|| !fb_mode_is_equal(m
, &mode
)) {
1976 if (!list_empty(&info
->modelist
)) {
1978 err
= fb_notifier_call_chain(FB_EVENT_NEW_MODELIST
, &event
);
1984 MODULE_LICENSE("GPL");