blob: a85c818be9453ecbdf11310b8a77f41435652000 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15
Arnd Bergmannc7f82d92005-11-08 21:39:19 -080016#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/types.h>
18#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/kernel.h>
20#include <linux/major.h>
21#include <linux/slab.h>
22#include <linux/mm.h>
23#include <linux/mman.h>
Jon Smirla8f340e2006-07-10 04:44:12 -070024#include <linux/vt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/init.h>
26#include <linux/linux_logo.h>
27#include <linux/proc_fs.h>
Alexey Dobriyan0aa16342008-04-28 02:15:42 -070028#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/console.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/kmod.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/device.h>
33#include <linux/efi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/fb.h>
35
Antonino A. Daplas10eb2652007-07-17 04:05:27 -070036#include <asm/fb.h>
37
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 /*
40 * Frame buffer device initialization and setup routines
41 */
42
43#define FBPIXMAPSIZE (1024 * 8)
44
Helge Deller0128bee2006-12-08 02:40:29 -080045struct fb_info *registered_fb[FB_MAX] __read_mostly;
46int num_registered_fb __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Andrew Morton6a7f2822009-03-31 15:25:19 -070048int lock_fb_info(struct fb_info *info)
49{
50 mutex_lock(&info->lock);
51 if (!info->fbops) {
52 mutex_unlock(&info->lock);
53 return 0;
54 }
55 return 1;
56}
57EXPORT_SYMBOL(lock_fb_info);
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/*
60 * Helpers
61 */
62
Antonino A. Daplasb8c90942005-09-09 13:04:37 -070063int fb_get_color_depth(struct fb_var_screeninfo *var,
64 struct fb_fix_screeninfo *fix)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Antonino A. Daplasb8c90942005-09-09 13:04:37 -070066 int depth = 0;
67
68 if (fix->visual == FB_VISUAL_MONO01 ||
69 fix->visual == FB_VISUAL_MONO10)
70 depth = 1;
71 else {
72 if (var->green.length == var->blue.length &&
73 var->green.length == var->red.length &&
74 var->green.offset == var->blue.offset &&
75 var->green.offset == var->red.offset)
76 depth = var->green.length;
77 else
78 depth = var->green.length + var->red.length +
79 var->blue.length;
80 }
81
82 return depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84EXPORT_SYMBOL(fb_get_color_depth);
85
86/*
James Simmonsf5a99512005-06-21 17:16:58 -070087 * Data padding functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 */
James Simmonsf1ab5da2005-06-21 17:17:07 -070089void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Antonino A. Daplas829e79b2005-09-09 13:10:04 -070091 __fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
James Simmonsf1ab5da2005-06-21 17:17:07 -070093EXPORT_SYMBOL(fb_pad_aligned_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
James Simmonsf1ab5da2005-06-21 17:17:07 -070095void fb_pad_unaligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 idx, u32 height,
96 u32 shift_high, u32 shift_low, u32 mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 u8 mask = (u8) (0xfff << shift_high), tmp;
99 int i, j;
100
101 for (i = height; i--; ) {
102 for (j = 0; j < idx; j++) {
103 tmp = dst[j];
104 tmp &= mask;
105 tmp |= *src >> shift_low;
106 dst[j] = tmp;
107 tmp = *src << shift_high;
108 dst[j+1] = tmp;
109 src++;
110 }
111 tmp = dst[idx];
112 tmp &= mask;
113 tmp |= *src >> shift_low;
114 dst[idx] = tmp;
115 if (shift_high < mod) {
116 tmp = *src << shift_high;
117 dst[idx+1] = tmp;
118 }
119 src++;
120 dst += d_pitch;
121 }
122}
James Simmonsf1ab5da2005-06-21 17:17:07 -0700123EXPORT_SYMBOL(fb_pad_unaligned_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125/*
126 * we need to lock this section since fb_cursor
127 * may use fb_imageblit()
128 */
129char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size)
130{
131 u32 align = buf->buf_align - 1, offset;
132 char *addr = buf->addr;
133
134 /* If IO mapped, we need to sync before access, no sharing of
135 * the pixmap is done
136 */
137 if (buf->flags & FB_PIXMAP_IO) {
138 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
139 info->fbops->fb_sync(info);
140 return addr;
141 }
142
143 /* See if we fit in the remaining pixmap space */
144 offset = buf->offset + align;
145 offset &= ~align;
146 if (offset + size > buf->size) {
147 /* We do not fit. In order to be able to re-use the buffer,
148 * we must ensure no asynchronous DMA'ing or whatever operation
149 * is in progress, we sync for that.
150 */
151 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
152 info->fbops->fb_sync(info);
153 offset = 0;
154 }
155 buf->offset = offset + size;
156 addr += offset;
157
158 return addr;
159}
160
161#ifdef CONFIG_LOGO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163static inline unsigned safe_shift(unsigned d, int n)
164{
165 return n < 0 ? d >> -n : d << n;
166}
167
168static void fb_set_logocmap(struct fb_info *info,
169 const struct linux_logo *logo)
170{
171 struct fb_cmap palette_cmap;
172 u16 palette_green[16];
173 u16 palette_blue[16];
174 u16 palette_red[16];
175 int i, j, n;
176 const unsigned char *clut = logo->clut;
177
178 palette_cmap.start = 0;
179 palette_cmap.len = 16;
180 palette_cmap.red = palette_red;
181 palette_cmap.green = palette_green;
182 palette_cmap.blue = palette_blue;
183 palette_cmap.transp = NULL;
184
185 for (i = 0; i < logo->clutsize; i += n) {
186 n = logo->clutsize - i;
187 /* palette_cmap provides space for only 16 colors at once */
188 if (n > 16)
189 n = 16;
190 palette_cmap.start = 32 + i;
191 palette_cmap.len = n;
192 for (j = 0; j < n; ++j) {
193 palette_cmap.red[j] = clut[0] << 8 | clut[0];
194 palette_cmap.green[j] = clut[1] << 8 | clut[1];
195 palette_cmap.blue[j] = clut[2] << 8 | clut[2];
196 clut += 3;
197 }
198 fb_set_cmap(&palette_cmap, info);
199 }
200}
201
202static void fb_set_logo_truepalette(struct fb_info *info,
203 const struct linux_logo *logo,
204 u32 *palette)
205{
Helge Deller0128bee2006-12-08 02:40:29 -0800206 static const unsigned char mask[] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 unsigned char redmask, greenmask, bluemask;
208 int redshift, greenshift, blueshift;
209 int i;
210 const unsigned char *clut = logo->clut;
211
212 /*
213 * We have to create a temporary palette since console palette is only
214 * 16 colors long.
215 */
216 /* Bug: Doesn't obey msb_right ... (who needs that?) */
217 redmask = mask[info->var.red.length < 8 ? info->var.red.length : 8];
218 greenmask = mask[info->var.green.length < 8 ? info->var.green.length : 8];
219 bluemask = mask[info->var.blue.length < 8 ? info->var.blue.length : 8];
220 redshift = info->var.red.offset - (8 - info->var.red.length);
221 greenshift = info->var.green.offset - (8 - info->var.green.length);
222 blueshift = info->var.blue.offset - (8 - info->var.blue.length);
223
224 for ( i = 0; i < logo->clutsize; i++) {
225 palette[i+32] = (safe_shift((clut[0] & redmask), redshift) |
226 safe_shift((clut[1] & greenmask), greenshift) |
227 safe_shift((clut[2] & bluemask), blueshift));
228 clut += 3;
229 }
230}
231
232static void fb_set_logo_directpalette(struct fb_info *info,
233 const struct linux_logo *logo,
234 u32 *palette)
235{
236 int redshift, greenshift, blueshift;
237 int i;
238
239 redshift = info->var.red.offset;
240 greenshift = info->var.green.offset;
241 blueshift = info->var.blue.offset;
242
Clemens Ladischcf7ee552008-11-19 15:36:10 -0800243 for (i = 32; i < 32 + logo->clutsize; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 palette[i] = i << redshift | i << greenshift | i << blueshift;
245}
246
247static void fb_set_logo(struct fb_info *info,
248 const struct linux_logo *logo, u8 *dst,
249 int depth)
250{
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700251 int i, j, k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 const u8 *src = logo->data;
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700253 u8 xor = (info->fix.visual == FB_VISUAL_MONO01) ? 0xff : 0;
254 u8 fg = 1, d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Antonino A. Daplas1692b372007-07-31 00:37:36 -0700256 switch (fb_get_color_depth(&info->var, &info->fix)) {
257 case 1:
258 fg = 1;
259 break;
260 case 2:
261 fg = 3;
262 break;
263 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 fg = 7;
Antonino A. Daplas1692b372007-07-31 00:37:36 -0700265 break;
266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700268 if (info->fix.visual == FB_VISUAL_MONO01 ||
269 info->fix.visual == FB_VISUAL_MONO10)
270 fg = ~((u8) (0xfff << info->var.green.length));
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 switch (depth) {
273 case 4:
274 for (i = 0; i < logo->height; i++)
275 for (j = 0; j < logo->width; src++) {
276 *dst++ = *src >> 4;
277 j++;
278 if (j < logo->width) {
279 *dst++ = *src & 0x0f;
280 j++;
281 }
282 }
283 break;
284 case 1:
285 for (i = 0; i < logo->height; i++) {
286 for (j = 0; j < logo->width; src++) {
287 d = *src ^ xor;
288 for (k = 7; k >= 0; k--) {
289 *dst++ = ((d >> k) & 1) ? fg : 0;
290 j++;
291 }
292 }
293 }
294 break;
295 }
296}
297
298/*
299 * Three (3) kinds of logo maps exist. linux_logo_clut224 (>16 colors),
300 * linux_logo_vga16 (16 colors) and linux_logo_mono (2 colors). Depending on
301 * the visual format and color depth of the framebuffer, the DAC, the
302 * pseudo_palette, and the logo data will be adjusted accordingly.
303 *
304 * Case 1 - linux_logo_clut224:
305 * Color exceeds the number of console colors (16), thus we set the hardware DAC
306 * using fb_set_cmap() appropriately. The "needs_cmapreset" flag will be set.
307 *
308 * For visuals that require color info from the pseudo_palette, we also construct
309 * one for temporary use. The "needs_directpalette" or "needs_truepalette" flags
310 * will be set.
311 *
312 * Case 2 - linux_logo_vga16:
313 * The number of colors just matches the console colors, thus there is no need
314 * to set the DAC or the pseudo_palette. However, the bitmap is packed, ie,
315 * each byte contains color information for two pixels (upper and lower nibble).
316 * To be consistent with fb_imageblit() usage, we therefore separate the two
317 * nibbles into separate bytes. The "depth" flag will be set to 4.
318 *
319 * Case 3 - linux_logo_mono:
320 * This is similar with Case 2. Each byte contains information for 8 pixels.
321 * We isolate each bit and expand each into a byte. The "depth" flag will
322 * be set to 1.
323 */
324static struct logo_data {
325 int depth;
326 int needs_directpalette;
327 int needs_truepalette;
328 int needs_cmapreset;
329 const struct linux_logo *logo;
Helge Deller0128bee2006-12-08 02:40:29 -0800330} fb_logo __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800332static void fb_rotate_logo_ud(const u8 *in, u8 *out, u32 width, u32 height)
333{
334 u32 size = width * height, i;
335
336 out += size - 1;
337
338 for (i = size; i--; )
339 *out-- = *in++;
340}
341
342static void fb_rotate_logo_cw(const u8 *in, u8 *out, u32 width, u32 height)
343{
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700344 int i, j, h = height - 1;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800345
346 for (i = 0; i < height; i++)
347 for (j = 0; j < width; j++)
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700348 out[height * j + h - i] = *in++;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800349}
350
351static void fb_rotate_logo_ccw(const u8 *in, u8 *out, u32 width, u32 height)
352{
353 int i, j, w = width - 1;
354
355 for (i = 0; i < height; i++)
356 for (j = 0; j < width; j++)
357 out[height * (w - j) + i] = *in++;
358}
359
360static void fb_rotate_logo(struct fb_info *info, u8 *dst,
361 struct fb_image *image, int rotate)
362{
363 u32 tmp;
364
365 if (rotate == FB_ROTATE_UD) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800366 fb_rotate_logo_ud(image->data, dst, image->width,
367 image->height);
Geert Uytterhoevenabed5d12007-05-08 00:37:57 -0700368 image->dx = info->var.xres - image->width - image->dx;
369 image->dy = info->var.yres - image->height - image->dy;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800370 } else if (rotate == FB_ROTATE_CW) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800371 fb_rotate_logo_cw(image->data, dst, image->width,
372 image->height);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800373 tmp = image->width;
374 image->width = image->height;
375 image->height = tmp;
Geert Uytterhoevenabed5d12007-05-08 00:37:57 -0700376 tmp = image->dy;
377 image->dy = image->dx;
378 image->dx = info->var.xres - image->width - tmp;
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700379 } else if (rotate == FB_ROTATE_CCW) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800380 fb_rotate_logo_ccw(image->data, dst, image->width,
381 image->height);
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700382 tmp = image->width;
383 image->width = image->height;
384 image->height = tmp;
Geert Uytterhoevenabed5d12007-05-08 00:37:57 -0700385 tmp = image->dx;
386 image->dx = image->dy;
387 image->dy = info->var.yres - image->height - tmp;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800388 }
389
390 image->data = dst;
391}
392
393static void fb_do_show_logo(struct fb_info *info, struct fb_image *image,
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700394 int rotate, unsigned int num)
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800395{
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700396 unsigned int x;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800397
398 if (rotate == FB_ROTATE_UR) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700399 for (x = 0;
400 x < num && image->dx + image->width <= info->var.xres;
401 x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800402 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700403 image->dx += image->width + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800404 }
405 } else if (rotate == FB_ROTATE_UD) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700406 for (x = 0; x < num && image->dx >= 0; x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800407 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700408 image->dx -= image->width + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800409 }
410 } else if (rotate == FB_ROTATE_CW) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700411 for (x = 0;
412 x < num && image->dy + image->height <= info->var.yres;
413 x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800414 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700415 image->dy += image->height + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800416 }
417 } else if (rotate == FB_ROTATE_CCW) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700418 for (x = 0; x < num && image->dy >= 0; x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800419 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700420 image->dy -= image->height + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800421 }
422 }
423}
424
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700425static int fb_show_logo_line(struct fb_info *info, int rotate,
426 const struct linux_logo *logo, int y,
427 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 u32 *palette = NULL, *saved_pseudo_palette = NULL;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800430 unsigned char *logo_new = NULL, *logo_rotate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 struct fb_image image;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 /* Return if the frame buffer is not mapped or suspended */
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700434 if (logo == NULL || info->state != FBINFO_STATE_RUNNING ||
Antonino A. Daplas70802c62007-05-08 00:38:14 -0700435 info->flags & FBINFO_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return 0;
437
438 image.depth = 8;
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700439 image.data = logo->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 if (fb_logo.needs_cmapreset)
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700442 fb_set_logocmap(info, logo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700444 if (fb_logo.needs_truepalette ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 fb_logo.needs_directpalette) {
446 palette = kmalloc(256 * 4, GFP_KERNEL);
447 if (palette == NULL)
448 return 0;
449
450 if (fb_logo.needs_truepalette)
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700451 fb_set_logo_truepalette(info, logo, palette);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 else
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700453 fb_set_logo_directpalette(info, logo, palette);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 saved_pseudo_palette = info->pseudo_palette;
456 info->pseudo_palette = palette;
457 }
458
459 if (fb_logo.depth <= 4) {
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700460 logo_new = kmalloc(logo->width * logo->height, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (logo_new == NULL) {
462 kfree(palette);
463 if (saved_pseudo_palette)
464 info->pseudo_palette = saved_pseudo_palette;
465 return 0;
466 }
467 image.data = logo_new;
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700468 fb_set_logo(info, logo, logo_new, fb_logo.depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 }
470
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800471 image.dx = 0;
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700472 image.dy = y;
473 image.width = logo->width;
474 image.height = logo->height;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800476 if (rotate) {
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700477 logo_rotate = kmalloc(logo->width *
478 logo->height, GFP_KERNEL);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800479 if (logo_rotate)
480 fb_rotate_logo(info, logo_rotate, &image, rotate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800482
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700483 fb_do_show_logo(info, &image, rotate, n);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 kfree(palette);
486 if (saved_pseudo_palette != NULL)
487 info->pseudo_palette = saved_pseudo_palette;
488 kfree(logo_new);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800489 kfree(logo_rotate);
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700490 return logo->height;
491}
492
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700493
494#ifdef CONFIG_FB_LOGO_EXTRA
495
496#define FB_LOGO_EX_NUM_MAX 10
497static struct logo_data_extra {
498 const struct linux_logo *logo;
499 unsigned int n;
500} fb_logo_ex[FB_LOGO_EX_NUM_MAX];
501static unsigned int fb_logo_ex_num;
502
503void fb_append_extra_logo(const struct linux_logo *logo, unsigned int n)
504{
505 if (!n || fb_logo_ex_num == FB_LOGO_EX_NUM_MAX)
506 return;
507
508 fb_logo_ex[fb_logo_ex_num].logo = logo;
509 fb_logo_ex[fb_logo_ex_num].n = n;
510 fb_logo_ex_num++;
511}
512
513static int fb_prepare_extra_logos(struct fb_info *info, unsigned int height,
514 unsigned int yres)
515{
516 unsigned int i;
517
518 /* FIXME: logo_ex supports only truecolor fb. */
519 if (info->fix.visual != FB_VISUAL_TRUECOLOR)
520 fb_logo_ex_num = 0;
521
522 for (i = 0; i < fb_logo_ex_num; i++) {
Geert Uytterhoeven4fb6de22009-01-06 14:42:37 -0800523 if (fb_logo_ex[i].logo->type != fb_logo.logo->type) {
524 fb_logo_ex[i].logo = NULL;
525 continue;
526 }
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700527 height += fb_logo_ex[i].logo->height;
528 if (height > yres) {
529 height -= fb_logo_ex[i].logo->height;
530 fb_logo_ex_num = i;
531 break;
532 }
533 }
534 return height;
535}
536
537static int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
538{
539 unsigned int i;
540
541 for (i = 0; i < fb_logo_ex_num; i++)
542 y += fb_show_logo_line(info, rotate,
543 fb_logo_ex[i].logo, y, fb_logo_ex[i].n);
544
545 return y;
546}
547
548#else /* !CONFIG_FB_LOGO_EXTRA */
549
550static inline int fb_prepare_extra_logos(struct fb_info *info,
551 unsigned int height,
552 unsigned int yres)
553{
554 return height;
555}
556
557static inline int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
558{
559 return y;
560}
561
562#endif /* CONFIG_FB_LOGO_EXTRA */
563
564
565int fb_prepare_logo(struct fb_info *info, int rotate)
566{
567 int depth = fb_get_color_depth(&info->var, &info->fix);
568 unsigned int yres;
569
570 memset(&fb_logo, 0, sizeof(struct logo_data));
571
572 if (info->flags & FBINFO_MISC_TILEBLITTING ||
573 info->flags & FBINFO_MODULE)
574 return 0;
575
576 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
577 depth = info->var.blue.length;
578 if (info->var.red.length < depth)
579 depth = info->var.red.length;
580 if (info->var.green.length < depth)
581 depth = info->var.green.length;
582 }
583
584 if (info->fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR && depth > 4) {
585 /* assume console colormap */
586 depth = 4;
587 }
588
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700589 /* Return if no suitable logo was found */
590 fb_logo.logo = fb_find_logo(depth);
591
592 if (!fb_logo.logo) {
593 return 0;
594 }
595
596 if (rotate == FB_ROTATE_UR || rotate == FB_ROTATE_UD)
597 yres = info->var.yres;
598 else
599 yres = info->var.xres;
600
601 if (fb_logo.logo->height > yres) {
602 fb_logo.logo = NULL;
603 return 0;
604 }
605
606 /* What depth we asked for might be different from what we get */
607 if (fb_logo.logo->type == LINUX_LOGO_CLUT224)
608 fb_logo.depth = 8;
609 else if (fb_logo.logo->type == LINUX_LOGO_VGA16)
610 fb_logo.depth = 4;
611 else
612 fb_logo.depth = 1;
613
Antonino A. Daplas1692b372007-07-31 00:37:36 -0700614
615 if (fb_logo.depth > 4 && depth > 4) {
616 switch (info->fix.visual) {
617 case FB_VISUAL_TRUECOLOR:
618 fb_logo.needs_truepalette = 1;
619 break;
620 case FB_VISUAL_DIRECTCOLOR:
621 fb_logo.needs_directpalette = 1;
622 fb_logo.needs_cmapreset = 1;
623 break;
624 case FB_VISUAL_PSEUDOCOLOR:
625 fb_logo.needs_cmapreset = 1;
626 break;
627 }
628 }
629
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700630 return fb_prepare_extra_logos(info, fb_logo.logo->height, yres);
631}
632
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700633int fb_show_logo(struct fb_info *info, int rotate)
634{
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700635 int y;
636
637 y = fb_show_logo_line(info, rotate, fb_logo.logo, 0,
638 num_online_cpus());
639 y = fb_show_extra_logos(info, y, rotate);
640
641 return y;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643#else
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800644int fb_prepare_logo(struct fb_info *info, int rotate) { return 0; }
645int fb_show_logo(struct fb_info *info, int rotate) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646#endif /* CONFIG_LOGO */
647
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700648static void *fb_seq_start(struct seq_file *m, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700650 return (*pos < FB_MAX) ? pos : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700653static void *fb_seq_next(struct seq_file *m, void *v, loff_t *pos)
654{
655 (*pos)++;
656 return (*pos < FB_MAX) ? pos : NULL;
657}
658
659static void fb_seq_stop(struct seq_file *m, void *v)
660{
661}
662
663static int fb_seq_show(struct seq_file *m, void *v)
664{
665 int i = *(loff_t *)v;
666 struct fb_info *fi = registered_fb[i];
667
668 if (fi)
669 seq_printf(m, "%d %s\n", fi->node, fi->fix.id);
670 return 0;
671}
672
673static const struct seq_operations proc_fb_seq_ops = {
674 .start = fb_seq_start,
675 .next = fb_seq_next,
676 .stop = fb_seq_stop,
677 .show = fb_seq_show,
678};
679
680static int proc_fb_open(struct inode *inode, struct file *file)
681{
682 return seq_open(file, &proc_fb_seq_ops);
683}
684
685static const struct file_operations fb_proc_fops = {
686 .owner = THIS_MODULE,
687 .open = proc_fb_open,
688 .read = seq_read,
689 .llseek = seq_lseek,
690 .release = seq_release,
691};
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693static ssize_t
694fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
695{
696 unsigned long p = *ppos;
Josef Sipekad9a8242006-12-08 02:37:48 -0800697 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 int fbidx = iminor(inode);
699 struct fb_info *info = registered_fb[fbidx];
700 u32 *buffer, *dst;
701 u32 __iomem *src;
702 int c, i, cnt = 0, err = 0;
703 unsigned long total_size;
704
705 if (!info || ! info->screen_base)
706 return -ENODEV;
707
708 if (info->state != FBINFO_STATE_RUNNING)
709 return -EPERM;
710
711 if (info->fbops->fb_read)
Antonino A. Daplas3f9b0882007-05-08 00:39:02 -0700712 return info->fbops->fb_read(info, buf, count, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 total_size = info->screen_size;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (total_size == 0)
717 total_size = info->fix.smem_len;
718
719 if (p >= total_size)
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800720 return 0;
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (count >= total_size)
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800723 count = total_size;
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (count + p > total_size)
726 count = total_size - p;
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
729 GFP_KERNEL);
730 if (!buffer)
731 return -ENOMEM;
732
733 src = (u32 __iomem *) (info->screen_base + p);
734
735 if (info->fbops->fb_sync)
736 info->fbops->fb_sync(info);
737
738 while (count) {
739 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
740 dst = buffer;
741 for (i = c >> 2; i--; )
742 *dst++ = fb_readl(src++);
743 if (c & 3) {
744 u8 *dst8 = (u8 *) dst;
745 u8 __iomem *src8 = (u8 __iomem *) src;
746
747 for (i = c & 3; i--;)
748 *dst8++ = fb_readb(src8++);
749
750 src = (u32 __iomem *) src8;
751 }
752
753 if (copy_to_user(buf, buffer, c)) {
754 err = -EFAULT;
755 break;
756 }
757 *ppos += c;
758 buf += c;
759 cnt += c;
760 count -= c;
761 }
762
763 kfree(buffer);
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return (err) ? err : cnt;
766}
767
768static ssize_t
769fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
770{
771 unsigned long p = *ppos;
Josef Sipekad9a8242006-12-08 02:37:48 -0800772 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 int fbidx = iminor(inode);
774 struct fb_info *info = registered_fb[fbidx];
775 u32 *buffer, *src;
776 u32 __iomem *dst;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800777 int c, i, cnt = 0, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 unsigned long total_size;
779
780 if (!info || !info->screen_base)
781 return -ENODEV;
782
783 if (info->state != FBINFO_STATE_RUNNING)
784 return -EPERM;
785
786 if (info->fbops->fb_write)
Antonino A. Daplas3f9b0882007-05-08 00:39:02 -0700787 return info->fbops->fb_write(info, buf, count, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 total_size = info->screen_size;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (total_size == 0)
792 total_size = info->fix.smem_len;
793
794 if (p > total_size)
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700795 return -EFBIG;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800796
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700797 if (count > total_size) {
798 err = -EFBIG;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800799 count = total_size;
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700800 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800801
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700802 if (count + p > total_size) {
803 if (!err)
804 err = -ENOSPC;
805
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800806 count = total_size - p;
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700807 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
810 GFP_KERNEL);
811 if (!buffer)
812 return -ENOMEM;
813
814 dst = (u32 __iomem *) (info->screen_base + p);
815
816 if (info->fbops->fb_sync)
817 info->fbops->fb_sync(info);
818
819 while (count) {
820 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
821 src = buffer;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (copy_from_user(src, buf, c)) {
824 err = -EFAULT;
825 break;
826 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 for (i = c >> 2; i--; )
829 fb_writel(*src++, dst++);
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (c & 3) {
832 u8 *src8 = (u8 *) src;
833 u8 __iomem *dst8 = (u8 __iomem *) dst;
834
835 for (i = c & 3; i--; )
836 fb_writeb(*src8++, dst8++);
837
838 dst = (u32 __iomem *) dst8;
839 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 *ppos += c;
842 buf += c;
843 cnt += c;
844 count -= c;
845 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 kfree(buffer);
848
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700849 return (cnt) ? cnt : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852int
853fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var)
854{
Antonino A. Daplas12070692005-12-12 22:17:17 -0800855 struct fb_fix_screeninfo *fix = &info->fix;
Ville Syrjala7572a1e2008-07-23 21:31:28 -0700856 unsigned int yres = info->var.yres;
857 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Antonino A. Daplas12070692005-12-12 22:17:17 -0800859 if (var->yoffset > 0) {
860 if (var->vmode & FB_VMODE_YWRAP) {
861 if (!fix->ywrapstep || (var->yoffset % fix->ywrapstep))
862 err = -EINVAL;
863 else
864 yres = 0;
865 } else if (!fix->ypanstep || (var->yoffset % fix->ypanstep))
866 err = -EINVAL;
867 }
868
869 if (var->xoffset > 0 && (!fix->xpanstep ||
870 (var->xoffset % fix->xpanstep)))
871 err = -EINVAL;
872
Ville Syrjala7572a1e2008-07-23 21:31:28 -0700873 if (err || !info->fbops->fb_pan_display ||
874 var->yoffset + yres > info->var.yres_virtual ||
Antonino A. Daplas12070692005-12-12 22:17:17 -0800875 var->xoffset + info->var.xres > info->var.xres_virtual)
876 return -EINVAL;
877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if ((err = info->fbops->fb_pan_display(var, info)))
879 return err;
880 info->var.xoffset = var->xoffset;
881 info->var.yoffset = var->yoffset;
882 if (var->vmode & FB_VMODE_YWRAP)
883 info->var.vmode |= FB_VMODE_YWRAP;
884 else
885 info->var.vmode &= ~FB_VMODE_YWRAP;
886 return 0;
887}
888
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700889static int fb_check_caps(struct fb_info *info, struct fb_var_screeninfo *var,
890 u32 activate)
891{
892 struct fb_event event;
893 struct fb_blit_caps caps, fbcaps;
894 int err = 0;
895
896 memset(&caps, 0, sizeof(caps));
897 memset(&fbcaps, 0, sizeof(fbcaps));
898 caps.flags = (activate & FB_ACTIVATE_ALL) ? 1 : 0;
899 event.info = info;
900 event.data = &caps;
901 fb_notifier_call_chain(FB_EVENT_GET_REQ, &event);
902 info->fbops->fb_get_caps(info, &fbcaps, var);
903
904 if (((fbcaps.x ^ caps.x) & caps.x) ||
905 ((fbcaps.y ^ caps.y) & caps.y) ||
906 (fbcaps.len < caps.len))
907 err = -EINVAL;
908
909 return err;
910}
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912int
913fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var)
914{
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700915 int flags = info->flags;
916 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 if (var->activate & FB_ACTIVATE_INV_MODE) {
919 struct fb_videomode mode1, mode2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 fb_var_to_videomode(&mode1, var);
922 fb_var_to_videomode(&mode2, &info->var);
923 /* make sure we don't delete the videomode of current var */
924 ret = fb_mode_is_equal(&mode1, &mode2);
925
926 if (!ret) {
927 struct fb_event event;
928
929 event.info = info;
930 event.data = &mode1;
Antonino A. Daplas256154f2006-07-30 03:04:17 -0700931 ret = fb_notifier_call_chain(FB_EVENT_MODE_DELETE, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933
934 if (!ret)
935 fb_delete_videomode(&mode1, &info->modelist);
936
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700937
938 ret = (ret) ? -EINVAL : 0;
939 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 }
941
942 if ((var->activate & FB_ACTIVATE_FORCE) ||
943 memcmp(&info->var, var, sizeof(struct fb_var_screeninfo))) {
Antonino A. Daplas4941cb72007-05-08 00:39:22 -0700944 u32 activate = var->activate;
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (!info->fbops->fb_check_var) {
947 *var = info->var;
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700948 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700951 ret = info->fbops->fb_check_var(var, info);
952
953 if (ret)
954 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 if ((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) {
957 struct fb_videomode mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700959 if (info->fbops->fb_get_caps) {
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700960 ret = fb_check_caps(info, var, activate);
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700961
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700962 if (ret)
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700963 goto done;
964 }
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 info->var = *var;
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 if (info->fbops->fb_set_par)
969 info->fbops->fb_set_par(info);
970
971 fb_pan_display(info, &info->var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 fb_set_cmap(&info->cmap, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 fb_var_to_videomode(&mode, &info->var);
974
975 if (info->modelist.prev && info->modelist.next &&
976 !list_empty(&info->modelist))
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700977 ret = fb_add_videomode(&mode, &info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700979 if (!ret && (flags & FBINFO_MISC_USEREVENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 struct fb_event event;
Antonino A. Daplas4941cb72007-05-08 00:39:22 -0700981 int evnt = (activate & FB_ACTIVATE_ALL) ?
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -0700982 FB_EVENT_MODE_CHANGE_ALL :
983 FB_EVENT_MODE_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985 info->flags &= ~FBINFO_MISC_USEREVENT;
986 event.info = info;
Eric Miaofaa312d2008-08-29 04:18:43 +0800987 event.data = &mode;
Antonino A. Daplas256154f2006-07-30 03:04:17 -0700988 fb_notifier_call_chain(evnt, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
990 }
991 }
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700992
993 done:
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700994 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
997int
998fb_blank(struct fb_info *info, int blank)
999{
1000 int ret = -EINVAL;
1001
1002 if (blank > FB_BLANK_POWERDOWN)
1003 blank = FB_BLANK_POWERDOWN;
1004
1005 if (info->fbops->fb_blank)
1006 ret = info->fbops->fb_blank(blank, info);
1007
1008 if (!ret) {
1009 struct fb_event event;
1010
1011 event.info = info;
1012 event.data = &blank;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001013 fb_notifier_call_chain(FB_EVENT_BLANK, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015
1016 return ret;
1017}
1018
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001019static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,
1020 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Alan Coxe5367712008-10-18 20:27:51 -07001022 struct fb_ops *fb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 struct fb_var_screeninfo var;
1024 struct fb_fix_screeninfo fix;
1025 struct fb_con2fbmap con2fb;
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001026 struct fb_cmap cmap_from;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 struct fb_cmap_user cmap;
1028 struct fb_event event;
1029 void __user *argp = (void __user *)arg;
Alan Coxe5367712008-10-18 20:27:51 -07001030 long ret = 0;
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 switch (cmd) {
1033 case FBIOGET_VSCREENINFO:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001034 if (!lock_fb_info(info))
1035 return -ENODEV;
1036 var = info->var;
1037 unlock_fb_info(info);
1038
1039 ret = copy_to_user(argp, &var, sizeof(var)) ? -EFAULT : 0;
Alan Coxe5367712008-10-18 20:27:51 -07001040 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 case FBIOPUT_VSCREENINFO:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001042 if (copy_from_user(&var, argp, sizeof(var)))
1043 return -EFAULT;
1044 if (!lock_fb_info(info))
1045 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 acquire_console_sem();
1047 info->flags |= FBINFO_MISC_USEREVENT;
Alan Coxe5367712008-10-18 20:27:51 -07001048 ret = fb_set_var(info, &var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 info->flags &= ~FBINFO_MISC_USEREVENT;
1050 release_console_sem();
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001051 unlock_fb_info(info);
1052 if (!ret && copy_to_user(argp, &var, sizeof(var)))
Alan Coxe5367712008-10-18 20:27:51 -07001053 ret = -EFAULT;
1054 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 case FBIOGET_FSCREENINFO:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001056 if (!lock_fb_info(info))
1057 return -ENODEV;
1058 fix = info->fix;
1059 unlock_fb_info(info);
1060
1061 ret = copy_to_user(argp, &fix, sizeof(fix)) ? -EFAULT : 0;
Alan Coxe5367712008-10-18 20:27:51 -07001062 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 case FBIOPUTCMAP:
1064 if (copy_from_user(&cmap, argp, sizeof(cmap)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001065 return -EFAULT;
1066 ret = fb_set_user_cmap(&cmap, info);
Alan Coxe5367712008-10-18 20:27:51 -07001067 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 case FBIOGETCMAP:
1069 if (copy_from_user(&cmap, argp, sizeof(cmap)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001070 return -EFAULT;
1071 if (!lock_fb_info(info))
1072 return -ENODEV;
1073 cmap_from = info->cmap;
1074 unlock_fb_info(info);
1075 ret = fb_cmap_to_user(&cmap_from, &cmap);
Alan Coxe5367712008-10-18 20:27:51 -07001076 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 case FBIOPAN_DISPLAY:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001078 if (copy_from_user(&var, argp, sizeof(var)))
1079 return -EFAULT;
1080 if (!lock_fb_info(info))
1081 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 acquire_console_sem();
Alan Coxe5367712008-10-18 20:27:51 -07001083 ret = fb_pan_display(info, &var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 release_console_sem();
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001085 unlock_fb_info(info);
Alan Coxe5367712008-10-18 20:27:51 -07001086 if (ret == 0 && copy_to_user(argp, &var, sizeof(var)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001087 return -EFAULT;
Alan Coxe5367712008-10-18 20:27:51 -07001088 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 case FBIO_CURSOR:
Alan Coxe5367712008-10-18 20:27:51 -07001090 ret = -EINVAL;
1091 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 case FBIOGET_CON2FBMAP:
1093 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001094 return -EFAULT;
1095 if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
1096 return -EINVAL;
1097 con2fb.framebuffer = -1;
1098 event.data = &con2fb;
Andrea Righi513adb52009-04-13 14:39:39 -07001099 if (!lock_fb_info(info))
1100 return -ENODEV;
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001101 event.info = info;
1102 fb_notifier_call_chain(FB_EVENT_GET_CONSOLE_MAP, &event);
Andrea Righi513adb52009-04-13 14:39:39 -07001103 unlock_fb_info(info);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001104 ret = copy_to_user(argp, &con2fb, sizeof(con2fb)) ? -EFAULT : 0;
Alan Coxe5367712008-10-18 20:27:51 -07001105 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 case FBIOPUT_CON2FBMAP:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001107 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
1108 return -EFAULT;
1109 if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
1110 return -EINVAL;
1111 if (con2fb.framebuffer < 0 || con2fb.framebuffer >= FB_MAX)
1112 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if (!registered_fb[con2fb.framebuffer])
Alan Coxe5367712008-10-18 20:27:51 -07001114 request_module("fb%d", con2fb.framebuffer);
1115 if (!registered_fb[con2fb.framebuffer]) {
1116 ret = -EINVAL;
1117 break;
1118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 event.data = &con2fb;
Andrea Righi513adb52009-04-13 14:39:39 -07001120 if (!lock_fb_info(info))
1121 return -ENODEV;
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001122 event.info = info;
Andrea Righi66c1ca02009-03-31 15:25:18 -07001123 ret = fb_notifier_call_chain(FB_EVENT_SET_CONSOLE_MAP, &event);
Andrea Righi513adb52009-04-13 14:39:39 -07001124 unlock_fb_info(info);
Alan Coxe5367712008-10-18 20:27:51 -07001125 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 case FBIOBLANK:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001127 if (!lock_fb_info(info))
1128 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 acquire_console_sem();
1130 info->flags |= FBINFO_MISC_USEREVENT;
Alan Coxe5367712008-10-18 20:27:51 -07001131 ret = fb_blank(info, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 info->flags &= ~FBINFO_MISC_USEREVENT;
1133 release_console_sem();
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001134 unlock_fb_info(info);
1135 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 default:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001137 if (!lock_fb_info(info))
1138 return -ENODEV;
1139 fb = info->fbops;
1140 if (fb->fb_ioctl)
Alan Coxe5367712008-10-18 20:27:51 -07001141 ret = fb->fb_ioctl(info, cmd, arg);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001142 else
1143 ret = -ENOTTY;
1144 unlock_fb_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 }
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001146 return ret;
1147}
1148
1149static long fb_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001150{
1151 struct inode *inode = file->f_path.dentry->d_inode;
1152 int fbidx = iminor(inode);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001153 struct fb_info *info = registered_fb[fbidx];
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001154
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001155 return do_fb_ioctl(info, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156}
1157
1158#ifdef CONFIG_COMPAT
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001159struct fb_fix_screeninfo32 {
1160 char id[16];
1161 compat_caddr_t smem_start;
1162 u32 smem_len;
1163 u32 type;
1164 u32 type_aux;
1165 u32 visual;
1166 u16 xpanstep;
1167 u16 ypanstep;
1168 u16 ywrapstep;
1169 u32 line_length;
1170 compat_caddr_t mmio_start;
1171 u32 mmio_len;
1172 u32 accel;
1173 u16 reserved[3];
1174};
1175
1176struct fb_cmap32 {
1177 u32 start;
1178 u32 len;
1179 compat_caddr_t red;
1180 compat_caddr_t green;
1181 compat_caddr_t blue;
1182 compat_caddr_t transp;
1183};
1184
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001185static int fb_getput_cmap(struct fb_info *info, unsigned int cmd,
1186 unsigned long arg)
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001187{
1188 struct fb_cmap_user __user *cmap;
1189 struct fb_cmap32 __user *cmap32;
1190 __u32 data;
1191 int err;
1192
1193 cmap = compat_alloc_user_space(sizeof(*cmap));
1194 cmap32 = compat_ptr(arg);
1195
1196 if (copy_in_user(&cmap->start, &cmap32->start, 2 * sizeof(__u32)))
1197 return -EFAULT;
1198
1199 if (get_user(data, &cmap32->red) ||
1200 put_user(compat_ptr(data), &cmap->red) ||
1201 get_user(data, &cmap32->green) ||
1202 put_user(compat_ptr(data), &cmap->green) ||
1203 get_user(data, &cmap32->blue) ||
1204 put_user(compat_ptr(data), &cmap->blue) ||
1205 get_user(data, &cmap32->transp) ||
1206 put_user(compat_ptr(data), &cmap->transp))
1207 return -EFAULT;
1208
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001209 err = do_fb_ioctl(info, cmd, (unsigned long) cmap);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001210
1211 if (!err) {
1212 if (copy_in_user(&cmap32->start,
1213 &cmap->start,
1214 2 * sizeof(__u32)))
1215 err = -EFAULT;
1216 }
1217 return err;
1218}
1219
1220static int do_fscreeninfo_to_user(struct fb_fix_screeninfo *fix,
1221 struct fb_fix_screeninfo32 __user *fix32)
1222{
1223 __u32 data;
1224 int err;
1225
1226 err = copy_to_user(&fix32->id, &fix->id, sizeof(fix32->id));
1227
1228 data = (__u32) (unsigned long) fix->smem_start;
1229 err |= put_user(data, &fix32->smem_start);
1230
1231 err |= put_user(fix->smem_len, &fix32->smem_len);
1232 err |= put_user(fix->type, &fix32->type);
1233 err |= put_user(fix->type_aux, &fix32->type_aux);
1234 err |= put_user(fix->visual, &fix32->visual);
1235 err |= put_user(fix->xpanstep, &fix32->xpanstep);
1236 err |= put_user(fix->ypanstep, &fix32->ypanstep);
1237 err |= put_user(fix->ywrapstep, &fix32->ywrapstep);
1238 err |= put_user(fix->line_length, &fix32->line_length);
1239
1240 data = (__u32) (unsigned long) fix->mmio_start;
1241 err |= put_user(data, &fix32->mmio_start);
1242
1243 err |= put_user(fix->mmio_len, &fix32->mmio_len);
1244 err |= put_user(fix->accel, &fix32->accel);
1245 err |= copy_to_user(fix32->reserved, fix->reserved,
1246 sizeof(fix->reserved));
1247
1248 return err;
1249}
1250
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001251static int fb_get_fscreeninfo(struct fb_info *info, unsigned int cmd,
1252 unsigned long arg)
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001253{
1254 mm_segment_t old_fs;
1255 struct fb_fix_screeninfo fix;
1256 struct fb_fix_screeninfo32 __user *fix32;
1257 int err;
1258
1259 fix32 = compat_ptr(arg);
1260
1261 old_fs = get_fs();
1262 set_fs(KERNEL_DS);
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001263 err = do_fb_ioctl(info, cmd, (unsigned long) &fix);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001264 set_fs(old_fs);
1265
1266 if (!err)
1267 err = do_fscreeninfo_to_user(&fix, fix32);
1268
1269 return err;
1270}
1271
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001272static long fb_compat_ioctl(struct file *file, unsigned int cmd,
1273 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
Josef Sipekad9a8242006-12-08 02:37:48 -08001275 struct inode *inode = file->f_path.dentry->d_inode;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001276 int fbidx = iminor(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 struct fb_info *info = registered_fb[fbidx];
1278 struct fb_ops *fb = info->fbops;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001279 long ret = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001281 switch(cmd) {
1282 case FBIOGET_VSCREENINFO:
1283 case FBIOPUT_VSCREENINFO:
1284 case FBIOPAN_DISPLAY:
1285 case FBIOGET_CON2FBMAP:
1286 case FBIOPUT_CON2FBMAP:
1287 arg = (unsigned long) compat_ptr(arg);
1288 case FBIOBLANK:
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001289 ret = do_fb_ioctl(info, cmd, arg);
1290 break;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001291
1292 case FBIOGET_FSCREENINFO:
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001293 ret = fb_get_fscreeninfo(info, cmd, arg);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001294 break;
1295
1296 case FBIOGETCMAP:
1297 case FBIOPUTCMAP:
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001298 ret = fb_getput_cmap(info, cmd, arg);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001299 break;
1300
1301 default:
1302 if (fb->fb_compat_ioctl)
Christoph Hellwig67a66802006-01-14 13:21:25 -08001303 ret = fb->fb_compat_ioctl(info, cmd, arg);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001304 break;
1305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 return ret;
1307}
1308#endif
1309
Antonino A. Daplas10eb2652007-07-17 04:05:27 -07001310static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311fb_mmap(struct file *file, struct vm_area_struct * vma)
1312{
Josef Sipekad9a8242006-12-08 02:37:48 -08001313 int fbidx = iminor(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 struct fb_info *info = registered_fb[fbidx];
1315 struct fb_ops *fb = info->fbops;
1316 unsigned long off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 unsigned long start;
1318 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320 if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT))
1321 return -EINVAL;
1322 off = vma->vm_pgoff << PAGE_SHIFT;
1323 if (!fb)
1324 return -ENODEV;
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001325 mutex_lock(&info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (fb->fb_mmap) {
1327 int res;
Christoph Hellwig216d5262006-01-14 13:21:25 -08001328 res = fb->fb_mmap(info, vma);
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001329 mutex_unlock(&info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 return res;
1331 }
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 /* frame buffer memory */
1334 start = info->fix.smem_start;
1335 len = PAGE_ALIGN((start & ~PAGE_MASK) + info->fix.smem_len);
1336 if (off >= len) {
1337 /* memory mapped io */
1338 off -= len;
1339 if (info->var.accel_flags) {
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001340 mutex_unlock(&info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 return -EINVAL;
1342 }
1343 start = info->fix.mmio_start;
1344 len = PAGE_ALIGN((start & ~PAGE_MASK) + info->fix.mmio_len);
1345 }
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001346 mutex_unlock(&info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 start &= PAGE_MASK;
1348 if ((vma->vm_end - vma->vm_start + off) > len)
1349 return -EINVAL;
1350 off += start;
1351 vma->vm_pgoff = off >> PAGE_SHIFT;
1352 /* This is an IO map - tell maydump to skip this VMA */
1353 vma->vm_flags |= VM_IO | VM_RESERVED;
Antonino A. Daplas10eb2652007-07-17 04:05:27 -07001354 fb_pgprotect(file, vma, off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 if (io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT,
1356 vma->vm_end - vma->vm_start, vma->vm_page_prot))
1357 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359}
1360
1361static int
1362fb_open(struct inode *inode, struct file *file)
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001363__acquires(&info->lock)
1364__releases(&info->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
1366 int fbidx = iminor(inode);
1367 struct fb_info *info;
1368 int res = 0;
1369
1370 if (fbidx >= FB_MAX)
1371 return -ENODEV;
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001372 info = registered_fb[fbidx];
1373 if (!info)
Johannes Berga65e5d72008-07-09 10:28:38 +02001374 request_module("fb%d", fbidx);
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001375 info = registered_fb[fbidx];
1376 if (!info)
1377 return -ENODEV;
1378 mutex_lock(&info->lock);
Jonathan Corbetfc7f6872008-05-15 16:30:36 -06001379 if (!try_module_get(info->fbops->owner)) {
1380 res = -ENODEV;
1381 goto out;
1382 }
Thomas Koellercae8a122006-01-09 20:53:48 -08001383 file->private_data = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 if (info->fbops->fb_open) {
1385 res = info->fbops->fb_open(info,1);
1386 if (res)
1387 module_put(info->fbops->owner);
1388 }
Ian Campbelld8474712008-08-20 14:09:23 -07001389#ifdef CONFIG_FB_DEFERRED_IO
1390 if (info->fbdefio)
1391 fb_deferred_io_open(info, inode, file);
1392#endif
Jonathan Corbetfc7f6872008-05-15 16:30:36 -06001393out:
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001394 mutex_unlock(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 return res;
1396}
1397
1398static int
1399fb_release(struct inode *inode, struct file *file)
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001400__acquires(&info->lock)
1401__releases(&info->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Thomas Koellercae8a122006-01-09 20:53:48 -08001403 struct fb_info * const info = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001405 mutex_lock(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 if (info->fbops->fb_release)
1407 info->fbops->fb_release(info,1);
1408 module_put(info->fbops->owner);
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001409 mutex_unlock(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 return 0;
1411}
1412
Helge Deller0128bee2006-12-08 02:40:29 -08001413static const struct file_operations fb_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 .owner = THIS_MODULE,
1415 .read = fb_read,
1416 .write = fb_write,
Alan Coxe5367712008-10-18 20:27:51 -07001417 .unlocked_ioctl = fb_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418#ifdef CONFIG_COMPAT
1419 .compat_ioctl = fb_compat_ioctl,
1420#endif
1421 .mmap = fb_mmap,
1422 .open = fb_open,
1423 .release = fb_release,
1424#ifdef HAVE_ARCH_FB_UNMAPPED_AREA
1425 .get_unmapped_area = get_fb_unmapped_area,
1426#endif
Paul Mundt5e841b82007-05-08 00:37:41 -07001427#ifdef CONFIG_FB_DEFERRED_IO
1428 .fsync = fb_deferred_io_fsync,
1429#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430};
1431
Antonino A. Daplas9a179172006-06-26 00:27:05 -07001432struct class *fb_class;
1433EXPORT_SYMBOL(fb_class);
Anton Vorontsove4c690e2008-04-28 02:14:49 -07001434
1435static int fb_check_foreignness(struct fb_info *fi)
1436{
1437 const bool foreign_endian = fi->flags & FBINFO_FOREIGN_ENDIAN;
1438
1439 fi->flags &= ~FBINFO_FOREIGN_ENDIAN;
1440
1441#ifdef __BIG_ENDIAN
1442 fi->flags |= foreign_endian ? 0 : FBINFO_BE_MATH;
1443#else
1444 fi->flags |= foreign_endian ? FBINFO_BE_MATH : 0;
1445#endif /* __BIG_ENDIAN */
1446
1447 if (fi->flags & FBINFO_BE_MATH && !fb_be_math(fi)) {
1448 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1449 "support this framebuffer\n", fi->fix.id);
1450 return -ENOSYS;
1451 } else if (!(fi->flags & FBINFO_BE_MATH) && fb_be_math(fi)) {
1452 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1453 "support this framebuffer\n", fi->fix.id);
1454 return -ENOSYS;
1455 }
1456
1457 return 0;
1458}
1459
Dave Airlie4410f392009-06-16 15:34:38 -07001460static bool fb_do_apertures_overlap(struct fb_info *gen, struct fb_info *hw)
1461{
1462 /* is the generic aperture base the same as the HW one */
1463 if (gen->aperture_base == hw->aperture_base)
1464 return true;
1465 /* is the generic aperture base inside the hw base->hw base+size */
1466 if (gen->aperture_base > hw->aperture_base && gen->aperture_base <= hw->aperture_base + hw->aperture_size)
1467 return true;
1468 return false;
1469}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470/**
1471 * register_framebuffer - registers a frame buffer device
1472 * @fb_info: frame buffer info structure
1473 *
1474 * Registers a frame buffer device @fb_info.
1475 *
1476 * Returns negative errno on error, or zero for success.
1477 *
1478 */
1479
1480int
1481register_framebuffer(struct fb_info *fb_info)
1482{
1483 int i;
1484 struct fb_event event;
Antonino A. Daplas96fe6a22005-09-09 13:09:58 -07001485 struct fb_videomode mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487 if (num_registered_fb == FB_MAX)
1488 return -ENXIO;
Anton Vorontsove4c690e2008-04-28 02:14:49 -07001489
1490 if (fb_check_foreignness(fb_info))
1491 return -ENOSYS;
1492
Dave Airlie4410f392009-06-16 15:34:38 -07001493 /* check all firmware fbs and kick off if the base addr overlaps */
1494 for (i = 0 ; i < FB_MAX; i++) {
1495 if (!registered_fb[i])
1496 continue;
1497
1498 if (registered_fb[i]->flags & FBINFO_MISC_FIRMWARE) {
1499 if (fb_do_apertures_overlap(registered_fb[i], fb_info)) {
1500 printk(KERN_ERR "fb: conflicting fb hw usage "
1501 "%s vs %s - removing generic driver\n",
1502 fb_info->fix.id,
1503 registered_fb[i]->fix.id);
1504 unregister_framebuffer(registered_fb[i]);
1505 break;
1506 }
1507 }
1508 }
1509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 num_registered_fb++;
1511 for (i = 0 ; i < FB_MAX; i++)
1512 if (!registered_fb[i])
1513 break;
1514 fb_info->node = i;
Linus Torvalds6c968952009-07-08 09:20:11 -07001515 mutex_init(&fb_info->lock);
1516 mutex_init(&fb_info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Greg Kroah-Hartman77997aa2008-07-21 20:03:34 -07001518 fb_info->dev = device_create(fb_class, fb_info->device,
1519 MKDEV(FB_MAJOR, i), NULL, "fb%d", i);
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -07001520 if (IS_ERR(fb_info->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 /* Not fatal */
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -07001522 printk(KERN_WARNING "Unable to create device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->dev));
1523 fb_info->dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 } else
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -07001525 fb_init_device(fb_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 if (fb_info->pixmap.addr == NULL) {
1528 fb_info->pixmap.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL);
1529 if (fb_info->pixmap.addr) {
1530 fb_info->pixmap.size = FBPIXMAPSIZE;
1531 fb_info->pixmap.buf_align = 1;
1532 fb_info->pixmap.scan_align = 1;
James Simmons58a60642005-06-21 17:17:08 -07001533 fb_info->pixmap.access_align = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 fb_info->pixmap.flags = FB_PIXMAP_DEFAULT;
1535 }
1536 }
1537 fb_info->pixmap.offset = 0;
1538
Antonino A. Daplasbf26ad72007-05-08 00:39:09 -07001539 if (!fb_info->pixmap.blit_x)
1540 fb_info->pixmap.blit_x = ~(u32)0;
1541
1542 if (!fb_info->pixmap.blit_y)
1543 fb_info->pixmap.blit_y = ~(u32)0;
1544
Antonino A. Daplas96fe6a22005-09-09 13:09:58 -07001545 if (!fb_info->modelist.prev || !fb_info->modelist.next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 INIT_LIST_HEAD(&fb_info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Antonino A. Daplas96fe6a22005-09-09 13:09:58 -07001548 fb_var_to_videomode(&mode, &fb_info->var);
1549 fb_add_videomode(&mode, &fb_info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 registered_fb[i] = fb_info;
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 event.info = fb_info;
Andrea Righi513adb52009-04-13 14:39:39 -07001553 if (!lock_fb_info(fb_info))
1554 return -ENODEV;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001555 fb_notifier_call_chain(FB_EVENT_FB_REGISTERED, &event);
Andrea Righi513adb52009-04-13 14:39:39 -07001556 unlock_fb_info(fb_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 return 0;
1558}
1559
1560
1561/**
1562 * unregister_framebuffer - releases a frame buffer device
1563 * @fb_info: frame buffer info structure
1564 *
1565 * Unregisters a frame buffer device @fb_info.
1566 *
1567 * Returns negative errno on error, or zero for success.
1568 *
Jesse Barnescfafca82007-07-17 04:05:33 -07001569 * This function will also notify the framebuffer console
1570 * to release the driver.
1571 *
1572 * This is meant to be called within a driver's module_exit()
1573 * function. If this is called outside module_exit(), ensure
1574 * that the driver implements fb_open() and fb_release() to
1575 * check that no processes are using the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 */
1577
1578int
1579unregister_framebuffer(struct fb_info *fb_info)
1580{
Antonino A. Daplase614b182006-06-26 00:27:09 -07001581 struct fb_event event;
Jesse Barnescfafca82007-07-17 04:05:33 -07001582 int i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 i = fb_info->node;
Jesse Barnescfafca82007-07-17 04:05:33 -07001585 if (!registered_fb[i]) {
1586 ret = -EINVAL;
1587 goto done;
1588 }
1589
Andrea Righi513adb52009-04-13 14:39:39 -07001590
1591 if (!lock_fb_info(fb_info))
1592 return -ENODEV;
Jesse Barnescfafca82007-07-17 04:05:33 -07001593 event.info = fb_info;
1594 ret = fb_notifier_call_chain(FB_EVENT_FB_UNBIND, &event);
Andrea Righi513adb52009-04-13 14:39:39 -07001595 unlock_fb_info(fb_info);
Jesse Barnescfafca82007-07-17 04:05:33 -07001596
1597 if (ret) {
1598 ret = -EINVAL;
1599 goto done;
1600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Antonino A. Daplase614b182006-06-26 00:27:09 -07001602 if (fb_info->pixmap.addr &&
1603 (fb_info->pixmap.flags & FB_PIXMAP_DEFAULT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 kfree(fb_info->pixmap.addr);
1605 fb_destroy_modelist(&fb_info->modelist);
1606 registered_fb[i]=NULL;
1607 num_registered_fb--;
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -07001608 fb_cleanup_device(fb_info);
1609 device_destroy(fb_class, MKDEV(FB_MAJOR, i));
Antonino A. Daplase614b182006-06-26 00:27:09 -07001610 event.info = fb_info;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001611 fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED, &event);
Dave Airlie4410f392009-06-16 15:34:38 -07001612
1613 /* this may free fb info */
1614 if (fb_info->fbops->fb_destroy)
1615 fb_info->fbops->fb_destroy(fb_info);
Jesse Barnescfafca82007-07-17 04:05:33 -07001616done:
1617 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618}
1619
1620/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 * fb_set_suspend - low level driver signals suspend
1622 * @info: framebuffer affected
1623 * @state: 0 = resuming, !=0 = suspending
1624 *
1625 * This is meant to be used by low level drivers to
1626 * signal suspend/resume to the core & clients.
1627 * It must be called with the console semaphore held
1628 */
1629void fb_set_suspend(struct fb_info *info, int state)
1630{
1631 struct fb_event event;
1632
Andrea Righi513adb52009-04-13 14:39:39 -07001633 if (!lock_fb_info(info))
1634 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 event.info = info;
1636 if (state) {
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001637 fb_notifier_call_chain(FB_EVENT_SUSPEND, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 info->state = FBINFO_STATE_SUSPENDED;
1639 } else {
1640 info->state = FBINFO_STATE_RUNNING;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001641 fb_notifier_call_chain(FB_EVENT_RESUME, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 }
Andrea Righi513adb52009-04-13 14:39:39 -07001643 unlock_fb_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644}
1645
1646/**
1647 * fbmem_init - init frame buffer subsystem
1648 *
1649 * Initialize the frame buffer subsystem.
1650 *
1651 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1652 *
1653 */
1654
1655static int __init
1656fbmem_init(void)
1657{
Alexey Dobriyan0aa16342008-04-28 02:15:42 -07001658 proc_create("fb", 0, NULL, &fb_proc_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 if (register_chrdev(FB_MAJOR,"fb",&fb_fops))
1661 printk("unable to get major %d for fb devs\n", FB_MAJOR);
1662
gregkh@suse.de56b22932005-03-23 10:01:41 -08001663 fb_class = class_create(THIS_MODULE, "graphics");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 if (IS_ERR(fb_class)) {
1665 printk(KERN_WARNING "Unable to create fb class; errno = %ld\n", PTR_ERR(fb_class));
1666 fb_class = NULL;
1667 }
1668 return 0;
1669}
1670
1671#ifdef MODULE
1672module_init(fbmem_init);
1673static void __exit
1674fbmem_exit(void)
1675{
Alexey Dobriyanc43f89c2008-04-15 14:34:33 -07001676 remove_proc_entry("fb", NULL);
gregkh@suse.de56b22932005-03-23 10:01:41 -08001677 class_destroy(fb_class);
Jon Smirl5a340cc2005-07-27 11:46:04 -07001678 unregister_chrdev(FB_MAJOR, "fb");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
1681module_exit(fbmem_exit);
1682MODULE_LICENSE("GPL");
1683MODULE_DESCRIPTION("Framebuffer base");
1684#else
1685subsys_initcall(fbmem_init);
1686#endif
1687
1688int fb_new_modelist(struct fb_info *info)
1689{
1690 struct fb_event event;
1691 struct fb_var_screeninfo var = info->var;
1692 struct list_head *pos, *n;
1693 struct fb_modelist *modelist;
1694 struct fb_videomode *m, mode;
1695 int err = 1;
1696
1697 list_for_each_safe(pos, n, &info->modelist) {
1698 modelist = list_entry(pos, struct fb_modelist, list);
1699 m = &modelist->mode;
1700 fb_videomode_to_var(&var, m);
1701 var.activate = FB_ACTIVATE_TEST;
1702 err = fb_set_var(info, &var);
1703 fb_var_to_videomode(&mode, &var);
1704 if (err || !fb_mode_is_equal(m, &mode)) {
1705 list_del(pos);
1706 kfree(pos);
1707 }
1708 }
1709
1710 err = 1;
1711
1712 if (!list_empty(&info->modelist)) {
Andrea Righi513adb52009-04-13 14:39:39 -07001713 if (!lock_fb_info(info))
1714 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 event.info = info;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001716 err = fb_notifier_call_chain(FB_EVENT_NEW_MODELIST, &event);
Andrea Righi513adb52009-04-13 14:39:39 -07001717 unlock_fb_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
1719
1720 return err;
1721}
1722
Helge Deller0128bee2006-12-08 02:40:29 -08001723static char *video_options[FB_MAX] __read_mostly;
1724static int ofonly __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726/**
1727 * fb_get_options - get kernel boot parameters
1728 * @name: framebuffer name as it would appear in
1729 * the boot parameter line
1730 * (video=<name>:<options>)
1731 * @option: the option will be stored here
1732 *
1733 * NOTE: Needed to maintain backwards compatibility
1734 */
1735int fb_get_options(char *name, char **option)
1736{
1737 char *opt, *options = NULL;
1738 int opt_len, retval = 0;
1739 int name_len = strlen(name), i;
1740
1741 if (name_len && ofonly && strncmp(name, "offb", 4))
1742 retval = 1;
1743
1744 if (name_len && !retval) {
1745 for (i = 0; i < FB_MAX; i++) {
1746 if (video_options[i] == NULL)
1747 continue;
1748 opt_len = strlen(video_options[i]);
1749 if (!opt_len)
1750 continue;
1751 opt = video_options[i];
1752 if (!strncmp(name, opt, name_len) &&
1753 opt[name_len] == ':')
1754 options = opt + name_len + 1;
1755 }
1756 }
1757 if (options && !strncmp(options, "off", 3))
1758 retval = 1;
1759
1760 if (option)
1761 *option = options;
1762
1763 return retval;
1764}
1765
Andrew Mortonbc6d7fd2006-02-11 17:56:08 -08001766#ifndef MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767/**
1768 * video_setup - process command line options
1769 * @options: string of options
1770 *
1771 * Process command line options for frame buffer subsystem.
1772 *
1773 * NOTE: This function is a __setup and __init function.
1774 * It only stores the options. Drivers have to call
1775 * fb_get_options() as necessary.
1776 *
1777 * Returns zero.
1778 *
1779 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07001780static int __init video_setup(char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
1782 int i, global = 0;
1783
1784 if (!options || !*options)
1785 global = 1;
1786
1787 if (!global && !strncmp(options, "ofonly", 6)) {
1788 ofonly = 1;
1789 global = 1;
1790 }
1791
1792 if (!global && !strstr(options, "fb:")) {
Geert Uytterhoeven9a054fb2007-10-16 01:29:51 -07001793 fb_mode_option = options;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 global = 1;
1795 }
1796
1797 if (!global) {
1798 for (i = 0; i < FB_MAX; i++) {
1799 if (video_options[i] == NULL) {
1800 video_options[i] = options;
1801 break;
1802 }
1803
1804 }
1805 }
1806
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001807 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809__setup("video=", video_setup);
Andrew Mortonbc6d7fd2006-02-11 17:56:08 -08001810#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 /*
1813 * Visible symbols for modules
1814 */
1815
1816EXPORT_SYMBOL(register_framebuffer);
1817EXPORT_SYMBOL(unregister_framebuffer);
1818EXPORT_SYMBOL(num_registered_fb);
1819EXPORT_SYMBOL(registered_fb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820EXPORT_SYMBOL(fb_show_logo);
1821EXPORT_SYMBOL(fb_set_var);
1822EXPORT_SYMBOL(fb_blank);
1823EXPORT_SYMBOL(fb_pan_display);
1824EXPORT_SYMBOL(fb_get_buffer_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825EXPORT_SYMBOL(fb_set_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826EXPORT_SYMBOL(fb_get_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828MODULE_LICENSE("GPL");