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>
22 #include <linux/sysfb.h>
24 #include <linux/mman.h>
26 #include <linux/init.h>
27 #include <linux/linux_logo.h>
28 #include <linux/proc_fs.h>
29 #include <linux/platform_device.h>
30 #include <linux/seq_file.h>
31 #include <linux/console.h>
32 #include <linux/kmod.h>
33 #include <linux/err.h>
34 #include <linux/device.h>
35 #include <linux/efi.h>
37 #include <linux/fbcon.h>
38 #include <linux/mem_encrypt.h>
39 #include <linux/pci.h>
45 * Frame buffer device initialization and setup routines
48 #define FBPIXMAPSIZE (1024 * 8)
50 static DEFINE_MUTEX(registration_lock);
52 struct fb_info *registered_fb[FB_MAX] __read_mostly;
53 EXPORT_SYMBOL(registered_fb);
55 int num_registered_fb __read_mostly;
56 EXPORT_SYMBOL(num_registered_fb);
58 bool fb_center_logo __read_mostly;
60 int fb_logo_count __read_mostly = -1;
62 static struct fb_info *get_fb_info(unsigned int idx)
64 struct fb_info *fb_info;
67 return ERR_PTR(-ENODEV);
69 mutex_lock(®istration_lock);
70 fb_info = registered_fb[idx];
72 refcount_inc(&fb_info->count);
73 mutex_unlock(®istration_lock);
78 static void put_fb_info(struct fb_info *fb_info)
80 if (!refcount_dec_and_test(&fb_info->count))
82 if (fb_info->fbops->fb_destroy)
83 fb_info->fbops->fb_destroy(fb_info);
90 int fb_get_color_depth(struct fb_var_screeninfo *var,
91 struct fb_fix_screeninfo *fix)
95 if (fix->visual == FB_VISUAL_MONO01 ||
96 fix->visual == FB_VISUAL_MONO10)
99 if (var->green.length == var->blue.length &&
100 var->green.length == var->red.length &&
101 var->green.offset == var->blue.offset &&
102 var->green.offset == var->red.offset)
103 depth = var->green.length;
105 depth = var->green.length + var->red.length +
111 EXPORT_SYMBOL(fb_get_color_depth);
114 * Data padding functions.
116 void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height)
118 __fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height);
120 EXPORT_SYMBOL(fb_pad_aligned_buffer);
122 void fb_pad_unaligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 idx, u32 height,
123 u32 shift_high, u32 shift_low, u32 mod)
125 u8 mask = (u8) (0xfff << shift_high), tmp;
128 for (i = height; i--; ) {
129 for (j = 0; j < idx; j++) {
132 tmp |= *src >> shift_low;
134 tmp = *src << shift_high;
140 tmp |= *src >> shift_low;
142 if (shift_high < mod) {
143 tmp = *src << shift_high;
150 EXPORT_SYMBOL(fb_pad_unaligned_buffer);
153 * we need to lock this section since fb_cursor
154 * may use fb_imageblit()
156 char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size)
158 u32 align = buf->buf_align - 1, offset;
159 char *addr = buf->addr;
161 /* If IO mapped, we need to sync before access, no sharing of
164 if (buf->flags & FB_PIXMAP_IO) {
165 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
166 info->fbops->fb_sync(info);
170 /* See if we fit in the remaining pixmap space */
171 offset = buf->offset + align;
173 if (offset + size > buf->size) {
174 /* We do not fit. In order to be able to re-use the buffer,
175 * we must ensure no asynchronous DMA'ing or whatever operation
176 * is in progress, we sync for that.
178 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
179 info->fbops->fb_sync(info);
182 buf->offset = offset + size;
187 EXPORT_SYMBOL(fb_get_buffer_offset);
191 static inline unsigned safe_shift(unsigned d, int n)
193 return n < 0 ? d >> -n : d << n;
196 static void fb_set_logocmap(struct fb_info *info,
197 const struct linux_logo *logo)
199 struct fb_cmap palette_cmap;
200 u16 palette_green[16];
201 u16 palette_blue[16];
204 const unsigned char *clut = logo->clut;
206 palette_cmap.start = 0;
207 palette_cmap.len = 16;
208 palette_cmap.red = palette_red;
209 palette_cmap.green = palette_green;
210 palette_cmap.blue = palette_blue;
211 palette_cmap.transp = NULL;
213 for (i = 0; i < logo->clutsize; i += n) {
214 n = logo->clutsize - i;
215 /* palette_cmap provides space for only 16 colors at once */
218 palette_cmap.start = 32 + i;
219 palette_cmap.len = n;
220 for (j = 0; j < n; ++j) {
221 palette_cmap.red[j] = clut[0] << 8 | clut[0];
222 palette_cmap.green[j] = clut[1] << 8 | clut[1];
223 palette_cmap.blue[j] = clut[2] << 8 | clut[2];
226 fb_set_cmap(&palette_cmap, info);
230 static void fb_set_logo_truepalette(struct fb_info *info,
231 const struct linux_logo *logo,
234 static const unsigned char mask[] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
235 unsigned char redmask, greenmask, bluemask;
236 int redshift, greenshift, blueshift;
238 const unsigned char *clut = logo->clut;
241 * We have to create a temporary palette since console palette is only
244 /* Bug: Doesn't obey msb_right ... (who needs that?) */
245 redmask = mask[info->var.red.length < 8 ? info->var.red.length : 8];
246 greenmask = mask[info->var.green.length < 8 ? info->var.green.length : 8];
247 bluemask = mask[info->var.blue.length < 8 ? info->var.blue.length : 8];
248 redshift = info->var.red.offset - (8 - info->var.red.length);
249 greenshift = info->var.green.offset - (8 - info->var.green.length);
250 blueshift = info->var.blue.offset - (8 - info->var.blue.length);
252 for ( i = 0; i < logo->clutsize; i++) {
253 palette[i+32] = (safe_shift((clut[0] & redmask), redshift) |
254 safe_shift((clut[1] & greenmask), greenshift) |
255 safe_shift((clut[2] & bluemask), blueshift));
260 static void fb_set_logo_directpalette(struct fb_info *info,
261 const struct linux_logo *logo,
264 int redshift, greenshift, blueshift;
267 redshift = info->var.red.offset;
268 greenshift = info->var.green.offset;
269 blueshift = info->var.blue.offset;
271 for (i = 32; i < 32 + logo->clutsize; i++)
272 palette[i] = i << redshift | i << greenshift | i << blueshift;
275 static void fb_set_logo(struct fb_info *info,
276 const struct linux_logo *logo, u8 *dst,
280 const u8 *src = logo->data;
281 u8 xor = (info->fix.visual == FB_VISUAL_MONO01) ? 0xff : 0;
284 switch (fb_get_color_depth(&info->var, &info->fix)) {
296 if (info->fix.visual == FB_VISUAL_MONO01 ||
297 info->fix.visual == FB_VISUAL_MONO10)
298 fg = ~((u8) (0xfff << info->var.green.length));
302 for (i = 0; i < logo->height; i++)
303 for (j = 0; j < logo->width; src++) {
306 if (j < logo->width) {
307 *dst++ = *src & 0x0f;
313 for (i = 0; i < logo->height; i++) {
314 for (j = 0; j < logo->width; src++) {
316 for (k = 7; k >= 0 && j < logo->width; k--) {
317 *dst++ = ((d >> k) & 1) ? fg : 0;
327 * Three (3) kinds of logo maps exist. linux_logo_clut224 (>16 colors),
328 * linux_logo_vga16 (16 colors) and linux_logo_mono (2 colors). Depending on
329 * the visual format and color depth of the framebuffer, the DAC, the
330 * pseudo_palette, and the logo data will be adjusted accordingly.
332 * Case 1 - linux_logo_clut224:
333 * Color exceeds the number of console colors (16), thus we set the hardware DAC
334 * using fb_set_cmap() appropriately. The "needs_cmapreset" flag will be set.
336 * For visuals that require color info from the pseudo_palette, we also construct
337 * one for temporary use. The "needs_directpalette" or "needs_truepalette" flags
340 * Case 2 - linux_logo_vga16:
341 * The number of colors just matches the console colors, thus there is no need
342 * to set the DAC or the pseudo_palette. However, the bitmap is packed, ie,
343 * each byte contains color information for two pixels (upper and lower nibble).
344 * To be consistent with fb_imageblit() usage, we therefore separate the two
345 * nibbles into separate bytes. The "depth" flag will be set to 4.
347 * Case 3 - linux_logo_mono:
348 * This is similar with Case 2. Each byte contains information for 8 pixels.
349 * We isolate each bit and expand each into a byte. The "depth" flag will
352 static struct logo_data {
354 int needs_directpalette;
355 int needs_truepalette;
357 const struct linux_logo *logo;
358 } fb_logo __read_mostly;
360 static void fb_rotate_logo_ud(const u8 *in, u8 *out, u32 width, u32 height)
362 u32 size = width * height, i;
366 for (i = size; i--; )
370 static void fb_rotate_logo_cw(const u8 *in, u8 *out, u32 width, u32 height)
372 int i, j, h = height - 1;
374 for (i = 0; i < height; i++)
375 for (j = 0; j < width; j++)
376 out[height * j + h - i] = *in++;
379 static void fb_rotate_logo_ccw(const u8 *in, u8 *out, u32 width, u32 height)
381 int i, j, w = width - 1;
383 for (i = 0; i < height; i++)
384 for (j = 0; j < width; j++)
385 out[height * (w - j) + i] = *in++;
388 static void fb_rotate_logo(struct fb_info *info, u8 *dst,
389 struct fb_image *image, int rotate)
393 if (rotate == FB_ROTATE_UD) {
394 fb_rotate_logo_ud(image->data, dst, image->width,
396 image->dx = info->var.xres - image->width - image->dx;
397 image->dy = info->var.yres - image->height - image->dy;
398 } else if (rotate == FB_ROTATE_CW) {
399 fb_rotate_logo_cw(image->data, dst, image->width,
401 swap(image->width, image->height);
403 image->dy = image->dx;
404 image->dx = info->var.xres - image->width - tmp;
405 } else if (rotate == FB_ROTATE_CCW) {
406 fb_rotate_logo_ccw(image->data, dst, image->width,
408 swap(image->width, image->height);
410 image->dx = image->dy;
411 image->dy = info->var.yres - image->height - tmp;
417 static void fb_do_show_logo(struct fb_info *info, struct fb_image *image,
418 int rotate, unsigned int num)
422 if (image->width > info->var.xres || image->height > info->var.yres)
425 if (rotate == FB_ROTATE_UR) {
427 x < num && image->dx + image->width <= info->var.xres;
429 info->fbops->fb_imageblit(info, image);
430 image->dx += image->width + 8;
432 } else if (rotate == FB_ROTATE_UD) {
435 for (x = 0; x < num && image->dx <= dx; x++) {
436 info->fbops->fb_imageblit(info, image);
437 image->dx -= image->width + 8;
439 } else if (rotate == FB_ROTATE_CW) {
441 x < num && image->dy + image->height <= info->var.yres;
443 info->fbops->fb_imageblit(info, image);
444 image->dy += image->height + 8;
446 } else if (rotate == FB_ROTATE_CCW) {
449 for (x = 0; x < num && image->dy <= dy; x++) {
450 info->fbops->fb_imageblit(info, image);
451 image->dy -= image->height + 8;
456 static int fb_show_logo_line(struct fb_info *info, int rotate,
457 const struct linux_logo *logo, int y,
460 u32 *palette = NULL, *saved_pseudo_palette = NULL;
461 unsigned char *logo_new = NULL, *logo_rotate = NULL;
462 struct fb_image image;
464 /* Return if the frame buffer is not mapped or suspended */
465 if (logo == NULL || info->state != FBINFO_STATE_RUNNING ||
470 image.data = logo->data;
472 if (fb_logo.needs_cmapreset)
473 fb_set_logocmap(info, logo);
475 if (fb_logo.needs_truepalette ||
476 fb_logo.needs_directpalette) {
477 palette = kmalloc(256 * 4, GFP_KERNEL);
481 if (fb_logo.needs_truepalette)
482 fb_set_logo_truepalette(info, logo, palette);
484 fb_set_logo_directpalette(info, logo, palette);
486 saved_pseudo_palette = info->pseudo_palette;
487 info->pseudo_palette = palette;
490 if (fb_logo.depth <= 4) {
491 logo_new = kmalloc_array(logo->width, logo->height,
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);
503 if (fb_center_logo) {
504 int xres = info->var.xres;
505 int yres = info->var.yres;
507 if (rotate == FB_ROTATE_CW || rotate == FB_ROTATE_CCW) {
508 xres = info->var.yres;
509 yres = info->var.xres;
512 while (n && (n * (logo->width + 8) - 8 > xres))
514 image.dx = (xres - (n * (logo->width + 8) - 8)) / 2;
515 image.dy = y ?: (yres - logo->height) / 2;
521 image.width = logo->width;
522 image.height = logo->height;
525 logo_rotate = kmalloc_array(logo->width, logo->height,
528 fb_rotate_logo(info, logo_rotate, &image, rotate);
531 fb_do_show_logo(info, &image, rotate, n);
534 if (saved_pseudo_palette != NULL)
535 info->pseudo_palette = saved_pseudo_palette;
538 return image.dy + logo->height;
542 #ifdef CONFIG_FB_LOGO_EXTRA
544 #define FB_LOGO_EX_NUM_MAX 10
545 static struct logo_data_extra {
546 const struct linux_logo *logo;
548 } fb_logo_ex[FB_LOGO_EX_NUM_MAX];
549 static unsigned int fb_logo_ex_num;
551 void fb_append_extra_logo(const struct linux_logo *logo, unsigned int n)
553 if (!n || fb_logo_ex_num == FB_LOGO_EX_NUM_MAX)
556 fb_logo_ex[fb_logo_ex_num].logo = logo;
557 fb_logo_ex[fb_logo_ex_num].n = n;
561 static int fb_prepare_extra_logos(struct fb_info *info, unsigned int height,
566 /* FIXME: logo_ex supports only truecolor fb. */
567 if (info->fix.visual != FB_VISUAL_TRUECOLOR)
570 for (i = 0; i < fb_logo_ex_num; i++) {
571 if (fb_logo_ex[i].logo->type != fb_logo.logo->type) {
572 fb_logo_ex[i].logo = NULL;
575 height += fb_logo_ex[i].logo->height;
577 height -= fb_logo_ex[i].logo->height;
585 static int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
589 for (i = 0; i < fb_logo_ex_num; i++)
590 y = fb_show_logo_line(info, rotate,
591 fb_logo_ex[i].logo, y, fb_logo_ex[i].n);
596 #else /* !CONFIG_FB_LOGO_EXTRA */
598 static inline int fb_prepare_extra_logos(struct fb_info *info,
605 static inline int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
610 #endif /* CONFIG_FB_LOGO_EXTRA */
613 int fb_prepare_logo(struct fb_info *info, int rotate)
615 int depth = fb_get_color_depth(&info->var, &info->fix);
619 memset(&fb_logo, 0, sizeof(struct logo_data));
621 if (info->flags & FBINFO_MISC_TILEBLITTING ||
622 info->fbops->owner || !fb_logo_count)
625 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
626 depth = info->var.blue.length;
627 if (info->var.red.length < depth)
628 depth = info->var.red.length;
629 if (info->var.green.length < depth)
630 depth = info->var.green.length;
633 if (info->fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR && depth > 4) {
634 /* assume console colormap */
638 /* Return if no suitable logo was found */
639 fb_logo.logo = fb_find_logo(depth);
645 if (rotate == FB_ROTATE_UR || rotate == FB_ROTATE_UD)
646 yres = info->var.yres;
648 yres = info->var.xres;
650 if (fb_logo.logo->height > yres) {
655 /* What depth we asked for might be different from what we get */
656 if (fb_logo.logo->type == LINUX_LOGO_CLUT224)
658 else if (fb_logo.logo->type == LINUX_LOGO_VGA16)
664 if (fb_logo.depth > 4 && depth > 4) {
665 switch (info->fix.visual) {
666 case FB_VISUAL_TRUECOLOR:
667 fb_logo.needs_truepalette = 1;
669 case FB_VISUAL_DIRECTCOLOR:
670 fb_logo.needs_directpalette = 1;
671 fb_logo.needs_cmapreset = 1;
673 case FB_VISUAL_PSEUDOCOLOR:
674 fb_logo.needs_cmapreset = 1;
679 height = fb_logo.logo->height;
681 height += (yres - fb_logo.logo->height) / 2;
683 return fb_prepare_extra_logos(info, height, yres);
686 int fb_show_logo(struct fb_info *info, int rotate)
694 count = fb_logo_count < 0 ? num_online_cpus() : fb_logo_count;
695 y = fb_show_logo_line(info, rotate, fb_logo.logo, 0, count);
696 y = fb_show_extra_logos(info, y, rotate);
701 int fb_prepare_logo(struct fb_info *info, int rotate) { return 0; }
702 int fb_show_logo(struct fb_info *info, int rotate) { return 0; }
703 #endif /* CONFIG_LOGO */
704 EXPORT_SYMBOL(fb_prepare_logo);
705 EXPORT_SYMBOL(fb_show_logo);
707 static void *fb_seq_start(struct seq_file *m, loff_t *pos)
709 mutex_lock(®istration_lock);
710 return (*pos < FB_MAX) ? pos : NULL;
713 static void *fb_seq_next(struct seq_file *m, void *v, loff_t *pos)
716 return (*pos < FB_MAX) ? pos : NULL;
719 static void fb_seq_stop(struct seq_file *m, void *v)
721 mutex_unlock(®istration_lock);
724 static int fb_seq_show(struct seq_file *m, void *v)
726 int i = *(loff_t *)v;
727 struct fb_info *fi = registered_fb[i];
730 seq_printf(m, "%d %s\n", fi->node, fi->fix.id);
734 static const struct seq_operations __maybe_unused proc_fb_seq_ops = {
735 .start = fb_seq_start,
742 * We hold a reference to the fb_info in file->private_data,
743 * but if the current registered fb has changed, we don't
744 * actually want to use it.
746 * So look up the fb_info using the inode minor number,
747 * and just verify it against the reference we have.
749 static struct fb_info *file_fb_info(struct file *file)
751 struct inode *inode = file_inode(file);
752 int fbidx = iminor(inode);
753 struct fb_info *info = registered_fb[fbidx];
755 if (info != file->private_data)
761 fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
763 unsigned long p = *ppos;
764 struct fb_info *info = file_fb_info(file);
767 int c, cnt = 0, err = 0;
768 unsigned long total_size;
770 if (!info || ! info->screen_base)
773 if (info->state != FBINFO_STATE_RUNNING)
776 if (info->fbops->fb_read)
777 return info->fbops->fb_read(info, buf, count, ppos);
779 total_size = info->screen_size;
782 total_size = info->fix.smem_len;
787 if (count >= total_size)
790 if (count + p > total_size)
791 count = total_size - p;
793 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
798 src = (u8 __iomem *) (info->screen_base + p);
800 if (info->fbops->fb_sync)
801 info->fbops->fb_sync(info);
804 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
806 fb_memcpy_fromfb(dst, src, c);
810 if (copy_to_user(buf, buffer, c)) {
822 return (err) ? err : cnt;
826 fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
828 unsigned long p = *ppos;
829 struct fb_info *info = file_fb_info(file);
832 int c, cnt = 0, err = 0;
833 unsigned long total_size;
835 if (!info || !info->screen_base)
838 if (info->state != FBINFO_STATE_RUNNING)
841 if (info->fbops->fb_write)
842 return info->fbops->fb_write(info, buf, count, ppos);
844 total_size = info->screen_size;
847 total_size = info->fix.smem_len;
852 if (count > total_size) {
857 if (count + p > total_size) {
861 count = total_size - p;
864 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
869 dst = (u8 __iomem *) (info->screen_base + p);
871 if (info->fbops->fb_sync)
872 info->fbops->fb_sync(info);
875 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
878 if (copy_from_user(src, buf, c)) {
883 fb_memcpy_tofb(dst, src, c);
894 return (cnt) ? cnt : err;
898 fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var)
900 struct fb_fix_screeninfo *fix = &info->fix;
901 unsigned int yres = info->var.yres;
904 if (var->yoffset > 0) {
905 if (var->vmode & FB_VMODE_YWRAP) {
906 if (!fix->ywrapstep || (var->yoffset % fix->ywrapstep))
910 } else if (!fix->ypanstep || (var->yoffset % fix->ypanstep))
914 if (var->xoffset > 0 && (!fix->xpanstep ||
915 (var->xoffset % fix->xpanstep)))
918 if (err || !info->fbops->fb_pan_display ||
919 var->yoffset > info->var.yres_virtual - yres ||
920 var->xoffset > info->var.xres_virtual - info->var.xres)
923 if ((err = info->fbops->fb_pan_display(var, info)))
925 info->var.xoffset = var->xoffset;
926 info->var.yoffset = var->yoffset;
927 if (var->vmode & FB_VMODE_YWRAP)
928 info->var.vmode |= FB_VMODE_YWRAP;
930 info->var.vmode &= ~FB_VMODE_YWRAP;
933 EXPORT_SYMBOL(fb_pan_display);
935 static int fb_check_caps(struct fb_info *info, struct fb_var_screeninfo *var,
938 struct fb_blit_caps caps, fbcaps;
941 memset(&caps, 0, sizeof(caps));
942 memset(&fbcaps, 0, sizeof(fbcaps));
943 caps.flags = (activate & FB_ACTIVATE_ALL) ? 1 : 0;
944 fbcon_get_requirement(info, &caps);
945 info->fbops->fb_get_caps(info, &fbcaps, var);
947 if (((fbcaps.x ^ caps.x) & caps.x) ||
948 ((fbcaps.y ^ caps.y) & caps.y) ||
949 (fbcaps.len < caps.len))
956 fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var)
960 struct fb_var_screeninfo old_var;
961 struct fb_videomode mode;
962 struct fb_event event;
965 if (var->activate & FB_ACTIVATE_INV_MODE) {
966 struct fb_videomode mode1, mode2;
968 fb_var_to_videomode(&mode1, var);
969 fb_var_to_videomode(&mode2, &info->var);
970 /* make sure we don't delete the videomode of current var */
971 ret = fb_mode_is_equal(&mode1, &mode2);
973 ret = fbcon_mode_deleted(info, &mode1);
975 fb_delete_videomode(&mode1, &info->modelist);
978 return ret ? -EINVAL : 0;
981 if (!(var->activate & FB_ACTIVATE_FORCE) &&
982 !memcmp(&info->var, var, sizeof(struct fb_var_screeninfo)))
985 activate = var->activate;
987 /* When using FOURCC mode, make sure the red, green, blue and
988 * transp fields are set to 0.
990 if ((info->fix.capabilities & FB_CAP_FOURCC) &&
991 var->grayscale > 1) {
992 if (var->red.offset || var->green.offset ||
993 var->blue.offset || var->transp.offset ||
994 var->red.length || var->green.length ||
995 var->blue.length || var->transp.length ||
996 var->red.msb_right || var->green.msb_right ||
997 var->blue.msb_right || var->transp.msb_right)
1001 if (!info->fbops->fb_check_var) {
1006 /* bitfill_aligned() assumes that it's at least 8x8 */
1007 if (var->xres < 8 || var->yres < 8)
1010 /* Too huge resolution causes multiplication overflow. */
1011 if (check_mul_overflow(var->xres, var->yres, &unused) ||
1012 check_mul_overflow(var->xres_virtual, var->yres_virtual, &unused))
1015 ret = info->fbops->fb_check_var(var, info);
1020 /* verify that virtual resolution >= physical resolution */
1021 if (var->xres_virtual < var->xres ||
1022 var->yres_virtual < var->yres) {
1023 pr_warn("WARNING: fbcon: Driver '%s' missed to adjust virtual screen size (%ux%u vs. %ux%u)\n",
1025 var->xres_virtual, var->yres_virtual,
1026 var->xres, var->yres);
1030 if ((var->activate & FB_ACTIVATE_MASK) != FB_ACTIVATE_NOW)
1033 if (info->fbops->fb_get_caps) {
1034 ret = fb_check_caps(info, var, activate);
1040 old_var = info->var;
1043 if (info->fbops->fb_set_par) {
1044 ret = info->fbops->fb_set_par(info);
1047 info->var = old_var;
1048 printk(KERN_WARNING "detected "
1049 "fb_set_par error, "
1050 "error code: %d\n", ret);
1055 fb_pan_display(info, &info->var);
1056 fb_set_cmap(&info->cmap, info);
1057 fb_var_to_videomode(&mode, &info->var);
1059 if (info->modelist.prev && info->modelist.next &&
1060 !list_empty(&info->modelist))
1061 ret = fb_add_videomode(&mode, &info->modelist);
1068 fb_notifier_call_chain(FB_EVENT_MODE_CHANGE, &event);
1072 EXPORT_SYMBOL(fb_set_var);
1075 fb_blank(struct fb_info *info, int blank)
1077 struct fb_event event;
1080 if (blank > FB_BLANK_POWERDOWN)
1081 blank = FB_BLANK_POWERDOWN;
1084 event.data = ␣
1086 if (info->fbops->fb_blank)
1087 ret = info->fbops->fb_blank(blank, info);
1090 fb_notifier_call_chain(FB_EVENT_BLANK, &event);
1094 EXPORT_SYMBOL(fb_blank);
1096 static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,
1099 const struct fb_ops *fb;
1100 struct fb_var_screeninfo var;
1101 struct fb_fix_screeninfo fix;
1102 struct fb_cmap cmap_from;
1103 struct fb_cmap_user cmap;
1104 void __user *argp = (void __user *)arg;
1108 case FBIOGET_VSCREENINFO:
1111 unlock_fb_info(info);
1113 ret = copy_to_user(argp, &var, sizeof(var)) ? -EFAULT : 0;
1115 case FBIOPUT_VSCREENINFO:
1116 if (copy_from_user(&var, argp, sizeof(var)))
1120 ret = fbcon_modechange_possible(info, &var);
1122 ret = fb_set_var(info, &var);
1124 fbcon_update_vcs(info, var.activate & FB_ACTIVATE_ALL);
1125 unlock_fb_info(info);
1127 if (!ret && copy_to_user(argp, &var, sizeof(var)))
1130 case FBIOGET_FSCREENINFO:
1132 memcpy(&fix, &info->fix, sizeof(fix));
1133 if (info->flags & FBINFO_HIDE_SMEM_START)
1135 unlock_fb_info(info);
1137 ret = copy_to_user(argp, &fix, sizeof(fix)) ? -EFAULT : 0;
1140 if (copy_from_user(&cmap, argp, sizeof(cmap)))
1142 ret = fb_set_user_cmap(&cmap, info);
1145 if (copy_from_user(&cmap, argp, sizeof(cmap)))
1148 cmap_from = info->cmap;
1149 unlock_fb_info(info);
1150 ret = fb_cmap_to_user(&cmap_from, &cmap);
1152 case FBIOPAN_DISPLAY:
1153 if (copy_from_user(&var, argp, sizeof(var)))
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 ret = fbcon_get_con2fb_map_ioctl(argp);
1169 case FBIOPUT_CON2FBMAP:
1170 ret = fbcon_set_con2fb_map_ioctl(argp);
1173 if (arg > FB_BLANK_POWERDOWN)
1177 ret = fb_blank(info, arg);
1178 /* might again call into fb_blank */
1179 fbcon_fb_blanked(info, arg);
1180 unlock_fb_info(info);
1187 ret = fb->fb_ioctl(info, cmd, arg);
1190 unlock_fb_info(info);
1195 static long fb_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1197 struct fb_info *info = file_fb_info(file);
1201 return do_fb_ioctl(info, cmd, arg);
1204 #ifdef CONFIG_COMPAT
1205 struct fb_fix_screeninfo32 {
1207 compat_caddr_t smem_start;
1216 compat_caddr_t mmio_start;
1226 compat_caddr_t green;
1227 compat_caddr_t blue;
1228 compat_caddr_t transp;
1231 static int fb_getput_cmap(struct fb_info *info, unsigned int cmd,
1234 struct fb_cmap32 cmap32;
1235 struct fb_cmap cmap_from;
1236 struct fb_cmap_user cmap;
1238 if (copy_from_user(&cmap32, compat_ptr(arg), sizeof(cmap32)))
1241 cmap = (struct fb_cmap_user) {
1242 .start = cmap32.start,
1244 .red = compat_ptr(cmap32.red),
1245 .green = compat_ptr(cmap32.green),
1246 .blue = compat_ptr(cmap32.blue),
1247 .transp = compat_ptr(cmap32.transp),
1250 if (cmd == FBIOPUTCMAP)
1251 return fb_set_user_cmap(&cmap, info);
1254 cmap_from = info->cmap;
1255 unlock_fb_info(info);
1257 return fb_cmap_to_user(&cmap_from, &cmap);
1260 static int do_fscreeninfo_to_user(struct fb_fix_screeninfo *fix,
1261 struct fb_fix_screeninfo32 __user *fix32)
1266 err = copy_to_user(&fix32->id, &fix->id, sizeof(fix32->id));
1268 data = (__u32) (unsigned long) fix->smem_start;
1269 err |= put_user(data, &fix32->smem_start);
1271 err |= put_user(fix->smem_len, &fix32->smem_len);
1272 err |= put_user(fix->type, &fix32->type);
1273 err |= put_user(fix->type_aux, &fix32->type_aux);
1274 err |= put_user(fix->visual, &fix32->visual);
1275 err |= put_user(fix->xpanstep, &fix32->xpanstep);
1276 err |= put_user(fix->ypanstep, &fix32->ypanstep);
1277 err |= put_user(fix->ywrapstep, &fix32->ywrapstep);
1278 err |= put_user(fix->line_length, &fix32->line_length);
1280 data = (__u32) (unsigned long) fix->mmio_start;
1281 err |= put_user(data, &fix32->mmio_start);
1283 err |= put_user(fix->mmio_len, &fix32->mmio_len);
1284 err |= put_user(fix->accel, &fix32->accel);
1285 err |= copy_to_user(fix32->reserved, fix->reserved,
1286 sizeof(fix->reserved));
1293 static int fb_get_fscreeninfo(struct fb_info *info, unsigned int cmd,
1296 struct fb_fix_screeninfo fix;
1300 if (info->flags & FBINFO_HIDE_SMEM_START)
1302 unlock_fb_info(info);
1303 return do_fscreeninfo_to_user(&fix, compat_ptr(arg));
1306 static long fb_compat_ioctl(struct file *file, unsigned int cmd,
1309 struct fb_info *info = file_fb_info(file);
1310 const struct fb_ops *fb;
1311 long ret = -ENOIOCTLCMD;
1317 case FBIOGET_VSCREENINFO:
1318 case FBIOPUT_VSCREENINFO:
1319 case FBIOPAN_DISPLAY:
1320 case FBIOGET_CON2FBMAP:
1321 case FBIOPUT_CON2FBMAP:
1322 arg = (unsigned long) compat_ptr(arg);
1325 ret = do_fb_ioctl(info, cmd, arg);
1328 case FBIOGET_FSCREENINFO:
1329 ret = fb_get_fscreeninfo(info, cmd, arg);
1334 ret = fb_getput_cmap(info, cmd, arg);
1338 if (fb->fb_compat_ioctl)
1339 ret = fb->fb_compat_ioctl(info, cmd, arg);
1347 fb_mmap(struct file *file, struct vm_area_struct * vma)
1349 struct fb_info *info = file_fb_info(file);
1350 unsigned long mmio_pgoff;
1351 unsigned long start;
1356 mutex_lock(&info->mm_lock);
1358 if (info->fbops->fb_mmap) {
1362 * The framebuffer needs to be accessed decrypted, be sure
1363 * SME protection is removed ahead of the call
1365 vma->vm_page_prot = pgprot_decrypted(vma->vm_page_prot);
1366 res = info->fbops->fb_mmap(info, vma);
1367 mutex_unlock(&info->mm_lock);
1369 #if IS_ENABLED(CONFIG_FB_DEFERRED_IO)
1370 } else if (info->fbdefio) {
1372 * FB deferred I/O wants you to handle mmap in your drivers. At a
1373 * minimum, point struct fb_ops.fb_mmap to fb_deferred_io_mmap().
1375 dev_warn_once(info->dev, "fbdev mmap not set up for deferred I/O.\n");
1376 mutex_unlock(&info->mm_lock);
1382 * Ugh. This can be either the frame buffer mapping, or
1383 * if pgoff points past it, the mmio mapping.
1385 start = info->fix.smem_start;
1386 len = info->fix.smem_len;
1387 mmio_pgoff = PAGE_ALIGN((start & ~PAGE_MASK) + len) >> PAGE_SHIFT;
1388 if (vma->vm_pgoff >= mmio_pgoff) {
1389 if (info->var.accel_flags) {
1390 mutex_unlock(&info->mm_lock);
1394 vma->vm_pgoff -= mmio_pgoff;
1395 start = info->fix.mmio_start;
1396 len = info->fix.mmio_len;
1398 mutex_unlock(&info->mm_lock);
1400 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
1401 fb_pgprotect(file, vma, start);
1403 return vm_iomap_memory(vma, start, len);
1407 fb_open(struct inode *inode, struct file *file)
1408 __acquires(&info->lock)
1409 __releases(&info->lock)
1411 int fbidx = iminor(inode);
1412 struct fb_info *info;
1415 info = get_fb_info(fbidx);
1417 request_module("fb%d", fbidx);
1418 info = get_fb_info(fbidx);
1423 return PTR_ERR(info);
1426 if (!try_module_get(info->fbops->owner)) {
1430 file->private_data = info;
1431 if (info->fbops->fb_open) {
1432 res = info->fbops->fb_open(info,1);
1434 module_put(info->fbops->owner);
1436 #ifdef CONFIG_FB_DEFERRED_IO
1438 fb_deferred_io_open(info, inode, file);
1441 unlock_fb_info(info);
1448 fb_release(struct inode *inode, struct file *file)
1449 __acquires(&info->lock)
1450 __releases(&info->lock)
1452 struct fb_info * const info = file->private_data;
1455 if (info->fbops->fb_release)
1456 info->fbops->fb_release(info,1);
1457 module_put(info->fbops->owner);
1458 unlock_fb_info(info);
1463 #if defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && !defined(CONFIG_MMU)
1464 unsigned long get_fb_unmapped_area(struct file *filp,
1465 unsigned long addr, unsigned long len,
1466 unsigned long pgoff, unsigned long flags)
1468 struct fb_info * const info = filp->private_data;
1469 unsigned long fb_size = PAGE_ALIGN(info->fix.smem_len);
1471 if (pgoff > fb_size || len > fb_size - pgoff)
1474 return (unsigned long)info->screen_base + pgoff;
1478 static const struct file_operations fb_fops = {
1479 .owner = THIS_MODULE,
1482 .unlocked_ioctl = fb_ioctl,
1483 #ifdef CONFIG_COMPAT
1484 .compat_ioctl = fb_compat_ioctl,
1488 .release = fb_release,
1489 #if defined(HAVE_ARCH_FB_UNMAPPED_AREA) || \
1490 (defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && \
1491 !defined(CONFIG_MMU))
1492 .get_unmapped_area = get_fb_unmapped_area,
1494 #ifdef CONFIG_FB_DEFERRED_IO
1495 .fsync = fb_deferred_io_fsync,
1497 .llseek = default_llseek,
1500 struct class *fb_class;
1501 EXPORT_SYMBOL(fb_class);
1503 static int fb_check_foreignness(struct fb_info *fi)
1505 const bool foreign_endian = fi->flags & FBINFO_FOREIGN_ENDIAN;
1507 fi->flags &= ~FBINFO_FOREIGN_ENDIAN;
1510 fi->flags |= foreign_endian ? 0 : FBINFO_BE_MATH;
1512 fi->flags |= foreign_endian ? FBINFO_BE_MATH : 0;
1513 #endif /* __BIG_ENDIAN */
1515 if (fi->flags & FBINFO_BE_MATH && !fb_be_math(fi)) {
1516 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1517 "support this framebuffer\n", fi->fix.id);
1519 } else if (!(fi->flags & FBINFO_BE_MATH) && fb_be_math(fi)) {
1520 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1521 "support this framebuffer\n", fi->fix.id);
1528 static bool apertures_overlap(struct aperture *gen, struct aperture *hw)
1530 /* is the generic aperture base the same as the HW one */
1531 if (gen->base == hw->base)
1533 /* is the generic aperture base inside the hw base->hw base+size */
1534 if (gen->base > hw->base && gen->base < hw->base + hw->size)
1539 static bool fb_do_apertures_overlap(struct apertures_struct *gena,
1540 struct apertures_struct *hwa)
1546 for (i = 0; i < hwa->count; ++i) {
1547 struct aperture *h = &hwa->ranges[i];
1548 for (j = 0; j < gena->count; ++j) {
1549 struct aperture *g = &gena->ranges[j];
1550 printk(KERN_DEBUG "checking generic (%llx %llx) vs hw (%llx %llx)\n",
1551 (unsigned long long)g->base,
1552 (unsigned long long)g->size,
1553 (unsigned long long)h->base,
1554 (unsigned long long)h->size);
1555 if (apertures_overlap(g, h))
1563 static void do_unregister_framebuffer(struct fb_info *fb_info);
1565 #define VGA_FB_PHYS 0xA0000
1566 static void do_remove_conflicting_framebuffers(struct apertures_struct *a,
1567 const char *name, bool primary)
1571 /* check all firmware fbs and kick off if the base addr overlaps */
1572 for_each_registered_fb(i) {
1573 struct apertures_struct *gen_aper;
1574 struct device *device;
1576 if (!(registered_fb[i]->flags & FBINFO_MISC_FIRMWARE))
1579 gen_aper = registered_fb[i]->apertures;
1580 device = registered_fb[i]->device;
1581 if (fb_do_apertures_overlap(gen_aper, a) ||
1582 (primary && gen_aper && gen_aper->count &&
1583 gen_aper->ranges[0].base == VGA_FB_PHYS)) {
1585 printk(KERN_INFO "fb%d: switching to %s from %s\n",
1586 i, name, registered_fb[i]->fix.id);
1589 * If we kick-out a firmware driver, we also want to remove
1590 * the underlying platform device, such as simple-framebuffer,
1591 * VESA, EFI, etc. A native driver will then be able to
1592 * allocate the memory range.
1594 * If it's not a platform device, at least print a warning. A
1595 * fix would add code to remove the device from the system. For
1596 * framebuffers without any Linux device, print a warning as
1600 pr_warn("fb%d: no device set\n", i);
1601 do_unregister_framebuffer(registered_fb[i]);
1602 } else if (dev_is_platform(device)) {
1603 registered_fb[i]->forced_out = true;
1604 platform_device_unregister(to_platform_device(device));
1606 pr_warn("fb%d: cannot remove device\n", i);
1607 do_unregister_framebuffer(registered_fb[i]);
1613 static int do_register_framebuffer(struct fb_info *fb_info)
1616 struct fb_videomode mode;
1618 if (fb_check_foreignness(fb_info))
1621 do_remove_conflicting_framebuffers(fb_info->apertures,
1623 fb_is_primary_device(fb_info));
1625 if (num_registered_fb == FB_MAX)
1628 num_registered_fb++;
1629 for (i = 0 ; i < FB_MAX; i++)
1630 if (!registered_fb[i])
1633 refcount_set(&fb_info->count, 1);
1634 mutex_init(&fb_info->lock);
1635 mutex_init(&fb_info->mm_lock);
1637 fb_info->dev = device_create(fb_class, fb_info->device,
1638 MKDEV(FB_MAJOR, i), NULL, "fb%d", i);
1639 if (IS_ERR(fb_info->dev)) {
1641 printk(KERN_WARNING "Unable to create device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->dev));
1642 fb_info->dev = NULL;
1644 fb_init_device(fb_info);
1646 if (fb_info->pixmap.addr == NULL) {
1647 fb_info->pixmap.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL);
1648 if (fb_info->pixmap.addr) {
1649 fb_info->pixmap.size = FBPIXMAPSIZE;
1650 fb_info->pixmap.buf_align = 1;
1651 fb_info->pixmap.scan_align = 1;
1652 fb_info->pixmap.access_align = 32;
1653 fb_info->pixmap.flags = FB_PIXMAP_DEFAULT;
1656 fb_info->pixmap.offset = 0;
1658 if (!fb_info->pixmap.blit_x)
1659 fb_info->pixmap.blit_x = ~(u32)0;
1661 if (!fb_info->pixmap.blit_y)
1662 fb_info->pixmap.blit_y = ~(u32)0;
1664 if (!fb_info->modelist.prev || !fb_info->modelist.next)
1665 INIT_LIST_HEAD(&fb_info->modelist);
1667 if (fb_info->skip_vt_switch)
1668 pm_vt_switch_required(fb_info->dev, false);
1670 pm_vt_switch_required(fb_info->dev, true);
1672 fb_var_to_videomode(&mode, &fb_info->var);
1673 fb_add_videomode(&mode, &fb_info->modelist);
1674 registered_fb[i] = fb_info;
1676 #ifdef CONFIG_GUMSTIX_AM200EPD
1678 struct fb_event event;
1679 event.info = fb_info;
1680 fb_notifier_call_chain(FB_EVENT_FB_REGISTERED, &event);
1684 return fbcon_fb_registered(fb_info);
1687 static void unbind_console(struct fb_info *fb_info)
1689 int i = fb_info->node;
1691 if (WARN_ON(i < 0 || i >= FB_MAX || registered_fb[i] != fb_info))
1694 fbcon_fb_unbind(fb_info);
1697 static void unlink_framebuffer(struct fb_info *fb_info)
1702 if (WARN_ON(i < 0 || i >= FB_MAX || registered_fb[i] != fb_info))
1708 device_destroy(fb_class, MKDEV(FB_MAJOR, i));
1710 pm_vt_switch_unregister(fb_info->dev);
1712 unbind_console(fb_info);
1714 fb_info->dev = NULL;
1717 static void do_unregister_framebuffer(struct fb_info *fb_info)
1719 unlink_framebuffer(fb_info);
1720 if (fb_info->pixmap.addr &&
1721 (fb_info->pixmap.flags & FB_PIXMAP_DEFAULT)) {
1722 kfree(fb_info->pixmap.addr);
1723 fb_info->pixmap.addr = NULL;
1726 fb_destroy_modelist(&fb_info->modelist);
1727 registered_fb[fb_info->node] = NULL;
1728 num_registered_fb--;
1729 fb_cleanup_device(fb_info);
1730 #ifdef CONFIG_GUMSTIX_AM200EPD
1732 struct fb_event event;
1733 event.info = fb_info;
1734 fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED, &event);
1737 fbcon_fb_unregistered(fb_info);
1739 /* this may free fb info */
1740 put_fb_info(fb_info);
1744 * remove_conflicting_framebuffers - remove firmware-configured framebuffers
1745 * @a: memory range, users of which are to be removed
1746 * @name: requesting driver name
1747 * @primary: also kick vga16fb if present
1749 * This function removes framebuffer devices (initialized by firmware/bootloader)
1750 * which use memory range described by @a. If @a is NULL all such devices are
1753 int remove_conflicting_framebuffers(struct apertures_struct *a,
1754 const char *name, bool primary)
1756 bool do_free = false;
1759 a = alloc_apertures(1);
1763 a->ranges[0].base = 0;
1764 a->ranges[0].size = ~0;
1769 * If a driver asked to unregister a platform device registered by
1770 * sysfb, then can be assumed that this is a driver for a display
1771 * that is set up by the system firmware and has a generic driver.
1773 * Drivers for devices that don't have a generic driver will never
1774 * ask for this, so let's assume that a real driver for the display
1775 * was already probed and prevent sysfb to register devices later.
1779 mutex_lock(®istration_lock);
1780 do_remove_conflicting_framebuffers(a, name, primary);
1781 mutex_unlock(®istration_lock);
1788 EXPORT_SYMBOL(remove_conflicting_framebuffers);
1791 * remove_conflicting_pci_framebuffers - remove firmware-configured framebuffers for PCI devices
1793 * @name: requesting driver name
1795 * This function removes framebuffer devices (eg. initialized by firmware)
1796 * using memory range configured for any of @pdev's memory bars.
1798 * The function assumes that PCI device with shadowed ROM drives a primary
1799 * display and so kicks out vga16fb.
1801 int remove_conflicting_pci_framebuffers(struct pci_dev *pdev, const char *name)
1803 struct apertures_struct *ap;
1804 bool primary = false;
1807 for (idx = 0, bar = 0; bar < PCI_STD_NUM_BARS; bar++) {
1808 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM))
1813 ap = alloc_apertures(idx);
1817 for (idx = 0, bar = 0; bar < PCI_STD_NUM_BARS; bar++) {
1818 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM))
1820 ap->ranges[idx].base = pci_resource_start(pdev, bar);
1821 ap->ranges[idx].size = pci_resource_len(pdev, bar);
1822 pci_dbg(pdev, "%s: bar %d: 0x%lx -> 0x%lx\n", __func__, bar,
1823 (unsigned long)pci_resource_start(pdev, bar),
1824 (unsigned long)pci_resource_end(pdev, bar));
1829 primary = pdev->resource[PCI_ROM_RESOURCE].flags &
1830 IORESOURCE_ROM_SHADOW;
1832 err = remove_conflicting_framebuffers(ap, name, primary);
1836 EXPORT_SYMBOL(remove_conflicting_pci_framebuffers);
1839 * register_framebuffer - registers a frame buffer device
1840 * @fb_info: frame buffer info structure
1842 * Registers a frame buffer device @fb_info.
1844 * Returns negative errno on error, or zero for success.
1848 register_framebuffer(struct fb_info *fb_info)
1852 mutex_lock(®istration_lock);
1853 ret = do_register_framebuffer(fb_info);
1854 mutex_unlock(®istration_lock);
1858 EXPORT_SYMBOL(register_framebuffer);
1861 * unregister_framebuffer - releases a frame buffer device
1862 * @fb_info: frame buffer info structure
1864 * Unregisters a frame buffer device @fb_info.
1866 * Returns negative errno on error, or zero for success.
1868 * This function will also notify the framebuffer console
1869 * to release the driver.
1871 * This is meant to be called within a driver's module_exit()
1872 * function. If this is called outside module_exit(), ensure
1873 * that the driver implements fb_open() and fb_release() to
1874 * check that no processes are using the device.
1877 unregister_framebuffer(struct fb_info *fb_info)
1879 bool forced_out = fb_info->forced_out;
1882 mutex_lock(®istration_lock);
1883 do_unregister_framebuffer(fb_info);
1885 mutex_unlock(®istration_lock);
1887 EXPORT_SYMBOL(unregister_framebuffer);
1890 * fb_set_suspend - low level driver signals suspend
1891 * @info: framebuffer affected
1892 * @state: 0 = resuming, !=0 = suspending
1894 * This is meant to be used by low level drivers to
1895 * signal suspend/resume to the core & clients.
1896 * It must be called with the console semaphore held
1898 void fb_set_suspend(struct fb_info *info, int state)
1900 WARN_CONSOLE_UNLOCKED();
1903 fbcon_suspended(info);
1904 info->state = FBINFO_STATE_SUSPENDED;
1906 info->state = FBINFO_STATE_RUNNING;
1907 fbcon_resumed(info);
1910 EXPORT_SYMBOL(fb_set_suspend);
1913 * fbmem_init - init frame buffer subsystem
1915 * Initialize the frame buffer subsystem.
1917 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1926 if (!proc_create_seq("fb", 0, NULL, &proc_fb_seq_ops))
1929 ret = register_chrdev(FB_MAJOR, "fb", &fb_fops);
1931 printk("unable to get major %d for fb devs\n", FB_MAJOR);
1935 fb_class = class_create(THIS_MODULE, "graphics");
1936 if (IS_ERR(fb_class)) {
1937 ret = PTR_ERR(fb_class);
1938 pr_warn("Unable to create fb class; errno = %d\n", ret);
1948 unregister_chrdev(FB_MAJOR, "fb");
1950 remove_proc_entry("fb", NULL);
1955 module_init(fbmem_init);
1961 remove_proc_entry("fb", NULL);
1962 class_destroy(fb_class);
1963 unregister_chrdev(FB_MAJOR, "fb");
1966 module_exit(fbmem_exit);
1967 MODULE_LICENSE("GPL");
1968 MODULE_DESCRIPTION("Framebuffer base");
1970 subsys_initcall(fbmem_init);
1973 int fb_new_modelist(struct fb_info *info)
1975 struct fb_var_screeninfo var = info->var;
1976 struct list_head *pos, *n;
1977 struct fb_modelist *modelist;
1978 struct fb_videomode *m, mode;
1981 list_for_each_safe(pos, n, &info->modelist) {
1982 modelist = list_entry(pos, struct fb_modelist, list);
1983 m = &modelist->mode;
1984 fb_videomode_to_var(&var, m);
1985 var.activate = FB_ACTIVATE_TEST;
1986 err = fb_set_var(info, &var);
1987 fb_var_to_videomode(&mode, &var);
1988 if (err || !fb_mode_is_equal(m, &mode)) {
1994 if (list_empty(&info->modelist))
1997 fbcon_new_modelist(info);
2002 MODULE_LICENSE("GPL");