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>
41 * Frame buffer device initialization and setup routines
44 #define FBPIXMAPSIZE (1024 * 8)
46 static DEFINE_MUTEX(registration_lock);
48 struct fb_info *registered_fb[FB_MAX] __read_mostly;
49 EXPORT_SYMBOL(registered_fb);
51 int num_registered_fb __read_mostly;
52 EXPORT_SYMBOL(num_registered_fb);
54 static struct fb_info *get_fb_info(unsigned int idx)
56 struct fb_info *fb_info;
59 return ERR_PTR(-ENODEV);
61 mutex_lock(®istration_lock);
62 fb_info = registered_fb[idx];
64 atomic_inc(&fb_info->count);
65 mutex_unlock(®istration_lock);
70 static void put_fb_info(struct fb_info *fb_info)
72 if (!atomic_dec_and_test(&fb_info->count))
74 if (fb_info->fbops->fb_destroy)
75 fb_info->fbops->fb_destroy(fb_info);
78 int lock_fb_info(struct fb_info *info)
80 mutex_lock(&info->lock);
82 mutex_unlock(&info->lock);
87 EXPORT_SYMBOL(lock_fb_info);
93 int fb_get_color_depth(struct fb_var_screeninfo *var,
94 struct fb_fix_screeninfo *fix)
98 if (fix->visual == FB_VISUAL_MONO01 ||
99 fix->visual == FB_VISUAL_MONO10)
102 if (var->green.length == var->blue.length &&
103 var->green.length == var->red.length &&
104 var->green.offset == var->blue.offset &&
105 var->green.offset == var->red.offset)
106 depth = var->green.length;
108 depth = var->green.length + var->red.length +
114 EXPORT_SYMBOL(fb_get_color_depth);
117 * Data padding functions.
119 void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height)
121 __fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height);
123 EXPORT_SYMBOL(fb_pad_aligned_buffer);
125 void fb_pad_unaligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 idx, u32 height,
126 u32 shift_high, u32 shift_low, u32 mod)
128 u8 mask = (u8) (0xfff << shift_high), tmp;
131 for (i = height; i--; ) {
132 for (j = 0; j < idx; j++) {
135 tmp |= *src >> shift_low;
137 tmp = *src << shift_high;
143 tmp |= *src >> shift_low;
145 if (shift_high < mod) {
146 tmp = *src << shift_high;
153 EXPORT_SYMBOL(fb_pad_unaligned_buffer);
156 * we need to lock this section since fb_cursor
157 * may use fb_imageblit()
159 char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size)
161 u32 align = buf->buf_align - 1, offset;
162 char *addr = buf->addr;
164 /* If IO mapped, we need to sync before access, no sharing of
167 if (buf->flags & FB_PIXMAP_IO) {
168 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
169 info->fbops->fb_sync(info);
173 /* See if we fit in the remaining pixmap space */
174 offset = buf->offset + align;
176 if (offset + size > buf->size) {
177 /* We do not fit. In order to be able to re-use the buffer,
178 * we must ensure no asynchronous DMA'ing or whatever operation
179 * is in progress, we sync for that.
181 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
182 info->fbops->fb_sync(info);
185 buf->offset = offset + size;
190 EXPORT_SYMBOL(fb_get_buffer_offset);
194 static inline unsigned safe_shift(unsigned d, int n)
196 return n < 0 ? d >> -n : d << n;
199 static void fb_set_logocmap(struct fb_info *info,
200 const struct linux_logo *logo)
202 struct fb_cmap palette_cmap;
203 u16 palette_green[16];
204 u16 palette_blue[16];
207 const unsigned char *clut = logo->clut;
209 palette_cmap.start = 0;
210 palette_cmap.len = 16;
211 palette_cmap.red = palette_red;
212 palette_cmap.green = palette_green;
213 palette_cmap.blue = palette_blue;
214 palette_cmap.transp = NULL;
216 for (i = 0; i < logo->clutsize; i += n) {
217 n = logo->clutsize - i;
218 /* palette_cmap provides space for only 16 colors at once */
221 palette_cmap.start = 32 + i;
222 palette_cmap.len = n;
223 for (j = 0; j < n; ++j) {
224 palette_cmap.red[j] = clut[0] << 8 | clut[0];
225 palette_cmap.green[j] = clut[1] << 8 | clut[1];
226 palette_cmap.blue[j] = clut[2] << 8 | clut[2];
229 fb_set_cmap(&palette_cmap, info);
233 static void fb_set_logo_truepalette(struct fb_info *info,
234 const struct linux_logo *logo,
237 static const unsigned char mask[] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
238 unsigned char redmask, greenmask, bluemask;
239 int redshift, greenshift, blueshift;
241 const unsigned char *clut = logo->clut;
244 * We have to create a temporary palette since console palette is only
247 /* Bug: Doesn't obey msb_right ... (who needs that?) */
248 redmask = mask[info->var.red.length < 8 ? info->var.red.length : 8];
249 greenmask = mask[info->var.green.length < 8 ? info->var.green.length : 8];
250 bluemask = mask[info->var.blue.length < 8 ? info->var.blue.length : 8];
251 redshift = info->var.red.offset - (8 - info->var.red.length);
252 greenshift = info->var.green.offset - (8 - info->var.green.length);
253 blueshift = info->var.blue.offset - (8 - info->var.blue.length);
255 for ( i = 0; i < logo->clutsize; i++) {
256 palette[i+32] = (safe_shift((clut[0] & redmask), redshift) |
257 safe_shift((clut[1] & greenmask), greenshift) |
258 safe_shift((clut[2] & bluemask), blueshift));
263 static void fb_set_logo_directpalette(struct fb_info *info,
264 const struct linux_logo *logo,
267 int redshift, greenshift, blueshift;
270 redshift = info->var.red.offset;
271 greenshift = info->var.green.offset;
272 blueshift = info->var.blue.offset;
274 for (i = 32; i < 32 + logo->clutsize; i++)
275 palette[i] = i << redshift | i << greenshift | i << blueshift;
278 static void fb_set_logo(struct fb_info *info,
279 const struct linux_logo *logo, u8 *dst,
283 const u8 *src = logo->data;
284 u8 xor = (info->fix.visual == FB_VISUAL_MONO01) ? 0xff : 0;
287 switch (fb_get_color_depth(&info->var, &info->fix)) {
299 if (info->fix.visual == FB_VISUAL_MONO01 ||
300 info->fix.visual == FB_VISUAL_MONO10)
301 fg = ~((u8) (0xfff << info->var.green.length));
305 for (i = 0; i < logo->height; i++)
306 for (j = 0; j < logo->width; src++) {
309 if (j < logo->width) {
310 *dst++ = *src & 0x0f;
316 for (i = 0; i < logo->height; i++) {
317 for (j = 0; j < logo->width; src++) {
319 for (k = 7; k >= 0 && j < logo->width; k--) {
320 *dst++ = ((d >> k) & 1) ? fg : 0;
330 * Three (3) kinds of logo maps exist. linux_logo_clut224 (>16 colors),
331 * linux_logo_vga16 (16 colors) and linux_logo_mono (2 colors). Depending on
332 * the visual format and color depth of the framebuffer, the DAC, the
333 * pseudo_palette, and the logo data will be adjusted accordingly.
335 * Case 1 - linux_logo_clut224:
336 * Color exceeds the number of console colors (16), thus we set the hardware DAC
337 * using fb_set_cmap() appropriately. The "needs_cmapreset" flag will be set.
339 * For visuals that require color info from the pseudo_palette, we also construct
340 * one for temporary use. The "needs_directpalette" or "needs_truepalette" flags
343 * Case 2 - linux_logo_vga16:
344 * The number of colors just matches the console colors, thus there is no need
345 * to set the DAC or the pseudo_palette. However, the bitmap is packed, ie,
346 * each byte contains color information for two pixels (upper and lower nibble).
347 * To be consistent with fb_imageblit() usage, we therefore separate the two
348 * nibbles into separate bytes. The "depth" flag will be set to 4.
350 * Case 3 - linux_logo_mono:
351 * This is similar with Case 2. Each byte contains information for 8 pixels.
352 * We isolate each bit and expand each into a byte. The "depth" flag will
355 static struct logo_data {
357 int needs_directpalette;
358 int needs_truepalette;
360 const struct linux_logo *logo;
361 } fb_logo __read_mostly;
363 static void fb_rotate_logo_ud(const u8 *in, u8 *out, u32 width, u32 height)
365 u32 size = width * height, i;
369 for (i = size; i--; )
373 static void fb_rotate_logo_cw(const u8 *in, u8 *out, u32 width, u32 height)
375 int i, j, h = height - 1;
377 for (i = 0; i < height; i++)
378 for (j = 0; j < width; j++)
379 out[height * j + h - i] = *in++;
382 static void fb_rotate_logo_ccw(const u8 *in, u8 *out, u32 width, u32 height)
384 int i, j, w = width - 1;
386 for (i = 0; i < height; i++)
387 for (j = 0; j < width; j++)
388 out[height * (w - j) + i] = *in++;
391 static void fb_rotate_logo(struct fb_info *info, u8 *dst,
392 struct fb_image *image, int rotate)
396 if (rotate == FB_ROTATE_UD) {
397 fb_rotate_logo_ud(image->data, dst, image->width,
399 image->dx = info->var.xres - image->width - image->dx;
400 image->dy = info->var.yres - image->height - image->dy;
401 } else if (rotate == FB_ROTATE_CW) {
402 fb_rotate_logo_cw(image->data, dst, image->width,
405 image->width = image->height;
408 image->dy = image->dx;
409 image->dx = info->var.xres - image->width - tmp;
410 } else if (rotate == FB_ROTATE_CCW) {
411 fb_rotate_logo_ccw(image->data, dst, image->width,
414 image->width = image->height;
417 image->dx = image->dy;
418 image->dy = info->var.yres - image->height - tmp;
424 static void fb_do_show_logo(struct fb_info *info, struct fb_image *image,
425 int rotate, unsigned int num)
429 if (rotate == FB_ROTATE_UR) {
431 x < num && image->dx + image->width <= info->var.xres;
433 info->fbops->fb_imageblit(info, image);
434 image->dx += image->width + 8;
436 } else if (rotate == FB_ROTATE_UD) {
437 for (x = 0; x < num; x++) {
438 info->fbops->fb_imageblit(info, image);
439 image->dx -= image->width + 8;
441 } else if (rotate == FB_ROTATE_CW) {
443 x < num && image->dy + image->height <= info->var.yres;
445 info->fbops->fb_imageblit(info, image);
446 image->dy += image->height + 8;
448 } else if (rotate == FB_ROTATE_CCW) {
449 for (x = 0; x < num; 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(logo->width * logo->height, GFP_KERNEL);
492 if (logo_new == NULL) {
494 if (saved_pseudo_palette)
495 info->pseudo_palette = saved_pseudo_palette;
498 image.data = logo_new;
499 fb_set_logo(info, logo, logo_new, fb_logo.depth);
504 image.width = logo->width;
505 image.height = logo->height;
508 logo_rotate = kmalloc(logo->width *
509 logo->height, GFP_KERNEL);
511 fb_rotate_logo(info, logo_rotate, &image, rotate);
514 fb_do_show_logo(info, &image, rotate, n);
517 if (saved_pseudo_palette != NULL)
518 info->pseudo_palette = saved_pseudo_palette;
525 #ifdef CONFIG_FB_LOGO_EXTRA
527 #define FB_LOGO_EX_NUM_MAX 10
528 static struct logo_data_extra {
529 const struct linux_logo *logo;
531 } fb_logo_ex[FB_LOGO_EX_NUM_MAX];
532 static unsigned int fb_logo_ex_num;
534 void fb_append_extra_logo(const struct linux_logo *logo, unsigned int n)
536 if (!n || fb_logo_ex_num == FB_LOGO_EX_NUM_MAX)
539 fb_logo_ex[fb_logo_ex_num].logo = logo;
540 fb_logo_ex[fb_logo_ex_num].n = n;
544 static int fb_prepare_extra_logos(struct fb_info *info, unsigned int height,
549 /* FIXME: logo_ex supports only truecolor fb. */
550 if (info->fix.visual != FB_VISUAL_TRUECOLOR)
553 for (i = 0; i < fb_logo_ex_num; i++) {
554 if (fb_logo_ex[i].logo->type != fb_logo.logo->type) {
555 fb_logo_ex[i].logo = NULL;
558 height += fb_logo_ex[i].logo->height;
560 height -= fb_logo_ex[i].logo->height;
568 static int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
572 for (i = 0; i < fb_logo_ex_num; i++)
573 y += fb_show_logo_line(info, rotate,
574 fb_logo_ex[i].logo, y, fb_logo_ex[i].n);
579 #else /* !CONFIG_FB_LOGO_EXTRA */
581 static inline int fb_prepare_extra_logos(struct fb_info *info,
588 static inline int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
593 #endif /* CONFIG_FB_LOGO_EXTRA */
596 int fb_prepare_logo(struct fb_info *info, int rotate)
598 int depth = fb_get_color_depth(&info->var, &info->fix);
601 memset(&fb_logo, 0, sizeof(struct logo_data));
603 if (info->flags & FBINFO_MISC_TILEBLITTING ||
607 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
608 depth = info->var.blue.length;
609 if (info->var.red.length < depth)
610 depth = info->var.red.length;
611 if (info->var.green.length < depth)
612 depth = info->var.green.length;
615 if (info->fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR && depth > 4) {
616 /* assume console colormap */
620 /* Return if no suitable logo was found */
621 fb_logo.logo = fb_find_logo(depth);
627 if (rotate == FB_ROTATE_UR || rotate == FB_ROTATE_UD)
628 yres = info->var.yres;
630 yres = info->var.xres;
632 if (fb_logo.logo->height > yres) {
637 /* What depth we asked for might be different from what we get */
638 if (fb_logo.logo->type == LINUX_LOGO_CLUT224)
640 else if (fb_logo.logo->type == LINUX_LOGO_VGA16)
646 if (fb_logo.depth > 4 && depth > 4) {
647 switch (info->fix.visual) {
648 case FB_VISUAL_TRUECOLOR:
649 fb_logo.needs_truepalette = 1;
651 case FB_VISUAL_DIRECTCOLOR:
652 fb_logo.needs_directpalette = 1;
653 fb_logo.needs_cmapreset = 1;
655 case FB_VISUAL_PSEUDOCOLOR:
656 fb_logo.needs_cmapreset = 1;
661 return fb_prepare_extra_logos(info, fb_logo.logo->height, yres);
664 int fb_show_logo(struct fb_info *info, int rotate)
668 y = fb_show_logo_line(info, rotate, fb_logo.logo, 0,
670 y = fb_show_extra_logos(info, y, rotate);
675 int fb_prepare_logo(struct fb_info *info, int rotate) { return 0; }
676 int fb_show_logo(struct fb_info *info, int rotate) { return 0; }
677 #endif /* CONFIG_LOGO */
678 EXPORT_SYMBOL(fb_prepare_logo);
679 EXPORT_SYMBOL(fb_show_logo);
681 static void *fb_seq_start(struct seq_file *m, loff_t *pos)
683 mutex_lock(®istration_lock);
684 return (*pos < FB_MAX) ? pos : NULL;
687 static void *fb_seq_next(struct seq_file *m, void *v, loff_t *pos)
690 return (*pos < FB_MAX) ? pos : NULL;
693 static void fb_seq_stop(struct seq_file *m, void *v)
695 mutex_unlock(®istration_lock);
698 static int fb_seq_show(struct seq_file *m, void *v)
700 int i = *(loff_t *)v;
701 struct fb_info *fi = registered_fb[i];
704 seq_printf(m, "%d %s\n", fi->node, fi->fix.id);
708 static const struct seq_operations proc_fb_seq_ops = {
709 .start = fb_seq_start,
715 static int proc_fb_open(struct inode *inode, struct file *file)
717 return seq_open(file, &proc_fb_seq_ops);
720 static const struct file_operations fb_proc_fops = {
721 .owner = THIS_MODULE,
722 .open = proc_fb_open,
725 .release = seq_release,
729 * We hold a reference to the fb_info in file->private_data,
730 * but if the current registered fb has changed, we don't
731 * actually want to use it.
733 * So look up the fb_info using the inode minor number,
734 * and just verify it against the reference we have.
736 static struct fb_info *file_fb_info(struct file *file)
738 struct inode *inode = file_inode(file);
739 int fbidx = iminor(inode);
740 struct fb_info *info = registered_fb[fbidx];
742 if (info != file->private_data)
748 fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
750 unsigned long p = *ppos;
751 struct fb_info *info = file_fb_info(file);
754 int c, cnt = 0, err = 0;
755 unsigned long total_size;
757 if (!info || ! info->screen_base)
760 if (info->state != FBINFO_STATE_RUNNING)
763 if (info->fbops->fb_read)
764 return info->fbops->fb_read(info, buf, count, ppos);
766 total_size = info->screen_size;
769 total_size = info->fix.smem_len;
774 if (count >= total_size)
777 if (count + p > total_size)
778 count = total_size - p;
780 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
785 src = (u8 __iomem *) (info->screen_base + p);
787 if (info->fbops->fb_sync)
788 info->fbops->fb_sync(info);
791 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
793 fb_memcpy_fromfb(dst, src, c);
797 if (copy_to_user(buf, buffer, c)) {
809 return (err) ? err : cnt;
813 fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
815 unsigned long p = *ppos;
816 struct fb_info *info = file_fb_info(file);
819 int c, cnt = 0, err = 0;
820 unsigned long total_size;
822 if (!info || !info->screen_base)
825 if (info->state != FBINFO_STATE_RUNNING)
828 if (info->fbops->fb_write)
829 return info->fbops->fb_write(info, buf, count, ppos);
831 total_size = info->screen_size;
834 total_size = info->fix.smem_len;
839 if (count > total_size) {
844 if (count + p > total_size) {
848 count = total_size - p;
851 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
856 dst = (u8 __iomem *) (info->screen_base + p);
858 if (info->fbops->fb_sync)
859 info->fbops->fb_sync(info);
862 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
865 if (copy_from_user(src, buf, c)) {
870 fb_memcpy_tofb(dst, src, c);
881 return (cnt) ? cnt : err;
885 fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var)
887 struct fb_fix_screeninfo *fix = &info->fix;
888 unsigned int yres = info->var.yres;
891 if (var->yoffset > 0) {
892 if (var->vmode & FB_VMODE_YWRAP) {
893 if (!fix->ywrapstep || (var->yoffset % fix->ywrapstep))
897 } else if (!fix->ypanstep || (var->yoffset % fix->ypanstep))
901 if (var->xoffset > 0 && (!fix->xpanstep ||
902 (var->xoffset % fix->xpanstep)))
905 if (err || !info->fbops->fb_pan_display ||
906 var->yoffset > info->var.yres_virtual - yres ||
907 var->xoffset > info->var.xres_virtual - info->var.xres)
910 if ((err = info->fbops->fb_pan_display(var, info)))
912 info->var.xoffset = var->xoffset;
913 info->var.yoffset = var->yoffset;
914 if (var->vmode & FB_VMODE_YWRAP)
915 info->var.vmode |= FB_VMODE_YWRAP;
917 info->var.vmode &= ~FB_VMODE_YWRAP;
920 EXPORT_SYMBOL(fb_pan_display);
922 static int fb_check_caps(struct fb_info *info, struct fb_var_screeninfo *var,
925 struct fb_event event;
926 struct fb_blit_caps caps, fbcaps;
929 memset(&caps, 0, sizeof(caps));
930 memset(&fbcaps, 0, sizeof(fbcaps));
931 caps.flags = (activate & FB_ACTIVATE_ALL) ? 1 : 0;
934 fb_notifier_call_chain(FB_EVENT_GET_REQ, &event);
935 info->fbops->fb_get_caps(info, &fbcaps, var);
937 if (((fbcaps.x ^ caps.x) & caps.x) ||
938 ((fbcaps.y ^ caps.y) & caps.y) ||
939 (fbcaps.len < caps.len))
946 fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var)
948 int flags = info->flags;
951 if (var->activate & FB_ACTIVATE_INV_MODE) {
952 struct fb_videomode mode1, mode2;
954 fb_var_to_videomode(&mode1, var);
955 fb_var_to_videomode(&mode2, &info->var);
956 /* make sure we don't delete the videomode of current var */
957 ret = fb_mode_is_equal(&mode1, &mode2);
960 struct fb_event event;
964 ret = fb_notifier_call_chain(FB_EVENT_MODE_DELETE, &event);
968 fb_delete_videomode(&mode1, &info->modelist);
971 ret = (ret) ? -EINVAL : 0;
975 if ((var->activate & FB_ACTIVATE_FORCE) ||
976 memcmp(&info->var, var, sizeof(struct fb_var_screeninfo))) {
977 u32 activate = var->activate;
979 /* When using FOURCC mode, make sure the red, green, blue and
980 * transp fields are set to 0.
982 if ((info->fix.capabilities & FB_CAP_FOURCC) &&
983 var->grayscale > 1) {
984 if (var->red.offset || var->green.offset ||
985 var->blue.offset || var->transp.offset ||
986 var->red.length || var->green.length ||
987 var->blue.length || var->transp.length ||
988 var->red.msb_right || var->green.msb_right ||
989 var->blue.msb_right || var->transp.msb_right)
993 if (!info->fbops->fb_check_var) {
998 ret = info->fbops->fb_check_var(var, info);
1003 if ((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) {
1004 struct fb_var_screeninfo old_var;
1005 struct fb_videomode mode;
1007 if (info->fbops->fb_get_caps) {
1008 ret = fb_check_caps(info, var, activate);
1014 old_var = info->var;
1017 if (info->fbops->fb_set_par) {
1018 ret = info->fbops->fb_set_par(info);
1021 info->var = old_var;
1022 printk(KERN_WARNING "detected "
1023 "fb_set_par error, "
1024 "error code: %d\n", ret);
1029 fb_pan_display(info, &info->var);
1030 fb_set_cmap(&info->cmap, info);
1031 fb_var_to_videomode(&mode, &info->var);
1033 if (info->modelist.prev && info->modelist.next &&
1034 !list_empty(&info->modelist))
1035 ret = fb_add_videomode(&mode, &info->modelist);
1037 if (!ret && (flags & FBINFO_MISC_USEREVENT)) {
1038 struct fb_event event;
1039 int evnt = (activate & FB_ACTIVATE_ALL) ?
1040 FB_EVENT_MODE_CHANGE_ALL :
1041 FB_EVENT_MODE_CHANGE;
1043 info->flags &= ~FBINFO_MISC_USEREVENT;
1046 fb_notifier_call_chain(evnt, &event);
1054 EXPORT_SYMBOL(fb_set_var);
1057 fb_blank(struct fb_info *info, int blank)
1059 struct fb_event event;
1060 int ret = -EINVAL, early_ret;
1062 if (blank > FB_BLANK_POWERDOWN)
1063 blank = FB_BLANK_POWERDOWN;
1066 event.data = ␣
1068 early_ret = fb_notifier_call_chain(FB_EARLY_EVENT_BLANK, &event);
1070 if (info->fbops->fb_blank)
1071 ret = info->fbops->fb_blank(blank, info);
1074 fb_notifier_call_chain(FB_EVENT_BLANK, &event);
1077 * if fb_blank is failed then revert effects of
1078 * the early blank event.
1081 fb_notifier_call_chain(FB_R_EARLY_EVENT_BLANK, &event);
1086 EXPORT_SYMBOL(fb_blank);
1088 static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,
1092 struct fb_var_screeninfo var;
1093 struct fb_fix_screeninfo fix;
1094 struct fb_con2fbmap con2fb;
1095 struct fb_cmap cmap_from;
1096 struct fb_cmap_user cmap;
1097 struct fb_event event;
1098 void __user *argp = (void __user *)arg;
1102 case FBIOGET_VSCREENINFO:
1103 if (!lock_fb_info(info))
1106 unlock_fb_info(info);
1108 ret = copy_to_user(argp, &var, sizeof(var)) ? -EFAULT : 0;
1110 case FBIOPUT_VSCREENINFO:
1111 if (copy_from_user(&var, argp, sizeof(var)))
1114 if (!lock_fb_info(info)) {
1118 info->flags |= FBINFO_MISC_USEREVENT;
1119 ret = fb_set_var(info, &var);
1120 info->flags &= ~FBINFO_MISC_USEREVENT;
1121 unlock_fb_info(info);
1123 if (!ret && copy_to_user(argp, &var, sizeof(var)))
1126 case FBIOGET_FSCREENINFO:
1127 if (!lock_fb_info(info))
1130 unlock_fb_info(info);
1132 ret = copy_to_user(argp, &fix, sizeof(fix)) ? -EFAULT : 0;
1135 if (copy_from_user(&cmap, argp, sizeof(cmap)))
1137 ret = fb_set_user_cmap(&cmap, info);
1140 if (copy_from_user(&cmap, argp, sizeof(cmap)))
1142 if (!lock_fb_info(info))
1144 cmap_from = info->cmap;
1145 unlock_fb_info(info);
1146 ret = fb_cmap_to_user(&cmap_from, &cmap);
1148 case FBIOPAN_DISPLAY:
1149 if (copy_from_user(&var, argp, sizeof(var)))
1152 if (!lock_fb_info(info)) {
1156 ret = fb_pan_display(info, &var);
1157 unlock_fb_info(info);
1159 if (ret == 0 && copy_to_user(argp, &var, sizeof(var)))
1165 case FBIOGET_CON2FBMAP:
1166 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
1168 if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
1170 con2fb.framebuffer = -1;
1171 event.data = &con2fb;
1172 if (!lock_fb_info(info))
1175 fb_notifier_call_chain(FB_EVENT_GET_CONSOLE_MAP, &event);
1176 unlock_fb_info(info);
1177 ret = copy_to_user(argp, &con2fb, sizeof(con2fb)) ? -EFAULT : 0;
1179 case FBIOPUT_CON2FBMAP:
1180 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
1182 if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
1184 if (con2fb.framebuffer >= FB_MAX)
1186 if (!registered_fb[con2fb.framebuffer])
1187 request_module("fb%d", con2fb.framebuffer);
1188 if (!registered_fb[con2fb.framebuffer]) {
1192 event.data = &con2fb;
1194 if (!lock_fb_info(info)) {
1199 ret = fb_notifier_call_chain(FB_EVENT_SET_CONSOLE_MAP, &event);
1200 unlock_fb_info(info);
1205 if (!lock_fb_info(info)) {
1209 info->flags |= FBINFO_MISC_USEREVENT;
1210 ret = fb_blank(info, arg);
1211 info->flags &= ~FBINFO_MISC_USEREVENT;
1212 unlock_fb_info(info);
1216 if (!lock_fb_info(info))
1220 ret = fb->fb_ioctl(info, cmd, arg);
1223 unlock_fb_info(info);
1228 static long fb_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1230 struct fb_info *info = file_fb_info(file);
1234 return do_fb_ioctl(info, cmd, arg);
1237 #ifdef CONFIG_COMPAT
1238 struct fb_fix_screeninfo32 {
1240 compat_caddr_t smem_start;
1249 compat_caddr_t mmio_start;
1259 compat_caddr_t green;
1260 compat_caddr_t blue;
1261 compat_caddr_t transp;
1264 static int fb_getput_cmap(struct fb_info *info, unsigned int cmd,
1267 struct fb_cmap_user __user *cmap;
1268 struct fb_cmap32 __user *cmap32;
1272 cmap = compat_alloc_user_space(sizeof(*cmap));
1273 cmap32 = compat_ptr(arg);
1275 if (copy_in_user(&cmap->start, &cmap32->start, 2 * sizeof(__u32)))
1278 if (get_user(data, &cmap32->red) ||
1279 put_user(compat_ptr(data), &cmap->red) ||
1280 get_user(data, &cmap32->green) ||
1281 put_user(compat_ptr(data), &cmap->green) ||
1282 get_user(data, &cmap32->blue) ||
1283 put_user(compat_ptr(data), &cmap->blue) ||
1284 get_user(data, &cmap32->transp) ||
1285 put_user(compat_ptr(data), &cmap->transp))
1288 err = do_fb_ioctl(info, cmd, (unsigned long) cmap);
1291 if (copy_in_user(&cmap32->start,
1299 static int do_fscreeninfo_to_user(struct fb_fix_screeninfo *fix,
1300 struct fb_fix_screeninfo32 __user *fix32)
1305 err = copy_to_user(&fix32->id, &fix->id, sizeof(fix32->id));
1307 data = (__u32) (unsigned long) fix->smem_start;
1308 err |= put_user(data, &fix32->smem_start);
1310 err |= put_user(fix->smem_len, &fix32->smem_len);
1311 err |= put_user(fix->type, &fix32->type);
1312 err |= put_user(fix->type_aux, &fix32->type_aux);
1313 err |= put_user(fix->visual, &fix32->visual);
1314 err |= put_user(fix->xpanstep, &fix32->xpanstep);
1315 err |= put_user(fix->ypanstep, &fix32->ypanstep);
1316 err |= put_user(fix->ywrapstep, &fix32->ywrapstep);
1317 err |= put_user(fix->line_length, &fix32->line_length);
1319 data = (__u32) (unsigned long) fix->mmio_start;
1320 err |= put_user(data, &fix32->mmio_start);
1322 err |= put_user(fix->mmio_len, &fix32->mmio_len);
1323 err |= put_user(fix->accel, &fix32->accel);
1324 err |= copy_to_user(fix32->reserved, fix->reserved,
1325 sizeof(fix->reserved));
1332 static int fb_get_fscreeninfo(struct fb_info *info, unsigned int cmd,
1335 struct fb_fix_screeninfo fix;
1337 if (!lock_fb_info(info))
1340 unlock_fb_info(info);
1341 return do_fscreeninfo_to_user(&fix, compat_ptr(arg));
1344 static long fb_compat_ioctl(struct file *file, unsigned int cmd,
1347 struct fb_info *info = file_fb_info(file);
1349 long ret = -ENOIOCTLCMD;
1355 case FBIOGET_VSCREENINFO:
1356 case FBIOPUT_VSCREENINFO:
1357 case FBIOPAN_DISPLAY:
1358 case FBIOGET_CON2FBMAP:
1359 case FBIOPUT_CON2FBMAP:
1360 arg = (unsigned long) compat_ptr(arg);
1362 ret = do_fb_ioctl(info, cmd, arg);
1365 case FBIOGET_FSCREENINFO:
1366 ret = fb_get_fscreeninfo(info, cmd, arg);
1371 ret = fb_getput_cmap(info, cmd, arg);
1375 if (fb->fb_compat_ioctl)
1376 ret = fb->fb_compat_ioctl(info, cmd, arg);
1384 fb_mmap(struct file *file, struct vm_area_struct * vma)
1386 struct fb_info *info = file_fb_info(file);
1388 unsigned long mmio_pgoff;
1389 unsigned long start;
1397 mutex_lock(&info->mm_lock);
1400 res = fb->fb_mmap(info, vma);
1401 mutex_unlock(&info->mm_lock);
1406 * Ugh. This can be either the frame buffer mapping, or
1407 * if pgoff points past it, the mmio mapping.
1409 start = info->fix.smem_start;
1410 len = info->fix.smem_len;
1411 mmio_pgoff = PAGE_ALIGN((start & ~PAGE_MASK) + len) >> PAGE_SHIFT;
1412 if (vma->vm_pgoff >= mmio_pgoff) {
1413 if (info->var.accel_flags) {
1414 mutex_unlock(&info->mm_lock);
1418 vma->vm_pgoff -= mmio_pgoff;
1419 start = info->fix.mmio_start;
1420 len = info->fix.mmio_len;
1422 mutex_unlock(&info->mm_lock);
1424 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
1425 fb_pgprotect(file, vma, start);
1427 return vm_iomap_memory(vma, start, len);
1431 fb_open(struct inode *inode, struct file *file)
1432 __acquires(&info->lock)
1433 __releases(&info->lock)
1435 int fbidx = iminor(inode);
1436 struct fb_info *info;
1439 info = get_fb_info(fbidx);
1441 request_module("fb%d", fbidx);
1442 info = get_fb_info(fbidx);
1447 return PTR_ERR(info);
1449 mutex_lock(&info->lock);
1450 if (!try_module_get(info->fbops->owner)) {
1454 file->private_data = info;
1455 if (info->fbops->fb_open) {
1456 res = info->fbops->fb_open(info,1);
1458 module_put(info->fbops->owner);
1460 #ifdef CONFIG_FB_DEFERRED_IO
1462 fb_deferred_io_open(info, inode, file);
1465 mutex_unlock(&info->lock);
1472 fb_release(struct inode *inode, struct file *file)
1473 __acquires(&info->lock)
1474 __releases(&info->lock)
1476 struct fb_info * const info = file->private_data;
1478 mutex_lock(&info->lock);
1479 if (info->fbops->fb_release)
1480 info->fbops->fb_release(info,1);
1481 module_put(info->fbops->owner);
1482 mutex_unlock(&info->lock);
1487 #if defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && !defined(CONFIG_MMU)
1488 unsigned long get_fb_unmapped_area(struct file *filp,
1489 unsigned long addr, unsigned long len,
1490 unsigned long pgoff, unsigned long flags)
1492 struct fb_info * const info = filp->private_data;
1493 unsigned long fb_size = PAGE_ALIGN(info->fix.smem_len);
1495 if (pgoff > fb_size || len > fb_size - pgoff)
1498 return (unsigned long)info->screen_base + pgoff;
1502 static const struct file_operations fb_fops = {
1503 .owner = THIS_MODULE,
1506 .unlocked_ioctl = fb_ioctl,
1507 #ifdef CONFIG_COMPAT
1508 .compat_ioctl = fb_compat_ioctl,
1512 .release = fb_release,
1513 #if defined(HAVE_ARCH_FB_UNMAPPED_AREA) || \
1514 (defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && \
1515 !defined(CONFIG_MMU))
1516 .get_unmapped_area = get_fb_unmapped_area,
1518 #ifdef CONFIG_FB_DEFERRED_IO
1519 .fsync = fb_deferred_io_fsync,
1521 .llseek = default_llseek,
1524 struct class *fb_class;
1525 EXPORT_SYMBOL(fb_class);
1527 static int fb_check_foreignness(struct fb_info *fi)
1529 const bool foreign_endian = fi->flags & FBINFO_FOREIGN_ENDIAN;
1531 fi->flags &= ~FBINFO_FOREIGN_ENDIAN;
1534 fi->flags |= foreign_endian ? 0 : FBINFO_BE_MATH;
1536 fi->flags |= foreign_endian ? FBINFO_BE_MATH : 0;
1537 #endif /* __BIG_ENDIAN */
1539 if (fi->flags & FBINFO_BE_MATH && !fb_be_math(fi)) {
1540 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1541 "support this framebuffer\n", fi->fix.id);
1543 } else if (!(fi->flags & FBINFO_BE_MATH) && fb_be_math(fi)) {
1544 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1545 "support this framebuffer\n", fi->fix.id);
1552 static bool apertures_overlap(struct aperture *gen, struct aperture *hw)
1554 /* is the generic aperture base the same as the HW one */
1555 if (gen->base == hw->base)
1557 /* is the generic aperture base inside the hw base->hw base+size */
1558 if (gen->base > hw->base && gen->base < hw->base + hw->size)
1563 static bool fb_do_apertures_overlap(struct apertures_struct *gena,
1564 struct apertures_struct *hwa)
1570 for (i = 0; i < hwa->count; ++i) {
1571 struct aperture *h = &hwa->ranges[i];
1572 for (j = 0; j < gena->count; ++j) {
1573 struct aperture *g = &gena->ranges[j];
1574 printk(KERN_DEBUG "checking generic (%llx %llx) vs hw (%llx %llx)\n",
1575 (unsigned long long)g->base,
1576 (unsigned long long)g->size,
1577 (unsigned long long)h->base,
1578 (unsigned long long)h->size);
1579 if (apertures_overlap(g, h))
1587 static int do_unregister_framebuffer(struct fb_info *fb_info);
1589 #define VGA_FB_PHYS 0xA0000
1590 static int do_remove_conflicting_framebuffers(struct apertures_struct *a,
1591 const char *name, bool primary)
1595 /* check all firmware fbs and kick off if the base addr overlaps */
1596 for (i = 0 ; i < FB_MAX; i++) {
1597 struct apertures_struct *gen_aper;
1598 if (!registered_fb[i])
1601 if (!(registered_fb[i]->flags & FBINFO_MISC_FIRMWARE))
1604 gen_aper = registered_fb[i]->apertures;
1605 if (fb_do_apertures_overlap(gen_aper, a) ||
1606 (primary && gen_aper && gen_aper->count &&
1607 gen_aper->ranges[0].base == VGA_FB_PHYS)) {
1609 printk(KERN_INFO "fb: switching to %s from %s\n",
1610 name, registered_fb[i]->fix.id);
1611 ret = do_unregister_framebuffer(registered_fb[i]);
1620 static bool lockless_register_fb;
1621 module_param_named_unsafe(lockless_register_fb, lockless_register_fb, bool, 0400);
1622 MODULE_PARM_DESC(lockless_register_fb,
1623 "Lockless framebuffer registration for debugging [default=off]");
1625 static int do_register_framebuffer(struct fb_info *fb_info)
1628 struct fb_event event;
1629 struct fb_videomode mode;
1631 if (fb_check_foreignness(fb_info))
1634 ret = do_remove_conflicting_framebuffers(fb_info->apertures,
1636 fb_is_primary_device(fb_info));
1640 if (num_registered_fb == FB_MAX)
1643 num_registered_fb++;
1644 for (i = 0 ; i < FB_MAX; i++)
1645 if (!registered_fb[i])
1648 atomic_set(&fb_info->count, 1);
1649 mutex_init(&fb_info->lock);
1650 mutex_init(&fb_info->mm_lock);
1652 fb_info->dev = device_create(fb_class, fb_info->device,
1653 MKDEV(FB_MAJOR, i), NULL, "fb%d", i);
1654 if (IS_ERR(fb_info->dev)) {
1656 printk(KERN_WARNING "Unable to create device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->dev));
1657 fb_info->dev = NULL;
1659 fb_init_device(fb_info);
1661 if (fb_info->pixmap.addr == NULL) {
1662 fb_info->pixmap.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL);
1663 if (fb_info->pixmap.addr) {
1664 fb_info->pixmap.size = FBPIXMAPSIZE;
1665 fb_info->pixmap.buf_align = 1;
1666 fb_info->pixmap.scan_align = 1;
1667 fb_info->pixmap.access_align = 32;
1668 fb_info->pixmap.flags = FB_PIXMAP_DEFAULT;
1671 fb_info->pixmap.offset = 0;
1673 if (!fb_info->pixmap.blit_x)
1674 fb_info->pixmap.blit_x = ~(u32)0;
1676 if (!fb_info->pixmap.blit_y)
1677 fb_info->pixmap.blit_y = ~(u32)0;
1679 if (!fb_info->modelist.prev || !fb_info->modelist.next)
1680 INIT_LIST_HEAD(&fb_info->modelist);
1682 if (fb_info->skip_vt_switch)
1683 pm_vt_switch_required(fb_info->dev, false);
1685 pm_vt_switch_required(fb_info->dev, true);
1687 fb_var_to_videomode(&mode, &fb_info->var);
1688 fb_add_videomode(&mode, &fb_info->modelist);
1689 registered_fb[i] = fb_info;
1691 event.info = fb_info;
1692 if (!lockless_register_fb)
1694 if (!lock_fb_info(fb_info)) {
1695 if (!lockless_register_fb)
1700 fb_notifier_call_chain(FB_EVENT_FB_REGISTERED, &event);
1701 unlock_fb_info(fb_info);
1702 if (!lockless_register_fb)
1707 static int do_unregister_framebuffer(struct fb_info *fb_info)
1709 struct fb_event event;
1713 if (i < 0 || i >= FB_MAX || registered_fb[i] != fb_info)
1717 if (!lock_fb_info(fb_info)) {
1722 event.info = fb_info;
1723 ret = fb_notifier_call_chain(FB_EVENT_FB_UNBIND, &event);
1724 unlock_fb_info(fb_info);
1730 pm_vt_switch_unregister(fb_info->dev);
1732 unlink_framebuffer(fb_info);
1733 if (fb_info->pixmap.addr &&
1734 (fb_info->pixmap.flags & FB_PIXMAP_DEFAULT))
1735 kfree(fb_info->pixmap.addr);
1736 fb_destroy_modelist(&fb_info->modelist);
1737 registered_fb[i] = NULL;
1738 num_registered_fb--;
1739 fb_cleanup_device(fb_info);
1740 event.info = fb_info;
1742 fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED, &event);
1745 /* this may free fb info */
1746 put_fb_info(fb_info);
1750 int unlink_framebuffer(struct fb_info *fb_info)
1755 if (i < 0 || i >= FB_MAX || registered_fb[i] != fb_info)
1759 device_destroy(fb_class, MKDEV(FB_MAJOR, i));
1760 fb_info->dev = NULL;
1764 EXPORT_SYMBOL(unlink_framebuffer);
1766 int remove_conflicting_framebuffers(struct apertures_struct *a,
1767 const char *name, bool primary)
1771 mutex_lock(®istration_lock);
1772 ret = do_remove_conflicting_framebuffers(a, name, primary);
1773 mutex_unlock(®istration_lock);
1777 EXPORT_SYMBOL(remove_conflicting_framebuffers);
1780 * register_framebuffer - registers a frame buffer device
1781 * @fb_info: frame buffer info structure
1783 * Registers a frame buffer device @fb_info.
1785 * Returns negative errno on error, or zero for success.
1789 register_framebuffer(struct fb_info *fb_info)
1793 mutex_lock(®istration_lock);
1794 ret = do_register_framebuffer(fb_info);
1795 mutex_unlock(®istration_lock);
1799 EXPORT_SYMBOL(register_framebuffer);
1802 * unregister_framebuffer - releases a frame buffer device
1803 * @fb_info: frame buffer info structure
1805 * Unregisters a frame buffer device @fb_info.
1807 * Returns negative errno on error, or zero for success.
1809 * This function will also notify the framebuffer console
1810 * to release the driver.
1812 * This is meant to be called within a driver's module_exit()
1813 * function. If this is called outside module_exit(), ensure
1814 * that the driver implements fb_open() and fb_release() to
1815 * check that no processes are using the device.
1818 unregister_framebuffer(struct fb_info *fb_info)
1822 mutex_lock(®istration_lock);
1823 ret = do_unregister_framebuffer(fb_info);
1824 mutex_unlock(®istration_lock);
1828 EXPORT_SYMBOL(unregister_framebuffer);
1831 * fb_set_suspend - low level driver signals suspend
1832 * @info: framebuffer affected
1833 * @state: 0 = resuming, !=0 = suspending
1835 * This is meant to be used by low level drivers to
1836 * signal suspend/resume to the core & clients.
1837 * It must be called with the console semaphore held
1839 void fb_set_suspend(struct fb_info *info, int state)
1841 struct fb_event event;
1845 fb_notifier_call_chain(FB_EVENT_SUSPEND, &event);
1846 info->state = FBINFO_STATE_SUSPENDED;
1848 info->state = FBINFO_STATE_RUNNING;
1849 fb_notifier_call_chain(FB_EVENT_RESUME, &event);
1852 EXPORT_SYMBOL(fb_set_suspend);
1855 * fbmem_init - init frame buffer subsystem
1857 * Initialize the frame buffer subsystem.
1859 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1868 if (!proc_create("fb", 0, NULL, &fb_proc_fops))
1871 ret = register_chrdev(FB_MAJOR, "fb", &fb_fops);
1873 printk("unable to get major %d for fb devs\n", FB_MAJOR);
1877 fb_class = class_create(THIS_MODULE, "graphics");
1878 if (IS_ERR(fb_class)) {
1879 ret = PTR_ERR(fb_class);
1880 pr_warn("Unable to create fb class; errno = %d\n", ret);
1890 unregister_chrdev(FB_MAJOR, "fb");
1892 remove_proc_entry("fb", NULL);
1897 module_init(fbmem_init);
1903 remove_proc_entry("fb", NULL);
1904 class_destroy(fb_class);
1905 unregister_chrdev(FB_MAJOR, "fb");
1908 module_exit(fbmem_exit);
1909 MODULE_LICENSE("GPL");
1910 MODULE_DESCRIPTION("Framebuffer base");
1912 subsys_initcall(fbmem_init);
1915 int fb_new_modelist(struct fb_info *info)
1917 struct fb_event event;
1918 struct fb_var_screeninfo var = info->var;
1919 struct list_head *pos, *n;
1920 struct fb_modelist *modelist;
1921 struct fb_videomode *m, mode;
1924 list_for_each_safe(pos, n, &info->modelist) {
1925 modelist = list_entry(pos, struct fb_modelist, list);
1926 m = &modelist->mode;
1927 fb_videomode_to_var(&var, m);
1928 var.activate = FB_ACTIVATE_TEST;
1929 err = fb_set_var(info, &var);
1930 fb_var_to_videomode(&mode, &var);
1931 if (err || !fb_mode_is_equal(m, &mode)) {
1939 if (!list_empty(&info->modelist)) {
1941 err = fb_notifier_call_chain(FB_EVENT_NEW_MODELIST, &event);
1947 MODULE_LICENSE("GPL");