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