blob: 53ea05645ff8e8bedb93e354d26f7f945628d8dd [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/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>
Jon Smirla8f340e2006-07-10 04:44:12 -070025#include <linux/vt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/linux_logo.h>
28#include <linux/proc_fs.h>
Alexey Dobriyan0aa16342008-04-28 02:15:42 -070029#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/console.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/kmod.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/device.h>
34#include <linux/efi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/fb.h>
36
Antonino A. Daplas10eb2652007-07-17 04:05:27 -070037#include <asm/fb.h>
38
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 /*
41 * Frame buffer device initialization and setup routines
42 */
43
44#define FBPIXMAPSIZE (1024 * 8)
45
Helge Deller0128bee2006-12-08 02:40:29 -080046struct fb_info *registered_fb[FB_MAX] __read_mostly;
47int num_registered_fb __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Andrew Morton6a7f2822009-03-31 15:25:19 -070049int lock_fb_info(struct fb_info *info)
50{
51 mutex_lock(&info->lock);
52 if (!info->fbops) {
53 mutex_unlock(&info->lock);
54 return 0;
55 }
56 return 1;
57}
58EXPORT_SYMBOL(lock_fb_info);
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/*
61 * Helpers
62 */
63
Antonino A. Daplasb8c90942005-09-09 13:04:37 -070064int fb_get_color_depth(struct fb_var_screeninfo *var,
65 struct fb_fix_screeninfo *fix)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
Antonino A. Daplasb8c90942005-09-09 13:04:37 -070067 int depth = 0;
68
69 if (fix->visual == FB_VISUAL_MONO01 ||
70 fix->visual == FB_VISUAL_MONO10)
71 depth = 1;
72 else {
73 if (var->green.length == var->blue.length &&
74 var->green.length == var->red.length &&
75 var->green.offset == var->blue.offset &&
76 var->green.offset == var->red.offset)
77 depth = var->green.length;
78 else
79 depth = var->green.length + var->red.length +
80 var->blue.length;
81 }
82
83 return depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85EXPORT_SYMBOL(fb_get_color_depth);
86
87/*
James Simmonsf5a99512005-06-21 17:16:58 -070088 * Data padding functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 */
James Simmonsf1ab5da2005-06-21 17:17:07 -070090void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Antonino A. Daplas829e79b2005-09-09 13:10:04 -070092 __fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
James Simmonsf1ab5da2005-06-21 17:17:07 -070094EXPORT_SYMBOL(fb_pad_aligned_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
James Simmonsf1ab5da2005-06-21 17:17:07 -070096void fb_pad_unaligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 idx, u32 height,
97 u32 shift_high, u32 shift_low, u32 mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 u8 mask = (u8) (0xfff << shift_high), tmp;
100 int i, j;
101
102 for (i = height; i--; ) {
103 for (j = 0; j < idx; j++) {
104 tmp = dst[j];
105 tmp &= mask;
106 tmp |= *src >> shift_low;
107 dst[j] = tmp;
108 tmp = *src << shift_high;
109 dst[j+1] = tmp;
110 src++;
111 }
112 tmp = dst[idx];
113 tmp &= mask;
114 tmp |= *src >> shift_low;
115 dst[idx] = tmp;
116 if (shift_high < mod) {
117 tmp = *src << shift_high;
118 dst[idx+1] = tmp;
119 }
120 src++;
121 dst += d_pitch;
122 }
123}
James Simmonsf1ab5da2005-06-21 17:17:07 -0700124EXPORT_SYMBOL(fb_pad_unaligned_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126/*
127 * we need to lock this section since fb_cursor
128 * may use fb_imageblit()
129 */
130char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size)
131{
132 u32 align = buf->buf_align - 1, offset;
133 char *addr = buf->addr;
134
135 /* If IO mapped, we need to sync before access, no sharing of
136 * the pixmap is done
137 */
138 if (buf->flags & FB_PIXMAP_IO) {
139 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
140 info->fbops->fb_sync(info);
141 return addr;
142 }
143
144 /* See if we fit in the remaining pixmap space */
145 offset = buf->offset + align;
146 offset &= ~align;
147 if (offset + size > buf->size) {
148 /* We do not fit. In order to be able to re-use the buffer,
149 * we must ensure no asynchronous DMA'ing or whatever operation
150 * is in progress, we sync for that.
151 */
152 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
153 info->fbops->fb_sync(info);
154 offset = 0;
155 }
156 buf->offset = offset + size;
157 addr += offset;
158
159 return addr;
160}
161
162#ifdef CONFIG_LOGO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164static inline unsigned safe_shift(unsigned d, int n)
165{
166 return n < 0 ? d >> -n : d << n;
167}
168
169static void fb_set_logocmap(struct fb_info *info,
170 const struct linux_logo *logo)
171{
172 struct fb_cmap palette_cmap;
173 u16 palette_green[16];
174 u16 palette_blue[16];
175 u16 palette_red[16];
176 int i, j, n;
177 const unsigned char *clut = logo->clut;
178
179 palette_cmap.start = 0;
180 palette_cmap.len = 16;
181 palette_cmap.red = palette_red;
182 palette_cmap.green = palette_green;
183 palette_cmap.blue = palette_blue;
184 palette_cmap.transp = NULL;
185
186 for (i = 0; i < logo->clutsize; i += n) {
187 n = logo->clutsize - i;
188 /* palette_cmap provides space for only 16 colors at once */
189 if (n > 16)
190 n = 16;
191 palette_cmap.start = 32 + i;
192 palette_cmap.len = n;
193 for (j = 0; j < n; ++j) {
194 palette_cmap.red[j] = clut[0] << 8 | clut[0];
195 palette_cmap.green[j] = clut[1] << 8 | clut[1];
196 palette_cmap.blue[j] = clut[2] << 8 | clut[2];
197 clut += 3;
198 }
199 fb_set_cmap(&palette_cmap, info);
200 }
201}
202
203static void fb_set_logo_truepalette(struct fb_info *info,
204 const struct linux_logo *logo,
205 u32 *palette)
206{
Helge Deller0128bee2006-12-08 02:40:29 -0800207 static const unsigned char mask[] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 unsigned char redmask, greenmask, bluemask;
209 int redshift, greenshift, blueshift;
210 int i;
211 const unsigned char *clut = logo->clut;
212
213 /*
214 * We have to create a temporary palette since console palette is only
215 * 16 colors long.
216 */
217 /* Bug: Doesn't obey msb_right ... (who needs that?) */
218 redmask = mask[info->var.red.length < 8 ? info->var.red.length : 8];
219 greenmask = mask[info->var.green.length < 8 ? info->var.green.length : 8];
220 bluemask = mask[info->var.blue.length < 8 ? info->var.blue.length : 8];
221 redshift = info->var.red.offset - (8 - info->var.red.length);
222 greenshift = info->var.green.offset - (8 - info->var.green.length);
223 blueshift = info->var.blue.offset - (8 - info->var.blue.length);
224
225 for ( i = 0; i < logo->clutsize; i++) {
226 palette[i+32] = (safe_shift((clut[0] & redmask), redshift) |
227 safe_shift((clut[1] & greenmask), greenshift) |
228 safe_shift((clut[2] & bluemask), blueshift));
229 clut += 3;
230 }
231}
232
233static void fb_set_logo_directpalette(struct fb_info *info,
234 const struct linux_logo *logo,
235 u32 *palette)
236{
237 int redshift, greenshift, blueshift;
238 int i;
239
240 redshift = info->var.red.offset;
241 greenshift = info->var.green.offset;
242 blueshift = info->var.blue.offset;
243
Clemens Ladischcf7ee552008-11-19 15:36:10 -0800244 for (i = 32; i < 32 + logo->clutsize; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 palette[i] = i << redshift | i << greenshift | i << blueshift;
246}
247
248static void fb_set_logo(struct fb_info *info,
249 const struct linux_logo *logo, u8 *dst,
250 int depth)
251{
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700252 int i, j, k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 const u8 *src = logo->data;
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700254 u8 xor = (info->fix.visual == FB_VISUAL_MONO01) ? 0xff : 0;
255 u8 fg = 1, d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Antonino A. Daplas1692b372007-07-31 00:37:36 -0700257 switch (fb_get_color_depth(&info->var, &info->fix)) {
258 case 1:
259 fg = 1;
260 break;
261 case 2:
262 fg = 3;
263 break;
264 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 fg = 7;
Antonino A. Daplas1692b372007-07-31 00:37:36 -0700266 break;
267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700269 if (info->fix.visual == FB_VISUAL_MONO01 ||
270 info->fix.visual == FB_VISUAL_MONO10)
271 fg = ~((u8) (0xfff << info->var.green.length));
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 switch (depth) {
274 case 4:
275 for (i = 0; i < logo->height; i++)
276 for (j = 0; j < logo->width; src++) {
277 *dst++ = *src >> 4;
278 j++;
279 if (j < logo->width) {
280 *dst++ = *src & 0x0f;
281 j++;
282 }
283 }
284 break;
285 case 1:
286 for (i = 0; i < logo->height; i++) {
287 for (j = 0; j < logo->width; src++) {
288 d = *src ^ xor;
289 for (k = 7; k >= 0; k--) {
290 *dst++ = ((d >> k) & 1) ? fg : 0;
291 j++;
292 }
293 }
294 }
295 break;
296 }
297}
298
299/*
300 * Three (3) kinds of logo maps exist. linux_logo_clut224 (>16 colors),
301 * linux_logo_vga16 (16 colors) and linux_logo_mono (2 colors). Depending on
302 * the visual format and color depth of the framebuffer, the DAC, the
303 * pseudo_palette, and the logo data will be adjusted accordingly.
304 *
305 * Case 1 - linux_logo_clut224:
306 * Color exceeds the number of console colors (16), thus we set the hardware DAC
307 * using fb_set_cmap() appropriately. The "needs_cmapreset" flag will be set.
308 *
309 * For visuals that require color info from the pseudo_palette, we also construct
310 * one for temporary use. The "needs_directpalette" or "needs_truepalette" flags
311 * will be set.
312 *
313 * Case 2 - linux_logo_vga16:
314 * The number of colors just matches the console colors, thus there is no need
315 * to set the DAC or the pseudo_palette. However, the bitmap is packed, ie,
316 * each byte contains color information for two pixels (upper and lower nibble).
317 * To be consistent with fb_imageblit() usage, we therefore separate the two
318 * nibbles into separate bytes. The "depth" flag will be set to 4.
319 *
320 * Case 3 - linux_logo_mono:
321 * This is similar with Case 2. Each byte contains information for 8 pixels.
322 * We isolate each bit and expand each into a byte. The "depth" flag will
323 * be set to 1.
324 */
325static struct logo_data {
326 int depth;
327 int needs_directpalette;
328 int needs_truepalette;
329 int needs_cmapreset;
330 const struct linux_logo *logo;
Helge Deller0128bee2006-12-08 02:40:29 -0800331} fb_logo __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800333static void fb_rotate_logo_ud(const u8 *in, u8 *out, u32 width, u32 height)
334{
335 u32 size = width * height, i;
336
337 out += size - 1;
338
339 for (i = size; i--; )
340 *out-- = *in++;
341}
342
343static void fb_rotate_logo_cw(const u8 *in, u8 *out, u32 width, u32 height)
344{
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700345 int i, j, h = height - 1;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800346
347 for (i = 0; i < height; i++)
348 for (j = 0; j < width; j++)
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700349 out[height * j + h - i] = *in++;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800350}
351
352static void fb_rotate_logo_ccw(const u8 *in, u8 *out, u32 width, u32 height)
353{
354 int i, j, w = width - 1;
355
356 for (i = 0; i < height; i++)
357 for (j = 0; j < width; j++)
358 out[height * (w - j) + i] = *in++;
359}
360
361static void fb_rotate_logo(struct fb_info *info, u8 *dst,
362 struct fb_image *image, int rotate)
363{
364 u32 tmp;
365
366 if (rotate == FB_ROTATE_UD) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800367 fb_rotate_logo_ud(image->data, dst, image->width,
368 image->height);
Geert Uytterhoevenabed5d12007-05-08 00:37:57 -0700369 image->dx = info->var.xres - image->width - image->dx;
370 image->dy = info->var.yres - image->height - image->dy;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800371 } else if (rotate == FB_ROTATE_CW) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800372 fb_rotate_logo_cw(image->data, dst, image->width,
373 image->height);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800374 tmp = image->width;
375 image->width = image->height;
376 image->height = tmp;
Geert Uytterhoevenabed5d12007-05-08 00:37:57 -0700377 tmp = image->dy;
378 image->dy = image->dx;
379 image->dx = info->var.xres - image->width - tmp;
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700380 } else if (rotate == FB_ROTATE_CCW) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800381 fb_rotate_logo_ccw(image->data, dst, image->width,
382 image->height);
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700383 tmp = image->width;
384 image->width = image->height;
385 image->height = tmp;
Geert Uytterhoevenabed5d12007-05-08 00:37:57 -0700386 tmp = image->dx;
387 image->dx = image->dy;
388 image->dy = info->var.yres - image->height - tmp;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800389 }
390
391 image->data = dst;
392}
393
394static void fb_do_show_logo(struct fb_info *info, struct fb_image *image,
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700395 int rotate, unsigned int num)
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800396{
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700397 unsigned int x;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800398
399 if (rotate == FB_ROTATE_UR) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700400 for (x = 0;
401 x < num && image->dx + image->width <= info->var.xres;
402 x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800403 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700404 image->dx += image->width + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800405 }
406 } else if (rotate == FB_ROTATE_UD) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700407 for (x = 0; x < num && image->dx >= 0; x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800408 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700409 image->dx -= image->width + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800410 }
411 } else if (rotate == FB_ROTATE_CW) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700412 for (x = 0;
413 x < num && image->dy + image->height <= info->var.yres;
414 x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800415 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700416 image->dy += image->height + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800417 }
418 } else if (rotate == FB_ROTATE_CCW) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700419 for (x = 0; x < num && image->dy >= 0; x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800420 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700421 image->dy -= image->height + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800422 }
423 }
424}
425
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700426static int fb_show_logo_line(struct fb_info *info, int rotate,
427 const struct linux_logo *logo, int y,
428 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
430 u32 *palette = NULL, *saved_pseudo_palette = NULL;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800431 unsigned char *logo_new = NULL, *logo_rotate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct fb_image image;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 /* Return if the frame buffer is not mapped or suspended */
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700435 if (logo == NULL || info->state != FBINFO_STATE_RUNNING ||
Antonino A. Daplas70802c62007-05-08 00:38:14 -0700436 info->flags & FBINFO_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return 0;
438
439 image.depth = 8;
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700440 image.data = logo->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 if (fb_logo.needs_cmapreset)
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700443 fb_set_logocmap(info, logo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700445 if (fb_logo.needs_truepalette ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 fb_logo.needs_directpalette) {
447 palette = kmalloc(256 * 4, GFP_KERNEL);
448 if (palette == NULL)
449 return 0;
450
451 if (fb_logo.needs_truepalette)
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700452 fb_set_logo_truepalette(info, logo, palette);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 else
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700454 fb_set_logo_directpalette(info, logo, palette);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 saved_pseudo_palette = info->pseudo_palette;
457 info->pseudo_palette = palette;
458 }
459
460 if (fb_logo.depth <= 4) {
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700461 logo_new = kmalloc(logo->width * logo->height, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (logo_new == NULL) {
463 kfree(palette);
464 if (saved_pseudo_palette)
465 info->pseudo_palette = saved_pseudo_palette;
466 return 0;
467 }
468 image.data = logo_new;
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700469 fb_set_logo(info, logo, logo_new, fb_logo.depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
471
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800472 image.dx = 0;
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700473 image.dy = y;
474 image.width = logo->width;
475 image.height = logo->height;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800477 if (rotate) {
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700478 logo_rotate = kmalloc(logo->width *
479 logo->height, GFP_KERNEL);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800480 if (logo_rotate)
481 fb_rotate_logo(info, logo_rotate, &image, rotate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800483
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700484 fb_do_show_logo(info, &image, rotate, n);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 kfree(palette);
487 if (saved_pseudo_palette != NULL)
488 info->pseudo_palette = saved_pseudo_palette;
489 kfree(logo_new);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800490 kfree(logo_rotate);
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700491 return logo->height;
492}
493
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700494
495#ifdef CONFIG_FB_LOGO_EXTRA
496
497#define FB_LOGO_EX_NUM_MAX 10
498static struct logo_data_extra {
499 const struct linux_logo *logo;
500 unsigned int n;
501} fb_logo_ex[FB_LOGO_EX_NUM_MAX];
502static unsigned int fb_logo_ex_num;
503
504void fb_append_extra_logo(const struct linux_logo *logo, unsigned int n)
505{
506 if (!n || fb_logo_ex_num == FB_LOGO_EX_NUM_MAX)
507 return;
508
509 fb_logo_ex[fb_logo_ex_num].logo = logo;
510 fb_logo_ex[fb_logo_ex_num].n = n;
511 fb_logo_ex_num++;
512}
513
514static int fb_prepare_extra_logos(struct fb_info *info, unsigned int height,
515 unsigned int yres)
516{
517 unsigned int i;
518
519 /* FIXME: logo_ex supports only truecolor fb. */
520 if (info->fix.visual != FB_VISUAL_TRUECOLOR)
521 fb_logo_ex_num = 0;
522
523 for (i = 0; i < fb_logo_ex_num; i++) {
Geert Uytterhoeven4fb6de22009-01-06 14:42:37 -0800524 if (fb_logo_ex[i].logo->type != fb_logo.logo->type) {
525 fb_logo_ex[i].logo = NULL;
526 continue;
527 }
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700528 height += fb_logo_ex[i].logo->height;
529 if (height > yres) {
530 height -= fb_logo_ex[i].logo->height;
531 fb_logo_ex_num = i;
532 break;
533 }
534 }
535 return height;
536}
537
538static int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
539{
540 unsigned int i;
541
542 for (i = 0; i < fb_logo_ex_num; i++)
543 y += fb_show_logo_line(info, rotate,
544 fb_logo_ex[i].logo, y, fb_logo_ex[i].n);
545
546 return y;
547}
548
549#else /* !CONFIG_FB_LOGO_EXTRA */
550
551static inline int fb_prepare_extra_logos(struct fb_info *info,
552 unsigned int height,
553 unsigned int yres)
554{
555 return height;
556}
557
558static inline int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
559{
560 return y;
561}
562
563#endif /* CONFIG_FB_LOGO_EXTRA */
564
565
566int fb_prepare_logo(struct fb_info *info, int rotate)
567{
568 int depth = fb_get_color_depth(&info->var, &info->fix);
569 unsigned int yres;
570
571 memset(&fb_logo, 0, sizeof(struct logo_data));
572
573 if (info->flags & FBINFO_MISC_TILEBLITTING ||
574 info->flags & FBINFO_MODULE)
575 return 0;
576
577 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
578 depth = info->var.blue.length;
579 if (info->var.red.length < depth)
580 depth = info->var.red.length;
581 if (info->var.green.length < depth)
582 depth = info->var.green.length;
583 }
584
585 if (info->fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR && depth > 4) {
586 /* assume console colormap */
587 depth = 4;
588 }
589
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700590 /* Return if no suitable logo was found */
591 fb_logo.logo = fb_find_logo(depth);
592
593 if (!fb_logo.logo) {
594 return 0;
595 }
596
597 if (rotate == FB_ROTATE_UR || rotate == FB_ROTATE_UD)
598 yres = info->var.yres;
599 else
600 yres = info->var.xres;
601
602 if (fb_logo.logo->height > yres) {
603 fb_logo.logo = NULL;
604 return 0;
605 }
606
607 /* What depth we asked for might be different from what we get */
608 if (fb_logo.logo->type == LINUX_LOGO_CLUT224)
609 fb_logo.depth = 8;
610 else if (fb_logo.logo->type == LINUX_LOGO_VGA16)
611 fb_logo.depth = 4;
612 else
613 fb_logo.depth = 1;
614
Antonino A. Daplas1692b372007-07-31 00:37:36 -0700615
616 if (fb_logo.depth > 4 && depth > 4) {
617 switch (info->fix.visual) {
618 case FB_VISUAL_TRUECOLOR:
619 fb_logo.needs_truepalette = 1;
620 break;
621 case FB_VISUAL_DIRECTCOLOR:
622 fb_logo.needs_directpalette = 1;
623 fb_logo.needs_cmapreset = 1;
624 break;
625 case FB_VISUAL_PSEUDOCOLOR:
626 fb_logo.needs_cmapreset = 1;
627 break;
628 }
629 }
630
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700631 return fb_prepare_extra_logos(info, fb_logo.logo->height, yres);
632}
633
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700634int fb_show_logo(struct fb_info *info, int rotate)
635{
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700636 int y;
637
638 y = fb_show_logo_line(info, rotate, fb_logo.logo, 0,
639 num_online_cpus());
640 y = fb_show_extra_logos(info, y, rotate);
641
642 return y;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644#else
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800645int fb_prepare_logo(struct fb_info *info, int rotate) { return 0; }
646int fb_show_logo(struct fb_info *info, int rotate) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647#endif /* CONFIG_LOGO */
648
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700649static void *fb_seq_start(struct seq_file *m, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700651 return (*pos < FB_MAX) ? pos : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700654static void *fb_seq_next(struct seq_file *m, void *v, loff_t *pos)
655{
656 (*pos)++;
657 return (*pos < FB_MAX) ? pos : NULL;
658}
659
660static void fb_seq_stop(struct seq_file *m, void *v)
661{
662}
663
664static int fb_seq_show(struct seq_file *m, void *v)
665{
666 int i = *(loff_t *)v;
667 struct fb_info *fi = registered_fb[i];
668
669 if (fi)
670 seq_printf(m, "%d %s\n", fi->node, fi->fix.id);
671 return 0;
672}
673
674static const struct seq_operations proc_fb_seq_ops = {
675 .start = fb_seq_start,
676 .next = fb_seq_next,
677 .stop = fb_seq_stop,
678 .show = fb_seq_show,
679};
680
681static int proc_fb_open(struct inode *inode, struct file *file)
682{
683 return seq_open(file, &proc_fb_seq_ops);
684}
685
686static const struct file_operations fb_proc_fops = {
687 .owner = THIS_MODULE,
688 .open = proc_fb_open,
689 .read = seq_read,
690 .llseek = seq_lseek,
691 .release = seq_release,
692};
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694static ssize_t
695fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
696{
697 unsigned long p = *ppos;
Josef Sipekad9a8242006-12-08 02:37:48 -0800698 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 int fbidx = iminor(inode);
700 struct fb_info *info = registered_fb[fbidx];
701 u32 *buffer, *dst;
702 u32 __iomem *src;
703 int c, i, cnt = 0, err = 0;
704 unsigned long total_size;
705
706 if (!info || ! info->screen_base)
707 return -ENODEV;
708
709 if (info->state != FBINFO_STATE_RUNNING)
710 return -EPERM;
711
712 if (info->fbops->fb_read)
Antonino A. Daplas3f9b0882007-05-08 00:39:02 -0700713 return info->fbops->fb_read(info, buf, count, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 total_size = info->screen_size;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 if (total_size == 0)
718 total_size = info->fix.smem_len;
719
720 if (p >= total_size)
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800721 return 0;
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (count >= total_size)
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800724 count = total_size;
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (count + p > total_size)
727 count = total_size - p;
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
730 GFP_KERNEL);
731 if (!buffer)
732 return -ENOMEM;
733
734 src = (u32 __iomem *) (info->screen_base + p);
735
736 if (info->fbops->fb_sync)
737 info->fbops->fb_sync(info);
738
739 while (count) {
740 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
741 dst = buffer;
742 for (i = c >> 2; i--; )
743 *dst++ = fb_readl(src++);
744 if (c & 3) {
745 u8 *dst8 = (u8 *) dst;
746 u8 __iomem *src8 = (u8 __iomem *) src;
747
748 for (i = c & 3; i--;)
749 *dst8++ = fb_readb(src8++);
750
751 src = (u32 __iomem *) src8;
752 }
753
754 if (copy_to_user(buf, buffer, c)) {
755 err = -EFAULT;
756 break;
757 }
758 *ppos += c;
759 buf += c;
760 cnt += c;
761 count -= c;
762 }
763
764 kfree(buffer);
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return (err) ? err : cnt;
767}
768
769static ssize_t
770fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
771{
772 unsigned long p = *ppos;
Josef Sipekad9a8242006-12-08 02:37:48 -0800773 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 int fbidx = iminor(inode);
775 struct fb_info *info = registered_fb[fbidx];
776 u32 *buffer, *src;
777 u32 __iomem *dst;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800778 int c, i, cnt = 0, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 unsigned long total_size;
780
781 if (!info || !info->screen_base)
782 return -ENODEV;
783
784 if (info->state != FBINFO_STATE_RUNNING)
785 return -EPERM;
786
787 if (info->fbops->fb_write)
Antonino A. Daplas3f9b0882007-05-08 00:39:02 -0700788 return info->fbops->fb_write(info, buf, count, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 total_size = info->screen_size;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (total_size == 0)
793 total_size = info->fix.smem_len;
794
795 if (p > total_size)
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700796 return -EFBIG;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800797
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700798 if (count > total_size) {
799 err = -EFBIG;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800800 count = total_size;
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700801 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800802
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700803 if (count + p > total_size) {
804 if (!err)
805 err = -ENOSPC;
806
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800807 count = total_size - p;
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700808 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
811 GFP_KERNEL);
812 if (!buffer)
813 return -ENOMEM;
814
815 dst = (u32 __iomem *) (info->screen_base + p);
816
817 if (info->fbops->fb_sync)
818 info->fbops->fb_sync(info);
819
820 while (count) {
821 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
822 src = buffer;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (copy_from_user(src, buf, c)) {
825 err = -EFAULT;
826 break;
827 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 for (i = c >> 2; i--; )
830 fb_writel(*src++, dst++);
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (c & 3) {
833 u8 *src8 = (u8 *) src;
834 u8 __iomem *dst8 = (u8 __iomem *) dst;
835
836 for (i = c & 3; i--; )
837 fb_writeb(*src8++, dst8++);
838
839 dst = (u32 __iomem *) dst8;
840 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 *ppos += c;
843 buf += c;
844 cnt += c;
845 count -= c;
846 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 kfree(buffer);
849
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700850 return (cnt) ? cnt : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853int
854fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var)
855{
Antonino A. Daplas12070692005-12-12 22:17:17 -0800856 struct fb_fix_screeninfo *fix = &info->fix;
Ville Syrjala7572a1e2008-07-23 21:31:28 -0700857 unsigned int yres = info->var.yres;
858 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Antonino A. Daplas12070692005-12-12 22:17:17 -0800860 if (var->yoffset > 0) {
861 if (var->vmode & FB_VMODE_YWRAP) {
862 if (!fix->ywrapstep || (var->yoffset % fix->ywrapstep))
863 err = -EINVAL;
864 else
865 yres = 0;
866 } else if (!fix->ypanstep || (var->yoffset % fix->ypanstep))
867 err = -EINVAL;
868 }
869
870 if (var->xoffset > 0 && (!fix->xpanstep ||
871 (var->xoffset % fix->xpanstep)))
872 err = -EINVAL;
873
Ville Syrjala7572a1e2008-07-23 21:31:28 -0700874 if (err || !info->fbops->fb_pan_display ||
875 var->yoffset + yres > info->var.yres_virtual ||
Antonino A. Daplas12070692005-12-12 22:17:17 -0800876 var->xoffset + info->var.xres > info->var.xres_virtual)
877 return -EINVAL;
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if ((err = info->fbops->fb_pan_display(var, info)))
880 return err;
881 info->var.xoffset = var->xoffset;
882 info->var.yoffset = var->yoffset;
883 if (var->vmode & FB_VMODE_YWRAP)
884 info->var.vmode |= FB_VMODE_YWRAP;
885 else
886 info->var.vmode &= ~FB_VMODE_YWRAP;
887 return 0;
888}
889
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700890static int fb_check_caps(struct fb_info *info, struct fb_var_screeninfo *var,
891 u32 activate)
892{
893 struct fb_event event;
894 struct fb_blit_caps caps, fbcaps;
895 int err = 0;
896
897 memset(&caps, 0, sizeof(caps));
898 memset(&fbcaps, 0, sizeof(fbcaps));
899 caps.flags = (activate & FB_ACTIVATE_ALL) ? 1 : 0;
900 event.info = info;
901 event.data = &caps;
902 fb_notifier_call_chain(FB_EVENT_GET_REQ, &event);
903 info->fbops->fb_get_caps(info, &fbcaps, var);
904
905 if (((fbcaps.x ^ caps.x) & caps.x) ||
906 ((fbcaps.y ^ caps.y) & caps.y) ||
907 (fbcaps.len < caps.len))
908 err = -EINVAL;
909
910 return err;
911}
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913int
914fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var)
915{
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700916 int flags = info->flags;
917 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 if (var->activate & FB_ACTIVATE_INV_MODE) {
920 struct fb_videomode mode1, mode2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 fb_var_to_videomode(&mode1, var);
923 fb_var_to_videomode(&mode2, &info->var);
924 /* make sure we don't delete the videomode of current var */
925 ret = fb_mode_is_equal(&mode1, &mode2);
926
927 if (!ret) {
928 struct fb_event event;
929
930 event.info = info;
931 event.data = &mode1;
Antonino A. Daplas256154f2006-07-30 03:04:17 -0700932 ret = fb_notifier_call_chain(FB_EVENT_MODE_DELETE, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
934
935 if (!ret)
936 fb_delete_videomode(&mode1, &info->modelist);
937
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700938
939 ret = (ret) ? -EINVAL : 0;
940 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
942
943 if ((var->activate & FB_ACTIVATE_FORCE) ||
944 memcmp(&info->var, var, sizeof(struct fb_var_screeninfo))) {
Antonino A. Daplas4941cb72007-05-08 00:39:22 -0700945 u32 activate = var->activate;
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 if (!info->fbops->fb_check_var) {
948 *var = info->var;
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700949 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700952 ret = info->fbops->fb_check_var(var, info);
953
954 if (ret)
955 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 if ((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) {
958 struct fb_videomode mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700960 if (info->fbops->fb_get_caps) {
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700961 ret = fb_check_caps(info, var, activate);
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700962
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700963 if (ret)
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700964 goto done;
965 }
966
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 info->var = *var;
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (info->fbops->fb_set_par)
970 info->fbops->fb_set_par(info);
971
972 fb_pan_display(info, &info->var);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 fb_set_cmap(&info->cmap, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 fb_var_to_videomode(&mode, &info->var);
975
976 if (info->modelist.prev && info->modelist.next &&
977 !list_empty(&info->modelist))
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700978 ret = fb_add_videomode(&mode, &info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700980 if (!ret && (flags & FBINFO_MISC_USEREVENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 struct fb_event event;
Antonino A. Daplas4941cb72007-05-08 00:39:22 -0700982 int evnt = (activate & FB_ACTIVATE_ALL) ?
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -0700983 FB_EVENT_MODE_CHANGE_ALL :
984 FB_EVENT_MODE_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 info->flags &= ~FBINFO_MISC_USEREVENT;
987 event.info = info;
Eric Miaofaa312d2008-08-29 04:18:43 +0800988 event.data = &mode;
Antonino A. Daplas256154f2006-07-30 03:04:17 -0700989 fb_notifier_call_chain(evnt, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
991 }
992 }
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700993
994 done:
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700995 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
998int
999fb_blank(struct fb_info *info, int blank)
1000{
1001 int ret = -EINVAL;
1002
1003 if (blank > FB_BLANK_POWERDOWN)
1004 blank = FB_BLANK_POWERDOWN;
1005
1006 if (info->fbops->fb_blank)
1007 ret = info->fbops->fb_blank(blank, info);
1008
1009 if (!ret) {
1010 struct fb_event event;
1011
1012 event.info = info;
1013 event.data = &blank;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001014 fb_notifier_call_chain(FB_EVENT_BLANK, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016
1017 return ret;
1018}
1019
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001020static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,
1021 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Alan Coxe5367712008-10-18 20:27:51 -07001023 struct fb_ops *fb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 struct fb_var_screeninfo var;
1025 struct fb_fix_screeninfo fix;
1026 struct fb_con2fbmap con2fb;
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001027 struct fb_cmap cmap_from;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 struct fb_cmap_user cmap;
1029 struct fb_event event;
1030 void __user *argp = (void __user *)arg;
Alan Coxe5367712008-10-18 20:27:51 -07001031 long ret = 0;
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 switch (cmd) {
1034 case FBIOGET_VSCREENINFO:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001035 if (!lock_fb_info(info))
1036 return -ENODEV;
1037 var = info->var;
1038 unlock_fb_info(info);
1039
1040 ret = copy_to_user(argp, &var, sizeof(var)) ? -EFAULT : 0;
Alan Coxe5367712008-10-18 20:27:51 -07001041 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 case FBIOPUT_VSCREENINFO:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001043 if (copy_from_user(&var, argp, sizeof(var)))
1044 return -EFAULT;
1045 if (!lock_fb_info(info))
1046 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 acquire_console_sem();
1048 info->flags |= FBINFO_MISC_USEREVENT;
Alan Coxe5367712008-10-18 20:27:51 -07001049 ret = fb_set_var(info, &var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 info->flags &= ~FBINFO_MISC_USEREVENT;
1051 release_console_sem();
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001052 unlock_fb_info(info);
1053 if (!ret && copy_to_user(argp, &var, sizeof(var)))
Alan Coxe5367712008-10-18 20:27:51 -07001054 ret = -EFAULT;
1055 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 case FBIOGET_FSCREENINFO:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001057 if (!lock_fb_info(info))
1058 return -ENODEV;
1059 fix = info->fix;
1060 unlock_fb_info(info);
1061
1062 ret = copy_to_user(argp, &fix, sizeof(fix)) ? -EFAULT : 0;
Alan Coxe5367712008-10-18 20:27:51 -07001063 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 case FBIOPUTCMAP:
1065 if (copy_from_user(&cmap, argp, sizeof(cmap)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001066 return -EFAULT;
1067 ret = fb_set_user_cmap(&cmap, info);
Alan Coxe5367712008-10-18 20:27:51 -07001068 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 case FBIOGETCMAP:
1070 if (copy_from_user(&cmap, argp, sizeof(cmap)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001071 return -EFAULT;
1072 if (!lock_fb_info(info))
1073 return -ENODEV;
1074 cmap_from = info->cmap;
1075 unlock_fb_info(info);
1076 ret = fb_cmap_to_user(&cmap_from, &cmap);
Alan Coxe5367712008-10-18 20:27:51 -07001077 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 case FBIOPAN_DISPLAY:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001079 if (copy_from_user(&var, argp, sizeof(var)))
1080 return -EFAULT;
1081 if (!lock_fb_info(info))
1082 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 acquire_console_sem();
Alan Coxe5367712008-10-18 20:27:51 -07001084 ret = fb_pan_display(info, &var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 release_console_sem();
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001086 unlock_fb_info(info);
Alan Coxe5367712008-10-18 20:27:51 -07001087 if (ret == 0 && copy_to_user(argp, &var, sizeof(var)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001088 return -EFAULT;
Alan Coxe5367712008-10-18 20:27:51 -07001089 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 case FBIO_CURSOR:
Alan Coxe5367712008-10-18 20:27:51 -07001091 ret = -EINVAL;
1092 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 case FBIOGET_CON2FBMAP:
1094 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001095 return -EFAULT;
1096 if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
1097 return -EINVAL;
1098 con2fb.framebuffer = -1;
1099 event.data = &con2fb;
Andrea Righi513adb52009-04-13 14:39:39 -07001100 if (!lock_fb_info(info))
1101 return -ENODEV;
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001102 event.info = info;
1103 fb_notifier_call_chain(FB_EVENT_GET_CONSOLE_MAP, &event);
Andrea Righi513adb52009-04-13 14:39:39 -07001104 unlock_fb_info(info);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001105 ret = copy_to_user(argp, &con2fb, sizeof(con2fb)) ? -EFAULT : 0;
Alan Coxe5367712008-10-18 20:27:51 -07001106 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 case FBIOPUT_CON2FBMAP:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001108 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
1109 return -EFAULT;
1110 if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
1111 return -EINVAL;
1112 if (con2fb.framebuffer < 0 || con2fb.framebuffer >= FB_MAX)
1113 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if (!registered_fb[con2fb.framebuffer])
Alan Coxe5367712008-10-18 20:27:51 -07001115 request_module("fb%d", con2fb.framebuffer);
1116 if (!registered_fb[con2fb.framebuffer]) {
1117 ret = -EINVAL;
1118 break;
1119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 event.data = &con2fb;
Andrea Righi513adb52009-04-13 14:39:39 -07001121 if (!lock_fb_info(info))
1122 return -ENODEV;
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001123 event.info = info;
Andrea Righi66c1ca02009-03-31 15:25:18 -07001124 ret = fb_notifier_call_chain(FB_EVENT_SET_CONSOLE_MAP, &event);
Andrea Righi513adb52009-04-13 14:39:39 -07001125 unlock_fb_info(info);
Alan Coxe5367712008-10-18 20:27:51 -07001126 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 case FBIOBLANK:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001128 if (!lock_fb_info(info))
1129 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 acquire_console_sem();
1131 info->flags |= FBINFO_MISC_USEREVENT;
Alan Coxe5367712008-10-18 20:27:51 -07001132 ret = fb_blank(info, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 info->flags &= ~FBINFO_MISC_USEREVENT;
1134 release_console_sem();
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001135 unlock_fb_info(info);
1136 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 default:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001138 if (!lock_fb_info(info))
1139 return -ENODEV;
1140 fb = info->fbops;
1141 if (fb->fb_ioctl)
Alan Coxe5367712008-10-18 20:27:51 -07001142 ret = fb->fb_ioctl(info, cmd, arg);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001143 else
1144 ret = -ENOTTY;
1145 unlock_fb_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001147 return ret;
1148}
1149
1150static long fb_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001151{
1152 struct inode *inode = file->f_path.dentry->d_inode;
1153 int fbidx = iminor(inode);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001154 struct fb_info *info = registered_fb[fbidx];
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001155
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001156 return do_fb_ioctl(info, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
1159#ifdef CONFIG_COMPAT
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001160struct fb_fix_screeninfo32 {
1161 char id[16];
1162 compat_caddr_t smem_start;
1163 u32 smem_len;
1164 u32 type;
1165 u32 type_aux;
1166 u32 visual;
1167 u16 xpanstep;
1168 u16 ypanstep;
1169 u16 ywrapstep;
1170 u32 line_length;
1171 compat_caddr_t mmio_start;
1172 u32 mmio_len;
1173 u32 accel;
1174 u16 reserved[3];
1175};
1176
1177struct fb_cmap32 {
1178 u32 start;
1179 u32 len;
1180 compat_caddr_t red;
1181 compat_caddr_t green;
1182 compat_caddr_t blue;
1183 compat_caddr_t transp;
1184};
1185
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001186static int fb_getput_cmap(struct fb_info *info, unsigned int cmd,
1187 unsigned long arg)
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001188{
1189 struct fb_cmap_user __user *cmap;
1190 struct fb_cmap32 __user *cmap32;
1191 __u32 data;
1192 int err;
1193
1194 cmap = compat_alloc_user_space(sizeof(*cmap));
1195 cmap32 = compat_ptr(arg);
1196
1197 if (copy_in_user(&cmap->start, &cmap32->start, 2 * sizeof(__u32)))
1198 return -EFAULT;
1199
1200 if (get_user(data, &cmap32->red) ||
1201 put_user(compat_ptr(data), &cmap->red) ||
1202 get_user(data, &cmap32->green) ||
1203 put_user(compat_ptr(data), &cmap->green) ||
1204 get_user(data, &cmap32->blue) ||
1205 put_user(compat_ptr(data), &cmap->blue) ||
1206 get_user(data, &cmap32->transp) ||
1207 put_user(compat_ptr(data), &cmap->transp))
1208 return -EFAULT;
1209
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001210 err = do_fb_ioctl(info, cmd, (unsigned long) cmap);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001211
1212 if (!err) {
1213 if (copy_in_user(&cmap32->start,
1214 &cmap->start,
1215 2 * sizeof(__u32)))
1216 err = -EFAULT;
1217 }
1218 return err;
1219}
1220
1221static int do_fscreeninfo_to_user(struct fb_fix_screeninfo *fix,
1222 struct fb_fix_screeninfo32 __user *fix32)
1223{
1224 __u32 data;
1225 int err;
1226
1227 err = copy_to_user(&fix32->id, &fix->id, sizeof(fix32->id));
1228
1229 data = (__u32) (unsigned long) fix->smem_start;
1230 err |= put_user(data, &fix32->smem_start);
1231
1232 err |= put_user(fix->smem_len, &fix32->smem_len);
1233 err |= put_user(fix->type, &fix32->type);
1234 err |= put_user(fix->type_aux, &fix32->type_aux);
1235 err |= put_user(fix->visual, &fix32->visual);
1236 err |= put_user(fix->xpanstep, &fix32->xpanstep);
1237 err |= put_user(fix->ypanstep, &fix32->ypanstep);
1238 err |= put_user(fix->ywrapstep, &fix32->ywrapstep);
1239 err |= put_user(fix->line_length, &fix32->line_length);
1240
1241 data = (__u32) (unsigned long) fix->mmio_start;
1242 err |= put_user(data, &fix32->mmio_start);
1243
1244 err |= put_user(fix->mmio_len, &fix32->mmio_len);
1245 err |= put_user(fix->accel, &fix32->accel);
1246 err |= copy_to_user(fix32->reserved, fix->reserved,
1247 sizeof(fix->reserved));
1248
1249 return err;
1250}
1251
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001252static int fb_get_fscreeninfo(struct fb_info *info, unsigned int cmd,
1253 unsigned long arg)
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001254{
1255 mm_segment_t old_fs;
1256 struct fb_fix_screeninfo fix;
1257 struct fb_fix_screeninfo32 __user *fix32;
1258 int err;
1259
1260 fix32 = compat_ptr(arg);
1261
1262 old_fs = get_fs();
1263 set_fs(KERNEL_DS);
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001264 err = do_fb_ioctl(info, cmd, (unsigned long) &fix);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001265 set_fs(old_fs);
1266
1267 if (!err)
1268 err = do_fscreeninfo_to_user(&fix, fix32);
1269
1270 return err;
1271}
1272
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001273static long fb_compat_ioctl(struct file *file, unsigned int cmd,
1274 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
Josef Sipekad9a8242006-12-08 02:37:48 -08001276 struct inode *inode = file->f_path.dentry->d_inode;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001277 int fbidx = iminor(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 struct fb_info *info = registered_fb[fbidx];
1279 struct fb_ops *fb = info->fbops;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001280 long ret = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001282 switch(cmd) {
1283 case FBIOGET_VSCREENINFO:
1284 case FBIOPUT_VSCREENINFO:
1285 case FBIOPAN_DISPLAY:
1286 case FBIOGET_CON2FBMAP:
1287 case FBIOPUT_CON2FBMAP:
1288 arg = (unsigned long) compat_ptr(arg);
1289 case FBIOBLANK:
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001290 ret = do_fb_ioctl(info, cmd, arg);
1291 break;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001292
1293 case FBIOGET_FSCREENINFO:
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001294 ret = fb_get_fscreeninfo(info, cmd, arg);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001295 break;
1296
1297 case FBIOGETCMAP:
1298 case FBIOPUTCMAP:
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001299 ret = fb_getput_cmap(info, cmd, arg);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001300 break;
1301
1302 default:
1303 if (fb->fb_compat_ioctl)
Christoph Hellwig67a66802006-01-14 13:21:25 -08001304 ret = fb->fb_compat_ioctl(info, cmd, arg);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001305 break;
1306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return ret;
1308}
1309#endif
1310
Antonino A. Daplas10eb2652007-07-17 04:05:27 -07001311static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312fb_mmap(struct file *file, struct vm_area_struct * vma)
1313{
Josef Sipekad9a8242006-12-08 02:37:48 -08001314 int fbidx = iminor(file->f_path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 struct fb_info *info = registered_fb[fbidx];
1316 struct fb_ops *fb = info->fbops;
1317 unsigned long off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 unsigned long start;
1319 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT))
1322 return -EINVAL;
1323 off = vma->vm_pgoff << PAGE_SHIFT;
1324 if (!fb)
1325 return -ENODEV;
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001326 mutex_lock(&info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (fb->fb_mmap) {
1328 int res;
Christoph Hellwig216d5262006-01-14 13:21:25 -08001329 res = fb->fb_mmap(info, vma);
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001330 mutex_unlock(&info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 return res;
1332 }
1333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 /* frame buffer memory */
1335 start = info->fix.smem_start;
1336 len = PAGE_ALIGN((start & ~PAGE_MASK) + info->fix.smem_len);
1337 if (off >= len) {
1338 /* memory mapped io */
1339 off -= len;
1340 if (info->var.accel_flags) {
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001341 mutex_unlock(&info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return -EINVAL;
1343 }
1344 start = info->fix.mmio_start;
1345 len = PAGE_ALIGN((start & ~PAGE_MASK) + info->fix.mmio_len);
1346 }
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001347 mutex_unlock(&info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 start &= PAGE_MASK;
1349 if ((vma->vm_end - vma->vm_start + off) > len)
1350 return -EINVAL;
1351 off += start;
1352 vma->vm_pgoff = off >> PAGE_SHIFT;
1353 /* This is an IO map - tell maydump to skip this VMA */
1354 vma->vm_flags |= VM_IO | VM_RESERVED;
Antonino A. Daplas10eb2652007-07-17 04:05:27 -07001355 fb_pgprotect(file, vma, off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT,
1357 vma->vm_end - vma->vm_start, vma->vm_page_prot))
1358 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360}
1361
1362static int
1363fb_open(struct inode *inode, struct file *file)
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001364__acquires(&info->lock)
1365__releases(&info->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
1367 int fbidx = iminor(inode);
1368 struct fb_info *info;
1369 int res = 0;
1370
1371 if (fbidx >= FB_MAX)
1372 return -ENODEV;
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001373 info = registered_fb[fbidx];
1374 if (!info)
Johannes Berga65e5d72008-07-09 10:28:38 +02001375 request_module("fb%d", fbidx);
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001376 info = registered_fb[fbidx];
1377 if (!info)
1378 return -ENODEV;
1379 mutex_lock(&info->lock);
Jonathan Corbetfc7f6872008-05-15 16:30:36 -06001380 if (!try_module_get(info->fbops->owner)) {
1381 res = -ENODEV;
1382 goto out;
1383 }
Thomas Koellercae8a122006-01-09 20:53:48 -08001384 file->private_data = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if (info->fbops->fb_open) {
1386 res = info->fbops->fb_open(info,1);
1387 if (res)
1388 module_put(info->fbops->owner);
1389 }
Ian Campbelld8474712008-08-20 14:09:23 -07001390#ifdef CONFIG_FB_DEFERRED_IO
1391 if (info->fbdefio)
1392 fb_deferred_io_open(info, inode, file);
1393#endif
Jonathan Corbetfc7f6872008-05-15 16:30:36 -06001394out:
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001395 mutex_unlock(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 return res;
1397}
1398
1399static int
1400fb_release(struct inode *inode, struct file *file)
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001401__acquires(&info->lock)
1402__releases(&info->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403{
Thomas Koellercae8a122006-01-09 20:53:48 -08001404 struct fb_info * const info = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001406 mutex_lock(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (info->fbops->fb_release)
1408 info->fbops->fb_release(info,1);
1409 module_put(info->fbops->owner);
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001410 mutex_unlock(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 return 0;
1412}
1413
Helge Deller0128bee2006-12-08 02:40:29 -08001414static const struct file_operations fb_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 .owner = THIS_MODULE,
1416 .read = fb_read,
1417 .write = fb_write,
Alan Coxe5367712008-10-18 20:27:51 -07001418 .unlocked_ioctl = fb_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419#ifdef CONFIG_COMPAT
1420 .compat_ioctl = fb_compat_ioctl,
1421#endif
1422 .mmap = fb_mmap,
1423 .open = fb_open,
1424 .release = fb_release,
1425#ifdef HAVE_ARCH_FB_UNMAPPED_AREA
1426 .get_unmapped_area = get_fb_unmapped_area,
1427#endif
Paul Mundt5e841b82007-05-08 00:37:41 -07001428#ifdef CONFIG_FB_DEFERRED_IO
1429 .fsync = fb_deferred_io_fsync,
1430#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431};
1432
Antonino A. Daplas9a179172006-06-26 00:27:05 -07001433struct class *fb_class;
1434EXPORT_SYMBOL(fb_class);
Anton Vorontsove4c690e2008-04-28 02:14:49 -07001435
1436static int fb_check_foreignness(struct fb_info *fi)
1437{
1438 const bool foreign_endian = fi->flags & FBINFO_FOREIGN_ENDIAN;
1439
1440 fi->flags &= ~FBINFO_FOREIGN_ENDIAN;
1441
1442#ifdef __BIG_ENDIAN
1443 fi->flags |= foreign_endian ? 0 : FBINFO_BE_MATH;
1444#else
1445 fi->flags |= foreign_endian ? FBINFO_BE_MATH : 0;
1446#endif /* __BIG_ENDIAN */
1447
1448 if (fi->flags & FBINFO_BE_MATH && !fb_be_math(fi)) {
1449 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1450 "support this framebuffer\n", fi->fix.id);
1451 return -ENOSYS;
1452 } else if (!(fi->flags & FBINFO_BE_MATH) && fb_be_math(fi)) {
1453 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1454 "support this framebuffer\n", fi->fix.id);
1455 return -ENOSYS;
1456 }
1457
1458 return 0;
1459}
1460
Dave Airlie4410f392009-06-16 15:34:38 -07001461static bool fb_do_apertures_overlap(struct fb_info *gen, struct fb_info *hw)
1462{
1463 /* is the generic aperture base the same as the HW one */
1464 if (gen->aperture_base == hw->aperture_base)
1465 return true;
1466 /* is the generic aperture base inside the hw base->hw base+size */
1467 if (gen->aperture_base > hw->aperture_base && gen->aperture_base <= hw->aperture_base + hw->aperture_size)
1468 return true;
1469 return false;
1470}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471/**
1472 * register_framebuffer - registers a frame buffer device
1473 * @fb_info: frame buffer info structure
1474 *
1475 * Registers a frame buffer device @fb_info.
1476 *
1477 * Returns negative errno on error, or zero for success.
1478 *
1479 */
1480
1481int
1482register_framebuffer(struct fb_info *fb_info)
1483{
1484 int i;
1485 struct fb_event event;
Antonino A. Daplas96fe6a22005-09-09 13:09:58 -07001486 struct fb_videomode mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488 if (num_registered_fb == FB_MAX)
1489 return -ENXIO;
Anton Vorontsove4c690e2008-04-28 02:14:49 -07001490
1491 if (fb_check_foreignness(fb_info))
1492 return -ENOSYS;
1493
Dave Airlie4410f392009-06-16 15:34:38 -07001494 /* check all firmware fbs and kick off if the base addr overlaps */
1495 for (i = 0 ; i < FB_MAX; i++) {
1496 if (!registered_fb[i])
1497 continue;
1498
1499 if (registered_fb[i]->flags & FBINFO_MISC_FIRMWARE) {
1500 if (fb_do_apertures_overlap(registered_fb[i], fb_info)) {
1501 printk(KERN_ERR "fb: conflicting fb hw usage "
1502 "%s vs %s - removing generic driver\n",
1503 fb_info->fix.id,
1504 registered_fb[i]->fix.id);
1505 unregister_framebuffer(registered_fb[i]);
1506 break;
1507 }
1508 }
1509 }
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 num_registered_fb++;
1512 for (i = 0 ; i < FB_MAX; i++)
1513 if (!registered_fb[i])
1514 break;
1515 fb_info->node = i;
Linus Torvalds6c968952009-07-08 09:20:11 -07001516 mutex_init(&fb_info->lock);
1517 mutex_init(&fb_info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Greg Kroah-Hartman77997aa2008-07-21 20:03:34 -07001519 fb_info->dev = device_create(fb_class, fb_info->device,
1520 MKDEV(FB_MAJOR, i), NULL, "fb%d", i);
Greg Kroah-Hartman78cde082006-09-14 07:30:59 -07001521 if (IS_ERR(fb_info->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 /* Not fatal */
Greg Kroah-Hartman78cde082006-09-14 07:30:59 -07001523 printk(KERN_WARNING "Unable to create device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->dev));
1524 fb_info->dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 } else
Greg Kroah-Hartman78cde082006-09-14 07:30:59 -07001526 fb_init_device(fb_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528 if (fb_info->pixmap.addr == NULL) {
1529 fb_info->pixmap.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL);
1530 if (fb_info->pixmap.addr) {
1531 fb_info->pixmap.size = FBPIXMAPSIZE;
1532 fb_info->pixmap.buf_align = 1;
1533 fb_info->pixmap.scan_align = 1;
James Simmons58a60642005-06-21 17:17:08 -07001534 fb_info->pixmap.access_align = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 fb_info->pixmap.flags = FB_PIXMAP_DEFAULT;
1536 }
1537 }
1538 fb_info->pixmap.offset = 0;
1539
Antonino A. Daplasbf26ad72007-05-08 00:39:09 -07001540 if (!fb_info->pixmap.blit_x)
1541 fb_info->pixmap.blit_x = ~(u32)0;
1542
1543 if (!fb_info->pixmap.blit_y)
1544 fb_info->pixmap.blit_y = ~(u32)0;
1545
Antonino A. Daplas96fe6a22005-09-09 13:09:58 -07001546 if (!fb_info->modelist.prev || !fb_info->modelist.next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 INIT_LIST_HEAD(&fb_info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Antonino A. Daplas96fe6a22005-09-09 13:09:58 -07001549 fb_var_to_videomode(&mode, &fb_info->var);
1550 fb_add_videomode(&mode, &fb_info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 registered_fb[i] = fb_info;
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 event.info = fb_info;
Andrea Righi513adb52009-04-13 14:39:39 -07001554 if (!lock_fb_info(fb_info))
1555 return -ENODEV;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001556 fb_notifier_call_chain(FB_EVENT_FB_REGISTERED, &event);
Andrea Righi513adb52009-04-13 14:39:39 -07001557 unlock_fb_info(fb_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 return 0;
1559}
1560
1561
1562/**
1563 * unregister_framebuffer - releases a frame buffer device
1564 * @fb_info: frame buffer info structure
1565 *
1566 * Unregisters a frame buffer device @fb_info.
1567 *
1568 * Returns negative errno on error, or zero for success.
1569 *
Jesse Barnescfafca82007-07-17 04:05:33 -07001570 * This function will also notify the framebuffer console
1571 * to release the driver.
1572 *
1573 * This is meant to be called within a driver's module_exit()
1574 * function. If this is called outside module_exit(), ensure
1575 * that the driver implements fb_open() and fb_release() to
1576 * check that no processes are using the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 */
1578
1579int
1580unregister_framebuffer(struct fb_info *fb_info)
1581{
Antonino A. Daplase614b182006-06-26 00:27:09 -07001582 struct fb_event event;
Jesse Barnescfafca82007-07-17 04:05:33 -07001583 int i, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 i = fb_info->node;
Jesse Barnescfafca82007-07-17 04:05:33 -07001586 if (!registered_fb[i]) {
1587 ret = -EINVAL;
1588 goto done;
1589 }
1590
Andrea Righi513adb52009-04-13 14:39:39 -07001591
1592 if (!lock_fb_info(fb_info))
1593 return -ENODEV;
Jesse Barnescfafca82007-07-17 04:05:33 -07001594 event.info = fb_info;
1595 ret = fb_notifier_call_chain(FB_EVENT_FB_UNBIND, &event);
Andrea Righi513adb52009-04-13 14:39:39 -07001596 unlock_fb_info(fb_info);
Jesse Barnescfafca82007-07-17 04:05:33 -07001597
1598 if (ret) {
1599 ret = -EINVAL;
1600 goto done;
1601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Antonino A. Daplase614b182006-06-26 00:27:09 -07001603 if (fb_info->pixmap.addr &&
1604 (fb_info->pixmap.flags & FB_PIXMAP_DEFAULT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 kfree(fb_info->pixmap.addr);
1606 fb_destroy_modelist(&fb_info->modelist);
1607 registered_fb[i]=NULL;
1608 num_registered_fb--;
Greg Kroah-Hartman78cde082006-09-14 07:30:59 -07001609 fb_cleanup_device(fb_info);
1610 device_destroy(fb_class, MKDEV(FB_MAJOR, i));
Antonino A. Daplase614b182006-06-26 00:27:09 -07001611 event.info = fb_info;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001612 fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED, &event);
Dave Airlie4410f392009-06-16 15:34:38 -07001613
1614 /* this may free fb info */
1615 if (fb_info->fbops->fb_destroy)
1616 fb_info->fbops->fb_destroy(fb_info);
Jesse Barnescfafca82007-07-17 04:05:33 -07001617done:
1618 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
1621/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 * fb_set_suspend - low level driver signals suspend
1623 * @info: framebuffer affected
1624 * @state: 0 = resuming, !=0 = suspending
1625 *
1626 * This is meant to be used by low level drivers to
1627 * signal suspend/resume to the core & clients.
1628 * It must be called with the console semaphore held
1629 */
1630void fb_set_suspend(struct fb_info *info, int state)
1631{
1632 struct fb_event event;
1633
Andrea Righi513adb52009-04-13 14:39:39 -07001634 if (!lock_fb_info(info))
1635 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 event.info = info;
1637 if (state) {
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001638 fb_notifier_call_chain(FB_EVENT_SUSPEND, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 info->state = FBINFO_STATE_SUSPENDED;
1640 } else {
1641 info->state = FBINFO_STATE_RUNNING;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001642 fb_notifier_call_chain(FB_EVENT_RESUME, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
Andrea Righi513adb52009-04-13 14:39:39 -07001644 unlock_fb_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645}
1646
1647/**
1648 * fbmem_init - init frame buffer subsystem
1649 *
1650 * Initialize the frame buffer subsystem.
1651 *
1652 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1653 *
1654 */
1655
1656static int __init
1657fbmem_init(void)
1658{
Alexey Dobriyan0aa16342008-04-28 02:15:42 -07001659 proc_create("fb", 0, NULL, &fb_proc_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (register_chrdev(FB_MAJOR,"fb",&fb_fops))
1662 printk("unable to get major %d for fb devs\n", FB_MAJOR);
1663
gregkh@suse.de56b22932005-03-23 10:01:41 -08001664 fb_class = class_create(THIS_MODULE, "graphics");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 if (IS_ERR(fb_class)) {
1666 printk(KERN_WARNING "Unable to create fb class; errno = %ld\n", PTR_ERR(fb_class));
1667 fb_class = NULL;
1668 }
1669 return 0;
1670}
1671
1672#ifdef MODULE
1673module_init(fbmem_init);
1674static void __exit
1675fbmem_exit(void)
1676{
Alexey Dobriyanc43f89c2008-04-15 14:34:33 -07001677 remove_proc_entry("fb", NULL);
gregkh@suse.de56b22932005-03-23 10:01:41 -08001678 class_destroy(fb_class);
Jon Smirl5a340cc2005-07-27 11:46:04 -07001679 unregister_chrdev(FB_MAJOR, "fb");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680}
1681
1682module_exit(fbmem_exit);
1683MODULE_LICENSE("GPL");
1684MODULE_DESCRIPTION("Framebuffer base");
1685#else
1686subsys_initcall(fbmem_init);
1687#endif
1688
1689int fb_new_modelist(struct fb_info *info)
1690{
1691 struct fb_event event;
1692 struct fb_var_screeninfo var = info->var;
1693 struct list_head *pos, *n;
1694 struct fb_modelist *modelist;
1695 struct fb_videomode *m, mode;
1696 int err = 1;
1697
1698 list_for_each_safe(pos, n, &info->modelist) {
1699 modelist = list_entry(pos, struct fb_modelist, list);
1700 m = &modelist->mode;
1701 fb_videomode_to_var(&var, m);
1702 var.activate = FB_ACTIVATE_TEST;
1703 err = fb_set_var(info, &var);
1704 fb_var_to_videomode(&mode, &var);
1705 if (err || !fb_mode_is_equal(m, &mode)) {
1706 list_del(pos);
1707 kfree(pos);
1708 }
1709 }
1710
1711 err = 1;
1712
1713 if (!list_empty(&info->modelist)) {
Andrea Righi513adb52009-04-13 14:39:39 -07001714 if (!lock_fb_info(info))
1715 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 event.info = info;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001717 err = fb_notifier_call_chain(FB_EVENT_NEW_MODELIST, &event);
Andrea Righi513adb52009-04-13 14:39:39 -07001718 unlock_fb_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 }
1720
1721 return err;
1722}
1723
Helge Deller0128bee2006-12-08 02:40:29 -08001724static char *video_options[FB_MAX] __read_mostly;
1725static int ofonly __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727/**
1728 * fb_get_options - get kernel boot parameters
1729 * @name: framebuffer name as it would appear in
1730 * the boot parameter line
1731 * (video=<name>:<options>)
1732 * @option: the option will be stored here
1733 *
1734 * NOTE: Needed to maintain backwards compatibility
1735 */
1736int fb_get_options(char *name, char **option)
1737{
1738 char *opt, *options = NULL;
1739 int opt_len, retval = 0;
1740 int name_len = strlen(name), i;
1741
1742 if (name_len && ofonly && strncmp(name, "offb", 4))
1743 retval = 1;
1744
1745 if (name_len && !retval) {
1746 for (i = 0; i < FB_MAX; i++) {
1747 if (video_options[i] == NULL)
1748 continue;
1749 opt_len = strlen(video_options[i]);
1750 if (!opt_len)
1751 continue;
1752 opt = video_options[i];
1753 if (!strncmp(name, opt, name_len) &&
1754 opt[name_len] == ':')
1755 options = opt + name_len + 1;
1756 }
1757 }
1758 if (options && !strncmp(options, "off", 3))
1759 retval = 1;
1760
1761 if (option)
1762 *option = options;
1763
1764 return retval;
1765}
1766
Andrew Mortonbc6d7fd2006-02-11 17:56:08 -08001767#ifndef MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768/**
1769 * video_setup - process command line options
1770 * @options: string of options
1771 *
1772 * Process command line options for frame buffer subsystem.
1773 *
1774 * NOTE: This function is a __setup and __init function.
1775 * It only stores the options. Drivers have to call
1776 * fb_get_options() as necessary.
1777 *
1778 * Returns zero.
1779 *
1780 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07001781static int __init video_setup(char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782{
1783 int i, global = 0;
1784
1785 if (!options || !*options)
1786 global = 1;
1787
1788 if (!global && !strncmp(options, "ofonly", 6)) {
1789 ofonly = 1;
1790 global = 1;
1791 }
1792
1793 if (!global && !strstr(options, "fb:")) {
Geert Uytterhoeven9a054fb2007-10-16 01:29:51 -07001794 fb_mode_option = options;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 global = 1;
1796 }
1797
1798 if (!global) {
1799 for (i = 0; i < FB_MAX; i++) {
1800 if (video_options[i] == NULL) {
1801 video_options[i] = options;
1802 break;
1803 }
1804
1805 }
1806 }
1807
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001808 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809}
1810__setup("video=", video_setup);
Andrew Mortonbc6d7fd2006-02-11 17:56:08 -08001811#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813 /*
1814 * Visible symbols for modules
1815 */
1816
1817EXPORT_SYMBOL(register_framebuffer);
1818EXPORT_SYMBOL(unregister_framebuffer);
1819EXPORT_SYMBOL(num_registered_fb);
1820EXPORT_SYMBOL(registered_fb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821EXPORT_SYMBOL(fb_show_logo);
1822EXPORT_SYMBOL(fb_set_var);
1823EXPORT_SYMBOL(fb_blank);
1824EXPORT_SYMBOL(fb_pan_display);
1825EXPORT_SYMBOL(fb_get_buffer_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826EXPORT_SYMBOL(fb_set_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827EXPORT_SYMBOL(fb_get_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829MODULE_LICENSE("GPL");