blob: a92783e480e66b60755dc0dcc3052d2d75d17fe1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/video/fbcon.c -- Low level frame buffer based console driver
3 *
4 * Copyright (C) 1995 Geert Uytterhoeven
5 *
6 *
7 * This file is based on the original Amiga console driver (amicon.c):
8 *
9 * Copyright (C) 1993 Hamish Macdonald
10 * Greg Harp
11 * Copyright (C) 1994 David Carter [carter@compsci.bristol.ac.uk]
12 *
13 * with work by William Rucklidge (wjr@cs.cornell.edu)
14 * Geert Uytterhoeven
15 * Jes Sorensen (jds@kom.auc.dk)
16 * Martin Apel
17 *
18 * and on the original Atari console driver (atacon.c):
19 *
20 * Copyright (C) 1993 Bjoern Brauel
21 * Roman Hodek
22 *
23 * with work by Guenther Kelleter
24 * Martin Schaller
25 * Andreas Schwab
26 *
27 * Hardware cursor support added by Emmanuel Marty (core@ggi-project.org)
28 * Smart redraw scrolling, arbitrary font width support, 512char font support
29 * and software scrollback added by
30 * Jakub Jelinek (jj@ultra.linux.cz)
31 *
32 * Random hacking by Martin Mares <mj@ucw.cz>
33 *
34 * 2001 - Documented with DocBook
35 * - Brad Douglas <brad@neruo.com>
36 *
37 * The low level operations for the various display memory organizations are
38 * now in separate source files.
39 *
40 * Currently the following organizations are supported:
41 *
42 * o afb Amiga bitplanes
43 * o cfb{2,4,8,16,24,32} Packed pixels
44 * o ilbm Amiga interleaved bitplanes
45 * o iplan2p[248] Atari interleaved bitplanes
46 * o mfb Monochrome
47 * o vga VGA characters/attributes
48 *
49 * To do:
50 *
51 * - Implement 16 plane mode (iplan2p16)
52 *
53 *
54 * This file is subject to the terms and conditions of the GNU General Public
55 * License. See the file COPYING in the main directory of this archive for
56 * more details.
57 */
58
59#undef FBCONDEBUG
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/module.h>
62#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#include <linux/fs.h>
64#include <linux/kernel.h>
65#include <linux/delay.h> /* MSch: for IRQ probe */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/console.h>
67#include <linux/string.h>
68#include <linux/kd.h>
69#include <linux/slab.h>
70#include <linux/fb.h>
71#include <linux/vt_kern.h>
72#include <linux/selection.h>
73#include <linux/font.h>
74#include <linux/smp.h>
75#include <linux/init.h>
76#include <linux/interrupt.h>
77#include <linux/crc32.h> /* For counting font checksums */
Antonino A. Daplas623e71b2007-07-17 04:05:28 -070078#include <asm/fb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81#include "fbcon.h"
82
83#ifdef FBCONDEBUG
Harvey Harrison5ae12172008-04-28 02:15:47 -070084# define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __func__ , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#else
86# define DPRINTK(fmt, args...)
87#endif
88
89enum {
90 FBCON_LOGO_CANSHOW = -1, /* the logo can be shown */
91 FBCON_LOGO_DRAW = -2, /* draw the logo to a console */
92 FBCON_LOGO_DONTSHOW = -3 /* do not show the logo */
93};
94
Antonino A. Daplasab767202005-11-13 16:06:32 -080095static struct display fb_display[MAX_NR_CONSOLES];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -080096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097static signed char con2fb_map[MAX_NR_CONSOLES];
98static signed char con2fb_map_boot[MAX_NR_CONSOLES];
Krzysztof Helt49a1d282008-07-23 21:31:21 -070099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static int logo_lines;
101/* logo_shown is an index to vc_cons when >= 0; otherwise follows FBCON_LOGO
102 enums. */
103static int logo_shown = FBCON_LOGO_CANSHOW;
104/* Software scrollback */
105static int fbcon_softback_size = 32768;
106static unsigned long softback_buf, softback_curr;
107static unsigned long softback_in;
108static unsigned long softback_top, softback_end;
109static int softback_lines;
110/* console mappings */
111static int first_fb_vc;
112static int last_fb_vc = MAX_NR_CONSOLES - 1;
113static int fbcon_is_default = 1;
Antonino A. Daplase614b182006-06-26 00:27:09 -0700114static int fbcon_has_exited;
Antonino A. Daplas623e71b2007-07-17 04:05:28 -0700115static int primary_device = -1;
Ian Armstrong2ddce3f2009-09-22 16:47:52 -0700116static int fbcon_has_console_bind;
Antonino A. Daplas4769a9a2007-08-10 13:00:46 -0700117
118#ifdef CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY
Antonino A. Daplas623e71b2007-07-17 04:05:28 -0700119static int map_override;
Antonino A. Daplase614b182006-06-26 00:27:09 -0700120
Antonino A. Daplas4769a9a2007-08-10 13:00:46 -0700121static inline void fbcon_map_override(void)
122{
123 map_override = 1;
124}
125#else
126static inline void fbcon_map_override(void)
127{
128}
129#endif /* CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY */
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131/* font data */
132static char fontname[40];
133
134/* current fb_info */
135static int info_idx = -1;
136
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800137/* console rotation */
Marcin Slusarz2428e59b2008-02-06 01:39:14 -0800138static int initial_rotation;
Antonino A. Daplas0a727de2006-10-03 01:14:50 -0700139static int fbcon_has_sysfs;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141static const struct consw fb_con;
142
143#define CM_SOFTBACK (8)
144
145#define advance_row(p, delta) (unsigned short *)((unsigned long)(p) + (delta) * vc->vc_size_row)
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static int fbcon_set_origin(struct vc_data *);
148
149#define CURSOR_DRAW_DELAY (1)
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static int vbl_cursor_cnt;
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -0700152static int fbcon_cursor_noblink;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154#define divides(a, b) ((!(a) || (b)%(a)) ? 0 : 1)
155
156/*
157 * Interface used by the world
158 */
159
160static const char *fbcon_startup(void);
161static void fbcon_init(struct vc_data *vc, int init);
162static void fbcon_deinit(struct vc_data *vc);
163static void fbcon_clear(struct vc_data *vc, int sy, int sx, int height,
164 int width);
165static void fbcon_putc(struct vc_data *vc, int c, int ypos, int xpos);
166static void fbcon_putcs(struct vc_data *vc, const unsigned short *s,
167 int count, int ypos, int xpos);
168static void fbcon_clear_margins(struct vc_data *vc, int bottom_only);
169static void fbcon_cursor(struct vc_data *vc, int mode);
170static int fbcon_scroll(struct vc_data *vc, int t, int b, int dir,
171 int count);
172static void fbcon_bmove(struct vc_data *vc, int sy, int sx, int dy, int dx,
173 int height, int width);
174static int fbcon_switch(struct vc_data *vc);
175static int fbcon_blank(struct vc_data *vc, int blank, int mode_switch);
176static int fbcon_set_palette(struct vc_data *vc, unsigned char *table);
177static int fbcon_scrolldelta(struct vc_data *vc, int lines);
178
179/*
180 * Internal routines
181 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182static __inline__ void ywrap_up(struct vc_data *vc, int count);
183static __inline__ void ywrap_down(struct vc_data *vc, int count);
184static __inline__ void ypan_up(struct vc_data *vc, int count);
185static __inline__ void ypan_down(struct vc_data *vc, int count);
186static void fbcon_bmove_rec(struct vc_data *vc, struct display *p, int sy, int sx,
187 int dy, int dx, int height, int width, u_int y_break);
188static void fbcon_set_disp(struct fb_info *info, struct fb_var_screeninfo *var,
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -0700189 int unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190static void fbcon_redraw_move(struct vc_data *vc, struct display *p,
191 int line, int count, int dy);
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800192static void fbcon_modechanged(struct fb_info *info);
193static void fbcon_set_all_vcs(struct fb_info *info);
Antonino A. Daplas5428b042006-06-26 00:27:06 -0700194static void fbcon_start(void);
195static void fbcon_exit(void);
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -0700196static struct device *fbcon_device;
Antonino A. Daplas9a179172006-06-26 00:27:05 -0700197
Antonino A. Daplasdbcbfe12005-11-08 21:39:12 -0800198#ifdef CONFIG_FRAMEBUFFER_CONSOLE_ROTATION
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800199static inline void fbcon_set_rotation(struct fb_info *info)
Antonino A. Daplasdbcbfe12005-11-08 21:39:12 -0800200{
201 struct fbcon_ops *ops = info->fbcon_par;
202
203 if (!(info->flags & FBINFO_MISC_TILEBLITTING) &&
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800204 ops->p->con_rotate < 4)
205 ops->rotate = ops->p->con_rotate;
Antonino A. Daplasdbcbfe12005-11-08 21:39:12 -0800206 else
207 ops->rotate = 0;
208}
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800209
210static void fbcon_rotate(struct fb_info *info, u32 rotate)
211{
212 struct fbcon_ops *ops= info->fbcon_par;
213 struct fb_info *fb_info;
214
215 if (!ops || ops->currcon == -1)
216 return;
217
218 fb_info = registered_fb[con2fb_map[ops->currcon]];
219
220 if (info == fb_info) {
221 struct display *p = &fb_display[ops->currcon];
222
223 if (rotate < 4)
224 p->con_rotate = rotate;
225 else
226 p->con_rotate = 0;
227
228 fbcon_modechanged(info);
229 }
230}
231
232static void fbcon_rotate_all(struct fb_info *info, u32 rotate)
233{
234 struct fbcon_ops *ops = info->fbcon_par;
235 struct vc_data *vc;
236 struct display *p;
237 int i;
238
239 if (!ops || ops->currcon < 0 || rotate > 3)
240 return;
241
Antonino A. Daplase614b182006-06-26 00:27:09 -0700242 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800243 vc = vc_cons[i].d;
244 if (!vc || vc->vc_mode != KD_TEXT ||
245 registered_fb[con2fb_map[i]] != info)
246 continue;
247
248 p = &fb_display[vc->vc_num];
249 p->con_rotate = rotate;
250 }
251
252 fbcon_set_all_vcs(info);
253}
Antonino A. Daplasdbcbfe12005-11-08 21:39:12 -0800254#else
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800255static inline void fbcon_set_rotation(struct fb_info *info)
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800256{
257 struct fbcon_ops *ops = info->fbcon_par;
258
259 ops->rotate = FB_ROTATE_UR;
260}
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800261
262static void fbcon_rotate(struct fb_info *info, u32 rotate)
263{
264 return;
265}
266
267static void fbcon_rotate_all(struct fb_info *info, u32 rotate)
268{
269 return;
270}
Antonino A. Daplasdbcbfe12005-11-08 21:39:12 -0800271#endif /* CONFIG_FRAMEBUFFER_CONSOLE_ROTATION */
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800272
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800273static int fbcon_get_rotate(struct fb_info *info)
274{
275 struct fbcon_ops *ops = info->fbcon_par;
276
277 return (ops) ? ops->rotate : 0;
278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280static inline int fbcon_is_inactive(struct vc_data *vc, struct fb_info *info)
281{
282 struct fbcon_ops *ops = info->fbcon_par;
283
284 return (info->state != FBINFO_STATE_RUNNING ||
Jesse Barnes8fd4bd22010-06-23 12:56:12 -0700285 vc->vc_mode != KD_TEXT || ops->graphics) &&
286 !vt_force_oops_output(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Denys Vlasenkoda909ce2010-08-10 18:02:29 -0700289static int get_color(struct vc_data *vc, struct fb_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 u16 c, int is_fg)
291{
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700292 int depth = fb_get_color_depth(&info->var, &info->fix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 int color = 0;
294
295 if (console_blanked) {
296 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff;
297
298 c = vc->vc_video_erase_char & charmask;
299 }
300
301 if (depth != 1)
302 color = (is_fg) ? attr_fgcol((vc->vc_hi_font_mask) ? 9 : 8, c)
303 : attr_bgcol((vc->vc_hi_font_mask) ? 13 : 12, c);
304
305 switch (depth) {
306 case 1:
307 {
Thomas Pfaff91c43132008-02-06 01:39:45 -0800308 int col = mono_col(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /* 0 or 1 */
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700310 int fg = (info->fix.visual != FB_VISUAL_MONO01) ? col : 0;
311 int bg = (info->fix.visual != FB_VISUAL_MONO01) ? 0 : col;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 if (console_blanked)
314 fg = bg;
315
316 color = (is_fg) ? fg : bg;
317 break;
318 }
319 case 2:
320 /*
321 * Scale down 16-colors to 4 colors. Default 4-color palette
Antonino A. Daplas2cc38ed2005-09-09 13:04:38 -0700322 * is grayscale. However, simply dividing the values by 4
323 * will not work, as colors 1, 2 and 3 will be scaled-down
324 * to zero rendering them invisible. So empirically convert
325 * colors to a sane 4-level grayscale.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 */
Antonino A. Daplas2cc38ed2005-09-09 13:04:38 -0700327 switch (color) {
328 case 0:
329 color = 0; /* black */
330 break;
331 case 1 ... 6:
332 color = 2; /* white */
333 break;
334 case 7 ... 8:
335 color = 1; /* gray */
336 break;
337 default:
338 color = 3; /* intense white */
339 break;
340 }
341 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 case 3:
343 /*
344 * Last 8 entries of default 16-color palette is a more intense
345 * version of the first 8 (i.e., same chrominance, different
346 * luminance).
347 */
348 color &= 7;
349 break;
350 }
351
352
353 return color;
354}
355
Antonino A. Daplas4d9c5b62005-11-07 01:00:36 -0800356static void fbcon_update_softback(struct vc_data *vc)
357{
358 int l = fbcon_softback_size / vc->vc_size_row;
359
360 if (l > 5)
361 softback_end = softback_buf + l * vc->vc_size_row;
362 else
363 /* Smaller scrollback makes no sense, and 0 would screw
364 the operation totally */
365 softback_top = 0;
366}
367
David Howellsc4028952006-11-22 14:57:56 +0000368static void fb_flashcursor(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
David Howellsc4028952006-11-22 14:57:56 +0000370 struct fb_info *info = container_of(work, struct fb_info, queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 struct vc_data *vc = NULL;
373 int c;
374 int mode;
Dave Airlied8636a22012-08-21 16:29:47 +1000375 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Dave Airlied8636a22012-08-21 16:29:47 +1000377 /* FIXME: we should sort out the unbind locking instead */
378 /* instead we just fail to flash the cursor if we can't get
379 * the lock instead of blocking fbcon deinit */
380 ret = console_trylock();
381 if (ret == 0)
382 return;
383
Antonino A. Daplas5428b042006-06-26 00:27:06 -0700384 if (ops && ops->currcon != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 vc = vc_cons[ops->currcon].d;
386
387 if (!vc || !CON_IS_VISIBLE(vc) ||
Michal Januszewskidbd4f122005-07-27 11:46:06 -0700388 registered_fb[con2fb_map[vc->vc_num]] != info ||
Antonino A. Daplas212f2632006-10-03 01:14:48 -0700389 vc->vc_deccm != 1) {
Torben Hohnac751ef2011-01-25 15:07:35 -0800390 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return;
Antonino A. Daplas5428b042006-06-26 00:27:06 -0700392 }
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 c = scr_readw((u16 *) vc->vc_pos);
395 mode = (!ops->cursor_flash || ops->cursor_state.enable) ?
396 CM_ERASE : CM_DRAW;
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800397 ops->cursor(vc, info, mode, softback_lines, get_color(vc, info, c, 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 get_color(vc, info, c, 0));
Torben Hohnac751ef2011-01-25 15:07:35 -0800399 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402static void cursor_timer_handler(unsigned long dev_addr)
403{
404 struct fb_info *info = (struct fb_info *) dev_addr;
405 struct fbcon_ops *ops = info->fbcon_par;
406
407 schedule_work(&info->queue);
408 mod_timer(&ops->cursor_timer, jiffies + HZ/5);
409}
410
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -0700411static void fbcon_add_cursor_timer(struct fb_info *info)
412{
413 struct fbcon_ops *ops = info->fbcon_par;
414
415 if ((!info->queue.func || info->queue.func == fb_flashcursor) &&
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -0700416 !(ops->flags & FBCON_FLAGS_CURSOR_TIMER) &&
417 !fbcon_cursor_noblink) {
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -0700418 if (!info->queue.func)
David Howellsc4028952006-11-22 14:57:56 +0000419 INIT_WORK(&info->queue, fb_flashcursor);
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -0700420
421 init_timer(&ops->cursor_timer);
422 ops->cursor_timer.function = cursor_timer_handler;
423 ops->cursor_timer.expires = jiffies + HZ / 5;
424 ops->cursor_timer.data = (unsigned long ) info;
425 add_timer(&ops->cursor_timer);
426 ops->flags |= FBCON_FLAGS_CURSOR_TIMER;
427 }
428}
429
430static void fbcon_del_cursor_timer(struct fb_info *info)
431{
432 struct fbcon_ops *ops = info->fbcon_par;
433
434 if (info->queue.func == fb_flashcursor &&
435 ops->flags & FBCON_FLAGS_CURSOR_TIMER) {
436 del_timer_sync(&ops->cursor_timer);
437 ops->flags &= ~FBCON_FLAGS_CURSOR_TIMER;
438 }
439}
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441#ifndef MODULE
442static int __init fb_console_setup(char *this_opt)
443{
444 char *options;
445 int i, j;
446
447 if (!this_opt || !*this_opt)
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800448 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 while ((options = strsep(&this_opt, ",")) != NULL) {
451 if (!strncmp(options, "font:", 5))
Paul Cercueile4329642012-07-24 03:00:24 +0200452 strlcpy(fontname, options + 5, sizeof(fontname));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 if (!strncmp(options, "scrollback:", 11)) {
455 options += 11;
456 if (*options) {
457 fbcon_softback_size = simple_strtoul(options, &options, 0);
458 if (*options == 'k' || *options == 'K') {
459 fbcon_softback_size *= 1024;
460 options++;
461 }
462 if (*options != ',')
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800463 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 options++;
465 } else
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800466 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468
469 if (!strncmp(options, "map:", 4)) {
470 options += 4;
Antonino A. Daplas623e71b2007-07-17 04:05:28 -0700471 if (*options) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 for (i = 0, j = 0; i < MAX_NR_CONSOLES; i++) {
473 if (!options[j])
474 j = 0;
475 con2fb_map_boot[i] =
476 (options[j++]-'0') % FB_MAX;
477 }
Antonino A. Daplas623e71b2007-07-17 04:05:28 -0700478
Antonino A. Daplas4769a9a2007-08-10 13:00:46 -0700479 fbcon_map_override();
Antonino A. Daplas623e71b2007-07-17 04:05:28 -0700480 }
481
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800482 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484
485 if (!strncmp(options, "vc:", 3)) {
486 options += 3;
487 if (*options)
488 first_fb_vc = simple_strtoul(options, &options, 10) - 1;
489 if (first_fb_vc < 0)
490 first_fb_vc = 0;
491 if (*options++ == '-')
492 last_fb_vc = simple_strtoul(options, &options, 10) - 1;
493 fbcon_is_default = 0;
494 }
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800495
496 if (!strncmp(options, "rotate:", 7)) {
497 options += 7;
498 if (*options)
Marcin Slusarz2428e59b2008-02-06 01:39:14 -0800499 initial_rotation = simple_strtoul(options, &options, 0);
500 if (initial_rotation > 3)
501 initial_rotation = 0;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800504 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
507__setup("fbcon=", fb_console_setup);
508#endif
509
510static int search_fb_in_map(int idx)
511{
512 int i, retval = 0;
513
Antonino A. Daplase614b182006-06-26 00:27:09 -0700514 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (con2fb_map[i] == idx)
516 retval = 1;
517 }
518 return retval;
519}
520
521static int search_for_mapped_con(void)
522{
523 int i, retval = 0;
524
Antonino A. Daplase614b182006-06-26 00:27:09 -0700525 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (con2fb_map[i] != -1)
527 retval = 1;
528 }
529 return retval;
530}
531
Alan Cox50e244c2013-01-25 10:28:15 +1000532static int do_fbcon_takeover(int show_logo)
533{
534 int err, i;
535
536 if (!num_registered_fb)
537 return -ENODEV;
538
539 if (!show_logo)
540 logo_shown = FBCON_LOGO_DONTSHOW;
541
542 for (i = first_fb_vc; i <= last_fb_vc; i++)
543 con2fb_map[i] = info_idx;
544
545 err = do_take_over_console(&fb_con, first_fb_vc, last_fb_vc,
546 fbcon_is_default);
547
548 if (err) {
549 for (i = first_fb_vc; i <= last_fb_vc; i++)
550 con2fb_map[i] = -1;
551 info_idx = -1;
552 } else {
553 fbcon_has_console_bind = 1;
554 }
555
556 return err;
557}
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559static int fbcon_takeover(int show_logo)
560{
561 int err, i;
562
563 if (!num_registered_fb)
564 return -ENODEV;
565
566 if (!show_logo)
567 logo_shown = FBCON_LOGO_DONTSHOW;
568
569 for (i = first_fb_vc; i <= last_fb_vc; i++)
570 con2fb_map[i] = info_idx;
571
572 err = take_over_console(&fb_con, first_fb_vc, last_fb_vc,
573 fbcon_is_default);
Antonino A. Daplase614b182006-06-26 00:27:09 -0700574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (err) {
576 for (i = first_fb_vc; i <= last_fb_vc; i++) {
577 con2fb_map[i] = -1;
578 }
579 info_idx = -1;
Ian Armstrong2ddce3f2009-09-22 16:47:52 -0700580 } else {
581 fbcon_has_console_bind = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
583
584 return err;
585}
586
Antonino A. Daplas70802c62007-05-08 00:38:14 -0700587#ifdef MODULE
588static void fbcon_prepare_logo(struct vc_data *vc, struct fb_info *info,
589 int cols, int rows, int new_cols, int new_rows)
590{
591 logo_shown = FBCON_LOGO_DONTSHOW;
592}
593#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594static void fbcon_prepare_logo(struct vc_data *vc, struct fb_info *info,
595 int cols, int rows, int new_cols, int new_rows)
596{
597 /* Need to make room for the logo */
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800598 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 int cnt, erase = vc->vc_video_erase_char, step;
600 unsigned short *save = NULL, *r, *q;
Krzysztof Helt49a1d282008-07-23 21:31:21 -0700601 int logo_height;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Antonino A. Daplas70802c62007-05-08 00:38:14 -0700603 if (info->flags & FBINFO_MODULE) {
604 logo_shown = FBCON_LOGO_DONTSHOW;
605 return;
606 }
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 /*
609 * remove underline attribute from erase character
610 * if black and white framebuffer.
611 */
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700612 if (fb_get_color_depth(&info->var, &info->fix) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 erase &= ~0x400;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800614 logo_height = fb_prepare_logo(info, ops->rotate);
Julia Lawall416e74e2008-04-28 02:14:51 -0700615 logo_lines = DIV_ROUND_UP(logo_height, vc->vc_font.height);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 q = (unsigned short *) (vc->vc_origin +
617 vc->vc_size_row * rows);
618 step = logo_lines * cols;
619 for (r = q - logo_lines * cols; r < q; r++)
620 if (scr_readw(r) != vc->vc_video_erase_char)
621 break;
622 if (r != q && new_rows >= rows + logo_lines) {
623 save = kmalloc(logo_lines * new_cols * 2, GFP_KERNEL);
624 if (save) {
625 int i = cols < new_cols ? cols : new_cols;
626 scr_memsetw(save, erase, logo_lines * new_cols * 2);
627 r = q - step;
628 for (cnt = 0; cnt < logo_lines; cnt++, r += i)
629 scr_memcpyw(save + cnt * new_cols, r, 2 * i);
630 r = q;
631 }
632 }
633 if (r == q) {
634 /* We can scroll screen down */
635 r = q - step - cols;
636 for (cnt = rows - logo_lines; cnt > 0; cnt--) {
637 scr_memcpyw(r + step, r, vc->vc_size_row);
638 r -= cols;
639 }
640 if (!save) {
Geert Uytterhoeven250038f2007-05-08 00:37:53 -0700641 int lines;
642 if (vc->vc_y + logo_lines >= rows)
643 lines = rows - vc->vc_y - 1;
644 else
645 lines = logo_lines;
646 vc->vc_y += lines;
647 vc->vc_pos += lines * vc->vc_size_row;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649 }
650 scr_memsetw((unsigned short *) vc->vc_origin,
651 erase,
652 vc->vc_size_row * logo_lines);
653
654 if (CON_IS_VISIBLE(vc) && vc->vc_mode == KD_TEXT) {
655 fbcon_clear_margins(vc, 0);
656 update_screen(vc);
657 }
658
659 if (save) {
660 q = (unsigned short *) (vc->vc_origin +
661 vc->vc_size_row *
662 rows);
663 scr_memcpyw(q, save, logo_lines * new_cols * 2);
664 vc->vc_y += logo_lines;
665 vc->vc_pos += logo_lines * vc->vc_size_row;
666 kfree(save);
667 }
668
669 if (logo_lines > vc->vc_bottom) {
670 logo_shown = FBCON_LOGO_CANSHOW;
671 printk(KERN_INFO
672 "fbcon_init: disable boot-logo (boot-logo bigger than screen).\n");
673 } else if (logo_shown != FBCON_LOGO_DONTSHOW) {
674 logo_shown = FBCON_LOGO_DRAW;
675 vc->vc_top = logo_lines;
676 }
677}
Antonino A. Daplas70802c62007-05-08 00:38:14 -0700678#endif /* MODULE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680#ifdef CONFIG_FB_TILEBLITTING
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800681static void set_blitting_type(struct vc_data *vc, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 struct fbcon_ops *ops = info->fbcon_par;
684
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800685 ops->p = &fb_display[vc->vc_num];
Antonino A. Daplasab767202005-11-13 16:06:32 -0800686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if ((info->flags & FBINFO_MISC_TILEBLITTING))
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800688 fbcon_set_tileops(vc, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800689 else {
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800690 fbcon_set_rotation(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 fbcon_set_bitops(ops);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
Antonino A. Daplas38b49822007-05-08 00:39:19 -0700694
695static int fbcon_invalid_charcount(struct fb_info *info, unsigned charcount)
696{
697 int err = 0;
698
699 if (info->flags & FBINFO_MISC_TILEBLITTING &&
700 info->tileops->fb_get_tilemax(info) < charcount)
701 err = 1;
702
703 return err;
704}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705#else
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800706static void set_blitting_type(struct vc_data *vc, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 struct fbcon_ops *ops = info->fbcon_par;
709
710 info->flags &= ~FBINFO_MISC_TILEBLITTING;
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800711 ops->p = &fb_display[vc->vc_num];
712 fbcon_set_rotation(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 fbcon_set_bitops(ops);
714}
Antonino A. Daplas38b49822007-05-08 00:39:19 -0700715
716static int fbcon_invalid_charcount(struct fb_info *info, unsigned charcount)
717{
718 return 0;
719}
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721#endif /* CONFIG_MISC_TILEBLITTING */
722
723
724static int con2fb_acquire_newinfo(struct vc_data *vc, struct fb_info *info,
725 int unit, int oldidx)
726{
727 struct fbcon_ops *ops = NULL;
728 int err = 0;
729
730 if (!try_module_get(info->fbops->owner))
731 err = -ENODEV;
732
733 if (!err && info->fbops->fb_open &&
734 info->fbops->fb_open(info, 0))
735 err = -ENODEV;
736
737 if (!err) {
Antonino A. Daplasa39bc342006-01-09 20:53:44 -0800738 ops = kzalloc(sizeof(struct fbcon_ops), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (!ops)
740 err = -ENOMEM;
741 }
742
743 if (!err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 info->fbcon_par = ops;
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -0700745
746 if (vc)
747 set_blitting_type(vc, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
749
750 if (err) {
751 con2fb_map[unit] = oldidx;
752 module_put(info->fbops->owner);
753 }
754
755 return err;
756}
757
758static int con2fb_release_oldinfo(struct vc_data *vc, struct fb_info *oldinfo,
759 struct fb_info *newinfo, int unit,
760 int oldidx, int found)
761{
762 struct fbcon_ops *ops = oldinfo->fbcon_par;
Florian Tobias Schandinat0fcf6ad2009-09-22 16:47:44 -0700763 int err = 0, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 if (oldinfo->fbops->fb_release &&
766 oldinfo->fbops->fb_release(oldinfo, 0)) {
767 con2fb_map[unit] = oldidx;
768 if (!found && newinfo->fbops->fb_release)
769 newinfo->fbops->fb_release(newinfo, 0);
770 if (!found)
771 module_put(newinfo->fbops->owner);
772 err = -ENODEV;
773 }
774
775 if (!err) {
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -0700776 fbcon_del_cursor_timer(oldinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 kfree(ops->cursor_state.mask);
778 kfree(ops->cursor_data);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800779 kfree(ops->fontbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 kfree(oldinfo->fbcon_par);
781 oldinfo->fbcon_par = NULL;
782 module_put(oldinfo->fbops->owner);
Antonino A. Daplasdd0314f2005-11-07 01:00:38 -0800783 /*
784 If oldinfo and newinfo are driving the same hardware,
785 the fb_release() method of oldinfo may attempt to
786 restore the hardware state. This will leave the
787 newinfo in an undefined state. Thus, a call to
788 fb_set_par() may be needed for the newinfo.
789 */
Florian Tobias Schandinat0fcf6ad2009-09-22 16:47:44 -0700790 if (newinfo->fbops->fb_set_par) {
791 ret = newinfo->fbops->fb_set_par(newinfo);
792
793 if (ret)
794 printk(KERN_ERR "con2fb_release_oldinfo: "
795 "detected unhandled fb_set_par error, "
796 "error code %d\n", ret);
797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799
800 return err;
801}
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803static void con2fb_init_display(struct vc_data *vc, struct fb_info *info,
804 int unit, int show_logo)
805{
806 struct fbcon_ops *ops = info->fbcon_par;
Florian Tobias Schandinat0fcf6ad2009-09-22 16:47:44 -0700807 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 ops->currcon = fg_console;
810
Florian Tobias Schandinat0fcf6ad2009-09-22 16:47:44 -0700811 if (info->fbops->fb_set_par && !(ops->flags & FBCON_FLAGS_INIT)) {
812 ret = info->fbops->fb_set_par(info);
813
814 if (ret)
815 printk(KERN_ERR "con2fb_init_display: detected "
816 "unhandled fb_set_par error, "
817 "error code %d\n", ret);
818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 ops->flags |= FBCON_FLAGS_INIT;
821 ops->graphics = 0;
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -0700822 fbcon_set_disp(info, &info->var, unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 if (show_logo) {
825 struct vc_data *fg_vc = vc_cons[fg_console].d;
826 struct fb_info *fg_info =
827 registered_fb[con2fb_map[fg_console]];
828
829 fbcon_prepare_logo(fg_vc, fg_info, fg_vc->vc_cols,
830 fg_vc->vc_rows, fg_vc->vc_cols,
831 fg_vc->vc_rows);
832 }
833
834 update_screen(vc_cons[fg_console].d);
835}
836
837/**
838 * set_con2fb_map - map console to frame buffer device
839 * @unit: virtual console number to map
840 * @newidx: frame buffer index to map virtual console to
841 * @user: user request
842 *
843 * Maps a virtual console @unit to a frame buffer device
844 * @newidx.
Dave Airlie054430e2013-01-25 11:38:56 +1000845 *
846 * This should be called with the console lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 */
848static int set_con2fb_map(int unit, int newidx, int user)
849{
850 struct vc_data *vc = vc_cons[unit].d;
851 int oldidx = con2fb_map[unit];
852 struct fb_info *info = registered_fb[newidx];
853 struct fb_info *oldinfo = NULL;
854 int found, err = 0;
855
856 if (oldidx == newidx)
857 return 0;
858
Dave Airlie32b98bf2010-12-21 01:41:17 +0000859 if (!info)
Antonino A. Daplase614b182006-06-26 00:27:09 -0700860 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Dave Airlie32b98bf2010-12-21 01:41:17 +0000862 if (!search_for_mapped_con() || !con_is_bound(&fb_con)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 info_idx = newidx;
Dave Airlie054430e2013-01-25 11:38:56 +1000864 return do_fbcon_takeover(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 }
866
867 if (oldidx != -1)
868 oldinfo = registered_fb[oldidx];
869
870 found = search_fb_in_map(newidx);
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 con2fb_map[unit] = newidx;
873 if (!err && !found)
874 err = con2fb_acquire_newinfo(vc, info, unit, oldidx);
875
876
877 /*
878 * If old fb is not mapped to any of the consoles,
879 * fbcon should release it.
880 */
881 if (!err && oldinfo && !search_fb_in_map(oldidx))
882 err = con2fb_release_oldinfo(vc, oldinfo, info, unit, oldidx,
883 found);
884
885 if (!err) {
886 int show_logo = (fg_console == 0 && !user &&
887 logo_shown != FBCON_LOGO_DONTSHOW);
888
889 if (!found)
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -0700890 fbcon_add_cursor_timer(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 con2fb_map_boot[unit] = newidx;
892 con2fb_init_display(vc, info, unit, show_logo);
893 }
894
Antonino A. Daplase614b182006-06-26 00:27:09 -0700895 if (!search_fb_in_map(info_idx))
896 info_idx = newidx;
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return err;
899}
900
901/*
902 * Low Level Operations
903 */
904/* NOTE: fbcon cannot be __init: it may be called from take_over_console later */
905static int var_to_display(struct display *disp,
906 struct fb_var_screeninfo *var,
907 struct fb_info *info)
908{
909 disp->xres_virtual = var->xres_virtual;
910 disp->yres_virtual = var->yres_virtual;
911 disp->bits_per_pixel = var->bits_per_pixel;
912 disp->grayscale = var->grayscale;
913 disp->nonstd = var->nonstd;
914 disp->accel_flags = var->accel_flags;
915 disp->height = var->height;
916 disp->width = var->width;
917 disp->red = var->red;
918 disp->green = var->green;
919 disp->blue = var->blue;
920 disp->transp = var->transp;
921 disp->rotate = var->rotate;
922 disp->mode = fb_match_mode(var, &info->modelist);
923 if (disp->mode == NULL)
924 /* This should not happen */
925 return -EINVAL;
926 return 0;
927}
928
929static void display_to_var(struct fb_var_screeninfo *var,
930 struct display *disp)
931{
932 fb_videomode_to_var(var, disp->mode);
933 var->xres_virtual = disp->xres_virtual;
934 var->yres_virtual = disp->yres_virtual;
935 var->bits_per_pixel = disp->bits_per_pixel;
936 var->grayscale = disp->grayscale;
937 var->nonstd = disp->nonstd;
938 var->accel_flags = disp->accel_flags;
939 var->height = disp->height;
940 var->width = disp->width;
941 var->red = disp->red;
942 var->green = disp->green;
943 var->blue = disp->blue;
944 var->transp = disp->transp;
945 var->rotate = disp->rotate;
946}
947
948static const char *fbcon_startup(void)
949{
950 const char *display_desc = "frame buffer device";
951 struct display *p = &fb_display[fg_console];
952 struct vc_data *vc = vc_cons[fg_console].d;
Jan Beulich2f4516d2005-09-13 01:25:44 -0700953 const struct font_desc *font = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 struct module *owner;
955 struct fb_info *info = NULL;
956 struct fbcon_ops *ops;
957 int rows, cols;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 /*
960 * If num_registered_fb is zero, this is a call for the dummy part.
961 * The frame buffer devices weren't initialized yet.
962 */
963 if (!num_registered_fb || info_idx == -1)
964 return display_desc;
965 /*
966 * Instead of blindly using registered_fb[0], we use info_idx, set by
967 * fb_console_init();
968 */
969 info = registered_fb[info_idx];
970 if (!info)
971 return NULL;
972
973 owner = info->fbops->owner;
974 if (!try_module_get(owner))
975 return NULL;
976 if (info->fbops->fb_open && info->fbops->fb_open(info, 0)) {
977 module_put(owner);
978 return NULL;
979 }
980
Antonino A. Daplasa39bc342006-01-09 20:53:44 -0800981 ops = kzalloc(sizeof(struct fbcon_ops), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (!ops) {
983 module_put(owner);
984 return NULL;
985 }
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 ops->currcon = -1;
988 ops->graphics = 1;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800989 ops->cur_rotate = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 info->fbcon_par = ops;
Marcin Slusarz2428e59b2008-02-06 01:39:14 -0800991 p->con_rotate = initial_rotation;
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800992 set_blitting_type(vc, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994 if (info->fix.type != FB_TYPE_TEXT) {
995 if (fbcon_softback_size) {
996 if (!softback_buf) {
997 softback_buf =
998 (unsigned long)
999 kmalloc(fbcon_softback_size,
1000 GFP_KERNEL);
1001 if (!softback_buf) {
1002 fbcon_softback_size = 0;
1003 softback_top = 0;
1004 }
1005 }
1006 } else {
1007 if (softback_buf) {
1008 kfree((void *) softback_buf);
1009 softback_buf = 0;
1010 softback_top = 0;
1011 }
1012 }
1013 if (softback_buf)
1014 softback_in = softback_top = softback_curr =
1015 softback_buf;
1016 softback_lines = 0;
1017 }
1018
1019 /* Setup default font */
Dave Airlieae128782013-01-24 16:12:41 +10001020 if (!p->fontdata && !vc->vc_font.data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (!fontname[0] || !(font = find_font(fontname)))
1022 font = get_default_font(info->var.xres,
Antonino A. Daplas2d2699d2007-05-08 00:39:11 -07001023 info->var.yres,
1024 info->pixmap.blit_x,
1025 info->pixmap.blit_y);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 vc->vc_font.width = font->width;
1027 vc->vc_font.height = font->height;
Jan Beulich2f4516d2005-09-13 01:25:44 -07001028 vc->vc_font.data = (void *)(p->fontdata = font->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 vc->vc_font.charcount = 256; /* FIXME Need to support more fonts */
Dave Airlieae128782013-01-24 16:12:41 +10001030 } else {
1031 p->fontdata = vc->vc_font.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 }
1033
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001034 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres);
1035 rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
1036 cols /= vc->vc_font.width;
1037 rows /= vc->vc_font.height;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 vc_resize(vc, cols, rows);
1039
1040 DPRINTK("mode: %s\n", info->fix.id);
1041 DPRINTK("visual: %d\n", info->fix.visual);
1042 DPRINTK("res: %dx%d-%d\n", info->var.xres,
1043 info->var.yres,
1044 info->var.bits_per_pixel);
1045
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07001046 fbcon_add_cursor_timer(info);
Antonino A. Daplase614b182006-06-26 00:27:09 -07001047 fbcon_has_exited = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return display_desc;
1049}
1050
1051static void fbcon_init(struct vc_data *vc, int init)
1052{
1053 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1054 struct fbcon_ops *ops;
1055 struct vc_data **default_mode = vc->vc_display_fg;
1056 struct vc_data *svc = *default_mode;
1057 struct display *t, *p = &fb_display[vc->vc_num];
1058 int logo = 1, new_rows, new_cols, rows, cols, charcnt = 256;
Florian Tobias Schandinat0fcf6ad2009-09-22 16:47:44 -07001059 int cap, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 if (info_idx == -1 || info == NULL)
1062 return;
Adrian Bunk306958e2005-05-01 08:59:23 -07001063
1064 cap = info->flags;
1065
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (vc != svc || logo_shown == FBCON_LOGO_DONTSHOW ||
1067 (info->fix.type == FB_TYPE_TEXT))
1068 logo = 0;
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (var_to_display(p, &info->var, info))
1071 return;
1072
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07001073 if (!info->fbcon_par)
1074 con2fb_acquire_newinfo(vc, info, vc->vc_num, -1);
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 /* If we are not the first console on this
1077 fb, copy the font from that console */
Antonino A. Daplase614b182006-06-26 00:27:09 -07001078 t = &fb_display[fg_console];
1079 if (!p->fontdata) {
1080 if (t->fontdata) {
1081 struct vc_data *fvc = vc_cons[fg_console].d;
1082
1083 vc->vc_font.data = (void *)(p->fontdata =
1084 fvc->vc_font.data);
1085 vc->vc_font.width = fvc->vc_font.width;
1086 vc->vc_font.height = fvc->vc_font.height;
1087 p->userfont = t->userfont;
1088
1089 if (p->userfont)
1090 REFCOUNT(p->fontdata)++;
1091 } else {
1092 const struct font_desc *font = NULL;
1093
1094 if (!fontname[0] || !(font = find_font(fontname)))
1095 font = get_default_font(info->var.xres,
Antonino A. Daplas2d2699d2007-05-08 00:39:11 -07001096 info->var.yres,
1097 info->pixmap.blit_x,
1098 info->pixmap.blit_y);
Antonino A. Daplase614b182006-06-26 00:27:09 -07001099 vc->vc_font.width = font->width;
1100 vc->vc_font.height = font->height;
1101 vc->vc_font.data = (void *)(p->fontdata = font->data);
1102 vc->vc_font.charcount = 256; /* FIXME Need to
1103 support more fonts */
1104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 }
Antonino A. Daplase614b182006-06-26 00:27:09 -07001106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (p->userfont)
1108 charcnt = FNTCHARCNT(p->fontdata);
Antonino A. Daplase614b182006-06-26 00:27:09 -07001109
Jesse Barnes8fd4bd22010-06-23 12:56:12 -07001110 vc->vc_panic_force_write = !!(info->flags & FBINFO_CAN_FORCE_OUTPUT);
Antonino A. Daplasb8c90942005-09-09 13:04:37 -07001111 vc->vc_can_do_color = (fb_get_color_depth(&info->var, &info->fix)!=1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 vc->vc_complement_mask = vc->vc_can_do_color ? 0x7700 : 0x0800;
1113 if (charcnt == 256) {
1114 vc->vc_hi_font_mask = 0;
1115 } else {
1116 vc->vc_hi_font_mask = 0x100;
1117 if (vc->vc_can_do_color)
1118 vc->vc_complement_mask <<= 1;
1119 }
1120
1121 if (!*svc->vc_uni_pagedir_loc)
1122 con_set_default_unimap(svc);
1123 if (!*vc->vc_uni_pagedir_loc)
1124 con_copy_unimap(vc, svc);
1125
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001126 ops = info->fbcon_par;
Marcin Slusarz2428e59b2008-02-06 01:39:14 -08001127 p->con_rotate = initial_rotation;
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08001128 set_blitting_type(vc, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 cols = vc->vc_cols;
1131 rows = vc->vc_rows;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001132 new_cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres);
1133 new_rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
1134 new_cols /= vc->vc_font.width;
1135 new_rows /= vc->vc_font.height;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 /*
1138 * We must always set the mode. The mode of the previous console
1139 * driver could be in the same resolution but we are using different
1140 * hardware so we have to initialize the hardware.
1141 *
1142 * We need to do it in fbcon_init() to prevent screen corruption.
1143 */
Knut Petersend354d9a2006-01-07 10:22:04 +01001144 if (CON_IS_VISIBLE(vc) && vc->vc_mode == KD_TEXT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 if (info->fbops->fb_set_par &&
Florian Tobias Schandinat0fcf6ad2009-09-22 16:47:44 -07001146 !(ops->flags & FBCON_FLAGS_INIT)) {
1147 ret = info->fbops->fb_set_par(info);
1148
1149 if (ret)
1150 printk(KERN_ERR "fbcon_init: detected "
1151 "unhandled fb_set_par error, "
1152 "error code %d\n", ret);
1153 }
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 ops->flags |= FBCON_FLAGS_INIT;
1156 }
1157
1158 ops->graphics = 0;
1159
1160 if ((cap & FBINFO_HWACCEL_COPYAREA) &&
1161 !(cap & FBINFO_HWACCEL_DISABLED))
1162 p->scrollmode = SCROLL_MOVE;
1163 else /* default to something safe */
1164 p->scrollmode = SCROLL_REDRAW;
1165
1166 /*
1167 * ++guenther: console.c:vc_allocate() relies on initializing
1168 * vc_{cols,rows}, but we must not set those if we are only
1169 * resizing the console.
1170 */
Johannes Weiner0035fe02009-08-06 15:07:36 -07001171 if (init) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 vc->vc_cols = new_cols;
1173 vc->vc_rows = new_rows;
Johannes Weiner0035fe02009-08-06 15:07:36 -07001174 } else
1175 vc_resize(vc, new_cols, new_rows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 if (logo)
1178 fbcon_prepare_logo(vc, info, cols, rows, new_cols, new_rows);
1179
Antonino A. Daplas4d9c5b62005-11-07 01:00:36 -08001180 if (vc == svc && softback_buf)
1181 fbcon_update_softback(vc);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001182
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08001183 if (ops->rotate_font && ops->rotate_font(info, vc)) {
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001184 ops->rotate = FB_ROTATE_UR;
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08001185 set_blitting_type(vc, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001186 }
1187
Antonino A. Daplas1a37d5f2006-03-31 02:31:45 -08001188 ops->p = &fb_display[fg_console];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189}
1190
Dave Airlieae128782013-01-24 16:12:41 +10001191static void fbcon_free_font(struct display *p, bool freefont)
Antonino A. Daplase614b182006-06-26 00:27:09 -07001192{
Dave Airlieae128782013-01-24 16:12:41 +10001193 if (freefont && p->userfont && p->fontdata && (--REFCOUNT(p->fontdata) == 0))
Antonino A. Daplase614b182006-06-26 00:27:09 -07001194 kfree(p->fontdata - FONT_EXTRA_WORDS * sizeof(int));
1195 p->fontdata = NULL;
1196 p->userfont = 0;
1197}
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199static void fbcon_deinit(struct vc_data *vc)
1200{
1201 struct display *p = &fb_display[vc->vc_num];
Antonino A. Daplase614b182006-06-26 00:27:09 -07001202 struct fb_info *info;
1203 struct fbcon_ops *ops;
1204 int idx;
Dave Airlieae128782013-01-24 16:12:41 +10001205 bool free_font = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Antonino A. Daplase614b182006-06-26 00:27:09 -07001207 idx = con2fb_map[vc->vc_num];
1208
1209 if (idx == -1)
1210 goto finished;
1211
1212 info = registered_fb[idx];
1213
1214 if (!info)
1215 goto finished;
1216
Dave Airlieae128782013-01-24 16:12:41 +10001217 if (info->flags & FBINFO_MISC_FIRMWARE)
1218 free_font = false;
Antonino A. Daplase614b182006-06-26 00:27:09 -07001219 ops = info->fbcon_par;
1220
1221 if (!ops)
1222 goto finished;
1223
1224 if (CON_IS_VISIBLE(vc))
1225 fbcon_del_cursor_timer(info);
1226
1227 ops->flags &= ~FBCON_FLAGS_INIT;
1228finished:
1229
Dave Airlieae128782013-01-24 16:12:41 +10001230 fbcon_free_font(p, free_font);
Mika Kuoppalae6637d52013-04-22 14:19:26 +03001231 if (free_font)
1232 vc->vc_font.data = NULL;
Dave Airlieae128782013-01-24 16:12:41 +10001233
Antonino A. Daplase614b182006-06-26 00:27:09 -07001234 if (!con_is_bound(&fb_con))
1235 fbcon_exit();
1236
1237 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238}
1239
1240/* ====================================================================== */
1241
1242/* fbcon_XXX routines - interface used by the world
1243 *
1244 * This system is now divided into two levels because of complications
1245 * caused by hardware scrolling. Top level functions:
1246 *
1247 * fbcon_bmove(), fbcon_clear(), fbcon_putc(), fbcon_clear_margins()
1248 *
1249 * handles y values in range [0, scr_height-1] that correspond to real
1250 * screen positions. y_wrap shift means that first line of bitmap may be
1251 * anywhere on this display. These functions convert lineoffsets to
1252 * bitmap offsets and deal with the wrap-around case by splitting blits.
1253 *
1254 * fbcon_bmove_physical_8() -- These functions fast implementations
1255 * fbcon_clear_physical_8() -- of original fbcon_XXX fns.
1256 * fbcon_putc_physical_8() -- (font width != 8) may be added later
1257 *
1258 * WARNING:
1259 *
1260 * At the moment fbcon_putc() cannot blit across vertical wrap boundary
1261 * Implies should only really hardware scroll in rows. Only reason for
1262 * restriction is simplicity & efficiency at the moment.
1263 */
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265static void fbcon_clear(struct vc_data *vc, int sy, int sx, int height,
1266 int width)
1267{
1268 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1269 struct fbcon_ops *ops = info->fbcon_par;
1270
1271 struct display *p = &fb_display[vc->vc_num];
1272 u_int y_break;
1273
1274 if (fbcon_is_inactive(vc, info))
1275 return;
1276
1277 if (!height || !width)
1278 return;
1279
Kamal Mostafa256fc0e2013-02-21 16:42:07 -08001280 if (sy < vc->vc_top && vc->vc_top == logo_lines) {
Krzysztof Heltc213ddf2008-08-05 13:01:26 -07001281 vc->vc_top = 0;
Kamal Mostafa256fc0e2013-02-21 16:42:07 -08001282 /*
1283 * If the font dimensions are not an integral of the display
1284 * dimensions then the ops->clear below won't end up clearing
1285 * the margins. Call clear_margins here in case the logo
1286 * bitmap stretched into the margin area.
1287 */
1288 fbcon_clear_margins(vc, 0);
1289 }
Krzysztof Heltc213ddf2008-08-05 13:01:26 -07001290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 /* Split blits that cross physical y_wrap boundary */
1292
1293 y_break = p->vrows - p->yscroll;
1294 if (sy < y_break && sy + height - 1 >= y_break) {
1295 u_int b = y_break - sy;
1296 ops->clear(vc, info, real_y(p, sy), sx, b, width);
1297 ops->clear(vc, info, real_y(p, sy + b), sx, height - b,
1298 width);
1299 } else
1300 ops->clear(vc, info, real_y(p, sy), sx, height, width);
1301}
1302
1303static void fbcon_putcs(struct vc_data *vc, const unsigned short *s,
1304 int count, int ypos, int xpos)
1305{
1306 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1307 struct display *p = &fb_display[vc->vc_num];
1308 struct fbcon_ops *ops = info->fbcon_par;
1309
1310 if (!fbcon_is_inactive(vc, info))
1311 ops->putcs(vc, info, s, count, real_y(p, ypos), xpos,
1312 get_color(vc, info, scr_readw(s), 1),
1313 get_color(vc, info, scr_readw(s), 0));
1314}
1315
1316static void fbcon_putc(struct vc_data *vc, int c, int ypos, int xpos)
1317{
1318 unsigned short chr;
1319
1320 scr_writew(c, &chr);
1321 fbcon_putcs(vc, &chr, 1, ypos, xpos);
1322}
1323
1324static void fbcon_clear_margins(struct vc_data *vc, int bottom_only)
1325{
1326 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1327 struct fbcon_ops *ops = info->fbcon_par;
1328
1329 if (!fbcon_is_inactive(vc, info))
1330 ops->clear_margins(vc, info, bottom_only);
1331}
1332
1333static void fbcon_cursor(struct vc_data *vc, int mode)
1334{
1335 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1336 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 int y;
1338 int c = scr_readw((u16 *) vc->vc_pos);
1339
Michal Januszewskid1e23062007-05-08 00:38:07 -07001340 if (fbcon_is_inactive(vc, info) || vc->vc_deccm != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 return;
1342
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -07001343 if (vc->vc_cursor_type & 0x10)
1344 fbcon_del_cursor_timer(info);
1345 else
1346 fbcon_add_cursor_timer(info);
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 ops->cursor_flash = (mode == CM_ERASE) ? 0 : 1;
1349 if (mode & CM_SOFTBACK) {
1350 mode &= ~CM_SOFTBACK;
1351 y = softback_lines;
1352 } else {
1353 if (softback_lines)
1354 fbcon_set_origin(vc);
1355 y = 0;
1356 }
1357
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08001358 ops->cursor(vc, info, mode, y, get_color(vc, info, c, 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 get_color(vc, info, c, 0));
1360 vbl_cursor_cnt = CURSOR_DRAW_DELAY;
1361}
1362
1363static int scrollback_phys_max = 0;
1364static int scrollback_max = 0;
1365static int scrollback_current = 0;
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367static void fbcon_set_disp(struct fb_info *info, struct fb_var_screeninfo *var,
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07001368 int unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07001370 struct display *p, *t;
1371 struct vc_data **default_mode, *vc;
1372 struct vc_data *svc;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001373 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 int rows, cols, charcnt = 256;
1375
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07001376 p = &fb_display[unit];
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 if (var_to_display(p, var, info))
1379 return;
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07001380
1381 vc = vc_cons[unit].d;
1382
1383 if (!vc)
1384 return;
1385
1386 default_mode = vc->vc_display_fg;
1387 svc = *default_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 t = &fb_display[svc->vc_num];
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07001389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (!vc->vc_font.data) {
Jan Beulich2f4516d2005-09-13 01:25:44 -07001391 vc->vc_font.data = (void *)(p->fontdata = t->fontdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 vc->vc_font.width = (*default_mode)->vc_font.width;
1393 vc->vc_font.height = (*default_mode)->vc_font.height;
1394 p->userfont = t->userfont;
1395 if (p->userfont)
1396 REFCOUNT(p->fontdata)++;
1397 }
1398 if (p->userfont)
1399 charcnt = FNTCHARCNT(p->fontdata);
1400
Antonino A. Daplasb8c90942005-09-09 13:04:37 -07001401 var->activate = FB_ACTIVATE_NOW;
1402 info->var.activate = var->activate;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001403 var->yoffset = info->var.yoffset;
1404 var->xoffset = info->var.xoffset;
Antonino A. Daplasb8c90942005-09-09 13:04:37 -07001405 fb_set_var(info, var);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001406 ops->var = info->var;
Antonino A. Daplasb8c90942005-09-09 13:04:37 -07001407 vc->vc_can_do_color = (fb_get_color_depth(&info->var, &info->fix)!=1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 vc->vc_complement_mask = vc->vc_can_do_color ? 0x7700 : 0x0800;
1409 if (charcnt == 256) {
1410 vc->vc_hi_font_mask = 0;
1411 } else {
1412 vc->vc_hi_font_mask = 0x100;
1413 if (vc->vc_can_do_color)
1414 vc->vc_complement_mask <<= 1;
1415 }
1416
1417 if (!*svc->vc_uni_pagedir_loc)
1418 con_set_default_unimap(svc);
1419 if (!*vc->vc_uni_pagedir_loc)
1420 con_copy_unimap(vc, svc);
1421
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001422 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres);
1423 rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
1424 cols /= vc->vc_font.width;
1425 rows /= vc->vc_font.height;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 vc_resize(vc, cols, rows);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 if (CON_IS_VISIBLE(vc)) {
1429 update_screen(vc);
Antonino A. Daplas4d9c5b62005-11-07 01:00:36 -08001430 if (softback_buf)
1431 fbcon_update_softback(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 }
1433}
1434
1435static __inline__ void ywrap_up(struct vc_data *vc, int count)
1436{
1437 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001438 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 struct display *p = &fb_display[vc->vc_num];
1440
1441 p->yscroll += count;
1442 if (p->yscroll >= p->vrows) /* Deal with wrap */
1443 p->yscroll -= p->vrows;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001444 ops->var.xoffset = 0;
1445 ops->var.yoffset = p->yscroll * vc->vc_font.height;
1446 ops->var.vmode |= FB_VMODE_YWRAP;
1447 ops->update_start(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 scrollback_max += count;
1449 if (scrollback_max > scrollback_phys_max)
1450 scrollback_max = scrollback_phys_max;
1451 scrollback_current = 0;
1452}
1453
1454static __inline__ void ywrap_down(struct vc_data *vc, int count)
1455{
1456 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001457 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 struct display *p = &fb_display[vc->vc_num];
1459
1460 p->yscroll -= count;
1461 if (p->yscroll < 0) /* Deal with wrap */
1462 p->yscroll += p->vrows;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001463 ops->var.xoffset = 0;
1464 ops->var.yoffset = p->yscroll * vc->vc_font.height;
1465 ops->var.vmode |= FB_VMODE_YWRAP;
1466 ops->update_start(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 scrollback_max -= count;
1468 if (scrollback_max < 0)
1469 scrollback_max = 0;
1470 scrollback_current = 0;
1471}
1472
1473static __inline__ void ypan_up(struct vc_data *vc, int count)
1474{
1475 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1476 struct display *p = &fb_display[vc->vc_num];
1477 struct fbcon_ops *ops = info->fbcon_par;
1478
1479 p->yscroll += count;
1480 if (p->yscroll > p->vrows - vc->vc_rows) {
1481 ops->bmove(vc, info, p->vrows - vc->vc_rows,
1482 0, 0, 0, vc->vc_rows, vc->vc_cols);
1483 p->yscroll -= p->vrows - vc->vc_rows;
1484 }
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001485
1486 ops->var.xoffset = 0;
1487 ops->var.yoffset = p->yscroll * vc->vc_font.height;
1488 ops->var.vmode &= ~FB_VMODE_YWRAP;
1489 ops->update_start(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 fbcon_clear_margins(vc, 1);
1491 scrollback_max += count;
1492 if (scrollback_max > scrollback_phys_max)
1493 scrollback_max = scrollback_phys_max;
1494 scrollback_current = 0;
1495}
1496
1497static __inline__ void ypan_up_redraw(struct vc_data *vc, int t, int count)
1498{
1499 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001500 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 struct display *p = &fb_display[vc->vc_num];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
1503 p->yscroll += count;
Antonino A. Daplasa39bc342006-01-09 20:53:44 -08001504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 if (p->yscroll > p->vrows - vc->vc_rows) {
1506 p->yscroll -= p->vrows - vc->vc_rows;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 fbcon_redraw_move(vc, p, t + count, vc->vc_rows - count, t);
Antonino A. Daplasa39bc342006-01-09 20:53:44 -08001508 }
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001509
1510 ops->var.xoffset = 0;
1511 ops->var.yoffset = p->yscroll * vc->vc_font.height;
1512 ops->var.vmode &= ~FB_VMODE_YWRAP;
1513 ops->update_start(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 fbcon_clear_margins(vc, 1);
1515 scrollback_max += count;
1516 if (scrollback_max > scrollback_phys_max)
1517 scrollback_max = scrollback_phys_max;
1518 scrollback_current = 0;
1519}
1520
1521static __inline__ void ypan_down(struct vc_data *vc, int count)
1522{
1523 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1524 struct display *p = &fb_display[vc->vc_num];
1525 struct fbcon_ops *ops = info->fbcon_par;
1526
1527 p->yscroll -= count;
1528 if (p->yscroll < 0) {
1529 ops->bmove(vc, info, 0, 0, p->vrows - vc->vc_rows,
1530 0, vc->vc_rows, vc->vc_cols);
1531 p->yscroll += p->vrows - vc->vc_rows;
1532 }
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001533
1534 ops->var.xoffset = 0;
1535 ops->var.yoffset = p->yscroll * vc->vc_font.height;
1536 ops->var.vmode &= ~FB_VMODE_YWRAP;
1537 ops->update_start(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 fbcon_clear_margins(vc, 1);
1539 scrollback_max -= count;
1540 if (scrollback_max < 0)
1541 scrollback_max = 0;
1542 scrollback_current = 0;
1543}
1544
1545static __inline__ void ypan_down_redraw(struct vc_data *vc, int t, int count)
1546{
1547 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001548 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 struct display *p = &fb_display[vc->vc_num];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 p->yscroll -= count;
Antonino A. Daplasa39bc342006-01-09 20:53:44 -08001552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 if (p->yscroll < 0) {
1554 p->yscroll += p->vrows - vc->vc_rows;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 fbcon_redraw_move(vc, p, t, vc->vc_rows - count, t + count);
Antonino A. Daplasa39bc342006-01-09 20:53:44 -08001556 }
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001557
1558 ops->var.xoffset = 0;
1559 ops->var.yoffset = p->yscroll * vc->vc_font.height;
1560 ops->var.vmode &= ~FB_VMODE_YWRAP;
1561 ops->update_start(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 fbcon_clear_margins(vc, 1);
1563 scrollback_max -= count;
1564 if (scrollback_max < 0)
1565 scrollback_max = 0;
1566 scrollback_current = 0;
1567}
1568
1569static void fbcon_redraw_softback(struct vc_data *vc, struct display *p,
1570 long delta)
1571{
1572 int count = vc->vc_rows;
1573 unsigned short *d, *s;
1574 unsigned long n;
1575 int line = 0;
1576
1577 d = (u16 *) softback_curr;
1578 if (d == (u16 *) softback_in)
1579 d = (u16 *) vc->vc_origin;
1580 n = softback_curr + delta * vc->vc_size_row;
1581 softback_lines -= delta;
1582 if (delta < 0) {
1583 if (softback_curr < softback_top && n < softback_buf) {
1584 n += softback_end - softback_buf;
1585 if (n < softback_top) {
1586 softback_lines -=
1587 (softback_top - n) / vc->vc_size_row;
1588 n = softback_top;
1589 }
1590 } else if (softback_curr >= softback_top
1591 && n < softback_top) {
1592 softback_lines -=
1593 (softback_top - n) / vc->vc_size_row;
1594 n = softback_top;
1595 }
1596 } else {
1597 if (softback_curr > softback_in && n >= softback_end) {
1598 n += softback_buf - softback_end;
1599 if (n > softback_in) {
1600 n = softback_in;
1601 softback_lines = 0;
1602 }
1603 } else if (softback_curr <= softback_in && n > softback_in) {
1604 n = softback_in;
1605 softback_lines = 0;
1606 }
1607 }
1608 if (n == softback_curr)
1609 return;
1610 softback_curr = n;
1611 s = (u16 *) softback_curr;
1612 if (s == (u16 *) softback_in)
1613 s = (u16 *) vc->vc_origin;
1614 while (count--) {
1615 unsigned short *start;
1616 unsigned short *le;
1617 unsigned short c;
1618 int x = 0;
1619 unsigned short attr = 1;
1620
1621 start = s;
1622 le = advance_row(s, 1);
1623 do {
1624 c = scr_readw(s);
1625 if (attr != (c & 0xff00)) {
1626 attr = c & 0xff00;
1627 if (s > start) {
1628 fbcon_putcs(vc, start, s - start,
1629 line, x);
1630 x += s - start;
1631 start = s;
1632 }
1633 }
1634 if (c == scr_readw(d)) {
1635 if (s > start) {
1636 fbcon_putcs(vc, start, s - start,
1637 line, x);
1638 x += s - start + 1;
1639 start = s + 1;
1640 } else {
1641 x++;
1642 start++;
1643 }
1644 }
1645 s++;
1646 d++;
1647 } while (s < le);
1648 if (s > start)
1649 fbcon_putcs(vc, start, s - start, line, x);
1650 line++;
1651 if (d == (u16 *) softback_end)
1652 d = (u16 *) softback_buf;
1653 if (d == (u16 *) softback_in)
1654 d = (u16 *) vc->vc_origin;
1655 if (s == (u16 *) softback_end)
1656 s = (u16 *) softback_buf;
1657 if (s == (u16 *) softback_in)
1658 s = (u16 *) vc->vc_origin;
1659 }
1660}
1661
1662static void fbcon_redraw_move(struct vc_data *vc, struct display *p,
1663 int line, int count, int dy)
1664{
1665 unsigned short *s = (unsigned short *)
1666 (vc->vc_origin + vc->vc_size_row * line);
1667
1668 while (count--) {
1669 unsigned short *start = s;
1670 unsigned short *le = advance_row(s, 1);
1671 unsigned short c;
1672 int x = 0;
1673 unsigned short attr = 1;
1674
1675 do {
1676 c = scr_readw(s);
1677 if (attr != (c & 0xff00)) {
1678 attr = c & 0xff00;
1679 if (s > start) {
1680 fbcon_putcs(vc, start, s - start,
1681 dy, x);
1682 x += s - start;
1683 start = s;
1684 }
1685 }
1686 console_conditional_schedule();
1687 s++;
1688 } while (s < le);
1689 if (s > start)
1690 fbcon_putcs(vc, start, s - start, dy, x);
1691 console_conditional_schedule();
1692 dy++;
1693 }
1694}
1695
Krzysztof Heltbad07ff2007-07-17 04:05:25 -07001696static void fbcon_redraw_blit(struct vc_data *vc, struct fb_info *info,
1697 struct display *p, int line, int count, int ycount)
1698{
1699 int offset = ycount * vc->vc_cols;
1700 unsigned short *d = (unsigned short *)
1701 (vc->vc_origin + vc->vc_size_row * line);
1702 unsigned short *s = d + offset;
1703 struct fbcon_ops *ops = info->fbcon_par;
1704
1705 while (count--) {
1706 unsigned short *start = s;
1707 unsigned short *le = advance_row(s, 1);
1708 unsigned short c;
1709 int x = 0;
1710
1711 do {
1712 c = scr_readw(s);
1713
1714 if (c == scr_readw(d)) {
1715 if (s > start) {
1716 ops->bmove(vc, info, line + ycount, x,
1717 line, x, 1, s-start);
1718 x += s - start + 1;
1719 start = s + 1;
1720 } else {
1721 x++;
1722 start++;
1723 }
1724 }
1725
1726 scr_writew(c, d);
1727 console_conditional_schedule();
1728 s++;
1729 d++;
1730 } while (s < le);
1731 if (s > start)
1732 ops->bmove(vc, info, line + ycount, x, line, x, 1,
1733 s-start);
1734 console_conditional_schedule();
1735 if (ycount > 0)
1736 line++;
1737 else {
1738 line--;
1739 /* NOTE: We subtract two lines from these pointers */
1740 s -= vc->vc_size_row;
1741 d -= vc->vc_size_row;
1742 }
1743 }
1744}
1745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746static void fbcon_redraw(struct vc_data *vc, struct display *p,
1747 int line, int count, int offset)
1748{
1749 unsigned short *d = (unsigned short *)
1750 (vc->vc_origin + vc->vc_size_row * line);
1751 unsigned short *s = d + offset;
1752
1753 while (count--) {
1754 unsigned short *start = s;
1755 unsigned short *le = advance_row(s, 1);
1756 unsigned short c;
1757 int x = 0;
1758 unsigned short attr = 1;
1759
1760 do {
1761 c = scr_readw(s);
1762 if (attr != (c & 0xff00)) {
1763 attr = c & 0xff00;
1764 if (s > start) {
1765 fbcon_putcs(vc, start, s - start,
1766 line, x);
1767 x += s - start;
1768 start = s;
1769 }
1770 }
1771 if (c == scr_readw(d)) {
1772 if (s > start) {
1773 fbcon_putcs(vc, start, s - start,
1774 line, x);
1775 x += s - start + 1;
1776 start = s + 1;
1777 } else {
1778 x++;
1779 start++;
1780 }
1781 }
1782 scr_writew(c, d);
1783 console_conditional_schedule();
1784 s++;
1785 d++;
1786 } while (s < le);
1787 if (s > start)
1788 fbcon_putcs(vc, start, s - start, line, x);
1789 console_conditional_schedule();
1790 if (offset > 0)
1791 line++;
1792 else {
1793 line--;
1794 /* NOTE: We subtract two lines from these pointers */
1795 s -= vc->vc_size_row;
1796 d -= vc->vc_size_row;
1797 }
1798 }
1799}
1800
1801static inline void fbcon_softback_note(struct vc_data *vc, int t,
1802 int count)
1803{
1804 unsigned short *p;
1805
1806 if (vc->vc_num != fg_console)
1807 return;
1808 p = (unsigned short *) (vc->vc_origin + t * vc->vc_size_row);
1809
1810 while (count) {
1811 scr_memcpyw((u16 *) softback_in, p, vc->vc_size_row);
1812 count--;
1813 p = advance_row(p, 1);
1814 softback_in += vc->vc_size_row;
1815 if (softback_in == softback_end)
1816 softback_in = softback_buf;
1817 if (softback_in == softback_top) {
1818 softback_top += vc->vc_size_row;
1819 if (softback_top == softback_end)
1820 softback_top = softback_buf;
1821 }
1822 }
1823 softback_curr = softback_in;
1824}
1825
1826static int fbcon_scroll(struct vc_data *vc, int t, int b, int dir,
1827 int count)
1828{
1829 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1830 struct display *p = &fb_display[vc->vc_num];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 int scroll_partial = info->flags & FBINFO_PARTIAL_PAN_OK;
1832
1833 if (fbcon_is_inactive(vc, info))
1834 return -EINVAL;
1835
1836 fbcon_cursor(vc, CM_ERASE);
1837
1838 /*
1839 * ++Geert: Only use ywrap/ypan if the console is in text mode
1840 * ++Andrew: Only use ypan on hardware text mode when scrolling the
1841 * whole screen (prevents flicker).
1842 */
1843
1844 switch (dir) {
1845 case SM_UP:
1846 if (count > vc->vc_rows) /* Maximum realistic size */
1847 count = vc->vc_rows;
1848 if (softback_top)
1849 fbcon_softback_note(vc, t, count);
1850 if (logo_shown >= 0)
1851 goto redraw_up;
1852 switch (p->scrollmode) {
1853 case SCROLL_MOVE:
Krzysztof Heltbad07ff2007-07-17 04:05:25 -07001854 fbcon_redraw_blit(vc, info, p, t, b - t - count,
1855 count);
1856 fbcon_clear(vc, b - count, 0, count, vc->vc_cols);
1857 scr_memsetw((unsigned short *) (vc->vc_origin +
1858 vc->vc_size_row *
1859 (b - count)),
Linus Torvalds93f78da2008-10-14 12:12:02 -07001860 vc->vc_video_erase_char,
Krzysztof Heltbad07ff2007-07-17 04:05:25 -07001861 vc->vc_size_row * count);
Linus Torvalds93f78da2008-10-14 12:12:02 -07001862 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 break;
1864
1865 case SCROLL_WRAP_MOVE:
1866 if (b - t - count > 3 * vc->vc_rows >> 2) {
1867 if (t > 0)
1868 fbcon_bmove(vc, 0, 0, count, 0, t,
1869 vc->vc_cols);
1870 ywrap_up(vc, count);
1871 if (vc->vc_rows - b > 0)
1872 fbcon_bmove(vc, b - count, 0, b, 0,
1873 vc->vc_rows - b,
1874 vc->vc_cols);
1875 } else if (info->flags & FBINFO_READS_FAST)
1876 fbcon_bmove(vc, t + count, 0, t, 0,
1877 b - t - count, vc->vc_cols);
1878 else
1879 goto redraw_up;
1880 fbcon_clear(vc, b - count, 0, count, vc->vc_cols);
1881 break;
1882
1883 case SCROLL_PAN_REDRAW:
1884 if ((p->yscroll + count <=
1885 2 * (p->vrows - vc->vc_rows))
1886 && ((!scroll_partial && (b - t == vc->vc_rows))
1887 || (scroll_partial
1888 && (b - t - count >
1889 3 * vc->vc_rows >> 2)))) {
1890 if (t > 0)
1891 fbcon_redraw_move(vc, p, 0, t, count);
1892 ypan_up_redraw(vc, t, count);
1893 if (vc->vc_rows - b > 0)
Malcom Parsons26e780e2006-06-08 00:43:42 -07001894 fbcon_redraw_move(vc, p, b,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 vc->vc_rows - b, b);
1896 } else
1897 fbcon_redraw_move(vc, p, t + count, b - t - count, t);
1898 fbcon_clear(vc, b - count, 0, count, vc->vc_cols);
1899 break;
1900
1901 case SCROLL_PAN_MOVE:
1902 if ((p->yscroll + count <=
1903 2 * (p->vrows - vc->vc_rows))
1904 && ((!scroll_partial && (b - t == vc->vc_rows))
1905 || (scroll_partial
1906 && (b - t - count >
1907 3 * vc->vc_rows >> 2)))) {
1908 if (t > 0)
1909 fbcon_bmove(vc, 0, 0, count, 0, t,
1910 vc->vc_cols);
1911 ypan_up(vc, count);
1912 if (vc->vc_rows - b > 0)
1913 fbcon_bmove(vc, b - count, 0, b, 0,
1914 vc->vc_rows - b,
1915 vc->vc_cols);
1916 } else if (info->flags & FBINFO_READS_FAST)
1917 fbcon_bmove(vc, t + count, 0, t, 0,
1918 b - t - count, vc->vc_cols);
1919 else
1920 goto redraw_up;
1921 fbcon_clear(vc, b - count, 0, count, vc->vc_cols);
1922 break;
1923
1924 case SCROLL_REDRAW:
1925 redraw_up:
1926 fbcon_redraw(vc, p, t, b - t - count,
1927 count * vc->vc_cols);
1928 fbcon_clear(vc, b - count, 0, count, vc->vc_cols);
1929 scr_memsetw((unsigned short *) (vc->vc_origin +
1930 vc->vc_size_row *
1931 (b - count)),
Linus Torvalds93f78da2008-10-14 12:12:02 -07001932 vc->vc_video_erase_char,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 vc->vc_size_row * count);
Linus Torvalds93f78da2008-10-14 12:12:02 -07001934 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
1936 break;
1937
1938 case SM_DOWN:
1939 if (count > vc->vc_rows) /* Maximum realistic size */
1940 count = vc->vc_rows;
Jan Beuliche703ecc2005-09-13 01:25:43 -07001941 if (logo_shown >= 0)
1942 goto redraw_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 switch (p->scrollmode) {
1944 case SCROLL_MOVE:
Krzysztof Heltbad07ff2007-07-17 04:05:25 -07001945 fbcon_redraw_blit(vc, info, p, b - 1, b - t - count,
1946 -count);
1947 fbcon_clear(vc, t, 0, count, vc->vc_cols);
1948 scr_memsetw((unsigned short *) (vc->vc_origin +
1949 vc->vc_size_row *
1950 t),
Linus Torvalds93f78da2008-10-14 12:12:02 -07001951 vc->vc_video_erase_char,
Krzysztof Heltbad07ff2007-07-17 04:05:25 -07001952 vc->vc_size_row * count);
Linus Torvalds93f78da2008-10-14 12:12:02 -07001953 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 break;
1955
1956 case SCROLL_WRAP_MOVE:
1957 if (b - t - count > 3 * vc->vc_rows >> 2) {
1958 if (vc->vc_rows - b > 0)
1959 fbcon_bmove(vc, b, 0, b - count, 0,
1960 vc->vc_rows - b,
1961 vc->vc_cols);
1962 ywrap_down(vc, count);
1963 if (t > 0)
1964 fbcon_bmove(vc, count, 0, 0, 0, t,
1965 vc->vc_cols);
1966 } else if (info->flags & FBINFO_READS_FAST)
1967 fbcon_bmove(vc, t, 0, t + count, 0,
1968 b - t - count, vc->vc_cols);
1969 else
1970 goto redraw_down;
1971 fbcon_clear(vc, t, 0, count, vc->vc_cols);
1972 break;
1973
1974 case SCROLL_PAN_MOVE:
1975 if ((count - p->yscroll <= p->vrows - vc->vc_rows)
1976 && ((!scroll_partial && (b - t == vc->vc_rows))
1977 || (scroll_partial
1978 && (b - t - count >
1979 3 * vc->vc_rows >> 2)))) {
1980 if (vc->vc_rows - b > 0)
1981 fbcon_bmove(vc, b, 0, b - count, 0,
1982 vc->vc_rows - b,
1983 vc->vc_cols);
1984 ypan_down(vc, count);
1985 if (t > 0)
1986 fbcon_bmove(vc, count, 0, 0, 0, t,
1987 vc->vc_cols);
1988 } else if (info->flags & FBINFO_READS_FAST)
1989 fbcon_bmove(vc, t, 0, t + count, 0,
1990 b - t - count, vc->vc_cols);
1991 else
1992 goto redraw_down;
1993 fbcon_clear(vc, t, 0, count, vc->vc_cols);
1994 break;
1995
1996 case SCROLL_PAN_REDRAW:
1997 if ((count - p->yscroll <= p->vrows - vc->vc_rows)
1998 && ((!scroll_partial && (b - t == vc->vc_rows))
1999 || (scroll_partial
2000 && (b - t - count >
2001 3 * vc->vc_rows >> 2)))) {
2002 if (vc->vc_rows - b > 0)
2003 fbcon_redraw_move(vc, p, b, vc->vc_rows - b,
2004 b - count);
2005 ypan_down_redraw(vc, t, count);
2006 if (t > 0)
2007 fbcon_redraw_move(vc, p, count, t, 0);
2008 } else
2009 fbcon_redraw_move(vc, p, t, b - t - count, t + count);
2010 fbcon_clear(vc, t, 0, count, vc->vc_cols);
2011 break;
2012
2013 case SCROLL_REDRAW:
2014 redraw_down:
2015 fbcon_redraw(vc, p, b - 1, b - t - count,
2016 -count * vc->vc_cols);
2017 fbcon_clear(vc, t, 0, count, vc->vc_cols);
2018 scr_memsetw((unsigned short *) (vc->vc_origin +
2019 vc->vc_size_row *
2020 t),
Linus Torvalds93f78da2008-10-14 12:12:02 -07002021 vc->vc_video_erase_char,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 vc->vc_size_row * count);
Linus Torvalds93f78da2008-10-14 12:12:02 -07002023 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 }
2025 }
Linus Torvalds93f78da2008-10-14 12:12:02 -07002026 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027}
2028
2029
2030static void fbcon_bmove(struct vc_data *vc, int sy, int sx, int dy, int dx,
2031 int height, int width)
2032{
2033 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
2034 struct display *p = &fb_display[vc->vc_num];
2035
2036 if (fbcon_is_inactive(vc, info))
2037 return;
2038
2039 if (!width || !height)
2040 return;
2041
2042 /* Split blits that cross physical y_wrap case.
2043 * Pathological case involves 4 blits, better to use recursive
2044 * code rather than unrolled case
2045 *
2046 * Recursive invocations don't need to erase the cursor over and
2047 * over again, so we use fbcon_bmove_rec()
2048 */
2049 fbcon_bmove_rec(vc, p, sy, sx, dy, dx, height, width,
2050 p->vrows - p->yscroll);
2051}
2052
2053static void fbcon_bmove_rec(struct vc_data *vc, struct display *p, int sy, int sx,
2054 int dy, int dx, int height, int width, u_int y_break)
2055{
2056 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
2057 struct fbcon_ops *ops = info->fbcon_par;
2058 u_int b;
2059
2060 if (sy < y_break && sy + height > y_break) {
2061 b = y_break - sy;
2062 if (dy < sy) { /* Avoid trashing self */
2063 fbcon_bmove_rec(vc, p, sy, sx, dy, dx, b, width,
2064 y_break);
2065 fbcon_bmove_rec(vc, p, sy + b, sx, dy + b, dx,
2066 height - b, width, y_break);
2067 } else {
2068 fbcon_bmove_rec(vc, p, sy + b, sx, dy + b, dx,
2069 height - b, width, y_break);
2070 fbcon_bmove_rec(vc, p, sy, sx, dy, dx, b, width,
2071 y_break);
2072 }
2073 return;
2074 }
2075
2076 if (dy < y_break && dy + height > y_break) {
2077 b = y_break - dy;
2078 if (dy < sy) { /* Avoid trashing self */
2079 fbcon_bmove_rec(vc, p, sy, sx, dy, dx, b, width,
2080 y_break);
2081 fbcon_bmove_rec(vc, p, sy + b, sx, dy + b, dx,
2082 height - b, width, y_break);
2083 } else {
2084 fbcon_bmove_rec(vc, p, sy + b, sx, dy + b, dx,
2085 height - b, width, y_break);
2086 fbcon_bmove_rec(vc, p, sy, sx, dy, dx, b, width,
2087 y_break);
2088 }
2089 return;
2090 }
2091 ops->bmove(vc, info, real_y(p, sy), sx, real_y(p, dy), dx,
2092 height, width);
2093}
2094
Marcin Slusarzdef1be22008-10-29 14:01:01 -07002095static void updatescrollmode(struct display *p,
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002096 struct fb_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 struct vc_data *vc)
2098{
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002099 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 int fh = vc->vc_font.height;
2101 int cap = info->flags;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002102 u16 t = 0;
2103 int ypan = FBCON_SWAP(ops->rotate, info->fix.ypanstep,
2104 info->fix.xpanstep);
2105 int ywrap = FBCON_SWAP(ops->rotate, info->fix.ywrapstep, t);
2106 int yres = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
2107 int vyres = FBCON_SWAP(ops->rotate, info->var.yres_virtual,
2108 info->var.xres_virtual);
2109 int good_pan = (cap & FBINFO_HWACCEL_YPAN) &&
2110 divides(ypan, vc->vc_font.height) && vyres > yres;
2111 int good_wrap = (cap & FBINFO_HWACCEL_YWRAP) &&
2112 divides(ywrap, vc->vc_font.height) &&
Knut Petersen244ab722006-01-09 20:53:36 -08002113 divides(vc->vc_font.height, vyres) &&
2114 divides(vc->vc_font.height, yres);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 int reading_fast = cap & FBINFO_READS_FAST;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002116 int fast_copyarea = (cap & FBINFO_HWACCEL_COPYAREA) &&
2117 !(cap & FBINFO_HWACCEL_DISABLED);
2118 int fast_imageblit = (cap & FBINFO_HWACCEL_IMAGEBLIT) &&
2119 !(cap & FBINFO_HWACCEL_DISABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002121 p->vrows = vyres/fh;
2122 if (yres > (fh * (vc->vc_rows + 1)))
2123 p->vrows -= (yres - (fh * vc->vc_rows)) / fh;
2124 if ((yres % fh) && (vyres % fh < yres % fh))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 p->vrows--;
2126
2127 if (good_wrap || good_pan) {
2128 if (reading_fast || fast_copyarea)
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002129 p->scrollmode = good_wrap ?
2130 SCROLL_WRAP_MOVE : SCROLL_PAN_MOVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 else
2132 p->scrollmode = good_wrap ? SCROLL_REDRAW :
2133 SCROLL_PAN_REDRAW;
2134 } else {
2135 if (reading_fast || (fast_copyarea && !fast_imageblit))
2136 p->scrollmode = SCROLL_MOVE;
2137 else
2138 p->scrollmode = SCROLL_REDRAW;
2139 }
2140}
2141
2142static int fbcon_resize(struct vc_data *vc, unsigned int width,
Antonino A. Daplase400b6e2007-10-16 01:29:35 -07002143 unsigned int height, unsigned int user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
2145 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002146 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 struct display *p = &fb_display[vc->vc_num];
2148 struct fb_var_screeninfo var = info->var;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002149 int x_diff, y_diff, virt_w, virt_h, virt_fw, virt_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002151 virt_w = FBCON_SWAP(ops->rotate, width, height);
2152 virt_h = FBCON_SWAP(ops->rotate, height, width);
2153 virt_fw = FBCON_SWAP(ops->rotate, vc->vc_font.width,
2154 vc->vc_font.height);
2155 virt_fh = FBCON_SWAP(ops->rotate, vc->vc_font.height,
2156 vc->vc_font.width);
2157 var.xres = virt_w * virt_fw;
2158 var.yres = virt_h * virt_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 x_diff = info->var.xres - var.xres;
2160 y_diff = info->var.yres - var.yres;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002161 if (x_diff < 0 || x_diff > virt_fw ||
2162 y_diff < 0 || y_diff > virt_fh) {
Geert Uytterhoeven9791d762007-02-12 00:55:19 -08002163 const struct fb_videomode *mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165 DPRINTK("attempting resize %ix%i\n", var.xres, var.yres);
2166 mode = fb_find_best_mode(&var, &info->modelist);
2167 if (mode == NULL)
2168 return -EINVAL;
Antonino A. Daplas3084a892005-11-07 01:00:37 -08002169 display_to_var(&var, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 fb_videomode_to_var(&var, mode);
Antonino A. Daplas3084a892005-11-07 01:00:37 -08002171
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002172 if (virt_w > var.xres/virt_fw || virt_h > var.yres/virt_fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175 DPRINTK("resize now %ix%i\n", var.xres, var.yres);
2176 if (CON_IS_VISIBLE(vc)) {
2177 var.activate = FB_ACTIVATE_NOW |
2178 FB_ACTIVATE_FORCE;
2179 fb_set_var(info, &var);
2180 }
2181 var_to_display(p, &info->var, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002182 ops->var = info->var;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
2184 updatescrollmode(p, info, vc);
2185 return 0;
2186}
2187
2188static int fbcon_switch(struct vc_data *vc)
2189{
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07002190 struct fb_info *info, *old_info = NULL;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002191 struct fbcon_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 struct display *p = &fb_display[vc->vc_num];
2193 struct fb_var_screeninfo var;
Florian Tobias Schandinat0fcf6ad2009-09-22 16:47:44 -07002194 int i, ret, prev_console, charcnt = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196 info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002197 ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199 if (softback_top) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 if (softback_lines)
2201 fbcon_set_origin(vc);
2202 softback_top = softback_curr = softback_in = softback_buf;
2203 softback_lines = 0;
Antonino A. Daplas4d9c5b62005-11-07 01:00:36 -08002204 fbcon_update_softback(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 }
2206
2207 if (logo_shown >= 0) {
2208 struct vc_data *conp2 = vc_cons[logo_shown].d;
2209
2210 if (conp2->vc_top == logo_lines
2211 && conp2->vc_bottom == conp2->vc_rows)
2212 conp2->vc_top = 0;
2213 logo_shown = FBCON_LOGO_CANSHOW;
2214 }
2215
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002216 prev_console = ops->currcon;
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07002217 if (prev_console != -1)
2218 old_info = registered_fb[con2fb_map[prev_console]];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 /*
2220 * FIXME: If we have multiple fbdev's loaded, we need to
2221 * update all info->currcon. Perhaps, we can place this
2222 * in a centralized structure, but this might break some
2223 * drivers.
2224 *
2225 * info->currcon = vc->vc_num;
2226 */
2227 for (i = 0; i < FB_MAX; i++) {
2228 if (registered_fb[i] != NULL && registered_fb[i]->fbcon_par) {
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002229 struct fbcon_ops *o = registered_fb[i]->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002231 o->currcon = vc->vc_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 }
2233 }
2234 memset(&var, 0, sizeof(struct fb_var_screeninfo));
2235 display_to_var(&var, p);
2236 var.activate = FB_ACTIVATE_NOW;
2237
2238 /*
2239 * make sure we don't unnecessarily trip the memcmp()
2240 * in fb_set_var()
2241 */
2242 info->var.activate = var.activate;
Krzysztof Helt10732c32008-06-05 22:46:33 -07002243 var.vmode |= info->var.vmode & ~FB_VMODE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 fb_set_var(info, &var);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002245 ops->var = info->var;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Knut Petersen39942fd2005-12-12 22:17:19 -08002247 if (old_info != NULL && (old_info != info ||
2248 info->flags & FBINFO_MISC_ALWAYS_SETPAR)) {
Florian Tobias Schandinat0fcf6ad2009-09-22 16:47:44 -07002249 if (info->fbops->fb_set_par) {
2250 ret = info->fbops->fb_set_par(info);
2251
2252 if (ret)
2253 printk(KERN_ERR "fbcon_switch: detected "
2254 "unhandled fb_set_par error, "
2255 "error code %d\n", ret);
2256 }
Antonino A. Daplasa39bc342006-01-09 20:53:44 -08002257
Antonino A. Daplas5428b042006-06-26 00:27:06 -07002258 if (old_info != info)
Antonino A. Daplasa39bc342006-01-09 20:53:44 -08002259 fbcon_del_cursor_timer(old_info);
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07002260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
Antonino A. Daplas212f2632006-10-03 01:14:48 -07002262 if (fbcon_is_inactive(vc, info) ||
2263 ops->blank_state != FB_BLANK_UNBLANK)
2264 fbcon_del_cursor_timer(info);
2265 else
2266 fbcon_add_cursor_timer(info);
2267
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08002268 set_blitting_type(vc, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002269 ops->cursor_reset = 1;
2270
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08002271 if (ops->rotate_font && ops->rotate_font(info, vc)) {
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002272 ops->rotate = FB_ROTATE_UR;
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08002273 set_blitting_type(vc, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Antonino A. Daplasb8c90942005-09-09 13:04:37 -07002276 vc->vc_can_do_color = (fb_get_color_depth(&info->var, &info->fix)!=1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 vc->vc_complement_mask = vc->vc_can_do_color ? 0x7700 : 0x0800;
Antonino A. Daplas56f0d642005-12-12 22:17:15 -08002278
2279 if (p->userfont)
2280 charcnt = FNTCHARCNT(vc->vc_font.data);
2281
2282 if (charcnt > 256)
2283 vc->vc_complement_mask <<= 1;
2284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 updatescrollmode(p, info, vc);
2286
2287 switch (p->scrollmode) {
2288 case SCROLL_WRAP_MOVE:
2289 scrollback_phys_max = p->vrows - vc->vc_rows;
2290 break;
2291 case SCROLL_PAN_MOVE:
2292 case SCROLL_PAN_REDRAW:
2293 scrollback_phys_max = p->vrows - 2 * vc->vc_rows;
2294 if (scrollback_phys_max < 0)
2295 scrollback_phys_max = 0;
2296 break;
2297 default:
2298 scrollback_phys_max = 0;
2299 break;
2300 }
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 scrollback_max = 0;
2303 scrollback_current = 0;
Antonino A. Daplas4e1567d2005-12-12 22:17:18 -08002304
2305 if (!fbcon_is_inactive(vc, info)) {
2306 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0;
2307 ops->update_start(info);
2308 }
2309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 fbcon_set_palette(vc, color_table);
2311 fbcon_clear_margins(vc, 0);
2312
2313 if (logo_shown == FBCON_LOGO_DRAW) {
2314
2315 logo_shown = fg_console;
2316 /* This is protected above by initmem_freed */
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -08002317 fb_show_logo(info, ops->rotate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 update_region(vc,
2319 vc->vc_origin + vc->vc_size_row * vc->vc_top,
2320 vc->vc_size_row * (vc->vc_bottom -
2321 vc->vc_top) / 2);
2322 return 0;
2323 }
2324 return 1;
2325}
2326
2327static void fbcon_generic_blank(struct vc_data *vc, struct fb_info *info,
2328 int blank)
2329{
Richard Purdie994efac2007-02-09 09:46:45 +00002330 struct fb_event event;
2331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 if (blank) {
2333 unsigned short charmask = vc->vc_hi_font_mask ?
2334 0x1ff : 0xff;
2335 unsigned short oldc;
2336
2337 oldc = vc->vc_video_erase_char;
2338 vc->vc_video_erase_char &= charmask;
2339 fbcon_clear(vc, 0, 0, vc->vc_rows, vc->vc_cols);
2340 vc->vc_video_erase_char = oldc;
2341 }
Richard Purdie994efac2007-02-09 09:46:45 +00002342
2343
Andrea Righi513adb52009-04-13 14:39:39 -07002344 if (!lock_fb_info(info))
2345 return;
Richard Purdie994efac2007-02-09 09:46:45 +00002346 event.info = info;
2347 event.data = &blank;
2348 fb_notifier_call_chain(FB_EVENT_CONBLANK, &event);
Andrea Righi513adb52009-04-13 14:39:39 -07002349 unlock_fb_info(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350}
2351
2352static int fbcon_blank(struct vc_data *vc, int blank, int mode_switch)
2353{
2354 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
2355 struct fbcon_ops *ops = info->fbcon_par;
2356
2357 if (mode_switch) {
2358 struct fb_var_screeninfo var = info->var;
2359
2360 ops->graphics = 1;
2361
2362 if (!blank) {
2363 var.activate = FB_ACTIVATE_NOW | FB_ACTIVATE_FORCE;
2364 fb_set_var(info, &var);
2365 ops->graphics = 0;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002366 ops->var = info->var;
Krzysztof Heltf5c15d02009-11-11 14:26:22 -08002367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 }
2369
2370 if (!fbcon_is_inactive(vc, info)) {
2371 if (ops->blank_state != blank) {
2372 ops->blank_state = blank;
2373 fbcon_cursor(vc, blank ? CM_ERASE : CM_DRAW);
2374 ops->cursor_flash = (!blank);
2375
Dmitry Baryshkovbca404a2008-12-01 13:14:05 -08002376 if (!(info->flags & FBINFO_MISC_USEREVENT))
2377 if (fb_blank(info, blank))
2378 fbcon_generic_blank(vc, info, blank);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 }
2380
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07002381 if (!blank)
2382 update_screen(vc);
2383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
Antonino Daplas4d8a2d92007-10-16 01:29:55 -07002385 if (mode_switch || fbcon_is_inactive(vc, info) ||
Antonino A. Daplas212f2632006-10-03 01:14:48 -07002386 ops->blank_state != FB_BLANK_UNBLANK)
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07002387 fbcon_del_cursor_timer(info);
Antonino A. Daplas212f2632006-10-03 01:14:48 -07002388 else
2389 fbcon_add_cursor_timer(info);
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07002390
2391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392}
2393
Jesse Barnesd219adc2010-08-02 12:05:41 -07002394static int fbcon_debug_enter(struct vc_data *vc)
2395{
2396 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
2397 struct fbcon_ops *ops = info->fbcon_par;
2398
2399 ops->save_graphics = ops->graphics;
2400 ops->graphics = 0;
2401 if (info->fbops->fb_debug_enter)
2402 info->fbops->fb_debug_enter(info);
2403 fbcon_set_palette(vc, color_table);
2404 return 0;
2405}
2406
2407static int fbcon_debug_leave(struct vc_data *vc)
2408{
2409 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
2410 struct fbcon_ops *ops = info->fbcon_par;
2411
2412 ops->graphics = ops->save_graphics;
2413 if (info->fbops->fb_debug_leave)
2414 info->fbops->fb_debug_leave(info);
2415 return 0;
2416}
2417
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418static int fbcon_get_font(struct vc_data *vc, struct console_font *font)
2419{
2420 u8 *fontdata = vc->vc_font.data;
2421 u8 *data = font->data;
2422 int i, j;
2423
2424 font->width = vc->vc_font.width;
2425 font->height = vc->vc_font.height;
2426 font->charcount = vc->vc_hi_font_mask ? 512 : 256;
2427 if (!font->data)
2428 return 0;
2429
2430 if (font->width <= 8) {
2431 j = vc->vc_font.height;
2432 for (i = 0; i < font->charcount; i++) {
2433 memcpy(data, fontdata, j);
2434 memset(data + j, 0, 32 - j);
2435 data += 32;
2436 fontdata += j;
2437 }
2438 } else if (font->width <= 16) {
2439 j = vc->vc_font.height * 2;
2440 for (i = 0; i < font->charcount; i++) {
2441 memcpy(data, fontdata, j);
2442 memset(data + j, 0, 64 - j);
2443 data += 64;
2444 fontdata += j;
2445 }
2446 } else if (font->width <= 24) {
2447 for (i = 0; i < font->charcount; i++) {
2448 for (j = 0; j < vc->vc_font.height; j++) {
2449 *data++ = fontdata[0];
2450 *data++ = fontdata[1];
2451 *data++ = fontdata[2];
2452 fontdata += sizeof(u32);
2453 }
2454 memset(data, 0, 3 * (32 - j));
2455 data += 3 * (32 - j);
2456 }
2457 } else {
2458 j = vc->vc_font.height * 4;
2459 for (i = 0; i < font->charcount; i++) {
2460 memcpy(data, fontdata, j);
2461 memset(data + j, 0, 128 - j);
2462 data += 128;
2463 fontdata += j;
2464 }
2465 }
2466 return 0;
2467}
2468
2469static int fbcon_do_set_font(struct vc_data *vc, int w, int h,
Jan Beulich2f4516d2005-09-13 01:25:44 -07002470 const u8 * data, int userfont)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471{
2472 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002473 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 struct display *p = &fb_display[vc->vc_num];
2475 int resize;
2476 int cnt;
2477 char *old_data = NULL;
2478
2479 if (CON_IS_VISIBLE(vc) && softback_lines)
2480 fbcon_set_origin(vc);
2481
2482 resize = (w != vc->vc_font.width) || (h != vc->vc_font.height);
2483 if (p->userfont)
2484 old_data = vc->vc_font.data;
2485 if (userfont)
2486 cnt = FNTCHARCNT(data);
2487 else
2488 cnt = 256;
Jan Beulich2f4516d2005-09-13 01:25:44 -07002489 vc->vc_font.data = (void *)(p->fontdata = data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 if ((p->userfont = userfont))
2491 REFCOUNT(data)++;
2492 vc->vc_font.width = w;
2493 vc->vc_font.height = h;
2494 if (vc->vc_hi_font_mask && cnt == 256) {
2495 vc->vc_hi_font_mask = 0;
2496 if (vc->vc_can_do_color) {
2497 vc->vc_complement_mask >>= 1;
2498 vc->vc_s_complement_mask >>= 1;
2499 }
2500
2501 /* ++Edmund: reorder the attribute bits */
2502 if (vc->vc_can_do_color) {
2503 unsigned short *cp =
2504 (unsigned short *) vc->vc_origin;
2505 int count = vc->vc_screenbuf_size / 2;
2506 unsigned short c;
2507 for (; count > 0; count--, cp++) {
2508 c = scr_readw(cp);
2509 scr_writew(((c & 0xfe00) >> 1) |
2510 (c & 0xff), cp);
2511 }
2512 c = vc->vc_video_erase_char;
2513 vc->vc_video_erase_char =
2514 ((c & 0xfe00) >> 1) | (c & 0xff);
2515 vc->vc_attr >>= 1;
2516 }
2517 } else if (!vc->vc_hi_font_mask && cnt == 512) {
2518 vc->vc_hi_font_mask = 0x100;
2519 if (vc->vc_can_do_color) {
2520 vc->vc_complement_mask <<= 1;
2521 vc->vc_s_complement_mask <<= 1;
2522 }
2523
2524 /* ++Edmund: reorder the attribute bits */
2525 {
2526 unsigned short *cp =
2527 (unsigned short *) vc->vc_origin;
2528 int count = vc->vc_screenbuf_size / 2;
2529 unsigned short c;
2530 for (; count > 0; count--, cp++) {
2531 unsigned short newc;
2532 c = scr_readw(cp);
2533 if (vc->vc_can_do_color)
2534 newc =
2535 ((c & 0xff00) << 1) | (c &
2536 0xff);
2537 else
2538 newc = c & ~0x100;
2539 scr_writew(newc, cp);
2540 }
2541 c = vc->vc_video_erase_char;
2542 if (vc->vc_can_do_color) {
2543 vc->vc_video_erase_char =
2544 ((c & 0xff00) << 1) | (c & 0xff);
2545 vc->vc_attr <<= 1;
Linus Torvalds93f78da2008-10-14 12:12:02 -07002546 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 vc->vc_video_erase_char = c & ~0x100;
2548 }
2549
2550 }
2551
2552 if (resize) {
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002553 int cols, rows;
2554
2555 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres);
2556 rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
2557 cols /= w;
2558 rows /= h;
2559 vc_resize(vc, cols, rows);
Antonino A. Daplas4d9c5b62005-11-07 01:00:36 -08002560 if (CON_IS_VISIBLE(vc) && softback_buf)
2561 fbcon_update_softback(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 } else if (CON_IS_VISIBLE(vc)
2563 && vc->vc_mode == KD_TEXT) {
2564 fbcon_clear_margins(vc, 0);
2565 update_screen(vc);
2566 }
2567
2568 if (old_data && (--REFCOUNT(old_data) == 0))
2569 kfree(old_data - FONT_EXTRA_WORDS * sizeof(int));
2570 return 0;
2571}
2572
2573static int fbcon_copy_font(struct vc_data *vc, int con)
2574{
2575 struct display *od = &fb_display[con];
2576 struct console_font *f = &vc->vc_font;
2577
2578 if (od->fontdata == f->data)
2579 return 0; /* already the same font... */
2580 return fbcon_do_set_font(vc, f->width, f->height, od->fontdata, od->userfont);
2581}
2582
2583/*
2584 * User asked to set font; we are guaranteed that
2585 * a) width and height are in range 1..32
2586 * b) charcount does not exceed 512
2587 * but lets not assume that, since someone might someday want to use larger
2588 * fonts. And charcount of 512 is small for unicode support.
2589 *
2590 * However, user space gives the font in 32 rows , regardless of
2591 * actual font height. So a new API is needed if support for larger fonts
2592 * is ever implemented.
2593 */
2594
2595static int fbcon_set_font(struct vc_data *vc, struct console_font *font, unsigned flags)
2596{
Antonino A. Daplas2d2699d2007-05-08 00:39:11 -07002597 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 unsigned charcount = font->charcount;
2599 int w = font->width;
2600 int h = font->height;
2601 int size;
2602 int i, csum;
2603 u8 *new_data, *data = font->data;
2604 int pitch = (font->width+7) >> 3;
2605
2606 /* Is there a reason why fbconsole couldn't handle any charcount >256?
2607 * If not this check should be changed to charcount < 256 */
2608 if (charcount != 256 && charcount != 512)
2609 return -EINVAL;
2610
Antonino A. Daplas2d2699d2007-05-08 00:39:11 -07002611 /* Make sure drawing engine can handle the font */
2612 if (!(info->pixmap.blit_x & (1 << (font->width - 1))) ||
2613 !(info->pixmap.blit_y & (1 << (font->height - 1))))
2614 return -EINVAL;
2615
Antonino A. Daplas38b49822007-05-08 00:39:19 -07002616 /* Make sure driver can handle the font length */
2617 if (fbcon_invalid_charcount(info, charcount))
2618 return -EINVAL;
2619
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 size = h * pitch * charcount;
2621
2622 new_data = kmalloc(FONT_EXTRA_WORDS * sizeof(int) + size, GFP_USER);
2623
2624 if (!new_data)
2625 return -ENOMEM;
2626
2627 new_data += FONT_EXTRA_WORDS * sizeof(int);
2628 FNTSIZE(new_data) = size;
2629 FNTCHARCNT(new_data) = charcount;
2630 REFCOUNT(new_data) = 0; /* usage counter */
2631 for (i=0; i< charcount; i++) {
2632 memcpy(new_data + i*h*pitch, data + i*32*pitch, h*pitch);
2633 }
2634
2635 /* Since linux has a nice crc32 function use it for counting font
2636 * checksums. */
2637 csum = crc32(0, new_data, size);
2638
2639 FNTSUM(new_data) = csum;
2640 /* Check if the same font is on some other console already */
Antonino A. Daplase614b182006-06-26 00:27:09 -07002641 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 struct vc_data *tmp = vc_cons[i].d;
2643
2644 if (fb_display[i].userfont &&
2645 fb_display[i].fontdata &&
2646 FNTSUM(fb_display[i].fontdata) == csum &&
2647 FNTSIZE(fb_display[i].fontdata) == size &&
2648 tmp->vc_font.width == w &&
2649 !memcmp(fb_display[i].fontdata, new_data, size)) {
2650 kfree(new_data - FONT_EXTRA_WORDS * sizeof(int));
Jan Beulich2f4516d2005-09-13 01:25:44 -07002651 new_data = (u8 *)fb_display[i].fontdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 break;
2653 }
2654 }
2655 return fbcon_do_set_font(vc, font->width, font->height, new_data, 1);
2656}
2657
2658static int fbcon_set_def_font(struct vc_data *vc, struct console_font *font, char *name)
2659{
2660 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Jan Beulich2f4516d2005-09-13 01:25:44 -07002661 const struct font_desc *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
2663 if (!name)
Antonino A. Daplas2d2699d2007-05-08 00:39:11 -07002664 f = get_default_font(info->var.xres, info->var.yres,
2665 info->pixmap.blit_x, info->pixmap.blit_y);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 else if (!(f = find_font(name)))
2667 return -ENOENT;
2668
2669 font->width = f->width;
2670 font->height = f->height;
2671 return fbcon_do_set_font(vc, f->width, f->height, f->data, 0);
2672}
2673
2674static u16 palette_red[16];
2675static u16 palette_green[16];
2676static u16 palette_blue[16];
2677
2678static struct fb_cmap palette_cmap = {
2679 0, 16, palette_red, palette_green, palette_blue, NULL
2680};
2681
2682static int fbcon_set_palette(struct vc_data *vc, unsigned char *table)
2683{
2684 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
2685 int i, j, k, depth;
2686 u8 val;
2687
2688 if (fbcon_is_inactive(vc, info))
2689 return -EINVAL;
2690
2691 if (!CON_IS_VISIBLE(vc))
2692 return 0;
2693
Antonino A. Daplasb8c90942005-09-09 13:04:37 -07002694 depth = fb_get_color_depth(&info->var, &info->fix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 if (depth > 3) {
2696 for (i = j = 0; i < 16; i++) {
2697 k = table[i];
2698 val = vc->vc_palette[j++];
2699 palette_red[k] = (val << 8) | val;
2700 val = vc->vc_palette[j++];
2701 palette_green[k] = (val << 8) | val;
2702 val = vc->vc_palette[j++];
2703 palette_blue[k] = (val << 8) | val;
2704 }
2705 palette_cmap.len = 16;
2706 palette_cmap.start = 0;
2707 /*
2708 * If framebuffer is capable of less than 16 colors,
2709 * use default palette of fbcon.
2710 */
2711 } else
2712 fb_copy_cmap(fb_default_cmap(1 << depth), &palette_cmap);
2713
2714 return fb_set_cmap(&palette_cmap, info);
2715}
2716
2717static u16 *fbcon_screen_pos(struct vc_data *vc, int offset)
2718{
2719 unsigned long p;
2720 int line;
2721
2722 if (vc->vc_num != fg_console || !softback_lines)
2723 return (u16 *) (vc->vc_origin + offset);
2724 line = offset / vc->vc_size_row;
2725 if (line >= softback_lines)
2726 return (u16 *) (vc->vc_origin + offset -
2727 softback_lines * vc->vc_size_row);
2728 p = softback_curr + offset;
2729 if (p >= softback_end)
2730 p += softback_buf - softback_end;
2731 return (u16 *) p;
2732}
2733
2734static unsigned long fbcon_getxy(struct vc_data *vc, unsigned long pos,
2735 int *px, int *py)
2736{
2737 unsigned long ret;
2738 int x, y;
2739
2740 if (pos >= vc->vc_origin && pos < vc->vc_scr_end) {
2741 unsigned long offset = (pos - vc->vc_origin) / 2;
2742
2743 x = offset % vc->vc_cols;
2744 y = offset / vc->vc_cols;
2745 if (vc->vc_num == fg_console)
2746 y += softback_lines;
2747 ret = pos + (vc->vc_cols - x) * 2;
2748 } else if (vc->vc_num == fg_console && softback_lines) {
2749 unsigned long offset = pos - softback_curr;
2750
2751 if (pos < softback_curr)
2752 offset += softback_end - softback_buf;
2753 offset /= 2;
2754 x = offset % vc->vc_cols;
2755 y = offset / vc->vc_cols;
2756 ret = pos + (vc->vc_cols - x) * 2;
2757 if (ret == softback_end)
2758 ret = softback_buf;
2759 if (ret == softback_in)
2760 ret = vc->vc_origin;
2761 } else {
2762 /* Should not happen */
2763 x = y = 0;
2764 ret = vc->vc_origin;
2765 }
2766 if (px)
2767 *px = x;
2768 if (py)
2769 *py = y;
2770 return ret;
2771}
2772
2773/* As we might be inside of softback, we may work with non-contiguous buffer,
2774 that's why we have to use a separate routine. */
2775static void fbcon_invert_region(struct vc_data *vc, u16 * p, int cnt)
2776{
2777 while (cnt--) {
2778 u16 a = scr_readw(p);
2779 if (!vc->vc_can_do_color)
2780 a ^= 0x0800;
2781 else if (vc->vc_hi_font_mask == 0x100)
2782 a = ((a) & 0x11ff) | (((a) & 0xe000) >> 4) |
2783 (((a) & 0x0e00) << 4);
2784 else
2785 a = ((a) & 0x88ff) | (((a) & 0x7000) >> 4) |
2786 (((a) & 0x0700) << 4);
2787 scr_writew(a, p++);
2788 if (p == (u16 *) softback_end)
2789 p = (u16 *) softback_buf;
2790 if (p == (u16 *) softback_in)
2791 p = (u16 *) vc->vc_origin;
2792 }
2793}
2794
2795static int fbcon_scrolldelta(struct vc_data *vc, int lines)
2796{
2797 struct fb_info *info = registered_fb[con2fb_map[fg_console]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002798 struct fbcon_ops *ops = info->fbcon_par;
Marcin Slusarz2c6cc352008-02-06 01:39:13 -08002799 struct display *disp = &fb_display[fg_console];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 int offset, limit, scrollback_old;
2801
2802 if (softback_top) {
2803 if (vc->vc_num != fg_console)
2804 return 0;
2805 if (vc->vc_mode != KD_TEXT || !lines)
2806 return 0;
2807 if (logo_shown >= 0) {
2808 struct vc_data *conp2 = vc_cons[logo_shown].d;
2809
2810 if (conp2->vc_top == logo_lines
2811 && conp2->vc_bottom == conp2->vc_rows)
2812 conp2->vc_top = 0;
2813 if (logo_shown == vc->vc_num) {
2814 unsigned long p, q;
2815 int i;
2816
2817 p = softback_in;
2818 q = vc->vc_origin +
2819 logo_lines * vc->vc_size_row;
2820 for (i = 0; i < logo_lines; i++) {
2821 if (p == softback_top)
2822 break;
2823 if (p == softback_buf)
2824 p = softback_end;
2825 p -= vc->vc_size_row;
2826 q -= vc->vc_size_row;
2827 scr_memcpyw((u16 *) q, (u16 *) p,
2828 vc->vc_size_row);
2829 }
David Hollister308af922006-05-30 21:25:36 -07002830 softback_in = softback_curr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 update_region(vc, vc->vc_origin,
2832 logo_lines * vc->vc_cols);
2833 }
2834 logo_shown = FBCON_LOGO_CANSHOW;
2835 }
2836 fbcon_cursor(vc, CM_ERASE | CM_SOFTBACK);
Marcin Slusarz2c6cc352008-02-06 01:39:13 -08002837 fbcon_redraw_softback(vc, disp, lines);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 fbcon_cursor(vc, CM_DRAW | CM_SOFTBACK);
2839 return 0;
2840 }
2841
2842 if (!scrollback_phys_max)
2843 return -ENOSYS;
2844
2845 scrollback_old = scrollback_current;
2846 scrollback_current -= lines;
2847 if (scrollback_current < 0)
2848 scrollback_current = 0;
2849 else if (scrollback_current > scrollback_max)
2850 scrollback_current = scrollback_max;
2851 if (scrollback_current == scrollback_old)
2852 return 0;
2853
2854 if (fbcon_is_inactive(vc, info))
2855 return 0;
2856
2857 fbcon_cursor(vc, CM_ERASE);
2858
Marcin Slusarz2c6cc352008-02-06 01:39:13 -08002859 offset = disp->yscroll - scrollback_current;
2860 limit = disp->vrows;
2861 switch (disp->scrollmode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 case SCROLL_WRAP_MOVE:
2863 info->var.vmode |= FB_VMODE_YWRAP;
2864 break;
2865 case SCROLL_PAN_MOVE:
2866 case SCROLL_PAN_REDRAW:
2867 limit -= vc->vc_rows;
2868 info->var.vmode &= ~FB_VMODE_YWRAP;
2869 break;
2870 }
2871 if (offset < 0)
2872 offset += limit;
2873 else if (offset >= limit)
2874 offset -= limit;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002875
2876 ops->var.xoffset = 0;
2877 ops->var.yoffset = offset * vc->vc_font.height;
2878 ops->update_start(info);
2879
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 if (!scrollback_current)
2881 fbcon_cursor(vc, CM_DRAW);
2882 return 0;
2883}
2884
2885static int fbcon_set_origin(struct vc_data *vc)
2886{
2887 if (softback_lines)
2888 fbcon_scrolldelta(vc, softback_lines);
2889 return 0;
2890}
2891
2892static void fbcon_suspended(struct fb_info *info)
2893{
2894 struct vc_data *vc = NULL;
2895 struct fbcon_ops *ops = info->fbcon_par;
2896
2897 if (!ops || ops->currcon < 0)
2898 return;
2899 vc = vc_cons[ops->currcon].d;
2900
2901 /* Clear cursor, restore saved data */
2902 fbcon_cursor(vc, CM_ERASE);
2903}
2904
2905static void fbcon_resumed(struct fb_info *info)
2906{
2907 struct vc_data *vc;
2908 struct fbcon_ops *ops = info->fbcon_par;
2909
2910 if (!ops || ops->currcon < 0)
2911 return;
2912 vc = vc_cons[ops->currcon].d;
2913
2914 update_screen(vc);
2915}
2916
2917static void fbcon_modechanged(struct fb_info *info)
2918{
2919 struct fbcon_ops *ops = info->fbcon_par;
2920 struct vc_data *vc;
2921 struct display *p;
2922 int rows, cols;
2923
2924 if (!ops || ops->currcon < 0)
2925 return;
2926 vc = vc_cons[ops->currcon].d;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002927 if (vc->vc_mode != KD_TEXT ||
2928 registered_fb[con2fb_map[ops->currcon]] != info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 return;
2930
2931 p = &fb_display[vc->vc_num];
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08002932 set_blitting_type(vc, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
2934 if (CON_IS_VISIBLE(vc)) {
2935 var_to_display(p, &info->var, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002936 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres);
2937 rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
2938 cols /= vc->vc_font.width;
2939 rows /= vc->vc_font.height;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 vc_resize(vc, cols, rows);
2941 updatescrollmode(p, info, vc);
2942 scrollback_max = 0;
2943 scrollback_current = 0;
Antonino A. Daplas4e1567d2005-12-12 22:17:18 -08002944
2945 if (!fbcon_is_inactive(vc, info)) {
2946 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0;
2947 ops->update_start(info);
2948 }
2949
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 fbcon_set_palette(vc, color_table);
2951 update_screen(vc);
Antonino A. Daplas4d9c5b62005-11-07 01:00:36 -08002952 if (softback_buf)
2953 fbcon_update_softback(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 }
2955}
2956
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002957static void fbcon_set_all_vcs(struct fb_info *info)
2958{
2959 struct fbcon_ops *ops = info->fbcon_par;
2960 struct vc_data *vc;
2961 struct display *p;
Antonino A. Daplas95d67bb2007-05-08 00:38:40 -07002962 int i, rows, cols, fg = -1;
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002963
2964 if (!ops || ops->currcon < 0)
2965 return;
2966
Antonino A. Daplase614b182006-06-26 00:27:09 -07002967 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002968 vc = vc_cons[i].d;
2969 if (!vc || vc->vc_mode != KD_TEXT ||
2970 registered_fb[con2fb_map[i]] != info)
2971 continue;
2972
Antonino A. Daplas95d67bb2007-05-08 00:38:40 -07002973 if (CON_IS_VISIBLE(vc)) {
2974 fg = i;
2975 continue;
2976 }
2977
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002978 p = &fb_display[vc->vc_num];
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08002979 set_blitting_type(vc, info);
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002980 var_to_display(p, &info->var, info);
Oleg Nesterov232fb692008-10-15 22:03:57 -07002981 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres);
2982 rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002983 cols /= vc->vc_font.width;
2984 rows /= vc->vc_font.height;
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002985 vc_resize(vc, cols, rows);
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002986 }
Antonino A. Daplas04a2fe52006-01-09 20:52:58 -08002987
Antonino A. Daplas95d67bb2007-05-08 00:38:40 -07002988 if (fg != -1)
2989 fbcon_modechanged(info);
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002990}
2991
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992static int fbcon_mode_deleted(struct fb_info *info,
2993 struct fb_videomode *mode)
2994{
2995 struct fb_info *fb_info;
2996 struct display *p;
2997 int i, j, found = 0;
2998
2999 /* before deletion, ensure that mode is not in use */
3000 for (i = first_fb_vc; i <= last_fb_vc; i++) {
3001 j = con2fb_map[i];
3002 if (j == -1)
3003 continue;
3004 fb_info = registered_fb[j];
3005 if (fb_info != info)
3006 continue;
3007 p = &fb_display[i];
3008 if (!p || !p->mode)
3009 continue;
3010 if (fb_mode_is_equal(p->mode, mode)) {
3011 found = 1;
3012 break;
3013 }
3014 }
3015 return found;
3016}
3017
Jesse Barnescfafca82007-07-17 04:05:33 -07003018#ifdef CONFIG_VT_HW_CONSOLE_BINDING
3019static int fbcon_unbind(void)
3020{
3021 int ret;
3022
Takashi Iwaie93a9a82013-01-25 10:28:18 +10003023 ret = do_unbind_con_driver(&fb_con, first_fb_vc, last_fb_vc,
Jesse Barnescfafca82007-07-17 04:05:33 -07003024 fbcon_is_default);
Ian Armstrong2ddce3f2009-09-22 16:47:52 -07003025
3026 if (!ret)
3027 fbcon_has_console_bind = 0;
3028
Jesse Barnescfafca82007-07-17 04:05:33 -07003029 return ret;
3030}
3031#else
3032static inline int fbcon_unbind(void)
3033{
3034 return -EINVAL;
3035}
3036#endif /* CONFIG_VT_HW_CONSOLE_BINDING */
3037
Dave Airlie054430e2013-01-25 11:38:56 +10003038/* called with console_lock held */
Jesse Barnescfafca82007-07-17 04:05:33 -07003039static int fbcon_fb_unbind(int idx)
3040{
3041 int i, new_idx = -1, ret = 0;
3042
Ian Armstrong2ddce3f2009-09-22 16:47:52 -07003043 if (!fbcon_has_console_bind)
3044 return 0;
3045
Jesse Barnescfafca82007-07-17 04:05:33 -07003046 for (i = first_fb_vc; i <= last_fb_vc; i++) {
3047 if (con2fb_map[i] != idx &&
3048 con2fb_map[i] != -1) {
3049 new_idx = i;
3050 break;
3051 }
3052 }
3053
3054 if (new_idx != -1) {
3055 for (i = first_fb_vc; i <= last_fb_vc; i++) {
3056 if (con2fb_map[i] == idx)
3057 set_con2fb_map(i, new_idx, 0);
3058 }
3059 } else
3060 ret = fbcon_unbind();
3061
3062 return ret;
3063}
3064
Dave Airlie054430e2013-01-25 11:38:56 +10003065/* called with console_lock held */
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003066static int fbcon_fb_unregistered(struct fb_info *info)
Antonino A. Daplase614b182006-06-26 00:27:09 -07003067{
Andrea Righi66c1ca02009-03-31 15:25:18 -07003068 int i, idx;
Antonino A. Daplase614b182006-06-26 00:27:09 -07003069
Andrea Righi66c1ca02009-03-31 15:25:18 -07003070 idx = info->node;
Antonino A. Daplase614b182006-06-26 00:27:09 -07003071 for (i = first_fb_vc; i <= last_fb_vc; i++) {
3072 if (con2fb_map[i] == idx)
3073 con2fb_map[i] = -1;
3074 }
3075
3076 if (idx == info_idx) {
3077 info_idx = -1;
3078
3079 for (i = 0; i < FB_MAX; i++) {
3080 if (registered_fb[i] != NULL) {
3081 info_idx = i;
3082 break;
3083 }
3084 }
3085 }
3086
3087 if (info_idx != -1) {
3088 for (i = first_fb_vc; i <= last_fb_vc; i++) {
3089 if (con2fb_map[i] == -1)
3090 con2fb_map[i] = info_idx;
3091 }
3092 }
3093
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003094 if (primary_device == idx)
3095 primary_device = -1;
3096
Andrea Righi66c1ca02009-03-31 15:25:18 -07003097 if (!num_registered_fb)
Takashi Iwaie93a9a82013-01-25 10:28:18 +10003098 do_unregister_con_driver(&fb_con);
Andrea Righi66c1ca02009-03-31 15:25:18 -07003099
Antonino A. Daplase614b182006-06-26 00:27:09 -07003100 return 0;
3101}
3102
Dave Airlie054430e2013-01-25 11:38:56 +10003103/* called with console_lock held */
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10003104static void fbcon_remap_all(int idx)
3105{
3106 int i;
3107 for (i = first_fb_vc; i <= last_fb_vc; i++)
3108 set_con2fb_map(i, idx, 0);
3109
3110 if (con_is_bound(&fb_con)) {
3111 printk(KERN_INFO "fbcon: Remapping primary device, "
3112 "fb%i, to tty %i-%i\n", idx,
3113 first_fb_vc + 1, last_fb_vc + 1);
3114 info_idx = idx;
3115 }
3116}
3117
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003118#ifdef CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003119static void fbcon_select_primary(struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120{
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003121 if (!map_override && primary_device == -1 &&
3122 fb_is_primary_device(info)) {
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003123 int i;
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003124
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003125 printk(KERN_INFO "fbcon: %s (fb%i) is primary device\n",
3126 info->fix.id, info->node);
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003127 primary_device = info->node;
3128
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003129 for (i = first_fb_vc; i <= last_fb_vc; i++)
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003130 con2fb_map_boot[i] = primary_device;
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003131
3132 if (con_is_bound(&fb_con)) {
3133 printk(KERN_INFO "fbcon: Remapping primary device, "
3134 "fb%i, to tty %i-%i\n", info->node,
3135 first_fb_vc + 1, last_fb_vc + 1);
3136 info_idx = primary_device;
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003137 }
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003138 }
3139
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003140}
3141#else
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003142static inline void fbcon_select_primary(struct fb_info *info)
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003143{
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003144 return;
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003145}
3146#endif /* CONFIG_FRAMEBUFFER_DETECT_PRIMARY */
3147
Dave Airlie054430e2013-01-25 11:38:56 +10003148/* called with console_lock held */
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003149static int fbcon_fb_registered(struct fb_info *info)
3150{
Andrea Righi66c1ca02009-03-31 15:25:18 -07003151 int ret = 0, i, idx;
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003152
Andrea Righi66c1ca02009-03-31 15:25:18 -07003153 idx = info->node;
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003154 fbcon_select_primary(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
3156 if (info_idx == -1) {
Antonino A. Daplase614b182006-06-26 00:27:09 -07003157 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 if (con2fb_map_boot[i] == idx) {
3159 info_idx = idx;
3160 break;
3161 }
3162 }
Antonino A. Daplase614b182006-06-26 00:27:09 -07003163
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 if (info_idx != -1)
Alan Cox50e244c2013-01-25 10:28:15 +10003165 ret = do_fbcon_takeover(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 } else {
Antonino A. Daplase614b182006-06-26 00:27:09 -07003167 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07003168 if (con2fb_map_boot[i] == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 set_con2fb_map(i, idx, 0);
3170 }
3171 }
3172
3173 return ret;
3174}
3175
3176static void fbcon_fb_blanked(struct fb_info *info, int blank)
3177{
3178 struct fbcon_ops *ops = info->fbcon_par;
3179 struct vc_data *vc;
3180
3181 if (!ops || ops->currcon < 0)
3182 return;
3183
3184 vc = vc_cons[ops->currcon].d;
3185 if (vc->vc_mode != KD_TEXT ||
3186 registered_fb[con2fb_map[ops->currcon]] != info)
3187 return;
3188
3189 if (CON_IS_VISIBLE(vc)) {
3190 if (blank)
3191 do_blank_screen(0);
3192 else
3193 do_unblank_screen(0);
3194 }
3195 ops->blank_state = blank;
3196}
3197
3198static void fbcon_new_modelist(struct fb_info *info)
3199{
3200 int i;
3201 struct vc_data *vc;
3202 struct fb_var_screeninfo var;
Geert Uytterhoeven9791d762007-02-12 00:55:19 -08003203 const struct fb_videomode *mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204
Antonino A. Daplase614b182006-06-26 00:27:09 -07003205 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 if (registered_fb[con2fb_map[i]] != info)
3207 continue;
3208 if (!fb_display[i].mode)
3209 continue;
3210 vc = vc_cons[i].d;
3211 display_to_var(&var, &fb_display[i]);
Michal Januszewski8fb65672005-11-07 01:00:47 -08003212 mode = fb_find_nearest_mode(fb_display[i].mode,
3213 &info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 fb_videomode_to_var(&var, mode);
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07003215 fbcon_set_disp(info, &var, vc->vc_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 }
3217}
3218
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003219static void fbcon_get_requirement(struct fb_info *info,
3220 struct fb_blit_caps *caps)
3221{
3222 struct vc_data *vc;
3223 struct display *p;
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003224
3225 if (caps->flags) {
Antonino A. Daplas167f07f2007-05-08 00:39:54 -07003226 int i, charcnt;
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003227
3228 for (i = first_fb_vc; i <= last_fb_vc; i++) {
3229 vc = vc_cons[i].d;
Antonino A. Daplas167f07f2007-05-08 00:39:54 -07003230 if (vc && vc->vc_mode == KD_TEXT &&
3231 info->node == con2fb_map[i]) {
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003232 p = &fb_display[i];
3233 caps->x |= 1 << (vc->vc_font.width - 1);
3234 caps->y |= 1 << (vc->vc_font.height - 1);
3235 charcnt = (p->userfont) ?
3236 FNTCHARCNT(p->fontdata) : 256;
3237 if (caps->len < charcnt)
3238 caps->len = charcnt;
3239 }
3240 }
3241 } else {
3242 vc = vc_cons[fg_console].d;
3243
Antonino A. Daplas167f07f2007-05-08 00:39:54 -07003244 if (vc && vc->vc_mode == KD_TEXT &&
3245 info->node == con2fb_map[fg_console]) {
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003246 p = &fb_display[fg_console];
Antonino A. Daplas167f07f2007-05-08 00:39:54 -07003247 caps->x = 1 << (vc->vc_font.width - 1);
3248 caps->y = 1 << (vc->vc_font.height - 1);
3249 caps->len = (p->userfont) ?
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003250 FNTCHARCNT(p->fontdata) : 256;
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003251 }
3252 }
3253}
3254
Andrea Righi66c1ca02009-03-31 15:25:18 -07003255static int fbcon_event_notify(struct notifier_block *self,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 unsigned long action, void *data)
3257{
3258 struct fb_event *event = data;
3259 struct fb_info *info = event->info;
3260 struct fb_videomode *mode;
3261 struct fb_con2fbmap *con2fb;
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003262 struct fb_blit_caps *caps;
Andrea Righi66c1ca02009-03-31 15:25:18 -07003263 int idx, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Antonino A. Daplase614b182006-06-26 00:27:09 -07003265 /*
3266 * ignore all events except driver registration and deregistration
3267 * if fbcon is not active
3268 */
3269 if (fbcon_has_exited && !(action == FB_EVENT_FB_REGISTERED ||
3270 action == FB_EVENT_FB_UNREGISTERED))
3271 goto done;
3272
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 switch(action) {
3274 case FB_EVENT_SUSPEND:
3275 fbcon_suspended(info);
3276 break;
3277 case FB_EVENT_RESUME:
3278 fbcon_resumed(info);
3279 break;
3280 case FB_EVENT_MODE_CHANGE:
3281 fbcon_modechanged(info);
3282 break;
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07003283 case FB_EVENT_MODE_CHANGE_ALL:
3284 fbcon_set_all_vcs(info);
3285 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 case FB_EVENT_MODE_DELETE:
3287 mode = event->data;
3288 ret = fbcon_mode_deleted(info, mode);
3289 break;
Jesse Barnescfafca82007-07-17 04:05:33 -07003290 case FB_EVENT_FB_UNBIND:
Andrea Righi66c1ca02009-03-31 15:25:18 -07003291 idx = info->node;
Andrea Righi66c1ca02009-03-31 15:25:18 -07003292 ret = fbcon_fb_unbind(idx);
Jesse Barnescfafca82007-07-17 04:05:33 -07003293 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 case FB_EVENT_FB_REGISTERED:
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003295 ret = fbcon_fb_registered(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 break;
Antonino A. Daplase614b182006-06-26 00:27:09 -07003297 case FB_EVENT_FB_UNREGISTERED:
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003298 ret = fbcon_fb_unregistered(info);
Antonino A. Daplase614b182006-06-26 00:27:09 -07003299 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 case FB_EVENT_SET_CONSOLE_MAP:
Dave Airlie054430e2013-01-25 11:38:56 +10003301 /* called with console lock held */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 con2fb = event->data;
3303 ret = set_con2fb_map(con2fb->console - 1,
3304 con2fb->framebuffer, 1);
3305 break;
3306 case FB_EVENT_GET_CONSOLE_MAP:
3307 con2fb = event->data;
3308 con2fb->framebuffer = con2fb_map[con2fb->console - 1];
3309 break;
3310 case FB_EVENT_BLANK:
3311 fbcon_fb_blanked(info, *(int *)event->data);
3312 break;
3313 case FB_EVENT_NEW_MODELIST:
3314 fbcon_new_modelist(info);
3315 break;
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003316 case FB_EVENT_GET_REQ:
3317 caps = event->data;
3318 fbcon_get_requirement(info, caps);
3319 break;
Dave Airlie6a9ee8a2010-02-01 15:38:10 +10003320 case FB_EVENT_REMAP_ALL_CONSOLE:
3321 idx = info->node;
3322 fbcon_remap_all(idx);
3323 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 }
Antonino A. Daplase614b182006-06-26 00:27:09 -07003325done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 return ret;
3327}
3328
3329/*
3330 * The console `switch' structure for the frame buffer based console
3331 */
3332
3333static const struct consw fb_con = {
3334 .owner = THIS_MODULE,
3335 .con_startup = fbcon_startup,
3336 .con_init = fbcon_init,
3337 .con_deinit = fbcon_deinit,
3338 .con_clear = fbcon_clear,
3339 .con_putc = fbcon_putc,
3340 .con_putcs = fbcon_putcs,
3341 .con_cursor = fbcon_cursor,
3342 .con_scroll = fbcon_scroll,
3343 .con_bmove = fbcon_bmove,
3344 .con_switch = fbcon_switch,
3345 .con_blank = fbcon_blank,
3346 .con_font_set = fbcon_set_font,
3347 .con_font_get = fbcon_get_font,
3348 .con_font_default = fbcon_set_def_font,
3349 .con_font_copy = fbcon_copy_font,
3350 .con_set_palette = fbcon_set_palette,
3351 .con_scrolldelta = fbcon_scrolldelta,
3352 .con_set_origin = fbcon_set_origin,
3353 .con_invert_region = fbcon_invert_region,
3354 .con_screen_pos = fbcon_screen_pos,
3355 .con_getxy = fbcon_getxy,
3356 .con_resize = fbcon_resize,
Jesse Barnesd219adc2010-08-02 12:05:41 -07003357 .con_debug_enter = fbcon_debug_enter,
3358 .con_debug_leave = fbcon_debug_leave,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359};
3360
3361static struct notifier_block fbcon_event_notifier = {
3362 .notifier_call = fbcon_event_notify,
3363};
3364
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003365static ssize_t store_rotate(struct device *device,
3366 struct device_attribute *attr, const char *buf,
3367 size_t count)
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003368{
3369 struct fb_info *info;
3370 int rotate, idx;
3371 char **last = NULL;
3372
Antonino A. Daplase614b182006-06-26 00:27:09 -07003373 if (fbcon_has_exited)
3374 return count;
3375
Torben Hohnac751ef2011-01-25 15:07:35 -08003376 console_lock();
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003377 idx = con2fb_map[fg_console];
3378
3379 if (idx == -1 || registered_fb[idx] == NULL)
3380 goto err;
3381
3382 info = registered_fb[idx];
3383 rotate = simple_strtoul(buf, last, 0);
3384 fbcon_rotate(info, rotate);
3385err:
Torben Hohnac751ef2011-01-25 15:07:35 -08003386 console_unlock();
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003387 return count;
3388}
3389
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003390static ssize_t store_rotate_all(struct device *device,
3391 struct device_attribute *attr,const char *buf,
3392 size_t count)
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003393{
3394 struct fb_info *info;
3395 int rotate, idx;
3396 char **last = NULL;
3397
Antonino A. Daplase614b182006-06-26 00:27:09 -07003398 if (fbcon_has_exited)
3399 return count;
3400
Torben Hohnac751ef2011-01-25 15:07:35 -08003401 console_lock();
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003402 idx = con2fb_map[fg_console];
3403
3404 if (idx == -1 || registered_fb[idx] == NULL)
3405 goto err;
3406
3407 info = registered_fb[idx];
3408 rotate = simple_strtoul(buf, last, 0);
3409 fbcon_rotate_all(info, rotate);
3410err:
Torben Hohnac751ef2011-01-25 15:07:35 -08003411 console_unlock();
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003412 return count;
3413}
3414
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003415static ssize_t show_rotate(struct device *device,
3416 struct device_attribute *attr,char *buf)
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003417{
3418 struct fb_info *info;
3419 int rotate = 0, idx;
3420
Antonino A. Daplase614b182006-06-26 00:27:09 -07003421 if (fbcon_has_exited)
3422 return 0;
3423
Torben Hohnac751ef2011-01-25 15:07:35 -08003424 console_lock();
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003425 idx = con2fb_map[fg_console];
3426
3427 if (idx == -1 || registered_fb[idx] == NULL)
3428 goto err;
3429
3430 info = registered_fb[idx];
3431 rotate = fbcon_get_rotate(info);
3432err:
Torben Hohnac751ef2011-01-25 15:07:35 -08003433 console_unlock();
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003434 return snprintf(buf, PAGE_SIZE, "%d\n", rotate);
3435}
3436
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003437static ssize_t show_cursor_blink(struct device *device,
3438 struct device_attribute *attr, char *buf)
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -07003439{
3440 struct fb_info *info;
3441 struct fbcon_ops *ops;
3442 int idx, blink = -1;
3443
3444 if (fbcon_has_exited)
3445 return 0;
3446
Torben Hohnac751ef2011-01-25 15:07:35 -08003447 console_lock();
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -07003448 idx = con2fb_map[fg_console];
3449
3450 if (idx == -1 || registered_fb[idx] == NULL)
3451 goto err;
3452
3453 info = registered_fb[idx];
3454 ops = info->fbcon_par;
3455
3456 if (!ops)
3457 goto err;
3458
3459 blink = (ops->flags & FBCON_FLAGS_CURSOR_TIMER) ? 1 : 0;
3460err:
Torben Hohnac751ef2011-01-25 15:07:35 -08003461 console_unlock();
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -07003462 return snprintf(buf, PAGE_SIZE, "%d\n", blink);
3463}
3464
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003465static ssize_t store_cursor_blink(struct device *device,
3466 struct device_attribute *attr,
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -07003467 const char *buf, size_t count)
3468{
3469 struct fb_info *info;
3470 int blink, idx;
3471 char **last = NULL;
3472
3473 if (fbcon_has_exited)
3474 return count;
3475
Torben Hohnac751ef2011-01-25 15:07:35 -08003476 console_lock();
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -07003477 idx = con2fb_map[fg_console];
3478
3479 if (idx == -1 || registered_fb[idx] == NULL)
3480 goto err;
3481
3482 info = registered_fb[idx];
3483
3484 if (!info->fbcon_par)
3485 goto err;
3486
3487 blink = simple_strtoul(buf, last, 0);
3488
3489 if (blink) {
3490 fbcon_cursor_noblink = 0;
3491 fbcon_add_cursor_timer(info);
3492 } else {
3493 fbcon_cursor_noblink = 1;
3494 fbcon_del_cursor_timer(info);
3495 }
3496
3497err:
Torben Hohnac751ef2011-01-25 15:07:35 -08003498 console_unlock();
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -07003499 return count;
3500}
3501
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003502static struct device_attribute device_attrs[] = {
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003503 __ATTR(rotate, S_IRUGO|S_IWUSR, show_rotate, store_rotate),
3504 __ATTR(rotate_all, S_IWUSR, NULL, store_rotate_all),
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -07003505 __ATTR(cursor_blink, S_IRUGO|S_IWUSR, show_cursor_blink,
3506 store_cursor_blink),
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003507};
3508
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003509static int fbcon_init_device(void)
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003510{
Antonino A. Daplas0a727de2006-10-03 01:14:50 -07003511 int i, error = 0;
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003512
Antonino A. Daplas0a727de2006-10-03 01:14:50 -07003513 fbcon_has_sysfs = 1;
3514
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003515 for (i = 0; i < ARRAY_SIZE(device_attrs); i++) {
3516 error = device_create_file(fbcon_device, &device_attrs[i]);
Antonino A. Daplas0a727de2006-10-03 01:14:50 -07003517
3518 if (error)
3519 break;
3520 }
3521
3522 if (error) {
3523 while (--i >= 0)
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003524 device_remove_file(fbcon_device, &device_attrs[i]);
Antonino A. Daplas0a727de2006-10-03 01:14:50 -07003525
3526 fbcon_has_sysfs = 0;
3527 }
3528
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003529 return 0;
3530}
3531
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003532static void fbcon_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 if (num_registered_fb) {
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003535 int i;
3536
Torben Hohnac751ef2011-01-25 15:07:35 -08003537 console_lock();
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003538
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 for (i = 0; i < FB_MAX; i++) {
3540 if (registered_fb[i] != NULL) {
3541 info_idx = i;
3542 break;
3543 }
3544 }
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003545
Torben Hohnac751ef2011-01-25 15:07:35 -08003546 console_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 fbcon_takeover(0);
3548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549}
3550
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003551static void fbcon_exit(void)
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003552{
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003553 struct fb_info *info;
3554 int i, j, mapped;
3555
Antonino A. Daplase614b182006-06-26 00:27:09 -07003556 if (fbcon_has_exited)
3557 return;
3558
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003559 kfree((void *)softback_buf);
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003560 softback_buf = 0UL;
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003561
3562 for (i = 0; i < FB_MAX; i++) {
Jarek Poplawski142092e2010-09-22 13:05:05 -07003563 int pending = 0;
Geoff Levandbeaa4862008-12-09 13:14:17 -08003564
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003565 mapped = 0;
3566 info = registered_fb[i];
3567
3568 if (info == NULL)
3569 continue;
3570
Jarek Poplawski142092e2010-09-22 13:05:05 -07003571 if (info->queue.func)
3572 pending = cancel_work_sync(&info->queue);
Geoff Levandbeaa4862008-12-09 13:14:17 -08003573 DPRINTK("fbcon: %s pending work\n", (pending ? "canceled" :
3574 "no"));
3575
Antonino A. Daplase614b182006-06-26 00:27:09 -07003576 for (j = first_fb_vc; j <= last_fb_vc; j++) {
3577 if (con2fb_map[j] == i)
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003578 mapped = 1;
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003579 }
3580
3581 if (mapped) {
3582 if (info->fbops->fb_release)
3583 info->fbops->fb_release(info, 0);
3584 module_put(info->fbops->owner);
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003585
3586 if (info->fbcon_par) {
Dave Jonese299dd42006-10-03 01:14:47 -07003587 struct fbcon_ops *ops = info->fbcon_par;
3588
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003589 fbcon_del_cursor_timer(info);
Dave Jonese299dd42006-10-03 01:14:47 -07003590 kfree(ops->cursor_src);
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003591 kfree(info->fbcon_par);
3592 info->fbcon_par = NULL;
3593 }
3594
3595 if (info->queue.func == fb_flashcursor)
3596 info->queue.func = NULL;
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003597 }
3598 }
3599
Antonino A. Daplase614b182006-06-26 00:27:09 -07003600 fbcon_has_exited = 1;
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003601}
3602
3603static int __init fb_console_init(void)
3604{
3605 int i;
3606
Torben Hohnac751ef2011-01-25 15:07:35 -08003607 console_lock();
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003608 fb_register_client(&fbcon_event_notifier);
Greg Kroah-Hartman77997aa2008-07-21 20:03:34 -07003609 fbcon_device = device_create(fb_class, NULL, MKDEV(0, 0), NULL,
3610 "fbcon");
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003611
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003612 if (IS_ERR(fbcon_device)) {
3613 printk(KERN_WARNING "Unable to create device "
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003614 "for fbcon; errno = %ld\n",
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003615 PTR_ERR(fbcon_device));
3616 fbcon_device = NULL;
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003617 } else
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003618 fbcon_init_device();
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003619
3620 for (i = 0; i < MAX_NR_CONSOLES; i++)
3621 con2fb_map[i] = -1;
3622
Torben Hohnac751ef2011-01-25 15:07:35 -08003623 console_unlock();
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003624 fbcon_start();
3625 return 0;
3626}
3627
3628module_init(fb_console_init);
3629
3630#ifdef MODULE
3631
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003632static void __exit fbcon_deinit_device(void)
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003633{
3634 int i;
3635
Antonino A. Daplas0a727de2006-10-03 01:14:50 -07003636 if (fbcon_has_sysfs) {
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003637 for (i = 0; i < ARRAY_SIZE(device_attrs); i++)
3638 device_remove_file(fbcon_device, &device_attrs[i]);
Antonino A. Daplas0a727de2006-10-03 01:14:50 -07003639
3640 fbcon_has_sysfs = 0;
3641 }
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003642}
3643
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644static void __exit fb_console_exit(void)
3645{
Torben Hohnac751ef2011-01-25 15:07:35 -08003646 console_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 fb_unregister_client(&fbcon_event_notifier);
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003648 fbcon_deinit_device();
3649 device_destroy(fb_class, MKDEV(0, 0));
Antonino A. Daplase614b182006-06-26 00:27:09 -07003650 fbcon_exit();
Torben Hohnac751ef2011-01-25 15:07:35 -08003651 console_unlock();
Antonino A. Daplase614b182006-06-26 00:27:09 -07003652 unregister_con_driver(&fb_con);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653}
3654
3655module_exit(fb_console_exit);
3656
3657#endif
3658
3659MODULE_LICENSE("GPL");