blob: bde515aad6df08a3f07e384262f6743534e9f8e1 [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
Linus Torvalds698b3682011-05-11 14:49:36 -070045static DEFINE_MUTEX(registration_lock);
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
Linus Torvalds698b3682011-05-11 14:49:36 -070049static struct fb_info *get_fb_info(unsigned int idx)
50{
51 struct fb_info *fb_info;
52
53 if (idx >= FB_MAX)
54 return ERR_PTR(-ENODEV);
55
56 mutex_lock(&registration_lock);
57 fb_info = registered_fb[idx];
58 if (fb_info)
59 atomic_inc(&fb_info->count);
60 mutex_unlock(&registration_lock);
61
62 return fb_info;
63}
64
65static void put_fb_info(struct fb_info *fb_info)
66{
67 if (!atomic_dec_and_test(&fb_info->count))
68 return;
69 if (fb_info->fbops->fb_destroy)
70 fb_info->fbops->fb_destroy(fb_info);
71}
72
Andrew Morton6a7f2822009-03-31 15:25:19 -070073int lock_fb_info(struct fb_info *info)
74{
75 mutex_lock(&info->lock);
76 if (!info->fbops) {
77 mutex_unlock(&info->lock);
78 return 0;
79 }
80 return 1;
81}
82EXPORT_SYMBOL(lock_fb_info);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/*
85 * Helpers
86 */
87
Antonino A. Daplasb8c90942005-09-09 13:04:37 -070088int fb_get_color_depth(struct fb_var_screeninfo *var,
89 struct fb_fix_screeninfo *fix)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
Antonino A. Daplasb8c90942005-09-09 13:04:37 -070091 int depth = 0;
92
93 if (fix->visual == FB_VISUAL_MONO01 ||
94 fix->visual == FB_VISUAL_MONO10)
95 depth = 1;
96 else {
97 if (var->green.length == var->blue.length &&
98 var->green.length == var->red.length &&
99 var->green.offset == var->blue.offset &&
100 var->green.offset == var->red.offset)
101 depth = var->green.length;
102 else
103 depth = var->green.length + var->red.length +
104 var->blue.length;
105 }
106
107 return depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109EXPORT_SYMBOL(fb_get_color_depth);
110
111/*
James Simmonsf5a99512005-06-21 17:16:58 -0700112 * Data padding functions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
James Simmonsf1ab5da2005-06-21 17:17:07 -0700114void fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 s_pitch, u32 height)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Antonino A. Daplas829e79b2005-09-09 13:10:04 -0700116 __fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, height);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
James Simmonsf1ab5da2005-06-21 17:17:07 -0700118EXPORT_SYMBOL(fb_pad_aligned_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
James Simmonsf1ab5da2005-06-21 17:17:07 -0700120void fb_pad_unaligned_buffer(u8 *dst, u32 d_pitch, u8 *src, u32 idx, u32 height,
121 u32 shift_high, u32 shift_low, u32 mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 u8 mask = (u8) (0xfff << shift_high), tmp;
124 int i, j;
125
126 for (i = height; i--; ) {
127 for (j = 0; j < idx; j++) {
128 tmp = dst[j];
129 tmp &= mask;
130 tmp |= *src >> shift_low;
131 dst[j] = tmp;
132 tmp = *src << shift_high;
133 dst[j+1] = tmp;
134 src++;
135 }
136 tmp = dst[idx];
137 tmp &= mask;
138 tmp |= *src >> shift_low;
139 dst[idx] = tmp;
140 if (shift_high < mod) {
141 tmp = *src << shift_high;
142 dst[idx+1] = tmp;
143 }
144 src++;
145 dst += d_pitch;
146 }
147}
James Simmonsf1ab5da2005-06-21 17:17:07 -0700148EXPORT_SYMBOL(fb_pad_unaligned_buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150/*
151 * we need to lock this section since fb_cursor
152 * may use fb_imageblit()
153 */
154char* fb_get_buffer_offset(struct fb_info *info, struct fb_pixmap *buf, u32 size)
155{
156 u32 align = buf->buf_align - 1, offset;
157 char *addr = buf->addr;
158
159 /* If IO mapped, we need to sync before access, no sharing of
160 * the pixmap is done
161 */
162 if (buf->flags & FB_PIXMAP_IO) {
163 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
164 info->fbops->fb_sync(info);
165 return addr;
166 }
167
168 /* See if we fit in the remaining pixmap space */
169 offset = buf->offset + align;
170 offset &= ~align;
171 if (offset + size > buf->size) {
172 /* We do not fit. In order to be able to re-use the buffer,
173 * we must ensure no asynchronous DMA'ing or whatever operation
174 * is in progress, we sync for that.
175 */
176 if (info->fbops->fb_sync && (buf->flags & FB_PIXMAP_SYNC))
177 info->fbops->fb_sync(info);
178 offset = 0;
179 }
180 buf->offset = offset + size;
181 addr += offset;
182
183 return addr;
184}
185
186#ifdef CONFIG_LOGO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188static inline unsigned safe_shift(unsigned d, int n)
189{
190 return n < 0 ? d >> -n : d << n;
191}
192
193static void fb_set_logocmap(struct fb_info *info,
194 const struct linux_logo *logo)
195{
196 struct fb_cmap palette_cmap;
197 u16 palette_green[16];
198 u16 palette_blue[16];
199 u16 palette_red[16];
200 int i, j, n;
201 const unsigned char *clut = logo->clut;
202
203 palette_cmap.start = 0;
204 palette_cmap.len = 16;
205 palette_cmap.red = palette_red;
206 palette_cmap.green = palette_green;
207 palette_cmap.blue = palette_blue;
208 palette_cmap.transp = NULL;
209
210 for (i = 0; i < logo->clutsize; i += n) {
211 n = logo->clutsize - i;
212 /* palette_cmap provides space for only 16 colors at once */
213 if (n > 16)
214 n = 16;
215 palette_cmap.start = 32 + i;
216 palette_cmap.len = n;
217 for (j = 0; j < n; ++j) {
218 palette_cmap.red[j] = clut[0] << 8 | clut[0];
219 palette_cmap.green[j] = clut[1] << 8 | clut[1];
220 palette_cmap.blue[j] = clut[2] << 8 | clut[2];
221 clut += 3;
222 }
223 fb_set_cmap(&palette_cmap, info);
224 }
225}
226
227static void fb_set_logo_truepalette(struct fb_info *info,
228 const struct linux_logo *logo,
229 u32 *palette)
230{
Helge Deller0128bee2006-12-08 02:40:29 -0800231 static const unsigned char mask[] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 unsigned char redmask, greenmask, bluemask;
233 int redshift, greenshift, blueshift;
234 int i;
235 const unsigned char *clut = logo->clut;
236
237 /*
238 * We have to create a temporary palette since console palette is only
239 * 16 colors long.
240 */
241 /* Bug: Doesn't obey msb_right ... (who needs that?) */
242 redmask = mask[info->var.red.length < 8 ? info->var.red.length : 8];
243 greenmask = mask[info->var.green.length < 8 ? info->var.green.length : 8];
244 bluemask = mask[info->var.blue.length < 8 ? info->var.blue.length : 8];
245 redshift = info->var.red.offset - (8 - info->var.red.length);
246 greenshift = info->var.green.offset - (8 - info->var.green.length);
247 blueshift = info->var.blue.offset - (8 - info->var.blue.length);
248
249 for ( i = 0; i < logo->clutsize; i++) {
250 palette[i+32] = (safe_shift((clut[0] & redmask), redshift) |
251 safe_shift((clut[1] & greenmask), greenshift) |
252 safe_shift((clut[2] & bluemask), blueshift));
253 clut += 3;
254 }
255}
256
257static void fb_set_logo_directpalette(struct fb_info *info,
258 const struct linux_logo *logo,
259 u32 *palette)
260{
261 int redshift, greenshift, blueshift;
262 int i;
263
264 redshift = info->var.red.offset;
265 greenshift = info->var.green.offset;
266 blueshift = info->var.blue.offset;
267
Clemens Ladischcf7ee552008-11-19 15:36:10 -0800268 for (i = 32; i < 32 + logo->clutsize; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 palette[i] = i << redshift | i << greenshift | i << blueshift;
270}
271
272static void fb_set_logo(struct fb_info *info,
273 const struct linux_logo *logo, u8 *dst,
274 int depth)
275{
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700276 int i, j, k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 const u8 *src = logo->data;
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700278 u8 xor = (info->fix.visual == FB_VISUAL_MONO01) ? 0xff : 0;
279 u8 fg = 1, d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Antonino A. Daplas1692b372007-07-31 00:37:36 -0700281 switch (fb_get_color_depth(&info->var, &info->fix)) {
282 case 1:
283 fg = 1;
284 break;
285 case 2:
286 fg = 3;
287 break;
288 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 fg = 7;
Antonino A. Daplas1692b372007-07-31 00:37:36 -0700290 break;
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700293 if (info->fix.visual == FB_VISUAL_MONO01 ||
294 info->fix.visual == FB_VISUAL_MONO10)
295 fg = ~((u8) (0xfff << info->var.green.length));
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 switch (depth) {
298 case 4:
299 for (i = 0; i < logo->height; i++)
300 for (j = 0; j < logo->width; src++) {
301 *dst++ = *src >> 4;
302 j++;
303 if (j < logo->width) {
304 *dst++ = *src & 0x0f;
305 j++;
306 }
307 }
308 break;
309 case 1:
310 for (i = 0; i < logo->height; i++) {
311 for (j = 0; j < logo->width; src++) {
312 d = *src ^ xor;
313 for (k = 7; k >= 0; k--) {
314 *dst++ = ((d >> k) & 1) ? fg : 0;
315 j++;
316 }
317 }
318 }
319 break;
320 }
321}
322
323/*
324 * Three (3) kinds of logo maps exist. linux_logo_clut224 (>16 colors),
325 * linux_logo_vga16 (16 colors) and linux_logo_mono (2 colors). Depending on
326 * the visual format and color depth of the framebuffer, the DAC, the
327 * pseudo_palette, and the logo data will be adjusted accordingly.
328 *
329 * Case 1 - linux_logo_clut224:
330 * Color exceeds the number of console colors (16), thus we set the hardware DAC
331 * using fb_set_cmap() appropriately. The "needs_cmapreset" flag will be set.
332 *
333 * For visuals that require color info from the pseudo_palette, we also construct
334 * one for temporary use. The "needs_directpalette" or "needs_truepalette" flags
335 * will be set.
336 *
337 * Case 2 - linux_logo_vga16:
338 * The number of colors just matches the console colors, thus there is no need
339 * to set the DAC or the pseudo_palette. However, the bitmap is packed, ie,
340 * each byte contains color information for two pixels (upper and lower nibble).
341 * To be consistent with fb_imageblit() usage, we therefore separate the two
342 * nibbles into separate bytes. The "depth" flag will be set to 4.
343 *
344 * Case 3 - linux_logo_mono:
345 * This is similar with Case 2. Each byte contains information for 8 pixels.
346 * We isolate each bit and expand each into a byte. The "depth" flag will
347 * be set to 1.
348 */
349static struct logo_data {
350 int depth;
351 int needs_directpalette;
352 int needs_truepalette;
353 int needs_cmapreset;
354 const struct linux_logo *logo;
Helge Deller0128bee2006-12-08 02:40:29 -0800355} fb_logo __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800357static void fb_rotate_logo_ud(const u8 *in, u8 *out, u32 width, u32 height)
358{
359 u32 size = width * height, i;
360
361 out += size - 1;
362
363 for (i = size; i--; )
364 *out-- = *in++;
365}
366
367static void fb_rotate_logo_cw(const u8 *in, u8 *out, u32 width, u32 height)
368{
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700369 int i, j, h = height - 1;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800370
371 for (i = 0; i < height; i++)
372 for (j = 0; j < width; j++)
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700373 out[height * j + h - i] = *in++;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800374}
375
376static void fb_rotate_logo_ccw(const u8 *in, u8 *out, u32 width, u32 height)
377{
378 int i, j, w = width - 1;
379
380 for (i = 0; i < height; i++)
381 for (j = 0; j < width; j++)
382 out[height * (w - j) + i] = *in++;
383}
384
385static void fb_rotate_logo(struct fb_info *info, u8 *dst,
386 struct fb_image *image, int rotate)
387{
388 u32 tmp;
389
390 if (rotate == FB_ROTATE_UD) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800391 fb_rotate_logo_ud(image->data, dst, image->width,
392 image->height);
Geert Uytterhoevenabed5d12007-05-08 00:37:57 -0700393 image->dx = info->var.xres - image->width - image->dx;
394 image->dy = info->var.yres - image->height - image->dy;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800395 } else if (rotate == FB_ROTATE_CW) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800396 fb_rotate_logo_cw(image->data, dst, image->width,
397 image->height);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800398 tmp = image->width;
399 image->width = image->height;
400 image->height = tmp;
Geert Uytterhoevenabed5d12007-05-08 00:37:57 -0700401 tmp = image->dy;
402 image->dy = image->dx;
403 image->dx = info->var.xres - image->width - tmp;
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700404 } else if (rotate == FB_ROTATE_CCW) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800405 fb_rotate_logo_ccw(image->data, dst, image->width,
406 image->height);
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700407 tmp = image->width;
408 image->width = image->height;
409 image->height = tmp;
Geert Uytterhoevenabed5d12007-05-08 00:37:57 -0700410 tmp = image->dx;
411 image->dx = image->dy;
412 image->dy = info->var.yres - image->height - tmp;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800413 }
414
415 image->data = dst;
416}
417
418static void fb_do_show_logo(struct fb_info *info, struct fb_image *image,
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700419 int rotate, unsigned int num)
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800420{
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700421 unsigned int x;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800422
423 if (rotate == FB_ROTATE_UR) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700424 for (x = 0;
425 x < num && image->dx + image->width <= info->var.xres;
426 x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800427 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700428 image->dx += image->width + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800429 }
430 } else if (rotate == FB_ROTATE_UD) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700431 for (x = 0; x < num && image->dx >= 0; x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800432 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700433 image->dx -= image->width + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800434 }
435 } else if (rotate == FB_ROTATE_CW) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700436 for (x = 0;
437 x < num && image->dy + image->height <= info->var.yres;
438 x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800439 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700440 image->dy += image->height + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800441 }
442 } else if (rotate == FB_ROTATE_CCW) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700443 for (x = 0; x < num && image->dy >= 0; x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800444 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700445 image->dy -= image->height + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800446 }
447 }
448}
449
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700450static int fb_show_logo_line(struct fb_info *info, int rotate,
451 const struct linux_logo *logo, int y,
452 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 u32 *palette = NULL, *saved_pseudo_palette = NULL;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800455 unsigned char *logo_new = NULL, *logo_rotate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 struct fb_image image;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 /* Return if the frame buffer is not mapped or suspended */
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700459 if (logo == NULL || info->state != FBINFO_STATE_RUNNING ||
Antonino A. Daplas70802c62007-05-08 00:38:14 -0700460 info->flags & FBINFO_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return 0;
462
463 image.depth = 8;
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700464 image.data = logo->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 if (fb_logo.needs_cmapreset)
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700467 fb_set_logocmap(info, logo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700469 if (fb_logo.needs_truepalette ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 fb_logo.needs_directpalette) {
471 palette = kmalloc(256 * 4, GFP_KERNEL);
472 if (palette == NULL)
473 return 0;
474
475 if (fb_logo.needs_truepalette)
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700476 fb_set_logo_truepalette(info, logo, palette);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 else
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700478 fb_set_logo_directpalette(info, logo, palette);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 saved_pseudo_palette = info->pseudo_palette;
481 info->pseudo_palette = palette;
482 }
483
484 if (fb_logo.depth <= 4) {
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700485 logo_new = kmalloc(logo->width * logo->height, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (logo_new == NULL) {
487 kfree(palette);
488 if (saved_pseudo_palette)
489 info->pseudo_palette = saved_pseudo_palette;
490 return 0;
491 }
492 image.data = logo_new;
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700493 fb_set_logo(info, logo, logo_new, fb_logo.depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
495
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800496 image.dx = 0;
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700497 image.dy = y;
498 image.width = logo->width;
499 image.height = logo->height;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800501 if (rotate) {
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700502 logo_rotate = kmalloc(logo->width *
503 logo->height, GFP_KERNEL);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800504 if (logo_rotate)
505 fb_rotate_logo(info, logo_rotate, &image, rotate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800507
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700508 fb_do_show_logo(info, &image, rotate, n);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 kfree(palette);
511 if (saved_pseudo_palette != NULL)
512 info->pseudo_palette = saved_pseudo_palette;
513 kfree(logo_new);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800514 kfree(logo_rotate);
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700515 return logo->height;
516}
517
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700518
519#ifdef CONFIG_FB_LOGO_EXTRA
520
521#define FB_LOGO_EX_NUM_MAX 10
522static struct logo_data_extra {
523 const struct linux_logo *logo;
524 unsigned int n;
525} fb_logo_ex[FB_LOGO_EX_NUM_MAX];
526static unsigned int fb_logo_ex_num;
527
528void fb_append_extra_logo(const struct linux_logo *logo, unsigned int n)
529{
530 if (!n || fb_logo_ex_num == FB_LOGO_EX_NUM_MAX)
531 return;
532
533 fb_logo_ex[fb_logo_ex_num].logo = logo;
534 fb_logo_ex[fb_logo_ex_num].n = n;
535 fb_logo_ex_num++;
536}
537
538static int fb_prepare_extra_logos(struct fb_info *info, unsigned int height,
539 unsigned int yres)
540{
541 unsigned int i;
542
543 /* FIXME: logo_ex supports only truecolor fb. */
544 if (info->fix.visual != FB_VISUAL_TRUECOLOR)
545 fb_logo_ex_num = 0;
546
547 for (i = 0; i < fb_logo_ex_num; i++) {
Geert Uytterhoeven4fb6de22009-01-06 14:42:37 -0800548 if (fb_logo_ex[i].logo->type != fb_logo.logo->type) {
549 fb_logo_ex[i].logo = NULL;
550 continue;
551 }
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700552 height += fb_logo_ex[i].logo->height;
553 if (height > yres) {
554 height -= fb_logo_ex[i].logo->height;
555 fb_logo_ex_num = i;
556 break;
557 }
558 }
559 return height;
560}
561
562static int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
563{
564 unsigned int i;
565
566 for (i = 0; i < fb_logo_ex_num; i++)
567 y += fb_show_logo_line(info, rotate,
568 fb_logo_ex[i].logo, y, fb_logo_ex[i].n);
569
570 return y;
571}
572
573#else /* !CONFIG_FB_LOGO_EXTRA */
574
575static inline int fb_prepare_extra_logos(struct fb_info *info,
576 unsigned int height,
577 unsigned int yres)
578{
579 return height;
580}
581
582static inline int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
583{
584 return y;
585}
586
587#endif /* CONFIG_FB_LOGO_EXTRA */
588
589
590int fb_prepare_logo(struct fb_info *info, int rotate)
591{
592 int depth = fb_get_color_depth(&info->var, &info->fix);
593 unsigned int yres;
594
595 memset(&fb_logo, 0, sizeof(struct logo_data));
596
597 if (info->flags & FBINFO_MISC_TILEBLITTING ||
598 info->flags & FBINFO_MODULE)
599 return 0;
600
601 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
602 depth = info->var.blue.length;
603 if (info->var.red.length < depth)
604 depth = info->var.red.length;
605 if (info->var.green.length < depth)
606 depth = info->var.green.length;
607 }
608
609 if (info->fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR && depth > 4) {
610 /* assume console colormap */
611 depth = 4;
612 }
613
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700614 /* Return if no suitable logo was found */
615 fb_logo.logo = fb_find_logo(depth);
616
617 if (!fb_logo.logo) {
618 return 0;
619 }
620
621 if (rotate == FB_ROTATE_UR || rotate == FB_ROTATE_UD)
622 yres = info->var.yres;
623 else
624 yres = info->var.xres;
625
626 if (fb_logo.logo->height > yres) {
627 fb_logo.logo = NULL;
628 return 0;
629 }
630
631 /* What depth we asked for might be different from what we get */
632 if (fb_logo.logo->type == LINUX_LOGO_CLUT224)
633 fb_logo.depth = 8;
634 else if (fb_logo.logo->type == LINUX_LOGO_VGA16)
635 fb_logo.depth = 4;
636 else
637 fb_logo.depth = 1;
638
Antonino A. Daplas1692b372007-07-31 00:37:36 -0700639
640 if (fb_logo.depth > 4 && depth > 4) {
641 switch (info->fix.visual) {
642 case FB_VISUAL_TRUECOLOR:
643 fb_logo.needs_truepalette = 1;
644 break;
645 case FB_VISUAL_DIRECTCOLOR:
646 fb_logo.needs_directpalette = 1;
647 fb_logo.needs_cmapreset = 1;
648 break;
649 case FB_VISUAL_PSEUDOCOLOR:
650 fb_logo.needs_cmapreset = 1;
651 break;
652 }
653 }
654
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700655 return fb_prepare_extra_logos(info, fb_logo.logo->height, yres);
656}
657
Geert Uytterhoeven90da63e2007-07-17 04:05:50 -0700658int fb_show_logo(struct fb_info *info, int rotate)
659{
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700660 int y;
661
662 y = fb_show_logo_line(info, rotate, fb_logo.logo, 0,
663 num_online_cpus());
664 y = fb_show_extra_logos(info, y, rotate);
665
666 return y;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668#else
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800669int fb_prepare_logo(struct fb_info *info, int rotate) { return 0; }
670int fb_show_logo(struct fb_info *info, int rotate) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671#endif /* CONFIG_LOGO */
672
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700673static void *fb_seq_start(struct seq_file *m, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Linus Torvalds698b3682011-05-11 14:49:36 -0700675 mutex_lock(&registration_lock);
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700676 return (*pos < FB_MAX) ? pos : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700679static void *fb_seq_next(struct seq_file *m, void *v, loff_t *pos)
680{
681 (*pos)++;
682 return (*pos < FB_MAX) ? pos : NULL;
683}
684
685static void fb_seq_stop(struct seq_file *m, void *v)
686{
Linus Torvalds698b3682011-05-11 14:49:36 -0700687 mutex_unlock(&registration_lock);
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700688}
689
690static int fb_seq_show(struct seq_file *m, void *v)
691{
692 int i = *(loff_t *)v;
693 struct fb_info *fi = registered_fb[i];
694
695 if (fi)
696 seq_printf(m, "%d %s\n", fi->node, fi->fix.id);
697 return 0;
698}
699
700static const struct seq_operations proc_fb_seq_ops = {
701 .start = fb_seq_start,
702 .next = fb_seq_next,
703 .stop = fb_seq_stop,
704 .show = fb_seq_show,
705};
706
707static int proc_fb_open(struct inode *inode, struct file *file)
708{
709 return seq_open(file, &proc_fb_seq_ops);
710}
711
712static const struct file_operations fb_proc_fops = {
713 .owner = THIS_MODULE,
714 .open = proc_fb_open,
715 .read = seq_read,
716 .llseek = seq_lseek,
717 .release = seq_release,
718};
719
Linus Torvaldsc47747f2011-05-11 14:58:34 -0700720/*
721 * We hold a reference to the fb_info in file->private_data,
722 * but if the current registered fb has changed, we don't
723 * actually want to use it.
724 *
725 * So look up the fb_info using the inode minor number,
726 * and just verify it against the reference we have.
727 */
728static struct fb_info *file_fb_info(struct file *file)
729{
730 struct inode *inode = file->f_path.dentry->d_inode;
731 int fbidx = iminor(inode);
732 struct fb_info *info = registered_fb[fbidx];
733
734 if (info != file->private_data)
735 info = NULL;
736 return info;
737}
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739static ssize_t
740fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
741{
742 unsigned long p = *ppos;
Linus Torvaldsc47747f2011-05-11 14:58:34 -0700743 struct fb_info *info = file_fb_info(file);
James Hoganf11b4782010-10-27 15:33:28 -0700744 u8 *buffer, *dst;
745 u8 __iomem *src;
746 int c, cnt = 0, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 unsigned long total_size;
748
749 if (!info || ! info->screen_base)
750 return -ENODEV;
751
752 if (info->state != FBINFO_STATE_RUNNING)
753 return -EPERM;
754
755 if (info->fbops->fb_read)
Antonino A. Daplas3f9b0882007-05-08 00:39:02 -0700756 return info->fbops->fb_read(info, buf, count, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 total_size = info->screen_size;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (total_size == 0)
761 total_size = info->fix.smem_len;
762
763 if (p >= total_size)
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800764 return 0;
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (count >= total_size)
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800767 count = total_size;
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if (count + p > total_size)
770 count = total_size - p;
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
773 GFP_KERNEL);
774 if (!buffer)
775 return -ENOMEM;
776
James Hoganf11b4782010-10-27 15:33:28 -0700777 src = (u8 __iomem *) (info->screen_base + p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 if (info->fbops->fb_sync)
780 info->fbops->fb_sync(info);
781
782 while (count) {
783 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
784 dst = buffer;
James Hoganf11b4782010-10-27 15:33:28 -0700785 fb_memcpy_fromfb(dst, src, c);
786 dst += c;
787 src += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 if (copy_to_user(buf, buffer, c)) {
790 err = -EFAULT;
791 break;
792 }
793 *ppos += c;
794 buf += c;
795 cnt += c;
796 count -= c;
797 }
798
799 kfree(buffer);
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return (err) ? err : cnt;
802}
803
804static ssize_t
805fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
806{
807 unsigned long p = *ppos;
Linus Torvaldsc47747f2011-05-11 14:58:34 -0700808 struct fb_info *info = file_fb_info(file);
James Hoganf11b4782010-10-27 15:33:28 -0700809 u8 *buffer, *src;
810 u8 __iomem *dst;
811 int c, cnt = 0, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 unsigned long total_size;
813
814 if (!info || !info->screen_base)
815 return -ENODEV;
816
817 if (info->state != FBINFO_STATE_RUNNING)
818 return -EPERM;
819
820 if (info->fbops->fb_write)
Antonino A. Daplas3f9b0882007-05-08 00:39:02 -0700821 return info->fbops->fb_write(info, buf, count, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 total_size = info->screen_size;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (total_size == 0)
826 total_size = info->fix.smem_len;
827
828 if (p > total_size)
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700829 return -EFBIG;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800830
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700831 if (count > total_size) {
832 err = -EFBIG;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800833 count = total_size;
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700834 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800835
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700836 if (count + p > total_size) {
837 if (!err)
838 err = -ENOSPC;
839
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800840 count = total_size - p;
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700841 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
844 GFP_KERNEL);
845 if (!buffer)
846 return -ENOMEM;
847
James Hoganf11b4782010-10-27 15:33:28 -0700848 dst = (u8 __iomem *) (info->screen_base + p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 if (info->fbops->fb_sync)
851 info->fbops->fb_sync(info);
852
853 while (count) {
854 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
855 src = buffer;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (copy_from_user(src, buf, c)) {
858 err = -EFAULT;
859 break;
860 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800861
James Hoganf11b4782010-10-27 15:33:28 -0700862 fb_memcpy_tofb(dst, src, c);
863 dst += c;
864 src += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 *ppos += c;
866 buf += c;
867 cnt += c;
868 count -= c;
869 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 kfree(buffer);
872
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700873 return (cnt) ? cnt : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876int
877fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var)
878{
Antonino A. Daplas12070692005-12-12 22:17:17 -0800879 struct fb_fix_screeninfo *fix = &info->fix;
Ville Syrjala7572a1e2008-07-23 21:31:28 -0700880 unsigned int yres = info->var.yres;
881 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Antonino A. Daplas12070692005-12-12 22:17:17 -0800883 if (var->yoffset > 0) {
884 if (var->vmode & FB_VMODE_YWRAP) {
885 if (!fix->ywrapstep || (var->yoffset % fix->ywrapstep))
886 err = -EINVAL;
887 else
888 yres = 0;
889 } else if (!fix->ypanstep || (var->yoffset % fix->ypanstep))
890 err = -EINVAL;
891 }
892
893 if (var->xoffset > 0 && (!fix->xpanstep ||
894 (var->xoffset % fix->xpanstep)))
895 err = -EINVAL;
896
Ville Syrjala7572a1e2008-07-23 21:31:28 -0700897 if (err || !info->fbops->fb_pan_display ||
Florian Tobias Schandinat99e9e7d2009-09-22 16:47:41 -0700898 var->yoffset > info->var.yres_virtual - yres ||
899 var->xoffset > info->var.xres_virtual - info->var.xres)
Antonino A. Daplas12070692005-12-12 22:17:17 -0800900 return -EINVAL;
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if ((err = info->fbops->fb_pan_display(var, info)))
903 return err;
James Hoganc9c62dc2010-10-27 15:33:27 -0700904 info->var.xoffset = var->xoffset;
905 info->var.yoffset = var->yoffset;
906 if (var->vmode & FB_VMODE_YWRAP)
907 info->var.vmode |= FB_VMODE_YWRAP;
908 else
909 info->var.vmode &= ~FB_VMODE_YWRAP;
910 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}
912
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700913static int fb_check_caps(struct fb_info *info, struct fb_var_screeninfo *var,
914 u32 activate)
915{
916 struct fb_event event;
917 struct fb_blit_caps caps, fbcaps;
918 int err = 0;
919
920 memset(&caps, 0, sizeof(caps));
921 memset(&fbcaps, 0, sizeof(fbcaps));
922 caps.flags = (activate & FB_ACTIVATE_ALL) ? 1 : 0;
923 event.info = info;
924 event.data = &caps;
925 fb_notifier_call_chain(FB_EVENT_GET_REQ, &event);
926 info->fbops->fb_get_caps(info, &fbcaps, var);
927
928 if (((fbcaps.x ^ caps.x) & caps.x) ||
929 ((fbcaps.y ^ caps.y) & caps.y) ||
930 (fbcaps.len < caps.len))
931 err = -EINVAL;
932
933 return err;
934}
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936int
937fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var)
938{
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700939 int flags = info->flags;
940 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 if (var->activate & FB_ACTIVATE_INV_MODE) {
943 struct fb_videomode mode1, mode2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 fb_var_to_videomode(&mode1, var);
946 fb_var_to_videomode(&mode2, &info->var);
947 /* make sure we don't delete the videomode of current var */
948 ret = fb_mode_is_equal(&mode1, &mode2);
949
950 if (!ret) {
951 struct fb_event event;
952
953 event.info = info;
954 event.data = &mode1;
Antonino A. Daplas256154f2006-07-30 03:04:17 -0700955 ret = fb_notifier_call_chain(FB_EVENT_MODE_DELETE, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957
958 if (!ret)
959 fb_delete_videomode(&mode1, &info->modelist);
960
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700961
962 ret = (ret) ? -EINVAL : 0;
963 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
965
966 if ((var->activate & FB_ACTIVATE_FORCE) ||
967 memcmp(&info->var, var, sizeof(struct fb_var_screeninfo))) {
Antonino A. Daplas4941cb72007-05-08 00:39:22 -0700968 u32 activate = var->activate;
969
Laurent Pinchartfb21c2f2011-12-13 14:02:26 +0100970 /* When using FOURCC mode, make sure the red, green, blue and
971 * transp fields are set to 0.
972 */
973 if ((info->fix.capabilities & FB_CAP_FOURCC) &&
974 var->grayscale > 1) {
975 if (var->red.offset || var->green.offset ||
976 var->blue.offset || var->transp.offset ||
977 var->red.length || var->green.length ||
978 var->blue.length || var->transp.length ||
979 var->red.msb_right || var->green.msb_right ||
980 var->blue.msb_right || var->transp.msb_right)
981 return -EINVAL;
982 }
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (!info->fbops->fb_check_var) {
985 *var = info->var;
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700986 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700989 ret = info->fbops->fb_check_var(var, info);
990
991 if (ret)
992 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994 if ((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) {
Florian Tobias Schandinat0fcf6ad2009-09-22 16:47:44 -0700995 struct fb_var_screeninfo old_var;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 struct fb_videomode mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700998 if (info->fbops->fb_get_caps) {
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700999 ret = fb_check_caps(info, var, activate);
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07001000
Antonino A. Daplasb1e72232007-05-08 00:39:52 -07001001 if (ret)
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07001002 goto done;
1003 }
1004
Florian Tobias Schandinat0fcf6ad2009-09-22 16:47:44 -07001005 old_var = info->var;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 info->var = *var;
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07001007
Florian Tobias Schandinat0fcf6ad2009-09-22 16:47:44 -07001008 if (info->fbops->fb_set_par) {
1009 ret = info->fbops->fb_set_par(info);
1010
1011 if (ret) {
1012 info->var = old_var;
1013 printk(KERN_WARNING "detected "
1014 "fb_set_par error, "
1015 "error code: %d\n", ret);
1016 goto done;
1017 }
1018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 fb_pan_display(info, &info->var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 fb_set_cmap(&info->cmap, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 fb_var_to_videomode(&mode, &info->var);
1023
1024 if (info->modelist.prev && info->modelist.next &&
1025 !list_empty(&info->modelist))
Antonino A. Daplasb1e72232007-05-08 00:39:52 -07001026 ret = fb_add_videomode(&mode, &info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Antonino A. Daplasb1e72232007-05-08 00:39:52 -07001028 if (!ret && (flags & FBINFO_MISC_USEREVENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 struct fb_event event;
Antonino A. Daplas4941cb72007-05-08 00:39:22 -07001030 int evnt = (activate & FB_ACTIVATE_ALL) ?
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07001031 FB_EVENT_MODE_CHANGE_ALL :
1032 FB_EVENT_MODE_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 info->flags &= ~FBINFO_MISC_USEREVENT;
1035 event.info = info;
Eric Miaofaa312d2008-08-29 04:18:43 +08001036 event.data = &mode;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001037 fb_notifier_call_chain(evnt, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 }
1039 }
1040 }
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07001041
1042 done:
Antonino A. Daplasb1e72232007-05-08 00:39:52 -07001043 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
1046int
1047fb_blank(struct fb_info *info, int blank)
1048{
1049 int ret = -EINVAL;
1050
1051 if (blank > FB_BLANK_POWERDOWN)
1052 blank = FB_BLANK_POWERDOWN;
1053
1054 if (info->fbops->fb_blank)
1055 ret = info->fbops->fb_blank(blank, info);
1056
1057 if (!ret) {
1058 struct fb_event event;
1059
1060 event.info = info;
1061 event.data = &blank;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001062 fb_notifier_call_chain(FB_EVENT_BLANK, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 }
1064
1065 return ret;
1066}
1067
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001068static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,
1069 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Alan Coxe5367712008-10-18 20:27:51 -07001071 struct fb_ops *fb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 struct fb_var_screeninfo var;
1073 struct fb_fix_screeninfo fix;
1074 struct fb_con2fbmap con2fb;
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001075 struct fb_cmap cmap_from;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 struct fb_cmap_user cmap;
1077 struct fb_event event;
1078 void __user *argp = (void __user *)arg;
Alan Coxe5367712008-10-18 20:27:51 -07001079 long ret = 0;
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 switch (cmd) {
1082 case FBIOGET_VSCREENINFO:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001083 if (!lock_fb_info(info))
1084 return -ENODEV;
1085 var = info->var;
1086 unlock_fb_info(info);
1087
1088 ret = copy_to_user(argp, &var, sizeof(var)) ? -EFAULT : 0;
Alan Coxe5367712008-10-18 20:27:51 -07001089 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 case FBIOPUT_VSCREENINFO:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001091 if (copy_from_user(&var, argp, sizeof(var)))
1092 return -EFAULT;
1093 if (!lock_fb_info(info))
1094 return -ENODEV;
Torben Hohnac751ef2011-01-25 15:07:35 -08001095 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 info->flags |= FBINFO_MISC_USEREVENT;
Alan Coxe5367712008-10-18 20:27:51 -07001097 ret = fb_set_var(info, &var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 info->flags &= ~FBINFO_MISC_USEREVENT;
Torben Hohnac751ef2011-01-25 15:07:35 -08001099 console_unlock();
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001100 unlock_fb_info(info);
1101 if (!ret && copy_to_user(argp, &var, sizeof(var)))
Alan Coxe5367712008-10-18 20:27:51 -07001102 ret = -EFAULT;
1103 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 case FBIOGET_FSCREENINFO:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001105 if (!lock_fb_info(info))
1106 return -ENODEV;
1107 fix = info->fix;
1108 unlock_fb_info(info);
1109
1110 ret = copy_to_user(argp, &fix, sizeof(fix)) ? -EFAULT : 0;
Alan Coxe5367712008-10-18 20:27:51 -07001111 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 case FBIOPUTCMAP:
1113 if (copy_from_user(&cmap, argp, sizeof(cmap)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001114 return -EFAULT;
1115 ret = fb_set_user_cmap(&cmap, info);
Pawan Kumar03b1b6b2013-10-31 16:19:44 +05301116 if (ret) {
1117 if (info)
1118 fb_dealloc_cmap(&info->cmap);
1119 }
Alan Coxe5367712008-10-18 20:27:51 -07001120 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 case FBIOGETCMAP:
1122 if (copy_from_user(&cmap, argp, sizeof(cmap)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001123 return -EFAULT;
1124 if (!lock_fb_info(info))
1125 return -ENODEV;
1126 cmap_from = info->cmap;
1127 unlock_fb_info(info);
1128 ret = fb_cmap_to_user(&cmap_from, &cmap);
Alan Coxe5367712008-10-18 20:27:51 -07001129 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 case FBIOPAN_DISPLAY:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001131 if (copy_from_user(&var, argp, sizeof(var)))
1132 return -EFAULT;
1133 if (!lock_fb_info(info))
1134 return -ENODEV;
Torben Hohnac751ef2011-01-25 15:07:35 -08001135 console_lock();
Alan Coxe5367712008-10-18 20:27:51 -07001136 ret = fb_pan_display(info, &var);
Torben Hohnac751ef2011-01-25 15:07:35 -08001137 console_unlock();
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001138 unlock_fb_info(info);
Alan Coxe5367712008-10-18 20:27:51 -07001139 if (ret == 0 && copy_to_user(argp, &var, sizeof(var)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001140 return -EFAULT;
Alan Coxe5367712008-10-18 20:27:51 -07001141 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 case FBIO_CURSOR:
Alan Coxe5367712008-10-18 20:27:51 -07001143 ret = -EINVAL;
1144 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 case FBIOGET_CON2FBMAP:
1146 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001147 return -EFAULT;
1148 if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
1149 return -EINVAL;
1150 con2fb.framebuffer = -1;
1151 event.data = &con2fb;
Andrea Righi513adb52009-04-13 14:39:39 -07001152 if (!lock_fb_info(info))
1153 return -ENODEV;
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001154 event.info = info;
1155 fb_notifier_call_chain(FB_EVENT_GET_CONSOLE_MAP, &event);
Andrea Righi513adb52009-04-13 14:39:39 -07001156 unlock_fb_info(info);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001157 ret = copy_to_user(argp, &con2fb, sizeof(con2fb)) ? -EFAULT : 0;
Alan Coxe5367712008-10-18 20:27:51 -07001158 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 case FBIOPUT_CON2FBMAP:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001160 if (copy_from_user(&con2fb, argp, sizeof(con2fb)))
1161 return -EFAULT;
1162 if (con2fb.console < 1 || con2fb.console > MAX_NR_CONSOLES)
1163 return -EINVAL;
1164 if (con2fb.framebuffer < 0 || con2fb.framebuffer >= FB_MAX)
1165 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (!registered_fb[con2fb.framebuffer])
Alan Coxe5367712008-10-18 20:27:51 -07001167 request_module("fb%d", con2fb.framebuffer);
1168 if (!registered_fb[con2fb.framebuffer]) {
1169 ret = -EINVAL;
1170 break;
1171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 event.data = &con2fb;
Andrea Righi513adb52009-04-13 14:39:39 -07001173 if (!lock_fb_info(info))
1174 return -ENODEV;
Dave Airlie50eab442013-01-25 11:38:56 +10001175 console_lock();
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001176 event.info = info;
Andrea Righi66c1ca02009-03-31 15:25:18 -07001177 ret = fb_notifier_call_chain(FB_EVENT_SET_CONSOLE_MAP, &event);
Dave Airlie50eab442013-01-25 11:38:56 +10001178 console_unlock();
Andrea Righi513adb52009-04-13 14:39:39 -07001179 unlock_fb_info(info);
Alan Coxe5367712008-10-18 20:27:51 -07001180 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 case FBIOBLANK:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001182 if (!lock_fb_info(info))
1183 return -ENODEV;
Torben Hohnac751ef2011-01-25 15:07:35 -08001184 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 info->flags |= FBINFO_MISC_USEREVENT;
Alan Coxe5367712008-10-18 20:27:51 -07001186 ret = fb_blank(info, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 info->flags &= ~FBINFO_MISC_USEREVENT;
Torben Hohnac751ef2011-01-25 15:07:35 -08001188 console_unlock();
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001189 unlock_fb_info(info);
1190 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 default:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001192 fb = info->fbops;
1193 if (fb->fb_ioctl)
Alan Coxe5367712008-10-18 20:27:51 -07001194 ret = fb->fb_ioctl(info, cmd, arg);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001195 else
1196 ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001198 return ret;
1199}
1200
1201static long fb_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001202{
Linus Torvaldsc47747f2011-05-11 14:58:34 -07001203 struct fb_info *info = file_fb_info(file);
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001204
Linus Torvaldsc47747f2011-05-11 14:58:34 -07001205 if (!info)
1206 return -ENODEV;
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001207 return do_fb_ioctl(info, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208}
1209
1210#ifdef CONFIG_COMPAT
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001211struct fb_fix_screeninfo32 {
1212 char id[16];
1213 compat_caddr_t smem_start;
1214 u32 smem_len;
1215 u32 type;
1216 u32 type_aux;
1217 u32 visual;
1218 u16 xpanstep;
1219 u16 ypanstep;
1220 u16 ywrapstep;
1221 u32 line_length;
1222 compat_caddr_t mmio_start;
1223 u32 mmio_len;
1224 u32 accel;
1225 u16 reserved[3];
1226};
1227
1228struct fb_cmap32 {
1229 u32 start;
1230 u32 len;
1231 compat_caddr_t red;
1232 compat_caddr_t green;
1233 compat_caddr_t blue;
1234 compat_caddr_t transp;
1235};
1236
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001237static int fb_getput_cmap(struct fb_info *info, unsigned int cmd,
1238 unsigned long arg)
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001239{
1240 struct fb_cmap_user __user *cmap;
1241 struct fb_cmap32 __user *cmap32;
1242 __u32 data;
1243 int err;
1244
1245 cmap = compat_alloc_user_space(sizeof(*cmap));
1246 cmap32 = compat_ptr(arg);
1247
1248 if (copy_in_user(&cmap->start, &cmap32->start, 2 * sizeof(__u32)))
1249 return -EFAULT;
1250
1251 if (get_user(data, &cmap32->red) ||
1252 put_user(compat_ptr(data), &cmap->red) ||
1253 get_user(data, &cmap32->green) ||
1254 put_user(compat_ptr(data), &cmap->green) ||
1255 get_user(data, &cmap32->blue) ||
1256 put_user(compat_ptr(data), &cmap->blue) ||
1257 get_user(data, &cmap32->transp) ||
1258 put_user(compat_ptr(data), &cmap->transp))
1259 return -EFAULT;
1260
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001261 err = do_fb_ioctl(info, cmd, (unsigned long) cmap);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001262
1263 if (!err) {
1264 if (copy_in_user(&cmap32->start,
1265 &cmap->start,
1266 2 * sizeof(__u32)))
1267 err = -EFAULT;
1268 }
1269 return err;
1270}
1271
1272static int do_fscreeninfo_to_user(struct fb_fix_screeninfo *fix,
1273 struct fb_fix_screeninfo32 __user *fix32)
1274{
1275 __u32 data;
1276 int err;
1277
1278 err = copy_to_user(&fix32->id, &fix->id, sizeof(fix32->id));
1279
1280 data = (__u32) (unsigned long) fix->smem_start;
1281 err |= put_user(data, &fix32->smem_start);
1282
1283 err |= put_user(fix->smem_len, &fix32->smem_len);
1284 err |= put_user(fix->type, &fix32->type);
1285 err |= put_user(fix->type_aux, &fix32->type_aux);
1286 err |= put_user(fix->visual, &fix32->visual);
1287 err |= put_user(fix->xpanstep, &fix32->xpanstep);
1288 err |= put_user(fix->ypanstep, &fix32->ypanstep);
1289 err |= put_user(fix->ywrapstep, &fix32->ywrapstep);
1290 err |= put_user(fix->line_length, &fix32->line_length);
1291
1292 data = (__u32) (unsigned long) fix->mmio_start;
1293 err |= put_user(data, &fix32->mmio_start);
1294
1295 err |= put_user(fix->mmio_len, &fix32->mmio_len);
1296 err |= put_user(fix->accel, &fix32->accel);
1297 err |= copy_to_user(fix32->reserved, fix->reserved,
1298 sizeof(fix->reserved));
1299
1300 return err;
1301}
1302
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001303static int fb_get_fscreeninfo(struct fb_info *info, unsigned int cmd,
1304 unsigned long arg)
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001305{
1306 mm_segment_t old_fs;
1307 struct fb_fix_screeninfo fix;
1308 struct fb_fix_screeninfo32 __user *fix32;
1309 int err;
1310
1311 fix32 = compat_ptr(arg);
1312
1313 old_fs = get_fs();
1314 set_fs(KERNEL_DS);
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001315 err = do_fb_ioctl(info, cmd, (unsigned long) &fix);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001316 set_fs(old_fs);
1317
1318 if (!err)
1319 err = do_fscreeninfo_to_user(&fix, fix32);
1320
1321 return err;
1322}
1323
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001324static long fb_compat_ioctl(struct file *file, unsigned int cmd,
1325 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
Linus Torvaldsc47747f2011-05-11 14:58:34 -07001327 struct fb_info *info = file_fb_info(file);
1328 struct fb_ops *fb;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001329 long ret = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Linus Torvaldsc47747f2011-05-11 14:58:34 -07001331 if (!info)
1332 return -ENODEV;
1333 fb = info->fbops;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001334 switch(cmd) {
1335 case FBIOGET_VSCREENINFO:
1336 case FBIOPUT_VSCREENINFO:
1337 case FBIOPAN_DISPLAY:
1338 case FBIOGET_CON2FBMAP:
1339 case FBIOPUT_CON2FBMAP:
1340 arg = (unsigned long) compat_ptr(arg);
1341 case FBIOBLANK:
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001342 ret = do_fb_ioctl(info, cmd, arg);
1343 break;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001344
1345 case FBIOGET_FSCREENINFO:
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001346 ret = fb_get_fscreeninfo(info, cmd, arg);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001347 break;
1348
1349 case FBIOGETCMAP:
1350 case FBIOPUTCMAP:
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001351 ret = fb_getput_cmap(info, cmd, arg);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001352 break;
1353
1354 default:
1355 if (fb->fb_compat_ioctl)
Christoph Hellwig67a66802006-01-14 13:21:25 -08001356 ret = fb->fb_compat_ioctl(info, cmd, arg);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001357 break;
1358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return ret;
1360}
1361#endif
1362
Antonino A. Daplas10eb2652007-07-17 04:05:27 -07001363static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364fb_mmap(struct file *file, struct vm_area_struct * vma)
1365{
Linus Torvaldsc47747f2011-05-11 14:58:34 -07001366 struct fb_info *info = file_fb_info(file);
1367 struct fb_ops *fb;
Linus Torvaldsa81775c2013-04-19 09:57:35 -07001368 unsigned long mmio_pgoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 unsigned long start;
1370 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Linus Torvaldsc47747f2011-05-11 14:58:34 -07001372 if (!info)
1373 return -ENODEV;
Linus Torvaldsc47747f2011-05-11 14:58:34 -07001374 fb = info->fbops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 if (!fb)
1376 return -ENODEV;
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001377 mutex_lock(&info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 if (fb->fb_mmap) {
1379 int res;
Christoph Hellwig216d5262006-01-14 13:21:25 -08001380 res = fb->fb_mmap(info, vma);
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001381 mutex_unlock(&info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return res;
1383 }
1384
Linus Torvaldsa81775c2013-04-19 09:57:35 -07001385 /*
1386 * Ugh. This can be either the frame buffer mapping, or
1387 * if pgoff points past it, the mmio mapping.
1388 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 start = info->fix.smem_start;
Linus Torvaldsa81775c2013-04-19 09:57:35 -07001390 len = info->fix.smem_len;
1391 mmio_pgoff = PAGE_ALIGN((start & ~PAGE_MASK) + len) >> PAGE_SHIFT;
1392 if (vma->vm_pgoff >= mmio_pgoff) {
1393 vma->vm_pgoff -= mmio_pgoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 start = info->fix.mmio_start;
Linus Torvaldsa81775c2013-04-19 09:57:35 -07001395 len = info->fix.mmio_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001397 mutex_unlock(&info->mm_lock);
Linus Torvaldsa81775c2013-04-19 09:57:35 -07001398
Daniel De Graafc07fbfd2010-08-10 18:02:45 -07001399 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
Linus Torvaldsa81775c2013-04-19 09:57:35 -07001400 fb_pgprotect(file, vma, start);
1401
1402 return vm_iomap_memory(vma, start, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403}
1404
1405static int
1406fb_open(struct inode *inode, struct file *file)
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001407__acquires(&info->lock)
1408__releases(&info->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
1410 int fbidx = iminor(inode);
1411 struct fb_info *info;
1412 int res = 0;
1413
Linus Torvalds698b3682011-05-11 14:49:36 -07001414 info = get_fb_info(fbidx);
1415 if (!info) {
Johannes Berga65e5d72008-07-09 10:28:38 +02001416 request_module("fb%d", fbidx);
Linus Torvalds698b3682011-05-11 14:49:36 -07001417 info = get_fb_info(fbidx);
1418 if (!info)
1419 return -ENODEV;
1420 }
1421 if (IS_ERR(info))
1422 return PTR_ERR(info);
1423
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001424 mutex_lock(&info->lock);
Jonathan Corbetfc7f6872008-05-15 16:30:36 -06001425 if (!try_module_get(info->fbops->owner)) {
1426 res = -ENODEV;
1427 goto out;
1428 }
Thomas Koellercae8a122006-01-09 20:53:48 -08001429 file->private_data = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 if (info->fbops->fb_open) {
1431 res = info->fbops->fb_open(info,1);
1432 if (res)
1433 module_put(info->fbops->owner);
1434 }
Ian Campbelld8474712008-08-20 14:09:23 -07001435#ifdef CONFIG_FB_DEFERRED_IO
1436 if (info->fbdefio)
1437 fb_deferred_io_open(info, inode, file);
1438#endif
Jonathan Corbetfc7f6872008-05-15 16:30:36 -06001439out:
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001440 mutex_unlock(&info->lock);
Linus Torvalds698b3682011-05-11 14:49:36 -07001441 if (res)
1442 put_fb_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 return res;
1444}
1445
1446static int
1447fb_release(struct inode *inode, struct file *file)
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001448__acquires(&info->lock)
1449__releases(&info->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
Thomas Koellercae8a122006-01-09 20:53:48 -08001451 struct fb_info * const info = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001453 mutex_lock(&info->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (info->fbops->fb_release)
1455 info->fbops->fb_release(info,1);
1456 module_put(info->fbops->owner);
Krzysztof Helt3e680aa2008-10-18 20:27:51 -07001457 mutex_unlock(&info->lock);
Linus Torvalds698b3682011-05-11 14:49:36 -07001458 put_fb_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 return 0;
1460}
1461
Helge Deller0128bee2006-12-08 02:40:29 -08001462static const struct file_operations fb_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 .owner = THIS_MODULE,
1464 .read = fb_read,
1465 .write = fb_write,
Alan Coxe5367712008-10-18 20:27:51 -07001466 .unlocked_ioctl = fb_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467#ifdef CONFIG_COMPAT
1468 .compat_ioctl = fb_compat_ioctl,
1469#endif
1470 .mmap = fb_mmap,
1471 .open = fb_open,
1472 .release = fb_release,
1473#ifdef HAVE_ARCH_FB_UNMAPPED_AREA
1474 .get_unmapped_area = get_fb_unmapped_area,
1475#endif
Paul Mundt5e841b82007-05-08 00:37:41 -07001476#ifdef CONFIG_FB_DEFERRED_IO
1477 .fsync = fb_deferred_io_fsync,
1478#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02001479 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480};
1481
Antonino A. Daplas9a179172006-06-26 00:27:05 -07001482struct class *fb_class;
1483EXPORT_SYMBOL(fb_class);
Anton Vorontsove4c690e2008-04-28 02:14:49 -07001484
1485static int fb_check_foreignness(struct fb_info *fi)
1486{
1487 const bool foreign_endian = fi->flags & FBINFO_FOREIGN_ENDIAN;
1488
1489 fi->flags &= ~FBINFO_FOREIGN_ENDIAN;
1490
1491#ifdef __BIG_ENDIAN
1492 fi->flags |= foreign_endian ? 0 : FBINFO_BE_MATH;
1493#else
1494 fi->flags |= foreign_endian ? FBINFO_BE_MATH : 0;
1495#endif /* __BIG_ENDIAN */
1496
1497 if (fi->flags & FBINFO_BE_MATH && !fb_be_math(fi)) {
1498 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1499 "support this framebuffer\n", fi->fix.id);
1500 return -ENOSYS;
1501 } else if (!(fi->flags & FBINFO_BE_MATH) && fb_be_math(fi)) {
1502 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1503 "support this framebuffer\n", fi->fix.id);
1504 return -ENOSYS;
1505 }
1506
1507 return 0;
1508}
1509
Marcin Slusarz1471ca92010-05-16 17:27:03 +02001510static bool apertures_overlap(struct aperture *gen, struct aperture *hw)
Dave Airlie4410f392009-06-16 15:34:38 -07001511{
1512 /* is the generic aperture base the same as the HW one */
Marcin Slusarz1471ca92010-05-16 17:27:03 +02001513 if (gen->base == hw->base)
Dave Airlie4410f392009-06-16 15:34:38 -07001514 return true;
1515 /* is the generic aperture base inside the hw base->hw base+size */
Dave Airlieacd0acb2010-12-21 01:41:15 +00001516 if (gen->base > hw->base && gen->base < hw->base + hw->size)
Dave Airlie4410f392009-06-16 15:34:38 -07001517 return true;
1518 return false;
1519}
Marcin Slusarz1471ca92010-05-16 17:27:03 +02001520
Marcin Slusarz06415c52010-05-16 17:29:56 +02001521static bool fb_do_apertures_overlap(struct apertures_struct *gena,
1522 struct apertures_struct *hwa)
Marcin Slusarz1471ca92010-05-16 17:27:03 +02001523{
1524 int i, j;
Marcin Slusarz1471ca92010-05-16 17:27:03 +02001525 if (!hwa || !gena)
1526 return false;
1527
1528 for (i = 0; i < hwa->count; ++i) {
1529 struct aperture *h = &hwa->ranges[i];
1530 for (j = 0; j < gena->count; ++j) {
1531 struct aperture *g = &gena->ranges[j];
1532 printk(KERN_DEBUG "checking generic (%llx %llx) vs hw (%llx %llx)\n",
Randy Dunlapf4b87de2010-05-21 12:44:47 -07001533 (unsigned long long)g->base,
1534 (unsigned long long)g->size,
1535 (unsigned long long)h->base,
1536 (unsigned long long)h->size);
Marcin Slusarz1471ca92010-05-16 17:27:03 +02001537 if (apertures_overlap(g, h))
1538 return true;
1539 }
1540 }
1541
1542 return false;
1543}
1544
Linus Torvalds712f3142011-05-13 16:16:41 -07001545static int do_unregister_framebuffer(struct fb_info *fb_info);
1546
Marcin Slusarz3b9676e2010-05-16 17:33:09 +02001547#define VGA_FB_PHYS 0xA0000
Linus Torvalds712f3142011-05-13 16:16:41 -07001548static void do_remove_conflicting_framebuffers(struct apertures_struct *a,
Marcin Slusarz3b9676e2010-05-16 17:33:09 +02001549 const char *name, bool primary)
Marcin Slusarz06415c52010-05-16 17:29:56 +02001550{
1551 int i;
1552
1553 /* check all firmware fbs and kick off if the base addr overlaps */
1554 for (i = 0 ; i < FB_MAX; i++) {
Marcin Slusarz3b9676e2010-05-16 17:33:09 +02001555 struct apertures_struct *gen_aper;
Marcin Slusarz06415c52010-05-16 17:29:56 +02001556 if (!registered_fb[i])
1557 continue;
1558
1559 if (!(registered_fb[i]->flags & FBINFO_MISC_FIRMWARE))
1560 continue;
1561
Marcin Slusarz3b9676e2010-05-16 17:33:09 +02001562 gen_aper = registered_fb[i]->apertures;
1563 if (fb_do_apertures_overlap(gen_aper, a) ||
1564 (primary && gen_aper && gen_aper->count &&
1565 gen_aper->ranges[0].base == VGA_FB_PHYS)) {
1566
Matthew Garrett47c87d92011-04-04 21:39:54 +00001567 printk(KERN_INFO "fb: conflicting fb hw usage "
Marcin Slusarz06415c52010-05-16 17:29:56 +02001568 "%s vs %s - removing generic driver\n",
1569 name, registered_fb[i]->fix.id);
Linus Torvalds712f3142011-05-13 16:16:41 -07001570 do_unregister_framebuffer(registered_fb[i]);
Marcin Slusarz06415c52010-05-16 17:29:56 +02001571 }
1572 }
1573}
Marcin Slusarz06415c52010-05-16 17:29:56 +02001574
Linus Torvalds712f3142011-05-13 16:16:41 -07001575static int do_register_framebuffer(struct fb_info *fb_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
1577 int i;
1578 struct fb_event event;
Antonino A. Daplas96fe6a22005-09-09 13:09:58 -07001579 struct fb_videomode mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Anton Vorontsove4c690e2008-04-28 02:14:49 -07001581 if (fb_check_foreignness(fb_info))
1582 return -ENOSYS;
1583
Linus Torvalds712f3142011-05-13 16:16:41 -07001584 do_remove_conflicting_framebuffers(fb_info->apertures, fb_info->fix.id,
Marcin Slusarz3b9676e2010-05-16 17:33:09 +02001585 fb_is_primary_device(fb_info));
Dave Airlie4410f392009-06-16 15:34:38 -07001586
Bruno Prémontc590cec2011-05-14 12:24:15 +02001587 if (num_registered_fb == FB_MAX)
1588 return -ENXIO;
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 num_registered_fb++;
1591 for (i = 0 ; i < FB_MAX; i++)
1592 if (!registered_fb[i])
1593 break;
1594 fb_info->node = i;
Linus Torvalds698b3682011-05-11 14:49:36 -07001595 atomic_set(&fb_info->count, 1);
Linus Torvalds6c968952009-07-08 09:20:11 -07001596 mutex_init(&fb_info->lock);
1597 mutex_init(&fb_info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Greg Kroah-Hartman77997aa2008-07-21 20:03:34 -07001599 fb_info->dev = device_create(fb_class, fb_info->device,
1600 MKDEV(FB_MAJOR, i), NULL, "fb%d", i);
Greg Kroah-Hartman78cde082006-09-14 07:30:59 -07001601 if (IS_ERR(fb_info->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 /* Not fatal */
Greg Kroah-Hartman78cde082006-09-14 07:30:59 -07001603 printk(KERN_WARNING "Unable to create device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->dev));
1604 fb_info->dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 } else
Greg Kroah-Hartman78cde082006-09-14 07:30:59 -07001606 fb_init_device(fb_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 if (fb_info->pixmap.addr == NULL) {
1609 fb_info->pixmap.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL);
1610 if (fb_info->pixmap.addr) {
1611 fb_info->pixmap.size = FBPIXMAPSIZE;
1612 fb_info->pixmap.buf_align = 1;
1613 fb_info->pixmap.scan_align = 1;
James Simmons58a60642005-06-21 17:17:08 -07001614 fb_info->pixmap.access_align = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 fb_info->pixmap.flags = FB_PIXMAP_DEFAULT;
1616 }
1617 }
1618 fb_info->pixmap.offset = 0;
1619
Antonino A. Daplasbf26ad72007-05-08 00:39:09 -07001620 if (!fb_info->pixmap.blit_x)
1621 fb_info->pixmap.blit_x = ~(u32)0;
1622
1623 if (!fb_info->pixmap.blit_y)
1624 fb_info->pixmap.blit_y = ~(u32)0;
1625
Antonino A. Daplas96fe6a22005-09-09 13:09:58 -07001626 if (!fb_info->modelist.prev || !fb_info->modelist.next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 INIT_LIST_HEAD(&fb_info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Antonino A. Daplas96fe6a22005-09-09 13:09:58 -07001629 fb_var_to_videomode(&mode, &fb_info->var);
1630 fb_add_videomode(&mode, &fb_info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 registered_fb[i] = fb_info;
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 event.info = fb_info;
Andrea Righi513adb52009-04-13 14:39:39 -07001634 if (!lock_fb_info(fb_info))
1635 return -ENODEV;
Alan Cox50a60452013-01-25 10:28:15 +10001636 console_lock();
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001637 fb_notifier_call_chain(FB_EVENT_FB_REGISTERED, &event);
Alan Cox50a60452013-01-25 10:28:15 +10001638 console_unlock();
Andrea Righi513adb52009-04-13 14:39:39 -07001639 unlock_fb_info(fb_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 return 0;
1641}
1642
Linus Torvalds712f3142011-05-13 16:16:41 -07001643static int do_unregister_framebuffer(struct fb_info *fb_info)
1644{
1645 struct fb_event event;
1646 int i, ret = 0;
1647
1648 i = fb_info->node;
Bruno Prémontc590cec2011-05-14 12:24:15 +02001649 if (i < 0 || i >= FB_MAX || registered_fb[i] != fb_info)
Linus Torvalds712f3142011-05-13 16:16:41 -07001650 return -EINVAL;
1651
1652 if (!lock_fb_info(fb_info))
1653 return -ENODEV;
Takashi Iwaia5d3f7b2013-01-25 10:28:18 +10001654 console_lock();
Linus Torvalds712f3142011-05-13 16:16:41 -07001655 event.info = fb_info;
1656 ret = fb_notifier_call_chain(FB_EVENT_FB_UNBIND, &event);
Takashi Iwaia5d3f7b2013-01-25 10:28:18 +10001657 console_unlock();
Linus Torvalds712f3142011-05-13 16:16:41 -07001658 unlock_fb_info(fb_info);
1659
1660 if (ret)
1661 return -EINVAL;
1662
Kay Sieversce880cb2012-01-28 19:57:46 +00001663 unlink_framebuffer(fb_info);
Linus Torvalds712f3142011-05-13 16:16:41 -07001664 if (fb_info->pixmap.addr &&
1665 (fb_info->pixmap.flags & FB_PIXMAP_DEFAULT))
1666 kfree(fb_info->pixmap.addr);
1667 fb_destroy_modelist(&fb_info->modelist);
1668 registered_fb[i] = NULL;
1669 num_registered_fb--;
1670 fb_cleanup_device(fb_info);
Linus Torvalds712f3142011-05-13 16:16:41 -07001671 event.info = fb_info;
Takashi Iwaia5d3f7b2013-01-25 10:28:18 +10001672 console_lock();
Linus Torvalds712f3142011-05-13 16:16:41 -07001673 fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED, &event);
Takashi Iwaia5d3f7b2013-01-25 10:28:18 +10001674 console_unlock();
Linus Torvalds712f3142011-05-13 16:16:41 -07001675
1676 /* this may free fb info */
1677 put_fb_info(fb_info);
1678 return 0;
1679}
1680
Kay Sieversce880cb2012-01-28 19:57:46 +00001681int unlink_framebuffer(struct fb_info *fb_info)
1682{
1683 int i;
1684
1685 i = fb_info->node;
1686 if (i < 0 || i >= FB_MAX || registered_fb[i] != fb_info)
1687 return -EINVAL;
1688
1689 if (fb_info->dev) {
1690 device_destroy(fb_class, MKDEV(FB_MAJOR, i));
1691 fb_info->dev = NULL;
1692 }
1693 return 0;
1694}
1695EXPORT_SYMBOL(unlink_framebuffer);
1696
Linus Torvalds712f3142011-05-13 16:16:41 -07001697void remove_conflicting_framebuffers(struct apertures_struct *a,
1698 const char *name, bool primary)
1699{
1700 mutex_lock(&registration_lock);
1701 do_remove_conflicting_framebuffers(a, name, primary);
1702 mutex_unlock(&registration_lock);
1703}
1704EXPORT_SYMBOL(remove_conflicting_framebuffers);
1705
1706/**
1707 * register_framebuffer - registers a frame buffer device
1708 * @fb_info: frame buffer info structure
1709 *
1710 * Registers a frame buffer device @fb_info.
1711 *
1712 * Returns negative errno on error, or zero for success.
1713 *
1714 */
1715int
1716register_framebuffer(struct fb_info *fb_info)
1717{
1718 int ret;
1719
1720 mutex_lock(&registration_lock);
1721 ret = do_register_framebuffer(fb_info);
1722 mutex_unlock(&registration_lock);
1723
1724 return ret;
1725}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727/**
1728 * unregister_framebuffer - releases a frame buffer device
1729 * @fb_info: frame buffer info structure
1730 *
1731 * Unregisters a frame buffer device @fb_info.
1732 *
1733 * Returns negative errno on error, or zero for success.
1734 *
Jesse Barnescfafca82007-07-17 04:05:33 -07001735 * This function will also notify the framebuffer console
1736 * to release the driver.
1737 *
1738 * This is meant to be called within a driver's module_exit()
1739 * function. If this is called outside module_exit(), ensure
1740 * that the driver implements fb_open() and fb_release() to
1741 * check that no processes are using the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743int
1744unregister_framebuffer(struct fb_info *fb_info)
1745{
Linus Torvalds712f3142011-05-13 16:16:41 -07001746 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Linus Torvalds698b3682011-05-11 14:49:36 -07001748 mutex_lock(&registration_lock);
Linus Torvalds712f3142011-05-13 16:16:41 -07001749 ret = do_unregister_framebuffer(fb_info);
Linus Torvalds698b3682011-05-11 14:49:36 -07001750 mutex_unlock(&registration_lock);
Linus Torvalds712f3142011-05-13 16:16:41 -07001751
Jesse Barnescfafca82007-07-17 04:05:33 -07001752 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753}
1754
1755/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 * fb_set_suspend - low level driver signals suspend
1757 * @info: framebuffer affected
1758 * @state: 0 = resuming, !=0 = suspending
1759 *
1760 * This is meant to be used by low level drivers to
1761 * signal suspend/resume to the core & clients.
1762 * It must be called with the console semaphore held
1763 */
1764void fb_set_suspend(struct fb_info *info, int state)
1765{
1766 struct fb_event event;
1767
1768 event.info = info;
1769 if (state) {
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001770 fb_notifier_call_chain(FB_EVENT_SUSPEND, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 info->state = FBINFO_STATE_SUSPENDED;
1772 } else {
1773 info->state = FBINFO_STATE_RUNNING;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001774 fb_notifier_call_chain(FB_EVENT_RESUME, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 }
1776}
1777
1778/**
1779 * fbmem_init - init frame buffer subsystem
1780 *
1781 * Initialize the frame buffer subsystem.
1782 *
1783 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1784 *
1785 */
1786
1787static int __init
1788fbmem_init(void)
1789{
Alexey Dobriyan0aa16342008-04-28 02:15:42 -07001790 proc_create("fb", 0, NULL, &fb_proc_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 if (register_chrdev(FB_MAJOR,"fb",&fb_fops))
1793 printk("unable to get major %d for fb devs\n", FB_MAJOR);
1794
gregkh@suse.de56b22932005-03-23 10:01:41 -08001795 fb_class = class_create(THIS_MODULE, "graphics");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 if (IS_ERR(fb_class)) {
1797 printk(KERN_WARNING "Unable to create fb class; errno = %ld\n", PTR_ERR(fb_class));
1798 fb_class = NULL;
1799 }
1800 return 0;
1801}
1802
1803#ifdef MODULE
1804module_init(fbmem_init);
1805static void __exit
1806fbmem_exit(void)
1807{
Alexey Dobriyanc43f89c2008-04-15 14:34:33 -07001808 remove_proc_entry("fb", NULL);
gregkh@suse.de56b22932005-03-23 10:01:41 -08001809 class_destroy(fb_class);
Jon Smirl5a340cc2005-07-27 11:46:04 -07001810 unregister_chrdev(FB_MAJOR, "fb");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
1812
1813module_exit(fbmem_exit);
1814MODULE_LICENSE("GPL");
1815MODULE_DESCRIPTION("Framebuffer base");
1816#else
1817subsys_initcall(fbmem_init);
1818#endif
1819
1820int fb_new_modelist(struct fb_info *info)
1821{
1822 struct fb_event event;
1823 struct fb_var_screeninfo var = info->var;
1824 struct list_head *pos, *n;
1825 struct fb_modelist *modelist;
1826 struct fb_videomode *m, mode;
1827 int err = 1;
1828
1829 list_for_each_safe(pos, n, &info->modelist) {
1830 modelist = list_entry(pos, struct fb_modelist, list);
1831 m = &modelist->mode;
1832 fb_videomode_to_var(&var, m);
1833 var.activate = FB_ACTIVATE_TEST;
1834 err = fb_set_var(info, &var);
1835 fb_var_to_videomode(&mode, &var);
1836 if (err || !fb_mode_is_equal(m, &mode)) {
1837 list_del(pos);
1838 kfree(pos);
1839 }
1840 }
1841
1842 err = 1;
1843
1844 if (!list_empty(&info->modelist)) {
1845 event.info = info;
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001846 err = fb_notifier_call_chain(FB_EVENT_NEW_MODELIST, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
1848
1849 return err;
1850}
1851
Helge Deller0128bee2006-12-08 02:40:29 -08001852static char *video_options[FB_MAX] __read_mostly;
1853static int ofonly __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855/**
1856 * fb_get_options - get kernel boot parameters
1857 * @name: framebuffer name as it would appear in
1858 * the boot parameter line
1859 * (video=<name>:<options>)
1860 * @option: the option will be stored here
1861 *
1862 * NOTE: Needed to maintain backwards compatibility
1863 */
1864int fb_get_options(char *name, char **option)
1865{
1866 char *opt, *options = NULL;
Denys Vlasenkoa67ef272010-08-10 18:02:30 -07001867 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 int name_len = strlen(name), i;
1869
1870 if (name_len && ofonly && strncmp(name, "offb", 4))
1871 retval = 1;
1872
1873 if (name_len && !retval) {
1874 for (i = 0; i < FB_MAX; i++) {
1875 if (video_options[i] == NULL)
1876 continue;
Denys Vlasenkoa67ef272010-08-10 18:02:30 -07001877 if (!video_options[i][0])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 continue;
1879 opt = video_options[i];
1880 if (!strncmp(name, opt, name_len) &&
1881 opt[name_len] == ':')
1882 options = opt + name_len + 1;
1883 }
1884 }
1885 if (options && !strncmp(options, "off", 3))
1886 retval = 1;
1887
1888 if (option)
1889 *option = options;
1890
1891 return retval;
1892}
1893
Andrew Mortonbc6d7fd2006-02-11 17:56:08 -08001894#ifndef MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895/**
1896 * video_setup - process command line options
1897 * @options: string of options
1898 *
1899 * Process command line options for frame buffer subsystem.
1900 *
1901 * NOTE: This function is a __setup and __init function.
1902 * It only stores the options. Drivers have to call
1903 * fb_get_options() as necessary.
1904 *
1905 * Returns zero.
1906 *
1907 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07001908static int __init video_setup(char *options)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
1910 int i, global = 0;
1911
1912 if (!options || !*options)
1913 global = 1;
1914
1915 if (!global && !strncmp(options, "ofonly", 6)) {
1916 ofonly = 1;
1917 global = 1;
1918 }
1919
Dave Airlief8033032009-09-16 20:45:09 +10001920 if (!global && !strchr(options, ':')) {
Geert Uytterhoeven9a054fb2007-10-16 01:29:51 -07001921 fb_mode_option = options;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 global = 1;
1923 }
1924
1925 if (!global) {
1926 for (i = 0; i < FB_MAX; i++) {
1927 if (video_options[i] == NULL) {
1928 video_options[i] = options;
1929 break;
1930 }
1931
1932 }
1933 }
1934
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001935 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936}
1937__setup("video=", video_setup);
Andrew Mortonbc6d7fd2006-02-11 17:56:08 -08001938#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 /*
1941 * Visible symbols for modules
1942 */
1943
1944EXPORT_SYMBOL(register_framebuffer);
1945EXPORT_SYMBOL(unregister_framebuffer);
1946EXPORT_SYMBOL(num_registered_fb);
1947EXPORT_SYMBOL(registered_fb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948EXPORT_SYMBOL(fb_show_logo);
1949EXPORT_SYMBOL(fb_set_var);
1950EXPORT_SYMBOL(fb_blank);
1951EXPORT_SYMBOL(fb_pan_display);
1952EXPORT_SYMBOL(fb_get_buffer_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953EXPORT_SYMBOL(fb_set_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954EXPORT_SYMBOL(fb_get_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956MODULE_LICENSE("GPL");