blob: 7420d2c16e47e34f8acf94fd70f7417133e62773 [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>
Daniel Vetter6104c372017-08-01 17:32:07 +020035#include <linux/fbcon.h>
Tom Lendacky95cf9262017-07-17 16:10:26 -050036#include <linux/mem_encrypt.h>
Michał Mirosław4d189752018-09-01 16:08:45 +020037#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Antonino A. Daplas10eb2652007-07-17 04:05:27 -070039#include <asm/fb.h>
40
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 /*
43 * Frame buffer device initialization and setup routines
44 */
45
46#define FBPIXMAPSIZE (1024 * 8)
47
Linus Torvalds698b3682011-05-11 14:49:36 -070048static DEFINE_MUTEX(registration_lock);
Daniel Mack9c29fba2013-08-15 16:12:55 +020049
Helge Deller0128bee2006-12-08 02:40:29 -080050struct fb_info *registered_fb[FB_MAX] __read_mostly;
Daniel Mack9c29fba2013-08-15 16:12:55 +020051EXPORT_SYMBOL(registered_fb);
52
Helge Deller0128bee2006-12-08 02:40:29 -080053int num_registered_fb __read_mostly;
Daniel Mack9c29fba2013-08-15 16:12:55 +020054EXPORT_SYMBOL(num_registered_fb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Peter Rosin890d14d2019-01-16 17:42:35 +010056bool fb_center_logo __read_mostly;
Peter Rosin890d14d2019-01-16 17:42:35 +010057
Peter Rosin691f50a2019-08-27 11:09:21 +000058int fb_logo_count __read_mostly = -1;
59
Linus Torvalds698b3682011-05-11 14:49:36 -070060static struct fb_info *get_fb_info(unsigned int idx)
61{
62 struct fb_info *fb_info;
63
64 if (idx >= FB_MAX)
65 return ERR_PTR(-ENODEV);
66
67 mutex_lock(&registration_lock);
68 fb_info = registered_fb[idx];
69 if (fb_info)
Xiyu Yang0189cb572021-07-19 13:59:45 +080070 refcount_inc(&fb_info->count);
Linus Torvalds698b3682011-05-11 14:49:36 -070071 mutex_unlock(&registration_lock);
72
73 return fb_info;
74}
75
76static void put_fb_info(struct fb_info *fb_info)
77{
Xiyu Yang0189cb572021-07-19 13:59:45 +080078 if (!refcount_dec_and_test(&fb_info->count))
Linus Torvalds698b3682011-05-11 14:49:36 -070079 return;
80 if (fb_info->fbops->fb_destroy)
81 fb_info->fbops->fb_destroy(fb_info);
82}
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}
Daniel Mack9c29fba2013-08-15 16:12:55 +0200185EXPORT_SYMBOL(fb_get_buffer_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187#ifdef CONFIG_LOGO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189static inline unsigned safe_shift(unsigned d, int n)
190{
191 return n < 0 ? d >> -n : d << n;
192}
193
194static void fb_set_logocmap(struct fb_info *info,
195 const struct linux_logo *logo)
196{
197 struct fb_cmap palette_cmap;
198 u16 palette_green[16];
199 u16 palette_blue[16];
200 u16 palette_red[16];
201 int i, j, n;
202 const unsigned char *clut = logo->clut;
203
204 palette_cmap.start = 0;
205 palette_cmap.len = 16;
206 palette_cmap.red = palette_red;
207 palette_cmap.green = palette_green;
208 palette_cmap.blue = palette_blue;
209 palette_cmap.transp = NULL;
210
211 for (i = 0; i < logo->clutsize; i += n) {
212 n = logo->clutsize - i;
213 /* palette_cmap provides space for only 16 colors at once */
214 if (n > 16)
215 n = 16;
216 palette_cmap.start = 32 + i;
217 palette_cmap.len = n;
218 for (j = 0; j < n; ++j) {
219 palette_cmap.red[j] = clut[0] << 8 | clut[0];
220 palette_cmap.green[j] = clut[1] << 8 | clut[1];
221 palette_cmap.blue[j] = clut[2] << 8 | clut[2];
222 clut += 3;
223 }
224 fb_set_cmap(&palette_cmap, info);
225 }
226}
227
228static void fb_set_logo_truepalette(struct fb_info *info,
229 const struct linux_logo *logo,
230 u32 *palette)
231{
Helge Deller0128bee2006-12-08 02:40:29 -0800232 static const unsigned char mask[] = { 0,0x80,0xc0,0xe0,0xf0,0xf8,0xfc,0xfe,0xff };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 unsigned char redmask, greenmask, bluemask;
234 int redshift, greenshift, blueshift;
235 int i;
236 const unsigned char *clut = logo->clut;
237
238 /*
239 * We have to create a temporary palette since console palette is only
240 * 16 colors long.
241 */
242 /* Bug: Doesn't obey msb_right ... (who needs that?) */
243 redmask = mask[info->var.red.length < 8 ? info->var.red.length : 8];
244 greenmask = mask[info->var.green.length < 8 ? info->var.green.length : 8];
245 bluemask = mask[info->var.blue.length < 8 ? info->var.blue.length : 8];
246 redshift = info->var.red.offset - (8 - info->var.red.length);
247 greenshift = info->var.green.offset - (8 - info->var.green.length);
248 blueshift = info->var.blue.offset - (8 - info->var.blue.length);
249
250 for ( i = 0; i < logo->clutsize; i++) {
251 palette[i+32] = (safe_shift((clut[0] & redmask), redshift) |
252 safe_shift((clut[1] & greenmask), greenshift) |
253 safe_shift((clut[2] & bluemask), blueshift));
254 clut += 3;
255 }
256}
257
258static void fb_set_logo_directpalette(struct fb_info *info,
259 const struct linux_logo *logo,
260 u32 *palette)
261{
262 int redshift, greenshift, blueshift;
263 int i;
264
265 redshift = info->var.red.offset;
266 greenshift = info->var.green.offset;
267 blueshift = info->var.blue.offset;
268
Clemens Ladischcf7ee552008-11-19 15:36:10 -0800269 for (i = 32; i < 32 + logo->clutsize; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 palette[i] = i << redshift | i << greenshift | i << blueshift;
271}
272
273static void fb_set_logo(struct fb_info *info,
274 const struct linux_logo *logo, u8 *dst,
275 int depth)
276{
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700277 int i, j, k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 const u8 *src = logo->data;
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700279 u8 xor = (info->fix.visual == FB_VISUAL_MONO01) ? 0xff : 0;
280 u8 fg = 1, d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Antonino A. Daplas1692b372007-07-31 00:37:36 -0700282 switch (fb_get_color_depth(&info->var, &info->fix)) {
283 case 1:
284 fg = 1;
285 break;
286 case 2:
287 fg = 3;
288 break;
289 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 fg = 7;
Antonino A. Daplas1692b372007-07-31 00:37:36 -0700291 break;
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700294 if (info->fix.visual == FB_VISUAL_MONO01 ||
295 info->fix.visual == FB_VISUAL_MONO10)
296 fg = ~((u8) (0xfff << info->var.green.length));
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 switch (depth) {
299 case 4:
300 for (i = 0; i < logo->height; i++)
301 for (j = 0; j < logo->width; src++) {
302 *dst++ = *src >> 4;
303 j++;
304 if (j < logo->width) {
305 *dst++ = *src & 0x0f;
306 j++;
307 }
308 }
309 break;
310 case 1:
311 for (i = 0; i < logo->height; i++) {
312 for (j = 0; j < logo->width; src++) {
313 d = *src ^ xor;
David Lechner16622a82017-08-18 19:56:40 +0200314 for (k = 7; k >= 0 && j < logo->width; k--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 *dst++ = ((d >> k) & 1) ? fg : 0;
316 j++;
317 }
318 }
319 }
320 break;
321 }
322}
323
324/*
325 * Three (3) kinds of logo maps exist. linux_logo_clut224 (>16 colors),
326 * linux_logo_vga16 (16 colors) and linux_logo_mono (2 colors). Depending on
327 * the visual format and color depth of the framebuffer, the DAC, the
328 * pseudo_palette, and the logo data will be adjusted accordingly.
329 *
330 * Case 1 - linux_logo_clut224:
331 * Color exceeds the number of console colors (16), thus we set the hardware DAC
332 * using fb_set_cmap() appropriately. The "needs_cmapreset" flag will be set.
333 *
334 * For visuals that require color info from the pseudo_palette, we also construct
335 * one for temporary use. The "needs_directpalette" or "needs_truepalette" flags
336 * will be set.
337 *
338 * Case 2 - linux_logo_vga16:
339 * The number of colors just matches the console colors, thus there is no need
340 * to set the DAC or the pseudo_palette. However, the bitmap is packed, ie,
341 * each byte contains color information for two pixels (upper and lower nibble).
342 * To be consistent with fb_imageblit() usage, we therefore separate the two
343 * nibbles into separate bytes. The "depth" flag will be set to 4.
344 *
345 * Case 3 - linux_logo_mono:
346 * This is similar with Case 2. Each byte contains information for 8 pixels.
347 * We isolate each bit and expand each into a byte. The "depth" flag will
348 * be set to 1.
349 */
350static struct logo_data {
351 int depth;
352 int needs_directpalette;
353 int needs_truepalette;
354 int needs_cmapreset;
355 const struct linux_logo *logo;
Helge Deller0128bee2006-12-08 02:40:29 -0800356} fb_logo __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800358static void fb_rotate_logo_ud(const u8 *in, u8 *out, u32 width, u32 height)
359{
360 u32 size = width * height, i;
361
362 out += size - 1;
363
364 for (i = size; i--; )
365 *out-- = *in++;
366}
367
368static void fb_rotate_logo_cw(const u8 *in, u8 *out, u32 width, u32 height)
369{
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700370 int i, j, h = height - 1;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800371
372 for (i = 0; i < height; i++)
373 for (j = 0; j < width; j++)
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700374 out[height * j + h - i] = *in++;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800375}
376
377static void fb_rotate_logo_ccw(const u8 *in, u8 *out, u32 width, u32 height)
378{
379 int i, j, w = width - 1;
380
381 for (i = 0; i < height; i++)
382 for (j = 0; j < width; j++)
383 out[height * (w - j) + i] = *in++;
384}
385
386static void fb_rotate_logo(struct fb_info *info, u8 *dst,
387 struct fb_image *image, int rotate)
388{
389 u32 tmp;
390
391 if (rotate == FB_ROTATE_UD) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800392 fb_rotate_logo_ud(image->data, dst, image->width,
393 image->height);
Geert Uytterhoevenabed5d12007-05-08 00:37:57 -0700394 image->dx = info->var.xres - image->width - image->dx;
395 image->dy = info->var.yres - image->height - image->dy;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800396 } else if (rotate == FB_ROTATE_CW) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800397 fb_rotate_logo_cw(image->data, dst, image->width,
398 image->height);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800399 tmp = image->width;
400 image->width = image->height;
401 image->height = tmp;
Geert Uytterhoevenabed5d12007-05-08 00:37:57 -0700402 tmp = image->dy;
403 image->dy = image->dx;
404 image->dx = info->var.xres - image->width - tmp;
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700405 } else if (rotate == FB_ROTATE_CCW) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800406 fb_rotate_logo_ccw(image->data, dst, image->width,
407 image->height);
Antonino A. Daplasf837e6f2006-06-26 00:26:56 -0700408 tmp = image->width;
409 image->width = image->height;
410 image->height = tmp;
Geert Uytterhoevenabed5d12007-05-08 00:37:57 -0700411 tmp = image->dx;
412 image->dx = image->dy;
413 image->dy = info->var.yres - image->height - tmp;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800414 }
415
416 image->data = dst;
417}
418
419static void fb_do_show_logo(struct fb_info *info, struct fb_image *image,
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700420 int rotate, unsigned int num)
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800421{
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700422 unsigned int x;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800423
Manfred Schlaegla5399db2019-02-08 19:24:47 +0100424 if (image->width > info->var.xres || image->height > info->var.yres)
425 return;
426
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800427 if (rotate == FB_ROTATE_UR) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700428 for (x = 0;
429 x < num && image->dx + image->width <= info->var.xres;
430 x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800431 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700432 image->dx += image->width + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800433 }
434 } else if (rotate == FB_ROTATE_UD) {
Peter Rosinf75df8d2018-12-20 19:13:07 +0100435 u32 dx = image->dx;
436
437 for (x = 0; x < num && image->dx <= dx; x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800438 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700439 image->dx -= image->width + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800440 }
441 } else if (rotate == FB_ROTATE_CW) {
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700442 for (x = 0;
443 x < num && image->dy + image->height <= info->var.yres;
444 x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800445 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700446 image->dy += image->height + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800447 }
448 } else if (rotate == FB_ROTATE_CCW) {
Peter Rosinf75df8d2018-12-20 19:13:07 +0100449 u32 dy = image->dy;
450
451 for (x = 0; x < num && image->dy <= dy; x++) {
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800452 info->fbops->fb_imageblit(info, image);
Geert Uytterhoeven448d4792007-05-08 00:37:56 -0700453 image->dy -= image->height + 8;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800454 }
455 }
456}
457
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700458static int fb_show_logo_line(struct fb_info *info, int rotate,
459 const struct linux_logo *logo, int y,
460 unsigned int n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 u32 *palette = NULL, *saved_pseudo_palette = NULL;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800463 unsigned char *logo_new = NULL, *logo_rotate = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 struct fb_image image;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 /* Return if the frame buffer is not mapped or suspended */
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700467 if (logo == NULL || info->state != FBINFO_STATE_RUNNING ||
Daniel Vetter376b3ff2017-08-01 17:33:02 +0200468 info->fbops->owner)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return 0;
470
471 image.depth = 8;
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700472 image.data = logo->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 if (fb_logo.needs_cmapreset)
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700475 fb_set_logocmap(info, logo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700477 if (fb_logo.needs_truepalette ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 fb_logo.needs_directpalette) {
479 palette = kmalloc(256 * 4, GFP_KERNEL);
480 if (palette == NULL)
481 return 0;
482
483 if (fb_logo.needs_truepalette)
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700484 fb_set_logo_truepalette(info, logo, palette);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 else
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700486 fb_set_logo_directpalette(info, logo, palette);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 saved_pseudo_palette = info->pseudo_palette;
489 info->pseudo_palette = palette;
490 }
491
492 if (fb_logo.depth <= 4) {
Kees Cook6da2ec52018-06-12 13:55:00 -0700493 logo_new = kmalloc_array(logo->width, logo->height,
494 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (logo_new == NULL) {
496 kfree(palette);
497 if (saved_pseudo_palette)
498 info->pseudo_palette = saved_pseudo_palette;
499 return 0;
500 }
501 image.data = logo_new;
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700502 fb_set_logo(info, logo, logo_new, fb_logo.depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504
Peter Rosin890d14d2019-01-16 17:42:35 +0100505 if (fb_center_logo) {
Peter Rosin3d8b1932018-12-20 19:13:08 +0100506 int xres = info->var.xres;
507 int yres = info->var.yres;
508
509 if (rotate == FB_ROTATE_CW || rotate == FB_ROTATE_CCW) {
510 xres = info->var.yres;
511 yres = info->var.xres;
512 }
513
514 while (n && (n * (logo->width + 8) - 8 > xres))
515 --n;
516 image.dx = (xres - n * (logo->width + 8) - 8) / 2;
517 image.dy = y ?: (yres - logo->height) / 2;
Peter Rosin890d14d2019-01-16 17:42:35 +0100518 } else {
519 image.dx = 0;
520 image.dy = y;
Peter Rosin3d8b1932018-12-20 19:13:08 +0100521 }
Peter Rosin890d14d2019-01-16 17:42:35 +0100522
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700523 image.width = logo->width;
524 image.height = logo->height;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800526 if (rotate) {
Kees Cook6da2ec52018-06-12 13:55:00 -0700527 logo_rotate = kmalloc_array(logo->width, logo->height,
528 GFP_KERNEL);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800529 if (logo_rotate)
530 fb_rotate_logo(info, logo_rotate, &image, rotate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800532
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700533 fb_do_show_logo(info, &image, rotate, n);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 kfree(palette);
536 if (saved_pseudo_palette != NULL)
537 info->pseudo_palette = saved_pseudo_palette;
538 kfree(logo_new);
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800539 kfree(logo_rotate);
Peter Rosine41f1842018-12-20 19:13:08 +0100540 return image.dy + logo->height;
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700541}
542
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700543
544#ifdef CONFIG_FB_LOGO_EXTRA
545
546#define FB_LOGO_EX_NUM_MAX 10
547static struct logo_data_extra {
548 const struct linux_logo *logo;
549 unsigned int n;
550} fb_logo_ex[FB_LOGO_EX_NUM_MAX];
551static unsigned int fb_logo_ex_num;
552
553void fb_append_extra_logo(const struct linux_logo *logo, unsigned int n)
554{
555 if (!n || fb_logo_ex_num == FB_LOGO_EX_NUM_MAX)
556 return;
557
558 fb_logo_ex[fb_logo_ex_num].logo = logo;
559 fb_logo_ex[fb_logo_ex_num].n = n;
560 fb_logo_ex_num++;
561}
562
563static int fb_prepare_extra_logos(struct fb_info *info, unsigned int height,
564 unsigned int yres)
565{
566 unsigned int i;
567
568 /* FIXME: logo_ex supports only truecolor fb. */
569 if (info->fix.visual != FB_VISUAL_TRUECOLOR)
570 fb_logo_ex_num = 0;
571
572 for (i = 0; i < fb_logo_ex_num; i++) {
Geert Uytterhoeven4fb6de22009-01-06 14:42:37 -0800573 if (fb_logo_ex[i].logo->type != fb_logo.logo->type) {
574 fb_logo_ex[i].logo = NULL;
575 continue;
576 }
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700577 height += fb_logo_ex[i].logo->height;
578 if (height > yres) {
579 height -= fb_logo_ex[i].logo->height;
580 fb_logo_ex_num = i;
581 break;
582 }
583 }
584 return height;
585}
586
587static int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
588{
589 unsigned int i;
590
591 for (i = 0; i < fb_logo_ex_num; i++)
Peter Rosine41f1842018-12-20 19:13:08 +0100592 y = fb_show_logo_line(info, rotate,
593 fb_logo_ex[i].logo, y, fb_logo_ex[i].n);
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700594
595 return y;
596}
597
598#else /* !CONFIG_FB_LOGO_EXTRA */
599
600static inline int fb_prepare_extra_logos(struct fb_info *info,
601 unsigned int height,
602 unsigned int yres)
603{
604 return height;
605}
606
607static inline int fb_show_extra_logos(struct fb_info *info, int y, int rotate)
608{
609 return y;
610}
611
612#endif /* CONFIG_FB_LOGO_EXTRA */
613
614
615int fb_prepare_logo(struct fb_info *info, int rotate)
616{
617 int depth = fb_get_color_depth(&info->var, &info->fix);
618 unsigned int yres;
Peter Rosin3d8b1932018-12-20 19:13:08 +0100619 int height;
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700620
621 memset(&fb_logo, 0, sizeof(struct logo_data));
622
623 if (info->flags & FBINFO_MISC_TILEBLITTING ||
Peter Rosin691f50a2019-08-27 11:09:21 +0000624 info->fbops->owner || !fb_logo_count)
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700625 return 0;
626
627 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR) {
628 depth = info->var.blue.length;
629 if (info->var.red.length < depth)
630 depth = info->var.red.length;
631 if (info->var.green.length < depth)
632 depth = info->var.green.length;
633 }
634
635 if (info->fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR && depth > 4) {
636 /* assume console colormap */
637 depth = 4;
638 }
639
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700640 /* Return if no suitable logo was found */
641 fb_logo.logo = fb_find_logo(depth);
642
643 if (!fb_logo.logo) {
644 return 0;
645 }
646
647 if (rotate == FB_ROTATE_UR || rotate == FB_ROTATE_UD)
648 yres = info->var.yres;
649 else
650 yres = info->var.xres;
651
652 if (fb_logo.logo->height > yres) {
653 fb_logo.logo = NULL;
654 return 0;
655 }
656
657 /* What depth we asked for might be different from what we get */
658 if (fb_logo.logo->type == LINUX_LOGO_CLUT224)
659 fb_logo.depth = 8;
660 else if (fb_logo.logo->type == LINUX_LOGO_VGA16)
661 fb_logo.depth = 4;
662 else
663 fb_logo.depth = 1;
664
Antonino A. Daplas1692b372007-07-31 00:37:36 -0700665
Nathan Chancellor93166f52019-12-17 20:00:25 -0700666 if (fb_logo.depth > 4 && depth > 4) {
667 switch (info->fix.visual) {
668 case FB_VISUAL_TRUECOLOR:
669 fb_logo.needs_truepalette = 1;
670 break;
671 case FB_VISUAL_DIRECTCOLOR:
672 fb_logo.needs_directpalette = 1;
673 fb_logo.needs_cmapreset = 1;
674 break;
675 case FB_VISUAL_PSEUDOCOLOR:
676 fb_logo.needs_cmapreset = 1;
677 break;
678 }
679 }
Antonino A. Daplas1692b372007-07-31 00:37:36 -0700680
Peter Rosin3d8b1932018-12-20 19:13:08 +0100681 height = fb_logo.logo->height;
Peter Rosin890d14d2019-01-16 17:42:35 +0100682 if (fb_center_logo)
683 height += (yres - fb_logo.logo->height) / 2;
Peter Rosin3d8b1932018-12-20 19:13:08 +0100684
685 return fb_prepare_extra_logos(info, height, yres);
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700686}
687
Geert Uytterhoeven90da63e52007-07-17 04:05:50 -0700688int fb_show_logo(struct fb_info *info, int rotate)
689{
Peter Rosin691f50a2019-08-27 11:09:21 +0000690 unsigned int count;
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700691 int y;
692
Peter Rosin691f50a2019-08-27 11:09:21 +0000693 if (!fb_logo_count)
694 return 0;
695
696 count = fb_logo_count < 0 ? num_online_cpus() : fb_logo_count;
697 y = fb_show_logo_line(info, rotate, fb_logo.logo, 0, count);
Geert Uytterhoeven9900abf2007-07-17 04:05:50 -0700698 y = fb_show_extra_logos(info, y, rotate);
699
700 return y;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702#else
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800703int fb_prepare_logo(struct fb_info *info, int rotate) { return 0; }
704int fb_show_logo(struct fb_info *info, int rotate) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705#endif /* CONFIG_LOGO */
Arnd Bergmann23e51f82014-04-24 13:28:22 +0100706EXPORT_SYMBOL(fb_prepare_logo);
Daniel Mack9c29fba2013-08-15 16:12:55 +0200707EXPORT_SYMBOL(fb_show_logo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700709static void *fb_seq_start(struct seq_file *m, loff_t *pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Linus Torvalds698b3682011-05-11 14:49:36 -0700711 mutex_lock(&registration_lock);
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700712 return (*pos < FB_MAX) ? pos : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700715static void *fb_seq_next(struct seq_file *m, void *v, loff_t *pos)
716{
717 (*pos)++;
718 return (*pos < FB_MAX) ? pos : NULL;
719}
720
721static void fb_seq_stop(struct seq_file *m, void *v)
722{
Linus Torvalds698b3682011-05-11 14:49:36 -0700723 mutex_unlock(&registration_lock);
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700724}
725
726static int fb_seq_show(struct seq_file *m, void *v)
727{
728 int i = *(loff_t *)v;
729 struct fb_info *fi = registered_fb[i];
730
731 if (fi)
732 seq_printf(m, "%d %s\n", fi->node, fi->fix.id);
733 return 0;
734}
735
Linus Torvalds6dae40a2021-05-09 14:03:33 -0700736static const struct seq_operations __maybe_unused proc_fb_seq_ops = {
Alexey Dobriyan0aa16342008-04-28 02:15:42 -0700737 .start = fb_seq_start,
738 .next = fb_seq_next,
739 .stop = fb_seq_stop,
740 .show = fb_seq_show,
741};
742
Linus Torvaldsc47747f2011-05-11 14:58:34 -0700743/*
744 * We hold a reference to the fb_info in file->private_data,
745 * but if the current registered fb has changed, we don't
746 * actually want to use it.
747 *
748 * So look up the fb_info using the inode minor number,
749 * and just verify it against the reference we have.
750 */
751static struct fb_info *file_fb_info(struct file *file)
752{
Al Viro496ad9a2013-01-23 17:07:38 -0500753 struct inode *inode = file_inode(file);
Linus Torvaldsc47747f2011-05-11 14:58:34 -0700754 int fbidx = iminor(inode);
755 struct fb_info *info = registered_fb[fbidx];
756
757 if (info != file->private_data)
758 info = NULL;
759 return info;
760}
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762static ssize_t
763fb_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
764{
765 unsigned long p = *ppos;
Linus Torvaldsc47747f2011-05-11 14:58:34 -0700766 struct fb_info *info = file_fb_info(file);
James Hoganf11b4782010-10-27 15:33:28 -0700767 u8 *buffer, *dst;
768 u8 __iomem *src;
769 int c, cnt = 0, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 unsigned long total_size;
771
772 if (!info || ! info->screen_base)
773 return -ENODEV;
774
775 if (info->state != FBINFO_STATE_RUNNING)
776 return -EPERM;
777
778 if (info->fbops->fb_read)
Antonino A. Daplas3f9b0882007-05-08 00:39:02 -0700779 return info->fbops->fb_read(info, buf, count, ppos);
Thomas Zimmermann2d05f562020-07-29 15:41:44 +0200780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 total_size = info->screen_size;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (total_size == 0)
784 total_size = info->fix.smem_len;
785
786 if (p >= total_size)
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800787 return 0;
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (count >= total_size)
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800790 count = total_size;
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (count + p > total_size)
793 count = total_size - p;
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
796 GFP_KERNEL);
797 if (!buffer)
798 return -ENOMEM;
799
James Hoganf11b4782010-10-27 15:33:28 -0700800 src = (u8 __iomem *) (info->screen_base + p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 if (info->fbops->fb_sync)
803 info->fbops->fb_sync(info);
804
805 while (count) {
806 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
807 dst = buffer;
James Hoganf11b4782010-10-27 15:33:28 -0700808 fb_memcpy_fromfb(dst, src, c);
809 dst += c;
810 src += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 if (copy_to_user(buf, buffer, c)) {
813 err = -EFAULT;
814 break;
815 }
816 *ppos += c;
817 buf += c;
818 cnt += c;
819 count -= c;
820 }
821
822 kfree(buffer);
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return (err) ? err : cnt;
825}
826
827static ssize_t
828fb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
829{
830 unsigned long p = *ppos;
Linus Torvaldsc47747f2011-05-11 14:58:34 -0700831 struct fb_info *info = file_fb_info(file);
James Hoganf11b4782010-10-27 15:33:28 -0700832 u8 *buffer, *src;
833 u8 __iomem *dst;
834 int c, cnt = 0, err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 unsigned long total_size;
836
837 if (!info || !info->screen_base)
838 return -ENODEV;
839
840 if (info->state != FBINFO_STATE_RUNNING)
841 return -EPERM;
842
843 if (info->fbops->fb_write)
Antonino A. Daplas3f9b0882007-05-08 00:39:02 -0700844 return info->fbops->fb_write(info, buf, count, ppos);
Thomas Zimmermann2d05f562020-07-29 15:41:44 +0200845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 total_size = info->screen_size;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (total_size == 0)
849 total_size = info->fix.smem_len;
850
851 if (p > total_size)
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700852 return -EFBIG;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800853
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700854 if (count > total_size) {
855 err = -EFBIG;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800856 count = total_size;
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700857 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800858
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700859 if (count + p > total_size) {
860 if (!err)
861 err = -ENOSPC;
862
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800863 count = total_size - p;
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700864 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 buffer = kmalloc((count > PAGE_SIZE) ? PAGE_SIZE : count,
867 GFP_KERNEL);
868 if (!buffer)
869 return -ENOMEM;
870
James Hoganf11b4782010-10-27 15:33:28 -0700871 dst = (u8 __iomem *) (info->screen_base + p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 if (info->fbops->fb_sync)
874 info->fbops->fb_sync(info);
875
876 while (count) {
877 c = (count > PAGE_SIZE) ? PAGE_SIZE : count;
878 src = buffer;
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (copy_from_user(src, buf, c)) {
881 err = -EFAULT;
882 break;
883 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800884
James Hoganf11b4782010-10-27 15:33:28 -0700885 fb_memcpy_tofb(dst, src, c);
886 dst += c;
887 src += c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 *ppos += c;
889 buf += c;
890 cnt += c;
891 count -= c;
892 }
Antonino A. Daplas0a484a32006-01-09 20:53:37 -0800893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 kfree(buffer);
895
Antonino A. Daplas6a2a8862006-04-18 22:22:12 -0700896 return (cnt) ? cnt : err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899int
900fb_pan_display(struct fb_info *info, struct fb_var_screeninfo *var)
901{
Antonino A. Daplas12070692005-12-12 22:17:17 -0800902 struct fb_fix_screeninfo *fix = &info->fix;
Ville Syrjala7572a1e2008-07-23 21:31:28 -0700903 unsigned int yres = info->var.yres;
904 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Antonino A. Daplas12070692005-12-12 22:17:17 -0800906 if (var->yoffset > 0) {
907 if (var->vmode & FB_VMODE_YWRAP) {
908 if (!fix->ywrapstep || (var->yoffset % fix->ywrapstep))
909 err = -EINVAL;
910 else
911 yres = 0;
912 } else if (!fix->ypanstep || (var->yoffset % fix->ypanstep))
913 err = -EINVAL;
914 }
915
916 if (var->xoffset > 0 && (!fix->xpanstep ||
917 (var->xoffset % fix->xpanstep)))
918 err = -EINVAL;
919
Ville Syrjala7572a1e2008-07-23 21:31:28 -0700920 if (err || !info->fbops->fb_pan_display ||
Florian Tobias Schandinat99e9e7d2009-09-22 16:47:41 -0700921 var->yoffset > info->var.yres_virtual - yres ||
922 var->xoffset > info->var.xres_virtual - info->var.xres)
Antonino A. Daplas12070692005-12-12 22:17:17 -0800923 return -EINVAL;
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if ((err = info->fbops->fb_pan_display(var, info)))
926 return err;
James Hoganc9c62dc2010-10-27 15:33:27 -0700927 info->var.xoffset = var->xoffset;
928 info->var.yoffset = var->yoffset;
929 if (var->vmode & FB_VMODE_YWRAP)
930 info->var.vmode |= FB_VMODE_YWRAP;
931 else
932 info->var.vmode &= ~FB_VMODE_YWRAP;
933 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
Daniel Mack9c29fba2013-08-15 16:12:55 +0200935EXPORT_SYMBOL(fb_pan_display);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700937static int fb_check_caps(struct fb_info *info, struct fb_var_screeninfo *var,
938 u32 activate)
939{
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700940 struct fb_blit_caps caps, fbcaps;
941 int err = 0;
942
943 memset(&caps, 0, sizeof(caps));
944 memset(&fbcaps, 0, sizeof(fbcaps));
945 caps.flags = (activate & FB_ACTIVATE_ALL) ? 1 : 0;
Daniel Vetter0526c222019-05-28 11:02:54 +0200946 fbcon_get_requirement(info, &caps);
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -0700947 info->fbops->fb_get_caps(info, &fbcaps, var);
948
949 if (((fbcaps.x ^ caps.x) & caps.x) ||
950 ((fbcaps.y ^ caps.y) & caps.y) ||
951 (fbcaps.len < caps.len))
952 err = -EINVAL;
953
954 return err;
955}
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957int
958fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var)
959{
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700960 int ret = 0;
Daniel Vetterc428f352019-05-28 11:02:58 +0200961 u32 activate;
962 struct fb_var_screeninfo old_var;
963 struct fb_videomode mode;
Daniel Vetter9e146702019-05-28 11:02:59 +0200964 struct fb_event event;
Tetsuo Handa8c28051c2021-09-08 19:27:49 +0900965 u32 unused;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 if (var->activate & FB_ACTIVATE_INV_MODE) {
968 struct fb_videomode mode1, mode2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 fb_var_to_videomode(&mode1, var);
971 fb_var_to_videomode(&mode2, &info->var);
972 /* make sure we don't delete the videomode of current var */
973 ret = fb_mode_is_equal(&mode1, &mode2);
Zhen Lei0af77822021-07-12 16:55:44 +0800974 if (!ret) {
975 ret = fbcon_mode_deleted(info, &mode1);
976 if (!ret)
977 fb_delete_videomode(&mode1, &info->modelist);
978 }
Antonino A. Daplasb1e72232007-05-08 00:39:52 -0700979
Daniel Vetterc428f352019-05-28 11:02:58 +0200980 return ret ? -EINVAL : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
982
Daniel Vetterc428f352019-05-28 11:02:58 +0200983 if (!(var->activate & FB_ACTIVATE_FORCE) &&
984 !memcmp(&info->var, var, sizeof(struct fb_var_screeninfo)))
985 return 0;
Antonino A. Daplas4941cb72007-05-08 00:39:22 -0700986
Daniel Vetterc428f352019-05-28 11:02:58 +0200987 activate = var->activate;
Laurent Pinchartfb21c2f2011-12-13 14:02:26 +0100988
Daniel Vetterc428f352019-05-28 11:02:58 +0200989 /* When using FOURCC mode, make sure the red, green, blue and
990 * transp fields are set to 0.
991 */
992 if ((info->fix.capabilities & FB_CAP_FOURCC) &&
993 var->grayscale > 1) {
994 if (var->red.offset || var->green.offset ||
995 var->blue.offset || var->transp.offset ||
996 var->red.length || var->green.length ||
997 var->blue.length || var->transp.length ||
998 var->red.msb_right || var->green.msb_right ||
999 var->blue.msb_right || var->transp.msb_right)
1000 return -EINVAL;
1001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Daniel Vetterc428f352019-05-28 11:02:58 +02001003 if (!info->fbops->fb_check_var) {
1004 *var = info->var;
1005 return 0;
1006 }
1007
George Kennedya49145a2020-07-07 15:26:03 -04001008 /* bitfill_aligned() assumes that it's at least 8x8 */
1009 if (var->xres < 8 || var->yres < 8)
1010 return -EINVAL;
1011
Tetsuo Handa8c28051c2021-09-08 19:27:49 +09001012 /* Too huge resolution causes multiplication overflow. */
1013 if (check_mul_overflow(var->xres, var->yres, &unused) ||
1014 check_mul_overflow(var->xres_virtual, var->yres_virtual, &unused))
1015 return -EINVAL;
1016
Daniel Vetterc428f352019-05-28 11:02:58 +02001017 ret = info->fbops->fb_check_var(var, info);
1018
1019 if (ret)
1020 return ret;
1021
1022 if ((var->activate & FB_ACTIVATE_MASK) != FB_ACTIVATE_NOW)
1023 return 0;
1024
1025 if (info->fbops->fb_get_caps) {
1026 ret = fb_check_caps(info, var, activate);
Antonino A. Daplasb1e72232007-05-08 00:39:52 -07001027
1028 if (ret)
Daniel Vetterc428f352019-05-28 11:02:58 +02001029 return ret;
1030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Daniel Vetterc428f352019-05-28 11:02:58 +02001032 old_var = info->var;
1033 info->var = *var;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Daniel Vetterc428f352019-05-28 11:02:58 +02001035 if (info->fbops->fb_set_par) {
1036 ret = info->fbops->fb_set_par(info);
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07001037
Daniel Vetterc428f352019-05-28 11:02:58 +02001038 if (ret) {
1039 info->var = old_var;
1040 printk(KERN_WARNING "detected "
1041 "fb_set_par error, "
1042 "error code: %d\n", ret);
1043 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 }
1045 }
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07001046
Daniel Vetterc428f352019-05-28 11:02:58 +02001047 fb_pan_display(info, &info->var);
1048 fb_set_cmap(&info->cmap, info);
1049 fb_var_to_videomode(&mode, &info->var);
1050
1051 if (info->modelist.prev && info->modelist.next &&
1052 !list_empty(&info->modelist))
1053 ret = fb_add_videomode(&mode, &info->modelist);
1054
Daniel Vetter9e146702019-05-28 11:02:59 +02001055 if (ret)
1056 return ret;
Daniel Vetterc428f352019-05-28 11:02:58 +02001057
Daniel Vetter9e146702019-05-28 11:02:59 +02001058 event.info = info;
1059 event.data = &mode;
1060 fb_notifier_call_chain(FB_EVENT_MODE_CHANGE, &event);
Daniel Vetterc428f352019-05-28 11:02:58 +02001061
Daniel Vetter9e146702019-05-28 11:02:59 +02001062 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
Daniel Mack9c29fba2013-08-15 16:12:55 +02001064EXPORT_SYMBOL(fb_set_var);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066int
1067fb_blank(struct fb_info *info, int blank)
Thomas Zimmermann2d05f562020-07-29 15:41:44 +02001068{
Inki Daebf059292012-05-29 15:07:12 -07001069 struct fb_event event;
Sam Ravnborge7642f32019-07-25 16:32:24 +02001070 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Nathan Chancellor93166f52019-12-17 20:00:25 -07001072 if (blank > FB_BLANK_POWERDOWN)
1073 blank = FB_BLANK_POWERDOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Inki Daebf059292012-05-29 15:07:12 -07001075 event.info = info;
1076 event.data = &blank;
1077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (info->fbops->fb_blank)
Nathan Chancellor93166f52019-12-17 20:00:25 -07001079 ret = info->fbops->fb_blank(blank, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Inki Daebf059292012-05-29 15:07:12 -07001081 if (!ret)
Antonino A. Daplas256154f2006-07-30 03:04:17 -07001082 fb_notifier_call_chain(FB_EVENT_BLANK, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Nathan Chancellor93166f52019-12-17 20:00:25 -07001084 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
Daniel Mack9c29fba2013-08-15 16:12:55 +02001086EXPORT_SYMBOL(fb_blank);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001088static long do_fb_ioctl(struct fb_info *info, unsigned int cmd,
1089 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Jani Nikulaf23c57e2019-11-29 12:29:36 +02001091 const struct fb_ops *fb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 struct fb_var_screeninfo var;
1093 struct fb_fix_screeninfo fix;
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001094 struct fb_cmap cmap_from;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 struct fb_cmap_user cmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 void __user *argp = (void __user *)arg;
Alan Coxe5367712008-10-18 20:27:51 -07001097 long ret = 0;
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 switch (cmd) {
1100 case FBIOGET_VSCREENINFO:
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001101 lock_fb_info(info);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001102 var = info->var;
1103 unlock_fb_info(info);
1104
1105 ret = copy_to_user(argp, &var, sizeof(var)) ? -EFAULT : 0;
Alan Coxe5367712008-10-18 20:27:51 -07001106 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 case FBIOPUT_VSCREENINFO:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001108 if (copy_from_user(&var, argp, sizeof(var)))
1109 return -EFAULT;
Torben Hohnac751ef2011-01-25 15:07:35 -08001110 console_lock();
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001111 lock_fb_info(info);
Alan Coxe5367712008-10-18 20:27:51 -07001112 ret = fb_set_var(info, &var);
Tetsuo Handad88ca7e2020-07-30 19:47:14 +09001113 if (!ret)
1114 fbcon_update_vcs(info, var.activate & FB_ACTIVATE_ALL);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001115 unlock_fb_info(info);
Gu Zheng3a41c5d2013-11-05 18:00:57 +08001116 console_unlock();
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001117 if (!ret && copy_to_user(argp, &var, sizeof(var)))
Alan Coxe5367712008-10-18 20:27:51 -07001118 ret = -EFAULT;
1119 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 case FBIOGET_FSCREENINFO:
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001121 lock_fb_info(info);
Dan Carpenterd3d19d62020-01-13 14:08:14 +03001122 memcpy(&fix, &info->fix, sizeof(fix));
Daniel Vetterda6c7702018-08-22 10:54:04 +02001123 if (info->flags & FBINFO_HIDE_SMEM_START)
1124 fix.smem_start = 0;
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001125 unlock_fb_info(info);
1126
1127 ret = copy_to_user(argp, &fix, sizeof(fix)) ? -EFAULT : 0;
Alan Coxe5367712008-10-18 20:27:51 -07001128 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 case FBIOPUTCMAP:
1130 if (copy_from_user(&cmap, argp, sizeof(cmap)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001131 return -EFAULT;
1132 ret = fb_set_user_cmap(&cmap, info);
Alan Coxe5367712008-10-18 20:27:51 -07001133 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 case FBIOGETCMAP:
1135 if (copy_from_user(&cmap, argp, sizeof(cmap)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001136 return -EFAULT;
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001137 lock_fb_info(info);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001138 cmap_from = info->cmap;
1139 unlock_fb_info(info);
1140 ret = fb_cmap_to_user(&cmap_from, &cmap);
Alan Coxe5367712008-10-18 20:27:51 -07001141 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 case FBIOPAN_DISPLAY:
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001143 if (copy_from_user(&var, argp, sizeof(var)))
1144 return -EFAULT;
Torben Hohnac751ef2011-01-25 15:07:35 -08001145 console_lock();
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001146 lock_fb_info(info);
Alan Coxe5367712008-10-18 20:27:51 -07001147 ret = fb_pan_display(info, &var);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001148 unlock_fb_info(info);
Gu Zheng3a41c5d2013-11-05 18:00:57 +08001149 console_unlock();
Alan Coxe5367712008-10-18 20:27:51 -07001150 if (ret == 0 && copy_to_user(argp, &var, sizeof(var)))
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001151 return -EFAULT;
Alan Coxe5367712008-10-18 20:27:51 -07001152 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 case FBIO_CURSOR:
Alan Coxe5367712008-10-18 20:27:51 -07001154 ret = -EINVAL;
1155 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 case FBIOGET_CON2FBMAP:
Daniel Vetterfe2d70d2019-05-28 11:03:01 +02001157 ret = fbcon_get_con2fb_map_ioctl(argp);
Alan Coxe5367712008-10-18 20:27:51 -07001158 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 case FBIOPUT_CON2FBMAP:
Daniel Vetterfe2d70d2019-05-28 11:03:01 +02001160 ret = fbcon_set_con2fb_map_ioctl(argp);
Alan Coxe5367712008-10-18 20:27:51 -07001161 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 case FBIOBLANK:
Torben Hohnac751ef2011-01-25 15:07:35 -08001163 console_lock();
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001164 lock_fb_info(info);
Alan Coxe5367712008-10-18 20:27:51 -07001165 ret = fb_blank(info, arg);
Daniel Vetterde29ae52019-05-28 11:02:56 +02001166 /* might again call into fb_blank */
1167 fbcon_fb_blanked(info, arg);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001168 unlock_fb_info(info);
Gu Zheng3a41c5d2013-11-05 18:00:57 +08001169 console_unlock();
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001170 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 default:
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001172 lock_fb_info(info);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001173 fb = info->fbops;
1174 if (fb->fb_ioctl)
Alan Coxe5367712008-10-18 20:27:51 -07001175 ret = fb->fb_ioctl(info, cmd, arg);
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001176 else
1177 ret = -ENOTTY;
1178 unlock_fb_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001180 return ret;
1181}
1182
1183static long fb_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001184{
Linus Torvaldsc47747f2011-05-11 14:58:34 -07001185 struct fb_info *info = file_fb_info(file);
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001186
Linus Torvaldsc47747f2011-05-11 14:58:34 -07001187 if (!info)
1188 return -ENODEV;
Andrea Righi1f5e31d2009-02-04 15:12:03 -08001189 return do_fb_ioctl(info, cmd, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
1192#ifdef CONFIG_COMPAT
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001193struct fb_fix_screeninfo32 {
1194 char id[16];
1195 compat_caddr_t smem_start;
1196 u32 smem_len;
1197 u32 type;
1198 u32 type_aux;
1199 u32 visual;
1200 u16 xpanstep;
1201 u16 ypanstep;
1202 u16 ywrapstep;
1203 u32 line_length;
1204 compat_caddr_t mmio_start;
1205 u32 mmio_len;
1206 u32 accel;
1207 u16 reserved[3];
1208};
1209
1210struct fb_cmap32 {
1211 u32 start;
1212 u32 len;
1213 compat_caddr_t red;
1214 compat_caddr_t green;
1215 compat_caddr_t blue;
1216 compat_caddr_t transp;
1217};
1218
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001219static int fb_getput_cmap(struct fb_info *info, unsigned int cmd,
1220 unsigned long arg)
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001221{
Arnd Bergmann06f42772020-09-18 12:09:04 +02001222 struct fb_cmap32 cmap32;
1223 struct fb_cmap cmap_from;
1224 struct fb_cmap_user cmap;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001225
Arnd Bergmann06f42772020-09-18 12:09:04 +02001226 if (copy_from_user(&cmap32, compat_ptr(arg), sizeof(cmap32)))
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001227 return -EFAULT;
1228
Arnd Bergmann06f42772020-09-18 12:09:04 +02001229 cmap = (struct fb_cmap_user) {
1230 .start = cmap32.start,
1231 .len = cmap32.len,
1232 .red = compat_ptr(cmap32.red),
1233 .green = compat_ptr(cmap32.green),
1234 .blue = compat_ptr(cmap32.blue),
1235 .transp = compat_ptr(cmap32.transp),
1236 };
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001237
Arnd Bergmann06f42772020-09-18 12:09:04 +02001238 if (cmd == FBIOPUTCMAP)
1239 return fb_set_user_cmap(&cmap, info);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001240
Arnd Bergmann06f42772020-09-18 12:09:04 +02001241 lock_fb_info(info);
1242 cmap_from = info->cmap;
1243 unlock_fb_info(info);
1244
1245 return fb_cmap_to_user(&cmap_from, &cmap);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001246}
1247
1248static int do_fscreeninfo_to_user(struct fb_fix_screeninfo *fix,
1249 struct fb_fix_screeninfo32 __user *fix32)
1250{
1251 __u32 data;
1252 int err;
1253
1254 err = copy_to_user(&fix32->id, &fix->id, sizeof(fix32->id));
1255
1256 data = (__u32) (unsigned long) fix->smem_start;
1257 err |= put_user(data, &fix32->smem_start);
1258
1259 err |= put_user(fix->smem_len, &fix32->smem_len);
1260 err |= put_user(fix->type, &fix32->type);
1261 err |= put_user(fix->type_aux, &fix32->type_aux);
1262 err |= put_user(fix->visual, &fix32->visual);
1263 err |= put_user(fix->xpanstep, &fix32->xpanstep);
1264 err |= put_user(fix->ypanstep, &fix32->ypanstep);
1265 err |= put_user(fix->ywrapstep, &fix32->ywrapstep);
1266 err |= put_user(fix->line_length, &fix32->line_length);
1267
1268 data = (__u32) (unsigned long) fix->mmio_start;
1269 err |= put_user(data, &fix32->mmio_start);
1270
1271 err |= put_user(fix->mmio_len, &fix32->mmio_len);
1272 err |= put_user(fix->accel, &fix32->accel);
1273 err |= copy_to_user(fix32->reserved, fix->reserved,
1274 sizeof(fix->reserved));
1275
Dan Carpenter2c30aba2013-06-18 10:05:29 +03001276 if (err)
1277 return -EFAULT;
1278 return 0;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001279}
1280
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001281static int fb_get_fscreeninfo(struct fb_info *info, unsigned int cmd,
1282 unsigned long arg)
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001283{
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001284 struct fb_fix_screeninfo fix;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001285
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001286 lock_fb_info(info);
Al Viro9a469032017-05-26 23:51:09 -04001287 fix = info->fix;
Daniel Vetterda6c7702018-08-22 10:54:04 +02001288 if (info->flags & FBINFO_HIDE_SMEM_START)
1289 fix.smem_start = 0;
Al Viro9a469032017-05-26 23:51:09 -04001290 unlock_fb_info(info);
1291 return do_fscreeninfo_to_user(&fix, compat_ptr(arg));
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001292}
1293
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001294static long fb_compat_ioctl(struct file *file, unsigned int cmd,
1295 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
Linus Torvaldsc47747f2011-05-11 14:58:34 -07001297 struct fb_info *info = file_fb_info(file);
Jani Nikulaf23c57e2019-11-29 12:29:36 +02001298 const struct fb_ops *fb;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001299 long ret = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Linus Torvaldsc47747f2011-05-11 14:58:34 -07001301 if (!info)
1302 return -ENODEV;
1303 fb = info->fbops;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001304 switch(cmd) {
1305 case FBIOGET_VSCREENINFO:
1306 case FBIOPUT_VSCREENINFO:
1307 case FBIOPAN_DISPLAY:
1308 case FBIOGET_CON2FBMAP:
1309 case FBIOPUT_CON2FBMAP:
1310 arg = (unsigned long) compat_ptr(arg);
Gustavo A. R. Silvaad04fae2020-07-07 16:05:39 -05001311 fallthrough;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001312 case FBIOBLANK:
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001313 ret = do_fb_ioctl(info, cmd, arg);
1314 break;
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001315
1316 case FBIOGET_FSCREENINFO:
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001317 ret = fb_get_fscreeninfo(info, cmd, arg);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001318 break;
1319
1320 case FBIOGETCMAP:
1321 case FBIOPUTCMAP:
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001322 ret = fb_getput_cmap(info, cmd, arg);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001323 break;
1324
1325 default:
1326 if (fb->fb_compat_ioctl)
Christoph Hellwig67a66802006-01-14 13:21:25 -08001327 ret = fb->fb_compat_ioctl(info, cmd, arg);
Arnd Bergmannc7f82d92005-11-08 21:39:19 -08001328 break;
1329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 return ret;
1331}
1332#endif
1333
Antonino A. Daplas10eb2652007-07-17 04:05:27 -07001334static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335fb_mmap(struct file *file, struct vm_area_struct * vma)
1336{
Linus Torvaldsc47747f2011-05-11 14:58:34 -07001337 struct fb_info *info = file_fb_info(file);
Jani Nikula12281c82019-11-29 12:29:31 +02001338 int (*fb_mmap_fn)(struct fb_info *info, struct vm_area_struct *vma);
Linus Torvaldsfc9bbca2013-04-19 09:57:35 -07001339 unsigned long mmio_pgoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 unsigned long start;
1341 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Linus Torvaldsc47747f2011-05-11 14:58:34 -07001343 if (!info)
1344 return -ENODEV;
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001345 mutex_lock(&info->mm_lock);
Jani Nikula12281c82019-11-29 12:29:31 +02001346
1347 fb_mmap_fn = info->fbops->fb_mmap;
1348
1349#if IS_ENABLED(CONFIG_FB_DEFERRED_IO)
1350 if (info->fbdefio)
1351 fb_mmap_fn = fb_deferred_io_mmap;
1352#endif
1353
1354 if (fb_mmap_fn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 int res;
Tom Lendacky95cf9262017-07-17 16:10:26 -05001356
1357 /*
1358 * The framebuffer needs to be accessed decrypted, be sure
1359 * SME protection is removed ahead of the call
1360 */
1361 vma->vm_page_prot = pgprot_decrypted(vma->vm_page_prot);
Jani Nikula12281c82019-11-29 12:29:31 +02001362 res = fb_mmap_fn(info, vma);
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001363 mutex_unlock(&info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return res;
1365 }
1366
Linus Torvaldsfc9bbca2013-04-19 09:57:35 -07001367 /*
1368 * Ugh. This can be either the frame buffer mapping, or
1369 * if pgoff points past it, the mmio mapping.
1370 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 start = info->fix.smem_start;
Linus Torvaldsfc9bbca2013-04-19 09:57:35 -07001372 len = info->fix.smem_len;
1373 mmio_pgoff = PAGE_ALIGN((start & ~PAGE_MASK) + len) >> PAGE_SHIFT;
1374 if (vma->vm_pgoff >= mmio_pgoff) {
Tomi Valkeinen138f2962013-04-24 08:35:20 +03001375 if (info->var.accel_flags) {
1376 mutex_unlock(&info->mm_lock);
1377 return -EINVAL;
1378 }
1379
Linus Torvaldsfc9bbca2013-04-19 09:57:35 -07001380 vma->vm_pgoff -= mmio_pgoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 start = info->fix.mmio_start;
Linus Torvaldsfc9bbca2013-04-19 09:57:35 -07001382 len = info->fix.mmio_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
Krzysztof Helt537a1bf2009-06-30 11:41:29 -07001384 mutex_unlock(&info->mm_lock);
Linus Torvaldsfc9bbca2013-04-19 09:57:35 -07001385
Daniel De Graafc07fbfd2010-08-10 18:02:45 -07001386 vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
Linus Torvaldsfc9bbca2013-04-19 09:57:35 -07001387 fb_pgprotect(file, vma, start);
1388
1389 return vm_iomap_memory(vma, start, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
1392static int
1393fb_open(struct inode *inode, struct file *file)
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001394__acquires(&info->lock)
1395__releases(&info->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
1397 int fbidx = iminor(inode);
1398 struct fb_info *info;
1399 int res = 0;
1400
Linus Torvalds698b3682011-05-11 14:49:36 -07001401 info = get_fb_info(fbidx);
1402 if (!info) {
Johannes Berga65e5d72008-07-09 10:28:38 +02001403 request_module("fb%d", fbidx);
Linus Torvalds698b3682011-05-11 14:49:36 -07001404 info = get_fb_info(fbidx);
1405 if (!info)
1406 return -ENODEV;
1407 }
1408 if (IS_ERR(info))
1409 return PTR_ERR(info);
1410
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001411 lock_fb_info(info);
Jonathan Corbetfc7f6872008-05-15 16:30:36 -06001412 if (!try_module_get(info->fbops->owner)) {
1413 res = -ENODEV;
1414 goto out;
1415 }
Thomas Koellercae8a122006-01-09 20:53:48 -08001416 file->private_data = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 if (info->fbops->fb_open) {
1418 res = info->fbops->fb_open(info,1);
1419 if (res)
1420 module_put(info->fbops->owner);
1421 }
Matthew Wilcox0b78f8b2021-06-01 15:30:30 +01001422#ifdef CONFIG_FB_DEFERRED_IO
1423 if (info->fbdefio)
1424 fb_deferred_io_open(info, inode, file);
1425#endif
Jonathan Corbetfc7f6872008-05-15 16:30:36 -06001426out:
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001427 unlock_fb_info(info);
Linus Torvalds698b3682011-05-11 14:49:36 -07001428 if (res)
1429 put_fb_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 return res;
1431}
1432
Thomas Zimmermann2d05f562020-07-29 15:41:44 +02001433static int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434fb_release(struct inode *inode, struct file *file)
Geert Uytterhoevena684e7d2008-11-06 12:53:37 -08001435__acquires(&info->lock)
1436__releases(&info->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
Thomas Koellercae8a122006-01-09 20:53:48 -08001438 struct fb_info * const info = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001440 lock_fb_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if (info->fbops->fb_release)
1442 info->fbops->fb_release(info,1);
1443 module_put(info->fbops->owner);
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001444 unlock_fb_info(info);
Linus Torvalds698b3682011-05-11 14:49:36 -07001445 put_fb_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return 0;
1447}
1448
Benjamin Gaignard4c99ced2017-07-12 18:28:11 +02001449#if defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && !defined(CONFIG_MMU)
Benjamin Gaignard82f42e42017-01-04 10:12:55 +01001450unsigned long get_fb_unmapped_area(struct file *filp,
1451 unsigned long addr, unsigned long len,
1452 unsigned long pgoff, unsigned long flags)
1453{
1454 struct fb_info * const info = filp->private_data;
1455 unsigned long fb_size = PAGE_ALIGN(info->fix.smem_len);
1456
1457 if (pgoff > fb_size || len > fb_size - pgoff)
1458 return -EINVAL;
1459
1460 return (unsigned long)info->screen_base + pgoff;
1461}
1462#endif
1463
Helge Deller0128bee2006-12-08 02:40:29 -08001464static const struct file_operations fb_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 .owner = THIS_MODULE,
1466 .read = fb_read,
1467 .write = fb_write,
Alan Coxe5367712008-10-18 20:27:51 -07001468 .unlocked_ioctl = fb_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469#ifdef CONFIG_COMPAT
1470 .compat_ioctl = fb_compat_ioctl,
1471#endif
1472 .mmap = fb_mmap,
1473 .open = fb_open,
1474 .release = fb_release,
Benjamin Gaignard82f42e42017-01-04 10:12:55 +01001475#if defined(HAVE_ARCH_FB_UNMAPPED_AREA) || \
Benjamin Gaignard4c99ced2017-07-12 18:28:11 +02001476 (defined(CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA) && \
1477 !defined(CONFIG_MMU))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 .get_unmapped_area = get_fb_unmapped_area,
1479#endif
Paul Mundt5e841b82007-05-08 00:37:41 -07001480#ifdef CONFIG_FB_DEFERRED_IO
1481 .fsync = fb_deferred_io_fsync,
1482#endif
Arnd Bergmann6038f372010-08-15 18:52:59 +02001483 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484};
1485
Antonino A. Daplas9a179172006-06-26 00:27:05 -07001486struct class *fb_class;
1487EXPORT_SYMBOL(fb_class);
Anton Vorontsove4c690e2008-04-28 02:14:49 -07001488
1489static int fb_check_foreignness(struct fb_info *fi)
1490{
1491 const bool foreign_endian = fi->flags & FBINFO_FOREIGN_ENDIAN;
1492
1493 fi->flags &= ~FBINFO_FOREIGN_ENDIAN;
1494
1495#ifdef __BIG_ENDIAN
1496 fi->flags |= foreign_endian ? 0 : FBINFO_BE_MATH;
1497#else
1498 fi->flags |= foreign_endian ? FBINFO_BE_MATH : 0;
1499#endif /* __BIG_ENDIAN */
1500
1501 if (fi->flags & FBINFO_BE_MATH && !fb_be_math(fi)) {
1502 pr_err("%s: enable CONFIG_FB_BIG_ENDIAN to "
1503 "support this framebuffer\n", fi->fix.id);
1504 return -ENOSYS;
1505 } else if (!(fi->flags & FBINFO_BE_MATH) && fb_be_math(fi)) {
1506 pr_err("%s: enable CONFIG_FB_LITTLE_ENDIAN to "
1507 "support this framebuffer\n", fi->fix.id);
1508 return -ENOSYS;
1509 }
1510
1511 return 0;
1512}
1513
Marcin Slusarz1471ca92010-05-16 17:27:03 +02001514static bool apertures_overlap(struct aperture *gen, struct aperture *hw)
Dave Airlie4410f392009-06-16 15:34:38 -07001515{
1516 /* is the generic aperture base the same as the HW one */
Marcin Slusarz1471ca92010-05-16 17:27:03 +02001517 if (gen->base == hw->base)
Dave Airlie4410f392009-06-16 15:34:38 -07001518 return true;
1519 /* is the generic aperture base inside the hw base->hw base+size */
Dave Airlieacd0acb62010-12-21 01:41:15 +00001520 if (gen->base > hw->base && gen->base < hw->base + hw->size)
Dave Airlie4410f392009-06-16 15:34:38 -07001521 return true;
1522 return false;
1523}
Marcin Slusarz1471ca92010-05-16 17:27:03 +02001524
Marcin Slusarz06415c52010-05-16 17:29:56 +02001525static bool fb_do_apertures_overlap(struct apertures_struct *gena,
1526 struct apertures_struct *hwa)
Marcin Slusarz1471ca92010-05-16 17:27:03 +02001527{
1528 int i, j;
Marcin Slusarz1471ca92010-05-16 17:27:03 +02001529 if (!hwa || !gena)
1530 return false;
1531
1532 for (i = 0; i < hwa->count; ++i) {
1533 struct aperture *h = &hwa->ranges[i];
1534 for (j = 0; j < gena->count; ++j) {
1535 struct aperture *g = &gena->ranges[j];
1536 printk(KERN_DEBUG "checking generic (%llx %llx) vs hw (%llx %llx)\n",
Randy Dunlapf4b87de2010-05-21 12:44:47 -07001537 (unsigned long long)g->base,
1538 (unsigned long long)g->size,
1539 (unsigned long long)h->base,
1540 (unsigned long long)h->size);
Marcin Slusarz1471ca92010-05-16 17:27:03 +02001541 if (apertures_overlap(g, h))
1542 return true;
1543 }
1544 }
1545
1546 return false;
1547}
1548
Daniel Vetterdeb00d22019-05-28 11:02:49 +02001549static void do_unregister_framebuffer(struct fb_info *fb_info);
Linus Torvalds712f3142011-05-13 16:16:41 -07001550
Marcin Slusarz3b9676e2010-05-16 17:33:09 +02001551#define VGA_FB_PHYS 0xA0000
Daniel Vetterdeb00d22019-05-28 11:02:49 +02001552static void do_remove_conflicting_framebuffers(struct apertures_struct *a,
1553 const char *name, bool primary)
Marcin Slusarz06415c52010-05-16 17:29:56 +02001554{
Daniel Vetterdeb00d22019-05-28 11:02:49 +02001555 int i;
Marcin Slusarz06415c52010-05-16 17:29:56 +02001556
1557 /* check all firmware fbs and kick off if the base addr overlaps */
Yisheng Xie10ac8682018-07-24 19:11:26 +02001558 for_each_registered_fb(i) {
Marcin Slusarz3b9676e2010-05-16 17:33:09 +02001559 struct apertures_struct *gen_aper;
Marcin Slusarz06415c52010-05-16 17:29:56 +02001560
1561 if (!(registered_fb[i]->flags & FBINFO_MISC_FIRMWARE))
1562 continue;
1563
Marcin Slusarz3b9676e2010-05-16 17:33:09 +02001564 gen_aper = registered_fb[i]->apertures;
1565 if (fb_do_apertures_overlap(gen_aper, a) ||
1566 (primary && gen_aper && gen_aper->count &&
1567 gen_aper->ranges[0].base == VGA_FB_PHYS)) {
1568
Michał Mirosławfbc42d42018-09-01 16:08:44 +02001569 printk(KERN_INFO "fb%d: switching to %s from %s\n",
1570 i, name, registered_fb[i]->fix.id);
Daniel Vetterdeb00d22019-05-28 11:02:49 +02001571 do_unregister_framebuffer(registered_fb[i]);
Marcin Slusarz06415c52010-05-16 17:29:56 +02001572 }
1573 }
1574}
Marcin Slusarz06415c52010-05-16 17:29:56 +02001575
Daniel Vetterc3c296b2015-08-25 15:45:14 +02001576static bool lockless_register_fb;
1577module_param_named_unsafe(lockless_register_fb, lockless_register_fb, bool, 0400);
1578MODULE_PARM_DESC(lockless_register_fb,
1579 "Lockless framebuffer registration for debugging [default=off]");
1580
Linus Torvalds712f3142011-05-13 16:16:41 -07001581static int do_register_framebuffer(struct fb_info *fb_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
Chris Wilson46eeb2c2013-12-16 15:57:39 +00001583 int i, ret;
Antonino A. Daplas96fe6a22005-09-09 13:09:58 -07001584 struct fb_videomode mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Anton Vorontsove4c690e2008-04-28 02:14:49 -07001586 if (fb_check_foreignness(fb_info))
1587 return -ENOSYS;
1588
Daniel Vetterdeb00d22019-05-28 11:02:49 +02001589 do_remove_conflicting_framebuffers(fb_info->apertures,
1590 fb_info->fix.id,
1591 fb_is_primary_device(fb_info));
Dave Airlie4410f392009-06-16 15:34:38 -07001592
Bruno Prémontc590cec2011-05-14 12:24:15 +02001593 if (num_registered_fb == FB_MAX)
1594 return -ENXIO;
1595
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 num_registered_fb++;
1597 for (i = 0 ; i < FB_MAX; i++)
1598 if (!registered_fb[i])
1599 break;
1600 fb_info->node = i;
Xiyu Yang0189cb572021-07-19 13:59:45 +08001601 refcount_set(&fb_info->count, 1);
Linus Torvalds6c968952009-07-08 09:20:11 -07001602 mutex_init(&fb_info->lock);
1603 mutex_init(&fb_info->mm_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Greg Kroah-Hartman77997aa2008-07-21 20:03:34 -07001605 fb_info->dev = device_create(fb_class, fb_info->device,
1606 MKDEV(FB_MAJOR, i), NULL, "fb%d", i);
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -07001607 if (IS_ERR(fb_info->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 /* Not fatal */
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -07001609 printk(KERN_WARNING "Unable to create device for framebuffer %d; errno = %ld\n", i, PTR_ERR(fb_info->dev));
1610 fb_info->dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 } else
Greg Kroah-Hartman78cde08872006-09-14 07:30:59 -07001612 fb_init_device(fb_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614 if (fb_info->pixmap.addr == NULL) {
1615 fb_info->pixmap.addr = kmalloc(FBPIXMAPSIZE, GFP_KERNEL);
1616 if (fb_info->pixmap.addr) {
1617 fb_info->pixmap.size = FBPIXMAPSIZE;
1618 fb_info->pixmap.buf_align = 1;
1619 fb_info->pixmap.scan_align = 1;
James Simmons58a60642005-06-21 17:17:08 -07001620 fb_info->pixmap.access_align = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 fb_info->pixmap.flags = FB_PIXMAP_DEFAULT;
1622 }
Thomas Zimmermann2d05f562020-07-29 15:41:44 +02001623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 fb_info->pixmap.offset = 0;
1625
Antonino A. Daplasbf26ad72007-05-08 00:39:09 -07001626 if (!fb_info->pixmap.blit_x)
1627 fb_info->pixmap.blit_x = ~(u32)0;
1628
1629 if (!fb_info->pixmap.blit_y)
1630 fb_info->pixmap.blit_y = ~(u32)0;
1631
Antonino A. Daplas96fe6a22005-09-09 13:09:58 -07001632 if (!fb_info->modelist.prev || !fb_info->modelist.next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 INIT_LIST_HEAD(&fb_info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Jesse Barnes3cf26672013-02-04 13:37:21 +00001635 if (fb_info->skip_vt_switch)
1636 pm_vt_switch_required(fb_info->dev, false);
1637 else
1638 pm_vt_switch_required(fb_info->dev, true);
1639
Antonino A. Daplas96fe6a22005-09-09 13:09:58 -07001640 fb_var_to_videomode(&mode, &fb_info->var);
1641 fb_add_videomode(&mode, &fb_info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 registered_fb[i] = fb_info;
1643
Daniel Vetter97b67982019-05-28 11:02:41 +02001644#ifdef CONFIG_GUMSTIX_AM200EPD
1645 {
1646 struct fb_event event;
1647 event.info = fb_info;
1648 fb_notifier_call_chain(FB_EVENT_FB_REGISTERED, &event);
1649 }
1650#endif
1651
Daniel Vetterc3c296b2015-08-25 15:45:14 +02001652 if (!lockless_register_fb)
1653 console_lock();
Thomas Zimmermann3f2ce542018-07-31 13:06:58 +02001654 else
1655 atomic_inc(&ignore_console_lock_warning);
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001656 lock_fb_info(fb_info);
Daniel Vetter97b67982019-05-28 11:02:41 +02001657 ret = fbcon_fb_registered(fb_info);
Andrea Righi513adb52009-04-13 14:39:39 -07001658 unlock_fb_info(fb_info);
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001659
Daniel Vetterc3c296b2015-08-25 15:45:14 +02001660 if (!lockless_register_fb)
1661 console_unlock();
Thomas Zimmermann3f2ce542018-07-31 13:06:58 +02001662 else
1663 atomic_dec(&ignore_console_lock_warning);
1664 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665}
1666
Daniel Vetterdeb00d22019-05-28 11:02:49 +02001667static void unbind_console(struct fb_info *fb_info)
Linus Torvalds712f3142011-05-13 16:16:41 -07001668{
Mikulas Patocka8c5b0442018-07-25 15:41:54 +02001669 int i = fb_info->node;
Linus Torvalds712f3142011-05-13 16:16:41 -07001670
Daniel Vetterdeb00d22019-05-28 11:02:49 +02001671 if (WARN_ON(i < 0 || i >= FB_MAX || registered_fb[i] != fb_info))
1672 return;
Linus Torvalds712f3142011-05-13 16:16:41 -07001673
Takashi Iwaie93a9a82013-01-25 10:28:18 +10001674 console_lock();
Daniel Vettercf4a3ae2019-05-28 11:02:47 +02001675 lock_fb_info(fb_info);
Daniel Vetter0e0f3252019-05-28 11:02:48 +02001676 fbcon_fb_unbind(fb_info);
Linus Torvalds712f3142011-05-13 16:16:41 -07001677 unlock_fb_info(fb_info);
Gu Zheng3a41c5d2013-11-05 18:00:57 +08001678 console_unlock();
Mikulas Patocka8c5b0442018-07-25 15:41:54 +02001679}
1680
Thomas Zimmermannf597c202019-11-14 13:51:06 +01001681static void unlink_framebuffer(struct fb_info *fb_info)
Mikulas Patocka8c5b0442018-07-25 15:41:54 +02001682{
Daniel Vetter927ab1a2019-05-28 11:02:50 +02001683 int i;
1684
1685 i = fb_info->node;
1686 if (WARN_ON(i < 0 || i >= FB_MAX || registered_fb[i] != fb_info))
1687 return;
1688
1689 if (!fb_info->dev)
1690 return;
1691
1692 device_destroy(fb_class, MKDEV(FB_MAJOR, i));
Linus Torvalds712f3142011-05-13 16:16:41 -07001693
Jesse Barnes3cf26672013-02-04 13:37:21 +00001694 pm_vt_switch_unregister(fb_info->dev);
1695
Daniel Vetter927ab1a2019-05-28 11:02:50 +02001696 unbind_console(fb_info);
1697
1698 fb_info->dev = NULL;
1699}
Daniel Vetter927ab1a2019-05-28 11:02:50 +02001700
1701static void do_unregister_framebuffer(struct fb_info *fb_info)
1702{
1703 unlink_framebuffer(fb_info);
Linus Torvalds712f3142011-05-13 16:16:41 -07001704 if (fb_info->pixmap.addr &&
1705 (fb_info->pixmap.flags & FB_PIXMAP_DEFAULT))
1706 kfree(fb_info->pixmap.addr);
1707 fb_destroy_modelist(&fb_info->modelist);
Mikulas Patocka8c5b0442018-07-25 15:41:54 +02001708 registered_fb[fb_info->node] = NULL;
Linus Torvalds712f3142011-05-13 16:16:41 -07001709 num_registered_fb--;
1710 fb_cleanup_device(fb_info);
Daniel Vetter97b67982019-05-28 11:02:41 +02001711#ifdef CONFIG_GUMSTIX_AM200EPD
1712 {
1713 struct fb_event event;
1714 event.info = fb_info;
1715 fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED, &event);
1716 }
1717#endif
Takashi Iwaie93a9a82013-01-25 10:28:18 +10001718 console_lock();
Daniel Vetter97b67982019-05-28 11:02:41 +02001719 fbcon_fb_unregistered(fb_info);
Takashi Iwaie93a9a82013-01-25 10:28:18 +10001720 console_unlock();
Linus Torvalds712f3142011-05-13 16:16:41 -07001721
1722 /* this may free fb info */
1723 put_fb_info(fb_info);
Linus Torvalds712f3142011-05-13 16:16:41 -07001724}
1725
Michał Mirosław69aa5352018-09-01 16:08:45 +02001726/**
1727 * remove_conflicting_framebuffers - remove firmware-configured framebuffers
1728 * @a: memory range, users of which are to be removed
1729 * @name: requesting driver name
1730 * @primary: also kick vga16fb if present
1731 *
1732 * This function removes framebuffer devices (initialized by firmware/bootloader)
1733 * which use memory range described by @a. If @a is NULL all such devices are
1734 * removed.
1735 */
Chris Wilson46eeb2c2013-12-16 15:57:39 +00001736int remove_conflicting_framebuffers(struct apertures_struct *a,
1737 const char *name, bool primary)
Linus Torvalds712f3142011-05-13 16:16:41 -07001738{
Michał Mirosław5fa793d2018-09-01 16:08:44 +02001739 bool do_free = false;
1740
1741 if (!a) {
1742 a = alloc_apertures(1);
1743 if (!a)
1744 return -ENOMEM;
1745
1746 a->ranges[0].base = 0;
1747 a->ranges[0].size = ~0;
1748 do_free = true;
1749 }
Chris Wilson46eeb2c2013-12-16 15:57:39 +00001750
Linus Torvalds712f3142011-05-13 16:16:41 -07001751 mutex_lock(&registration_lock);
Daniel Vetterdeb00d22019-05-28 11:02:49 +02001752 do_remove_conflicting_framebuffers(a, name, primary);
Linus Torvalds712f3142011-05-13 16:16:41 -07001753 mutex_unlock(&registration_lock);
Chris Wilson46eeb2c2013-12-16 15:57:39 +00001754
Michał Mirosław5fa793d2018-09-01 16:08:44 +02001755 if (do_free)
1756 kfree(a);
1757
Daniel Vetterdeb00d22019-05-28 11:02:49 +02001758 return 0;
Linus Torvalds712f3142011-05-13 16:16:41 -07001759}
1760EXPORT_SYMBOL(remove_conflicting_framebuffers);
1761
1762/**
Michał Mirosław4d189752018-09-01 16:08:45 +02001763 * remove_conflicting_pci_framebuffers - remove firmware-configured framebuffers for PCI devices
1764 * @pdev: PCI device
Michał Mirosław4d189752018-09-01 16:08:45 +02001765 * @name: requesting driver name
1766 *
1767 * This function removes framebuffer devices (eg. initialized by firmware)
Gerd Hoffmann0a845962019-08-22 11:06:43 +02001768 * using memory range configured for any of @pdev's memory bars.
Michał Mirosław4d189752018-09-01 16:08:45 +02001769 *
1770 * The function assumes that PCI device with shadowed ROM drives a primary
1771 * display and so kicks out vga16fb.
1772 */
Gerd Hoffmann0a845962019-08-22 11:06:43 +02001773int remove_conflicting_pci_framebuffers(struct pci_dev *pdev, const char *name)
Michał Mirosław4d189752018-09-01 16:08:45 +02001774{
1775 struct apertures_struct *ap;
1776 bool primary = false;
Gerd Hoffmannb0e999c2019-04-01 17:46:57 +02001777 int err, idx, bar;
Michał Mirosław4d189752018-09-01 16:08:45 +02001778
Denis Efremovc9c13ba2019-09-28 02:43:08 +03001779 for (idx = 0, bar = 0; bar < PCI_STD_NUM_BARS; bar++) {
Gerd Hoffmannb0e999c2019-04-01 17:46:57 +02001780 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM))
1781 continue;
1782 idx++;
1783 }
1784
1785 ap = alloc_apertures(idx);
Michał Mirosław4d189752018-09-01 16:08:45 +02001786 if (!ap)
1787 return -ENOMEM;
1788
Denis Efremovc9c13ba2019-09-28 02:43:08 +03001789 for (idx = 0, bar = 0; bar < PCI_STD_NUM_BARS; bar++) {
Gerd Hoffmannb0e999c2019-04-01 17:46:57 +02001790 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM))
1791 continue;
1792 ap->ranges[idx].base = pci_resource_start(pdev, bar);
1793 ap->ranges[idx].size = pci_resource_len(pdev, bar);
Gerd Hoffmann0a845962019-08-22 11:06:43 +02001794 pci_dbg(pdev, "%s: bar %d: 0x%lx -> 0x%lx\n", __func__, bar,
1795 (unsigned long)pci_resource_start(pdev, bar),
1796 (unsigned long)pci_resource_end(pdev, bar));
Gerd Hoffmannb0e999c2019-04-01 17:46:57 +02001797 idx++;
Gerd Hoffmannb0e999c2019-04-01 17:46:57 +02001798 }
Gerd Hoffmannb0e999c2019-04-01 17:46:57 +02001799
Michał Mirosław4d189752018-09-01 16:08:45 +02001800#ifdef CONFIG_X86
1801 primary = pdev->resource[PCI_ROM_RESOURCE].flags &
1802 IORESOURCE_ROM_SHADOW;
1803#endif
1804 err = remove_conflicting_framebuffers(ap, name, primary);
1805 kfree(ap);
1806 return err;
1807}
1808EXPORT_SYMBOL(remove_conflicting_pci_framebuffers);
1809
1810/**
Linus Torvalds712f3142011-05-13 16:16:41 -07001811 * register_framebuffer - registers a frame buffer device
1812 * @fb_info: frame buffer info structure
1813 *
1814 * Registers a frame buffer device @fb_info.
1815 *
1816 * Returns negative errno on error, or zero for success.
1817 *
1818 */
1819int
1820register_framebuffer(struct fb_info *fb_info)
1821{
1822 int ret;
1823
1824 mutex_lock(&registration_lock);
1825 ret = do_register_framebuffer(fb_info);
1826 mutex_unlock(&registration_lock);
1827
1828 return ret;
1829}
Daniel Mack9c29fba2013-08-15 16:12:55 +02001830EXPORT_SYMBOL(register_framebuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
1832/**
1833 * unregister_framebuffer - releases a frame buffer device
1834 * @fb_info: frame buffer info structure
1835 *
1836 * Unregisters a frame buffer device @fb_info.
1837 *
1838 * Returns negative errno on error, or zero for success.
1839 *
Jesse Barnescfafca82007-07-17 04:05:33 -07001840 * This function will also notify the framebuffer console
1841 * to release the driver.
1842 *
1843 * This is meant to be called within a driver's module_exit()
1844 * function. If this is called outside module_exit(), ensure
1845 * that the driver implements fb_open() and fb_release() to
1846 * check that no processes are using the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 */
Daniel Vetterdeb00d22019-05-28 11:02:49 +02001848void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849unregister_framebuffer(struct fb_info *fb_info)
1850{
Linus Torvalds698b3682011-05-11 14:49:36 -07001851 mutex_lock(&registration_lock);
Daniel Vetterdeb00d22019-05-28 11:02:49 +02001852 do_unregister_framebuffer(fb_info);
Linus Torvalds698b3682011-05-11 14:49:36 -07001853 mutex_unlock(&registration_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854}
Daniel Mack9c29fba2013-08-15 16:12:55 +02001855EXPORT_SYMBOL(unregister_framebuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 * fb_set_suspend - low level driver signals suspend
1859 * @info: framebuffer affected
1860 * @state: 0 = resuming, !=0 = suspending
1861 *
1862 * This is meant to be used by low level drivers to
1863 * signal suspend/resume to the core & clients.
1864 * It must be called with the console semaphore held
1865 */
1866void fb_set_suspend(struct fb_info *info, int state)
1867{
Daniel Vetter70764042019-05-28 11:02:33 +02001868 WARN_CONSOLE_UNLOCKED();
1869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 if (state) {
Daniel Vetter50c50562019-05-28 11:02:52 +02001871 fbcon_suspended(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 info->state = FBINFO_STATE_SUSPENDED;
1873 } else {
1874 info->state = FBINFO_STATE_RUNNING;
Daniel Vetter50c50562019-05-28 11:02:52 +02001875 fbcon_resumed(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877}
Daniel Mack9c29fba2013-08-15 16:12:55 +02001878EXPORT_SYMBOL(fb_set_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
1880/**
1881 * fbmem_init - init frame buffer subsystem
1882 *
1883 * Initialize the frame buffer subsystem.
1884 *
1885 * NOTE: This function is _only_ to be called by drivers/char/mem.c.
1886 *
1887 */
1888
1889static int __init
1890fbmem_init(void)
1891{
Alexey Khoroshilov524edf32016-05-03 05:22:27 +03001892 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Christoph Hellwigfddda2b2018-04-13 19:44:18 +02001894 if (!proc_create_seq("fb", 0, NULL, &proc_fb_seq_ops))
Alexey Khoroshilov524edf32016-05-03 05:22:27 +03001895 return -ENOMEM;
1896
1897 ret = register_chrdev(FB_MAJOR, "fb", &fb_fops);
1898 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 printk("unable to get major %d for fb devs\n", FB_MAJOR);
Alexey Khoroshilov524edf32016-05-03 05:22:27 +03001900 goto err_chrdev;
1901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
gregkh@suse.de56b22932005-03-23 10:01:41 -08001903 fb_class = class_create(THIS_MODULE, "graphics");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (IS_ERR(fb_class)) {
Alexey Khoroshilov524edf32016-05-03 05:22:27 +03001905 ret = PTR_ERR(fb_class);
1906 pr_warn("Unable to create fb class; errno = %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 fb_class = NULL;
Alexey Khoroshilov524edf32016-05-03 05:22:27 +03001908 goto err_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 }
Daniel Vetter6104c372017-08-01 17:32:07 +02001910
1911 fb_console_init();
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 return 0;
Alexey Khoroshilov524edf32016-05-03 05:22:27 +03001914
1915err_class:
1916 unregister_chrdev(FB_MAJOR, "fb");
1917err_chrdev:
1918 remove_proc_entry("fb", NULL);
1919 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920}
1921
1922#ifdef MODULE
1923module_init(fbmem_init);
1924static void __exit
1925fbmem_exit(void)
1926{
Daniel Vetter6104c372017-08-01 17:32:07 +02001927 fb_console_exit();
1928
Alexey Dobriyanc43f89c2008-04-15 14:34:33 -07001929 remove_proc_entry("fb", NULL);
gregkh@suse.de56b22932005-03-23 10:01:41 -08001930 class_destroy(fb_class);
Jon Smirl5a340cc2005-07-27 11:46:04 -07001931 unregister_chrdev(FB_MAJOR, "fb");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932}
1933
1934module_exit(fbmem_exit);
1935MODULE_LICENSE("GPL");
1936MODULE_DESCRIPTION("Framebuffer base");
1937#else
1938subsys_initcall(fbmem_init);
1939#endif
1940
1941int fb_new_modelist(struct fb_info *info)
1942{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 struct fb_var_screeninfo var = info->var;
1944 struct list_head *pos, *n;
1945 struct fb_modelist *modelist;
1946 struct fb_videomode *m, mode;
Colin Ian Kinga74cefd2019-06-24 23:37:24 +01001947 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
1949 list_for_each_safe(pos, n, &info->modelist) {
1950 modelist = list_entry(pos, struct fb_modelist, list);
1951 m = &modelist->mode;
1952 fb_videomode_to_var(&var, m);
1953 var.activate = FB_ACTIVATE_TEST;
1954 err = fb_set_var(info, &var);
1955 fb_var_to_videomode(&mode, &var);
1956 if (err || !fb_mode_is_equal(m, &mode)) {
1957 list_del(pos);
1958 kfree(pos);
1959 }
1960 }
1961
Daniel Vetter13ff1782019-05-28 11:02:53 +02001962 if (list_empty(&info->modelist))
1963 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Daniel Vetter13ff1782019-05-28 11:02:53 +02001965 fbcon_new_modelist(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Daniel Vetter13ff1782019-05-28 11:02:53 +02001967 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968}
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970MODULE_LICENSE("GPL");