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 if ((var->activate & FB_ACTIVATE_MASK) != FB_ACTIVATE_NOW)
1023 if (info->fbops->fb_get_caps) {
1024 ret = fb_check_caps(info, var, activate);
1030 old_var = info->var;
1033 if (info->fbops->fb_set_par) {
1034 ret = info->fbops->fb_set_par(info);
1037 info->var = old_var;
1038 printk(KERN_WARNING "detected "
1039 "fb_set_par error, "
1040 "error code: %d\n", ret);
1045 fb_pan_display(info, &info->var);
1046 fb_set_cmap(&info->cmap, info);
1047 fb_var_to_videomode(&mode, &info->var);
1049 if (info->modelist.prev && info->modelist.next &&
1050 !list_empty(&info->modelist))
1051 ret = fb_add_videomode(&mode, &info->modelist);
1058 fb_notifier_call_chain(FB_EVENT_MODE_CHANGE, &event);
1062 EXPORT_SYMBOL(fb_set_var);
1065 fb_blank(struct fb_info *info, int blank)
1067 struct fb_event event;
1070 if (blank > FB_BLANK_POWERDOWN)
1071 blank = FB_BLANK_POWERDOWN;
1074 event.data = ␣
1076 if (info->fbops->fb_blank)
1077 ret = info->fbops->fb_blank(blank, info);
1080 fb_notifier_call_chain(FB_EVENT_BLANK, &event);
1084 EXPORT_SYMBOL(fb_blank);
1086 static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,
1089 const struct fb_ops *fb;
1090 struct fb_var_screeninfo var;
1091 struct fb_fix_screeninfo fix;
1092 struct fb_cmap cmap_from;
1093 struct fb_cmap_user cmap;
1094 void __user *argp = (void __user *)arg;
1098 case FBIOGET_VSCREENINFO:
1101 unlock_fb_info(info);
1103 ret = copy_to_user(argp, &var, sizeof(var)) ? -EFAULT : 0;
1105 case FBIOPUT_VSCREENINFO:
1106 if (copy_from_user(&var, argp, sizeof(var)))
1110 ret = fb_set_var(info, &var);
1112 fbcon_update_vcs(info, var.activate & FB_ACTIVATE_ALL);
1113 unlock_fb_info(info);
1115 if (!ret && copy_to_user(argp, &var, sizeof(var)))
1118 case FBIOGET_FSCREENINFO:
1120 memcpy(&fix, &info->fix, sizeof(fix));
1121 if (info->flags & FBINFO_HIDE_SMEM_START)
1123 unlock_fb_info(info);
1125 ret = copy_to_user(argp, &fix, sizeof(fix)) ? -EFAULT : 0;
1128 if (copy_from_user(&cmap, argp, sizeof(cmap)))
1130 ret = fb_set_user_cmap(&cmap, info);
1133 if (copy_from_user(&cmap, argp, sizeof(cmap)))
1136 cmap_from = info->cmap;
1137 unlock_fb_info(info);
1138 ret = fb_cmap_to_user(&cmap_from, &cmap);
1140 case FBIOPAN_DISPLAY:
1141 if (copy_from_user(&var, argp, sizeof(var)))
1145 ret = fb_pan_display(info, &var);
1146 unlock_fb_info(info);
1148 if (ret == 0 && copy_to_user(argp, &var, sizeof(var)))
1154 case FBIOGET_CON2FBMAP:
1155 ret = fbcon_get_con2fb_map_ioctl(argp);
1157 case FBIOPUT_CON2FBMAP:
1158 ret = fbcon_set_con2fb_map_ioctl(argp);
1161 if (arg > FB_BLANK_POWERDOWN)
1165 ret = fb_blank(info, arg);
1166 /* might again call into fb_blank */
1167 fbcon_fb_blanked(info, arg);
1168 unlock_fb_info(info);
1175 ret = fb->fb_ioctl(info, cmd, arg);
1178 unlock_fb_info(info);
1183 static long fb_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1185 struct fb_info *info = file_fb_info(file);
1189 return do_fb_ioctl(info, cmd, arg);
1192 #ifdef CONFIG_COMPAT
1193 struct fb_fix_screeninfo32 {
1195 compat_caddr_t smem_start;
1204 compat_caddr_t mmio_start;
1214 compat_caddr_t green;
1215 compat_caddr_t blue;
1216 compat_caddr_t transp;
1219 static int fb_getput_cmap(struct fb_info *info, unsigned int cmd,
1222 struct fb_cmap32 cmap32;
1223 struct fb_cmap cmap_from;
1224 struct fb_cmap_user cmap;
1226 if (copy_from_user(&cmap32, compat_ptr(arg), sizeof(cmap32)))
1229 cmap = (struct fb_cmap_user) {
1230 .start = cmap32.start,
1232 .red = compat_ptr(cmap32.red),
1233 .green = compat_ptr(cmap32.green),
1234 .blue = compat_ptr(cmap32.blue),
1235 .transp = compat_ptr(cmap32.transp),
1238 if (cmd == FBIOPUTCMAP)
1239 return fb_set_user_cmap(&cmap, info);
1242 cmap_from = info->cmap;
1243 unlock_fb_info(info);
1245 return fb_cmap_to_user(&cmap_from, &cmap);
1248 static int do_fscreeninfo_to_user(struct fb_fix_screeninfo *fix,
1249 struct fb_fix_screeninfo32 __user *fix32)
1254 err = copy_to_user(&fix32->id, &fix->id, sizeof(fix32->id));
1256 data = (__u32) (unsigned long) fix->smem_start;
1257 err |= put_user(data, &fix32->smem_start);
1259 err |= put_user(fix->smem_len, &fix32->smem_len);
1260 err |= put_user(fix->type, &fix32->type);
1261 err |= put_user(fix->type_aux, &fix32->type_aux);
1262 err |= put_user(fix->visual, &fix32->visual);
1263 err |= put_user(fix->xpanstep, &fix32->xpanstep);
1264 err |= put_user(fix->ypanstep, &fix32->ypanstep);
1265 err |= put_user(fix->ywrapstep, &fix32->ywrapstep);
1266 err |= put_user(fix->line_length, &fix32->line_length);
1268 data = (__u32) (unsigned long) fix->mmio_start;
1269 err |= put_user(data, &fix32->mmio_start);
1271 err |= put_user(fix->mmio_len, &fix32->mmio_len);
1272 err |= put_user(fix->accel, &fix32->accel);
1273 err |= copy_to_user(fix32->reserved, fix->reserved,
1274 sizeof(fix->reserved));
1281 static int fb_get_fscreeninfo(struct fb_info *info, unsigned int cmd,
1284 struct fb_fix_screeninfo fix;
1288 if (info->flags & FBINFO_HIDE_SMEM_START)
1290 unlock_fb_info(info);
1291 return do_fscreeninfo_to_user(&fix, compat_ptr(arg));
1294 static long fb_compat_ioctl(struct file *file, unsigned int cmd,
1297 struct fb_info *info = file_fb_info(file);
1298 const struct fb_ops *fb;
1299 long ret = -ENOIOCTLCMD;
1305 case FBIOGET_VSCREENINFO:
1306 case FBIOPUT_VSCREENINFO:
1307 case FBIOPAN_DISPLAY:
1308 case FBIOGET_CON2FBMAP:
1309 case FBIOPUT_CON2FBMAP:
1310 arg = (unsigned long) compat_ptr(arg);
1313 ret = do_fb_ioctl(info, cmd, arg);
1316 case FBIOGET_FSCREENINFO:
1317 ret = fb_get_fscreeninfo(info, cmd, arg);
1322 ret = fb_getput_cmap(info, cmd, arg);
1326 if (fb->fb_compat_ioctl)
1327 ret = fb->fb_compat_ioctl(info, cmd, arg);
1335 fb_mmap(struct file *file, struct vm_area_struct * vma)
1337 struct fb_info *info = file_fb_info(file);
1338 unsigned long mmio_pgoff;
1339 unsigned long start;
1344 mutex_lock(&info->mm_lock);
1346 if (info->fbops->fb_mmap) {
1350 * The framebuffer needs to be accessed decrypted, be sure
1351 * SME protection is removed ahead of the call
1353 vma->vm_page_prot = pgprot_decrypted(vma->vm_page_prot);
1354 res = info->fbops->fb_mmap(info, vma);
1355 mutex_unlock(&info->mm_lock);
1357 #if IS_ENABLED(CONFIG_FB_DEFERRED_IO)
1358 } else if (info->fbdefio) {
1360 * FB deferred I/O wants you to handle mmap in your drivers. At a
1361 * minimum, point struct fb_ops.fb_mmap to fb_deferred_io_mmap().
1363 dev_warn_once(info->dev, "fbdev mmap not set up for deferred I/O.\n");
1364 mutex_unlock(&info->mm_lock);
1370 * Ugh. This can be either the frame buffer mapping, or
1371 * if pgoff points past it, the mmio mapping.
1373 start = info->fix.smem_start;
1374 len = info->fix.smem_len;
1375 mmio_pgoff = PAGE_ALIGN((start & ~PAGE_MASK) + len) >> PAGE_SHIFT;
1376 if (vma->vm_pgoff >= mmio_pgoff) {
1377 if (info->var.accel_flags) {
1378 mutex_unlock(&info->mm_lock);
1382 vma->vm_pgoff -= mmio_pgoff;
1383 start = info->fix.mmio_start;
1384 len = info->fix.mmio_len;
1386 mutex_unlock(&info->mm_lock);
1388 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
1389 fb_pgprotect(file, vma, start);
1391 return vm_iomap_memory(vma, start, len);
1395 fb_open(struct inode *inode, struct file *file)
1396 __acquires(&info->lock)
1397 __releases(&info->lock)
1399 int fbidx = iminor(inode);
1400 struct fb_info *info;
1403 info = get_fb_info(fbidx);
1405 request_module("fb%d", fbidx);
1406 info = get_fb_info(fbidx);
1411 return PTR_ERR(info);
1414 if (!try_module_get(info->fbops->owner)) {
1418 file->private_data = info;
1419 if (info->fbops->fb_open) {
1420 res = info->fbops->fb_open(info,1);
1422 module_put(info->fbops->owner);
1424 #ifdef CONFIG_FB_DEFERRED_IO
1426 fb_deferred_io_open(info, inode, file);
1429 unlock_fb_info(info);
1436 fb_release(struct inode *inode, struct file *file)
1437 __acquires(&info->lock)
1438 __releases(&info->lock)
1440 struct fb_info * const info = file->private_data;
1443 if (info->fbops->fb_release)
1444 info->fbops->fb_release(info,1);
1445 module_put(info->fbops->owner);
1446 unlock_fb_info(info);
1451 #if defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && !defined(CONFIG_MMU)
1452 unsigned long get_fb_unmapped_area(struct file *filp,
1453 unsigned long addr, unsigned long len,
1454 unsigned long pgoff, unsigned long flags)
1456 struct fb_info * const info = filp->private_data;
1457 unsigned long fb_size = PAGE_ALIGN(info->fix.smem_len);
1459 if (pgoff > fb_size || len > fb_size - pgoff)
1462 return (unsigned long)info->screen_base + pgoff;
1466 static const struct file_operations fb_fops = {
1467 .owner = THIS_MODULE,
1470 .unlocked_ioctl = fb_ioctl,
1471 #ifdef CONFIG_COMPAT
1472 .compat_ioctl = fb_compat_ioctl,
1476 .release = fb_release,
1477 #if defined(HAVE_ARCH_FB_UNMAPPED_AREA) || \
1478 (defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && \
1479 !defined(CONFIG_MMU))
1480 .get_unmapped_area = get_fb_unmapped_area,
1482 #ifdef CONFIG_FB_DEFERRED_IO
1483 .fsync = fb_deferred_io_fsync,
1485 .llseek = default_llseek,
1488 struct class *fb_class;
1489 EXPORT_SYMBOL(fb_class);
1491 static int fb_check_foreignness(struct fb_info *fi)
1493 const bool foreign_endian = fi->flags & FBINFO_FOREIGN_ENDIAN;
1495 fi->flags &= ~FBINFO_FOREIGN_ENDIAN;
1498 fi->flags |= foreign_endian ? 0 : FBINFO_BE_MATH;
1500 fi->flags |= foreign_endian ? FBINFO_BE_MATH : 0;
1501 #endif /* __BIG_ENDIAN */
1503 if (fi->flags & FBINFO_BE_MATH && !fb_be_math(fi)) {
1504 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1505 "support this framebuffer\n", fi->fix.id);
1507 } else if (!(fi->flags & FBINFO_BE_MATH) && fb_be_math(fi)) {
1508 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1509 "support this framebuffer\n", fi->fix.id);
1516 static bool apertures_overlap(struct aperture *gen, struct aperture *hw)
1518 /* is the generic aperture base the same as the HW one */
1519 if (gen->base == hw->base)
1521 /* is the generic aperture base inside the hw base->hw base+size */
1522 if (gen->base > hw->base && gen->base < hw->base + hw->size)
1527 static bool fb_do_apertures_overlap(struct apertures_struct *gena,
1528 struct apertures_struct *hwa)
1534 for (i = 0; i < hwa->count; ++i) {
1535 struct aperture *h = &hwa->ranges[i];
1536 for (j = 0; j < gena->count; ++j) {
1537 struct aperture *g = &gena->ranges[j];
1538 printk(KERN_DEBUG "checking generic (%llx %llx) vs hw (%llx %llx)\n",
1539 (unsigned long long)g->base,
1540 (unsigned long long)g->size,
1541 (unsigned long long)h->base,
1542 (unsigned long long)h->size);
1543 if (apertures_overlap(g, h))
1551 static void do_unregister_framebuffer(struct fb_info *fb_info);
1553 #define VGA_FB_PHYS 0xA0000
1554 static void do_remove_conflicting_framebuffers(struct apertures_struct *a,
1555 const char *name, bool primary)
1560 /* check all firmware fbs and kick off if the base addr overlaps */
1561 for_each_registered_fb(i) {
1562 struct apertures_struct *gen_aper;
1563 struct device *device;
1565 if (!(registered_fb[i]->flags & FBINFO_MISC_FIRMWARE))
1568 gen_aper = registered_fb[i]->apertures;
1569 device = registered_fb[i]->device;
1570 if (fb_do_apertures_overlap(gen_aper, a) ||
1571 (primary && gen_aper && gen_aper->count &&
1572 gen_aper->ranges[0].base == VGA_FB_PHYS)) {
1574 printk(KERN_INFO "fb%d: switching to %s from %s\n",
1575 i, name, registered_fb[i]->fix.id);
1578 * If we kick-out a firmware driver, we also want to remove
1579 * the underlying platform device, such as simple-framebuffer,
1580 * VESA, EFI, etc. A native driver will then be able to
1581 * allocate the memory range.
1583 * If it's not a platform device, at least print a warning. A
1584 * fix would add code to remove the device from the system. For
1585 * framebuffers without any Linux device, print a warning as
1589 pr_warn("fb%d: no device set\n", i);
1590 do_unregister_framebuffer(registered_fb[i]);
1591 } else if (dev_is_platform(device)) {
1593 * Drop the lock because if the device is unregistered, its
1594 * driver will call to unregister_framebuffer(), that takes
1597 mutex_unlock(®istration_lock);
1598 platform_device_unregister(to_platform_device(device));
1599 mutex_lock(®istration_lock);
1601 pr_warn("fb%d: cannot remove device\n", i);
1602 do_unregister_framebuffer(registered_fb[i]);
1605 * Restart the removal loop now that the device has been
1606 * unregistered and its associated framebuffer gone.
1608 goto restart_removal;
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 mutex_lock(®istration_lock);
1880 do_unregister_framebuffer(fb_info);
1881 mutex_unlock(®istration_lock);
1883 EXPORT_SYMBOL(unregister_framebuffer);
1886 * fb_set_suspend - low level driver signals suspend
1887 * @info: framebuffer affected
1888 * @state: 0 = resuming, !=0 = suspending
1890 * This is meant to be used by low level drivers to
1891 * signal suspend/resume to the core & clients.
1892 * It must be called with the console semaphore held
1894 void fb_set_suspend(struct fb_info *info, int state)
1896 WARN_CONSOLE_UNLOCKED();
1899 fbcon_suspended(info);
1900 info->state = FBINFO_STATE_SUSPENDED;
1902 info->state = FBINFO_STATE_RUNNING;
1903 fbcon_resumed(info);
1906 EXPORT_SYMBOL(fb_set_suspend);
1909 * fbmem_init - init frame buffer subsystem
1911 * Initialize the frame buffer subsystem.
1913 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1922 if (!proc_create_seq("fb", 0, NULL, &proc_fb_seq_ops))
1925 ret = register_chrdev(FB_MAJOR, "fb", &fb_fops);
1927 printk("unable to get major %d for fb devs\n", FB_MAJOR);
1931 fb_class = class_create(THIS_MODULE, "graphics");
1932 if (IS_ERR(fb_class)) {
1933 ret = PTR_ERR(fb_class);
1934 pr_warn("Unable to create fb class; errno = %d\n", ret);
1944 unregister_chrdev(FB_MAJOR, "fb");
1946 remove_proc_entry("fb", NULL);
1951 module_init(fbmem_init);
1957 remove_proc_entry("fb", NULL);
1958 class_destroy(fb_class);
1959 unregister_chrdev(FB_MAJOR, "fb");
1962 module_exit(fbmem_exit);
1963 MODULE_LICENSE("GPL");
1964 MODULE_DESCRIPTION("Framebuffer base");
1966 subsys_initcall(fbmem_init);
1969 int fb_new_modelist(struct fb_info *info)
1971 struct fb_var_screeninfo var = info->var;
1972 struct list_head *pos, *n;
1973 struct fb_modelist *modelist;
1974 struct fb_videomode *m, mode;
1977 list_for_each_safe(pos, n, &info->modelist) {
1978 modelist = list_entry(pos, struct fb_modelist, list);
1979 m = &modelist->mode;
1980 fb_videomode_to_var(&var, m);
1981 var.activate = FB_ACTIVATE_TEST;
1982 err = fb_set_var(info, &var);
1983 fb_var_to_videomode(&mode, &var);
1984 if (err || !fb_mode_is_equal(m, &mode)) {
1990 if (list_empty(&info->modelist))
1993 fbcon_new_modelist(info);
1998 MODULE_LICENSE("GPL");