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