2 * linux/drivers/video/fbmem.c
4 * Copyright (C) 1994 Martin Schaller
6 * 2001 - Documented with DocBook
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/platform_device.h>
29 #include <linux/seq_file.h>
30 #include <linux/console.h>
31 #include <linux/kmod.h>
32 #include <linux/err.h>
33 #include <linux/device.h>
34 #include <linux/efi.h>
36 #include <linux/fbcon.h>
37 #include <linux/mem_encrypt.h>
38 #include <linux/pci.h>
40 #include <video/nomodeset.h>
41 #include <video/vga.h>
44 * Frame buffer device initialization and setup routines
47 #define FBPIXMAPSIZE (1024 * 8)
49 static DEFINE_MUTEX(registration_lock);
51 struct fb_info *registered_fb[FB_MAX] __read_mostly;
52 int num_registered_fb __read_mostly;
53 #define for_each_registered_fb(i) \
54 for (i = 0; i < FB_MAX; i++) \
55 if (!registered_fb[i]) {} else
57 bool fb_center_logo __read_mostly;
59 int fb_logo_count __read_mostly = -1;
61 static struct fb_info *get_fb_info(unsigned int idx)
63 struct fb_info *fb_info;
66 return ERR_PTR(-ENODEV);
68 mutex_lock(®istration_lock);
69 fb_info = registered_fb[idx];
71 refcount_inc(&fb_info->count);
72 mutex_unlock(®istration_lock);
77 static void put_fb_info(struct fb_info *fb_info)
79 if (!refcount_dec_and_test(&fb_info->count))
81 if (fb_info->fbops->fb_destroy)
82 fb_info->fbops->fb_destroy(fb_info);
89 int fb_get_color_depth(struct fb_var_screeninfo *var,
90 struct fb_fix_screeninfo *fix)
94 if (fix->visual == FB_VISUAL_MONO01 ||
95 fix->visual == FB_VISUAL_MONO10)
98 if (var->green.length == var->blue.length &&
99 var->green.length == var->red.length &&
100 var->green.offset == var->blue.offset &&
101 var->green.offset == var->red.offset)
102 depth = var->green.length;
104 depth = var->green.length + var->red.length +
110 EXPORT_SYMBOL(fb_get_color_depth);
113 * Data padding functions.
115 void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height)
117 __fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height);
119 EXPORT_SYMBOL(fb_pad_aligned_buffer);
121 void fb_pad_unaligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 idx, u32 height,
122 u32 shift_high, u32 shift_low, u32 mod)
124 u8 mask = (u8) (0xfff << shift_high), tmp;
127 for (i = height; i--; ) {
128 for (j = 0; j < idx; j++) {
131 tmp |= *src >> shift_low;
133 tmp = *src << shift_high;
139 tmp |= *src >> shift_low;
141 if (shift_high < mod) {
142 tmp = *src << shift_high;
149 EXPORT_SYMBOL(fb_pad_unaligned_buffer);
152 * we need to lock this section since fb_cursor
153 * may use fb_imageblit()
155 char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size)
157 u32 align = buf->buf_align - 1, offset;
158 char *addr = buf->addr;
160 /* If IO mapped, we need to sync before access, no sharing of
163 if (buf->flags & FB_PIXMAP_IO) {
164 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
165 info->fbops->fb_sync(info);
169 /* See if we fit in the remaining pixmap space */
170 offset = buf->offset + align;
172 if (offset + size > buf->size) {
173 /* We do not fit. In order to be able to re-use the buffer,
174 * we must ensure no asynchronous DMA'ing or whatever operation
175 * is in progress, we sync for that.
177 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
178 info->fbops->fb_sync(info);
181 buf->offset = offset + size;
186 EXPORT_SYMBOL(fb_get_buffer_offset);
190 static inline unsigned safe_shift(unsigned d, int n)
192 return n < 0 ? d >> -n : d << n;
195 static void fb_set_logocmap(struct fb_info *info,
196 const struct linux_logo *logo)
198 struct fb_cmap palette_cmap;
199 u16 palette_green[16];
200 u16 palette_blue[16];
203 const unsigned char *clut = logo->clut;
205 palette_cmap.start = 0;
206 palette_cmap.len = 16;
207 palette_cmap.red = palette_red;
208 palette_cmap.green = palette_green;
209 palette_cmap.blue = palette_blue;
210 palette_cmap.transp = NULL;
212 for (i = 0; i < logo->clutsize; i += n) {
213 n = logo->clutsize - i;
214 /* palette_cmap provides space for only 16 colors at once */
217 palette_cmap.start = 32 + i;
218 palette_cmap.len = n;
219 for (j = 0; j < n; ++j) {
220 palette_cmap.red[j] = clut[0] << 8 | clut[0];
221 palette_cmap.green[j] = clut[1] << 8 | clut[1];
222 palette_cmap.blue[j] = clut[2] << 8 | clut[2];
225 fb_set_cmap(&palette_cmap, info);
229 static void fb_set_logo_truepalette(struct fb_info *info,
230 const struct linux_logo *logo,
233 static const unsigned char mask[] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
234 unsigned char redmask, greenmask, bluemask;
235 int redshift, greenshift, blueshift;
237 const unsigned char *clut = logo->clut;
240 * We have to create a temporary palette since console palette is only
243 /* Bug: Doesn't obey msb_right ... (who needs that?) */
244 redmask = mask[info->var.red.length < 8 ? info->var.red.length : 8];
245 greenmask = mask[info->var.green.length < 8 ? info->var.green.length : 8];
246 bluemask = mask[info->var.blue.length < 8 ? info->var.blue.length : 8];
247 redshift = info->var.red.offset - (8 - info->var.red.length);
248 greenshift = info->var.green.offset - (8 - info->var.green.length);
249 blueshift = info->var.blue.offset - (8 - info->var.blue.length);
251 for ( i = 0; i < logo->clutsize; i++) {
252 palette[i+32] = (safe_shift((clut[0] & redmask), redshift) |
253 safe_shift((clut[1] & greenmask), greenshift) |
254 safe_shift((clut[2] & bluemask), blueshift));
259 static void fb_set_logo_directpalette(struct fb_info *info,
260 const struct linux_logo *logo,
263 int redshift, greenshift, blueshift;
266 redshift = info->var.red.offset;
267 greenshift = info->var.green.offset;
268 blueshift = info->var.blue.offset;
270 for (i = 32; i < 32 + logo->clutsize; i++)
271 palette[i] = i << redshift | i << greenshift | i << blueshift;
274 static void fb_set_logo(struct fb_info *info,
275 const struct linux_logo *logo, u8 *dst,
279 const u8 *src = logo->data;
280 u8 xor = (info->fix.visual == FB_VISUAL_MONO01) ? 0xff : 0;
283 switch (fb_get_color_depth(&info->var, &info->fix)) {
295 if (info->fix.visual == FB_VISUAL_MONO01 ||
296 info->fix.visual == FB_VISUAL_MONO10)
297 fg = ~((u8) (0xfff << info->var.green.length));
301 for (i = 0; i < logo->height; i++)
302 for (j = 0; j < logo->width; src++) {
305 if (j < logo->width) {
306 *dst++ = *src & 0x0f;
312 for (i = 0; i < logo->height; i++) {
313 for (j = 0; j < logo->width; src++) {
315 for (k = 7; k >= 0 && j < logo->width; k--) {
316 *dst++ = ((d >> k) & 1) ? fg : 0;
326 * Three (3) kinds of logo maps exist. linux_logo_clut224 (>16 colors),
327 * linux_logo_vga16 (16 colors) and linux_logo_mono (2 colors). Depending on
328 * the visual format and color depth of the framebuffer, the DAC, the
329 * pseudo_palette, and the logo data will be adjusted accordingly.
331 * Case 1 - linux_logo_clut224:
332 * Color exceeds the number of console colors (16), thus we set the hardware DAC
333 * using fb_set_cmap() appropriately. The "needs_cmapreset" flag will be set.
335 * For visuals that require color info from the pseudo_palette, we also construct
336 * one for temporary use. The "needs_directpalette" or "needs_truepalette" flags
339 * Case 2 - linux_logo_vga16:
340 * The number of colors just matches the console colors, thus there is no need
341 * to set the DAC or the pseudo_palette. However, the bitmap is packed, ie,
342 * each byte contains color information for two pixels (upper and lower nibble).
343 * To be consistent with fb_imageblit() usage, we therefore separate the two
344 * nibbles into separate bytes. The "depth" flag will be set to 4.
346 * Case 3 - linux_logo_mono:
347 * This is similar with Case 2. Each byte contains information for 8 pixels.
348 * We isolate each bit and expand each into a byte. The "depth" flag will
351 static struct logo_data {
353 int needs_directpalette;
354 int needs_truepalette;
356 const struct linux_logo *logo;
357 } fb_logo __read_mostly;
359 static void fb_rotate_logo_ud(const u8 *in, u8 *out, u32 width, u32 height)
361 u32 size = width * height, i;
365 for (i = size; i--; )
369 static void fb_rotate_logo_cw(const u8 *in, u8 *out, u32 width, u32 height)
371 int i, j, h = height - 1;
373 for (i = 0; i < height; i++)
374 for (j = 0; j < width; j++)
375 out[height * j + h - i] = *in++;
378 static void fb_rotate_logo_ccw(const u8 *in, u8 *out, u32 width, u32 height)
380 int i, j, w = width - 1;
382 for (i = 0; i < height; i++)
383 for (j = 0; j < width; j++)
384 out[height * (w - j) + i] = *in++;
387 static void fb_rotate_logo(struct fb_info *info, u8 *dst,
388 struct fb_image *image, int rotate)
392 if (rotate == FB_ROTATE_UD) {
393 fb_rotate_logo_ud(image->data, dst, image->width,
395 image->dx = info->var.xres - image->width - image->dx;
396 image->dy = info->var.yres - image->height - image->dy;
397 } else if (rotate == FB_ROTATE_CW) {
398 fb_rotate_logo_cw(image->data, dst, image->width,
400 swap(image->width, image->height);
402 image->dy = image->dx;
403 image->dx = info->var.xres - image->width - tmp;
404 } else if (rotate == FB_ROTATE_CCW) {
405 fb_rotate_logo_ccw(image->data, dst, image->width,
407 swap(image->width, image->height);
409 image->dx = image->dy;
410 image->dy = info->var.yres - image->height - tmp;
416 static void fb_do_show_logo(struct fb_info *info, struct fb_image *image,
417 int rotate, unsigned int num)
421 if (image->width > info->var.xres || image->height > info->var.yres)
424 if (rotate == FB_ROTATE_UR) {
426 x < num && image->dx + image->width <= info->var.xres;
428 info->fbops->fb_imageblit(info, image);
429 image->dx += image->width + 8;
431 } else if (rotate == FB_ROTATE_UD) {
434 for (x = 0; x < num && image->dx <= dx; x++) {
435 info->fbops->fb_imageblit(info, image);
436 image->dx -= image->width + 8;
438 } else if (rotate == FB_ROTATE_CW) {
440 x < num && image->dy + image->height <= info->var.yres;
442 info->fbops->fb_imageblit(info, image);
443 image->dy += image->height + 8;
445 } else if (rotate == FB_ROTATE_CCW) {
448 for (x = 0; x < num && image->dy <= dy; x++) {
449 info->fbops->fb_imageblit(info, image);
450 image->dy -= image->height + 8;
455 static int fb_show_logo_line(struct fb_info *info, int rotate,
456 const struct linux_logo *logo, int y,
459 u32 *palette = NULL, *saved_pseudo_palette = NULL;
460 unsigned char *logo_new = NULL, *logo_rotate = NULL;
461 struct fb_image image;
463 /* Return if the frame buffer is not mapped or suspended */
464 if (logo == NULL || info->state != FBINFO_STATE_RUNNING ||
469 image.data = logo->data;
471 if (fb_logo.needs_cmapreset)
472 fb_set_logocmap(info, logo);
474 if (fb_logo.needs_truepalette ||
475 fb_logo.needs_directpalette) {
476 palette = kmalloc(256 * 4, GFP_KERNEL);
480 if (fb_logo.needs_truepalette)
481 fb_set_logo_truepalette(info, logo, palette);
483 fb_set_logo_directpalette(info, logo, palette);
485 saved_pseudo_palette = info->pseudo_palette;
486 info->pseudo_palette = palette;
489 if (fb_logo.depth <= 4) {
490 logo_new = kmalloc_array(logo->width, logo->height,
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);
502 if (fb_center_logo) {
503 int xres = info->var.xres;
504 int yres = info->var.yres;
506 if (rotate == FB_ROTATE_CW || rotate == FB_ROTATE_CCW) {
507 xres = info->var.yres;
508 yres = info->var.xres;
511 while (n && (n * (logo->width + 8) - 8 > xres))
513 image.dx = (xres - (n * (logo->width + 8) - 8)) / 2;
514 image.dy = y ?: (yres - logo->height) / 2;
520 image.width = logo->width;
521 image.height = logo->height;
524 logo_rotate = kmalloc_array(logo->width, logo->height,
527 fb_rotate_logo(info, logo_rotate, &image, rotate);
530 fb_do_show_logo(info, &image, rotate, n);
533 if (saved_pseudo_palette != NULL)
534 info->pseudo_palette = saved_pseudo_palette;
537 return image.dy + logo->height;
541 #ifdef CONFIG_FB_LOGO_EXTRA
543 #define FB_LOGO_EX_NUM_MAX 10
544 static struct logo_data_extra {
545 const struct linux_logo *logo;
547 } fb_logo_ex[FB_LOGO_EX_NUM_MAX];
548 static unsigned int fb_logo_ex_num;
550 void fb_append_extra_logo(const struct linux_logo *logo, unsigned int n)
552 if (!n || fb_logo_ex_num == FB_LOGO_EX_NUM_MAX)
555 fb_logo_ex[fb_logo_ex_num].logo = logo;
556 fb_logo_ex[fb_logo_ex_num].n = n;
560 static int fb_prepare_extra_logos(struct fb_info *info, unsigned int height,
565 /* FIXME: logo_ex supports only truecolor fb. */
566 if (info->fix.visual != FB_VISUAL_TRUECOLOR)
569 for (i = 0; i < fb_logo_ex_num; i++) {
570 if (fb_logo_ex[i].logo->type != fb_logo.logo->type) {
571 fb_logo_ex[i].logo = NULL;
574 height += fb_logo_ex[i].logo->height;
576 height -= fb_logo_ex[i].logo->height;
584 static int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
588 for (i = 0; i < fb_logo_ex_num; i++)
589 y = fb_show_logo_line(info, rotate,
590 fb_logo_ex[i].logo, y, fb_logo_ex[i].n);
595 #else /* !CONFIG_FB_LOGO_EXTRA */
597 static inline int fb_prepare_extra_logos(struct fb_info *info,
604 static inline int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
609 #endif /* CONFIG_FB_LOGO_EXTRA */
612 int fb_prepare_logo(struct fb_info *info, int rotate)
614 int depth = fb_get_color_depth(&info->var, &info->fix);
618 memset(&fb_logo, 0, sizeof(struct logo_data));
620 if (info->flags & FBINFO_MISC_TILEBLITTING ||
621 info->fbops->owner || !fb_logo_count)
624 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
625 depth = info->var.blue.length;
626 if (info->var.red.length < depth)
627 depth = info->var.red.length;
628 if (info->var.green.length < depth)
629 depth = info->var.green.length;
632 if (info->fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR && depth > 4) {
633 /* assume console colormap */
637 /* Return if no suitable logo was found */
638 fb_logo.logo = fb_find_logo(depth);
644 if (rotate == FB_ROTATE_UR || rotate == FB_ROTATE_UD)
645 yres = info->var.yres;
647 yres = info->var.xres;
649 if (fb_logo.logo->height > yres) {
654 /* What depth we asked for might be different from what we get */
655 if (fb_logo.logo->type == LINUX_LOGO_CLUT224)
657 else if (fb_logo.logo->type == LINUX_LOGO_VGA16)
663 if (fb_logo.depth > 4 && depth > 4) {
664 switch (info->fix.visual) {
665 case FB_VISUAL_TRUECOLOR:
666 fb_logo.needs_truepalette = 1;
668 case FB_VISUAL_DIRECTCOLOR:
669 fb_logo.needs_directpalette = 1;
670 fb_logo.needs_cmapreset = 1;
672 case FB_VISUAL_PSEUDOCOLOR:
673 fb_logo.needs_cmapreset = 1;
678 height = fb_logo.logo->height;
680 height += (yres - fb_logo.logo->height) / 2;
682 return fb_prepare_extra_logos(info, height, yres);
685 int fb_show_logo(struct fb_info *info, int rotate)
693 count = fb_logo_count < 0 ? num_online_cpus() : fb_logo_count;
694 y = fb_show_logo_line(info, rotate, fb_logo.logo, 0, count);
695 y = fb_show_extra_logos(info, y, rotate);
700 int fb_prepare_logo(struct fb_info *info, int rotate) { return 0; }
701 int fb_show_logo(struct fb_info *info, int rotate) { return 0; }
702 #endif /* CONFIG_LOGO */
703 EXPORT_SYMBOL(fb_prepare_logo);
704 EXPORT_SYMBOL(fb_show_logo);
706 static void *fb_seq_start(struct seq_file *m, loff_t *pos)
708 mutex_lock(®istration_lock);
709 return (*pos < FB_MAX) ? pos : NULL;
712 static void *fb_seq_next(struct seq_file *m, void *v, loff_t *pos)
715 return (*pos < FB_MAX) ? pos : NULL;
718 static void fb_seq_stop(struct seq_file *m, void *v)
720 mutex_unlock(®istration_lock);
723 static int fb_seq_show(struct seq_file *m, void *v)
725 int i = *(loff_t *)v;
726 struct fb_info *fi = registered_fb[i];
729 seq_printf(m, "%d %s\n", fi->node, fi->fix.id);
733 static const struct seq_operations __maybe_unused proc_fb_seq_ops = {
734 .start = fb_seq_start,
741 * We hold a reference to the fb_info in file->private_data,
742 * but if the current registered fb has changed, we don't
743 * actually want to use it.
745 * So look up the fb_info using the inode minor number,
746 * and just verify it against the reference we have.
748 static struct fb_info *file_fb_info(struct file *file)
750 struct inode *inode = file_inode(file);
751 int fbidx = iminor(inode);
752 struct fb_info *info = registered_fb[fbidx];
754 if (info != file->private_data)
760 fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
762 struct fb_info *info = file_fb_info(file);
767 if (info->state != FBINFO_STATE_RUNNING)
770 if (info->fbops->fb_read)
771 return info->fbops->fb_read(info, buf, count, ppos);
773 return fb_io_read(info, buf, count, ppos);
777 fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
779 struct fb_info *info = file_fb_info(file);
784 if (info->state != FBINFO_STATE_RUNNING)
787 if (info->fbops->fb_write)
788 return info->fbops->fb_write(info, buf, count, ppos);
790 return fb_io_write(info, buf, count, ppos);
794 fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var)
796 struct fb_fix_screeninfo *fix = &info->fix;
797 unsigned int yres = info->var.yres;
800 if (var->yoffset > 0) {
801 if (var->vmode & FB_VMODE_YWRAP) {
802 if (!fix->ywrapstep || (var->yoffset % fix->ywrapstep))
806 } else if (!fix->ypanstep || (var->yoffset % fix->ypanstep))
810 if (var->xoffset > 0 && (!fix->xpanstep ||
811 (var->xoffset % fix->xpanstep)))
814 if (err || !info->fbops->fb_pan_display ||
815 var->yoffset > info->var.yres_virtual - yres ||
816 var->xoffset > info->var.xres_virtual - info->var.xres)
819 if ((err = info->fbops->fb_pan_display(var, info)))
821 info->var.xoffset = var->xoffset;
822 info->var.yoffset = var->yoffset;
823 if (var->vmode & FB_VMODE_YWRAP)
824 info->var.vmode |= FB_VMODE_YWRAP;
826 info->var.vmode &= ~FB_VMODE_YWRAP;
829 EXPORT_SYMBOL(fb_pan_display);
831 static int fb_check_caps(struct fb_info *info, struct fb_var_screeninfo *var,
834 struct fb_blit_caps caps, fbcaps;
837 memset(&caps, 0, sizeof(caps));
838 memset(&fbcaps, 0, sizeof(fbcaps));
839 caps.flags = (activate & FB_ACTIVATE_ALL) ? 1 : 0;
840 fbcon_get_requirement(info, &caps);
841 info->fbops->fb_get_caps(info, &fbcaps, var);
843 if (((fbcaps.x ^ caps.x) & caps.x) ||
844 ((fbcaps.y ^ caps.y) & caps.y) ||
845 (fbcaps.len < caps.len))
852 fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var)
856 struct fb_var_screeninfo old_var;
857 struct fb_videomode mode;
858 struct fb_event event;
861 if (var->activate & FB_ACTIVATE_INV_MODE) {
862 struct fb_videomode mode1, mode2;
864 fb_var_to_videomode(&mode1, var);
865 fb_var_to_videomode(&mode2, &info->var);
866 /* make sure we don't delete the videomode of current var */
867 ret = fb_mode_is_equal(&mode1, &mode2);
869 ret = fbcon_mode_deleted(info, &mode1);
871 fb_delete_videomode(&mode1, &info->modelist);
874 return ret ? -EINVAL : 0;
877 if (!(var->activate & FB_ACTIVATE_FORCE) &&
878 !memcmp(&info->var, var, sizeof(struct fb_var_screeninfo)))
881 activate = var->activate;
883 /* When using FOURCC mode, make sure the red, green, blue and
884 * transp fields are set to 0.
886 if ((info->fix.capabilities & FB_CAP_FOURCC) &&
887 var->grayscale > 1) {
888 if (var->red.offset || var->green.offset ||
889 var->blue.offset || var->transp.offset ||
890 var->red.length || var->green.length ||
891 var->blue.length || var->transp.length ||
892 var->red.msb_right || var->green.msb_right ||
893 var->blue.msb_right || var->transp.msb_right)
897 if (!info->fbops->fb_check_var) {
902 /* bitfill_aligned() assumes that it's at least 8x8 */
903 if (var->xres < 8 || var->yres < 8)
906 /* Too huge resolution causes multiplication overflow. */
907 if (check_mul_overflow(var->xres, var->yres, &unused) ||
908 check_mul_overflow(var->xres_virtual, var->yres_virtual, &unused))
911 ret = info->fbops->fb_check_var(var, info);
916 /* verify that virtual resolution >= physical resolution */
917 if (var->xres_virtual < var->xres ||
918 var->yres_virtual < var->yres) {
919 pr_warn("WARNING: fbcon: Driver '%s' missed to adjust virtual screen size (%ux%u vs. %ux%u)\n",
921 var->xres_virtual, var->yres_virtual,
922 var->xres, var->yres);
926 if ((var->activate & FB_ACTIVATE_MASK) != FB_ACTIVATE_NOW)
929 if (info->fbops->fb_get_caps) {
930 ret = fb_check_caps(info, var, activate);
939 if (info->fbops->fb_set_par) {
940 ret = info->fbops->fb_set_par(info);
944 printk(KERN_WARNING "detected "
946 "error code: %d\n", ret);
951 fb_pan_display(info, &info->var);
952 fb_set_cmap(&info->cmap, info);
953 fb_var_to_videomode(&mode, &info->var);
955 if (info->modelist.prev && info->modelist.next &&
956 !list_empty(&info->modelist))
957 ret = fb_add_videomode(&mode, &info->modelist);
964 fb_notifier_call_chain(FB_EVENT_MODE_CHANGE, &event);
968 EXPORT_SYMBOL(fb_set_var);
971 fb_blank(struct fb_info *info, int blank)
973 struct fb_event event;
976 if (blank > FB_BLANK_POWERDOWN)
977 blank = FB_BLANK_POWERDOWN;
982 if (info->fbops->fb_blank)
983 ret = info->fbops->fb_blank(blank, info);
986 fb_notifier_call_chain(FB_EVENT_BLANK, &event);
990 EXPORT_SYMBOL(fb_blank);
992 static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,
995 const struct fb_ops *fb;
996 struct fb_var_screeninfo var;
997 struct fb_fix_screeninfo fix;
998 struct fb_cmap cmap_from;
999 struct fb_cmap_user cmap;
1000 void __user *argp = (void __user *)arg;
1004 case FBIOGET_VSCREENINFO:
1007 unlock_fb_info(info);
1009 ret = copy_to_user(argp, &var, sizeof(var)) ? -EFAULT : 0;
1011 case FBIOPUT_VSCREENINFO:
1012 if (copy_from_user(&var, argp, sizeof(var)))
1014 /* only for kernel-internal use */
1015 var.activate &= ~FB_ACTIVATE_KD_TEXT;
1018 ret = fbcon_modechange_possible(info, &var);
1020 ret = fb_set_var(info, &var);
1022 fbcon_update_vcs(info, var.activate & FB_ACTIVATE_ALL);
1023 unlock_fb_info(info);
1025 if (!ret && copy_to_user(argp, &var, sizeof(var)))
1028 case FBIOGET_FSCREENINFO:
1030 memcpy(&fix, &info->fix, sizeof(fix));
1031 if (info->flags & FBINFO_HIDE_SMEM_START)
1033 unlock_fb_info(info);
1035 ret = copy_to_user(argp, &fix, sizeof(fix)) ? -EFAULT : 0;
1038 if (copy_from_user(&cmap, argp, sizeof(cmap)))
1040 ret = fb_set_user_cmap(&cmap, info);
1043 if (copy_from_user(&cmap, argp, sizeof(cmap)))
1046 cmap_from = info->cmap;
1047 unlock_fb_info(info);
1048 ret = fb_cmap_to_user(&cmap_from, &cmap);
1050 case FBIOPAN_DISPLAY:
1051 if (copy_from_user(&var, argp, sizeof(var)))
1055 ret = fb_pan_display(info, &var);
1056 unlock_fb_info(info);
1058 if (ret == 0 && copy_to_user(argp, &var, sizeof(var)))
1064 case FBIOGET_CON2FBMAP:
1065 ret = fbcon_get_con2fb_map_ioctl(argp);
1067 case FBIOPUT_CON2FBMAP:
1068 ret = fbcon_set_con2fb_map_ioctl(argp);
1071 if (arg > FB_BLANK_POWERDOWN)
1075 ret = fb_blank(info, arg);
1076 /* might again call into fb_blank */
1077 fbcon_fb_blanked(info, arg);
1078 unlock_fb_info(info);
1085 ret = fb->fb_ioctl(info, cmd, arg);
1088 unlock_fb_info(info);
1093 static long fb_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1095 struct fb_info *info = file_fb_info(file);
1099 return do_fb_ioctl(info, cmd, arg);
1102 #ifdef CONFIG_COMPAT
1103 struct fb_fix_screeninfo32 {
1105 compat_caddr_t smem_start;
1114 compat_caddr_t mmio_start;
1124 compat_caddr_t green;
1125 compat_caddr_t blue;
1126 compat_caddr_t transp;
1129 static int fb_getput_cmap(struct fb_info *info, unsigned int cmd,
1132 struct fb_cmap32 cmap32;
1133 struct fb_cmap cmap_from;
1134 struct fb_cmap_user cmap;
1136 if (copy_from_user(&cmap32, compat_ptr(arg), sizeof(cmap32)))
1139 cmap = (struct fb_cmap_user) {
1140 .start = cmap32.start,
1142 .red = compat_ptr(cmap32.red),
1143 .green = compat_ptr(cmap32.green),
1144 .blue = compat_ptr(cmap32.blue),
1145 .transp = compat_ptr(cmap32.transp),
1148 if (cmd == FBIOPUTCMAP)
1149 return fb_set_user_cmap(&cmap, info);
1152 cmap_from = info->cmap;
1153 unlock_fb_info(info);
1155 return fb_cmap_to_user(&cmap_from, &cmap);
1158 static int do_fscreeninfo_to_user(struct fb_fix_screeninfo *fix,
1159 struct fb_fix_screeninfo32 __user *fix32)
1164 err = copy_to_user(&fix32->id, &fix->id, sizeof(fix32->id));
1166 data = (__u32) (unsigned long) fix->smem_start;
1167 err |= put_user(data, &fix32->smem_start);
1169 err |= put_user(fix->smem_len, &fix32->smem_len);
1170 err |= put_user(fix->type, &fix32->type);
1171 err |= put_user(fix->type_aux, &fix32->type_aux);
1172 err |= put_user(fix->visual, &fix32->visual);
1173 err |= put_user(fix->xpanstep, &fix32->xpanstep);
1174 err |= put_user(fix->ypanstep, &fix32->ypanstep);
1175 err |= put_user(fix->ywrapstep, &fix32->ywrapstep);
1176 err |= put_user(fix->line_length, &fix32->line_length);
1178 data = (__u32) (unsigned long) fix->mmio_start;
1179 err |= put_user(data, &fix32->mmio_start);
1181 err |= put_user(fix->mmio_len, &fix32->mmio_len);
1182 err |= put_user(fix->accel, &fix32->accel);
1183 err |= copy_to_user(fix32->reserved, fix->reserved,
1184 sizeof(fix->reserved));
1191 static int fb_get_fscreeninfo(struct fb_info *info, unsigned int cmd,
1194 struct fb_fix_screeninfo fix;
1198 if (info->flags & FBINFO_HIDE_SMEM_START)
1200 unlock_fb_info(info);
1201 return do_fscreeninfo_to_user(&fix, compat_ptr(arg));
1204 static long fb_compat_ioctl(struct file *file, unsigned int cmd,
1207 struct fb_info *info = file_fb_info(file);
1208 const struct fb_ops *fb;
1209 long ret = -ENOIOCTLCMD;
1215 case FBIOGET_VSCREENINFO:
1216 case FBIOPUT_VSCREENINFO:
1217 case FBIOPAN_DISPLAY:
1218 case FBIOGET_CON2FBMAP:
1219 case FBIOPUT_CON2FBMAP:
1220 arg = (unsigned long) compat_ptr(arg);
1223 ret = do_fb_ioctl(info, cmd, arg);
1226 case FBIOGET_FSCREENINFO:
1227 ret = fb_get_fscreeninfo(info, cmd, arg);
1232 ret = fb_getput_cmap(info, cmd, arg);
1236 if (fb->fb_compat_ioctl)
1237 ret = fb->fb_compat_ioctl(info, cmd, arg);
1245 fb_mmap(struct file *file, struct vm_area_struct * vma)
1247 struct fb_info *info = file_fb_info(file);
1248 unsigned long mmio_pgoff;
1249 unsigned long start;
1254 mutex_lock(&info->mm_lock);
1256 if (info->fbops->fb_mmap) {
1260 * The framebuffer needs to be accessed decrypted, be sure
1261 * SME protection is removed ahead of the call
1263 vma->vm_page_prot = pgprot_decrypted(vma->vm_page_prot);
1264 res = info->fbops->fb_mmap(info, vma);
1265 mutex_unlock(&info->mm_lock);
1267 #if IS_ENABLED(CONFIG_FB_DEFERRED_IO)
1268 } else if (info->fbdefio) {
1270 * FB deferred I/O wants you to handle mmap in your drivers. At a
1271 * minimum, point struct fb_ops.fb_mmap to fb_deferred_io_mmap().
1273 dev_warn_once(info->dev, "fbdev mmap not set up for deferred I/O.\n");
1274 mutex_unlock(&info->mm_lock);
1280 * Ugh. This can be either the frame buffer mapping, or
1281 * if pgoff points past it, the mmio mapping.
1283 start = info->fix.smem_start;
1284 len = info->fix.smem_len;
1285 mmio_pgoff = PAGE_ALIGN((start & ~PAGE_MASK) + len) >> PAGE_SHIFT;
1286 if (vma->vm_pgoff >= mmio_pgoff) {
1287 if (info->var.accel_flags) {
1288 mutex_unlock(&info->mm_lock);
1292 vma->vm_pgoff -= mmio_pgoff;
1293 start = info->fix.mmio_start;
1294 len = info->fix.mmio_len;
1296 mutex_unlock(&info->mm_lock);
1298 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
1299 fb_pgprotect(file, vma, start);
1301 return vm_iomap_memory(vma, start, len);
1305 fb_open(struct inode *inode, struct file *file)
1306 __acquires(&info->lock)
1307 __releases(&info->lock)
1309 int fbidx = iminor(inode);
1310 struct fb_info *info;
1313 info = get_fb_info(fbidx);
1315 request_module("fb%d", fbidx);
1316 info = get_fb_info(fbidx);
1321 return PTR_ERR(info);
1324 if (!try_module_get(info->fbops->owner)) {
1328 file->private_data = info;
1329 if (info->fbops->fb_open) {
1330 res = info->fbops->fb_open(info,1);
1332 module_put(info->fbops->owner);
1334 #ifdef CONFIG_FB_DEFERRED_IO
1336 fb_deferred_io_open(info, inode, file);
1339 unlock_fb_info(info);
1346 fb_release(struct inode *inode, struct file *file)
1347 __acquires(&info->lock)
1348 __releases(&info->lock)
1350 struct fb_info * const info = file->private_data;
1353 #if IS_ENABLED(CONFIG_FB_DEFERRED_IO)
1355 fb_deferred_io_release(info);
1357 if (info->fbops->fb_release)
1358 info->fbops->fb_release(info,1);
1359 module_put(info->fbops->owner);
1360 unlock_fb_info(info);
1365 #if defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && !defined(CONFIG_MMU)
1366 unsigned long get_fb_unmapped_area(struct file *filp,
1367 unsigned long addr, unsigned long len,
1368 unsigned long pgoff, unsigned long flags)
1370 struct fb_info * const info = filp->private_data;
1371 unsigned long fb_size = PAGE_ALIGN(info->fix.smem_len);
1373 if (pgoff > fb_size || len > fb_size - pgoff)
1376 return (unsigned long)info->screen_base + pgoff;
1380 static const struct file_operations fb_fops = {
1381 .owner = THIS_MODULE,
1384 .unlocked_ioctl = fb_ioctl,
1385 #ifdef CONFIG_COMPAT
1386 .compat_ioctl = fb_compat_ioctl,
1390 .release = fb_release,
1391 #if defined(HAVE_ARCH_FB_UNMAPPED_AREA) || \
1392 (defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && \
1393 !defined(CONFIG_MMU))
1394 .get_unmapped_area = get_fb_unmapped_area,
1396 #ifdef CONFIG_FB_DEFERRED_IO
1397 .fsync = fb_deferred_io_fsync,
1399 .llseek = default_llseek,
1402 struct class *fb_class;
1403 EXPORT_SYMBOL(fb_class);
1405 static int fb_check_foreignness(struct fb_info *fi)
1407 const bool foreign_endian = fi->flags & FBINFO_FOREIGN_ENDIAN;
1409 fi->flags &= ~FBINFO_FOREIGN_ENDIAN;
1412 fi->flags |= foreign_endian ? 0 : FBINFO_BE_MATH;
1414 fi->flags |= foreign_endian ? FBINFO_BE_MATH : 0;
1415 #endif /* __BIG_ENDIAN */
1417 if (fi->flags & FBINFO_BE_MATH && !fb_be_math(fi)) {
1418 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1419 "support this framebuffer\n", fi->fix.id);
1421 } else if (!(fi->flags & FBINFO_BE_MATH) && fb_be_math(fi)) {
1422 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1423 "support this framebuffer\n", fi->fix.id);
1430 static int do_register_framebuffer(struct fb_info *fb_info)
1433 struct fb_videomode mode;
1435 if (fb_check_foreignness(fb_info))
1438 if (num_registered_fb == FB_MAX)
1441 num_registered_fb++;
1442 for (i = 0 ; i < FB_MAX; i++)
1443 if (!registered_fb[i])
1446 refcount_set(&fb_info->count, 1);
1447 mutex_init(&fb_info->lock);
1448 mutex_init(&fb_info->mm_lock);
1450 fb_info->dev = device_create(fb_class, fb_info->device,
1451 MKDEV(FB_MAJOR, i), NULL, "fb%d", i);
1452 if (IS_ERR(fb_info->dev)) {
1454 printk(KERN_WARNING "Unable to create device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->dev));
1455 fb_info->dev = NULL;
1457 fb_init_device(fb_info);
1459 if (fb_info->pixmap.addr == NULL) {
1460 fb_info->pixmap.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL);
1461 if (fb_info->pixmap.addr) {
1462 fb_info->pixmap.size = FBPIXMAPSIZE;
1463 fb_info->pixmap.buf_align = 1;
1464 fb_info->pixmap.scan_align = 1;
1465 fb_info->pixmap.access_align = 32;
1466 fb_info->pixmap.flags = FB_PIXMAP_DEFAULT;
1469 fb_info->pixmap.offset = 0;
1471 if (!fb_info->pixmap.blit_x)
1472 fb_info->pixmap.blit_x = ~(u32)0;
1474 if (!fb_info->pixmap.blit_y)
1475 fb_info->pixmap.blit_y = ~(u32)0;
1477 if (!fb_info->modelist.prev || !fb_info->modelist.next)
1478 INIT_LIST_HEAD(&fb_info->modelist);
1480 if (fb_info->skip_vt_switch)
1481 pm_vt_switch_required(fb_info->dev, false);
1483 pm_vt_switch_required(fb_info->dev, true);
1485 fb_var_to_videomode(&mode, &fb_info->var);
1486 fb_add_videomode(&mode, &fb_info->modelist);
1487 registered_fb[i] = fb_info;
1489 #ifdef CONFIG_GUMSTIX_AM200EPD
1491 struct fb_event event;
1492 event.info = fb_info;
1493 fb_notifier_call_chain(FB_EVENT_FB_REGISTERED, &event);
1497 return fbcon_fb_registered(fb_info);
1500 static void unbind_console(struct fb_info *fb_info)
1502 int i = fb_info->node;
1504 if (WARN_ON(i < 0 || i >= FB_MAX || registered_fb[i] != fb_info))
1507 fbcon_fb_unbind(fb_info);
1510 static void unlink_framebuffer(struct fb_info *fb_info)
1515 if (WARN_ON(i < 0 || i >= FB_MAX || registered_fb[i] != fb_info))
1521 device_destroy(fb_class, MKDEV(FB_MAJOR, i));
1523 pm_vt_switch_unregister(fb_info->dev);
1525 unbind_console(fb_info);
1527 fb_info->dev = NULL;
1530 static void do_unregister_framebuffer(struct fb_info *fb_info)
1532 unlink_framebuffer(fb_info);
1533 if (fb_info->pixmap.addr &&
1534 (fb_info->pixmap.flags & FB_PIXMAP_DEFAULT)) {
1535 kfree(fb_info->pixmap.addr);
1536 fb_info->pixmap.addr = NULL;
1539 fb_destroy_modelist(&fb_info->modelist);
1540 registered_fb[fb_info->node] = NULL;
1541 num_registered_fb--;
1542 fb_cleanup_device(fb_info);
1543 #ifdef CONFIG_GUMSTIX_AM200EPD
1545 struct fb_event event;
1546 event.info = fb_info;
1547 fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED, &event);
1550 fbcon_fb_unregistered(fb_info);
1552 /* this may free fb info */
1553 put_fb_info(fb_info);
1557 * register_framebuffer - registers a frame buffer device
1558 * @fb_info: frame buffer info structure
1560 * Registers a frame buffer device @fb_info.
1562 * Returns negative errno on error, or zero for success.
1566 register_framebuffer(struct fb_info *fb_info)
1570 mutex_lock(®istration_lock);
1571 ret = do_register_framebuffer(fb_info);
1572 mutex_unlock(®istration_lock);
1576 EXPORT_SYMBOL(register_framebuffer);
1579 * unregister_framebuffer - releases a frame buffer device
1580 * @fb_info: frame buffer info structure
1582 * Unregisters a frame buffer device @fb_info.
1584 * Returns negative errno on error, or zero for success.
1586 * This function will also notify the framebuffer console
1587 * to release the driver.
1589 * This is meant to be called within a driver's module_exit()
1590 * function. If this is called outside module_exit(), ensure
1591 * that the driver implements fb_open() and fb_release() to
1592 * check that no processes are using the device.
1595 unregister_framebuffer(struct fb_info *fb_info)
1597 mutex_lock(®istration_lock);
1598 do_unregister_framebuffer(fb_info);
1599 mutex_unlock(®istration_lock);
1601 EXPORT_SYMBOL(unregister_framebuffer);
1604 * fb_set_suspend - low level driver signals suspend
1605 * @info: framebuffer affected
1606 * @state: 0 = resuming, !=0 = suspending
1608 * This is meant to be used by low level drivers to
1609 * signal suspend/resume to the core & clients.
1610 * It must be called with the console semaphore held
1612 void fb_set_suspend(struct fb_info *info, int state)
1614 WARN_CONSOLE_UNLOCKED();
1617 fbcon_suspended(info);
1618 info->state = FBINFO_STATE_SUSPENDED;
1620 info->state = FBINFO_STATE_RUNNING;
1621 fbcon_resumed(info);
1624 EXPORT_SYMBOL(fb_set_suspend);
1627 * fbmem_init - init frame buffer subsystem
1629 * Initialize the frame buffer subsystem.
1631 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1640 if (!proc_create_seq("fb", 0, NULL, &proc_fb_seq_ops))
1643 ret = register_chrdev(FB_MAJOR, "fb", &fb_fops);
1645 printk("unable to get major %d for fb devs\n", FB_MAJOR);
1649 fb_class = class_create("graphics");
1650 if (IS_ERR(fb_class)) {
1651 ret = PTR_ERR(fb_class);
1652 pr_warn("Unable to create fb class; errno = %d\n", ret);
1662 unregister_chrdev(FB_MAJOR, "fb");
1664 remove_proc_entry("fb", NULL);
1669 module_init(fbmem_init);
1675 remove_proc_entry("fb", NULL);
1676 class_destroy(fb_class);
1677 unregister_chrdev(FB_MAJOR, "fb");
1680 module_exit(fbmem_exit);
1681 MODULE_LICENSE("GPL");
1682 MODULE_DESCRIPTION("Framebuffer base");
1684 subsys_initcall(fbmem_init);
1687 int fb_new_modelist(struct fb_info *info)
1689 struct fb_var_screeninfo var = info->var;
1690 struct list_head *pos, *n;
1691 struct fb_modelist *modelist;
1692 struct fb_videomode *m, mode;
1695 list_for_each_safe(pos, n, &info->modelist) {
1696 modelist = list_entry(pos, struct fb_modelist, list);
1697 m = &modelist->mode;
1698 fb_videomode_to_var(&var, m);
1699 var.activate = FB_ACTIVATE_TEST;
1700 err = fb_set_var(info, &var);
1701 fb_var_to_videomode(&mode, &var);
1702 if (err || !fb_mode_is_equal(m, &mode)) {
1708 if (list_empty(&info->modelist))
1711 fbcon_new_modelist(info);
1716 #if defined(CONFIG_VIDEO_NOMODESET)
1717 bool fb_modesetting_disabled(const char *drvname)
1719 bool fwonly = video_firmware_drivers_only();
1722 pr_warn("Driver %s not loading because of nomodeset parameter\n",
1727 EXPORT_SYMBOL(fb_modesetting_disabled);
1730 MODULE_LICENSE("GPL");