]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/video/fbmem.c
fbcon: add lifetime refcount to opened frame buffers
[mirror_ubuntu-bionic-kernel.git] / drivers / video / fbmem.c
CommitLineData
1da177e4
LT
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
1da177e4
LT
14#include <linux/module.h>
15
c7f82d9c 16#include <linux/compat.h>
1da177e4
LT
17#include <linux/types.h>
18#include <linux/errno.h>
1da177e4
LT
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>
a8f340e3 24#include <linux/vt.h>
1da177e4
LT
25#include <linux/init.h>
26#include <linux/linux_logo.h>
27#include <linux/proc_fs.h>
0aa16341 28#include <linux/seq_file.h>
1da177e4 29#include <linux/console.h>
1da177e4 30#include <linux/kmod.h>
1da177e4 31#include <linux/err.h>
1da177e4
LT
32#include <linux/device.h>
33#include <linux/efi.h>
10eb2659 34#include <linux/fb.h>
1da177e4 35
10eb2659 36#include <asm/fb.h>
1da177e4 37
1da177e4
LT
38
39 /*
40 * Frame buffer device initialization and setup routines
41 */
42
43#define FBPIXMAPSIZE (1024 * 8)
44
698b3682 45static DEFINE_MUTEX(registration_lock);
0128beee
HD
46struct fb_info *registered_fb[FB_MAX] __read_mostly;
47int num_registered_fb __read_mostly;
1da177e4 48
698b3682
LT
49static 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
65static 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
6a7f2829
AM
73int 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}
82EXPORT_SYMBOL(lock_fb_info);
83
1da177e4
LT
84/*
85 * Helpers
86 */
87
b8c90945
AD
88int fb_get_color_depth(struct fb_var_screeninfo *var,
89 struct fb_fix_screeninfo *fix)
1da177e4 90{
b8c90945
AD
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;
1da177e4
LT
108}
109EXPORT_SYMBOL(fb_get_color_depth);
110
111/*
f5a9951c 112 * Data padding functions.
1da177e4 113 */
f1ab5dac 114void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height)
1da177e4 115{
829e79b6 116 __fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height);
1da177e4 117}
f1ab5dac 118EXPORT_SYMBOL(fb_pad_aligned_buffer);
1da177e4 119
f1ab5dac
JS
120void fb_pad_unaligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 idx, u32 height,
121 u32 shift_high, u32 shift_low, u32 mod)
1da177e4
LT
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}
f1ab5dac 148EXPORT_SYMBOL(fb_pad_unaligned_buffer);
1da177e4
LT
149
150/*
151 * we need to lock this section since fb_cursor
152 * may use fb_imageblit()
153 */
154char* 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
1da177e4
LT
187
188static inline unsigned safe_shift(unsigned d, int n)
189{
190 return n < 0 ? d >> -n : d << n;
191}
192
193static 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
227static void fb_set_logo_truepalette(struct fb_info *info,
228 const struct linux_logo *logo,
229 u32 *palette)
230{
0128beee 231 static const unsigned char mask[] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
1da177e4
LT
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
257static 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
cf7ee554 268 for (i = 32; i < 32 + logo->clutsize; i++)
1da177e4
LT
269 palette[i] = i << redshift | i << greenshift | i << blueshift;
270}
271
272static void fb_set_logo(struct fb_info *info,
273 const struct linux_logo *logo, u8 *dst,
274 int depth)
275{
b8c90945 276 int i, j, k;
1da177e4 277 const u8 *src = logo->data;
b8c90945
AD
278 u8 xor = (info->fix.visual == FB_VISUAL_MONO01) ? 0xff : 0;
279 u8 fg = 1, d;
1da177e4 280
1692b37c
AD
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:
1da177e4 289 fg = 7;
1692b37c
AD
290 break;
291 }
1da177e4 292
b8c90945
AD
293 if (info->fix.visual == FB_VISUAL_MONO01 ||
294 info->fix.visual == FB_VISUAL_MONO10)
295 fg = ~((u8) (0xfff << info->var.green.length));
296
1da177e4
LT
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 */
349static struct logo_data {
350 int depth;
351 int needs_directpalette;
352 int needs_truepalette;
353 int needs_cmapreset;
354 const struct linux_logo *logo;
0128beee 355} fb_logo __read_mostly;
1da177e4 356
9c44e5f6
AD
357static 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
367static void fb_rotate_logo_cw(const u8 *in, u8 *out, u32 width, u32 height)
368{
f837e6f7 369 int i, j, h = height - 1;
9c44e5f6
AD
370
371 for (i = 0; i < height; i++)
372 for (j = 0; j < width; j++)
f837e6f7 373 out[height * j + h - i] = *in++;
9c44e5f6
AD
374}
375
376static 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
385static 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) {
9c44e5f6
AD
391 fb_rotate_logo_ud(image->data, dst, image->width,
392 image->height);
abed5d15
GU
393 image->dx = info->var.xres - image->width - image->dx;
394 image->dy = info->var.yres - image->height - image->dy;
9c44e5f6 395 } else if (rotate == FB_ROTATE_CW) {
9c44e5f6
AD
396 fb_rotate_logo_cw(image->data, dst, image->width,
397 image->height);
9c44e5f6
AD
398 tmp = image->width;
399 image->width = image->height;
400 image->height = tmp;
abed5d15
GU
401 tmp = image->dy;
402 image->dy = image->dx;
403 image->dx = info->var.xres - image->width - tmp;
f837e6f7 404 } else if (rotate == FB_ROTATE_CCW) {
9c44e5f6
AD
405 fb_rotate_logo_ccw(image->data, dst, image->width,
406 image->height);
f837e6f7
AD
407 tmp = image->width;
408 image->width = image->height;
409 image->height = tmp;
abed5d15
GU
410 tmp = image->dx;
411 image->dx = image->dy;
412 image->dy = info->var.yres - image->height - tmp;
9c44e5f6
AD
413 }
414
415 image->data = dst;
416}
417
418static void fb_do_show_logo(struct fb_info *info, struct fb_image *image,
448d4797 419 int rotate, unsigned int num)
9c44e5f6 420{
448d4797 421 unsigned int x;
9c44e5f6
AD
422
423 if (rotate == FB_ROTATE_UR) {
448d4797
GU
424 for (x = 0;
425 x < num && image->dx + image->width <= info->var.xres;
426 x++) {
9c44e5f6 427 info->fbops->fb_imageblit(info, image);
448d4797 428 image->dx += image->width + 8;
9c44e5f6
AD
429 }
430 } else if (rotate == FB_ROTATE_UD) {
448d4797 431 for (x = 0; x < num && image->dx >= 0; x++) {
9c44e5f6 432 info->fbops->fb_imageblit(info, image);
448d4797 433 image->dx -= image->width + 8;
9c44e5f6
AD
434 }
435 } else if (rotate == FB_ROTATE_CW) {
448d4797
GU
436 for (x = 0;
437 x < num && image->dy + image->height <= info->var.yres;
438 x++) {
9c44e5f6 439 info->fbops->fb_imageblit(info, image);
448d4797 440 image->dy += image->height + 8;
9c44e5f6
AD
441 }
442 } else if (rotate == FB_ROTATE_CCW) {
448d4797 443 for (x = 0; x < num && image->dy >= 0; x++) {
9c44e5f6 444 info->fbops->fb_imageblit(info, image);
448d4797 445 image->dy -= image->height + 8;
9c44e5f6
AD
446 }
447 }
448}
449
90da63e5
GU
450static int fb_show_logo_line(struct fb_info *info, int rotate,
451 const struct linux_logo *logo, int y,
452 unsigned int n)
1da177e4
LT
453{
454 u32 *palette = NULL, *saved_pseudo_palette = NULL;
9c44e5f6 455 unsigned char *logo_new = NULL, *logo_rotate = NULL;
1da177e4 456 struct fb_image image;
1da177e4
LT
457
458 /* Return if the frame buffer is not mapped or suspended */
90da63e5 459 if (logo == NULL || info->state != FBINFO_STATE_RUNNING ||
70802c60 460 info->flags & FBINFO_MODULE)
1da177e4
LT
461 return 0;
462
463 image.depth = 8;
90da63e5 464 image.data = logo->data;
1da177e4
LT
465
466 if (fb_logo.needs_cmapreset)
90da63e5 467 fb_set_logocmap(info, logo);
1da177e4 468
9900abfb 469 if (fb_logo.needs_truepalette ||
1da177e4
LT
470 fb_logo.needs_directpalette) {
471 palette = kmalloc(256 * 4, GFP_KERNEL);
472 if (palette == NULL)
473 return 0;
474
475 if (fb_logo.needs_truepalette)
90da63e5 476 fb_set_logo_truepalette(info, logo, palette);
1da177e4 477 else
90da63e5 478 fb_set_logo_directpalette(info, logo, palette);
1da177e4
LT
479
480 saved_pseudo_palette = info->pseudo_palette;
481 info->pseudo_palette = palette;
482 }
483
484 if (fb_logo.depth <= 4) {
90da63e5 485 logo_new = kmalloc(logo->width * logo->height, GFP_KERNEL);
1da177e4
LT
486 if (logo_new == NULL) {
487 kfree(palette);
488 if (saved_pseudo_palette)
489 info->pseudo_palette = saved_pseudo_palette;
490 return 0;
491 }
492 image.data = logo_new;
90da63e5 493 fb_set_logo(info, logo, logo_new, fb_logo.depth);
1da177e4
LT
494 }
495
9c44e5f6 496 image.dx = 0;
90da63e5
GU
497 image.dy = y;
498 image.width = logo->width;
499 image.height = logo->height;
1da177e4 500
9c44e5f6 501 if (rotate) {
90da63e5
GU
502 logo_rotate = kmalloc(logo->width *
503 logo->height, GFP_KERNEL);
9c44e5f6
AD
504 if (logo_rotate)
505 fb_rotate_logo(info, logo_rotate, &image, rotate);
1da177e4 506 }
9c44e5f6 507
90da63e5 508 fb_do_show_logo(info, &image, rotate, n);
9c44e5f6 509
1da177e4
LT
510 kfree(palette);
511 if (saved_pseudo_palette != NULL)
512 info->pseudo_palette = saved_pseudo_palette;
513 kfree(logo_new);
9c44e5f6 514 kfree(logo_rotate);
90da63e5
GU
515 return logo->height;
516}
517
9900abfb
GU
518
519#ifdef CONFIG_FB_LOGO_EXTRA
520
521#define FB_LOGO_EX_NUM_MAX 10
522static struct logo_data_extra {
523 const struct linux_logo *logo;
524 unsigned int n;
525} fb_logo_ex[FB_LOGO_EX_NUM_MAX];
526static unsigned int fb_logo_ex_num;
527
528void fb_append_extra_logo(const struct linux_logo *logo, unsigned int n)
529{
530 if (!n || fb_logo_ex_num == FB_LOGO_EX_NUM_MAX)
531 return;
532
533 fb_logo_ex[fb_logo_ex_num].logo = logo;
534 fb_logo_ex[fb_logo_ex_num].n = n;
535 fb_logo_ex_num++;
536}
537
538static int fb_prepare_extra_logos(struct fb_info *info, unsigned int height,
539 unsigned int yres)
540{
541 unsigned int i;
542
543 /* FIXME: logo_ex supports only truecolor fb. */
544 if (info->fix.visual != FB_VISUAL_TRUECOLOR)
545 fb_logo_ex_num = 0;
546
547 for (i = 0; i < fb_logo_ex_num; i++) {
4fb6de25
GU
548 if (fb_logo_ex[i].logo->type != fb_logo.logo->type) {
549 fb_logo_ex[i].logo = NULL;
550 continue;
551 }
9900abfb
GU
552 height += fb_logo_ex[i].logo->height;
553 if (height > yres) {
554 height -= fb_logo_ex[i].logo->height;
555 fb_logo_ex_num = i;
556 break;
557 }
558 }
559 return height;
560}
561
562static int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
563{
564 unsigned int i;
565
566 for (i = 0; i < fb_logo_ex_num; i++)
567 y += fb_show_logo_line(info, rotate,
568 fb_logo_ex[i].logo, y, fb_logo_ex[i].n);
569
570 return y;
571}
572
573#else /* !CONFIG_FB_LOGO_EXTRA */
574
575static inline int fb_prepare_extra_logos(struct fb_info *info,
576 unsigned int height,
577 unsigned int yres)
578{
579 return height;
580}
581
582static inline int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
583{
584 return y;
585}
586
587#endif /* CONFIG_FB_LOGO_EXTRA */
588
589
590int fb_prepare_logo(struct fb_info *info, int rotate)
591{
592 int depth = fb_get_color_depth(&info->var, &info->fix);
593 unsigned int yres;
594
595 memset(&fb_logo, 0, sizeof(struct logo_data));
596
597 if (info->flags & FBINFO_MISC_TILEBLITTING ||
598 info->flags & FBINFO_MODULE)
599 return 0;
600
601 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
602 depth = info->var.blue.length;
603 if (info->var.red.length < depth)
604 depth = info->var.red.length;
605 if (info->var.green.length < depth)
606 depth = info->var.green.length;
607 }
608
609 if (info->fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR && depth > 4) {
610 /* assume console colormap */
611 depth = 4;
612 }
613
9900abfb
GU
614 /* Return if no suitable logo was found */
615 fb_logo.logo = fb_find_logo(depth);
616
617 if (!fb_logo.logo) {
618 return 0;
619 }
620
621 if (rotate == FB_ROTATE_UR || rotate == FB_ROTATE_UD)
622 yres = info->var.yres;
623 else
624 yres = info->var.xres;
625
626 if (fb_logo.logo->height > yres) {
627 fb_logo.logo = NULL;
628 return 0;
629 }
630
631 /* What depth we asked for might be different from what we get */
632 if (fb_logo.logo->type == LINUX_LOGO_CLUT224)
633 fb_logo.depth = 8;
634 else if (fb_logo.logo->type == LINUX_LOGO_VGA16)
635 fb_logo.depth = 4;
636 else
637 fb_logo.depth = 1;
638
1692b37c
AD
639
640 if (fb_logo.depth > 4 && depth > 4) {
641 switch (info->fix.visual) {
642 case FB_VISUAL_TRUECOLOR:
643 fb_logo.needs_truepalette = 1;
644 break;
645 case FB_VISUAL_DIRECTCOLOR:
646 fb_logo.needs_directpalette = 1;
647 fb_logo.needs_cmapreset = 1;
648 break;
649 case FB_VISUAL_PSEUDOCOLOR:
650 fb_logo.needs_cmapreset = 1;
651 break;
652 }
653 }
654
9900abfb
GU
655 return fb_prepare_extra_logos(info, fb_logo.logo->height, yres);
656}
657
90da63e5
GU
658int fb_show_logo(struct fb_info *info, int rotate)
659{
9900abfb
GU
660 int y;
661
662 y = fb_show_logo_line(info, rotate, fb_logo.logo, 0,
663 num_online_cpus());
664 y = fb_show_extra_logos(info, y, rotate);
665
666 return y;
1da177e4
LT
667}
668#else
9c44e5f6
AD
669int fb_prepare_logo(struct fb_info *info, int rotate) { return 0; }
670int fb_show_logo(struct fb_info *info, int rotate) { return 0; }
1da177e4
LT
671#endif /* CONFIG_LOGO */
672
0aa16341
AD
673static void *fb_seq_start(struct seq_file *m, loff_t *pos)
674{
698b3682 675 mutex_lock(&registration_lock);
0aa16341
AD
676 return (*pos < FB_MAX) ? pos : NULL;
677}
678
679static void *fb_seq_next(struct seq_file *m, void *v, loff_t *pos)
680{
681 (*pos)++;
682 return (*pos < FB_MAX) ? pos : NULL;
683}
684
685static void fb_seq_stop(struct seq_file *m, void *v)
1da177e4 686{
698b3682 687 mutex_unlock(&registration_lock);
1da177e4
LT
688}
689
0aa16341
AD
690static int fb_seq_show(struct seq_file *m, void *v)
691{
692 int i = *(loff_t *)v;
693 struct fb_info *fi = registered_fb[i];
694
695 if (fi)
696 seq_printf(m, "%d %s\n", fi->node, fi->fix.id);
697 return 0;
698}
699
700static const struct seq_operations proc_fb_seq_ops = {
701 .start = fb_seq_start,
702 .next = fb_seq_next,
703 .stop = fb_seq_stop,
704 .show = fb_seq_show,
705};
706
707static int proc_fb_open(struct inode *inode, struct file *file)
708{
709 return seq_open(file, &proc_fb_seq_ops);
710}
711
712static const struct file_operations fb_proc_fops = {
713 .owner = THIS_MODULE,
714 .open = proc_fb_open,
715 .read = seq_read,
716 .llseek = seq_lseek,
717 .release = seq_release,
718};
719
1da177e4
LT
720static ssize_t
721fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
722{
723 unsigned long p = *ppos;
ad9a824e 724 struct inode *inode = file->f_path.dentry->d_inode;
1da177e4
LT
725 int fbidx = iminor(inode);
726 struct fb_info *info = registered_fb[fbidx];
f11b478d
JH
727 u8 *buffer, *dst;
728 u8 __iomem *src;
729 int c, cnt = 0, err = 0;
1da177e4
LT
730 unsigned long total_size;
731
732 if (!info || ! info->screen_base)
733 return -ENODEV;
734
735 if (info->state != FBINFO_STATE_RUNNING)
736 return -EPERM;
737
738 if (info->fbops->fb_read)
3f9b0880 739 return info->fbops->fb_read(info, buf, count, ppos);
1da177e4
LT
740
741 total_size = info->screen_size;
0a484a3a 742
1da177e4
LT
743 if (total_size == 0)
744 total_size = info->fix.smem_len;
745
746 if (p >= total_size)
0a484a3a
AD
747 return 0;
748
1da177e4 749 if (count >= total_size)
0a484a3a
AD
750 count = total_size;
751
1da177e4
LT
752 if (count + p > total_size)
753 count = total_size - p;
754
1da177e4
LT
755 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
756 GFP_KERNEL);
757 if (!buffer)
758 return -ENOMEM;
759
f11b478d 760 src = (u8 __iomem *) (info->screen_base + p);
1da177e4
LT
761
762 if (info->fbops->fb_sync)
763 info->fbops->fb_sync(info);
764
765 while (count) {
766 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
767 dst = buffer;
f11b478d
JH
768 fb_memcpy_fromfb(dst, src, c);
769 dst += c;
770 src += c;
1da177e4
LT
771
772 if (copy_to_user(buf, buffer, c)) {
773 err = -EFAULT;
774 break;
775 }
776 *ppos += c;
777 buf += c;
778 cnt += c;
779 count -= c;
780 }
781
782 kfree(buffer);
0a484a3a 783
1da177e4
LT
784 return (err) ? err : cnt;
785}
786
787static ssize_t
788fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
789{
790 unsigned long p = *ppos;
ad9a824e 791 struct inode *inode = file->f_path.dentry->d_inode;
1da177e4
LT
792 int fbidx = iminor(inode);
793 struct fb_info *info = registered_fb[fbidx];
f11b478d
JH
794 u8 *buffer, *src;
795 u8 __iomem *dst;
796 int c, cnt = 0, err = 0;
1da177e4
LT
797 unsigned long total_size;
798
799 if (!info || !info->screen_base)
800 return -ENODEV;
801
802 if (info->state != FBINFO_STATE_RUNNING)
803 return -EPERM;
804
805 if (info->fbops->fb_write)
3f9b0880 806 return info->fbops->fb_write(info, buf, count, ppos);
1da177e4
LT
807
808 total_size = info->screen_size;
0a484a3a 809
1da177e4
LT
810 if (total_size == 0)
811 total_size = info->fix.smem_len;
812
813 if (p > total_size)
6a2a8866 814 return -EFBIG;
0a484a3a 815
6a2a8866
AD
816 if (count > total_size) {
817 err = -EFBIG;
0a484a3a 818 count = total_size;
6a2a8866
AD
819 }
820
821 if (count + p > total_size) {
822 if (!err)
823 err = -ENOSPC;
0a484a3a 824
0a484a3a 825 count = total_size - p;
6a2a8866 826 }
0a484a3a 827
1da177e4
LT
828 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
829 GFP_KERNEL);
830 if (!buffer)
831 return -ENOMEM;
832
f11b478d 833 dst = (u8 __iomem *) (info->screen_base + p);
1da177e4
LT
834
835 if (info->fbops->fb_sync)
836 info->fbops->fb_sync(info);
837
838 while (count) {
839 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
840 src = buffer;
0a484a3a 841
1da177e4
LT
842 if (copy_from_user(src, buf, c)) {
843 err = -EFAULT;
844 break;
845 }
0a484a3a 846
f11b478d
JH
847 fb_memcpy_tofb(dst, src, c);
848 dst += c;
849 src += c;
1da177e4
LT
850 *ppos += c;
851 buf += c;
852 cnt += c;
853 count -= c;
854 }
0a484a3a 855
1da177e4
LT
856 kfree(buffer);
857
6a2a8866 858 return (cnt) ? cnt : err;
1da177e4
LT
859}
860
1da177e4
LT
861int
862fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var)
863{
1207069f 864 struct fb_fix_screeninfo *fix = &info->fix;
7572a1ea
VS
865 unsigned int yres = info->var.yres;
866 int err = 0;
1207069f
AD
867
868 if (var->yoffset > 0) {
869 if (var->vmode & FB_VMODE_YWRAP) {
870 if (!fix->ywrapstep || (var->yoffset % fix->ywrapstep))
871 err = -EINVAL;
872 else
873 yres = 0;
874 } else if (!fix->ypanstep || (var->yoffset % fix->ypanstep))
875 err = -EINVAL;
876 }
877
878 if (var->xoffset > 0 && (!fix->xpanstep ||
879 (var->xoffset % fix->xpanstep)))
880 err = -EINVAL;
881
7572a1ea 882 if (err || !info->fbops->fb_pan_display ||
99e9e7d6
FTS
883 var->yoffset > info->var.yres_virtual - yres ||
884 var->xoffset > info->var.xres_virtual - info->var.xres)
1207069f 885 return -EINVAL;
1da177e4 886
1da177e4
LT
887 if ((err = info->fbops->fb_pan_display(var, info)))
888 return err;
c9c62dce
JH
889 info->var.xoffset = var->xoffset;
890 info->var.yoffset = var->yoffset;
891 if (var->vmode & FB_VMODE_YWRAP)
892 info->var.vmode |= FB_VMODE_YWRAP;
893 else
894 info->var.vmode &= ~FB_VMODE_YWRAP;
895 return 0;
1da177e4
LT
896}
897
38a3dc51
AD
898static int fb_check_caps(struct fb_info *info, struct fb_var_screeninfo *var,
899 u32 activate)
900{
901 struct fb_event event;
902 struct fb_blit_caps caps, fbcaps;
903 int err = 0;
904
905 memset(&caps, 0, sizeof(caps));
906 memset(&fbcaps, 0, sizeof(fbcaps));
907 caps.flags = (activate & FB_ACTIVATE_ALL) ? 1 : 0;
908 event.info = info;
909 event.data = &caps;
910 fb_notifier_call_chain(FB_EVENT_GET_REQ, &event);
911 info->fbops->fb_get_caps(info, &fbcaps, var);
912
913 if (((fbcaps.x ^ caps.x) & caps.x) ||
914 ((fbcaps.y ^ caps.y) & caps.y) ||
915 (fbcaps.len < caps.len))
916 err = -EINVAL;
917
918 return err;
919}
920
1da177e4
LT
921int
922fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var)
923{
b1e7223f
AD
924 int flags = info->flags;
925 int ret = 0;
1da177e4
LT
926
927 if (var->activate & FB_ACTIVATE_INV_MODE) {
928 struct fb_videomode mode1, mode2;
1da177e4
LT
929
930 fb_var_to_videomode(&mode1, var);
931 fb_var_to_videomode(&mode2, &info->var);
932 /* make sure we don't delete the videomode of current var */
933 ret = fb_mode_is_equal(&mode1, &mode2);
934
935 if (!ret) {
936 struct fb_event event;
937
938 event.info = info;
939 event.data = &mode1;
256154fb 940 ret = fb_notifier_call_chain(FB_EVENT_MODE_DELETE, &event);
1da177e4
LT
941 }
942
943 if (!ret)
944 fb_delete_videomode(&mode1, &info->modelist);
945
b1e7223f
AD
946
947 ret = (ret) ? -EINVAL : 0;
948 goto done;
1da177e4
LT
949 }
950
951 if ((var->activate & FB_ACTIVATE_FORCE) ||
952 memcmp(&info->var, var, sizeof(struct fb_var_screeninfo))) {
4941cb7a
AD
953 u32 activate = var->activate;
954
1da177e4
LT
955 if (!info->fbops->fb_check_var) {
956 *var = info->var;
b1e7223f 957 goto done;
1da177e4
LT
958 }
959
b1e7223f
AD
960 ret = info->fbops->fb_check_var(var, info);
961
962 if (ret)
963 goto done;
1da177e4
LT
964
965 if ((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) {
0fcf6ada 966 struct fb_var_screeninfo old_var;
1da177e4 967 struct fb_videomode mode;
1da177e4 968
38a3dc51 969 if (info->fbops->fb_get_caps) {
b1e7223f 970 ret = fb_check_caps(info, var, activate);
38a3dc51 971
b1e7223f 972 if (ret)
38a3dc51
AD
973 goto done;
974 }
975
0fcf6ada 976 old_var = info->var;
1da177e4 977 info->var = *var;
38a3dc51 978
0fcf6ada
FTS
979 if (info->fbops->fb_set_par) {
980 ret = info->fbops->fb_set_par(info);
981
982 if (ret) {
983 info->var = old_var;
984 printk(KERN_WARNING "detected "
985 "fb_set_par error, "
986 "error code: %d\n", ret);
987 goto done;
988 }
989 }
1da177e4
LT
990
991 fb_pan_display(info, &info->var);
1da177e4 992 fb_set_cmap(&info->cmap, info);
1da177e4
LT
993 fb_var_to_videomode(&mode, &info->var);
994
995 if (info->modelist.prev && info->modelist.next &&
996 !list_empty(&info->modelist))
b1e7223f 997 ret = fb_add_videomode(&mode, &info->modelist);
1da177e4 998
b1e7223f 999 if (!ret && (flags & FBINFO_MISC_USEREVENT)) {
1da177e4 1000 struct fb_event event;
4941cb7a 1001 int evnt = (activate & FB_ACTIVATE_ALL) ?
7726e9e1
AD
1002 FB_EVENT_MODE_CHANGE_ALL :
1003 FB_EVENT_MODE_CHANGE;
1da177e4
LT
1004
1005 info->flags &= ~FBINFO_MISC_USEREVENT;
1006 event.info = info;
faa312da 1007 event.data = &mode;
256154fb 1008 fb_notifier_call_chain(evnt, &event);
1da177e4
LT
1009 }
1010 }
1011 }
38a3dc51
AD
1012
1013 done:
b1e7223f 1014 return ret;
1da177e4
LT
1015}
1016
1017int
1018fb_blank(struct fb_info *info, int blank)
1019{
1020 int ret = -EINVAL;
1021
1022 if (blank > FB_BLANK_POWERDOWN)
1023 blank = FB_BLANK_POWERDOWN;
1024
1025 if (info->fbops->fb_blank)
1026 ret = info->fbops->fb_blank(blank, info);
1027
1028 if (!ret) {
1029 struct fb_event event;
1030
1031 event.info = info;
1032 event.data = &blank;
256154fb 1033 fb_notifier_call_chain(FB_EVENT_BLANK, &event);
1da177e4
LT
1034 }
1035
1036 return ret;
1037}
1038
a684e7d3
GU
1039static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,
1040 unsigned long arg)
1da177e4 1041{
e5367711 1042 struct fb_ops *fb;
1da177e4
LT
1043 struct fb_var_screeninfo var;
1044 struct fb_fix_screeninfo fix;
1045 struct fb_con2fbmap con2fb;
1f5e31d7 1046 struct fb_cmap cmap_from;
1da177e4
LT
1047 struct fb_cmap_user cmap;
1048 struct fb_event event;
1049 void __user *argp = (void __user *)arg;
e5367711
AC
1050 long ret = 0;
1051
1da177e4
LT
1052 switch (cmd) {
1053 case FBIOGET_VSCREENINFO:
1f5e31d7
AR
1054 if (!lock_fb_info(info))
1055 return -ENODEV;
1056 var = info->var;
1057 unlock_fb_info(info);
1058
1059 ret = copy_to_user(argp, &var, sizeof(var)) ? -EFAULT : 0;
e5367711 1060 break;
1da177e4 1061 case FBIOPUT_VSCREENINFO:
1f5e31d7
AR
1062 if (copy_from_user(&var, argp, sizeof(var)))
1063 return -EFAULT;
1064 if (!lock_fb_info(info))
1065 return -ENODEV;
ac751efa 1066 console_lock();
1da177e4 1067 info->flags |= FBINFO_MISC_USEREVENT;
e5367711 1068 ret = fb_set_var(info, &var);
1da177e4 1069 info->flags &= ~FBINFO_MISC_USEREVENT;
ac751efa 1070 console_unlock();
1f5e31d7
AR
1071 unlock_fb_info(info);
1072 if (!ret && copy_to_user(argp, &var, sizeof(var)))
e5367711
AC
1073 ret = -EFAULT;
1074 break;
1da177e4 1075 case FBIOGET_FSCREENINFO:
1f5e31d7
AR
1076 if (!lock_fb_info(info))
1077 return -ENODEV;
1078 fix = info->fix;
1079 unlock_fb_info(info);
1080
1081 ret = copy_to_user(argp, &fix, sizeof(fix)) ? -EFAULT : 0;
e5367711 1082 break;
1da177e4
LT
1083 case FBIOPUTCMAP:
1084 if (copy_from_user(&cmap, argp, sizeof(cmap)))
1f5e31d7
AR
1085 return -EFAULT;
1086 ret = fb_set_user_cmap(&cmap, info);
e5367711 1087 break;
1da177e4
LT
1088 case FBIOGETCMAP:
1089 if (copy_from_user(&cmap, argp, sizeof(cmap)))
1f5e31d7
AR
1090 return -EFAULT;
1091 if (!lock_fb_info(info))
1092 return -ENODEV;
1093 cmap_from = info->cmap;
1094 unlock_fb_info(info);
1095 ret = fb_cmap_to_user(&cmap_from, &cmap);
e5367711 1096 break;
1da177e4 1097 case FBIOPAN_DISPLAY:
1f5e31d7
AR
1098 if (copy_from_user(&var, argp, sizeof(var)))
1099 return -EFAULT;
1100 if (!lock_fb_info(info))
1101 return -ENODEV;
ac751efa 1102 console_lock();
e5367711 1103 ret = fb_pan_display(info, &var);
ac751efa 1104 console_unlock();
1f5e31d7 1105 unlock_fb_info(info);
e5367711 1106 if (ret == 0 && copy_to_user(argp, &var, sizeof(var)))
1f5e31d7 1107 return -EFAULT;
e5367711 1108 break;
1da177e4 1109 case FBIO_CURSOR:
e5367711
AC
1110 ret = -EINVAL;
1111 break;
1da177e4
LT
1112 case FBIOGET_CON2FBMAP:
1113 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
1f5e31d7
AR
1114 return -EFAULT;
1115 if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
1116 return -EINVAL;
1117 con2fb.framebuffer = -1;
1118 event.data = &con2fb;
513adb58
AR
1119 if (!lock_fb_info(info))
1120 return -ENODEV;
1f5e31d7
AR
1121 event.info = info;
1122 fb_notifier_call_chain(FB_EVENT_GET_CONSOLE_MAP, &event);
513adb58 1123 unlock_fb_info(info);
1f5e31d7 1124 ret = copy_to_user(argp, &con2fb, sizeof(con2fb)) ? -EFAULT : 0;
e5367711 1125 break;
1da177e4 1126 case FBIOPUT_CON2FBMAP:
1f5e31d7
AR
1127 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
1128 return -EFAULT;
1129 if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
1130 return -EINVAL;
1131 if (con2fb.framebuffer < 0 || con2fb.framebuffer >= FB_MAX)
1132 return -EINVAL;
1da177e4 1133 if (!registered_fb[con2fb.framebuffer])
e5367711
AC
1134 request_module("fb%d", con2fb.framebuffer);
1135 if (!registered_fb[con2fb.framebuffer]) {
1136 ret = -EINVAL;
1137 break;
1138 }
1da177e4 1139 event.data = &con2fb;
513adb58
AR
1140 if (!lock_fb_info(info))
1141 return -ENODEV;
1f5e31d7 1142 event.info = info;
66c1ca01 1143 ret = fb_notifier_call_chain(FB_EVENT_SET_CONSOLE_MAP, &event);
513adb58 1144 unlock_fb_info(info);
e5367711 1145 break;
1da177e4 1146 case FBIOBLANK:
1f5e31d7
AR
1147 if (!lock_fb_info(info))
1148 return -ENODEV;
ac751efa 1149 console_lock();
1da177e4 1150 info->flags |= FBINFO_MISC_USEREVENT;
e5367711 1151 ret = fb_blank(info, arg);
1da177e4 1152 info->flags &= ~FBINFO_MISC_USEREVENT;
ac751efa 1153 console_unlock();
1f5e31d7
AR
1154 unlock_fb_info(info);
1155 break;
1da177e4 1156 default:
1f5e31d7
AR
1157 if (!lock_fb_info(info))
1158 return -ENODEV;
1159 fb = info->fbops;
1160 if (fb->fb_ioctl)
e5367711 1161 ret = fb->fb_ioctl(info, cmd, arg);
1f5e31d7
AR
1162 else
1163 ret = -ENOTTY;
1164 unlock_fb_info(info);
1da177e4 1165 }
a684e7d3
GU
1166 return ret;
1167}
1168
1169static long fb_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
a684e7d3
GU
1170{
1171 struct inode *inode = file->f_path.dentry->d_inode;
1172 int fbidx = iminor(inode);
1f5e31d7 1173 struct fb_info *info = registered_fb[fbidx];
a684e7d3 1174
1f5e31d7 1175 return do_fb_ioctl(info, cmd, arg);
1da177e4
LT
1176}
1177
1178#ifdef CONFIG_COMPAT
c7f82d9c
AB
1179struct fb_fix_screeninfo32 {
1180 char id[16];
1181 compat_caddr_t smem_start;
1182 u32 smem_len;
1183 u32 type;
1184 u32 type_aux;
1185 u32 visual;
1186 u16 xpanstep;
1187 u16 ypanstep;
1188 u16 ywrapstep;
1189 u32 line_length;
1190 compat_caddr_t mmio_start;
1191 u32 mmio_len;
1192 u32 accel;
1193 u16 reserved[3];
1194};
1195
1196struct fb_cmap32 {
1197 u32 start;
1198 u32 len;
1199 compat_caddr_t red;
1200 compat_caddr_t green;
1201 compat_caddr_t blue;
1202 compat_caddr_t transp;
1203};
1204
a684e7d3
GU
1205static int fb_getput_cmap(struct fb_info *info, unsigned int cmd,
1206 unsigned long arg)
c7f82d9c
AB
1207{
1208 struct fb_cmap_user __user *cmap;
1209 struct fb_cmap32 __user *cmap32;
1210 __u32 data;
1211 int err;
1212
1213 cmap = compat_alloc_user_space(sizeof(*cmap));
1214 cmap32 = compat_ptr(arg);
1215
1216 if (copy_in_user(&cmap->start, &cmap32->start, 2 * sizeof(__u32)))
1217 return -EFAULT;
1218
1219 if (get_user(data, &cmap32->red) ||
1220 put_user(compat_ptr(data), &cmap->red) ||
1221 get_user(data, &cmap32->green) ||
1222 put_user(compat_ptr(data), &cmap->green) ||
1223 get_user(data, &cmap32->blue) ||
1224 put_user(compat_ptr(data), &cmap->blue) ||
1225 get_user(data, &cmap32->transp) ||
1226 put_user(compat_ptr(data), &cmap->transp))
1227 return -EFAULT;
1228
a684e7d3 1229 err = do_fb_ioctl(info, cmd, (unsigned long) cmap);
c7f82d9c
AB
1230
1231 if (!err) {
1232 if (copy_in_user(&cmap32->start,
1233 &cmap->start,
1234 2 * sizeof(__u32)))
1235 err = -EFAULT;
1236 }
1237 return err;
1238}
1239
1240static int do_fscreeninfo_to_user(struct fb_fix_screeninfo *fix,
1241 struct fb_fix_screeninfo32 __user *fix32)
1242{
1243 __u32 data;
1244 int err;
1245
1246 err = copy_to_user(&fix32->id, &fix->id, sizeof(fix32->id));
1247
1248 data = (__u32) (unsigned long) fix->smem_start;
1249 err |= put_user(data, &fix32->smem_start);
1250
1251 err |= put_user(fix->smem_len, &fix32->smem_len);
1252 err |= put_user(fix->type, &fix32->type);
1253 err |= put_user(fix->type_aux, &fix32->type_aux);
1254 err |= put_user(fix->visual, &fix32->visual);
1255 err |= put_user(fix->xpanstep, &fix32->xpanstep);
1256 err |= put_user(fix->ypanstep, &fix32->ypanstep);
1257 err |= put_user(fix->ywrapstep, &fix32->ywrapstep);
1258 err |= put_user(fix->line_length, &fix32->line_length);
1259
1260 data = (__u32) (unsigned long) fix->mmio_start;
1261 err |= put_user(data, &fix32->mmio_start);
1262
1263 err |= put_user(fix->mmio_len, &fix32->mmio_len);
1264 err |= put_user(fix->accel, &fix32->accel);
1265 err |= copy_to_user(fix32->reserved, fix->reserved,
1266 sizeof(fix->reserved));
1267
1268 return err;
1269}
1270
a684e7d3
GU
1271static int fb_get_fscreeninfo(struct fb_info *info, unsigned int cmd,
1272 unsigned long arg)
c7f82d9c
AB
1273{
1274 mm_segment_t old_fs;
1275 struct fb_fix_screeninfo fix;
1276 struct fb_fix_screeninfo32 __user *fix32;
1277 int err;
1278
1279 fix32 = compat_ptr(arg);
1280
1281 old_fs = get_fs();
1282 set_fs(KERNEL_DS);
a684e7d3 1283 err = do_fb_ioctl(info, cmd, (unsigned long) &fix);
c7f82d9c
AB
1284 set_fs(old_fs);
1285
1286 if (!err)
1287 err = do_fscreeninfo_to_user(&fix, fix32);
1288
1289 return err;
1290}
1291
a684e7d3
GU
1292static long fb_compat_ioctl(struct file *file, unsigned int cmd,
1293 unsigned long arg)
1da177e4 1294{
ad9a824e 1295 struct inode *inode = file->f_path.dentry->d_inode;
c7f82d9c 1296 int fbidx = iminor(inode);
1da177e4
LT
1297 struct fb_info *info = registered_fb[fbidx];
1298 struct fb_ops *fb = info->fbops;
c7f82d9c 1299 long ret = -ENOIOCTLCMD;
1da177e4 1300
c7f82d9c
AB
1301 switch(cmd) {
1302 case FBIOGET_VSCREENINFO:
1303 case FBIOPUT_VSCREENINFO:
1304 case FBIOPAN_DISPLAY:
1305 case FBIOGET_CON2FBMAP:
1306 case FBIOPUT_CON2FBMAP:
1307 arg = (unsigned long) compat_ptr(arg);
1308 case FBIOBLANK:
a684e7d3
GU
1309 ret = do_fb_ioctl(info, cmd, arg);
1310 break;
c7f82d9c
AB
1311
1312 case FBIOGET_FSCREENINFO:
a684e7d3 1313 ret = fb_get_fscreeninfo(info, cmd, arg);
c7f82d9c
AB
1314 break;
1315
1316 case FBIOGETCMAP:
1317 case FBIOPUTCMAP:
a684e7d3 1318 ret = fb_getput_cmap(info, cmd, arg);
c7f82d9c
AB
1319 break;
1320
1321 default:
1322 if (fb->fb_compat_ioctl)
67a6680d 1323 ret = fb->fb_compat_ioctl(info, cmd, arg);
c7f82d9c
AB
1324 break;
1325 }
1da177e4
LT
1326 return ret;
1327}
1328#endif
1329
10eb2659 1330static int
1da177e4
LT
1331fb_mmap(struct file *file, struct vm_area_struct * vma)
1332{
ad9a824e 1333 int fbidx = iminor(file->f_path.dentry->d_inode);
1da177e4
LT
1334 struct fb_info *info = registered_fb[fbidx];
1335 struct fb_ops *fb = info->fbops;
1336 unsigned long off;
1da177e4
LT
1337 unsigned long start;
1338 u32 len;
1da177e4
LT
1339
1340 if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT))
1341 return -EINVAL;
1342 off = vma->vm_pgoff << PAGE_SHIFT;
1343 if (!fb)
1344 return -ENODEV;
537a1bf0 1345 mutex_lock(&info->mm_lock);
1da177e4
LT
1346 if (fb->fb_mmap) {
1347 int res;
216d526c 1348 res = fb->fb_mmap(info, vma);
537a1bf0 1349 mutex_unlock(&info->mm_lock);
1da177e4
LT
1350 return res;
1351 }
1352
1da177e4
LT
1353 /* frame buffer memory */
1354 start = info->fix.smem_start;
1355 len = PAGE_ALIGN((start & ~PAGE_MASK) + info->fix.smem_len);
1356 if (off >= len) {
1357 /* memory mapped io */
1358 off -= len;
1359 if (info->var.accel_flags) {
537a1bf0 1360 mutex_unlock(&info->mm_lock);
1da177e4
LT
1361 return -EINVAL;
1362 }
1363 start = info->fix.mmio_start;
1364 len = PAGE_ALIGN((start & ~PAGE_MASK) + info->fix.mmio_len);
1365 }
537a1bf0 1366 mutex_unlock(&info->mm_lock);
1da177e4
LT
1367 start &= PAGE_MASK;
1368 if ((vma->vm_end - vma->vm_start + off) > len)
1369 return -EINVAL;
1370 off += start;
1371 vma->vm_pgoff = off >> PAGE_SHIFT;
1372 /* This is an IO map - tell maydump to skip this VMA */
1373 vma->vm_flags |= VM_IO | VM_RESERVED;
c07fbfd1 1374 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
10eb2659 1375 fb_pgprotect(file, vma, off);
1da177e4
LT
1376 if (io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT,
1377 vma->vm_end - vma->vm_start, vma->vm_page_prot))
1378 return -EAGAIN;
1da177e4 1379 return 0;
1da177e4
LT
1380}
1381
1382static int
1383fb_open(struct inode *inode, struct file *file)
a684e7d3
GU
1384__acquires(&info->lock)
1385__releases(&info->lock)
1da177e4
LT
1386{
1387 int fbidx = iminor(inode);
1388 struct fb_info *info;
1389 int res = 0;
1390
698b3682
LT
1391 info = get_fb_info(fbidx);
1392 if (!info) {
a65e5d78 1393 request_module("fb%d", fbidx);
698b3682
LT
1394 info = get_fb_info(fbidx);
1395 if (!info)
1396 return -ENODEV;
1397 }
1398 if (IS_ERR(info))
1399 return PTR_ERR(info);
1400
3e680aae 1401 mutex_lock(&info->lock);
fc7f687a
JC
1402 if (!try_module_get(info->fbops->owner)) {
1403 res = -ENODEV;
1404 goto out;
1405 }
cae8a12f 1406 file->private_data = info;
1da177e4
LT
1407 if (info->fbops->fb_open) {
1408 res = info->fbops->fb_open(info,1);
1409 if (res)
1410 module_put(info->fbops->owner);
1411 }
d847471d
IC
1412#ifdef CONFIG_FB_DEFERRED_IO
1413 if (info->fbdefio)
1414 fb_deferred_io_open(info, inode, file);
1415#endif
fc7f687a 1416out:
3e680aae 1417 mutex_unlock(&info->lock);
698b3682
LT
1418 if (res)
1419 put_fb_info(info);
1da177e4
LT
1420 return res;
1421}
1422
1423static int
1424fb_release(struct inode *inode, struct file *file)
a684e7d3
GU
1425__acquires(&info->lock)
1426__releases(&info->lock)
1da177e4 1427{
cae8a12f 1428 struct fb_info * const info = file->private_data;
1da177e4 1429
3e680aae 1430 mutex_lock(&info->lock);
1da177e4
LT
1431 if (info->fbops->fb_release)
1432 info->fbops->fb_release(info,1);
1433 module_put(info->fbops->owner);
3e680aae 1434 mutex_unlock(&info->lock);
698b3682 1435 put_fb_info(info);
1da177e4
LT
1436 return 0;
1437}
1438
0128beee 1439static const struct file_operations fb_fops = {
1da177e4
LT
1440 .owner = THIS_MODULE,
1441 .read = fb_read,
1442 .write = fb_write,
e5367711 1443 .unlocked_ioctl = fb_ioctl,
1da177e4
LT
1444#ifdef CONFIG_COMPAT
1445 .compat_ioctl = fb_compat_ioctl,
1446#endif
1447 .mmap = fb_mmap,
1448 .open = fb_open,
1449 .release = fb_release,
1450#ifdef HAVE_ARCH_FB_UNMAPPED_AREA
1451 .get_unmapped_area = get_fb_unmapped_area,
1452#endif
5e841b88
PM
1453#ifdef CONFIG_FB_DEFERRED_IO
1454 .fsync = fb_deferred_io_fsync,
1455#endif
6038f373 1456 .llseek = default_llseek,
1da177e4
LT
1457};
1458
9a179176
AD
1459struct class *fb_class;
1460EXPORT_SYMBOL(fb_class);
e4c690e0
AV
1461
1462static int fb_check_foreignness(struct fb_info *fi)
1463{
1464 const bool foreign_endian = fi->flags & FBINFO_FOREIGN_ENDIAN;
1465
1466 fi->flags &= ~FBINFO_FOREIGN_ENDIAN;
1467
1468#ifdef __BIG_ENDIAN
1469 fi->flags |= foreign_endian ? 0 : FBINFO_BE_MATH;
1470#else
1471 fi->flags |= foreign_endian ? FBINFO_BE_MATH : 0;
1472#endif /* __BIG_ENDIAN */
1473
1474 if (fi->flags & FBINFO_BE_MATH && !fb_be_math(fi)) {
1475 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1476 "support this framebuffer\n", fi->fix.id);
1477 return -ENOSYS;
1478 } else if (!(fi->flags & FBINFO_BE_MATH) && fb_be_math(fi)) {
1479 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1480 "support this framebuffer\n", fi->fix.id);
1481 return -ENOSYS;
1482 }
1483
1484 return 0;
1485}
1486
1471ca9a 1487static bool apertures_overlap(struct aperture *gen, struct aperture *hw)
4410f391
DA
1488{
1489 /* is the generic aperture base the same as the HW one */
1471ca9a 1490 if (gen->base == hw->base)
4410f391
DA
1491 return true;
1492 /* is the generic aperture base inside the hw base->hw base+size */
acd0acb6 1493 if (gen->base > hw->base && gen->base < hw->base + hw->size)
4410f391
DA
1494 return true;
1495 return false;
1496}
1471ca9a 1497
06415c56
MS
1498static bool fb_do_apertures_overlap(struct apertures_struct *gena,
1499 struct apertures_struct *hwa)
1471ca9a
MS
1500{
1501 int i, j;
1471ca9a
MS
1502 if (!hwa || !gena)
1503 return false;
1504
1505 for (i = 0; i < hwa->count; ++i) {
1506 struct aperture *h = &hwa->ranges[i];
1507 for (j = 0; j < gena->count; ++j) {
1508 struct aperture *g = &gena->ranges[j];
1509 printk(KERN_DEBUG "checking generic (%llx %llx) vs hw (%llx %llx)\n",
f4b87dee
RD
1510 (unsigned long long)g->base,
1511 (unsigned long long)g->size,
1512 (unsigned long long)h->base,
1513 (unsigned long long)h->size);
1471ca9a
MS
1514 if (apertures_overlap(g, h))
1515 return true;
1516 }
1517 }
1518
1519 return false;
1520}
1521
3b9676e7
MS
1522#define VGA_FB_PHYS 0xA0000
1523void remove_conflicting_framebuffers(struct apertures_struct *a,
1524 const char *name, bool primary)
06415c56
MS
1525{
1526 int i;
1527
1528 /* check all firmware fbs and kick off if the base addr overlaps */
1529 for (i = 0 ; i < FB_MAX; i++) {
3b9676e7 1530 struct apertures_struct *gen_aper;
06415c56
MS
1531 if (!registered_fb[i])
1532 continue;
1533
1534 if (!(registered_fb[i]->flags & FBINFO_MISC_FIRMWARE))
1535 continue;
1536
3b9676e7
MS
1537 gen_aper = registered_fb[i]->apertures;
1538 if (fb_do_apertures_overlap(gen_aper, a) ||
1539 (primary && gen_aper && gen_aper->count &&
1540 gen_aper->ranges[0].base == VGA_FB_PHYS)) {
1541
47c87d93 1542 printk(KERN_INFO "fb: conflicting fb hw usage "
06415c56
MS
1543 "%s vs %s - removing generic driver\n",
1544 name, registered_fb[i]->fix.id);
1545 unregister_framebuffer(registered_fb[i]);
1546 }
1547 }
1548}
1549EXPORT_SYMBOL(remove_conflicting_framebuffers);
1550
1da177e4
LT
1551/**
1552 * register_framebuffer - registers a frame buffer device
1553 * @fb_info: frame buffer info structure
1554 *
1555 * Registers a frame buffer device @fb_info.
1556 *
1557 * Returns negative errno on error, or zero for success.
1558 *
1559 */
1560
1561int
1562register_framebuffer(struct fb_info *fb_info)
1563{
1564 int i;
1565 struct fb_event event;
96fe6a21 1566 struct fb_videomode mode;
1da177e4
LT
1567
1568 if (num_registered_fb == FB_MAX)
1569 return -ENXIO;
e4c690e0
AV
1570
1571 if (fb_check_foreignness(fb_info))
1572 return -ENOSYS;
1573
3b9676e7
MS
1574 remove_conflicting_framebuffers(fb_info->apertures, fb_info->fix.id,
1575 fb_is_primary_device(fb_info));
4410f391 1576
698b3682 1577 mutex_lock(&registration_lock);
1da177e4
LT
1578 num_registered_fb++;
1579 for (i = 0 ; i < FB_MAX; i++)
1580 if (!registered_fb[i])
1581 break;
1582 fb_info->node = i;
698b3682 1583 atomic_set(&fb_info->count, 1);
6c96895e
LT
1584 mutex_init(&fb_info->lock);
1585 mutex_init(&fb_info->mm_lock);
1da177e4 1586
77997aaa
GKH
1587 fb_info->dev = device_create(fb_class, fb_info->device,
1588 MKDEV(FB_MAJOR, i), NULL, "fb%d", i);
78cde088 1589 if (IS_ERR(fb_info->dev)) {
1da177e4 1590 /* Not fatal */
78cde088
GKH
1591 printk(KERN_WARNING "Unable to create device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->dev));
1592 fb_info->dev = NULL;
1da177e4 1593 } else
78cde088 1594 fb_init_device(fb_info);
1da177e4
LT
1595
1596 if (fb_info->pixmap.addr == NULL) {
1597 fb_info->pixmap.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL);
1598 if (fb_info->pixmap.addr) {
1599 fb_info->pixmap.size = FBPIXMAPSIZE;
1600 fb_info->pixmap.buf_align = 1;
1601 fb_info->pixmap.scan_align = 1;
58a60643 1602 fb_info->pixmap.access_align = 32;
1da177e4
LT
1603 fb_info->pixmap.flags = FB_PIXMAP_DEFAULT;
1604 }
1605 }
1606 fb_info->pixmap.offset = 0;
1607
bf26ad72
AD
1608 if (!fb_info->pixmap.blit_x)
1609 fb_info->pixmap.blit_x = ~(u32)0;
1610
1611 if (!fb_info->pixmap.blit_y)
1612 fb_info->pixmap.blit_y = ~(u32)0;
1613
96fe6a21 1614 if (!fb_info->modelist.prev || !fb_info->modelist.next)
1da177e4 1615 INIT_LIST_HEAD(&fb_info->modelist);
1da177e4 1616
96fe6a21
AD
1617 fb_var_to_videomode(&mode, &fb_info->var);
1618 fb_add_videomode(&mode, &fb_info->modelist);
1da177e4 1619 registered_fb[i] = fb_info;
698b3682 1620 mutex_unlock(&registration_lock);
1da177e4 1621
1da177e4 1622 event.info = fb_info;
513adb58
AR
1623 if (!lock_fb_info(fb_info))
1624 return -ENODEV;
256154fb 1625 fb_notifier_call_chain(FB_EVENT_FB_REGISTERED, &event);
513adb58 1626 unlock_fb_info(fb_info);
1da177e4
LT
1627 return 0;
1628}
1629
1630
1631/**
1632 * unregister_framebuffer - releases a frame buffer device
1633 * @fb_info: frame buffer info structure
1634 *
1635 * Unregisters a frame buffer device @fb_info.
1636 *
1637 * Returns negative errno on error, or zero for success.
1638 *
cfafca80
JB
1639 * This function will also notify the framebuffer console
1640 * to release the driver.
1641 *
1642 * This is meant to be called within a driver's module_exit()
1643 * function. If this is called outside module_exit(), ensure
1644 * that the driver implements fb_open() and fb_release() to
1645 * check that no processes are using the device.
1da177e4
LT
1646 */
1647
1648int
1649unregister_framebuffer(struct fb_info *fb_info)
1650{
e614b18d 1651 struct fb_event event;
cfafca80 1652 int i, ret = 0;
1da177e4 1653
698b3682 1654 mutex_lock(&registration_lock);
1da177e4 1655 i = fb_info->node;
cfafca80
JB
1656 if (!registered_fb[i]) {
1657 ret = -EINVAL;
1658 goto done;
1659 }
1660
513adb58
AR
1661
1662 if (!lock_fb_info(fb_info))
1663 return -ENODEV;
cfafca80
JB
1664 event.info = fb_info;
1665 ret = fb_notifier_call_chain(FB_EVENT_FB_UNBIND, &event);
513adb58 1666 unlock_fb_info(fb_info);
cfafca80
JB
1667
1668 if (ret) {
1669 ret = -EINVAL;
1670 goto done;
1671 }
1da177e4 1672
e614b18d
AD
1673 if (fb_info->pixmap.addr &&
1674 (fb_info->pixmap.flags & FB_PIXMAP_DEFAULT))
1da177e4
LT
1675 kfree(fb_info->pixmap.addr);
1676 fb_destroy_modelist(&fb_info->modelist);
698b3682 1677 registered_fb[i] = NULL;
1da177e4 1678 num_registered_fb--;
78cde088
GKH
1679 fb_cleanup_device(fb_info);
1680 device_destroy(fb_class, MKDEV(FB_MAJOR, i));
e614b18d 1681 event.info = fb_info;
256154fb 1682 fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED, &event);
4410f391
DA
1683
1684 /* this may free fb info */
698b3682 1685 put_fb_info(fb_info);
cfafca80 1686done:
698b3682 1687 mutex_unlock(&registration_lock);
cfafca80 1688 return ret;
1da177e4
LT
1689}
1690
1da177e4
LT
1691/**
1692 * fb_set_suspend - low level driver signals suspend
1693 * @info: framebuffer affected
1694 * @state: 0 = resuming, !=0 = suspending
1695 *
1696 * This is meant to be used by low level drivers to
1697 * signal suspend/resume to the core & clients.
1698 * It must be called with the console semaphore held
1699 */
1700void fb_set_suspend(struct fb_info *info, int state)
1701{
1702 struct fb_event event;
1703
513adb58
AR
1704 if (!lock_fb_info(info))
1705 return;
1da177e4
LT
1706 event.info = info;
1707 if (state) {
256154fb 1708 fb_notifier_call_chain(FB_EVENT_SUSPEND, &event);
1da177e4
LT
1709 info->state = FBINFO_STATE_SUSPENDED;
1710 } else {
1711 info->state = FBINFO_STATE_RUNNING;
256154fb 1712 fb_notifier_call_chain(FB_EVENT_RESUME, &event);
1da177e4 1713 }
513adb58 1714 unlock_fb_info(info);
1da177e4
LT
1715}
1716
1717/**
1718 * fbmem_init - init frame buffer subsystem
1719 *
1720 * Initialize the frame buffer subsystem.
1721 *
1722 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1723 *
1724 */
1725
1726static int __init
1727fbmem_init(void)
1728{
0aa16341 1729 proc_create("fb", 0, NULL, &fb_proc_fops);
1da177e4 1730
1da177e4
LT
1731 if (register_chrdev(FB_MAJOR,"fb",&fb_fops))
1732 printk("unable to get major %d for fb devs\n", FB_MAJOR);
1733
56b22935 1734 fb_class = class_create(THIS_MODULE, "graphics");
1da177e4
LT
1735 if (IS_ERR(fb_class)) {
1736 printk(KERN_WARNING "Unable to create fb class; errno = %ld\n", PTR_ERR(fb_class));
1737 fb_class = NULL;
1738 }
1739 return 0;
1740}
1741
1742#ifdef MODULE
1743module_init(fbmem_init);
1744static void __exit
1745fbmem_exit(void)
1746{
c43f89c2 1747 remove_proc_entry("fb", NULL);
56b22935 1748 class_destroy(fb_class);
5a340cce 1749 unregister_chrdev(FB_MAJOR, "fb");
1da177e4
LT
1750}
1751
1752module_exit(fbmem_exit);
1753MODULE_LICENSE("GPL");
1754MODULE_DESCRIPTION("Framebuffer base");
1755#else
1756subsys_initcall(fbmem_init);
1757#endif
1758
1759int fb_new_modelist(struct fb_info *info)
1760{
1761 struct fb_event event;
1762 struct fb_var_screeninfo var = info->var;
1763 struct list_head *pos, *n;
1764 struct fb_modelist *modelist;
1765 struct fb_videomode *m, mode;
1766 int err = 1;
1767
1768 list_for_each_safe(pos, n, &info->modelist) {
1769 modelist = list_entry(pos, struct fb_modelist, list);
1770 m = &modelist->mode;
1771 fb_videomode_to_var(&var, m);
1772 var.activate = FB_ACTIVATE_TEST;
1773 err = fb_set_var(info, &var);
1774 fb_var_to_videomode(&mode, &var);
1775 if (err || !fb_mode_is_equal(m, &mode)) {
1776 list_del(pos);
1777 kfree(pos);
1778 }
1779 }
1780
1781 err = 1;
1782
1783 if (!list_empty(&info->modelist)) {
513adb58
AR
1784 if (!lock_fb_info(info))
1785 return -ENODEV;
1da177e4 1786 event.info = info;
256154fb 1787 err = fb_notifier_call_chain(FB_EVENT_NEW_MODELIST, &event);
513adb58 1788 unlock_fb_info(info);
1da177e4
LT
1789 }
1790
1791 return err;
1792}
1793
0128beee
HD
1794static char *video_options[FB_MAX] __read_mostly;
1795static int ofonly __read_mostly;
1da177e4
LT
1796
1797/**
1798 * fb_get_options - get kernel boot parameters
1799 * @name: framebuffer name as it would appear in
1800 * the boot parameter line
1801 * (video=<name>:<options>)
1802 * @option: the option will be stored here
1803 *
1804 * NOTE: Needed to maintain backwards compatibility
1805 */
1806int fb_get_options(char *name, char **option)
1807{
1808 char *opt, *options = NULL;
a67ef278 1809 int retval = 0;
1da177e4
LT
1810 int name_len = strlen(name), i;
1811
1812 if (name_len && ofonly && strncmp(name, "offb", 4))
1813 retval = 1;
1814
1815 if (name_len && !retval) {
1816 for (i = 0; i < FB_MAX; i++) {
1817 if (video_options[i] == NULL)
1818 continue;
a67ef278 1819 if (!video_options[i][0])
1da177e4
LT
1820 continue;
1821 opt = video_options[i];
1822 if (!strncmp(name, opt, name_len) &&
1823 opt[name_len] == ':')
1824 options = opt + name_len + 1;
1825 }
1826 }
1827 if (options && !strncmp(options, "off", 3))
1828 retval = 1;
1829
1830 if (option)
1831 *option = options;
1832
1833 return retval;
1834}
1835
bc6d7fdf 1836#ifndef MODULE
1da177e4
LT
1837/**
1838 * video_setup - process command line options
1839 * @options: string of options
1840 *
1841 * Process command line options for frame buffer subsystem.
1842 *
1843 * NOTE: This function is a __setup and __init function.
1844 * It only stores the options. Drivers have to call
1845 * fb_get_options() as necessary.
1846 *
1847 * Returns zero.
1848 *
1849 */
75c96f85 1850static int __init video_setup(char *options)
1da177e4
LT
1851{
1852 int i, global = 0;
1853
1854 if (!options || !*options)
1855 global = 1;
1856
1857 if (!global && !strncmp(options, "ofonly", 6)) {
1858 ofonly = 1;
1859 global = 1;
1860 }
1861
f8033035 1862 if (!global && !strchr(options, ':')) {
9a054fba 1863 fb_mode_option = options;
1da177e4
LT
1864 global = 1;
1865 }
1866
1867 if (!global) {
1868 for (i = 0; i < FB_MAX; i++) {
1869 if (video_options[i] == NULL) {
1870 video_options[i] = options;
1871 break;
1872 }
1873
1874 }
1875 }
1876
9b41046c 1877 return 1;
1da177e4
LT
1878}
1879__setup("video=", video_setup);
bc6d7fdf 1880#endif
1da177e4
LT
1881
1882 /*
1883 * Visible symbols for modules
1884 */
1885
1886EXPORT_SYMBOL(register_framebuffer);
1887EXPORT_SYMBOL(unregister_framebuffer);
1888EXPORT_SYMBOL(num_registered_fb);
1889EXPORT_SYMBOL(registered_fb);
1da177e4
LT
1890EXPORT_SYMBOL(fb_show_logo);
1891EXPORT_SYMBOL(fb_set_var);
1892EXPORT_SYMBOL(fb_blank);
1893EXPORT_SYMBOL(fb_pan_display);
1894EXPORT_SYMBOL(fb_get_buffer_offset);
1da177e4 1895EXPORT_SYMBOL(fb_set_suspend);
1da177e4 1896EXPORT_SYMBOL(fb_get_options);
1da177e4
LT
1897
1898MODULE_LICENSE("GPL");