blob: 4be3b46c069be3e33853fc7dd4b83023576eb8f1 [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>
80#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#ifdef CONFIG_ATARI
82#include <asm/atariints.h>
83#endif
84#ifdef CONFIG_MAC
85#include <asm/macints.h>
86#endif
Adrian Bunk7b892802008-02-06 01:36:29 -080087#if defined(__mc68000__)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#include <asm/machdep.h>
89#include <asm/setup.h>
90#endif
91
92#include "fbcon.h"
93
94#ifdef FBCONDEBUG
Harvey Harrison5ae12172008-04-28 02:15:47 -070095# define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __func__ , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#else
97# define DPRINTK(fmt, args...)
98#endif
99
100enum {
101 FBCON_LOGO_CANSHOW = -1, /* the logo can be shown */
102 FBCON_LOGO_DRAW = -2, /* draw the logo to a console */
103 FBCON_LOGO_DONTSHOW = -3 /* do not show the logo */
104};
105
Antonino A. Daplasab767202005-11-13 16:06:32 -0800106static struct display fb_display[MAX_NR_CONSOLES];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static signed char con2fb_map[MAX_NR_CONSOLES];
109static signed char con2fb_map_boot[MAX_NR_CONSOLES];
Antonino A. Daplas70802c62007-05-08 00:38:14 -0700110#ifndef MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static int logo_height;
Antonino A. Daplas70802c62007-05-08 00:38:14 -0700112#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static int logo_lines;
114/* logo_shown is an index to vc_cons when >= 0; otherwise follows FBCON_LOGO
115 enums. */
116static int logo_shown = FBCON_LOGO_CANSHOW;
117/* Software scrollback */
118static int fbcon_softback_size = 32768;
119static unsigned long softback_buf, softback_curr;
120static unsigned long softback_in;
121static unsigned long softback_top, softback_end;
122static int softback_lines;
123/* console mappings */
124static int first_fb_vc;
125static int last_fb_vc = MAX_NR_CONSOLES - 1;
126static int fbcon_is_default = 1;
Antonino A. Daplase614b182006-06-26 00:27:09 -0700127static int fbcon_has_exited;
Antonino A. Daplas623e71b2007-07-17 04:05:28 -0700128static int primary_device = -1;
Antonino A. Daplas4769a9a2007-08-10 13:00:46 -0700129
130#ifdef CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY
Antonino A. Daplas623e71b2007-07-17 04:05:28 -0700131static int map_override;
Antonino A. Daplase614b182006-06-26 00:27:09 -0700132
Antonino A. Daplas4769a9a2007-08-10 13:00:46 -0700133static inline void fbcon_map_override(void)
134{
135 map_override = 1;
136}
137#else
138static inline void fbcon_map_override(void)
139{
140}
141#endif /* CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY */
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/* font data */
144static char fontname[40];
145
146/* current fb_info */
147static int info_idx = -1;
148
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800149/* console rotation */
Marcin Slusarz2428e592008-02-06 01:39:14 -0800150static int initial_rotation;
Antonino A. Daplas0a727de2006-10-03 01:14:50 -0700151static int fbcon_has_sysfs;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static const struct consw fb_con;
154
155#define CM_SOFTBACK (8)
156
157#define advance_row(p, delta) (unsigned short *)((unsigned long)(p) + (delta) * vc->vc_size_row)
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static int fbcon_set_origin(struct vc_data *);
160
161#define CURSOR_DRAW_DELAY (1)
162
163/* # VBL ints between cursor state changes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164#define ATARI_CURSOR_BLINK_RATE (42)
165#define MAC_CURSOR_BLINK_RATE (32)
166#define DEFAULT_CURSOR_BLINK_RATE (20)
167
168static int vbl_cursor_cnt;
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -0700169static int fbcon_cursor_noblink;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171#define divides(a, b) ((!(a) || (b)%(a)) ? 0 : 1)
172
173/*
174 * Interface used by the world
175 */
176
177static const char *fbcon_startup(void);
178static void fbcon_init(struct vc_data *vc, int init);
179static void fbcon_deinit(struct vc_data *vc);
180static void fbcon_clear(struct vc_data *vc, int sy, int sx, int height,
181 int width);
182static void fbcon_putc(struct vc_data *vc, int c, int ypos, int xpos);
183static void fbcon_putcs(struct vc_data *vc, const unsigned short *s,
184 int count, int ypos, int xpos);
185static void fbcon_clear_margins(struct vc_data *vc, int bottom_only);
186static void fbcon_cursor(struct vc_data *vc, int mode);
187static int fbcon_scroll(struct vc_data *vc, int t, int b, int dir,
188 int count);
189static void fbcon_bmove(struct vc_data *vc, int sy, int sx, int dy, int dx,
190 int height, int width);
191static int fbcon_switch(struct vc_data *vc);
192static int fbcon_blank(struct vc_data *vc, int blank, int mode_switch);
193static int fbcon_set_palette(struct vc_data *vc, unsigned char *table);
194static int fbcon_scrolldelta(struct vc_data *vc, int lines);
195
196/*
197 * Internal routines
198 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199static __inline__ void ywrap_up(struct vc_data *vc, int count);
200static __inline__ void ywrap_down(struct vc_data *vc, int count);
201static __inline__ void ypan_up(struct vc_data *vc, int count);
202static __inline__ void ypan_down(struct vc_data *vc, int count);
203static void fbcon_bmove_rec(struct vc_data *vc, struct display *p, int sy, int sx,
204 int dy, int dx, int height, int width, u_int y_break);
205static void fbcon_set_disp(struct fb_info *info, struct fb_var_screeninfo *var,
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -0700206 int unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207static void fbcon_redraw_move(struct vc_data *vc, struct display *p,
208 int line, int count, int dy);
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800209static void fbcon_modechanged(struct fb_info *info);
210static void fbcon_set_all_vcs(struct fb_info *info);
Antonino A. Daplas5428b042006-06-26 00:27:06 -0700211static void fbcon_start(void);
212static void fbcon_exit(void);
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -0700213static struct device *fbcon_device;
Antonino A. Daplas9a179172006-06-26 00:27:05 -0700214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215#ifdef CONFIG_MAC
216/*
217 * On the Macintoy, there may or may not be a working VBL int. We need to probe
218 */
219static int vbl_detected;
220
David Howells7d12e782006-10-05 14:55:46 +0100221static irqreturn_t fb_vbl_detect(int irq, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 vbl_detected++;
224 return IRQ_HANDLED;
225}
226#endif
227
Antonino A. Daplasdbcbfe12005-11-08 21:39:12 -0800228#ifdef CONFIG_FRAMEBUFFER_CONSOLE_ROTATION
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800229static inline void fbcon_set_rotation(struct fb_info *info)
Antonino A. Daplasdbcbfe12005-11-08 21:39:12 -0800230{
231 struct fbcon_ops *ops = info->fbcon_par;
232
233 if (!(info->flags & FBINFO_MISC_TILEBLITTING) &&
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800234 ops->p->con_rotate < 4)
235 ops->rotate = ops->p->con_rotate;
Antonino A. Daplasdbcbfe12005-11-08 21:39:12 -0800236 else
237 ops->rotate = 0;
238}
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800239
240static void fbcon_rotate(struct fb_info *info, u32 rotate)
241{
242 struct fbcon_ops *ops= info->fbcon_par;
243 struct fb_info *fb_info;
244
245 if (!ops || ops->currcon == -1)
246 return;
247
248 fb_info = registered_fb[con2fb_map[ops->currcon]];
249
250 if (info == fb_info) {
251 struct display *p = &fb_display[ops->currcon];
252
253 if (rotate < 4)
254 p->con_rotate = rotate;
255 else
256 p->con_rotate = 0;
257
258 fbcon_modechanged(info);
259 }
260}
261
262static void fbcon_rotate_all(struct fb_info *info, u32 rotate)
263{
264 struct fbcon_ops *ops = info->fbcon_par;
265 struct vc_data *vc;
266 struct display *p;
267 int i;
268
269 if (!ops || ops->currcon < 0 || rotate > 3)
270 return;
271
Antonino A. Daplase614b182006-06-26 00:27:09 -0700272 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800273 vc = vc_cons[i].d;
274 if (!vc || vc->vc_mode != KD_TEXT ||
275 registered_fb[con2fb_map[i]] != info)
276 continue;
277
278 p = &fb_display[vc->vc_num];
279 p->con_rotate = rotate;
280 }
281
282 fbcon_set_all_vcs(info);
283}
Antonino A. Daplasdbcbfe12005-11-08 21:39:12 -0800284#else
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800285static inline void fbcon_set_rotation(struct fb_info *info)
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800286{
287 struct fbcon_ops *ops = info->fbcon_par;
288
289 ops->rotate = FB_ROTATE_UR;
290}
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800291
292static void fbcon_rotate(struct fb_info *info, u32 rotate)
293{
294 return;
295}
296
297static void fbcon_rotate_all(struct fb_info *info, u32 rotate)
298{
299 return;
300}
Antonino A. Daplasdbcbfe12005-11-08 21:39:12 -0800301#endif /* CONFIG_FRAMEBUFFER_CONSOLE_ROTATION */
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800302
Antonino A. Daplasa812c942005-11-08 21:39:15 -0800303static int fbcon_get_rotate(struct fb_info *info)
304{
305 struct fbcon_ops *ops = info->fbcon_par;
306
307 return (ops) ? ops->rotate : 0;
308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static inline int fbcon_is_inactive(struct vc_data *vc, struct fb_info *info)
311{
312 struct fbcon_ops *ops = info->fbcon_par;
313
314 return (info->state != FBINFO_STATE_RUNNING ||
315 vc->vc_mode != KD_TEXT || ops->graphics);
316}
317
318static inline int get_color(struct vc_data *vc, struct fb_info *info,
319 u16 c, int is_fg)
320{
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700321 int depth = fb_get_color_depth(&info->var, &info->fix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 int color = 0;
323
324 if (console_blanked) {
325 unsigned short charmask = vc->vc_hi_font_mask ? 0x1ff : 0xff;
326
327 c = vc->vc_video_erase_char & charmask;
328 }
329
330 if (depth != 1)
331 color = (is_fg) ? attr_fgcol((vc->vc_hi_font_mask) ? 9 : 8, c)
332 : attr_bgcol((vc->vc_hi_font_mask) ? 13 : 12, c);
333
334 switch (depth) {
335 case 1:
336 {
Thomas Pfaff91c43132008-02-06 01:39:45 -0800337 int col = mono_col(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 /* 0 or 1 */
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700339 int fg = (info->fix.visual != FB_VISUAL_MONO01) ? col : 0;
340 int bg = (info->fix.visual != FB_VISUAL_MONO01) ? 0 : col;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 if (console_blanked)
343 fg = bg;
344
345 color = (is_fg) ? fg : bg;
346 break;
347 }
348 case 2:
349 /*
350 * Scale down 16-colors to 4 colors. Default 4-color palette
Antonino A. Daplas2cc38ed2005-09-09 13:04:38 -0700351 * is grayscale. However, simply dividing the values by 4
352 * will not work, as colors 1, 2 and 3 will be scaled-down
353 * to zero rendering them invisible. So empirically convert
354 * colors to a sane 4-level grayscale.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 */
Antonino A. Daplas2cc38ed2005-09-09 13:04:38 -0700356 switch (color) {
357 case 0:
358 color = 0; /* black */
359 break;
360 case 1 ... 6:
361 color = 2; /* white */
362 break;
363 case 7 ... 8:
364 color = 1; /* gray */
365 break;
366 default:
367 color = 3; /* intense white */
368 break;
369 }
370 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 case 3:
372 /*
373 * Last 8 entries of default 16-color palette is a more intense
374 * version of the first 8 (i.e., same chrominance, different
375 * luminance).
376 */
377 color &= 7;
378 break;
379 }
380
381
382 return color;
383}
384
Antonino A. Daplas4d9c5b62005-11-07 01:00:36 -0800385static void fbcon_update_softback(struct vc_data *vc)
386{
387 int l = fbcon_softback_size / vc->vc_size_row;
388
389 if (l > 5)
390 softback_end = softback_buf + l * vc->vc_size_row;
391 else
392 /* Smaller scrollback makes no sense, and 0 would screw
393 the operation totally */
394 softback_top = 0;
395}
396
David Howellsc4028952006-11-22 14:57:56 +0000397static void fb_flashcursor(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
David Howellsc4028952006-11-22 14:57:56 +0000399 struct fb_info *info = container_of(work, struct fb_info, queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 struct fbcon_ops *ops = info->fbcon_par;
401 struct display *p;
402 struct vc_data *vc = NULL;
403 int c;
404 int mode;
405
Antonino A. Daplas5428b042006-06-26 00:27:06 -0700406 acquire_console_sem();
407 if (ops && ops->currcon != -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 vc = vc_cons[ops->currcon].d;
409
410 if (!vc || !CON_IS_VISIBLE(vc) ||
Michal Januszewskidbd4f122005-07-27 11:46:06 -0700411 registered_fb[con2fb_map[vc->vc_num]] != info ||
Antonino A. Daplas212f2632006-10-03 01:14:48 -0700412 vc->vc_deccm != 1) {
Antonino A. Daplas5428b042006-06-26 00:27:06 -0700413 release_console_sem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return;
Antonino A. Daplas5428b042006-06-26 00:27:06 -0700415 }
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 p = &fb_display[vc->vc_num];
418 c = scr_readw((u16 *) vc->vc_pos);
419 mode = (!ops->cursor_flash || ops->cursor_state.enable) ?
420 CM_ERASE : CM_DRAW;
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800421 ops->cursor(vc, info, mode, softback_lines, get_color(vc, info, c, 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 get_color(vc, info, c, 0));
423 release_console_sem();
424}
425
Russell King41359dc2005-06-30 16:30:07 +0100426#if defined(CONFIG_ATARI) || defined(CONFIG_MAC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427static int cursor_blink_rate;
David Howells7d12e782006-10-05 14:55:46 +0100428static irqreturn_t fb_vbl_handler(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
430 struct fb_info *info = dev_id;
431
432 if (vbl_cursor_cnt && --vbl_cursor_cnt == 0) {
433 schedule_work(&info->queue);
434 vbl_cursor_cnt = cursor_blink_rate;
435 }
436 return IRQ_HANDLED;
437}
438#endif
439
440static void cursor_timer_handler(unsigned long dev_addr)
441{
442 struct fb_info *info = (struct fb_info *) dev_addr;
443 struct fbcon_ops *ops = info->fbcon_par;
444
445 schedule_work(&info->queue);
446 mod_timer(&ops->cursor_timer, jiffies + HZ/5);
447}
448
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -0700449static void fbcon_add_cursor_timer(struct fb_info *info)
450{
451 struct fbcon_ops *ops = info->fbcon_par;
452
453 if ((!info->queue.func || info->queue.func == fb_flashcursor) &&
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -0700454 !(ops->flags & FBCON_FLAGS_CURSOR_TIMER) &&
455 !fbcon_cursor_noblink) {
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -0700456 if (!info->queue.func)
David Howellsc4028952006-11-22 14:57:56 +0000457 INIT_WORK(&info->queue, fb_flashcursor);
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -0700458
459 init_timer(&ops->cursor_timer);
460 ops->cursor_timer.function = cursor_timer_handler;
461 ops->cursor_timer.expires = jiffies + HZ / 5;
462 ops->cursor_timer.data = (unsigned long ) info;
463 add_timer(&ops->cursor_timer);
464 ops->flags |= FBCON_FLAGS_CURSOR_TIMER;
465 }
466}
467
468static void fbcon_del_cursor_timer(struct fb_info *info)
469{
470 struct fbcon_ops *ops = info->fbcon_par;
471
472 if (info->queue.func == fb_flashcursor &&
473 ops->flags & FBCON_FLAGS_CURSOR_TIMER) {
474 del_timer_sync(&ops->cursor_timer);
475 ops->flags &= ~FBCON_FLAGS_CURSOR_TIMER;
476 }
477}
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479#ifndef MODULE
480static int __init fb_console_setup(char *this_opt)
481{
482 char *options;
483 int i, j;
484
485 if (!this_opt || !*this_opt)
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800486 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 while ((options = strsep(&this_opt, ",")) != NULL) {
489 if (!strncmp(options, "font:", 5))
490 strcpy(fontname, options + 5);
491
492 if (!strncmp(options, "scrollback:", 11)) {
493 options += 11;
494 if (*options) {
495 fbcon_softback_size = simple_strtoul(options, &options, 0);
496 if (*options == 'k' || *options == 'K') {
497 fbcon_softback_size *= 1024;
498 options++;
499 }
500 if (*options != ',')
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800501 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 options++;
503 } else
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800504 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
507 if (!strncmp(options, "map:", 4)) {
508 options += 4;
Antonino A. Daplas623e71b2007-07-17 04:05:28 -0700509 if (*options) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 for (i = 0, j = 0; i < MAX_NR_CONSOLES; i++) {
511 if (!options[j])
512 j = 0;
513 con2fb_map_boot[i] =
514 (options[j++]-'0') % FB_MAX;
515 }
Antonino A. Daplas623e71b2007-07-17 04:05:28 -0700516
Antonino A. Daplas4769a9a2007-08-10 13:00:46 -0700517 fbcon_map_override();
Antonino A. Daplas623e71b2007-07-17 04:05:28 -0700518 }
519
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800520 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
522
523 if (!strncmp(options, "vc:", 3)) {
524 options += 3;
525 if (*options)
526 first_fb_vc = simple_strtoul(options, &options, 10) - 1;
527 if (first_fb_vc < 0)
528 first_fb_vc = 0;
529 if (*options++ == '-')
530 last_fb_vc = simple_strtoul(options, &options, 10) - 1;
531 fbcon_is_default = 0;
532 }
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800533
534 if (!strncmp(options, "rotate:", 7)) {
535 options += 7;
536 if (*options)
Marcin Slusarz2428e592008-02-06 01:39:14 -0800537 initial_rotation = simple_strtoul(options, &options, 0);
538 if (initial_rotation > 3)
539 initial_rotation = 0;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800542 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545__setup("fbcon=", fb_console_setup);
546#endif
547
548static int search_fb_in_map(int idx)
549{
550 int i, retval = 0;
551
Antonino A. Daplase614b182006-06-26 00:27:09 -0700552 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (con2fb_map[i] == idx)
554 retval = 1;
555 }
556 return retval;
557}
558
559static int search_for_mapped_con(void)
560{
561 int i, retval = 0;
562
Antonino A. Daplase614b182006-06-26 00:27:09 -0700563 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (con2fb_map[i] != -1)
565 retval = 1;
566 }
567 return retval;
568}
569
570static int fbcon_takeover(int show_logo)
571{
572 int err, i;
573
574 if (!num_registered_fb)
575 return -ENODEV;
576
577 if (!show_logo)
578 logo_shown = FBCON_LOGO_DONTSHOW;
579
580 for (i = first_fb_vc; i <= last_fb_vc; i++)
581 con2fb_map[i] = info_idx;
582
583 err = take_over_console(&fb_con, first_fb_vc, last_fb_vc,
584 fbcon_is_default);
Antonino A. Daplase614b182006-06-26 00:27:09 -0700585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (err) {
587 for (i = first_fb_vc; i <= last_fb_vc; i++) {
588 con2fb_map[i] = -1;
589 }
590 info_idx = -1;
591 }
592
593 return err;
594}
595
Antonino A. Daplas70802c62007-05-08 00:38:14 -0700596#ifdef MODULE
597static void fbcon_prepare_logo(struct vc_data *vc, struct fb_info *info,
598 int cols, int rows, int new_cols, int new_rows)
599{
600 logo_shown = FBCON_LOGO_DONTSHOW;
601}
602#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603static void fbcon_prepare_logo(struct vc_data *vc, struct fb_info *info,
604 int cols, int rows, int new_cols, int new_rows)
605{
606 /* Need to make room for the logo */
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800607 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 int cnt, erase = vc->vc_video_erase_char, step;
609 unsigned short *save = NULL, *r, *q;
610
Antonino A. Daplas70802c62007-05-08 00:38:14 -0700611 if (info->flags & FBINFO_MODULE) {
612 logo_shown = FBCON_LOGO_DONTSHOW;
613 return;
614 }
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 /*
617 * remove underline attribute from erase character
618 * if black and white framebuffer.
619 */
Antonino A. Daplasb8c90942005-09-09 13:04:37 -0700620 if (fb_get_color_depth(&info->var, &info->fix) == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 erase &= ~0x400;
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -0800622 logo_height = fb_prepare_logo(info, ops->rotate);
Julia Lawall416e74e2008-04-28 02:14:51 -0700623 logo_lines = DIV_ROUND_UP(logo_height, vc->vc_font.height);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 q = (unsigned short *) (vc->vc_origin +
625 vc->vc_size_row * rows);
626 step = logo_lines * cols;
627 for (r = q - logo_lines * cols; r < q; r++)
628 if (scr_readw(r) != vc->vc_video_erase_char)
629 break;
630 if (r != q && new_rows >= rows + logo_lines) {
631 save = kmalloc(logo_lines * new_cols * 2, GFP_KERNEL);
632 if (save) {
633 int i = cols < new_cols ? cols : new_cols;
634 scr_memsetw(save, erase, logo_lines * new_cols * 2);
635 r = q - step;
636 for (cnt = 0; cnt < logo_lines; cnt++, r += i)
637 scr_memcpyw(save + cnt * new_cols, r, 2 * i);
638 r = q;
639 }
640 }
641 if (r == q) {
642 /* We can scroll screen down */
643 r = q - step - cols;
644 for (cnt = rows - logo_lines; cnt > 0; cnt--) {
645 scr_memcpyw(r + step, r, vc->vc_size_row);
646 r -= cols;
647 }
648 if (!save) {
Geert Uytterhoeven250038f2007-05-08 00:37:53 -0700649 int lines;
650 if (vc->vc_y + logo_lines >= rows)
651 lines = rows - vc->vc_y - 1;
652 else
653 lines = logo_lines;
654 vc->vc_y += lines;
655 vc->vc_pos += lines * vc->vc_size_row;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657 }
658 scr_memsetw((unsigned short *) vc->vc_origin,
659 erase,
660 vc->vc_size_row * logo_lines);
661
662 if (CON_IS_VISIBLE(vc) && vc->vc_mode == KD_TEXT) {
663 fbcon_clear_margins(vc, 0);
664 update_screen(vc);
665 }
666
667 if (save) {
668 q = (unsigned short *) (vc->vc_origin +
669 vc->vc_size_row *
670 rows);
671 scr_memcpyw(q, save, logo_lines * new_cols * 2);
672 vc->vc_y += logo_lines;
673 vc->vc_pos += logo_lines * vc->vc_size_row;
674 kfree(save);
675 }
676
677 if (logo_lines > vc->vc_bottom) {
678 logo_shown = FBCON_LOGO_CANSHOW;
679 printk(KERN_INFO
680 "fbcon_init: disable boot-logo (boot-logo bigger than screen).\n");
681 } else if (logo_shown != FBCON_LOGO_DONTSHOW) {
682 logo_shown = FBCON_LOGO_DRAW;
683 vc->vc_top = logo_lines;
684 }
685}
Antonino A. Daplas70802c62007-05-08 00:38:14 -0700686#endif /* MODULE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688#ifdef CONFIG_FB_TILEBLITTING
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800689static void set_blitting_type(struct vc_data *vc, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
691 struct fbcon_ops *ops = info->fbcon_par;
692
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800693 ops->p = &fb_display[vc->vc_num];
Antonino A. Daplasab767202005-11-13 16:06:32 -0800694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 if ((info->flags & FBINFO_MISC_TILEBLITTING))
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800696 fbcon_set_tileops(vc, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800697 else {
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800698 fbcon_set_rotation(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 fbcon_set_bitops(ops);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
Antonino A. Daplas38b49822007-05-08 00:39:19 -0700702
703static int fbcon_invalid_charcount(struct fb_info *info, unsigned charcount)
704{
705 int err = 0;
706
707 if (info->flags & FBINFO_MISC_TILEBLITTING &&
708 info->tileops->fb_get_tilemax(info) < charcount)
709 err = 1;
710
711 return err;
712}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713#else
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800714static void set_blitting_type(struct vc_data *vc, struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 struct fbcon_ops *ops = info->fbcon_par;
717
718 info->flags &= ~FBINFO_MISC_TILEBLITTING;
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800719 ops->p = &fb_display[vc->vc_num];
720 fbcon_set_rotation(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 fbcon_set_bitops(ops);
722}
Antonino A. Daplas38b49822007-05-08 00:39:19 -0700723
724static int fbcon_invalid_charcount(struct fb_info *info, unsigned charcount)
725{
726 return 0;
727}
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729#endif /* CONFIG_MISC_TILEBLITTING */
730
731
732static int con2fb_acquire_newinfo(struct vc_data *vc, struct fb_info *info,
733 int unit, int oldidx)
734{
735 struct fbcon_ops *ops = NULL;
736 int err = 0;
737
738 if (!try_module_get(info->fbops->owner))
739 err = -ENODEV;
740
741 if (!err && info->fbops->fb_open &&
742 info->fbops->fb_open(info, 0))
743 err = -ENODEV;
744
745 if (!err) {
Antonino A. Daplasa39bc342006-01-09 20:53:44 -0800746 ops = kzalloc(sizeof(struct fbcon_ops), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if (!ops)
748 err = -ENOMEM;
749 }
750
751 if (!err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 info->fbcon_par = ops;
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -0700753
754 if (vc)
755 set_blitting_type(vc, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757
758 if (err) {
759 con2fb_map[unit] = oldidx;
760 module_put(info->fbops->owner);
761 }
762
763 return err;
764}
765
766static int con2fb_release_oldinfo(struct vc_data *vc, struct fb_info *oldinfo,
767 struct fb_info *newinfo, int unit,
768 int oldidx, int found)
769{
770 struct fbcon_ops *ops = oldinfo->fbcon_par;
771 int err = 0;
772
773 if (oldinfo->fbops->fb_release &&
774 oldinfo->fbops->fb_release(oldinfo, 0)) {
775 con2fb_map[unit] = oldidx;
776 if (!found && newinfo->fbops->fb_release)
777 newinfo->fbops->fb_release(newinfo, 0);
778 if (!found)
779 module_put(newinfo->fbops->owner);
780 err = -ENODEV;
781 }
782
783 if (!err) {
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -0700784 fbcon_del_cursor_timer(oldinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 kfree(ops->cursor_state.mask);
786 kfree(ops->cursor_data);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800787 kfree(ops->fontbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 kfree(oldinfo->fbcon_par);
789 oldinfo->fbcon_par = NULL;
790 module_put(oldinfo->fbops->owner);
Antonino A. Daplasdd0314f2005-11-07 01:00:38 -0800791 /*
792 If oldinfo and newinfo are driving the same hardware,
793 the fb_release() method of oldinfo may attempt to
794 restore the hardware state. This will leave the
795 newinfo in an undefined state. Thus, a call to
796 fb_set_par() may be needed for the newinfo.
797 */
798 if (newinfo->fbops->fb_set_par)
799 newinfo->fbops->fb_set_par(newinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801
802 return err;
803}
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805static void con2fb_init_display(struct vc_data *vc, struct fb_info *info,
806 int unit, int show_logo)
807{
808 struct fbcon_ops *ops = info->fbcon_par;
809
810 ops->currcon = fg_console;
811
812 if (info->fbops->fb_set_par && !(ops->flags & FBCON_FLAGS_INIT))
813 info->fbops->fb_set_par(info);
814
815 ops->flags |= FBCON_FLAGS_INIT;
816 ops->graphics = 0;
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -0700817 fbcon_set_disp(info, &info->var, unit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 if (show_logo) {
820 struct vc_data *fg_vc = vc_cons[fg_console].d;
821 struct fb_info *fg_info =
822 registered_fb[con2fb_map[fg_console]];
823
824 fbcon_prepare_logo(fg_vc, fg_info, fg_vc->vc_cols,
825 fg_vc->vc_rows, fg_vc->vc_cols,
826 fg_vc->vc_rows);
827 }
828
829 update_screen(vc_cons[fg_console].d);
830}
831
832/**
833 * set_con2fb_map - map console to frame buffer device
834 * @unit: virtual console number to map
835 * @newidx: frame buffer index to map virtual console to
836 * @user: user request
837 *
838 * Maps a virtual console @unit to a frame buffer device
839 * @newidx.
840 */
841static int set_con2fb_map(int unit, int newidx, int user)
842{
843 struct vc_data *vc = vc_cons[unit].d;
844 int oldidx = con2fb_map[unit];
845 struct fb_info *info = registered_fb[newidx];
846 struct fb_info *oldinfo = NULL;
847 int found, err = 0;
848
849 if (oldidx == newidx)
850 return 0;
851
Antonino A. Daplase614b182006-06-26 00:27:09 -0700852 if (!info || fbcon_has_exited)
853 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 if (!err && !search_for_mapped_con()) {
856 info_idx = newidx;
857 return fbcon_takeover(0);
858 }
859
860 if (oldidx != -1)
861 oldinfo = registered_fb[oldidx];
862
863 found = search_fb_in_map(newidx);
864
865 acquire_console_sem();
866 con2fb_map[unit] = newidx;
867 if (!err && !found)
868 err = con2fb_acquire_newinfo(vc, info, unit, oldidx);
869
870
871 /*
872 * If old fb is not mapped to any of the consoles,
873 * fbcon should release it.
874 */
875 if (!err && oldinfo && !search_fb_in_map(oldidx))
876 err = con2fb_release_oldinfo(vc, oldinfo, info, unit, oldidx,
877 found);
878
879 if (!err) {
880 int show_logo = (fg_console == 0 && !user &&
881 logo_shown != FBCON_LOGO_DONTSHOW);
882
883 if (!found)
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -0700884 fbcon_add_cursor_timer(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 con2fb_map_boot[unit] = newidx;
886 con2fb_init_display(vc, info, unit, show_logo);
887 }
888
Antonino A. Daplase614b182006-06-26 00:27:09 -0700889 if (!search_fb_in_map(info_idx))
890 info_idx = newidx;
891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 release_console_sem();
893 return err;
894}
895
896/*
897 * Low Level Operations
898 */
899/* NOTE: fbcon cannot be __init: it may be called from take_over_console later */
900static int var_to_display(struct display *disp,
901 struct fb_var_screeninfo *var,
902 struct fb_info *info)
903{
904 disp->xres_virtual = var->xres_virtual;
905 disp->yres_virtual = var->yres_virtual;
906 disp->bits_per_pixel = var->bits_per_pixel;
907 disp->grayscale = var->grayscale;
908 disp->nonstd = var->nonstd;
909 disp->accel_flags = var->accel_flags;
910 disp->height = var->height;
911 disp->width = var->width;
912 disp->red = var->red;
913 disp->green = var->green;
914 disp->blue = var->blue;
915 disp->transp = var->transp;
916 disp->rotate = var->rotate;
917 disp->mode = fb_match_mode(var, &info->modelist);
918 if (disp->mode == NULL)
919 /* This should not happen */
920 return -EINVAL;
921 return 0;
922}
923
924static void display_to_var(struct fb_var_screeninfo *var,
925 struct display *disp)
926{
927 fb_videomode_to_var(var, disp->mode);
928 var->xres_virtual = disp->xres_virtual;
929 var->yres_virtual = disp->yres_virtual;
930 var->bits_per_pixel = disp->bits_per_pixel;
931 var->grayscale = disp->grayscale;
932 var->nonstd = disp->nonstd;
933 var->accel_flags = disp->accel_flags;
934 var->height = disp->height;
935 var->width = disp->width;
936 var->red = disp->red;
937 var->green = disp->green;
938 var->blue = disp->blue;
939 var->transp = disp->transp;
940 var->rotate = disp->rotate;
941}
942
943static const char *fbcon_startup(void)
944{
945 const char *display_desc = "frame buffer device";
946 struct display *p = &fb_display[fg_console];
947 struct vc_data *vc = vc_cons[fg_console].d;
Jan Beulich2f4516d2005-09-13 01:25:44 -0700948 const struct font_desc *font = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 struct module *owner;
950 struct fb_info *info = NULL;
951 struct fbcon_ops *ops;
952 int rows, cols;
953 int irqres;
954
955 irqres = 1;
956 /*
957 * If num_registered_fb is zero, this is a call for the dummy part.
958 * The frame buffer devices weren't initialized yet.
959 */
960 if (!num_registered_fb || info_idx == -1)
961 return display_desc;
962 /*
963 * Instead of blindly using registered_fb[0], we use info_idx, set by
964 * fb_console_init();
965 */
966 info = registered_fb[info_idx];
967 if (!info)
968 return NULL;
969
970 owner = info->fbops->owner;
971 if (!try_module_get(owner))
972 return NULL;
973 if (info->fbops->fb_open && info->fbops->fb_open(info, 0)) {
974 module_put(owner);
975 return NULL;
976 }
977
Antonino A. Daplasa39bc342006-01-09 20:53:44 -0800978 ops = kzalloc(sizeof(struct fbcon_ops), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (!ops) {
980 module_put(owner);
981 return NULL;
982 }
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 ops->currcon = -1;
985 ops->graphics = 1;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -0800986 ops->cur_rotate = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 info->fbcon_par = ops;
Marcin Slusarz2428e592008-02-06 01:39:14 -0800988 p->con_rotate = initial_rotation;
Antonino A. Daplasb73deed2006-01-09 20:52:56 -0800989 set_blitting_type(vc, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 if (info->fix.type != FB_TYPE_TEXT) {
992 if (fbcon_softback_size) {
993 if (!softback_buf) {
994 softback_buf =
995 (unsigned long)
996 kmalloc(fbcon_softback_size,
997 GFP_KERNEL);
998 if (!softback_buf) {
999 fbcon_softback_size = 0;
1000 softback_top = 0;
1001 }
1002 }
1003 } else {
1004 if (softback_buf) {
1005 kfree((void *) softback_buf);
1006 softback_buf = 0;
1007 softback_top = 0;
1008 }
1009 }
1010 if (softback_buf)
1011 softback_in = softback_top = softback_curr =
1012 softback_buf;
1013 softback_lines = 0;
1014 }
1015
1016 /* Setup default font */
1017 if (!p->fontdata) {
1018 if (!fontname[0] || !(font = find_font(fontname)))
1019 font = get_default_font(info->var.xres,
Antonino A. Daplas2d2699d2007-05-08 00:39:11 -07001020 info->var.yres,
1021 info->pixmap.blit_x,
1022 info->pixmap.blit_y);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 vc->vc_font.width = font->width;
1024 vc->vc_font.height = font->height;
Jan Beulich2f4516d2005-09-13 01:25:44 -07001025 vc->vc_font.data = (void *)(p->fontdata = font->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 vc->vc_font.charcount = 256; /* FIXME Need to support more fonts */
1027 }
1028
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001029 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres);
1030 rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
1031 cols /= vc->vc_font.width;
1032 rows /= vc->vc_font.height;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 vc_resize(vc, cols, rows);
1034
1035 DPRINTK("mode: %s\n", info->fix.id);
1036 DPRINTK("visual: %d\n", info->fix.visual);
1037 DPRINTK("res: %dx%d-%d\n", info->var.xres,
1038 info->var.yres,
1039 info->var.bits_per_pixel);
1040
1041#ifdef CONFIG_ATARI
1042 if (MACH_IS_ATARI) {
1043 cursor_blink_rate = ATARI_CURSOR_BLINK_RATE;
1044 irqres =
1045 request_irq(IRQ_AUTO_4, fb_vbl_handler,
1046 IRQ_TYPE_PRIO, "framebuffer vbl",
1047 info);
1048 }
1049#endif /* CONFIG_ATARI */
1050
1051#ifdef CONFIG_MAC
1052 /*
1053 * On a Macintoy, the VBL interrupt may or may not be active.
1054 * As interrupt based cursor is more reliable and race free, we
1055 * probe for VBL interrupts.
1056 */
1057 if (MACH_IS_MAC) {
1058 int ct = 0;
1059 /*
1060 * Probe for VBL: set temp. handler ...
1061 */
1062 irqres = request_irq(IRQ_MAC_VBL, fb_vbl_detect, 0,
1063 "framebuffer vbl", info);
1064 vbl_detected = 0;
1065
1066 /*
1067 * ... and spin for 20 ms ...
1068 */
1069 while (!vbl_detected && ++ct < 1000)
1070 udelay(20);
1071
1072 if (ct == 1000)
1073 printk
1074 ("fbcon_startup: No VBL detected, using timer based cursor.\n");
1075
1076 free_irq(IRQ_MAC_VBL, fb_vbl_detect);
1077
1078 if (vbl_detected) {
1079 /*
1080 * interrupt based cursor ok
1081 */
1082 cursor_blink_rate = MAC_CURSOR_BLINK_RATE;
1083 irqres =
1084 request_irq(IRQ_MAC_VBL, fb_vbl_handler, 0,
1085 "framebuffer vbl", info);
1086 } else {
1087 /*
1088 * VBL not detected: fall through, use timer based cursor
1089 */
1090 irqres = 1;
1091 }
1092 }
1093#endif /* CONFIG_MAC */
1094
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07001095 fbcon_add_cursor_timer(info);
Antonino A. Daplase614b182006-06-26 00:27:09 -07001096 fbcon_has_exited = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 return display_desc;
1098}
1099
1100static void fbcon_init(struct vc_data *vc, int init)
1101{
1102 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1103 struct fbcon_ops *ops;
1104 struct vc_data **default_mode = vc->vc_display_fg;
1105 struct vc_data *svc = *default_mode;
1106 struct display *t, *p = &fb_display[vc->vc_num];
1107 int logo = 1, new_rows, new_cols, rows, cols, charcnt = 256;
Adrian Bunk306958e2005-05-01 08:59:23 -07001108 int cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 if (info_idx == -1 || info == NULL)
1111 return;
Adrian Bunk306958e2005-05-01 08:59:23 -07001112
1113 cap = info->flags;
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (vc != svc || logo_shown == FBCON_LOGO_DONTSHOW ||
1116 (info->fix.type == FB_TYPE_TEXT))
1117 logo = 0;
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 if (var_to_display(p, &info->var, info))
1120 return;
1121
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07001122 if (!info->fbcon_par)
1123 con2fb_acquire_newinfo(vc, info, vc->vc_num, -1);
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 /* If we are not the first console on this
1126 fb, copy the font from that console */
Antonino A. Daplase614b182006-06-26 00:27:09 -07001127 t = &fb_display[fg_console];
1128 if (!p->fontdata) {
1129 if (t->fontdata) {
1130 struct vc_data *fvc = vc_cons[fg_console].d;
1131
1132 vc->vc_font.data = (void *)(p->fontdata =
1133 fvc->vc_font.data);
1134 vc->vc_font.width = fvc->vc_font.width;
1135 vc->vc_font.height = fvc->vc_font.height;
1136 p->userfont = t->userfont;
1137
1138 if (p->userfont)
1139 REFCOUNT(p->fontdata)++;
1140 } else {
1141 const struct font_desc *font = NULL;
1142
1143 if (!fontname[0] || !(font = find_font(fontname)))
1144 font = get_default_font(info->var.xres,
Antonino A. Daplas2d2699d2007-05-08 00:39:11 -07001145 info->var.yres,
1146 info->pixmap.blit_x,
1147 info->pixmap.blit_y);
Antonino A. Daplase614b182006-06-26 00:27:09 -07001148 vc->vc_font.width = font->width;
1149 vc->vc_font.height = font->height;
1150 vc->vc_font.data = (void *)(p->fontdata = font->data);
1151 vc->vc_font.charcount = 256; /* FIXME Need to
1152 support more fonts */
1153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
Antonino A. Daplase614b182006-06-26 00:27:09 -07001155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (p->userfont)
1157 charcnt = FNTCHARCNT(p->fontdata);
Antonino A. Daplase614b182006-06-26 00:27:09 -07001158
Antonino A. Daplasb8c90942005-09-09 13:04:37 -07001159 vc->vc_can_do_color = (fb_get_color_depth(&info->var, &info->fix)!=1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 vc->vc_complement_mask = vc->vc_can_do_color ? 0x7700 : 0x0800;
1161 if (charcnt == 256) {
1162 vc->vc_hi_font_mask = 0;
1163 } else {
1164 vc->vc_hi_font_mask = 0x100;
1165 if (vc->vc_can_do_color)
1166 vc->vc_complement_mask <<= 1;
1167 }
1168
1169 if (!*svc->vc_uni_pagedir_loc)
1170 con_set_default_unimap(svc);
1171 if (!*vc->vc_uni_pagedir_loc)
1172 con_copy_unimap(vc, svc);
1173
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001174 ops = info->fbcon_par;
Marcin Slusarz2428e592008-02-06 01:39:14 -08001175 p->con_rotate = initial_rotation;
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08001176 set_blitting_type(vc, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 cols = vc->vc_cols;
1179 rows = vc->vc_rows;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001180 new_cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres);
1181 new_rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
1182 new_cols /= vc->vc_font.width;
1183 new_rows /= vc->vc_font.height;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 vc_resize(vc, new_cols, new_rows);
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /*
1187 * We must always set the mode. The mode of the previous console
1188 * driver could be in the same resolution but we are using different
1189 * hardware so we have to initialize the hardware.
1190 *
1191 * We need to do it in fbcon_init() to prevent screen corruption.
1192 */
Knut Petersend354d9a2006-01-07 10:22:04 +01001193 if (CON_IS_VISIBLE(vc) && vc->vc_mode == KD_TEXT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (info->fbops->fb_set_par &&
1195 !(ops->flags & FBCON_FLAGS_INIT))
1196 info->fbops->fb_set_par(info);
1197 ops->flags |= FBCON_FLAGS_INIT;
1198 }
1199
1200 ops->graphics = 0;
1201
1202 if ((cap & FBINFO_HWACCEL_COPYAREA) &&
1203 !(cap & FBINFO_HWACCEL_DISABLED))
1204 p->scrollmode = SCROLL_MOVE;
1205 else /* default to something safe */
1206 p->scrollmode = SCROLL_REDRAW;
1207
1208 /*
1209 * ++guenther: console.c:vc_allocate() relies on initializing
1210 * vc_{cols,rows}, but we must not set those if we are only
1211 * resizing the console.
1212 */
1213 if (!init) {
1214 vc->vc_cols = new_cols;
1215 vc->vc_rows = new_rows;
1216 }
1217
1218 if (logo)
1219 fbcon_prepare_logo(vc, info, cols, rows, new_cols, new_rows);
1220
Antonino A. Daplas4d9c5b62005-11-07 01:00:36 -08001221 if (vc == svc && softback_buf)
1222 fbcon_update_softback(vc);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001223
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08001224 if (ops->rotate_font && ops->rotate_font(info, vc)) {
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001225 ops->rotate = FB_ROTATE_UR;
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08001226 set_blitting_type(vc, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001227 }
1228
Antonino A. Daplas1a37d5f2006-03-31 02:31:45 -08001229 ops->p = &fb_display[fg_console];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230}
1231
Antonino A. Daplase614b182006-06-26 00:27:09 -07001232static void fbcon_free_font(struct display *p)
1233{
1234 if (p->userfont && p->fontdata && (--REFCOUNT(p->fontdata) == 0))
1235 kfree(p->fontdata - FONT_EXTRA_WORDS * sizeof(int));
1236 p->fontdata = NULL;
1237 p->userfont = 0;
1238}
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240static void fbcon_deinit(struct vc_data *vc)
1241{
1242 struct display *p = &fb_display[vc->vc_num];
Antonino A. Daplase614b182006-06-26 00:27:09 -07001243 struct fb_info *info;
1244 struct fbcon_ops *ops;
1245 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 fbcon_free_font(p);
Antonino A. Daplase614b182006-06-26 00:27:09 -07001248 idx = con2fb_map[vc->vc_num];
1249
1250 if (idx == -1)
1251 goto finished;
1252
1253 info = registered_fb[idx];
1254
1255 if (!info)
1256 goto finished;
1257
1258 ops = info->fbcon_par;
1259
1260 if (!ops)
1261 goto finished;
1262
1263 if (CON_IS_VISIBLE(vc))
1264 fbcon_del_cursor_timer(info);
1265
1266 ops->flags &= ~FBCON_FLAGS_INIT;
1267finished:
1268
1269 if (!con_is_bound(&fb_con))
1270 fbcon_exit();
1271
1272 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
1275/* ====================================================================== */
1276
1277/* fbcon_XXX routines - interface used by the world
1278 *
1279 * This system is now divided into two levels because of complications
1280 * caused by hardware scrolling. Top level functions:
1281 *
1282 * fbcon_bmove(), fbcon_clear(), fbcon_putc(), fbcon_clear_margins()
1283 *
1284 * handles y values in range [0, scr_height-1] that correspond to real
1285 * screen positions. y_wrap shift means that first line of bitmap may be
1286 * anywhere on this display. These functions convert lineoffsets to
1287 * bitmap offsets and deal with the wrap-around case by splitting blits.
1288 *
1289 * fbcon_bmove_physical_8() -- These functions fast implementations
1290 * fbcon_clear_physical_8() -- of original fbcon_XXX fns.
1291 * fbcon_putc_physical_8() -- (font width != 8) may be added later
1292 *
1293 * WARNING:
1294 *
1295 * At the moment fbcon_putc() cannot blit across vertical wrap boundary
1296 * Implies should only really hardware scroll in rows. Only reason for
1297 * restriction is simplicity & efficiency at the moment.
1298 */
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300static void fbcon_clear(struct vc_data *vc, int sy, int sx, int height,
1301 int width)
1302{
1303 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1304 struct fbcon_ops *ops = info->fbcon_par;
1305
1306 struct display *p = &fb_display[vc->vc_num];
1307 u_int y_break;
1308
1309 if (fbcon_is_inactive(vc, info))
1310 return;
1311
1312 if (!height || !width)
1313 return;
1314
1315 /* Split blits that cross physical y_wrap boundary */
1316
1317 y_break = p->vrows - p->yscroll;
1318 if (sy < y_break && sy + height - 1 >= y_break) {
1319 u_int b = y_break - sy;
1320 ops->clear(vc, info, real_y(p, sy), sx, b, width);
1321 ops->clear(vc, info, real_y(p, sy + b), sx, height - b,
1322 width);
1323 } else
1324 ops->clear(vc, info, real_y(p, sy), sx, height, width);
1325}
1326
1327static void fbcon_putcs(struct vc_data *vc, const unsigned short *s,
1328 int count, int ypos, int xpos)
1329{
1330 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1331 struct display *p = &fb_display[vc->vc_num];
1332 struct fbcon_ops *ops = info->fbcon_par;
1333
1334 if (!fbcon_is_inactive(vc, info))
1335 ops->putcs(vc, info, s, count, real_y(p, ypos), xpos,
1336 get_color(vc, info, scr_readw(s), 1),
1337 get_color(vc, info, scr_readw(s), 0));
1338}
1339
1340static void fbcon_putc(struct vc_data *vc, int c, int ypos, int xpos)
1341{
1342 unsigned short chr;
1343
1344 scr_writew(c, &chr);
1345 fbcon_putcs(vc, &chr, 1, ypos, xpos);
1346}
1347
1348static void fbcon_clear_margins(struct vc_data *vc, int bottom_only)
1349{
1350 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1351 struct fbcon_ops *ops = info->fbcon_par;
1352
1353 if (!fbcon_is_inactive(vc, info))
1354 ops->clear_margins(vc, info, bottom_only);
1355}
1356
1357static void fbcon_cursor(struct vc_data *vc, int mode)
1358{
1359 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1360 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 int y;
1362 int c = scr_readw((u16 *) vc->vc_pos);
1363
Michal Januszewskid1e23062007-05-08 00:38:07 -07001364 if (fbcon_is_inactive(vc, info) || vc->vc_deccm != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 return;
1366
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -07001367 if (vc->vc_cursor_type & 0x10)
1368 fbcon_del_cursor_timer(info);
1369 else
1370 fbcon_add_cursor_timer(info);
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 ops->cursor_flash = (mode == CM_ERASE) ? 0 : 1;
1373 if (mode & CM_SOFTBACK) {
1374 mode &= ~CM_SOFTBACK;
1375 y = softback_lines;
1376 } else {
1377 if (softback_lines)
1378 fbcon_set_origin(vc);
1379 y = 0;
1380 }
1381
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08001382 ops->cursor(vc, info, mode, y, get_color(vc, info, c, 1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 get_color(vc, info, c, 0));
1384 vbl_cursor_cnt = CURSOR_DRAW_DELAY;
1385}
1386
1387static int scrollback_phys_max = 0;
1388static int scrollback_max = 0;
1389static int scrollback_current = 0;
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391static void fbcon_set_disp(struct fb_info *info, struct fb_var_screeninfo *var,
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07001392 int unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07001394 struct display *p, *t;
1395 struct vc_data **default_mode, *vc;
1396 struct vc_data *svc;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001397 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 int rows, cols, charcnt = 256;
1399
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07001400 p = &fb_display[unit];
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 if (var_to_display(p, var, info))
1403 return;
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07001404
1405 vc = vc_cons[unit].d;
1406
1407 if (!vc)
1408 return;
1409
1410 default_mode = vc->vc_display_fg;
1411 svc = *default_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 t = &fb_display[svc->vc_num];
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07001413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 if (!vc->vc_font.data) {
Jan Beulich2f4516d2005-09-13 01:25:44 -07001415 vc->vc_font.data = (void *)(p->fontdata = t->fontdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 vc->vc_font.width = (*default_mode)->vc_font.width;
1417 vc->vc_font.height = (*default_mode)->vc_font.height;
1418 p->userfont = t->userfont;
1419 if (p->userfont)
1420 REFCOUNT(p->fontdata)++;
1421 }
1422 if (p->userfont)
1423 charcnt = FNTCHARCNT(p->fontdata);
1424
Antonino A. Daplasb8c90942005-09-09 13:04:37 -07001425 var->activate = FB_ACTIVATE_NOW;
1426 info->var.activate = var->activate;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001427 var->yoffset = info->var.yoffset;
1428 var->xoffset = info->var.xoffset;
Antonino A. Daplasb8c90942005-09-09 13:04:37 -07001429 fb_set_var(info, var);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001430 ops->var = info->var;
Antonino A. Daplasb8c90942005-09-09 13:04:37 -07001431 vc->vc_can_do_color = (fb_get_color_depth(&info->var, &info->fix)!=1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 vc->vc_complement_mask = vc->vc_can_do_color ? 0x7700 : 0x0800;
1433 if (charcnt == 256) {
1434 vc->vc_hi_font_mask = 0;
1435 } else {
1436 vc->vc_hi_font_mask = 0x100;
1437 if (vc->vc_can_do_color)
1438 vc->vc_complement_mask <<= 1;
1439 }
1440
1441 if (!*svc->vc_uni_pagedir_loc)
1442 con_set_default_unimap(svc);
1443 if (!*vc->vc_uni_pagedir_loc)
1444 con_copy_unimap(vc, svc);
1445
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001446 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres);
1447 rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
1448 cols /= vc->vc_font.width;
1449 rows /= vc->vc_font.height;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 vc_resize(vc, cols, rows);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 if (CON_IS_VISIBLE(vc)) {
1453 update_screen(vc);
Antonino A. Daplas4d9c5b62005-11-07 01:00:36 -08001454 if (softback_buf)
1455 fbcon_update_softback(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
1457}
1458
1459static __inline__ void ywrap_up(struct vc_data *vc, int count)
1460{
1461 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001462 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 struct display *p = &fb_display[vc->vc_num];
1464
1465 p->yscroll += count;
1466 if (p->yscroll >= p->vrows) /* Deal with wrap */
1467 p->yscroll -= p->vrows;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001468 ops->var.xoffset = 0;
1469 ops->var.yoffset = p->yscroll * vc->vc_font.height;
1470 ops->var.vmode |= FB_VMODE_YWRAP;
1471 ops->update_start(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 scrollback_max += count;
1473 if (scrollback_max > scrollback_phys_max)
1474 scrollback_max = scrollback_phys_max;
1475 scrollback_current = 0;
1476}
1477
1478static __inline__ void ywrap_down(struct vc_data *vc, int count)
1479{
1480 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001481 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 struct display *p = &fb_display[vc->vc_num];
1483
1484 p->yscroll -= count;
1485 if (p->yscroll < 0) /* Deal with wrap */
1486 p->yscroll += p->vrows;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001487 ops->var.xoffset = 0;
1488 ops->var.yoffset = p->yscroll * vc->vc_font.height;
1489 ops->var.vmode |= FB_VMODE_YWRAP;
1490 ops->update_start(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 scrollback_max -= count;
1492 if (scrollback_max < 0)
1493 scrollback_max = 0;
1494 scrollback_current = 0;
1495}
1496
1497static __inline__ void ypan_up(struct vc_data *vc, int count)
1498{
1499 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1500 struct display *p = &fb_display[vc->vc_num];
1501 struct fbcon_ops *ops = info->fbcon_par;
1502
1503 p->yscroll += count;
1504 if (p->yscroll > p->vrows - vc->vc_rows) {
1505 ops->bmove(vc, info, p->vrows - vc->vc_rows,
1506 0, 0, 0, vc->vc_rows, vc->vc_cols);
1507 p->yscroll -= p->vrows - vc->vc_rows;
1508 }
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_up_redraw(struct vc_data *vc, int t, int count)
1522{
1523 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001524 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 struct display *p = &fb_display[vc->vc_num];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
1527 p->yscroll += count;
Antonino A. Daplasa39bc342006-01-09 20:53:44 -08001528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 if (p->yscroll > p->vrows - vc->vc_rows) {
1530 p->yscroll -= p->vrows - vc->vc_rows;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 fbcon_redraw_move(vc, p, t + count, vc->vc_rows - count, t);
Antonino A. Daplasa39bc342006-01-09 20:53:44 -08001532 }
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 > scrollback_phys_max)
1541 scrollback_max = scrollback_phys_max;
1542 scrollback_current = 0;
1543}
1544
1545static __inline__ void ypan_down(struct vc_data *vc, int count)
1546{
1547 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1548 struct display *p = &fb_display[vc->vc_num];
1549 struct fbcon_ops *ops = info->fbcon_par;
1550
1551 p->yscroll -= count;
1552 if (p->yscroll < 0) {
1553 ops->bmove(vc, info, 0, 0, p->vrows - vc->vc_rows,
1554 0, vc->vc_rows, vc->vc_cols);
1555 p->yscroll += p->vrows - vc->vc_rows;
1556 }
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 __inline__ void ypan_down_redraw(struct vc_data *vc, int t, int count)
1570{
1571 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001572 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 struct display *p = &fb_display[vc->vc_num];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 p->yscroll -= count;
Antonino A. Daplasa39bc342006-01-09 20:53:44 -08001576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (p->yscroll < 0) {
1578 p->yscroll += p->vrows - vc->vc_rows;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 fbcon_redraw_move(vc, p, t, vc->vc_rows - count, t + count);
Antonino A. Daplasa39bc342006-01-09 20:53:44 -08001580 }
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08001581
1582 ops->var.xoffset = 0;
1583 ops->var.yoffset = p->yscroll * vc->vc_font.height;
1584 ops->var.vmode &= ~FB_VMODE_YWRAP;
1585 ops->update_start(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 fbcon_clear_margins(vc, 1);
1587 scrollback_max -= count;
1588 if (scrollback_max < 0)
1589 scrollback_max = 0;
1590 scrollback_current = 0;
1591}
1592
1593static void fbcon_redraw_softback(struct vc_data *vc, struct display *p,
1594 long delta)
1595{
1596 int count = vc->vc_rows;
1597 unsigned short *d, *s;
1598 unsigned long n;
1599 int line = 0;
1600
1601 d = (u16 *) softback_curr;
1602 if (d == (u16 *) softback_in)
1603 d = (u16 *) vc->vc_origin;
1604 n = softback_curr + delta * vc->vc_size_row;
1605 softback_lines -= delta;
1606 if (delta < 0) {
1607 if (softback_curr < softback_top && n < softback_buf) {
1608 n += softback_end - softback_buf;
1609 if (n < softback_top) {
1610 softback_lines -=
1611 (softback_top - n) / vc->vc_size_row;
1612 n = softback_top;
1613 }
1614 } else if (softback_curr >= softback_top
1615 && n < softback_top) {
1616 softback_lines -=
1617 (softback_top - n) / vc->vc_size_row;
1618 n = softback_top;
1619 }
1620 } else {
1621 if (softback_curr > softback_in && n >= softback_end) {
1622 n += softback_buf - softback_end;
1623 if (n > softback_in) {
1624 n = softback_in;
1625 softback_lines = 0;
1626 }
1627 } else if (softback_curr <= softback_in && n > softback_in) {
1628 n = softback_in;
1629 softback_lines = 0;
1630 }
1631 }
1632 if (n == softback_curr)
1633 return;
1634 softback_curr = n;
1635 s = (u16 *) softback_curr;
1636 if (s == (u16 *) softback_in)
1637 s = (u16 *) vc->vc_origin;
1638 while (count--) {
1639 unsigned short *start;
1640 unsigned short *le;
1641 unsigned short c;
1642 int x = 0;
1643 unsigned short attr = 1;
1644
1645 start = s;
1646 le = advance_row(s, 1);
1647 do {
1648 c = scr_readw(s);
1649 if (attr != (c & 0xff00)) {
1650 attr = c & 0xff00;
1651 if (s > start) {
1652 fbcon_putcs(vc, start, s - start,
1653 line, x);
1654 x += s - start;
1655 start = s;
1656 }
1657 }
1658 if (c == scr_readw(d)) {
1659 if (s > start) {
1660 fbcon_putcs(vc, start, s - start,
1661 line, x);
1662 x += s - start + 1;
1663 start = s + 1;
1664 } else {
1665 x++;
1666 start++;
1667 }
1668 }
1669 s++;
1670 d++;
1671 } while (s < le);
1672 if (s > start)
1673 fbcon_putcs(vc, start, s - start, line, x);
1674 line++;
1675 if (d == (u16 *) softback_end)
1676 d = (u16 *) softback_buf;
1677 if (d == (u16 *) softback_in)
1678 d = (u16 *) vc->vc_origin;
1679 if (s == (u16 *) softback_end)
1680 s = (u16 *) softback_buf;
1681 if (s == (u16 *) softback_in)
1682 s = (u16 *) vc->vc_origin;
1683 }
1684}
1685
1686static void fbcon_redraw_move(struct vc_data *vc, struct display *p,
1687 int line, int count, int dy)
1688{
1689 unsigned short *s = (unsigned short *)
1690 (vc->vc_origin + vc->vc_size_row * line);
1691
1692 while (count--) {
1693 unsigned short *start = s;
1694 unsigned short *le = advance_row(s, 1);
1695 unsigned short c;
1696 int x = 0;
1697 unsigned short attr = 1;
1698
1699 do {
1700 c = scr_readw(s);
1701 if (attr != (c & 0xff00)) {
1702 attr = c & 0xff00;
1703 if (s > start) {
1704 fbcon_putcs(vc, start, s - start,
1705 dy, x);
1706 x += s - start;
1707 start = s;
1708 }
1709 }
1710 console_conditional_schedule();
1711 s++;
1712 } while (s < le);
1713 if (s > start)
1714 fbcon_putcs(vc, start, s - start, dy, x);
1715 console_conditional_schedule();
1716 dy++;
1717 }
1718}
1719
Krzysztof Heltbad07ff2007-07-17 04:05:25 -07001720static void fbcon_redraw_blit(struct vc_data *vc, struct fb_info *info,
1721 struct display *p, int line, int count, int ycount)
1722{
1723 int offset = ycount * vc->vc_cols;
1724 unsigned short *d = (unsigned short *)
1725 (vc->vc_origin + vc->vc_size_row * line);
1726 unsigned short *s = d + offset;
1727 struct fbcon_ops *ops = info->fbcon_par;
1728
1729 while (count--) {
1730 unsigned short *start = s;
1731 unsigned short *le = advance_row(s, 1);
1732 unsigned short c;
1733 int x = 0;
1734
1735 do {
1736 c = scr_readw(s);
1737
1738 if (c == scr_readw(d)) {
1739 if (s > start) {
1740 ops->bmove(vc, info, line + ycount, x,
1741 line, x, 1, s-start);
1742 x += s - start + 1;
1743 start = s + 1;
1744 } else {
1745 x++;
1746 start++;
1747 }
1748 }
1749
1750 scr_writew(c, d);
1751 console_conditional_schedule();
1752 s++;
1753 d++;
1754 } while (s < le);
1755 if (s > start)
1756 ops->bmove(vc, info, line + ycount, x, line, x, 1,
1757 s-start);
1758 console_conditional_schedule();
1759 if (ycount > 0)
1760 line++;
1761 else {
1762 line--;
1763 /* NOTE: We subtract two lines from these pointers */
1764 s -= vc->vc_size_row;
1765 d -= vc->vc_size_row;
1766 }
1767 }
1768}
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770static void fbcon_redraw(struct vc_data *vc, struct display *p,
1771 int line, int count, int offset)
1772{
1773 unsigned short *d = (unsigned short *)
1774 (vc->vc_origin + vc->vc_size_row * line);
1775 unsigned short *s = d + offset;
1776
1777 while (count--) {
1778 unsigned short *start = s;
1779 unsigned short *le = advance_row(s, 1);
1780 unsigned short c;
1781 int x = 0;
1782 unsigned short attr = 1;
1783
1784 do {
1785 c = scr_readw(s);
1786 if (attr != (c & 0xff00)) {
1787 attr = c & 0xff00;
1788 if (s > start) {
1789 fbcon_putcs(vc, start, s - start,
1790 line, x);
1791 x += s - start;
1792 start = s;
1793 }
1794 }
1795 if (c == scr_readw(d)) {
1796 if (s > start) {
1797 fbcon_putcs(vc, start, s - start,
1798 line, x);
1799 x += s - start + 1;
1800 start = s + 1;
1801 } else {
1802 x++;
1803 start++;
1804 }
1805 }
1806 scr_writew(c, d);
1807 console_conditional_schedule();
1808 s++;
1809 d++;
1810 } while (s < le);
1811 if (s > start)
1812 fbcon_putcs(vc, start, s - start, line, x);
1813 console_conditional_schedule();
1814 if (offset > 0)
1815 line++;
1816 else {
1817 line--;
1818 /* NOTE: We subtract two lines from these pointers */
1819 s -= vc->vc_size_row;
1820 d -= vc->vc_size_row;
1821 }
1822 }
1823}
1824
1825static inline void fbcon_softback_note(struct vc_data *vc, int t,
1826 int count)
1827{
1828 unsigned short *p;
1829
1830 if (vc->vc_num != fg_console)
1831 return;
1832 p = (unsigned short *) (vc->vc_origin + t * vc->vc_size_row);
1833
1834 while (count) {
1835 scr_memcpyw((u16 *) softback_in, p, vc->vc_size_row);
1836 count--;
1837 p = advance_row(p, 1);
1838 softback_in += vc->vc_size_row;
1839 if (softback_in == softback_end)
1840 softback_in = softback_buf;
1841 if (softback_in == softback_top) {
1842 softback_top += vc->vc_size_row;
1843 if (softback_top == softback_end)
1844 softback_top = softback_buf;
1845 }
1846 }
1847 softback_curr = softback_in;
1848}
1849
1850static int fbcon_scroll(struct vc_data *vc, int t, int b, int dir,
1851 int count)
1852{
1853 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
1854 struct display *p = &fb_display[vc->vc_num];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 int scroll_partial = info->flags & FBINFO_PARTIAL_PAN_OK;
Jan Engelhardtd850a2fa2008-05-12 14:02:39 -07001856 unsigned short saved_ec;
1857 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859 if (fbcon_is_inactive(vc, info))
1860 return -EINVAL;
1861
1862 fbcon_cursor(vc, CM_ERASE);
1863
1864 /*
1865 * ++Geert: Only use ywrap/ypan if the console is in text mode
1866 * ++Andrew: Only use ypan on hardware text mode when scrolling the
1867 * whole screen (prevents flicker).
1868 */
1869
Jan Engelhardtd850a2fa2008-05-12 14:02:39 -07001870 saved_ec = vc->vc_video_erase_char;
1871 vc->vc_video_erase_char = vc->vc_scrl_erase_char;
1872
1873 ret = 0;
1874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 switch (dir) {
1876 case SM_UP:
1877 if (count > vc->vc_rows) /* Maximum realistic size */
1878 count = vc->vc_rows;
1879 if (softback_top)
1880 fbcon_softback_note(vc, t, count);
1881 if (logo_shown >= 0)
1882 goto redraw_up;
1883 switch (p->scrollmode) {
1884 case SCROLL_MOVE:
Krzysztof Heltbad07ff2007-07-17 04:05:25 -07001885 fbcon_redraw_blit(vc, info, p, t, b - t - count,
1886 count);
1887 fbcon_clear(vc, b - count, 0, count, vc->vc_cols);
1888 scr_memsetw((unsigned short *) (vc->vc_origin +
1889 vc->vc_size_row *
1890 (b - count)),
Jan Engelhardtc9e587ab2008-04-29 00:59:46 -07001891 vc->vc_scrl_erase_char,
Krzysztof Heltbad07ff2007-07-17 04:05:25 -07001892 vc->vc_size_row * count);
Jan Engelhardtd850a2fa2008-05-12 14:02:39 -07001893 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 break;
1895
1896 case SCROLL_WRAP_MOVE:
1897 if (b - t - count > 3 * vc->vc_rows >> 2) {
1898 if (t > 0)
1899 fbcon_bmove(vc, 0, 0, count, 0, t,
1900 vc->vc_cols);
1901 ywrap_up(vc, count);
1902 if (vc->vc_rows - b > 0)
1903 fbcon_bmove(vc, b - count, 0, b, 0,
1904 vc->vc_rows - b,
1905 vc->vc_cols);
1906 } else if (info->flags & FBINFO_READS_FAST)
1907 fbcon_bmove(vc, t + count, 0, t, 0,
1908 b - t - count, vc->vc_cols);
1909 else
1910 goto redraw_up;
1911 fbcon_clear(vc, b - count, 0, count, vc->vc_cols);
1912 break;
1913
1914 case SCROLL_PAN_REDRAW:
1915 if ((p->yscroll + count <=
1916 2 * (p->vrows - vc->vc_rows))
1917 && ((!scroll_partial && (b - t == vc->vc_rows))
1918 || (scroll_partial
1919 && (b - t - count >
1920 3 * vc->vc_rows >> 2)))) {
1921 if (t > 0)
1922 fbcon_redraw_move(vc, p, 0, t, count);
1923 ypan_up_redraw(vc, t, count);
1924 if (vc->vc_rows - b > 0)
Malcom Parsons26e780e2006-06-08 00:43:42 -07001925 fbcon_redraw_move(vc, p, b,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 vc->vc_rows - b, b);
1927 } else
1928 fbcon_redraw_move(vc, p, t + count, b - t - count, t);
1929 fbcon_clear(vc, b - count, 0, count, vc->vc_cols);
1930 break;
1931
1932 case SCROLL_PAN_MOVE:
1933 if ((p->yscroll + count <=
1934 2 * (p->vrows - vc->vc_rows))
1935 && ((!scroll_partial && (b - t == vc->vc_rows))
1936 || (scroll_partial
1937 && (b - t - count >
1938 3 * vc->vc_rows >> 2)))) {
1939 if (t > 0)
1940 fbcon_bmove(vc, 0, 0, count, 0, t,
1941 vc->vc_cols);
1942 ypan_up(vc, count);
1943 if (vc->vc_rows - b > 0)
1944 fbcon_bmove(vc, b - count, 0, b, 0,
1945 vc->vc_rows - b,
1946 vc->vc_cols);
1947 } else if (info->flags & FBINFO_READS_FAST)
1948 fbcon_bmove(vc, t + count, 0, t, 0,
1949 b - t - count, vc->vc_cols);
1950 else
1951 goto redraw_up;
1952 fbcon_clear(vc, b - count, 0, count, vc->vc_cols);
1953 break;
1954
1955 case SCROLL_REDRAW:
1956 redraw_up:
1957 fbcon_redraw(vc, p, t, b - t - count,
1958 count * vc->vc_cols);
1959 fbcon_clear(vc, b - count, 0, count, vc->vc_cols);
1960 scr_memsetw((unsigned short *) (vc->vc_origin +
1961 vc->vc_size_row *
1962 (b - count)),
Jan Engelhardtc9e587ab2008-04-29 00:59:46 -07001963 vc->vc_scrl_erase_char,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 vc->vc_size_row * count);
Jan Engelhardtd850a2fa2008-05-12 14:02:39 -07001965 ret = 1;
1966 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 }
1968 break;
1969
1970 case SM_DOWN:
1971 if (count > vc->vc_rows) /* Maximum realistic size */
1972 count = vc->vc_rows;
Jan Beuliche703ecc2005-09-13 01:25:43 -07001973 if (logo_shown >= 0)
1974 goto redraw_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 switch (p->scrollmode) {
1976 case SCROLL_MOVE:
Krzysztof Heltbad07ff2007-07-17 04:05:25 -07001977 fbcon_redraw_blit(vc, info, p, b - 1, b - t - count,
1978 -count);
1979 fbcon_clear(vc, t, 0, count, vc->vc_cols);
1980 scr_memsetw((unsigned short *) (vc->vc_origin +
1981 vc->vc_size_row *
1982 t),
Jan Engelhardtc9e587ab2008-04-29 00:59:46 -07001983 vc->vc_scrl_erase_char,
Krzysztof Heltbad07ff2007-07-17 04:05:25 -07001984 vc->vc_size_row * count);
Jan Engelhardtd850a2fa2008-05-12 14:02:39 -07001985 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 break;
1987
1988 case SCROLL_WRAP_MOVE:
1989 if (b - t - count > 3 * vc->vc_rows >> 2) {
1990 if (vc->vc_rows - b > 0)
1991 fbcon_bmove(vc, b, 0, b - count, 0,
1992 vc->vc_rows - b,
1993 vc->vc_cols);
1994 ywrap_down(vc, count);
1995 if (t > 0)
1996 fbcon_bmove(vc, count, 0, 0, 0, t,
1997 vc->vc_cols);
1998 } else if (info->flags & FBINFO_READS_FAST)
1999 fbcon_bmove(vc, t, 0, t + count, 0,
2000 b - t - count, vc->vc_cols);
2001 else
2002 goto redraw_down;
2003 fbcon_clear(vc, t, 0, count, vc->vc_cols);
2004 break;
2005
2006 case SCROLL_PAN_MOVE:
2007 if ((count - p->yscroll <= p->vrows - vc->vc_rows)
2008 && ((!scroll_partial && (b - t == vc->vc_rows))
2009 || (scroll_partial
2010 && (b - t - count >
2011 3 * vc->vc_rows >> 2)))) {
2012 if (vc->vc_rows - b > 0)
2013 fbcon_bmove(vc, b, 0, b - count, 0,
2014 vc->vc_rows - b,
2015 vc->vc_cols);
2016 ypan_down(vc, count);
2017 if (t > 0)
2018 fbcon_bmove(vc, count, 0, 0, 0, t,
2019 vc->vc_cols);
2020 } else if (info->flags & FBINFO_READS_FAST)
2021 fbcon_bmove(vc, t, 0, t + count, 0,
2022 b - t - count, vc->vc_cols);
2023 else
2024 goto redraw_down;
2025 fbcon_clear(vc, t, 0, count, vc->vc_cols);
2026 break;
2027
2028 case SCROLL_PAN_REDRAW:
2029 if ((count - p->yscroll <= p->vrows - vc->vc_rows)
2030 && ((!scroll_partial && (b - t == vc->vc_rows))
2031 || (scroll_partial
2032 && (b - t - count >
2033 3 * vc->vc_rows >> 2)))) {
2034 if (vc->vc_rows - b > 0)
2035 fbcon_redraw_move(vc, p, b, vc->vc_rows - b,
2036 b - count);
2037 ypan_down_redraw(vc, t, count);
2038 if (t > 0)
2039 fbcon_redraw_move(vc, p, count, t, 0);
2040 } else
2041 fbcon_redraw_move(vc, p, t, b - t - count, t + count);
2042 fbcon_clear(vc, t, 0, count, vc->vc_cols);
2043 break;
2044
2045 case SCROLL_REDRAW:
2046 redraw_down:
2047 fbcon_redraw(vc, p, b - 1, b - t - count,
2048 -count * vc->vc_cols);
2049 fbcon_clear(vc, t, 0, count, vc->vc_cols);
2050 scr_memsetw((unsigned short *) (vc->vc_origin +
2051 vc->vc_size_row *
2052 t),
Jan Engelhardtc9e587ab2008-04-29 00:59:46 -07002053 vc->vc_scrl_erase_char,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 vc->vc_size_row * count);
Jan Engelhardtd850a2fa2008-05-12 14:02:39 -07002055 ret = 1;
2056 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 }
Jan Engelhardtd850a2fa2008-05-12 14:02:39 -07002058 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 }
Jan Engelhardtd850a2fa2008-05-12 14:02:39 -07002060 vc->vc_video_erase_char = saved_ec;
2061 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
2064
2065static void fbcon_bmove(struct vc_data *vc, int sy, int sx, int dy, int dx,
2066 int height, int width)
2067{
2068 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
2069 struct display *p = &fb_display[vc->vc_num];
2070
2071 if (fbcon_is_inactive(vc, info))
2072 return;
2073
2074 if (!width || !height)
2075 return;
2076
2077 /* Split blits that cross physical y_wrap case.
2078 * Pathological case involves 4 blits, better to use recursive
2079 * code rather than unrolled case
2080 *
2081 * Recursive invocations don't need to erase the cursor over and
2082 * over again, so we use fbcon_bmove_rec()
2083 */
2084 fbcon_bmove_rec(vc, p, sy, sx, dy, dx, height, width,
2085 p->vrows - p->yscroll);
2086}
2087
2088static void fbcon_bmove_rec(struct vc_data *vc, struct display *p, int sy, int sx,
2089 int dy, int dx, int height, int width, u_int y_break)
2090{
2091 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
2092 struct fbcon_ops *ops = info->fbcon_par;
2093 u_int b;
2094
2095 if (sy < y_break && sy + height > y_break) {
2096 b = y_break - sy;
2097 if (dy < sy) { /* Avoid trashing self */
2098 fbcon_bmove_rec(vc, p, sy, sx, dy, dx, b, width,
2099 y_break);
2100 fbcon_bmove_rec(vc, p, sy + b, sx, dy + b, dx,
2101 height - b, width, y_break);
2102 } else {
2103 fbcon_bmove_rec(vc, p, sy + b, sx, dy + b, dx,
2104 height - b, width, y_break);
2105 fbcon_bmove_rec(vc, p, sy, sx, dy, dx, b, width,
2106 y_break);
2107 }
2108 return;
2109 }
2110
2111 if (dy < y_break && dy + height > y_break) {
2112 b = y_break - dy;
2113 if (dy < sy) { /* Avoid trashing self */
2114 fbcon_bmove_rec(vc, p, sy, sx, dy, dx, b, width,
2115 y_break);
2116 fbcon_bmove_rec(vc, p, sy + b, sx, dy + b, dx,
2117 height - b, width, y_break);
2118 } else {
2119 fbcon_bmove_rec(vc, p, sy + b, sx, dy + b, dx,
2120 height - b, width, y_break);
2121 fbcon_bmove_rec(vc, p, sy, sx, dy, dx, b, width,
2122 y_break);
2123 }
2124 return;
2125 }
2126 ops->bmove(vc, info, real_y(p, sy), sx, real_y(p, dy), dx,
2127 height, width);
2128}
2129
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002130static __inline__ void updatescrollmode(struct display *p,
2131 struct fb_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 struct vc_data *vc)
2133{
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002134 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 int fh = vc->vc_font.height;
2136 int cap = info->flags;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002137 u16 t = 0;
2138 int ypan = FBCON_SWAP(ops->rotate, info->fix.ypanstep,
2139 info->fix.xpanstep);
2140 int ywrap = FBCON_SWAP(ops->rotate, info->fix.ywrapstep, t);
2141 int yres = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
2142 int vyres = FBCON_SWAP(ops->rotate, info->var.yres_virtual,
2143 info->var.xres_virtual);
2144 int good_pan = (cap & FBINFO_HWACCEL_YPAN) &&
2145 divides(ypan, vc->vc_font.height) && vyres > yres;
2146 int good_wrap = (cap & FBINFO_HWACCEL_YWRAP) &&
2147 divides(ywrap, vc->vc_font.height) &&
Knut Petersen244ab722006-01-09 20:53:36 -08002148 divides(vc->vc_font.height, vyres) &&
2149 divides(vc->vc_font.height, yres);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 int reading_fast = cap & FBINFO_READS_FAST;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002151 int fast_copyarea = (cap & FBINFO_HWACCEL_COPYAREA) &&
2152 !(cap & FBINFO_HWACCEL_DISABLED);
2153 int fast_imageblit = (cap & FBINFO_HWACCEL_IMAGEBLIT) &&
2154 !(cap & FBINFO_HWACCEL_DISABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002156 p->vrows = vyres/fh;
2157 if (yres > (fh * (vc->vc_rows + 1)))
2158 p->vrows -= (yres - (fh * vc->vc_rows)) / fh;
2159 if ((yres % fh) && (vyres % fh < yres % fh))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 p->vrows--;
2161
2162 if (good_wrap || good_pan) {
2163 if (reading_fast || fast_copyarea)
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002164 p->scrollmode = good_wrap ?
2165 SCROLL_WRAP_MOVE : SCROLL_PAN_MOVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 else
2167 p->scrollmode = good_wrap ? SCROLL_REDRAW :
2168 SCROLL_PAN_REDRAW;
2169 } else {
2170 if (reading_fast || (fast_copyarea && !fast_imageblit))
2171 p->scrollmode = SCROLL_MOVE;
2172 else
2173 p->scrollmode = SCROLL_REDRAW;
2174 }
2175}
2176
2177static int fbcon_resize(struct vc_data *vc, unsigned int width,
Antonino A. Daplase400b6e2007-10-16 01:29:35 -07002178 unsigned int height, unsigned int user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
2180 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002181 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 struct display *p = &fb_display[vc->vc_num];
2183 struct fb_var_screeninfo var = info->var;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002184 int x_diff, y_diff, virt_w, virt_h, virt_fw, virt_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002186 virt_w = FBCON_SWAP(ops->rotate, width, height);
2187 virt_h = FBCON_SWAP(ops->rotate, height, width);
2188 virt_fw = FBCON_SWAP(ops->rotate, vc->vc_font.width,
2189 vc->vc_font.height);
2190 virt_fh = FBCON_SWAP(ops->rotate, vc->vc_font.height,
2191 vc->vc_font.width);
2192 var.xres = virt_w * virt_fw;
2193 var.yres = virt_h * virt_fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 x_diff = info->var.xres - var.xres;
2195 y_diff = info->var.yres - var.yres;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002196 if (x_diff < 0 || x_diff > virt_fw ||
2197 y_diff < 0 || y_diff > virt_fh) {
Geert Uytterhoeven9791d762007-02-12 00:55:19 -08002198 const struct fb_videomode *mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
2200 DPRINTK("attempting resize %ix%i\n", var.xres, var.yres);
2201 mode = fb_find_best_mode(&var, &info->modelist);
2202 if (mode == NULL)
2203 return -EINVAL;
Antonino A. Daplas3084a892005-11-07 01:00:37 -08002204 display_to_var(&var, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 fb_videomode_to_var(&var, mode);
Antonino A. Daplas3084a892005-11-07 01:00:37 -08002206
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002207 if (virt_w > var.xres/virt_fw || virt_h > var.yres/virt_fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210 DPRINTK("resize now %ix%i\n", var.xres, var.yres);
2211 if (CON_IS_VISIBLE(vc)) {
2212 var.activate = FB_ACTIVATE_NOW |
2213 FB_ACTIVATE_FORCE;
2214 fb_set_var(info, &var);
2215 }
2216 var_to_display(p, &info->var, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002217 ops->var = info->var;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 }
2219 updatescrollmode(p, info, vc);
2220 return 0;
2221}
2222
2223static int fbcon_switch(struct vc_data *vc)
2224{
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07002225 struct fb_info *info, *old_info = NULL;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002226 struct fbcon_ops *ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 struct display *p = &fb_display[vc->vc_num];
2228 struct fb_var_screeninfo var;
Antonino A. Daplas56f0d642005-12-12 22:17:15 -08002229 int i, prev_console, charcnt = 256;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
2231 info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002232 ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234 if (softback_top) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 if (softback_lines)
2236 fbcon_set_origin(vc);
2237 softback_top = softback_curr = softback_in = softback_buf;
2238 softback_lines = 0;
Antonino A. Daplas4d9c5b62005-11-07 01:00:36 -08002239 fbcon_update_softback(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 }
2241
2242 if (logo_shown >= 0) {
2243 struct vc_data *conp2 = vc_cons[logo_shown].d;
2244
2245 if (conp2->vc_top == logo_lines
2246 && conp2->vc_bottom == conp2->vc_rows)
2247 conp2->vc_top = 0;
2248 logo_shown = FBCON_LOGO_CANSHOW;
2249 }
2250
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002251 prev_console = ops->currcon;
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07002252 if (prev_console != -1)
2253 old_info = registered_fb[con2fb_map[prev_console]];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 /*
2255 * FIXME: If we have multiple fbdev's loaded, we need to
2256 * update all info->currcon. Perhaps, we can place this
2257 * in a centralized structure, but this might break some
2258 * drivers.
2259 *
2260 * info->currcon = vc->vc_num;
2261 */
2262 for (i = 0; i < FB_MAX; i++) {
2263 if (registered_fb[i] != NULL && registered_fb[i]->fbcon_par) {
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002264 struct fbcon_ops *o = registered_fb[i]->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002266 o->currcon = vc->vc_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 }
2268 }
2269 memset(&var, 0, sizeof(struct fb_var_screeninfo));
2270 display_to_var(&var, p);
2271 var.activate = FB_ACTIVATE_NOW;
2272
2273 /*
2274 * make sure we don't unnecessarily trip the memcmp()
2275 * in fb_set_var()
2276 */
2277 info->var.activate = var.activate;
Krzysztof Helt10732c32008-06-05 22:46:33 -07002278 var.vmode |= info->var.vmode & ~FB_VMODE_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 fb_set_var(info, &var);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002280 ops->var = info->var;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Knut Petersen39942fd2005-12-12 22:17:19 -08002282 if (old_info != NULL && (old_info != info ||
2283 info->flags & FBINFO_MISC_ALWAYS_SETPAR)) {
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07002284 if (info->fbops->fb_set_par)
2285 info->fbops->fb_set_par(info);
Antonino A. Daplasa39bc342006-01-09 20:53:44 -08002286
Antonino A. Daplas5428b042006-06-26 00:27:06 -07002287 if (old_info != info)
Antonino A. Daplasa39bc342006-01-09 20:53:44 -08002288 fbcon_del_cursor_timer(old_info);
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07002289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
Antonino A. Daplas212f2632006-10-03 01:14:48 -07002291 if (fbcon_is_inactive(vc, info) ||
2292 ops->blank_state != FB_BLANK_UNBLANK)
2293 fbcon_del_cursor_timer(info);
2294 else
2295 fbcon_add_cursor_timer(info);
2296
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08002297 set_blitting_type(vc, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002298 ops->cursor_reset = 1;
2299
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08002300 if (ops->rotate_font && ops->rotate_font(info, vc)) {
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002301 ops->rotate = FB_ROTATE_UR;
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08002302 set_blitting_type(vc, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Antonino A. Daplasb8c90942005-09-09 13:04:37 -07002305 vc->vc_can_do_color = (fb_get_color_depth(&info->var, &info->fix)!=1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 vc->vc_complement_mask = vc->vc_can_do_color ? 0x7700 : 0x0800;
Antonino A. Daplas56f0d642005-12-12 22:17:15 -08002307
2308 if (p->userfont)
2309 charcnt = FNTCHARCNT(vc->vc_font.data);
2310
2311 if (charcnt > 256)
2312 vc->vc_complement_mask <<= 1;
2313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 updatescrollmode(p, info, vc);
2315
2316 switch (p->scrollmode) {
2317 case SCROLL_WRAP_MOVE:
2318 scrollback_phys_max = p->vrows - vc->vc_rows;
2319 break;
2320 case SCROLL_PAN_MOVE:
2321 case SCROLL_PAN_REDRAW:
2322 scrollback_phys_max = p->vrows - 2 * vc->vc_rows;
2323 if (scrollback_phys_max < 0)
2324 scrollback_phys_max = 0;
2325 break;
2326 default:
2327 scrollback_phys_max = 0;
2328 break;
2329 }
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 scrollback_max = 0;
2332 scrollback_current = 0;
Antonino A. Daplas4e1567d2005-12-12 22:17:18 -08002333
2334 if (!fbcon_is_inactive(vc, info)) {
2335 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0;
2336 ops->update_start(info);
2337 }
2338
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 fbcon_set_palette(vc, color_table);
2340 fbcon_clear_margins(vc, 0);
2341
2342 if (logo_shown == FBCON_LOGO_DRAW) {
2343
2344 logo_shown = fg_console;
2345 /* This is protected above by initmem_freed */
Antonino A. Daplas9c44e5f2005-11-08 21:39:10 -08002346 fb_show_logo(info, ops->rotate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 update_region(vc,
2348 vc->vc_origin + vc->vc_size_row * vc->vc_top,
2349 vc->vc_size_row * (vc->vc_bottom -
2350 vc->vc_top) / 2);
2351 return 0;
2352 }
2353 return 1;
2354}
2355
2356static void fbcon_generic_blank(struct vc_data *vc, struct fb_info *info,
2357 int blank)
2358{
Richard Purdie994efac2007-02-09 09:46:45 +00002359 struct fb_event event;
2360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 if (blank) {
2362 unsigned short charmask = vc->vc_hi_font_mask ?
2363 0x1ff : 0xff;
2364 unsigned short oldc;
2365
2366 oldc = vc->vc_video_erase_char;
2367 vc->vc_video_erase_char &= charmask;
2368 fbcon_clear(vc, 0, 0, vc->vc_rows, vc->vc_cols);
2369 vc->vc_video_erase_char = oldc;
2370 }
Richard Purdie994efac2007-02-09 09:46:45 +00002371
2372
2373 event.info = info;
2374 event.data = &blank;
2375 fb_notifier_call_chain(FB_EVENT_CONBLANK, &event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376}
2377
2378static int fbcon_blank(struct vc_data *vc, int blank, int mode_switch)
2379{
2380 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
2381 struct fbcon_ops *ops = info->fbcon_par;
2382
2383 if (mode_switch) {
2384 struct fb_var_screeninfo var = info->var;
2385
2386 ops->graphics = 1;
2387
2388 if (!blank) {
Antonino A. Daplas47434842005-12-12 22:17:16 -08002389 if (info->fbops->fb_save_state)
2390 info->fbops->fb_save_state(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 var.activate = FB_ACTIVATE_NOW | FB_ACTIVATE_FORCE;
2392 fb_set_var(info, &var);
2393 ops->graphics = 0;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002394 ops->var = info->var;
Antonino A. Daplas47434842005-12-12 22:17:16 -08002395 } else if (info->fbops->fb_restore_state)
2396 info->fbops->fb_restore_state(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 }
2398
2399 if (!fbcon_is_inactive(vc, info)) {
2400 if (ops->blank_state != blank) {
2401 ops->blank_state = blank;
2402 fbcon_cursor(vc, blank ? CM_ERASE : CM_DRAW);
2403 ops->cursor_flash = (!blank);
2404
2405 if (fb_blank(info, blank))
2406 fbcon_generic_blank(vc, info, blank);
2407 }
2408
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07002409 if (!blank)
2410 update_screen(vc);
2411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Antonino Daplas4d8a2d92007-10-16 01:29:55 -07002413 if (mode_switch || fbcon_is_inactive(vc, info) ||
Antonino A. Daplas212f2632006-10-03 01:14:48 -07002414 ops->blank_state != FB_BLANK_UNBLANK)
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07002415 fbcon_del_cursor_timer(info);
Antonino A. Daplas212f2632006-10-03 01:14:48 -07002416 else
2417 fbcon_add_cursor_timer(info);
Antonino A. Daplas88fb2c62005-09-09 13:10:00 -07002418
2419 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420}
2421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422static int fbcon_get_font(struct vc_data *vc, struct console_font *font)
2423{
2424 u8 *fontdata = vc->vc_font.data;
2425 u8 *data = font->data;
2426 int i, j;
2427
2428 font->width = vc->vc_font.width;
2429 font->height = vc->vc_font.height;
2430 font->charcount = vc->vc_hi_font_mask ? 512 : 256;
2431 if (!font->data)
2432 return 0;
2433
2434 if (font->width <= 8) {
2435 j = vc->vc_font.height;
2436 for (i = 0; i < font->charcount; i++) {
2437 memcpy(data, fontdata, j);
2438 memset(data + j, 0, 32 - j);
2439 data += 32;
2440 fontdata += j;
2441 }
2442 } else if (font->width <= 16) {
2443 j = vc->vc_font.height * 2;
2444 for (i = 0; i < font->charcount; i++) {
2445 memcpy(data, fontdata, j);
2446 memset(data + j, 0, 64 - j);
2447 data += 64;
2448 fontdata += j;
2449 }
2450 } else if (font->width <= 24) {
2451 for (i = 0; i < font->charcount; i++) {
2452 for (j = 0; j < vc->vc_font.height; j++) {
2453 *data++ = fontdata[0];
2454 *data++ = fontdata[1];
2455 *data++ = fontdata[2];
2456 fontdata += sizeof(u32);
2457 }
2458 memset(data, 0, 3 * (32 - j));
2459 data += 3 * (32 - j);
2460 }
2461 } else {
2462 j = vc->vc_font.height * 4;
2463 for (i = 0; i < font->charcount; i++) {
2464 memcpy(data, fontdata, j);
2465 memset(data + j, 0, 128 - j);
2466 data += 128;
2467 fontdata += j;
2468 }
2469 }
2470 return 0;
2471}
2472
2473static int fbcon_do_set_font(struct vc_data *vc, int w, int h,
Jan Beulich2f4516d2005-09-13 01:25:44 -07002474 const u8 * data, int userfont)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475{
2476 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002477 struct fbcon_ops *ops = info->fbcon_par;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 struct display *p = &fb_display[vc->vc_num];
2479 int resize;
2480 int cnt;
2481 char *old_data = NULL;
2482
2483 if (CON_IS_VISIBLE(vc) && softback_lines)
2484 fbcon_set_origin(vc);
2485
2486 resize = (w != vc->vc_font.width) || (h != vc->vc_font.height);
2487 if (p->userfont)
2488 old_data = vc->vc_font.data;
2489 if (userfont)
2490 cnt = FNTCHARCNT(data);
2491 else
2492 cnt = 256;
Jan Beulich2f4516d2005-09-13 01:25:44 -07002493 vc->vc_font.data = (void *)(p->fontdata = data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 if ((p->userfont = userfont))
2495 REFCOUNT(data)++;
2496 vc->vc_font.width = w;
2497 vc->vc_font.height = h;
2498 if (vc->vc_hi_font_mask && cnt == 256) {
2499 vc->vc_hi_font_mask = 0;
2500 if (vc->vc_can_do_color) {
2501 vc->vc_complement_mask >>= 1;
2502 vc->vc_s_complement_mask >>= 1;
2503 }
2504
2505 /* ++Edmund: reorder the attribute bits */
2506 if (vc->vc_can_do_color) {
2507 unsigned short *cp =
2508 (unsigned short *) vc->vc_origin;
2509 int count = vc->vc_screenbuf_size / 2;
2510 unsigned short c;
2511 for (; count > 0; count--, cp++) {
2512 c = scr_readw(cp);
2513 scr_writew(((c & 0xfe00) >> 1) |
2514 (c & 0xff), cp);
2515 }
2516 c = vc->vc_video_erase_char;
2517 vc->vc_video_erase_char =
2518 ((c & 0xfe00) >> 1) | (c & 0xff);
Jan Engelhardt7fe39152008-05-12 14:02:38 -07002519 c = vc->vc_def_color;
2520 vc->vc_scrl_erase_char =
2521 ((c & 0xFE00) >> 1) | (c & 0xFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 vc->vc_attr >>= 1;
2523 }
2524 } else if (!vc->vc_hi_font_mask && cnt == 512) {
2525 vc->vc_hi_font_mask = 0x100;
2526 if (vc->vc_can_do_color) {
2527 vc->vc_complement_mask <<= 1;
2528 vc->vc_s_complement_mask <<= 1;
2529 }
2530
2531 /* ++Edmund: reorder the attribute bits */
2532 {
2533 unsigned short *cp =
2534 (unsigned short *) vc->vc_origin;
2535 int count = vc->vc_screenbuf_size / 2;
2536 unsigned short c;
2537 for (; count > 0; count--, cp++) {
2538 unsigned short newc;
2539 c = scr_readw(cp);
2540 if (vc->vc_can_do_color)
2541 newc =
2542 ((c & 0xff00) << 1) | (c &
2543 0xff);
2544 else
2545 newc = c & ~0x100;
2546 scr_writew(newc, cp);
2547 }
2548 c = vc->vc_video_erase_char;
2549 if (vc->vc_can_do_color) {
2550 vc->vc_video_erase_char =
2551 ((c & 0xff00) << 1) | (c & 0xff);
Jan Engelhardt7fe39152008-05-12 14:02:38 -07002552 c = vc->vc_def_color;
2553 vc->vc_scrl_erase_char =
2554 ((c & 0xFF00) << 1) | (c & 0xFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 vc->vc_attr <<= 1;
Jan Engelhardt7fe39152008-05-12 14:02:38 -07002556 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 vc->vc_video_erase_char = c & ~0x100;
Jan Engelhardt7fe39152008-05-12 14:02:38 -07002558 vc->vc_scrl_erase_char = c & ~0x100;
2559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 }
2561
2562 }
2563
2564 if (resize) {
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002565 int cols, rows;
2566
2567 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres);
2568 rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
2569 cols /= w;
2570 rows /= h;
2571 vc_resize(vc, cols, rows);
Antonino A. Daplas4d9c5b62005-11-07 01:00:36 -08002572 if (CON_IS_VISIBLE(vc) && softback_buf)
2573 fbcon_update_softback(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 } else if (CON_IS_VISIBLE(vc)
2575 && vc->vc_mode == KD_TEXT) {
2576 fbcon_clear_margins(vc, 0);
2577 update_screen(vc);
2578 }
2579
2580 if (old_data && (--REFCOUNT(old_data) == 0))
2581 kfree(old_data - FONT_EXTRA_WORDS * sizeof(int));
2582 return 0;
2583}
2584
2585static int fbcon_copy_font(struct vc_data *vc, int con)
2586{
2587 struct display *od = &fb_display[con];
2588 struct console_font *f = &vc->vc_font;
2589
2590 if (od->fontdata == f->data)
2591 return 0; /* already the same font... */
2592 return fbcon_do_set_font(vc, f->width, f->height, od->fontdata, od->userfont);
2593}
2594
2595/*
2596 * User asked to set font; we are guaranteed that
2597 * a) width and height are in range 1..32
2598 * b) charcount does not exceed 512
2599 * but lets not assume that, since someone might someday want to use larger
2600 * fonts. And charcount of 512 is small for unicode support.
2601 *
2602 * However, user space gives the font in 32 rows , regardless of
2603 * actual font height. So a new API is needed if support for larger fonts
2604 * is ever implemented.
2605 */
2606
2607static int fbcon_set_font(struct vc_data *vc, struct console_font *font, unsigned flags)
2608{
Antonino A. Daplas2d2699d2007-05-08 00:39:11 -07002609 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 unsigned charcount = font->charcount;
2611 int w = font->width;
2612 int h = font->height;
2613 int size;
2614 int i, csum;
2615 u8 *new_data, *data = font->data;
2616 int pitch = (font->width+7) >> 3;
2617
2618 /* Is there a reason why fbconsole couldn't handle any charcount >256?
2619 * If not this check should be changed to charcount < 256 */
2620 if (charcount != 256 && charcount != 512)
2621 return -EINVAL;
2622
Antonino A. Daplas2d2699d2007-05-08 00:39:11 -07002623 /* Make sure drawing engine can handle the font */
2624 if (!(info->pixmap.blit_x & (1 << (font->width - 1))) ||
2625 !(info->pixmap.blit_y & (1 << (font->height - 1))))
2626 return -EINVAL;
2627
Antonino A. Daplas38b49822007-05-08 00:39:19 -07002628 /* Make sure driver can handle the font length */
2629 if (fbcon_invalid_charcount(info, charcount))
2630 return -EINVAL;
2631
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 size = h * pitch * charcount;
2633
2634 new_data = kmalloc(FONT_EXTRA_WORDS * sizeof(int) + size, GFP_USER);
2635
2636 if (!new_data)
2637 return -ENOMEM;
2638
2639 new_data += FONT_EXTRA_WORDS * sizeof(int);
2640 FNTSIZE(new_data) = size;
2641 FNTCHARCNT(new_data) = charcount;
2642 REFCOUNT(new_data) = 0; /* usage counter */
2643 for (i=0; i< charcount; i++) {
2644 memcpy(new_data + i*h*pitch, data + i*32*pitch, h*pitch);
2645 }
2646
2647 /* Since linux has a nice crc32 function use it for counting font
2648 * checksums. */
2649 csum = crc32(0, new_data, size);
2650
2651 FNTSUM(new_data) = csum;
2652 /* Check if the same font is on some other console already */
Antonino A. Daplase614b182006-06-26 00:27:09 -07002653 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 struct vc_data *tmp = vc_cons[i].d;
2655
2656 if (fb_display[i].userfont &&
2657 fb_display[i].fontdata &&
2658 FNTSUM(fb_display[i].fontdata) == csum &&
2659 FNTSIZE(fb_display[i].fontdata) == size &&
2660 tmp->vc_font.width == w &&
2661 !memcmp(fb_display[i].fontdata, new_data, size)) {
2662 kfree(new_data - FONT_EXTRA_WORDS * sizeof(int));
Jan Beulich2f4516d2005-09-13 01:25:44 -07002663 new_data = (u8 *)fb_display[i].fontdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 break;
2665 }
2666 }
2667 return fbcon_do_set_font(vc, font->width, font->height, new_data, 1);
2668}
2669
2670static int fbcon_set_def_font(struct vc_data *vc, struct console_font *font, char *name)
2671{
2672 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
Jan Beulich2f4516d2005-09-13 01:25:44 -07002673 const struct font_desc *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
2675 if (!name)
Antonino A. Daplas2d2699d2007-05-08 00:39:11 -07002676 f = get_default_font(info->var.xres, info->var.yres,
2677 info->pixmap.blit_x, info->pixmap.blit_y);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 else if (!(f = find_font(name)))
2679 return -ENOENT;
2680
2681 font->width = f->width;
2682 font->height = f->height;
2683 return fbcon_do_set_font(vc, f->width, f->height, f->data, 0);
2684}
2685
2686static u16 palette_red[16];
2687static u16 palette_green[16];
2688static u16 palette_blue[16];
2689
2690static struct fb_cmap palette_cmap = {
2691 0, 16, palette_red, palette_green, palette_blue, NULL
2692};
2693
2694static int fbcon_set_palette(struct vc_data *vc, unsigned char *table)
2695{
2696 struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]];
2697 int i, j, k, depth;
2698 u8 val;
2699
2700 if (fbcon_is_inactive(vc, info))
2701 return -EINVAL;
2702
2703 if (!CON_IS_VISIBLE(vc))
2704 return 0;
2705
Antonino A. Daplasb8c90942005-09-09 13:04:37 -07002706 depth = fb_get_color_depth(&info->var, &info->fix);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 if (depth > 3) {
2708 for (i = j = 0; i < 16; i++) {
2709 k = table[i];
2710 val = vc->vc_palette[j++];
2711 palette_red[k] = (val << 8) | val;
2712 val = vc->vc_palette[j++];
2713 palette_green[k] = (val << 8) | val;
2714 val = vc->vc_palette[j++];
2715 palette_blue[k] = (val << 8) | val;
2716 }
2717 palette_cmap.len = 16;
2718 palette_cmap.start = 0;
2719 /*
2720 * If framebuffer is capable of less than 16 colors,
2721 * use default palette of fbcon.
2722 */
2723 } else
2724 fb_copy_cmap(fb_default_cmap(1 << depth), &palette_cmap);
2725
2726 return fb_set_cmap(&palette_cmap, info);
2727}
2728
2729static u16 *fbcon_screen_pos(struct vc_data *vc, int offset)
2730{
2731 unsigned long p;
2732 int line;
2733
2734 if (vc->vc_num != fg_console || !softback_lines)
2735 return (u16 *) (vc->vc_origin + offset);
2736 line = offset / vc->vc_size_row;
2737 if (line >= softback_lines)
2738 return (u16 *) (vc->vc_origin + offset -
2739 softback_lines * vc->vc_size_row);
2740 p = softback_curr + offset;
2741 if (p >= softback_end)
2742 p += softback_buf - softback_end;
2743 return (u16 *) p;
2744}
2745
2746static unsigned long fbcon_getxy(struct vc_data *vc, unsigned long pos,
2747 int *px, int *py)
2748{
2749 unsigned long ret;
2750 int x, y;
2751
2752 if (pos >= vc->vc_origin && pos < vc->vc_scr_end) {
2753 unsigned long offset = (pos - vc->vc_origin) / 2;
2754
2755 x = offset % vc->vc_cols;
2756 y = offset / vc->vc_cols;
2757 if (vc->vc_num == fg_console)
2758 y += softback_lines;
2759 ret = pos + (vc->vc_cols - x) * 2;
2760 } else if (vc->vc_num == fg_console && softback_lines) {
2761 unsigned long offset = pos - softback_curr;
2762
2763 if (pos < softback_curr)
2764 offset += softback_end - softback_buf;
2765 offset /= 2;
2766 x = offset % vc->vc_cols;
2767 y = offset / vc->vc_cols;
2768 ret = pos + (vc->vc_cols - x) * 2;
2769 if (ret == softback_end)
2770 ret = softback_buf;
2771 if (ret == softback_in)
2772 ret = vc->vc_origin;
2773 } else {
2774 /* Should not happen */
2775 x = y = 0;
2776 ret = vc->vc_origin;
2777 }
2778 if (px)
2779 *px = x;
2780 if (py)
2781 *py = y;
2782 return ret;
2783}
2784
2785/* As we might be inside of softback, we may work with non-contiguous buffer,
2786 that's why we have to use a separate routine. */
2787static void fbcon_invert_region(struct vc_data *vc, u16 * p, int cnt)
2788{
2789 while (cnt--) {
2790 u16 a = scr_readw(p);
2791 if (!vc->vc_can_do_color)
2792 a ^= 0x0800;
2793 else if (vc->vc_hi_font_mask == 0x100)
2794 a = ((a) & 0x11ff) | (((a) & 0xe000) >> 4) |
2795 (((a) & 0x0e00) << 4);
2796 else
2797 a = ((a) & 0x88ff) | (((a) & 0x7000) >> 4) |
2798 (((a) & 0x0700) << 4);
2799 scr_writew(a, p++);
2800 if (p == (u16 *) softback_end)
2801 p = (u16 *) softback_buf;
2802 if (p == (u16 *) softback_in)
2803 p = (u16 *) vc->vc_origin;
2804 }
2805}
2806
2807static int fbcon_scrolldelta(struct vc_data *vc, int lines)
2808{
2809 struct fb_info *info = registered_fb[con2fb_map[fg_console]];
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002810 struct fbcon_ops *ops = info->fbcon_par;
Marcin Slusarz2c6cc352008-02-06 01:39:13 -08002811 struct display *disp = &fb_display[fg_console];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 int offset, limit, scrollback_old;
2813
2814 if (softback_top) {
2815 if (vc->vc_num != fg_console)
2816 return 0;
2817 if (vc->vc_mode != KD_TEXT || !lines)
2818 return 0;
2819 if (logo_shown >= 0) {
2820 struct vc_data *conp2 = vc_cons[logo_shown].d;
2821
2822 if (conp2->vc_top == logo_lines
2823 && conp2->vc_bottom == conp2->vc_rows)
2824 conp2->vc_top = 0;
2825 if (logo_shown == vc->vc_num) {
2826 unsigned long p, q;
2827 int i;
2828
2829 p = softback_in;
2830 q = vc->vc_origin +
2831 logo_lines * vc->vc_size_row;
2832 for (i = 0; i < logo_lines; i++) {
2833 if (p == softback_top)
2834 break;
2835 if (p == softback_buf)
2836 p = softback_end;
2837 p -= vc->vc_size_row;
2838 q -= vc->vc_size_row;
2839 scr_memcpyw((u16 *) q, (u16 *) p,
2840 vc->vc_size_row);
2841 }
David Hollister308af922006-05-30 21:25:36 -07002842 softback_in = softback_curr = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 update_region(vc, vc->vc_origin,
2844 logo_lines * vc->vc_cols);
2845 }
2846 logo_shown = FBCON_LOGO_CANSHOW;
2847 }
2848 fbcon_cursor(vc, CM_ERASE | CM_SOFTBACK);
Marcin Slusarz2c6cc352008-02-06 01:39:13 -08002849 fbcon_redraw_softback(vc, disp, lines);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 fbcon_cursor(vc, CM_DRAW | CM_SOFTBACK);
2851 return 0;
2852 }
2853
2854 if (!scrollback_phys_max)
2855 return -ENOSYS;
2856
2857 scrollback_old = scrollback_current;
2858 scrollback_current -= lines;
2859 if (scrollback_current < 0)
2860 scrollback_current = 0;
2861 else if (scrollback_current > scrollback_max)
2862 scrollback_current = scrollback_max;
2863 if (scrollback_current == scrollback_old)
2864 return 0;
2865
2866 if (fbcon_is_inactive(vc, info))
2867 return 0;
2868
2869 fbcon_cursor(vc, CM_ERASE);
2870
Marcin Slusarz2c6cc352008-02-06 01:39:13 -08002871 offset = disp->yscroll - scrollback_current;
2872 limit = disp->vrows;
2873 switch (disp->scrollmode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 case SCROLL_WRAP_MOVE:
2875 info->var.vmode |= FB_VMODE_YWRAP;
2876 break;
2877 case SCROLL_PAN_MOVE:
2878 case SCROLL_PAN_REDRAW:
2879 limit -= vc->vc_rows;
2880 info->var.vmode &= ~FB_VMODE_YWRAP;
2881 break;
2882 }
2883 if (offset < 0)
2884 offset += limit;
2885 else if (offset >= limit)
2886 offset -= limit;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002887
2888 ops->var.xoffset = 0;
2889 ops->var.yoffset = offset * vc->vc_font.height;
2890 ops->update_start(info);
2891
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 if (!scrollback_current)
2893 fbcon_cursor(vc, CM_DRAW);
2894 return 0;
2895}
2896
2897static int fbcon_set_origin(struct vc_data *vc)
2898{
2899 if (softback_lines)
2900 fbcon_scrolldelta(vc, softback_lines);
2901 return 0;
2902}
2903
2904static void fbcon_suspended(struct fb_info *info)
2905{
2906 struct vc_data *vc = NULL;
2907 struct fbcon_ops *ops = info->fbcon_par;
2908
2909 if (!ops || ops->currcon < 0)
2910 return;
2911 vc = vc_cons[ops->currcon].d;
2912
2913 /* Clear cursor, restore saved data */
2914 fbcon_cursor(vc, CM_ERASE);
2915}
2916
2917static void fbcon_resumed(struct fb_info *info)
2918{
2919 struct vc_data *vc;
2920 struct fbcon_ops *ops = info->fbcon_par;
2921
2922 if (!ops || ops->currcon < 0)
2923 return;
2924 vc = vc_cons[ops->currcon].d;
2925
2926 update_screen(vc);
2927}
2928
2929static void fbcon_modechanged(struct fb_info *info)
2930{
2931 struct fbcon_ops *ops = info->fbcon_par;
2932 struct vc_data *vc;
2933 struct display *p;
2934 int rows, cols;
2935
2936 if (!ops || ops->currcon < 0)
2937 return;
2938 vc = vc_cons[ops->currcon].d;
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002939 if (vc->vc_mode != KD_TEXT ||
2940 registered_fb[con2fb_map[ops->currcon]] != info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 return;
2942
2943 p = &fb_display[vc->vc_num];
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08002944 set_blitting_type(vc, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
2946 if (CON_IS_VISIBLE(vc)) {
2947 var_to_display(p, &info->var, info);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002948 cols = FBCON_SWAP(ops->rotate, info->var.xres, info->var.yres);
2949 rows = FBCON_SWAP(ops->rotate, info->var.yres, info->var.xres);
2950 cols /= vc->vc_font.width;
2951 rows /= vc->vc_font.height;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 vc_resize(vc, cols, rows);
2953 updatescrollmode(p, info, vc);
2954 scrollback_max = 0;
2955 scrollback_current = 0;
Antonino A. Daplas4e1567d2005-12-12 22:17:18 -08002956
2957 if (!fbcon_is_inactive(vc, info)) {
2958 ops->var.xoffset = ops->var.yoffset = p->yscroll = 0;
2959 ops->update_start(info);
2960 }
2961
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 fbcon_set_palette(vc, color_table);
2963 update_screen(vc);
Antonino A. Daplas4d9c5b62005-11-07 01:00:36 -08002964 if (softback_buf)
2965 fbcon_update_softback(vc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 }
2967}
2968
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002969static void fbcon_set_all_vcs(struct fb_info *info)
2970{
2971 struct fbcon_ops *ops = info->fbcon_par;
2972 struct vc_data *vc;
2973 struct display *p;
Antonino A. Daplas95d67bb2007-05-08 00:38:40 -07002974 int i, rows, cols, fg = -1;
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002975
2976 if (!ops || ops->currcon < 0)
2977 return;
2978
Antonino A. Daplase614b182006-06-26 00:27:09 -07002979 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002980 vc = vc_cons[i].d;
2981 if (!vc || vc->vc_mode != KD_TEXT ||
2982 registered_fb[con2fb_map[i]] != info)
2983 continue;
2984
Antonino A. Daplas95d67bb2007-05-08 00:38:40 -07002985 if (CON_IS_VISIBLE(vc)) {
2986 fg = i;
2987 continue;
2988 }
2989
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002990 p = &fb_display[vc->vc_num];
Antonino A. Daplasb73deed2006-01-09 20:52:56 -08002991 set_blitting_type(vc, info);
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002992 var_to_display(p, &info->var, info);
Antonino A. Daplas95d67bb2007-05-08 00:38:40 -07002993 cols = FBCON_SWAP(p->rotate, info->var.xres, info->var.yres);
2994 rows = FBCON_SWAP(p->rotate, info->var.yres, info->var.xres);
Antonino A. Daplase4fc2762005-11-08 21:39:09 -08002995 cols /= vc->vc_font.width;
2996 rows /= vc->vc_font.height;
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002997 vc_resize(vc, cols, rows);
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07002998 }
Antonino A. Daplas04a2fe52006-01-09 20:52:58 -08002999
Antonino A. Daplas95d67bb2007-05-08 00:38:40 -07003000 if (fg != -1)
3001 fbcon_modechanged(info);
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07003002}
3003
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004static int fbcon_mode_deleted(struct fb_info *info,
3005 struct fb_videomode *mode)
3006{
3007 struct fb_info *fb_info;
3008 struct display *p;
3009 int i, j, found = 0;
3010
3011 /* before deletion, ensure that mode is not in use */
3012 for (i = first_fb_vc; i <= last_fb_vc; i++) {
3013 j = con2fb_map[i];
3014 if (j == -1)
3015 continue;
3016 fb_info = registered_fb[j];
3017 if (fb_info != info)
3018 continue;
3019 p = &fb_display[i];
3020 if (!p || !p->mode)
3021 continue;
3022 if (fb_mode_is_equal(p->mode, mode)) {
3023 found = 1;
3024 break;
3025 }
3026 }
3027 return found;
3028}
3029
Jesse Barnescfafca82007-07-17 04:05:33 -07003030#ifdef CONFIG_VT_HW_CONSOLE_BINDING
3031static int fbcon_unbind(void)
3032{
3033 int ret;
3034
3035 ret = unbind_con_driver(&fb_con, first_fb_vc, last_fb_vc,
3036 fbcon_is_default);
3037 return ret;
3038}
3039#else
3040static inline int fbcon_unbind(void)
3041{
3042 return -EINVAL;
3043}
3044#endif /* CONFIG_VT_HW_CONSOLE_BINDING */
3045
3046static int fbcon_fb_unbind(int idx)
3047{
3048 int i, new_idx = -1, ret = 0;
3049
3050 for (i = first_fb_vc; i <= last_fb_vc; i++) {
3051 if (con2fb_map[i] != idx &&
3052 con2fb_map[i] != -1) {
3053 new_idx = i;
3054 break;
3055 }
3056 }
3057
3058 if (new_idx != -1) {
3059 for (i = first_fb_vc; i <= last_fb_vc; i++) {
3060 if (con2fb_map[i] == idx)
3061 set_con2fb_map(i, new_idx, 0);
3062 }
3063 } else
3064 ret = fbcon_unbind();
3065
3066 return ret;
3067}
3068
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003069static int fbcon_fb_unregistered(struct fb_info *info)
Antonino A. Daplase614b182006-06-26 00:27:09 -07003070{
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003071 int i, idx = info->node;
Antonino A. Daplase614b182006-06-26 00:27:09 -07003072
3073 for (i = first_fb_vc; i <= last_fb_vc; i++) {
3074 if (con2fb_map[i] == idx)
3075 con2fb_map[i] = -1;
3076 }
3077
3078 if (idx == info_idx) {
3079 info_idx = -1;
3080
3081 for (i = 0; i < FB_MAX; i++) {
3082 if (registered_fb[i] != NULL) {
3083 info_idx = i;
3084 break;
3085 }
3086 }
3087 }
3088
3089 if (info_idx != -1) {
3090 for (i = first_fb_vc; i <= last_fb_vc; i++) {
3091 if (con2fb_map[i] == -1)
3092 con2fb_map[i] = info_idx;
3093 }
3094 }
3095
3096 if (!num_registered_fb)
3097 unregister_con_driver(&fb_con);
3098
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003099
3100 if (primary_device == idx)
3101 primary_device = -1;
3102
Antonino A. Daplase614b182006-06-26 00:27:09 -07003103 return 0;
3104}
3105
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003106#ifdef CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003107static void fbcon_select_primary(struct fb_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108{
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003109 if (!map_override && primary_device == -1 &&
3110 fb_is_primary_device(info)) {
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003111 int i;
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003112
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003113 printk(KERN_INFO "fbcon: %s (fb%i) is primary device\n",
3114 info->fix.id, info->node);
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003115 primary_device = info->node;
3116
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003117 for (i = first_fb_vc; i <= last_fb_vc; i++)
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003118 con2fb_map_boot[i] = primary_device;
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003119
3120 if (con_is_bound(&fb_con)) {
3121 printk(KERN_INFO "fbcon: Remapping primary device, "
3122 "fb%i, to tty %i-%i\n", info->node,
3123 first_fb_vc + 1, last_fb_vc + 1);
3124 info_idx = primary_device;
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003125 }
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003126 }
3127
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003128}
3129#else
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003130static inline void fbcon_select_primary(struct fb_info *info)
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003131{
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003132 return;
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003133}
3134#endif /* CONFIG_FRAMEBUFFER_DETECT_PRIMARY */
3135
3136static int fbcon_fb_registered(struct fb_info *info)
3137{
3138 int ret = 0, i, idx = info->node;
3139
Antonino A. Daplasafd1db12007-07-17 04:05:32 -07003140 fbcon_select_primary(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
3142 if (info_idx == -1) {
Antonino A. Daplase614b182006-06-26 00:27:09 -07003143 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 if (con2fb_map_boot[i] == idx) {
3145 info_idx = idx;
3146 break;
3147 }
3148 }
Antonino A. Daplase614b182006-06-26 00:27:09 -07003149
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 if (info_idx != -1)
3151 ret = fbcon_takeover(1);
3152 } else {
Antonino A. Daplase614b182006-06-26 00:27:09 -07003153 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07003154 if (con2fb_map_boot[i] == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 set_con2fb_map(i, idx, 0);
3156 }
3157 }
3158
3159 return ret;
3160}
3161
3162static void fbcon_fb_blanked(struct fb_info *info, int blank)
3163{
3164 struct fbcon_ops *ops = info->fbcon_par;
3165 struct vc_data *vc;
3166
3167 if (!ops || ops->currcon < 0)
3168 return;
3169
3170 vc = vc_cons[ops->currcon].d;
3171 if (vc->vc_mode != KD_TEXT ||
3172 registered_fb[con2fb_map[ops->currcon]] != info)
3173 return;
3174
3175 if (CON_IS_VISIBLE(vc)) {
3176 if (blank)
3177 do_blank_screen(0);
3178 else
3179 do_unblank_screen(0);
3180 }
3181 ops->blank_state = blank;
3182}
3183
3184static void fbcon_new_modelist(struct fb_info *info)
3185{
3186 int i;
3187 struct vc_data *vc;
3188 struct fb_var_screeninfo var;
Geert Uytterhoeven9791d762007-02-12 00:55:19 -08003189 const struct fb_videomode *mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
Antonino A. Daplase614b182006-06-26 00:27:09 -07003191 for (i = first_fb_vc; i <= last_fb_vc; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 if (registered_fb[con2fb_map[i]] != info)
3193 continue;
3194 if (!fb_display[i].mode)
3195 continue;
3196 vc = vc_cons[i].d;
3197 display_to_var(&var, &fb_display[i]);
Michal Januszewski8fb65672005-11-07 01:00:47 -08003198 mode = fb_find_nearest_mode(fb_display[i].mode,
3199 &info->modelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 fb_videomode_to_var(&var, mode);
Antonino A. Daplasd1baa4f2007-07-17 04:05:32 -07003201 fbcon_set_disp(info, &var, vc->vc_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 }
3203}
3204
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003205static void fbcon_get_requirement(struct fb_info *info,
3206 struct fb_blit_caps *caps)
3207{
3208 struct vc_data *vc;
3209 struct display *p;
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003210
3211 if (caps->flags) {
Antonino A. Daplas167f07f2007-05-08 00:39:54 -07003212 int i, charcnt;
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003213
3214 for (i = first_fb_vc; i <= last_fb_vc; i++) {
3215 vc = vc_cons[i].d;
Antonino A. Daplas167f07f2007-05-08 00:39:54 -07003216 if (vc && vc->vc_mode == KD_TEXT &&
3217 info->node == con2fb_map[i]) {
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003218 p = &fb_display[i];
3219 caps->x |= 1 << (vc->vc_font.width - 1);
3220 caps->y |= 1 << (vc->vc_font.height - 1);
3221 charcnt = (p->userfont) ?
3222 FNTCHARCNT(p->fontdata) : 256;
3223 if (caps->len < charcnt)
3224 caps->len = charcnt;
3225 }
3226 }
3227 } else {
3228 vc = vc_cons[fg_console].d;
3229
Antonino A. Daplas167f07f2007-05-08 00:39:54 -07003230 if (vc && vc->vc_mode == KD_TEXT &&
3231 info->node == con2fb_map[fg_console]) {
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003232 p = &fb_display[fg_console];
Antonino A. Daplas167f07f2007-05-08 00:39:54 -07003233 caps->x = 1 << (vc->vc_font.width - 1);
3234 caps->y = 1 << (vc->vc_font.height - 1);
3235 caps->len = (p->userfont) ?
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003236 FNTCHARCNT(p->fontdata) : 256;
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003237 }
3238 }
3239}
3240
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241static int fbcon_event_notify(struct notifier_block *self,
3242 unsigned long action, void *data)
3243{
3244 struct fb_event *event = data;
3245 struct fb_info *info = event->info;
3246 struct fb_videomode *mode;
3247 struct fb_con2fbmap *con2fb;
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003248 struct fb_blit_caps *caps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 int ret = 0;
3250
Antonino A. Daplase614b182006-06-26 00:27:09 -07003251 /*
3252 * ignore all events except driver registration and deregistration
3253 * if fbcon is not active
3254 */
3255 if (fbcon_has_exited && !(action == FB_EVENT_FB_REGISTERED ||
3256 action == FB_EVENT_FB_UNREGISTERED))
3257 goto done;
3258
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 switch(action) {
3260 case FB_EVENT_SUSPEND:
3261 fbcon_suspended(info);
3262 break;
3263 case FB_EVENT_RESUME:
3264 fbcon_resumed(info);
3265 break;
3266 case FB_EVENT_MODE_CHANGE:
3267 fbcon_modechanged(info);
3268 break;
Antonino A. Daplas7726e9e2005-09-09 13:04:29 -07003269 case FB_EVENT_MODE_CHANGE_ALL:
3270 fbcon_set_all_vcs(info);
3271 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 case FB_EVENT_MODE_DELETE:
3273 mode = event->data;
3274 ret = fbcon_mode_deleted(info, mode);
3275 break;
Jesse Barnescfafca82007-07-17 04:05:33 -07003276 case FB_EVENT_FB_UNBIND:
3277 ret = fbcon_fb_unbind(info->node);
3278 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 case FB_EVENT_FB_REGISTERED:
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003280 ret = fbcon_fb_registered(info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 break;
Antonino A. Daplase614b182006-06-26 00:27:09 -07003282 case FB_EVENT_FB_UNREGISTERED:
Antonino A. Daplas623e71b2007-07-17 04:05:28 -07003283 ret = fbcon_fb_unregistered(info);
Antonino A. Daplase614b182006-06-26 00:27:09 -07003284 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 case FB_EVENT_SET_CONSOLE_MAP:
3286 con2fb = event->data;
3287 ret = set_con2fb_map(con2fb->console - 1,
3288 con2fb->framebuffer, 1);
3289 break;
3290 case FB_EVENT_GET_CONSOLE_MAP:
3291 con2fb = event->data;
3292 con2fb->framebuffer = con2fb_map[con2fb->console - 1];
3293 break;
3294 case FB_EVENT_BLANK:
3295 fbcon_fb_blanked(info, *(int *)event->data);
3296 break;
3297 case FB_EVENT_NEW_MODELIST:
3298 fbcon_new_modelist(info);
3299 break;
Antonino A. Daplas38a3dc52007-05-08 00:39:37 -07003300 case FB_EVENT_GET_REQ:
3301 caps = event->data;
3302 fbcon_get_requirement(info, caps);
3303 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 }
3305
Antonino A. Daplase614b182006-06-26 00:27:09 -07003306done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 return ret;
3308}
3309
3310/*
3311 * The console `switch' structure for the frame buffer based console
3312 */
3313
3314static const struct consw fb_con = {
3315 .owner = THIS_MODULE,
3316 .con_startup = fbcon_startup,
3317 .con_init = fbcon_init,
3318 .con_deinit = fbcon_deinit,
3319 .con_clear = fbcon_clear,
3320 .con_putc = fbcon_putc,
3321 .con_putcs = fbcon_putcs,
3322 .con_cursor = fbcon_cursor,
3323 .con_scroll = fbcon_scroll,
3324 .con_bmove = fbcon_bmove,
3325 .con_switch = fbcon_switch,
3326 .con_blank = fbcon_blank,
3327 .con_font_set = fbcon_set_font,
3328 .con_font_get = fbcon_get_font,
3329 .con_font_default = fbcon_set_def_font,
3330 .con_font_copy = fbcon_copy_font,
3331 .con_set_palette = fbcon_set_palette,
3332 .con_scrolldelta = fbcon_scrolldelta,
3333 .con_set_origin = fbcon_set_origin,
3334 .con_invert_region = fbcon_invert_region,
3335 .con_screen_pos = fbcon_screen_pos,
3336 .con_getxy = fbcon_getxy,
3337 .con_resize = fbcon_resize,
3338};
3339
3340static struct notifier_block fbcon_event_notifier = {
3341 .notifier_call = fbcon_event_notify,
3342};
3343
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003344static ssize_t store_rotate(struct device *device,
3345 struct device_attribute *attr, const char *buf,
3346 size_t count)
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003347{
3348 struct fb_info *info;
3349 int rotate, idx;
3350 char **last = NULL;
3351
Antonino A. Daplase614b182006-06-26 00:27:09 -07003352 if (fbcon_has_exited)
3353 return count;
3354
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003355 acquire_console_sem();
3356 idx = con2fb_map[fg_console];
3357
3358 if (idx == -1 || registered_fb[idx] == NULL)
3359 goto err;
3360
3361 info = registered_fb[idx];
3362 rotate = simple_strtoul(buf, last, 0);
3363 fbcon_rotate(info, rotate);
3364err:
3365 release_console_sem();
3366 return count;
3367}
3368
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003369static ssize_t store_rotate_all(struct device *device,
3370 struct device_attribute *attr,const char *buf,
3371 size_t count)
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003372{
3373 struct fb_info *info;
3374 int rotate, idx;
3375 char **last = NULL;
3376
Antonino A. Daplase614b182006-06-26 00:27:09 -07003377 if (fbcon_has_exited)
3378 return count;
3379
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003380 acquire_console_sem();
3381 idx = con2fb_map[fg_console];
3382
3383 if (idx == -1 || registered_fb[idx] == NULL)
3384 goto err;
3385
3386 info = registered_fb[idx];
3387 rotate = simple_strtoul(buf, last, 0);
3388 fbcon_rotate_all(info, rotate);
3389err:
3390 release_console_sem();
3391 return count;
3392}
3393
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003394static ssize_t show_rotate(struct device *device,
3395 struct device_attribute *attr,char *buf)
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003396{
3397 struct fb_info *info;
3398 int rotate = 0, idx;
3399
Antonino A. Daplase614b182006-06-26 00:27:09 -07003400 if (fbcon_has_exited)
3401 return 0;
3402
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003403 acquire_console_sem();
3404 idx = con2fb_map[fg_console];
3405
3406 if (idx == -1 || registered_fb[idx] == NULL)
3407 goto err;
3408
3409 info = registered_fb[idx];
3410 rotate = fbcon_get_rotate(info);
3411err:
3412 release_console_sem();
3413 return snprintf(buf, PAGE_SIZE, "%d\n", rotate);
3414}
3415
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003416static ssize_t show_cursor_blink(struct device *device,
3417 struct device_attribute *attr, char *buf)
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -07003418{
3419 struct fb_info *info;
3420 struct fbcon_ops *ops;
3421 int idx, blink = -1;
3422
3423 if (fbcon_has_exited)
3424 return 0;
3425
3426 acquire_console_sem();
3427 idx = con2fb_map[fg_console];
3428
3429 if (idx == -1 || registered_fb[idx] == NULL)
3430 goto err;
3431
3432 info = registered_fb[idx];
3433 ops = info->fbcon_par;
3434
3435 if (!ops)
3436 goto err;
3437
3438 blink = (ops->flags & FBCON_FLAGS_CURSOR_TIMER) ? 1 : 0;
3439err:
3440 release_console_sem();
3441 return snprintf(buf, PAGE_SIZE, "%d\n", blink);
3442}
3443
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003444static ssize_t store_cursor_blink(struct device *device,
3445 struct device_attribute *attr,
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -07003446 const char *buf, size_t count)
3447{
3448 struct fb_info *info;
3449 int blink, idx;
3450 char **last = NULL;
3451
3452 if (fbcon_has_exited)
3453 return count;
3454
3455 acquire_console_sem();
3456 idx = con2fb_map[fg_console];
3457
3458 if (idx == -1 || registered_fb[idx] == NULL)
3459 goto err;
3460
3461 info = registered_fb[idx];
3462
3463 if (!info->fbcon_par)
3464 goto err;
3465
3466 blink = simple_strtoul(buf, last, 0);
3467
3468 if (blink) {
3469 fbcon_cursor_noblink = 0;
3470 fbcon_add_cursor_timer(info);
3471 } else {
3472 fbcon_cursor_noblink = 1;
3473 fbcon_del_cursor_timer(info);
3474 }
3475
3476err:
3477 release_console_sem();
3478 return count;
3479}
3480
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003481static struct device_attribute device_attrs[] = {
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003482 __ATTR(rotate, S_IRUGO|S_IWUSR, show_rotate, store_rotate),
3483 __ATTR(rotate_all, S_IWUSR, NULL, store_rotate_all),
Antonino A. Daplasacba9cd2007-07-17 04:05:26 -07003484 __ATTR(cursor_blink, S_IRUGO|S_IWUSR, show_cursor_blink,
3485 store_cursor_blink),
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003486};
3487
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003488static int fbcon_init_device(void)
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003489{
Antonino A. Daplas0a727de2006-10-03 01:14:50 -07003490 int i, error = 0;
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003491
Antonino A. Daplas0a727de2006-10-03 01:14:50 -07003492 fbcon_has_sysfs = 1;
3493
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003494 for (i = 0; i < ARRAY_SIZE(device_attrs); i++) {
3495 error = device_create_file(fbcon_device, &device_attrs[i]);
Antonino A. Daplas0a727de2006-10-03 01:14:50 -07003496
3497 if (error)
3498 break;
3499 }
3500
3501 if (error) {
3502 while (--i >= 0)
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003503 device_remove_file(fbcon_device, &device_attrs[i]);
Antonino A. Daplas0a727de2006-10-03 01:14:50 -07003504
3505 fbcon_has_sysfs = 0;
3506 }
3507
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003508 return 0;
3509}
3510
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003511static void fbcon_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 if (num_registered_fb) {
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003514 int i;
3515
3516 acquire_console_sem();
3517
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 for (i = 0; i < FB_MAX; i++) {
3519 if (registered_fb[i] != NULL) {
3520 info_idx = i;
3521 break;
3522 }
3523 }
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003524
3525 release_console_sem();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 fbcon_takeover(0);
3527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528}
3529
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003530static void fbcon_exit(void)
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003531{
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003532 struct fb_info *info;
3533 int i, j, mapped;
3534
Antonino A. Daplase614b182006-06-26 00:27:09 -07003535 if (fbcon_has_exited)
3536 return;
3537
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003538#ifdef CONFIG_ATARI
Al Viro956295d2006-09-23 01:27:30 +01003539 free_irq(IRQ_AUTO_4, fb_vbl_handler);
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003540#endif
3541#ifdef CONFIG_MAC
3542 if (MACH_IS_MAC && vbl_detected)
Al Viro956295d2006-09-23 01:27:30 +01003543 free_irq(IRQ_MAC_VBL, fb_vbl_handler);
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003544#endif
3545
3546 kfree((void *)softback_buf);
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003547 softback_buf = 0UL;
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003548
3549 for (i = 0; i < FB_MAX; i++) {
3550 mapped = 0;
3551 info = registered_fb[i];
3552
3553 if (info == NULL)
3554 continue;
3555
Antonino A. Daplase614b182006-06-26 00:27:09 -07003556 for (j = first_fb_vc; j <= last_fb_vc; j++) {
3557 if (con2fb_map[j] == i)
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003558 mapped = 1;
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003559 }
3560
3561 if (mapped) {
3562 if (info->fbops->fb_release)
3563 info->fbops->fb_release(info, 0);
3564 module_put(info->fbops->owner);
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003565
3566 if (info->fbcon_par) {
Dave Jonese299dd42006-10-03 01:14:47 -07003567 struct fbcon_ops *ops = info->fbcon_par;
3568
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003569 fbcon_del_cursor_timer(info);
Dave Jonese299dd42006-10-03 01:14:47 -07003570 kfree(ops->cursor_src);
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003571 kfree(info->fbcon_par);
3572 info->fbcon_par = NULL;
3573 }
3574
3575 if (info->queue.func == fb_flashcursor)
3576 info->queue.func = NULL;
Antonino A. Daplase55186f2006-06-26 00:27:05 -07003577 }
3578 }
3579
Antonino A. Daplase614b182006-06-26 00:27:09 -07003580 fbcon_has_exited = 1;
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003581}
3582
3583static int __init fb_console_init(void)
3584{
3585 int i;
3586
3587 acquire_console_sem();
3588 fb_register_client(&fbcon_event_notifier);
Greg Kroah-Hartman1e274402008-05-21 12:52:33 -07003589 fbcon_device = device_create_drvdata(fb_class, NULL, MKDEV(0, 0),
3590 NULL, "fbcon");
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003591
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003592 if (IS_ERR(fbcon_device)) {
3593 printk(KERN_WARNING "Unable to create device "
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003594 "for fbcon; errno = %ld\n",
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003595 PTR_ERR(fbcon_device));
3596 fbcon_device = NULL;
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003597 } else
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003598 fbcon_init_device();
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003599
3600 for (i = 0; i < MAX_NR_CONSOLES; i++)
3601 con2fb_map[i] = -1;
3602
3603 release_console_sem();
3604 fbcon_start();
3605 return 0;
3606}
3607
3608module_init(fb_console_init);
3609
3610#ifdef MODULE
3611
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003612static void __exit fbcon_deinit_device(void)
Antonino A. Daplas5428b042006-06-26 00:27:06 -07003613{
3614 int i;
3615
Antonino A. Daplas0a727de2006-10-03 01:14:50 -07003616 if (fbcon_has_sysfs) {
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003617 for (i = 0; i < ARRAY_SIZE(device_attrs); i++)
3618 device_remove_file(fbcon_device, &device_attrs[i]);
Antonino A. Daplas0a727de2006-10-03 01:14:50 -07003619
3620 fbcon_has_sysfs = 0;
3621 }
Antonino A. Daplas9a179172006-06-26 00:27:05 -07003622}
3623
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624static void __exit fb_console_exit(void)
3625{
3626 acquire_console_sem();
3627 fb_unregister_client(&fbcon_event_notifier);
Antonino A. Daplas0c6c1ce2007-07-17 04:05:26 -07003628 fbcon_deinit_device();
3629 device_destroy(fb_class, MKDEV(0, 0));
Antonino A. Daplase614b182006-06-26 00:27:09 -07003630 fbcon_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 release_console_sem();
Antonino A. Daplase614b182006-06-26 00:27:09 -07003632 unregister_con_driver(&fb_con);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633}
3634
3635module_exit(fb_console_exit);
3636
3637#endif
3638
3639MODULE_LICENSE("GPL");