GNU Linux-libre 4.4.283-gnu1
[releases.git] / drivers / video / fbdev / core / fbmem.c
1 /*
2  *  linux/drivers/video/fbmem.c
3  *
4  *  Copyright (C) 1994 Martin Schaller
5  *
6  *      2001 - Documented with DocBook
7  *      - Brad Douglas <brad@neruo.com>
8  *
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
11  * for more details.
12  */
13
14 #include <linux/module.h>
15
16 #include <linux/compat.h>
17 #include <linux/types.h>
18 #include <linux/errno.h>
19 #include <linux/kernel.h>
20 #include <linux/major.h>
21 #include <linux/slab.h>
22 #include <linux/mm.h>
23 #include <linux/mman.h>
24 #include <linux/vt.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>
34 #include <linux/fb.h>
35
36 #include <asm/fb.h>
37
38
39     /*
40      *  Frame buffer device initialization and setup routines
41      */
42
43 #define FBPIXMAPSIZE    (1024 * 8)
44
45 static DEFINE_MUTEX(registration_lock);
46
47 struct fb_info *registered_fb[FB_MAX] __read_mostly;
48 EXPORT_SYMBOL(registered_fb);
49
50 int num_registered_fb __read_mostly;
51 EXPORT_SYMBOL(num_registered_fb);
52
53 static struct fb_info *get_fb_info(unsigned int idx)
54 {
55         struct fb_info *fb_info;
56
57         if (idx >= FB_MAX)
58                 return ERR_PTR(-ENODEV);
59
60         mutex_lock(&registration_lock);
61         fb_info = registered_fb[idx];
62         if (fb_info)
63                 atomic_inc(&fb_info->count);
64         mutex_unlock(&registration_lock);
65
66         return fb_info;
67 }
68
69 static void put_fb_info(struct fb_info *fb_info)
70 {
71         if (!atomic_dec_and_test(&fb_info->count))
72                 return;
73         if (fb_info->fbops->fb_destroy)
74                 fb_info->fbops->fb_destroy(fb_info);
75 }
76
77 int lock_fb_info(struct fb_info *info)
78 {
79         mutex_lock(&info->lock);
80         if (!info->fbops) {
81                 mutex_unlock(&info->lock);
82                 return 0;
83         }
84         return 1;
85 }
86 EXPORT_SYMBOL(lock_fb_info);
87
88 /*
89  * Helpers
90  */
91
92 int fb_get_color_depth(struct fb_var_screeninfo *var,
93                        struct fb_fix_screeninfo *fix)
94 {
95         int depth = 0;
96
97         if (fix->visual == FB_VISUAL_MONO01 ||
98             fix->visual == FB_VISUAL_MONO10)
99                 depth = 1;
100         else {
101                 if (var->green.length == var->blue.length &&
102                     var->green.length == var->red.length &&
103                     var->green.offset == var->blue.offset &&
104                     var->green.offset == var->red.offset)
105                         depth = var->green.length;
106                 else
107                         depth = var->green.length + var->red.length +
108                                 var->blue.length;
109         }
110
111         return depth;
112 }
113 EXPORT_SYMBOL(fb_get_color_depth);
114
115 /*
116  * Data padding functions.
117  */
118 void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height)
119 {
120         __fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height);
121 }
122 EXPORT_SYMBOL(fb_pad_aligned_buffer);
123
124 void fb_pad_unaligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 idx, u32 height,
125                                 u32 shift_high, u32 shift_low, u32 mod)
126 {
127         u8 mask = (u8) (0xfff << shift_high), tmp;
128         int i, j;
129
130         for (i = height; i--; ) {
131                 for (j = 0; j < idx; j++) {
132                         tmp = dst[j];
133                         tmp &= mask;
134                         tmp |= *src >> shift_low;
135                         dst[j] = tmp;
136                         tmp = *src << shift_high;
137                         dst[j+1] = tmp;
138                         src++;
139                 }
140                 tmp = dst[idx];
141                 tmp &= mask;
142                 tmp |= *src >> shift_low;
143                 dst[idx] = tmp;
144                 if (shift_high < mod) {
145                         tmp = *src << shift_high;
146                         dst[idx+1] = tmp;
147                 }
148                 src++;
149                 dst += d_pitch;
150         }
151 }
152 EXPORT_SYMBOL(fb_pad_unaligned_buffer);
153
154 /*
155  * we need to lock this section since fb_cursor
156  * may use fb_imageblit()
157  */
158 char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size)
159 {
160         u32 align = buf->buf_align - 1, offset;
161         char *addr = buf->addr;
162
163         /* If IO mapped, we need to sync before access, no sharing of
164          * the pixmap is done
165          */
166         if (buf->flags & FB_PIXMAP_IO) {
167                 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
168                         info->fbops->fb_sync(info);
169                 return addr;
170         }
171
172         /* See if we fit in the remaining pixmap space */
173         offset = buf->offset + align;
174         offset &= ~align;
175         if (offset + size > buf->size) {
176                 /* We do not fit. In order to be able to re-use the buffer,
177                  * we must ensure no asynchronous DMA'ing or whatever operation
178                  * is in progress, we sync for that.
179                  */
180                 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
181                         info->fbops->fb_sync(info);
182                 offset = 0;
183         }
184         buf->offset = offset + size;
185         addr += offset;
186
187         return addr;
188 }
189 EXPORT_SYMBOL(fb_get_buffer_offset);
190
191 #ifdef CONFIG_LOGO
192
193 static inline unsigned safe_shift(unsigned d, int n)
194 {
195         return n < 0 ? d >> -n : d << n;
196 }
197
198 static void fb_set_logocmap(struct fb_info *info,
199                                    const struct linux_logo *logo)
200 {
201         struct fb_cmap palette_cmap;
202         u16 palette_green[16];
203         u16 palette_blue[16];
204         u16 palette_red[16];
205         int i, j, n;
206         const unsigned char *clut = logo->clut;
207
208         palette_cmap.start = 0;
209         palette_cmap.len = 16;
210         palette_cmap.red = palette_red;
211         palette_cmap.green = palette_green;
212         palette_cmap.blue = palette_blue;
213         palette_cmap.transp = NULL;
214
215         for (i = 0; i < logo->clutsize; i += n) {
216                 n = logo->clutsize - i;
217                 /* palette_cmap provides space for only 16 colors at once */
218                 if (n > 16)
219                         n = 16;
220                 palette_cmap.start = 32 + i;
221                 palette_cmap.len = n;
222                 for (j = 0; j < n; ++j) {
223                         palette_cmap.red[j] = clut[0] << 8 | clut[0];
224                         palette_cmap.green[j] = clut[1] << 8 | clut[1];
225                         palette_cmap.blue[j] = clut[2] << 8 | clut[2];
226                         clut += 3;
227                 }
228                 fb_set_cmap(&palette_cmap, info);
229         }
230 }
231
232 static void  fb_set_logo_truepalette(struct fb_info *info,
233                                             const struct linux_logo *logo,
234                                             u32 *palette)
235 {
236         static const unsigned char mask[] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
237         unsigned char redmask, greenmask, bluemask;
238         int redshift, greenshift, blueshift;
239         int i;
240         const unsigned char *clut = logo->clut;
241
242         /*
243          * We have to create a temporary palette since console palette is only
244          * 16 colors long.
245          */
246         /* Bug: Doesn't obey msb_right ... (who needs that?) */
247         redmask   = mask[info->var.red.length   < 8 ? info->var.red.length   : 8];
248         greenmask = mask[info->var.green.length < 8 ? info->var.green.length : 8];
249         bluemask  = mask[info->var.blue.length  < 8 ? info->var.blue.length  : 8];
250         redshift   = info->var.red.offset   - (8 - info->var.red.length);
251         greenshift = info->var.green.offset - (8 - info->var.green.length);
252         blueshift  = info->var.blue.offset  - (8 - info->var.blue.length);
253
254         for ( i = 0; i < logo->clutsize; i++) {
255                 palette[i+32] = (safe_shift((clut[0] & redmask), redshift) |
256                                  safe_shift((clut[1] & greenmask), greenshift) |
257                                  safe_shift((clut[2] & bluemask), blueshift));
258                 clut += 3;
259         }
260 }
261
262 static void fb_set_logo_directpalette(struct fb_info *info,
263                                              const struct linux_logo *logo,
264                                              u32 *palette)
265 {
266         int redshift, greenshift, blueshift;
267         int i;
268
269         redshift = info->var.red.offset;
270         greenshift = info->var.green.offset;
271         blueshift = info->var.blue.offset;
272
273         for (i = 32; i < 32 + logo->clutsize; i++)
274                 palette[i] = i << redshift | i << greenshift | i << blueshift;
275 }
276
277 static void fb_set_logo(struct fb_info *info,
278                                const struct linux_logo *logo, u8 *dst,
279                                int depth)
280 {
281         int i, j, k;
282         const u8 *src = logo->data;
283         u8 xor = (info->fix.visual == FB_VISUAL_MONO01) ? 0xff : 0;
284         u8 fg = 1, d;
285
286         switch (fb_get_color_depth(&info->var, &info->fix)) {
287         case 1:
288                 fg = 1;
289                 break;
290         case 2:
291                 fg = 3;
292                 break;
293         default:
294                 fg = 7;
295                 break;
296         }
297
298         if (info->fix.visual == FB_VISUAL_MONO01 ||
299             info->fix.visual == FB_VISUAL_MONO10)
300                 fg = ~((u8) (0xfff << info->var.green.length));
301
302         switch (depth) {
303         case 4:
304                 for (i = 0; i < logo->height; i++)
305                         for (j = 0; j < logo->width; src++) {
306                                 *dst++ = *src >> 4;
307                                 j++;
308                                 if (j < logo->width) {
309                                         *dst++ = *src & 0x0f;
310                                         j++;
311                                 }
312                         }
313                 break;
314         case 1:
315                 for (i = 0; i < logo->height; i++) {
316                         for (j = 0; j < logo->width; src++) {
317                                 d = *src ^ xor;
318                                 for (k = 7; k >= 0; k--) {
319                                         *dst++ = ((d >> k) & 1) ? fg : 0;
320                                         j++;
321                                 }
322                         }
323                 }
324                 break;
325         }
326 }
327
328 /*
329  * Three (3) kinds of logo maps exist.  linux_logo_clut224 (>16 colors),
330  * linux_logo_vga16 (16 colors) and linux_logo_mono (2 colors).  Depending on
331  * the visual format and color depth of the framebuffer, the DAC, the
332  * pseudo_palette, and the logo data will be adjusted accordingly.
333  *
334  * Case 1 - linux_logo_clut224:
335  * Color exceeds the number of console colors (16), thus we set the hardware DAC
336  * using fb_set_cmap() appropriately.  The "needs_cmapreset"  flag will be set.
337  *
338  * For visuals that require color info from the pseudo_palette, we also construct
339  * one for temporary use. The "needs_directpalette" or "needs_truepalette" flags
340  * will be set.
341  *
342  * Case 2 - linux_logo_vga16:
343  * The number of colors just matches the console colors, thus there is no need
344  * to set the DAC or the pseudo_palette.  However, the bitmap is packed, ie,
345  * each byte contains color information for two pixels (upper and lower nibble).
346  * To be consistent with fb_imageblit() usage, we therefore separate the two
347  * nibbles into separate bytes. The "depth" flag will be set to 4.
348  *
349  * Case 3 - linux_logo_mono:
350  * This is similar with Case 2.  Each byte contains information for 8 pixels.
351  * We isolate each bit and expand each into a byte. The "depth" flag will
352  * be set to 1.
353  */
354 static struct logo_data {
355         int depth;
356         int needs_directpalette;
357         int needs_truepalette;
358         int needs_cmapreset;
359         const struct linux_logo *logo;
360 } fb_logo __read_mostly;
361
362 static void fb_rotate_logo_ud(const u8 *in, u8 *out, u32 width, u32 height)
363 {
364         u32 size = width * height, i;
365
366         out += size - 1;
367
368         for (i = size; i--; )
369                 *out-- = *in++;
370 }
371
372 static void fb_rotate_logo_cw(const u8 *in, u8 *out, u32 width, u32 height)
373 {
374         int i, j, h = height - 1;
375
376         for (i = 0; i < height; i++)
377                 for (j = 0; j < width; j++)
378                                 out[height * j + h - i] = *in++;
379 }
380
381 static void fb_rotate_logo_ccw(const u8 *in, u8 *out, u32 width, u32 height)
382 {
383         int i, j, w = width - 1;
384
385         for (i = 0; i < height; i++)
386                 for (j = 0; j < width; j++)
387                         out[height * (w - j) + i] = *in++;
388 }
389
390 static void fb_rotate_logo(struct fb_info *info, u8 *dst,
391                            struct fb_image *image, int rotate)
392 {
393         u32 tmp;
394
395         if (rotate == FB_ROTATE_UD) {
396                 fb_rotate_logo_ud(image->data, dst, image->width,
397                                   image->height);
398                 image->dx = info->var.xres - image->width - image->dx;
399                 image->dy = info->var.yres - image->height - image->dy;
400         } else if (rotate == FB_ROTATE_CW) {
401                 fb_rotate_logo_cw(image->data, dst, image->width,
402                                   image->height);
403                 tmp = image->width;
404                 image->width = image->height;
405                 image->height = tmp;
406                 tmp = image->dy;
407                 image->dy = image->dx;
408                 image->dx = info->var.xres - image->width - tmp;
409         } else if (rotate == FB_ROTATE_CCW) {
410                 fb_rotate_logo_ccw(image->data, dst, image->width,
411                                    image->height);
412                 tmp = image->width;
413                 image->width = image->height;
414                 image->height = tmp;
415                 tmp = image->dx;
416                 image->dx = image->dy;
417                 image->dy = info->var.yres - image->height - tmp;
418         }
419
420         image->data = dst;
421 }
422
423 static void fb_do_show_logo(struct fb_info *info, struct fb_image *image,
424                             int rotate, unsigned int num)
425 {
426         unsigned int x;
427
428         if (image->width > info->var.xres || image->height > info->var.yres)
429                 return;
430
431         if (rotate == FB_ROTATE_UR) {
432                 for (x = 0;
433                      x < num && image->dx + image->width <= info->var.xres;
434                      x++) {
435                         info->fbops->fb_imageblit(info, image);
436                         image->dx += image->width + 8;
437                 }
438         } else if (rotate == FB_ROTATE_UD) {
439                 u32 dx = image->dx;
440
441                 for (x = 0; x < num && image->dx <= dx; x++) {
442                         info->fbops->fb_imageblit(info, image);
443                         image->dx -= image->width + 8;
444                 }
445         } else if (rotate == FB_ROTATE_CW) {
446                 for (x = 0;
447                      x < num && image->dy + image->height <= info->var.yres;
448                      x++) {
449                         info->fbops->fb_imageblit(info, image);
450                         image->dy += image->height + 8;
451                 }
452         } else if (rotate == FB_ROTATE_CCW) {
453                 u32 dy = image->dy;
454
455                 for (x = 0; x < num && image->dy <= dy; x++) {
456                         info->fbops->fb_imageblit(info, image);
457                         image->dy -= image->height + 8;
458                 }
459         }
460 }
461
462 static int fb_show_logo_line(struct fb_info *info, int rotate,
463                              const struct linux_logo *logo, int y,
464                              unsigned int n)
465 {
466         u32 *palette = NULL, *saved_pseudo_palette = NULL;
467         unsigned char *logo_new = NULL, *logo_rotate = NULL;
468         struct fb_image image;
469
470         /* Return if the frame buffer is not mapped or suspended */
471         if (logo == NULL || info->state != FBINFO_STATE_RUNNING ||
472             info->flags & FBINFO_MODULE)
473                 return 0;
474
475         image.depth = 8;
476         image.data = logo->data;
477
478         if (fb_logo.needs_cmapreset)
479                 fb_set_logocmap(info, logo);
480
481         if (fb_logo.needs_truepalette ||
482             fb_logo.needs_directpalette) {
483                 palette = kmalloc(256 * 4, GFP_KERNEL);
484                 if (palette == NULL)
485                         return 0;
486
487                 if (fb_logo.needs_truepalette)
488                         fb_set_logo_truepalette(info, logo, palette);
489                 else
490                         fb_set_logo_directpalette(info, logo, palette);
491
492                 saved_pseudo_palette = info->pseudo_palette;
493                 info->pseudo_palette = palette;
494         }
495
496         if (fb_logo.depth <= 4) {
497                 logo_new = kmalloc(logo->width * logo->height, GFP_KERNEL);
498                 if (logo_new == NULL) {
499                         kfree(palette);
500                         if (saved_pseudo_palette)
501                                 info->pseudo_palette = saved_pseudo_palette;
502                         return 0;
503                 }
504                 image.data = logo_new;
505                 fb_set_logo(info, logo, logo_new, fb_logo.depth);
506         }
507
508         image.dx = 0;
509         image.dy = y;
510         image.width = logo->width;
511         image.height = logo->height;
512
513         if (rotate) {
514                 logo_rotate = kmalloc(logo->width *
515                                       logo->height, GFP_KERNEL);
516                 if (logo_rotate)
517                         fb_rotate_logo(info, logo_rotate, &image, rotate);
518         }
519
520         fb_do_show_logo(info, &image, rotate, n);
521
522         kfree(palette);
523         if (saved_pseudo_palette != NULL)
524                 info->pseudo_palette = saved_pseudo_palette;
525         kfree(logo_new);
526         kfree(logo_rotate);
527         return logo->height;
528 }
529
530
531 #ifdef CONFIG_FB_LOGO_EXTRA
532
533 #define FB_LOGO_EX_NUM_MAX 10
534 static struct logo_data_extra {
535         const struct linux_logo *logo;
536         unsigned int n;
537 } fb_logo_ex[FB_LOGO_EX_NUM_MAX];
538 static unsigned int fb_logo_ex_num;
539
540 void fb_append_extra_logo(const struct linux_logo *logo, unsigned int n)
541 {
542         if (!n || fb_logo_ex_num == FB_LOGO_EX_NUM_MAX)
543                 return;
544
545         fb_logo_ex[fb_logo_ex_num].logo = logo;
546         fb_logo_ex[fb_logo_ex_num].n = n;
547         fb_logo_ex_num++;
548 }
549
550 static int fb_prepare_extra_logos(struct fb_info *info, unsigned int height,
551                                   unsigned int yres)
552 {
553         unsigned int i;
554
555         /* FIXME: logo_ex supports only truecolor fb. */
556         if (info->fix.visual != FB_VISUAL_TRUECOLOR)
557                 fb_logo_ex_num = 0;
558
559         for (i = 0; i < fb_logo_ex_num; i++) {
560                 if (fb_logo_ex[i].logo->type != fb_logo.logo->type) {
561                         fb_logo_ex[i].logo = NULL;
562                         continue;
563                 }
564                 height += fb_logo_ex[i].logo->height;
565                 if (height > yres) {
566                         height -= fb_logo_ex[i].logo->height;
567                         fb_logo_ex_num = i;
568                         break;
569                 }
570         }
571         return height;
572 }
573
574 static int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
575 {
576         unsigned int i;
577
578         for (i = 0; i < fb_logo_ex_num; i++)
579                 y += fb_show_logo_line(info, rotate,
580                                        fb_logo_ex[i].logo, y, fb_logo_ex[i].n);
581
582         return y;
583 }
584
585 #else /* !CONFIG_FB_LOGO_EXTRA */
586
587 static inline int fb_prepare_extra_logos(struct fb_info *info,
588                                          unsigned int height,
589                                          unsigned int yres)
590 {
591         return height;
592 }
593
594 static inline int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
595 {
596         return y;
597 }
598
599 #endif /* CONFIG_FB_LOGO_EXTRA */
600
601
602 int fb_prepare_logo(struct fb_info *info, int rotate)
603 {
604         int depth = fb_get_color_depth(&info->var, &info->fix);
605         unsigned int yres;
606
607         memset(&fb_logo, 0, sizeof(struct logo_data));
608
609         if (info->flags & FBINFO_MISC_TILEBLITTING ||
610             info->flags & FBINFO_MODULE)
611                 return 0;
612
613         if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
614                 depth = info->var.blue.length;
615                 if (info->var.red.length < depth)
616                         depth = info->var.red.length;
617                 if (info->var.green.length < depth)
618                         depth = info->var.green.length;
619         }
620
621         if (info->fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR && depth > 4) {
622                 /* assume console colormap */
623                 depth = 4;
624         }
625
626         /* Return if no suitable logo was found */
627         fb_logo.logo = fb_find_logo(depth);
628
629         if (!fb_logo.logo) {
630                 return 0;
631         }
632
633         if (rotate == FB_ROTATE_UR || rotate == FB_ROTATE_UD)
634                 yres = info->var.yres;
635         else
636                 yres = info->var.xres;
637
638         if (fb_logo.logo->height > yres) {
639                 fb_logo.logo = NULL;
640                 return 0;
641         }
642
643         /* What depth we asked for might be different from what we get */
644         if (fb_logo.logo->type == LINUX_LOGO_CLUT224)
645                 fb_logo.depth = 8;
646         else if (fb_logo.logo->type == LINUX_LOGO_VGA16)
647                 fb_logo.depth = 4;
648         else
649                 fb_logo.depth = 1;
650
651
652         if (fb_logo.depth > 4 && depth > 4) {
653                 switch (info->fix.visual) {
654                 case FB_VISUAL_TRUECOLOR:
655                         fb_logo.needs_truepalette = 1;
656                         break;
657                 case FB_VISUAL_DIRECTCOLOR:
658                         fb_logo.needs_directpalette = 1;
659                         fb_logo.needs_cmapreset = 1;
660                         break;
661                 case FB_VISUAL_PSEUDOCOLOR:
662                         fb_logo.needs_cmapreset = 1;
663                         break;
664                 }
665         }
666
667         return fb_prepare_extra_logos(info, fb_logo.logo->height, yres);
668 }
669
670 int fb_show_logo(struct fb_info *info, int rotate)
671 {
672         int y;
673
674         y = fb_show_logo_line(info, rotate, fb_logo.logo, 0,
675                               num_online_cpus());
676         y = fb_show_extra_logos(info, y, rotate);
677
678         return y;
679 }
680 #else
681 int fb_prepare_logo(struct fb_info *info, int rotate) { return 0; }
682 int fb_show_logo(struct fb_info *info, int rotate) { return 0; }
683 #endif /* CONFIG_LOGO */
684 EXPORT_SYMBOL(fb_prepare_logo);
685 EXPORT_SYMBOL(fb_show_logo);
686
687 static void *fb_seq_start(struct seq_file *m, loff_t *pos)
688 {
689         mutex_lock(&registration_lock);
690         return (*pos < FB_MAX) ? pos : NULL;
691 }
692
693 static void *fb_seq_next(struct seq_file *m, void *v, loff_t *pos)
694 {
695         (*pos)++;
696         return (*pos < FB_MAX) ? pos : NULL;
697 }
698
699 static void fb_seq_stop(struct seq_file *m, void *v)
700 {
701         mutex_unlock(&registration_lock);
702 }
703
704 static int fb_seq_show(struct seq_file *m, void *v)
705 {
706         int i = *(loff_t *)v;
707         struct fb_info *fi = registered_fb[i];
708
709         if (fi)
710                 seq_printf(m, "%d %s\n", fi->node, fi->fix.id);
711         return 0;
712 }
713
714 static const struct seq_operations proc_fb_seq_ops = {
715         .start  = fb_seq_start,
716         .next   = fb_seq_next,
717         .stop   = fb_seq_stop,
718         .show   = fb_seq_show,
719 };
720
721 static int proc_fb_open(struct inode *inode, struct file *file)
722 {
723         return seq_open(file, &proc_fb_seq_ops);
724 }
725
726 static const struct file_operations fb_proc_fops = {
727         .owner          = THIS_MODULE,
728         .open           = proc_fb_open,
729         .read           = seq_read,
730         .llseek         = seq_lseek,
731         .release        = seq_release,
732 };
733
734 /*
735  * We hold a reference to the fb_info in file->private_data,
736  * but if the current registered fb has changed, we don't
737  * actually want to use it.
738  *
739  * So look up the fb_info using the inode minor number,
740  * and just verify it against the reference we have.
741  */
742 static struct fb_info *file_fb_info(struct file *file)
743 {
744         struct inode *inode = file_inode(file);
745         int fbidx = iminor(inode);
746         struct fb_info *info = registered_fb[fbidx];
747
748         if (info != file->private_data)
749                 info = NULL;
750         return info;
751 }
752
753 static ssize_t
754 fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
755 {
756         unsigned long p = *ppos;
757         struct fb_info *info = file_fb_info(file);
758         u8 *buffer, *dst;
759         u8 __iomem *src;
760         int c, cnt = 0, err = 0;
761         unsigned long total_size;
762
763         if (!info || ! info->screen_base)
764                 return -ENODEV;
765
766         if (info->state != FBINFO_STATE_RUNNING)
767                 return -EPERM;
768
769         if (info->fbops->fb_read)
770                 return info->fbops->fb_read(info, buf, count, ppos);
771         
772         total_size = info->screen_size;
773
774         if (total_size == 0)
775                 total_size = info->fix.smem_len;
776
777         if (p >= total_size)
778                 return 0;
779
780         if (count >= total_size)
781                 count = total_size;
782
783         if (count + p > total_size)
784                 count = total_size - p;
785
786         buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
787                          GFP_KERNEL);
788         if (!buffer)
789                 return -ENOMEM;
790
791         src = (u8 __iomem *) (info->screen_base + p);
792
793         if (info->fbops->fb_sync)
794                 info->fbops->fb_sync(info);
795
796         while (count) {
797                 c  = (count > PAGE_SIZE) ? PAGE_SIZE : count;
798                 dst = buffer;
799                 fb_memcpy_fromfb(dst, src, c);
800                 dst += c;
801                 src += c;
802
803                 if (copy_to_user(buf, buffer, c)) {
804                         err = -EFAULT;
805                         break;
806                 }
807                 *ppos += c;
808                 buf += c;
809                 cnt += c;
810                 count -= c;
811         }
812
813         kfree(buffer);
814
815         return (err) ? err : cnt;
816 }
817
818 static ssize_t
819 fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
820 {
821         unsigned long p = *ppos;
822         struct fb_info *info = file_fb_info(file);
823         u8 *buffer, *src;
824         u8 __iomem *dst;
825         int c, cnt = 0, err = 0;
826         unsigned long total_size;
827
828         if (!info || !info->screen_base)
829                 return -ENODEV;
830
831         if (info->state != FBINFO_STATE_RUNNING)
832                 return -EPERM;
833
834         if (info->fbops->fb_write)
835                 return info->fbops->fb_write(info, buf, count, ppos);
836         
837         total_size = info->screen_size;
838
839         if (total_size == 0)
840                 total_size = info->fix.smem_len;
841
842         if (p > total_size)
843                 return -EFBIG;
844
845         if (count > total_size) {
846                 err = -EFBIG;
847                 count = total_size;
848         }
849
850         if (count + p > total_size) {
851                 if (!err)
852                         err = -ENOSPC;
853
854                 count = total_size - p;
855         }
856
857         buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
858                          GFP_KERNEL);
859         if (!buffer)
860                 return -ENOMEM;
861
862         dst = (u8 __iomem *) (info->screen_base + p);
863
864         if (info->fbops->fb_sync)
865                 info->fbops->fb_sync(info);
866
867         while (count) {
868                 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
869                 src = buffer;
870
871                 if (copy_from_user(src, buf, c)) {
872                         err = -EFAULT;
873                         break;
874                 }
875
876                 fb_memcpy_tofb(dst, src, c);
877                 dst += c;
878                 src += c;
879                 *ppos += c;
880                 buf += c;
881                 cnt += c;
882                 count -= c;
883         }
884
885         kfree(buffer);
886
887         return (cnt) ? cnt : err;
888 }
889
890 int
891 fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var)
892 {
893         struct fb_fix_screeninfo *fix = &info->fix;
894         unsigned int yres = info->var.yres;
895         int err = 0;
896
897         if (var->yoffset > 0) {
898                 if (var->vmode & FB_VMODE_YWRAP) {
899                         if (!fix->ywrapstep || (var->yoffset % fix->ywrapstep))
900                                 err = -EINVAL;
901                         else
902                                 yres = 0;
903                 } else if (!fix->ypanstep || (var->yoffset % fix->ypanstep))
904                         err = -EINVAL;
905         }
906
907         if (var->xoffset > 0 && (!fix->xpanstep ||
908                                  (var->xoffset % fix->xpanstep)))
909                 err = -EINVAL;
910
911         if (err || !info->fbops->fb_pan_display ||
912             var->yoffset > info->var.yres_virtual - yres ||
913             var->xoffset > info->var.xres_virtual - info->var.xres)
914                 return -EINVAL;
915
916         if ((err = info->fbops->fb_pan_display(var, info)))
917                 return err;
918         info->var.xoffset = var->xoffset;
919         info->var.yoffset = var->yoffset;
920         if (var->vmode & FB_VMODE_YWRAP)
921                 info->var.vmode |= FB_VMODE_YWRAP;
922         else
923                 info->var.vmode &= ~FB_VMODE_YWRAP;
924         return 0;
925 }
926 EXPORT_SYMBOL(fb_pan_display);
927
928 static int fb_check_caps(struct fb_info *info, struct fb_var_screeninfo *var,
929                          u32 activate)
930 {
931         struct fb_event event;
932         struct fb_blit_caps caps, fbcaps;
933         int err = 0;
934
935         memset(&caps, 0, sizeof(caps));
936         memset(&fbcaps, 0, sizeof(fbcaps));
937         caps.flags = (activate & FB_ACTIVATE_ALL) ? 1 : 0;
938         event.info = info;
939         event.data = &caps;
940         fb_notifier_call_chain(FB_EVENT_GET_REQ, &event);
941         info->fbops->fb_get_caps(info, &fbcaps, var);
942
943         if (((fbcaps.x ^ caps.x) & caps.x) ||
944             ((fbcaps.y ^ caps.y) & caps.y) ||
945             (fbcaps.len < caps.len))
946                 err = -EINVAL;
947
948         return err;
949 }
950
951 int
952 fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var)
953 {
954         int flags = info->flags;
955         int ret = 0;
956
957         if (var->activate & FB_ACTIVATE_INV_MODE) {
958                 struct fb_videomode mode1, mode2;
959
960                 fb_var_to_videomode(&mode1, var);
961                 fb_var_to_videomode(&mode2, &info->var);
962                 /* make sure we don't delete the videomode of current var */
963                 ret = fb_mode_is_equal(&mode1, &mode2);
964
965                 if (!ret) {
966                     struct fb_event event;
967
968                     event.info = info;
969                     event.data = &mode1;
970                     ret = fb_notifier_call_chain(FB_EVENT_MODE_DELETE, &event);
971                 }
972
973                 if (!ret)
974                     fb_delete_videomode(&mode1, &info->modelist);
975
976
977                 ret = (ret) ? -EINVAL : 0;
978                 goto done;
979         }
980
981         if ((var->activate & FB_ACTIVATE_FORCE) ||
982             memcmp(&info->var, var, sizeof(struct fb_var_screeninfo))) {
983                 u32 activate = var->activate;
984
985                 /* When using FOURCC mode, make sure the red, green, blue and
986                  * transp fields are set to 0.
987                  */
988                 if ((info->fix.capabilities & FB_CAP_FOURCC) &&
989                     var->grayscale > 1) {
990                         if (var->red.offset     || var->green.offset    ||
991                             var->blue.offset    || var->transp.offset   ||
992                             var->red.length     || var->green.length    ||
993                             var->blue.length    || var->transp.length   ||
994                             var->red.msb_right  || var->green.msb_right ||
995                             var->blue.msb_right || var->transp.msb_right)
996                                 return -EINVAL;
997                 }
998
999                 if (!info->fbops->fb_check_var) {
1000                         *var = info->var;
1001                         goto done;
1002                 }
1003
1004                 /* bitfill_aligned() assumes that it's at least 8x8 */
1005                 if (var->xres < 8 || var->yres < 8)
1006                         return -EINVAL;
1007
1008                 ret = info->fbops->fb_check_var(var, info);
1009
1010                 if (ret)
1011                         goto done;
1012
1013                 if ((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) {
1014                         struct fb_var_screeninfo old_var;
1015                         struct fb_videomode mode;
1016
1017                         if (info->fbops->fb_get_caps) {
1018                                 ret = fb_check_caps(info, var, activate);
1019
1020                                 if (ret)
1021                                         goto done;
1022                         }
1023
1024                         old_var = info->var;
1025                         info->var = *var;
1026
1027                         if (info->fbops->fb_set_par) {
1028                                 ret = info->fbops->fb_set_par(info);
1029
1030                                 if (ret) {
1031                                         info->var = old_var;
1032                                         printk(KERN_WARNING "detected "
1033                                                 "fb_set_par error, "
1034                                                 "error code: %d\n", ret);
1035                                         goto done;
1036                                 }
1037                         }
1038
1039                         fb_pan_display(info, &info->var);
1040                         fb_set_cmap(&info->cmap, info);
1041                         fb_var_to_videomode(&mode, &info->var);
1042
1043                         if (info->modelist.prev && info->modelist.next &&
1044                             !list_empty(&info->modelist))
1045                                 ret = fb_add_videomode(&mode, &info->modelist);
1046
1047                         if (!ret && (flags & FBINFO_MISC_USEREVENT)) {
1048                                 struct fb_event event;
1049                                 int evnt = (activate & FB_ACTIVATE_ALL) ?
1050                                         FB_EVENT_MODE_CHANGE_ALL :
1051                                         FB_EVENT_MODE_CHANGE;
1052
1053                                 info->flags &= ~FBINFO_MISC_USEREVENT;
1054                                 event.info = info;
1055                                 event.data = &mode;
1056                                 fb_notifier_call_chain(evnt, &event);
1057                         }
1058                 }
1059         }
1060
1061  done:
1062         return ret;
1063 }
1064 EXPORT_SYMBOL(fb_set_var);
1065
1066 int
1067 fb_blank(struct fb_info *info, int blank)
1068 {       
1069         struct fb_event event;
1070         int ret = -EINVAL, early_ret;
1071
1072         if (blank > FB_BLANK_POWERDOWN)
1073                 blank = FB_BLANK_POWERDOWN;
1074
1075         event.info = info;
1076         event.data = &blank;
1077
1078         early_ret = fb_notifier_call_chain(FB_EARLY_EVENT_BLANK, &event);
1079
1080         if (info->fbops->fb_blank)
1081                 ret = info->fbops->fb_blank(blank, info);
1082
1083         if (!ret)
1084                 fb_notifier_call_chain(FB_EVENT_BLANK, &event);
1085         else {
1086                 /*
1087                  * if fb_blank is failed then revert effects of
1088                  * the early blank event.
1089                  */
1090                 if (!early_ret)
1091                         fb_notifier_call_chain(FB_R_EARLY_EVENT_BLANK, &event);
1092         }
1093
1094         return ret;
1095 }
1096 EXPORT_SYMBOL(fb_blank);
1097
1098 static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,
1099                         unsigned long arg)
1100 {
1101         struct fb_ops *fb;
1102         struct fb_var_screeninfo var;
1103         struct fb_fix_screeninfo fix;
1104         struct fb_con2fbmap con2fb;
1105         struct fb_cmap cmap_from;
1106         struct fb_cmap_user cmap;
1107         struct fb_event event;
1108         void __user *argp = (void __user *)arg;
1109         long ret = 0;
1110
1111         switch (cmd) {
1112         case FBIOGET_VSCREENINFO:
1113                 if (!lock_fb_info(info))
1114                         return -ENODEV;
1115                 var = info->var;
1116                 unlock_fb_info(info);
1117
1118                 ret = copy_to_user(argp, &var, sizeof(var)) ? -EFAULT : 0;
1119                 break;
1120         case FBIOPUT_VSCREENINFO:
1121                 if (copy_from_user(&var, argp, sizeof(var)))
1122                         return -EFAULT;
1123                 console_lock();
1124                 if (!lock_fb_info(info)) {
1125                         console_unlock();
1126                         return -ENODEV;
1127                 }
1128                 info->flags |= FBINFO_MISC_USEREVENT;
1129                 ret = fb_set_var(info, &var);
1130                 info->flags &= ~FBINFO_MISC_USEREVENT;
1131                 unlock_fb_info(info);
1132                 console_unlock();
1133                 if (!ret && copy_to_user(argp, &var, sizeof(var)))
1134                         ret = -EFAULT;
1135                 break;
1136         case FBIOGET_FSCREENINFO:
1137                 if (!lock_fb_info(info))
1138                         return -ENODEV;
1139                 memcpy(&fix, &info->fix, sizeof(fix));
1140                 unlock_fb_info(info);
1141
1142                 ret = copy_to_user(argp, &fix, sizeof(fix)) ? -EFAULT : 0;
1143                 break;
1144         case FBIOPUTCMAP:
1145                 if (copy_from_user(&cmap, argp, sizeof(cmap)))
1146                         return -EFAULT;
1147                 ret = fb_set_user_cmap(&cmap, info);
1148                 break;
1149         case FBIOGETCMAP:
1150                 if (copy_from_user(&cmap, argp, sizeof(cmap)))
1151                         return -EFAULT;
1152                 if (!lock_fb_info(info))
1153                         return -ENODEV;
1154                 cmap_from = info->cmap;
1155                 unlock_fb_info(info);
1156                 ret = fb_cmap_to_user(&cmap_from, &cmap);
1157                 break;
1158         case FBIOPAN_DISPLAY:
1159                 if (copy_from_user(&var, argp, sizeof(var)))
1160                         return -EFAULT;
1161                 console_lock();
1162                 if (!lock_fb_info(info)) {
1163                         console_unlock();
1164                         return -ENODEV;
1165                 }
1166                 ret = fb_pan_display(info, &var);
1167                 unlock_fb_info(info);
1168                 console_unlock();
1169                 if (ret == 0 && copy_to_user(argp, &var, sizeof(var)))
1170                         return -EFAULT;
1171                 break;
1172         case FBIO_CURSOR:
1173                 ret = -EINVAL;
1174                 break;
1175         case FBIOGET_CON2FBMAP:
1176                 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
1177                         return -EFAULT;
1178                 if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
1179                         return -EINVAL;
1180                 con2fb.framebuffer = -1;
1181                 event.data = &con2fb;
1182                 if (!lock_fb_info(info))
1183                         return -ENODEV;
1184                 event.info = info;
1185                 fb_notifier_call_chain(FB_EVENT_GET_CONSOLE_MAP, &event);
1186                 unlock_fb_info(info);
1187                 ret = copy_to_user(argp, &con2fb, sizeof(con2fb)) ? -EFAULT : 0;
1188                 break;
1189         case FBIOPUT_CON2FBMAP:
1190                 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
1191                         return -EFAULT;
1192                 if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
1193                         return -EINVAL;
1194                 if (con2fb.framebuffer >= FB_MAX)
1195                         return -EINVAL;
1196                 if (!registered_fb[con2fb.framebuffer])
1197                         request_module("fb%d", con2fb.framebuffer);
1198                 if (!registered_fb[con2fb.framebuffer]) {
1199                         ret = -EINVAL;
1200                         break;
1201                 }
1202                 event.data = &con2fb;
1203                 console_lock();
1204                 if (!lock_fb_info(info)) {
1205                         console_unlock();
1206                         return -ENODEV;
1207                 }
1208                 event.info = info;
1209                 ret = fb_notifier_call_chain(FB_EVENT_SET_CONSOLE_MAP, &event);
1210                 unlock_fb_info(info);
1211                 console_unlock();
1212                 break;
1213         case FBIOBLANK:
1214                 console_lock();
1215                 if (!lock_fb_info(info)) {
1216                         console_unlock();
1217                         return -ENODEV;
1218                 }
1219                 info->flags |= FBINFO_MISC_USEREVENT;
1220                 ret = fb_blank(info, arg);
1221                 info->flags &= ~FBINFO_MISC_USEREVENT;
1222                 unlock_fb_info(info);
1223                 console_unlock();
1224                 break;
1225         default:
1226                 if (!lock_fb_info(info))
1227                         return -ENODEV;
1228                 fb = info->fbops;
1229                 if (fb->fb_ioctl)
1230                         ret = fb->fb_ioctl(info, cmd, arg);
1231                 else
1232                         ret = -ENOTTY;
1233                 unlock_fb_info(info);
1234         }
1235         return ret;
1236 }
1237
1238 static long fb_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1239 {
1240         struct fb_info *info = file_fb_info(file);
1241
1242         if (!info)
1243                 return -ENODEV;
1244         return do_fb_ioctl(info, cmd, arg);
1245 }
1246
1247 #ifdef CONFIG_COMPAT
1248 struct fb_fix_screeninfo32 {
1249         char                    id[16];
1250         compat_caddr_t          smem_start;
1251         u32                     smem_len;
1252         u32                     type;
1253         u32                     type_aux;
1254         u32                     visual;
1255         u16                     xpanstep;
1256         u16                     ypanstep;
1257         u16                     ywrapstep;
1258         u32                     line_length;
1259         compat_caddr_t          mmio_start;
1260         u32                     mmio_len;
1261         u32                     accel;
1262         u16                     reserved[3];
1263 };
1264
1265 struct fb_cmap32 {
1266         u32                     start;
1267         u32                     len;
1268         compat_caddr_t  red;
1269         compat_caddr_t  green;
1270         compat_caddr_t  blue;
1271         compat_caddr_t  transp;
1272 };
1273
1274 static int fb_getput_cmap(struct fb_info *info, unsigned int cmd,
1275                           unsigned long arg)
1276 {
1277         struct fb_cmap_user __user *cmap;
1278         struct fb_cmap32 __user *cmap32;
1279         __u32 data;
1280         int err;
1281
1282         cmap = compat_alloc_user_space(sizeof(*cmap));
1283         cmap32 = compat_ptr(arg);
1284
1285         if (copy_in_user(&cmap->start, &cmap32->start, 2 * sizeof(__u32)))
1286                 return -EFAULT;
1287
1288         if (get_user(data, &cmap32->red) ||
1289             put_user(compat_ptr(data), &cmap->red) ||
1290             get_user(data, &cmap32->green) ||
1291             put_user(compat_ptr(data), &cmap->green) ||
1292             get_user(data, &cmap32->blue) ||
1293             put_user(compat_ptr(data), &cmap->blue) ||
1294             get_user(data, &cmap32->transp) ||
1295             put_user(compat_ptr(data), &cmap->transp))
1296                 return -EFAULT;
1297
1298         err = do_fb_ioctl(info, cmd, (unsigned long) cmap);
1299
1300         if (!err) {
1301                 if (copy_in_user(&cmap32->start,
1302                                  &cmap->start,
1303                                  2 * sizeof(__u32)))
1304                         err = -EFAULT;
1305         }
1306         return err;
1307 }
1308
1309 static int do_fscreeninfo_to_user(struct fb_fix_screeninfo *fix,
1310                                   struct fb_fix_screeninfo32 __user *fix32)
1311 {
1312         __u32 data;
1313         int err;
1314
1315         err = copy_to_user(&fix32->id, &fix->id, sizeof(fix32->id));
1316
1317         data = (__u32) (unsigned long) fix->smem_start;
1318         err |= put_user(data, &fix32->smem_start);
1319
1320         err |= put_user(fix->smem_len, &fix32->smem_len);
1321         err |= put_user(fix->type, &fix32->type);
1322         err |= put_user(fix->type_aux, &fix32->type_aux);
1323         err |= put_user(fix->visual, &fix32->visual);
1324         err |= put_user(fix->xpanstep, &fix32->xpanstep);
1325         err |= put_user(fix->ypanstep, &fix32->ypanstep);
1326         err |= put_user(fix->ywrapstep, &fix32->ywrapstep);
1327         err |= put_user(fix->line_length, &fix32->line_length);
1328
1329         data = (__u32) (unsigned long) fix->mmio_start;
1330         err |= put_user(data, &fix32->mmio_start);
1331
1332         err |= put_user(fix->mmio_len, &fix32->mmio_len);
1333         err |= put_user(fix->accel, &fix32->accel);
1334         err |= copy_to_user(fix32->reserved, fix->reserved,
1335                             sizeof(fix->reserved));
1336
1337         if (err)
1338                 return -EFAULT;
1339         return 0;
1340 }
1341
1342 static int fb_get_fscreeninfo(struct fb_info *info, unsigned int cmd,
1343                               unsigned long arg)
1344 {
1345         mm_segment_t old_fs;
1346         struct fb_fix_screeninfo fix;
1347         struct fb_fix_screeninfo32 __user *fix32;
1348         int err;
1349
1350         fix32 = compat_ptr(arg);
1351
1352         old_fs = get_fs();
1353         set_fs(KERNEL_DS);
1354         err = do_fb_ioctl(info, cmd, (unsigned long) &fix);
1355         set_fs(old_fs);
1356
1357         if (!err)
1358                 err = do_fscreeninfo_to_user(&fix, fix32);
1359
1360         return err;
1361 }
1362
1363 static long fb_compat_ioctl(struct file *file, unsigned int cmd,
1364                             unsigned long arg)
1365 {
1366         struct fb_info *info = file_fb_info(file);
1367         struct fb_ops *fb;
1368         long ret = -ENOIOCTLCMD;
1369
1370         if (!info)
1371                 return -ENODEV;
1372         fb = info->fbops;
1373         switch(cmd) {
1374         case FBIOGET_VSCREENINFO:
1375         case FBIOPUT_VSCREENINFO:
1376         case FBIOPAN_DISPLAY:
1377         case FBIOGET_CON2FBMAP:
1378         case FBIOPUT_CON2FBMAP:
1379                 arg = (unsigned long) compat_ptr(arg);
1380         case FBIOBLANK:
1381                 ret = do_fb_ioctl(info, cmd, arg);
1382                 break;
1383
1384         case FBIOGET_FSCREENINFO:
1385                 ret = fb_get_fscreeninfo(info, cmd, arg);
1386                 break;
1387
1388         case FBIOGETCMAP:
1389         case FBIOPUTCMAP:
1390                 ret = fb_getput_cmap(info, cmd, arg);
1391                 break;
1392
1393         default:
1394                 if (fb->fb_compat_ioctl)
1395                         ret = fb->fb_compat_ioctl(info, cmd, arg);
1396                 break;
1397         }
1398         return ret;
1399 }
1400 #endif
1401
1402 static int
1403 fb_mmap(struct file *file, struct vm_area_struct * vma)
1404 {
1405         struct fb_info *info = file_fb_info(file);
1406         struct fb_ops *fb;
1407         unsigned long mmio_pgoff;
1408         unsigned long start;
1409         u32 len;
1410
1411         if (!info)
1412                 return -ENODEV;
1413         fb = info->fbops;
1414         if (!fb)
1415                 return -ENODEV;
1416         mutex_lock(&info->mm_lock);
1417         if (fb->fb_mmap) {
1418                 int res;
1419                 res = fb->fb_mmap(info, vma);
1420                 mutex_unlock(&info->mm_lock);
1421                 return res;
1422         }
1423
1424         /*
1425          * Ugh. This can be either the frame buffer mapping, or
1426          * if pgoff points past it, the mmio mapping.
1427          */
1428         start = info->fix.smem_start;
1429         len = info->fix.smem_len;
1430         mmio_pgoff = PAGE_ALIGN((start & ~PAGE_MASK) + len) >> PAGE_SHIFT;
1431         if (vma->vm_pgoff >= mmio_pgoff) {
1432                 if (info->var.accel_flags) {
1433                         mutex_unlock(&info->mm_lock);
1434                         return -EINVAL;
1435                 }
1436
1437                 vma->vm_pgoff -= mmio_pgoff;
1438                 start = info->fix.mmio_start;
1439                 len = info->fix.mmio_len;
1440         }
1441         mutex_unlock(&info->mm_lock);
1442
1443         vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
1444         fb_pgprotect(file, vma, start);
1445
1446         return vm_iomap_memory(vma, start, len);
1447 }
1448
1449 static int
1450 fb_open(struct inode *inode, struct file *file)
1451 __acquires(&info->lock)
1452 __releases(&info->lock)
1453 {
1454         int fbidx = iminor(inode);
1455         struct fb_info *info;
1456         int res = 0;
1457
1458         info = get_fb_info(fbidx);
1459         if (!info) {
1460                 request_module("fb%d", fbidx);
1461                 info = get_fb_info(fbidx);
1462                 if (!info)
1463                         return -ENODEV;
1464         }
1465         if (IS_ERR(info))
1466                 return PTR_ERR(info);
1467
1468         mutex_lock(&info->lock);
1469         if (!try_module_get(info->fbops->owner)) {
1470                 res = -ENODEV;
1471                 goto out;
1472         }
1473         file->private_data = info;
1474         if (info->fbops->fb_open) {
1475                 res = info->fbops->fb_open(info,1);
1476                 if (res)
1477                         module_put(info->fbops->owner);
1478         }
1479 #ifdef CONFIG_FB_DEFERRED_IO
1480         if (info->fbdefio)
1481                 fb_deferred_io_open(info, inode, file);
1482 #endif
1483 out:
1484         mutex_unlock(&info->lock);
1485         if (res)
1486                 put_fb_info(info);
1487         return res;
1488 }
1489
1490 static int 
1491 fb_release(struct inode *inode, struct file *file)
1492 __acquires(&info->lock)
1493 __releases(&info->lock)
1494 {
1495         struct fb_info * const info = file->private_data;
1496
1497         mutex_lock(&info->lock);
1498         if (info->fbops->fb_release)
1499                 info->fbops->fb_release(info,1);
1500         module_put(info->fbops->owner);
1501         mutex_unlock(&info->lock);
1502         put_fb_info(info);
1503         return 0;
1504 }
1505
1506 static const struct file_operations fb_fops = {
1507         .owner =        THIS_MODULE,
1508         .read =         fb_read,
1509         .write =        fb_write,
1510         .unlocked_ioctl = fb_ioctl,
1511 #ifdef CONFIG_COMPAT
1512         .compat_ioctl = fb_compat_ioctl,
1513 #endif
1514         .mmap =         fb_mmap,
1515         .open =         fb_open,
1516         .release =      fb_release,
1517 #ifdef HAVE_ARCH_FB_UNMAPPED_AREA
1518         .get_unmapped_area = get_fb_unmapped_area,
1519 #endif
1520 #ifdef CONFIG_FB_DEFERRED_IO
1521         .fsync =        fb_deferred_io_fsync,
1522 #endif
1523         .llseek =       default_llseek,
1524 };
1525
1526 struct class *fb_class;
1527 EXPORT_SYMBOL(fb_class);
1528
1529 static int fb_check_foreignness(struct fb_info *fi)
1530 {
1531         const bool foreign_endian = fi->flags & FBINFO_FOREIGN_ENDIAN;
1532
1533         fi->flags &= ~FBINFO_FOREIGN_ENDIAN;
1534
1535 #ifdef __BIG_ENDIAN
1536         fi->flags |= foreign_endian ? 0 : FBINFO_BE_MATH;
1537 #else
1538         fi->flags |= foreign_endian ? FBINFO_BE_MATH : 0;
1539 #endif /* __BIG_ENDIAN */
1540
1541         if (fi->flags & FBINFO_BE_MATH && !fb_be_math(fi)) {
1542                 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1543                        "support this framebuffer\n", fi->fix.id);
1544                 return -ENOSYS;
1545         } else if (!(fi->flags & FBINFO_BE_MATH) && fb_be_math(fi)) {
1546                 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1547                        "support this framebuffer\n", fi->fix.id);
1548                 return -ENOSYS;
1549         }
1550
1551         return 0;
1552 }
1553
1554 static bool apertures_overlap(struct aperture *gen, struct aperture *hw)
1555 {
1556         /* is the generic aperture base the same as the HW one */
1557         if (gen->base == hw->base)
1558                 return true;
1559         /* is the generic aperture base inside the hw base->hw base+size */
1560         if (gen->base > hw->base && gen->base < hw->base + hw->size)
1561                 return true;
1562         return false;
1563 }
1564
1565 static bool fb_do_apertures_overlap(struct apertures_struct *gena,
1566                                     struct apertures_struct *hwa)
1567 {
1568         int i, j;
1569         if (!hwa || !gena)
1570                 return false;
1571
1572         for (i = 0; i < hwa->count; ++i) {
1573                 struct aperture *h = &hwa->ranges[i];
1574                 for (j = 0; j < gena->count; ++j) {
1575                         struct aperture *g = &gena->ranges[j];
1576                         printk(KERN_DEBUG "checking generic (%llx %llx) vs hw (%llx %llx)\n",
1577                                 (unsigned long long)g->base,
1578                                 (unsigned long long)g->size,
1579                                 (unsigned long long)h->base,
1580                                 (unsigned long long)h->size);
1581                         if (apertures_overlap(g, h))
1582                                 return true;
1583                 }
1584         }
1585
1586         return false;
1587 }
1588
1589 static int do_unregister_framebuffer(struct fb_info *fb_info);
1590
1591 #define VGA_FB_PHYS 0xA0000
1592 static int do_remove_conflicting_framebuffers(struct apertures_struct *a,
1593                                               const char *name, bool primary)
1594 {
1595         int i, ret;
1596
1597         /* check all firmware fbs and kick off if the base addr overlaps */
1598         for (i = 0 ; i < FB_MAX; i++) {
1599                 struct apertures_struct *gen_aper;
1600                 if (!registered_fb[i])
1601                         continue;
1602
1603                 if (!(registered_fb[i]->flags & FBINFO_MISC_FIRMWARE))
1604                         continue;
1605
1606                 gen_aper = registered_fb[i]->apertures;
1607                 if (fb_do_apertures_overlap(gen_aper, a) ||
1608                         (primary && gen_aper && gen_aper->count &&
1609                          gen_aper->ranges[0].base == VGA_FB_PHYS)) {
1610
1611                         printk(KERN_INFO "fb: switching to %s from %s\n",
1612                                name, registered_fb[i]->fix.id);
1613                         ret = do_unregister_framebuffer(registered_fb[i]);
1614                         if (ret)
1615                                 return ret;
1616                 }
1617         }
1618
1619         return 0;
1620 }
1621
1622 static int do_register_framebuffer(struct fb_info *fb_info)
1623 {
1624         int i, ret;
1625         struct fb_event event;
1626         struct fb_videomode mode;
1627
1628         if (fb_check_foreignness(fb_info))
1629                 return -ENOSYS;
1630
1631         ret = do_remove_conflicting_framebuffers(fb_info->apertures,
1632                                                  fb_info->fix.id,
1633                                                  fb_is_primary_device(fb_info));
1634         if (ret)
1635                 return ret;
1636
1637         if (num_registered_fb == FB_MAX)
1638                 return -ENXIO;
1639
1640         num_registered_fb++;
1641         for (i = 0 ; i < FB_MAX; i++)
1642                 if (!registered_fb[i])
1643                         break;
1644         fb_info->node = i;
1645         atomic_set(&fb_info->count, 1);
1646         mutex_init(&fb_info->lock);
1647         mutex_init(&fb_info->mm_lock);
1648
1649         fb_info->dev = device_create(fb_class, fb_info->device,
1650                                      MKDEV(FB_MAJOR, i), NULL, "fb%d", i);
1651         if (IS_ERR(fb_info->dev)) {
1652                 /* Not fatal */
1653                 printk(KERN_WARNING "Unable to create device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->dev));
1654                 fb_info->dev = NULL;
1655         } else
1656                 fb_init_device(fb_info);
1657
1658         if (fb_info->pixmap.addr == NULL) {
1659                 fb_info->pixmap.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL);
1660                 if (fb_info->pixmap.addr) {
1661                         fb_info->pixmap.size = FBPIXMAPSIZE;
1662                         fb_info->pixmap.buf_align = 1;
1663                         fb_info->pixmap.scan_align = 1;
1664                         fb_info->pixmap.access_align = 32;
1665                         fb_info->pixmap.flags = FB_PIXMAP_DEFAULT;
1666                 }
1667         }       
1668         fb_info->pixmap.offset = 0;
1669
1670         if (!fb_info->pixmap.blit_x)
1671                 fb_info->pixmap.blit_x = ~(u32)0;
1672
1673         if (!fb_info->pixmap.blit_y)
1674                 fb_info->pixmap.blit_y = ~(u32)0;
1675
1676         if (!fb_info->modelist.prev || !fb_info->modelist.next)
1677                 INIT_LIST_HEAD(&fb_info->modelist);
1678
1679         if (fb_info->skip_vt_switch)
1680                 pm_vt_switch_required(fb_info->dev, false);
1681         else
1682                 pm_vt_switch_required(fb_info->dev, true);
1683
1684         fb_var_to_videomode(&mode, &fb_info->var);
1685         fb_add_videomode(&mode, &fb_info->modelist);
1686         registered_fb[i] = fb_info;
1687
1688         event.info = fb_info;
1689         console_lock();
1690         if (!lock_fb_info(fb_info)) {
1691                 console_unlock();
1692                 return -ENODEV;
1693         }
1694
1695         fb_notifier_call_chain(FB_EVENT_FB_REGISTERED, &event);
1696         unlock_fb_info(fb_info);
1697         console_unlock();
1698         return 0;
1699 }
1700
1701 static int unbind_console(struct fb_info *fb_info)
1702 {
1703         struct fb_event event;
1704         int ret;
1705         int i = fb_info->node;
1706
1707         if (i < 0 || i >= FB_MAX || registered_fb[i] != fb_info)
1708                 return -EINVAL;
1709
1710         console_lock();
1711         if (!lock_fb_info(fb_info)) {
1712                 console_unlock();
1713                 return -ENODEV;
1714         }
1715
1716         event.info = fb_info;
1717         ret = fb_notifier_call_chain(FB_EVENT_FB_UNBIND, &event);
1718         unlock_fb_info(fb_info);
1719         console_unlock();
1720
1721         return ret;
1722 }
1723
1724 static int __unlink_framebuffer(struct fb_info *fb_info);
1725
1726 static int do_unregister_framebuffer(struct fb_info *fb_info)
1727 {
1728         struct fb_event event;
1729         int ret;
1730
1731         ret = unbind_console(fb_info);
1732
1733         if (ret)
1734                 return -EINVAL;
1735
1736         pm_vt_switch_unregister(fb_info->dev);
1737
1738         __unlink_framebuffer(fb_info);
1739         if (fb_info->pixmap.addr &&
1740             (fb_info->pixmap.flags & FB_PIXMAP_DEFAULT))
1741                 kfree(fb_info->pixmap.addr);
1742         fb_destroy_modelist(&fb_info->modelist);
1743         registered_fb[fb_info->node] = NULL;
1744         num_registered_fb--;
1745         fb_cleanup_device(fb_info);
1746         event.info = fb_info;
1747         console_lock();
1748         fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED, &event);
1749         console_unlock();
1750
1751         /* this may free fb info */
1752         put_fb_info(fb_info);
1753         return 0;
1754 }
1755
1756 static int __unlink_framebuffer(struct fb_info *fb_info)
1757 {
1758         int i;
1759
1760         i = fb_info->node;
1761         if (i < 0 || i >= FB_MAX || registered_fb[i] != fb_info)
1762                 return -EINVAL;
1763
1764         if (fb_info->dev) {
1765                 device_destroy(fb_class, MKDEV(FB_MAJOR, i));
1766                 fb_info->dev = NULL;
1767         }
1768
1769         return 0;
1770 }
1771
1772 int unlink_framebuffer(struct fb_info *fb_info)
1773 {
1774         int ret;
1775
1776         ret = __unlink_framebuffer(fb_info);
1777         if (ret)
1778                 return ret;
1779
1780         unbind_console(fb_info);
1781
1782         return 0;
1783 }
1784 EXPORT_SYMBOL(unlink_framebuffer);
1785
1786 int remove_conflicting_framebuffers(struct apertures_struct *a,
1787                                     const char *name, bool primary)
1788 {
1789         int ret;
1790
1791         mutex_lock(&registration_lock);
1792         ret = do_remove_conflicting_framebuffers(a, name, primary);
1793         mutex_unlock(&registration_lock);
1794
1795         return ret;
1796 }
1797 EXPORT_SYMBOL(remove_conflicting_framebuffers);
1798
1799 /**
1800  *      register_framebuffer - registers a frame buffer device
1801  *      @fb_info: frame buffer info structure
1802  *
1803  *      Registers a frame buffer device @fb_info.
1804  *
1805  *      Returns negative errno on error, or zero for success.
1806  *
1807  */
1808 int
1809 register_framebuffer(struct fb_info *fb_info)
1810 {
1811         int ret;
1812
1813         mutex_lock(&registration_lock);
1814         ret = do_register_framebuffer(fb_info);
1815         mutex_unlock(&registration_lock);
1816
1817         return ret;
1818 }
1819 EXPORT_SYMBOL(register_framebuffer);
1820
1821 /**
1822  *      unregister_framebuffer - releases a frame buffer device
1823  *      @fb_info: frame buffer info structure
1824  *
1825  *      Unregisters a frame buffer device @fb_info.
1826  *
1827  *      Returns negative errno on error, or zero for success.
1828  *
1829  *      This function will also notify the framebuffer console
1830  *      to release the driver.
1831  *
1832  *      This is meant to be called within a driver's module_exit()
1833  *      function. If this is called outside module_exit(), ensure
1834  *      that the driver implements fb_open() and fb_release() to
1835  *      check that no processes are using the device.
1836  */
1837 int
1838 unregister_framebuffer(struct fb_info *fb_info)
1839 {
1840         int ret;
1841
1842         mutex_lock(&registration_lock);
1843         ret = do_unregister_framebuffer(fb_info);
1844         mutex_unlock(&registration_lock);
1845
1846         return ret;
1847 }
1848 EXPORT_SYMBOL(unregister_framebuffer);
1849
1850 /**
1851  *      fb_set_suspend - low level driver signals suspend
1852  *      @info: framebuffer affected
1853  *      @state: 0 = resuming, !=0 = suspending
1854  *
1855  *      This is meant to be used by low level drivers to
1856  *      signal suspend/resume to the core & clients.
1857  *      It must be called with the console semaphore held
1858  */
1859 void fb_set_suspend(struct fb_info *info, int state)
1860 {
1861         struct fb_event event;
1862
1863         event.info = info;
1864         if (state) {
1865                 fb_notifier_call_chain(FB_EVENT_SUSPEND, &event);
1866                 info->state = FBINFO_STATE_SUSPENDED;
1867         } else {
1868                 info->state = FBINFO_STATE_RUNNING;
1869                 fb_notifier_call_chain(FB_EVENT_RESUME, &event);
1870         }
1871 }
1872 EXPORT_SYMBOL(fb_set_suspend);
1873
1874 /**
1875  *      fbmem_init - init frame buffer subsystem
1876  *
1877  *      Initialize the frame buffer subsystem.
1878  *
1879  *      NOTE: This function is _only_ to be called by drivers/char/mem.c.
1880  *
1881  */
1882
1883 static int __init
1884 fbmem_init(void)
1885 {
1886         proc_create("fb", 0, NULL, &fb_proc_fops);
1887
1888         if (register_chrdev(FB_MAJOR,"fb",&fb_fops))
1889                 printk("unable to get major %d for fb devs\n", FB_MAJOR);
1890
1891         fb_class = class_create(THIS_MODULE, "graphics");
1892         if (IS_ERR(fb_class)) {
1893                 printk(KERN_WARNING "Unable to create fb class; errno = %ld\n", PTR_ERR(fb_class));
1894                 fb_class = NULL;
1895         }
1896         return 0;
1897 }
1898
1899 #ifdef MODULE
1900 module_init(fbmem_init);
1901 static void __exit
1902 fbmem_exit(void)
1903 {
1904         remove_proc_entry("fb", NULL);
1905         class_destroy(fb_class);
1906         unregister_chrdev(FB_MAJOR, "fb");
1907 }
1908
1909 module_exit(fbmem_exit);
1910 MODULE_LICENSE("GPL");
1911 MODULE_DESCRIPTION("Framebuffer base");
1912 #else
1913 subsys_initcall(fbmem_init);
1914 #endif
1915
1916 int fb_new_modelist(struct fb_info *info)
1917 {
1918         struct fb_event event;
1919         struct fb_var_screeninfo var = info->var;
1920         struct list_head *pos, *n;
1921         struct fb_modelist *modelist;
1922         struct fb_videomode *m, mode;
1923         int err = 1;
1924
1925         list_for_each_safe(pos, n, &info->modelist) {
1926                 modelist = list_entry(pos, struct fb_modelist, list);
1927                 m = &modelist->mode;
1928                 fb_videomode_to_var(&var, m);
1929                 var.activate = FB_ACTIVATE_TEST;
1930                 err = fb_set_var(info, &var);
1931                 fb_var_to_videomode(&mode, &var);
1932                 if (err || !fb_mode_is_equal(m, &mode)) {
1933                         list_del(pos);
1934                         kfree(pos);
1935                 }
1936         }
1937
1938         err = 1;
1939
1940         if (!list_empty(&info->modelist)) {
1941                 event.info = info;
1942                 err = fb_notifier_call_chain(FB_EVENT_NEW_MODELIST, &event);
1943         }
1944
1945         return err;
1946 }
1947
1948 MODULE_LICENSE("GPL");