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