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