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/config.h>
15 #include <linux/module.h>
17 #include <linux/compat.h>
18 #include <linux/types.h>
19 #include <linux/errno.h>
20 #include <linux/sched.h>
21 #include <linux/smp_lock.h>
22 #include <linux/kernel.h>
23 #include <linux/major.h>
24 #include <linux/slab.h>
26 #include <linux/mman.h>
27 #include <linux/tty.h>
28 #include <linux/init.h>
29 #include <linux/linux_logo.h>
30 #include <linux/proc_fs.h>
31 #include <linux/console.h>
33 #include <linux/kmod.h>
35 #include <linux/devfs_fs_kernel.h>
36 #include <linux/err.h>
37 #include <linux/kernel.h>
38 #include <linux/device.h>
39 #include <linux/efi.h>
41 #if defined(__mc68000__) || defined(CONFIG_APUS)
42 #include <asm/setup.h>
46 #include <asm/uaccess.h>
48 #include <asm/pgtable.h>
53 * Frame buffer device initialization and setup routines
56 #define FBPIXMAPSIZE (1024 * 8)
58 static BLOCKING_NOTIFIER_HEAD(fb_notifier_list);
59 struct fb_info *registered_fb[FB_MAX];
60 int num_registered_fb;
66 int fb_get_color_depth(struct fb_var_screeninfo *var,
67 struct fb_fix_screeninfo *fix)
71 if (fix->visual == FB_VISUAL_MONO01 ||
72 fix->visual == FB_VISUAL_MONO10)
75 if (var->green.length == var->blue.length &&
76 var->green.length == var->red.length &&
77 var->green.offset == var->blue.offset &&
78 var->green.offset == var->red.offset)
79 depth = var->green.length;
81 depth = var->green.length + var->red.length +
87 EXPORT_SYMBOL(fb_get_color_depth);
90 * Data padding functions.
92 void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height)
94 __fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height);
96 EXPORT_SYMBOL(fb_pad_aligned_buffer);
98 void fb_pad_unaligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 idx, u32 height,
99 u32 shift_high, u32 shift_low, u32 mod)
101 u8 mask = (u8) (0xfff << shift_high), tmp;
104 for (i = height; i--; ) {
105 for (j = 0; j < idx; j++) {
108 tmp |= *src >> shift_low;
110 tmp = *src << shift_high;
116 tmp |= *src >> shift_low;
118 if (shift_high < mod) {
119 tmp = *src << shift_high;
126 EXPORT_SYMBOL(fb_pad_unaligned_buffer);
129 * we need to lock this section since fb_cursor
130 * may use fb_imageblit()
132 char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size)
134 u32 align = buf->buf_align - 1, offset;
135 char *addr = buf->addr;
137 /* If IO mapped, we need to sync before access, no sharing of
140 if (buf->flags & FB_PIXMAP_IO) {
141 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
142 info->fbops->fb_sync(info);
146 /* See if we fit in the remaining pixmap space */
147 offset = buf->offset + align;
149 if (offset + size > buf->size) {
150 /* We do not fit. In order to be able to re-use the buffer,
151 * we must ensure no asynchronous DMA'ing or whatever operation
152 * is in progress, we sync for that.
154 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
155 info->fbops->fb_sync(info);
158 buf->offset = offset + size;
165 #include <linux/linux_logo.h>
167 static inline unsigned safe_shift(unsigned d, int n)
169 return n < 0 ? d >> -n : d << n;
172 static void fb_set_logocmap(struct fb_info *info,
173 const struct linux_logo *logo)
175 struct fb_cmap palette_cmap;
176 u16 palette_green[16];
177 u16 palette_blue[16];
180 const unsigned char *clut = logo->clut;
182 palette_cmap.start = 0;
183 palette_cmap.len = 16;
184 palette_cmap.red = palette_red;
185 palette_cmap.green = palette_green;
186 palette_cmap.blue = palette_blue;
187 palette_cmap.transp = NULL;
189 for (i = 0; i < logo->clutsize; i += n) {
190 n = logo->clutsize - i;
191 /* palette_cmap provides space for only 16 colors at once */
194 palette_cmap.start = 32 + i;
195 palette_cmap.len = n;
196 for (j = 0; j < n; ++j) {
197 palette_cmap.red[j] = clut[0] << 8 | clut[0];
198 palette_cmap.green[j] = clut[1] << 8 | clut[1];
199 palette_cmap.blue[j] = clut[2] << 8 | clut[2];
202 fb_set_cmap(&palette_cmap, info);
206 static void fb_set_logo_truepalette(struct fb_info *info,
207 const struct linux_logo *logo,
210 unsigned char mask[9] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
211 unsigned char redmask, greenmask, bluemask;
212 int redshift, greenshift, blueshift;
214 const unsigned char *clut = logo->clut;
217 * We have to create a temporary palette since console palette is only
220 /* Bug: Doesn't obey msb_right ... (who needs that?) */
221 redmask = mask[info->var.red.length < 8 ? info->var.red.length : 8];
222 greenmask = mask[info->var.green.length < 8 ? info->var.green.length : 8];
223 bluemask = mask[info->var.blue.length < 8 ? info->var.blue.length : 8];
224 redshift = info->var.red.offset - (8 - info->var.red.length);
225 greenshift = info->var.green.offset - (8 - info->var.green.length);
226 blueshift = info->var.blue.offset - (8 - info->var.blue.length);
228 for ( i = 0; i < logo->clutsize; i++) {
229 palette[i+32] = (safe_shift((clut[0] & redmask), redshift) |
230 safe_shift((clut[1] & greenmask), greenshift) |
231 safe_shift((clut[2] & bluemask), blueshift));
236 static void fb_set_logo_directpalette(struct fb_info *info,
237 const struct linux_logo *logo,
240 int redshift, greenshift, blueshift;
243 redshift = info->var.red.offset;
244 greenshift = info->var.green.offset;
245 blueshift = info->var.blue.offset;
247 for (i = 32; i < logo->clutsize; i++)
248 palette[i] = i << redshift | i << greenshift | i << blueshift;
251 static void fb_set_logo(struct fb_info *info,
252 const struct linux_logo *logo, u8 *dst,
256 const u8 *src = logo->data;
257 u8 xor = (info->fix.visual == FB_VISUAL_MONO01) ? 0xff : 0;
260 if (fb_get_color_depth(&info->var, &info->fix) == 3)
263 if (info->fix.visual == FB_VISUAL_MONO01 ||
264 info->fix.visual == FB_VISUAL_MONO10)
265 fg = ~((u8) (0xfff << info->var.green.length));
269 for (i = 0; i < logo->height; i++)
270 for (j = 0; j < logo->width; src++) {
273 if (j < logo->width) {
274 *dst++ = *src & 0x0f;
280 for (i = 0; i < logo->height; i++) {
281 for (j = 0; j < logo->width; src++) {
283 for (k = 7; k >= 0; k--) {
284 *dst++ = ((d >> k) & 1) ? fg : 0;
294 * Three (3) kinds of logo maps exist. linux_logo_clut224 (>16 colors),
295 * linux_logo_vga16 (16 colors) and linux_logo_mono (2 colors). Depending on
296 * the visual format and color depth of the framebuffer, the DAC, the
297 * pseudo_palette, and the logo data will be adjusted accordingly.
299 * Case 1 - linux_logo_clut224:
300 * Color exceeds the number of console colors (16), thus we set the hardware DAC
301 * using fb_set_cmap() appropriately. The "needs_cmapreset" flag will be set.
303 * For visuals that require color info from the pseudo_palette, we also construct
304 * one for temporary use. The "needs_directpalette" or "needs_truepalette" flags
307 * Case 2 - linux_logo_vga16:
308 * The number of colors just matches the console colors, thus there is no need
309 * to set the DAC or the pseudo_palette. However, the bitmap is packed, ie,
310 * each byte contains color information for two pixels (upper and lower nibble).
311 * To be consistent with fb_imageblit() usage, we therefore separate the two
312 * nibbles into separate bytes. The "depth" flag will be set to 4.
314 * Case 3 - linux_logo_mono:
315 * This is similar with Case 2. Each byte contains information for 8 pixels.
316 * We isolate each bit and expand each into a byte. The "depth" flag will
319 static struct logo_data {
321 int needs_directpalette;
322 int needs_truepalette;
324 const struct linux_logo *logo;
327 static void fb_rotate_logo_ud(const u8 *in, u8 *out, u32 width, u32 height)
329 u32 size = width * height, i;
333 for (i = size; i--; )
337 static void fb_rotate_logo_cw(const u8 *in, u8 *out, u32 width, u32 height)
339 int i, j, w = width - 1;
341 for (i = 0; i < height; i++)
342 for (j = 0; j < width; j++)
343 out[height * j + w - i] = *in++;
346 static void fb_rotate_logo_ccw(const u8 *in, u8 *out, u32 width, u32 height)
348 int i, j, w = width - 1;
350 for (i = 0; i < height; i++)
351 for (j = 0; j < width; j++)
352 out[height * (w - j) + i] = *in++;
355 static void fb_rotate_logo(struct fb_info *info, u8 *dst,
356 struct fb_image *image, int rotate)
360 if (rotate == FB_ROTATE_UD) {
361 image->dx = info->var.xres - image->width;
362 image->dy = info->var.yres - image->height;
363 fb_rotate_logo_ud(image->data, dst, image->width,
365 } else if (rotate == FB_ROTATE_CW) {
367 image->width = image->height;
369 image->dx = info->var.xres - image->height;
370 fb_rotate_logo_cw(image->data, dst, image->width,
372 } else if (rotate == FB_ROTATE_CCW) {
374 image->width = image->height;
376 image->dy = info->var.yres - image->width;
377 fb_rotate_logo_ccw(image->data, dst, image->width,
384 static void fb_do_show_logo(struct fb_info *info, struct fb_image *image,
389 if (rotate == FB_ROTATE_UR) {
390 for (x = 0; x < num_online_cpus() &&
391 x * (fb_logo.logo->width + 8) <=
392 info->var.xres - fb_logo.logo->width; x++) {
393 info->fbops->fb_imageblit(info, image);
394 image->dx += fb_logo.logo->width + 8;
396 } else if (rotate == FB_ROTATE_UD) {
397 for (x = 0; x < num_online_cpus() &&
398 x * (fb_logo.logo->width + 8) <=
399 info->var.xres - fb_logo.logo->width; x++) {
400 info->fbops->fb_imageblit(info, image);
401 image->dx -= fb_logo.logo->width + 8;
403 } else if (rotate == FB_ROTATE_CW) {
404 for (x = 0; x < num_online_cpus() &&
405 x * (fb_logo.logo->width + 8) <=
406 info->var.yres - fb_logo.logo->width; x++) {
407 info->fbops->fb_imageblit(info, image);
408 image->dy += fb_logo.logo->width + 8;
410 } else if (rotate == FB_ROTATE_CCW) {
411 for (x = 0; x < num_online_cpus() &&
412 x * (fb_logo.logo->width + 8) <=
413 info->var.yres - fb_logo.logo->width; x++) {
414 info->fbops->fb_imageblit(info, image);
415 image->dy -= fb_logo.logo->width + 8;
420 int fb_prepare_logo(struct fb_info *info, int rotate)
422 int depth = fb_get_color_depth(&info->var, &info->fix);
425 memset(&fb_logo, 0, sizeof(struct logo_data));
427 if (info->flags & FBINFO_MISC_TILEBLITTING)
430 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
431 depth = info->var.blue.length;
432 if (info->var.red.length < depth)
433 depth = info->var.red.length;
434 if (info->var.green.length < depth)
435 depth = info->var.green.length;
438 if (info->fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR) {
439 /* assume console colormap */
444 switch (info->fix.visual) {
445 case FB_VISUAL_TRUECOLOR:
446 fb_logo.needs_truepalette = 1;
448 case FB_VISUAL_DIRECTCOLOR:
449 fb_logo.needs_directpalette = 1;
450 fb_logo.needs_cmapreset = 1;
452 case FB_VISUAL_PSEUDOCOLOR:
453 fb_logo.needs_cmapreset = 1;
458 /* Return if no suitable logo was found */
459 fb_logo.logo = fb_find_logo(depth);
465 if (rotate == FB_ROTATE_UR || rotate == FB_ROTATE_UD)
466 yres = info->var.yres;
468 yres = info->var.xres;
470 if (fb_logo.logo->height > yres) {
475 /* What depth we asked for might be different from what we get */
476 if (fb_logo.logo->type == LINUX_LOGO_CLUT224)
478 else if (fb_logo.logo->type == LINUX_LOGO_VGA16)
482 return fb_logo.logo->height;
485 int fb_show_logo(struct fb_info *info, int rotate)
487 u32 *palette = NULL, *saved_pseudo_palette = NULL;
488 unsigned char *logo_new = NULL, *logo_rotate = NULL;
489 struct fb_image image;
491 /* Return if the frame buffer is not mapped or suspended */
492 if (fb_logo.logo == NULL || info->state != FBINFO_STATE_RUNNING)
496 image.data = fb_logo.logo->data;
498 if (fb_logo.needs_cmapreset)
499 fb_set_logocmap(info, fb_logo.logo);
501 if (fb_logo.needs_truepalette ||
502 fb_logo.needs_directpalette) {
503 palette = kmalloc(256 * 4, GFP_KERNEL);
507 if (fb_logo.needs_truepalette)
508 fb_set_logo_truepalette(info, fb_logo.logo, palette);
510 fb_set_logo_directpalette(info, fb_logo.logo, palette);
512 saved_pseudo_palette = info->pseudo_palette;
513 info->pseudo_palette = palette;
516 if (fb_logo.depth <= 4) {
517 logo_new = kmalloc(fb_logo.logo->width * fb_logo.logo->height,
519 if (logo_new == NULL) {
521 if (saved_pseudo_palette)
522 info->pseudo_palette = saved_pseudo_palette;
525 image.data = logo_new;
526 fb_set_logo(info, fb_logo.logo, logo_new, fb_logo.depth);
531 image.width = fb_logo.logo->width;
532 image.height = fb_logo.logo->height;
535 logo_rotate = kmalloc(fb_logo.logo->width *
536 fb_logo.logo->height, GFP_KERNEL);
538 fb_rotate_logo(info, logo_rotate, &image, rotate);
541 fb_do_show_logo(info, &image, rotate);
544 if (saved_pseudo_palette != NULL)
545 info->pseudo_palette = saved_pseudo_palette;
548 return fb_logo.logo->height;
551 int fb_prepare_logo(struct fb_info *info, int rotate) { return 0; }
552 int fb_show_logo(struct fb_info *info, int rotate) { return 0; }
553 #endif /* CONFIG_LOGO */
555 static int fbmem_read_proc(char *buf, char **start, off_t offset,
556 int len, int *eof, void *private)
562 for (fi = registered_fb; fi < ®istered_fb[FB_MAX] && len < 4000; fi++)
564 clen += sprintf(buf + clen, "%d %s\n",
567 *start = buf + offset;
572 return clen < len ? clen : len;
576 fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
578 unsigned long p = *ppos;
579 struct inode *inode = file->f_dentry->d_inode;
580 int fbidx = iminor(inode);
581 struct fb_info *info = registered_fb[fbidx];
584 int c, i, cnt = 0, err = 0;
585 unsigned long total_size;
587 if (!info || ! info->screen_base)
590 if (info->state != FBINFO_STATE_RUNNING)
593 if (info->fbops->fb_read)
594 return info->fbops->fb_read(file, buf, count, ppos);
596 total_size = info->screen_size;
599 total_size = info->fix.smem_len;
604 if (count >= total_size)
607 if (count + p > total_size)
608 count = total_size - p;
610 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
615 src = (u32 __iomem *) (info->screen_base + p);
617 if (info->fbops->fb_sync)
618 info->fbops->fb_sync(info);
621 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
623 for (i = c >> 2; i--; )
624 *dst++ = fb_readl(src++);
626 u8 *dst8 = (u8 *) dst;
627 u8 __iomem *src8 = (u8 __iomem *) src;
629 for (i = c & 3; i--;)
630 *dst8++ = fb_readb(src8++);
632 src = (u32 __iomem *) src8;
635 if (copy_to_user(buf, buffer, c)) {
647 return (err) ? err : cnt;
651 fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
653 unsigned long p = *ppos;
654 struct inode *inode = file->f_dentry->d_inode;
655 int fbidx = iminor(inode);
656 struct fb_info *info = registered_fb[fbidx];
659 int c, i, cnt = 0, err = 0;
660 unsigned long total_size;
662 if (!info || !info->screen_base)
665 if (info->state != FBINFO_STATE_RUNNING)
668 if (info->fbops->fb_write)
669 return info->fbops->fb_write(file, buf, count, ppos);
671 total_size = info->screen_size;
674 total_size = info->fix.smem_len;
679 if (count >= total_size)
682 if (count + p > total_size)
683 count = total_size - p;
685 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
690 dst = (u32 __iomem *) (info->screen_base + p);
692 if (info->fbops->fb_sync)
693 info->fbops->fb_sync(info);
696 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
699 if (copy_from_user(src, buf, c)) {
704 for (i = c >> 2; i--; )
705 fb_writel(*src++, dst++);
708 u8 *src8 = (u8 *) src;
709 u8 __iomem *dst8 = (u8 __iomem *) dst;
711 for (i = c & 3; i--; )
712 fb_writeb(*src8++, dst8++);
714 dst = (u32 __iomem *) dst8;
725 return (err) ? err : cnt;
729 static void try_to_load(int fb)
731 request_module("fb%d", fb);
733 #endif /* CONFIG_KMOD */
736 fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var)
738 struct fb_fix_screeninfo *fix = &info->fix;
739 int xoffset = var->xoffset;
740 int yoffset = var->yoffset;
741 int err = 0, yres = info->var.yres;
743 if (var->yoffset > 0) {
744 if (var->vmode & FB_VMODE_YWRAP) {
745 if (!fix->ywrapstep || (var->yoffset % fix->ywrapstep))
749 } else if (!fix->ypanstep || (var->yoffset % fix->ypanstep))
753 if (var->xoffset > 0 && (!fix->xpanstep ||
754 (var->xoffset % fix->xpanstep)))
757 if (err || !info->fbops->fb_pan_display || xoffset < 0 ||
758 yoffset < 0 || var->yoffset + yres > info->var.yres_virtual ||
759 var->xoffset + info->var.xres > info->var.xres_virtual)
762 if ((err = info->fbops->fb_pan_display(var, info)))
764 info->var.xoffset = var->xoffset;
765 info->var.yoffset = var->yoffset;
766 if (var->vmode & FB_VMODE_YWRAP)
767 info->var.vmode |= FB_VMODE_YWRAP;
769 info->var.vmode &= ~FB_VMODE_YWRAP;
774 fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var)
776 int err, flags = info->flags;
778 if (var->activate & FB_ACTIVATE_INV_MODE) {
779 struct fb_videomode mode1, mode2;
782 fb_var_to_videomode(&mode1, var);
783 fb_var_to_videomode(&mode2, &info->var);
784 /* make sure we don't delete the videomode of current var */
785 ret = fb_mode_is_equal(&mode1, &mode2);
788 struct fb_event event;
792 ret = blocking_notifier_call_chain(&fb_notifier_list,
793 FB_EVENT_MODE_DELETE, &event);
797 fb_delete_videomode(&mode1, &info->modelist);
802 if ((var->activate & FB_ACTIVATE_FORCE) ||
803 memcmp(&info->var, var, sizeof(struct fb_var_screeninfo))) {
804 if (!info->fbops->fb_check_var) {
809 if ((err = info->fbops->fb_check_var(var, info)))
812 if ((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) {
813 struct fb_videomode mode;
817 if (info->fbops->fb_set_par)
818 info->fbops->fb_set_par(info);
820 fb_pan_display(info, &info->var);
822 fb_set_cmap(&info->cmap, info);
824 fb_var_to_videomode(&mode, &info->var);
826 if (info->modelist.prev && info->modelist.next &&
827 !list_empty(&info->modelist))
828 err = fb_add_videomode(&mode, &info->modelist);
830 if (!err && (flags & FBINFO_MISC_USEREVENT)) {
831 struct fb_event event;
832 int evnt = (var->activate & FB_ACTIVATE_ALL) ?
833 FB_EVENT_MODE_CHANGE_ALL :
834 FB_EVENT_MODE_CHANGE;
836 info->flags &= ~FBINFO_MISC_USEREVENT;
838 blocking_notifier_call_chain(&fb_notifier_list,
847 fb_blank(struct fb_info *info, int blank)
851 if (blank > FB_BLANK_POWERDOWN)
852 blank = FB_BLANK_POWERDOWN;
854 if (info->fbops->fb_blank)
855 ret = info->fbops->fb_blank(blank, info);
858 struct fb_event event;
862 blocking_notifier_call_chain(&fb_notifier_list,
863 FB_EVENT_BLANK, &event);
870 fb_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
873 int fbidx = iminor(inode);
874 struct fb_info *info = registered_fb[fbidx];
875 struct fb_ops *fb = info->fbops;
876 struct fb_var_screeninfo var;
877 struct fb_fix_screeninfo fix;
878 struct fb_con2fbmap con2fb;
879 struct fb_cmap_user cmap;
880 struct fb_event event;
881 void __user *argp = (void __user *)arg;
887 case FBIOGET_VSCREENINFO:
888 return copy_to_user(argp, &info->var,
889 sizeof(var)) ? -EFAULT : 0;
890 case FBIOPUT_VSCREENINFO:
891 if (copy_from_user(&var, argp, sizeof(var)))
893 acquire_console_sem();
894 info->flags |= FBINFO_MISC_USEREVENT;
895 i = fb_set_var(info, &var);
896 info->flags &= ~FBINFO_MISC_USEREVENT;
897 release_console_sem();
899 if (copy_to_user(argp, &var, sizeof(var)))
902 case FBIOGET_FSCREENINFO:
903 return copy_to_user(argp, &info->fix,
904 sizeof(fix)) ? -EFAULT : 0;
906 if (copy_from_user(&cmap, argp, sizeof(cmap)))
908 return (fb_set_user_cmap(&cmap, info));
910 if (copy_from_user(&cmap, argp, sizeof(cmap)))
912 return fb_cmap_to_user(&info->cmap, &cmap);
913 case FBIOPAN_DISPLAY:
914 if (copy_from_user(&var, argp, sizeof(var)))
916 acquire_console_sem();
917 i = fb_pan_display(info, &var);
918 release_console_sem();
921 if (copy_to_user(argp, &var, sizeof(var)))
926 case FBIOGET_CON2FBMAP:
927 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
929 if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
931 con2fb.framebuffer = -1;
933 event.data = &con2fb;
934 blocking_notifier_call_chain(&fb_notifier_list,
935 FB_EVENT_GET_CONSOLE_MAP, &event);
936 return copy_to_user(argp, &con2fb,
937 sizeof(con2fb)) ? -EFAULT : 0;
938 case FBIOPUT_CON2FBMAP:
939 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
941 if (con2fb.console < 0 || con2fb.console > MAX_NR_CONSOLES)
943 if (con2fb.framebuffer < 0 || con2fb.framebuffer >= FB_MAX)
946 if (!registered_fb[con2fb.framebuffer])
947 try_to_load(con2fb.framebuffer);
948 #endif /* CONFIG_KMOD */
949 if (!registered_fb[con2fb.framebuffer])
952 event.data = &con2fb;
953 return blocking_notifier_call_chain(&fb_notifier_list,
954 FB_EVENT_SET_CONSOLE_MAP,
957 acquire_console_sem();
958 info->flags |= FBINFO_MISC_USEREVENT;
959 i = fb_blank(info, arg);
960 info->flags &= ~FBINFO_MISC_USEREVENT;
961 release_console_sem();
964 if (fb->fb_ioctl == NULL)
966 return fb->fb_ioctl(info, cmd, arg);
971 struct fb_fix_screeninfo32 {
973 compat_caddr_t smem_start;
982 compat_caddr_t mmio_start;
992 compat_caddr_t green;
994 compat_caddr_t transp;
997 static int fb_getput_cmap(struct inode *inode, struct file *file,
998 unsigned int cmd, unsigned long arg)
1000 struct fb_cmap_user __user *cmap;
1001 struct fb_cmap32 __user *cmap32;
1005 cmap = compat_alloc_user_space(sizeof(*cmap));
1006 cmap32 = compat_ptr(arg);
1008 if (copy_in_user(&cmap->start, &cmap32->start, 2 * sizeof(__u32)))
1011 if (get_user(data, &cmap32->red) ||
1012 put_user(compat_ptr(data), &cmap->red) ||
1013 get_user(data, &cmap32->green) ||
1014 put_user(compat_ptr(data), &cmap->green) ||
1015 get_user(data, &cmap32->blue) ||
1016 put_user(compat_ptr(data), &cmap->blue) ||
1017 get_user(data, &cmap32->transp) ||
1018 put_user(compat_ptr(data), &cmap->transp))
1021 err = fb_ioctl(inode, file, cmd, (unsigned long) cmap);
1024 if (copy_in_user(&cmap32->start,
1032 static int do_fscreeninfo_to_user(struct fb_fix_screeninfo *fix,
1033 struct fb_fix_screeninfo32 __user *fix32)
1038 err = copy_to_user(&fix32->id, &fix->id, sizeof(fix32->id));
1040 data = (__u32) (unsigned long) fix->smem_start;
1041 err |= put_user(data, &fix32->smem_start);
1043 err |= put_user(fix->smem_len, &fix32->smem_len);
1044 err |= put_user(fix->type, &fix32->type);
1045 err |= put_user(fix->type_aux, &fix32->type_aux);
1046 err |= put_user(fix->visual, &fix32->visual);
1047 err |= put_user(fix->xpanstep, &fix32->xpanstep);
1048 err |= put_user(fix->ypanstep, &fix32->ypanstep);
1049 err |= put_user(fix->ywrapstep, &fix32->ywrapstep);
1050 err |= put_user(fix->line_length, &fix32->line_length);
1052 data = (__u32) (unsigned long) fix->mmio_start;
1053 err |= put_user(data, &fix32->mmio_start);
1055 err |= put_user(fix->mmio_len, &fix32->mmio_len);
1056 err |= put_user(fix->accel, &fix32->accel);
1057 err |= copy_to_user(fix32->reserved, fix->reserved,
1058 sizeof(fix->reserved));
1063 static int fb_get_fscreeninfo(struct inode *inode, struct file *file,
1064 unsigned int cmd, unsigned long arg)
1066 mm_segment_t old_fs;
1067 struct fb_fix_screeninfo fix;
1068 struct fb_fix_screeninfo32 __user *fix32;
1071 fix32 = compat_ptr(arg);
1075 err = fb_ioctl(inode, file, cmd, (unsigned long) &fix);
1079 err = do_fscreeninfo_to_user(&fix, fix32);
1085 fb_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1087 struct inode *inode = file->f_dentry->d_inode;
1088 int fbidx = iminor(inode);
1089 struct fb_info *info = registered_fb[fbidx];
1090 struct fb_ops *fb = info->fbops;
1091 long ret = -ENOIOCTLCMD;
1095 case FBIOGET_VSCREENINFO:
1096 case FBIOPUT_VSCREENINFO:
1097 case FBIOPAN_DISPLAY:
1098 case FBIOGET_CON2FBMAP:
1099 case FBIOPUT_CON2FBMAP:
1100 arg = (unsigned long) compat_ptr(arg);
1102 ret = fb_ioctl(inode, file, cmd, arg);
1105 case FBIOGET_FSCREENINFO:
1106 ret = fb_get_fscreeninfo(inode, file, cmd, arg);
1111 ret = fb_getput_cmap(inode, file, cmd, arg);
1115 if (fb->fb_compat_ioctl)
1116 ret = fb->fb_compat_ioctl(info, cmd, arg);
1125 fb_mmap(struct file *file, struct vm_area_struct * vma)
1127 int fbidx = iminor(file->f_dentry->d_inode);
1128 struct fb_info *info = registered_fb[fbidx];
1129 struct fb_ops *fb = info->fbops;
1131 #if !defined(__sparc__) || defined(__sparc_v9__)
1132 unsigned long start;
1136 if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT))
1138 off = vma->vm_pgoff << PAGE_SHIFT;
1144 res = fb->fb_mmap(info, vma);
1149 #if defined(__sparc__) && !defined(__sparc_v9__)
1150 /* Should never get here, all fb drivers should have their own
1157 /* frame buffer memory */
1158 start = info->fix.smem_start;
1159 len = PAGE_ALIGN((start & ~PAGE_MASK) + info->fix.smem_len);
1161 /* memory mapped io */
1163 if (info->var.accel_flags) {
1167 start = info->fix.mmio_start;
1168 len = PAGE_ALIGN((start & ~PAGE_MASK) + info->fix.mmio_len);
1172 if ((vma->vm_end - vma->vm_start + off) > len)
1175 vma->vm_pgoff = off >> PAGE_SHIFT;
1176 /* This is an IO map - tell maydump to skip this VMA */
1177 vma->vm_flags |= VM_IO | VM_RESERVED;
1178 #if defined(__mc68000__)
1179 #if defined(CONFIG_SUN3)
1180 pgprot_val(vma->vm_page_prot) |= SUN3_PAGE_NOCACHE;
1181 #elif defined(CONFIG_MMU)
1182 if (CPU_IS_020_OR_030)
1183 pgprot_val(vma->vm_page_prot) |= _PAGE_NOCACHE030;
1184 if (CPU_IS_040_OR_060) {
1185 pgprot_val(vma->vm_page_prot) &= _CACHEMASK040;
1186 /* Use no-cache mode, serialized */
1187 pgprot_val(vma->vm_page_prot) |= _PAGE_NOCACHE_S;
1190 #elif defined(__powerpc__)
1191 vma->vm_page_prot = phys_mem_access_prot(file, off >> PAGE_SHIFT,
1192 vma->vm_end - vma->vm_start,
1194 #elif defined(__alpha__)
1195 /* Caching is off in the I/O space quadrant by design. */
1196 #elif defined(__i386__) || defined(__x86_64__)
1197 if (boot_cpu_data.x86 > 3)
1198 pgprot_val(vma->vm_page_prot) |= _PAGE_PCD;
1199 #elif defined(__mips__) || defined(__sparc_v9__)
1200 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1201 #elif defined(__hppa__)
1202 pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE;
1203 #elif defined(__arm__) || defined(__sh__) || defined(__m32r__)
1204 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
1205 #elif defined(__ia64__)
1206 if (efi_range_is_wc(vma->vm_start, vma->vm_end - vma->vm_start))
1207 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
1209 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
1211 #warning What do we have to do here??
1213 if (io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT,
1214 vma->vm_end - vma->vm_start, vma->vm_page_prot))
1217 #endif /* !sparc32 */
1221 fb_open(struct inode *inode, struct file *file)
1223 int fbidx = iminor(inode);
1224 struct fb_info *info;
1227 if (fbidx >= FB_MAX)
1230 if (!(info = registered_fb[fbidx]))
1232 #endif /* CONFIG_KMOD */
1233 if (!(info = registered_fb[fbidx]))
1235 if (!try_module_get(info->fbops->owner))
1237 file->private_data = info;
1238 if (info->fbops->fb_open) {
1239 res = info->fbops->fb_open(info,1);
1241 module_put(info->fbops->owner);
1247 fb_release(struct inode *inode, struct file *file)
1249 struct fb_info * const info = file->private_data;
1252 if (info->fbops->fb_release)
1253 info->fbops->fb_release(info,1);
1254 module_put(info->fbops->owner);
1259 static struct file_operations fb_fops = {
1260 .owner = THIS_MODULE,
1264 #ifdef CONFIG_COMPAT
1265 .compat_ioctl = fb_compat_ioctl,
1269 .release = fb_release,
1270 #ifdef HAVE_ARCH_FB_UNMAPPED_AREA
1271 .get_unmapped_area = get_fb_unmapped_area,
1275 static struct class *fb_class;
1278 * register_framebuffer - registers a frame buffer device
1279 * @fb_info: frame buffer info structure
1281 * Registers a frame buffer device @fb_info.
1283 * Returns negative errno on error, or zero for success.
1288 register_framebuffer(struct fb_info *fb_info)
1291 struct fb_event event;
1292 struct fb_videomode mode;
1294 if (num_registered_fb == FB_MAX)
1296 num_registered_fb++;
1297 for (i = 0 ; i < FB_MAX; i++)
1298 if (!registered_fb[i])
1302 fb_info->class_device = class_device_create(fb_class, NULL, MKDEV(FB_MAJOR, i),
1303 fb_info->device, "fb%d", i);
1304 if (IS_ERR(fb_info->class_device)) {
1306 printk(KERN_WARNING "Unable to create class_device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->class_device));
1307 fb_info->class_device = NULL;
1309 fb_init_class_device(fb_info);
1311 if (fb_info->pixmap.addr == NULL) {
1312 fb_info->pixmap.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL);
1313 if (fb_info->pixmap.addr) {
1314 fb_info->pixmap.size = FBPIXMAPSIZE;
1315 fb_info->pixmap.buf_align = 1;
1316 fb_info->pixmap.scan_align = 1;
1317 fb_info->pixmap.access_align = 32;
1318 fb_info->pixmap.flags = FB_PIXMAP_DEFAULT;
1321 fb_info->pixmap.offset = 0;
1323 if (!fb_info->modelist.prev || !fb_info->modelist.next)
1324 INIT_LIST_HEAD(&fb_info->modelist);
1326 fb_var_to_videomode(&mode, &fb_info->var);
1327 fb_add_videomode(&mode, &fb_info->modelist);
1328 registered_fb[i] = fb_info;
1330 devfs_mk_cdev(MKDEV(FB_MAJOR, i),
1331 S_IFCHR | S_IRUGO | S_IWUGO, "fb/%d", i);
1332 event.info = fb_info;
1333 blocking_notifier_call_chain(&fb_notifier_list,
1334 FB_EVENT_FB_REGISTERED, &event);
1340 * unregister_framebuffer - releases a frame buffer device
1341 * @fb_info: frame buffer info structure
1343 * Unregisters a frame buffer device @fb_info.
1345 * Returns negative errno on error, or zero for success.
1350 unregister_framebuffer(struct fb_info *fb_info)
1355 if (!registered_fb[i])
1357 devfs_remove("fb/%d", i);
1359 if (fb_info->pixmap.addr && (fb_info->pixmap.flags & FB_PIXMAP_DEFAULT))
1360 kfree(fb_info->pixmap.addr);
1361 fb_destroy_modelist(&fb_info->modelist);
1362 registered_fb[i]=NULL;
1363 num_registered_fb--;
1364 fb_cleanup_class_device(fb_info);
1365 class_device_destroy(fb_class, MKDEV(FB_MAJOR, i));
1370 * fb_register_client - register a client notifier
1371 * @nb: notifier block to callback on events
1373 int fb_register_client(struct notifier_block *nb)
1375 return blocking_notifier_chain_register(&fb_notifier_list, nb);
1379 * fb_unregister_client - unregister a client notifier
1380 * @nb: notifier block to callback on events
1382 int fb_unregister_client(struct notifier_block *nb)
1384 return blocking_notifier_chain_unregister(&fb_notifier_list, nb);
1388 * fb_set_suspend - low level driver signals suspend
1389 * @info: framebuffer affected
1390 * @state: 0 = resuming, !=0 = suspending
1392 * This is meant to be used by low level drivers to
1393 * signal suspend/resume to the core & clients.
1394 * It must be called with the console semaphore held
1396 void fb_set_suspend(struct fb_info *info, int state)
1398 struct fb_event event;
1402 blocking_notifier_call_chain(&fb_notifier_list,
1403 FB_EVENT_SUSPEND, &event);
1404 info->state = FBINFO_STATE_SUSPENDED;
1406 info->state = FBINFO_STATE_RUNNING;
1407 blocking_notifier_call_chain(&fb_notifier_list,
1408 FB_EVENT_RESUME, &event);
1413 * fbmem_init - init frame buffer subsystem
1415 * Initialize the frame buffer subsystem.
1417 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1424 create_proc_read_entry("fb", 0, NULL, fbmem_read_proc, NULL);
1427 if (register_chrdev(FB_MAJOR,"fb",&fb_fops))
1428 printk("unable to get major %d for fb devs\n", FB_MAJOR);
1430 fb_class = class_create(THIS_MODULE, "graphics");
1431 if (IS_ERR(fb_class)) {
1432 printk(KERN_WARNING "Unable to create fb class; errno = %ld\n", PTR_ERR(fb_class));
1439 module_init(fbmem_init);
1443 class_destroy(fb_class);
1444 unregister_chrdev(FB_MAJOR, "fb");
1447 module_exit(fbmem_exit);
1448 MODULE_LICENSE("GPL");
1449 MODULE_DESCRIPTION("Framebuffer base");
1451 subsys_initcall(fbmem_init);
1454 int fb_new_modelist(struct fb_info *info)
1456 struct fb_event event;
1457 struct fb_var_screeninfo var = info->var;
1458 struct list_head *pos, *n;
1459 struct fb_modelist *modelist;
1460 struct fb_videomode *m, mode;
1463 list_for_each_safe(pos, n, &info->modelist) {
1464 modelist = list_entry(pos, struct fb_modelist, list);
1465 m = &modelist->mode;
1466 fb_videomode_to_var(&var, m);
1467 var.activate = FB_ACTIVATE_TEST;
1468 err = fb_set_var(info, &var);
1469 fb_var_to_videomode(&mode, &var);
1470 if (err || !fb_mode_is_equal(m, &mode)) {
1478 if (!list_empty(&info->modelist)) {
1480 err = blocking_notifier_call_chain(&fb_notifier_list,
1481 FB_EVENT_NEW_MODELIST,
1489 * fb_con_duit - user<->fbcon passthrough
1490 * @info: struct fb_info
1491 * @event: notification event to be passed to fbcon
1492 * @data: private data
1495 * This function is an fbcon-user event passing channel
1496 * which bypasses fbdev. This is hopefully temporary
1497 * until a user interface for fbcon is created
1499 int fb_con_duit(struct fb_info *info, int event, void *data)
1501 struct fb_event evnt;
1506 return blocking_notifier_call_chain(&fb_notifier_list, event, &evnt);
1508 EXPORT_SYMBOL(fb_con_duit);
1510 static char *video_options[FB_MAX];
1513 extern const char *global_mode_option;
1516 * fb_get_options - get kernel boot parameters
1517 * @name: framebuffer name as it would appear in
1518 * the boot parameter line
1519 * (video=<name>:<options>)
1520 * @option: the option will be stored here
1522 * NOTE: Needed to maintain backwards compatibility
1524 int fb_get_options(char *name, char **option)
1526 char *opt, *options = NULL;
1527 int opt_len, retval = 0;
1528 int name_len = strlen(name), i;
1530 if (name_len && ofonly && strncmp(name, "offb", 4))
1533 if (name_len && !retval) {
1534 for (i = 0; i < FB_MAX; i++) {
1535 if (video_options[i] == NULL)
1537 opt_len = strlen(video_options[i]);
1540 opt = video_options[i];
1541 if (!strncmp(name, opt, name_len) &&
1542 opt[name_len] == ':')
1543 options = opt + name_len + 1;
1546 if (options && !strncmp(options, "off", 3))
1557 * video_setup - process command line options
1558 * @options: string of options
1560 * Process command line options for frame buffer subsystem.
1562 * NOTE: This function is a __setup and __init function.
1563 * It only stores the options. Drivers have to call
1564 * fb_get_options() as necessary.
1569 static int __init video_setup(char *options)
1573 if (!options || !*options)
1576 if (!global && !strncmp(options, "ofonly", 6)) {
1581 if (!global && !strstr(options, "fb:")) {
1582 global_mode_option = options;
1587 for (i = 0; i < FB_MAX; i++) {
1588 if (video_options[i] == NULL) {
1589 video_options[i] = options;
1598 __setup("video=", video_setup);
1602 * Visible symbols for modules
1605 EXPORT_SYMBOL(register_framebuffer);
1606 EXPORT_SYMBOL(unregister_framebuffer);
1607 EXPORT_SYMBOL(num_registered_fb);
1608 EXPORT_SYMBOL(registered_fb);
1609 EXPORT_SYMBOL(fb_prepare_logo);
1610 EXPORT_SYMBOL(fb_show_logo);
1611 EXPORT_SYMBOL(fb_set_var);
1612 EXPORT_SYMBOL(fb_blank);
1613 EXPORT_SYMBOL(fb_pan_display);
1614 EXPORT_SYMBOL(fb_get_buffer_offset);
1615 EXPORT_SYMBOL(fb_set_suspend);
1616 EXPORT_SYMBOL(fb_register_client);
1617 EXPORT_SYMBOL(fb_unregister_client);
1618 EXPORT_SYMBOL(fb_get_options);
1619 EXPORT_SYMBOL(fb_new_modelist);
1621 MODULE_LICENSE("GPL");