2 * linux/drivers/video/fbcon.c -- Low level frame buffer based console driver
4 * Copyright (C) 1995 Geert Uytterhoeven
7 * This file is based on the original Amiga console driver (amicon.c):
9 * Copyright (C) 1993 Hamish Macdonald
11 * Copyright (C) 1994 David Carter [carter@compsci.bristol.ac.uk]
13 * with work by William Rucklidge (wjr@cs.cornell.edu)
15 * Jes Sorensen (jds@kom.auc.dk)
18 * and on the original Atari console driver (atacon.c):
20 * Copyright (C) 1993 Bjoern Brauel
23 * with work by Guenther Kelleter
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)
32 * Random hacking by Martin Mares <mj@ucw.cz>
34 * 2001 - Documented with DocBook
35 * - Brad Douglas <brad@neruo.com>
37 * The low level operations for the various display memory organizations are
38 * now in separate source files.
40 * Currently the following organizations are supported:
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
47 * o vga VGA characters/attributes
51 * - Implement 16 plane mode (iplan2p16)
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
61 #include <linux/module.h>
62 #include <linux/types.h>
64 #include <linux/kernel.h>
65 #include <linux/delay.h> /* MSch: for IRQ probe */
66 #include <linux/console.h>
67 #include <linux/string.h>
69 #include <linux/slab.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 */
80 #include <asm/system.h>
85 # define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __func__ , ## args)
87 # define DPRINTK(fmt, args...)
91 FBCON_LOGO_CANSHOW
= -1, /* the logo can be shown */
92 FBCON_LOGO_DRAW
= -2, /* draw the logo to a console */
93 FBCON_LOGO_DONTSHOW
= -3 /* do not show the logo */
96 static struct display fb_display
[MAX_NR_CONSOLES
];
98 static signed char con2fb_map
[MAX_NR_CONSOLES
];
99 static signed char con2fb_map_boot
[MAX_NR_CONSOLES
];
101 static int logo_lines
;
102 /* logo_shown is an index to vc_cons when >= 0; otherwise follows FBCON_LOGO
104 static int logo_shown
= FBCON_LOGO_CANSHOW
;
105 /* Software scrollback */
106 static int fbcon_softback_size
= 32768;
107 static unsigned long softback_buf
, softback_curr
;
108 static unsigned long softback_in
;
109 static unsigned long softback_top
, softback_end
;
110 static int softback_lines
;
111 /* console mappings */
112 static int first_fb_vc
;
113 static int last_fb_vc
= MAX_NR_CONSOLES
- 1;
114 static int fbcon_is_default
= 1;
115 static int fbcon_has_exited
;
116 static int primary_device
= -1;
118 #ifdef CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY
119 static int map_override
;
121 static inline void fbcon_map_override(void)
126 static inline void fbcon_map_override(void)
129 #endif /* CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY */
132 static char fontname
[40];
134 /* current fb_info */
135 static int info_idx
= -1;
137 /* console rotation */
138 static int initial_rotation
;
139 static int fbcon_has_sysfs
;
141 static const struct consw fb_con
;
143 #define CM_SOFTBACK (8)
145 #define advance_row(p, delta) (unsigned short *)((unsigned long)(p) + (delta) * vc->vc_size_row)
147 static int fbcon_set_origin(struct vc_data
*);
149 #define CURSOR_DRAW_DELAY (1)
151 static int vbl_cursor_cnt
;
152 static int fbcon_cursor_noblink
;
154 #define divides(a, b) ((!(a) || (b)%(a)) ? 0 : 1)
157 * Interface used by the world
160 static const char *fbcon_startup(void);
161 static void fbcon_init(struct vc_data
*vc
, int init
);
162 static void fbcon_deinit(struct vc_data
*vc
);
163 static void fbcon_clear(struct vc_data
*vc
, int sy
, int sx
, int height
,
165 static void fbcon_putc(struct vc_data
*vc
, int c
, int ypos
, int xpos
);
166 static void fbcon_putcs(struct vc_data
*vc
, const unsigned short *s
,
167 int count
, int ypos
, int xpos
);
168 static void fbcon_clear_margins(struct vc_data
*vc
, int bottom_only
);
169 static void fbcon_cursor(struct vc_data
*vc
, int mode
);
170 static int fbcon_scroll(struct vc_data
*vc
, int t
, int b
, int dir
,
172 static void fbcon_bmove(struct vc_data
*vc
, int sy
, int sx
, int dy
, int dx
,
173 int height
, int width
);
174 static int fbcon_switch(struct vc_data
*vc
);
175 static int fbcon_blank(struct vc_data
*vc
, int blank
, int mode_switch
);
176 static int fbcon_set_palette(struct vc_data
*vc
, unsigned char *table
);
177 static int fbcon_scrolldelta(struct vc_data
*vc
, int lines
);
182 static __inline__
void ywrap_up(struct vc_data
*vc
, int count
);
183 static __inline__
void ywrap_down(struct vc_data
*vc
, int count
);
184 static __inline__
void ypan_up(struct vc_data
*vc
, int count
);
185 static __inline__
void ypan_down(struct vc_data
*vc
, int count
);
186 static void fbcon_bmove_rec(struct vc_data
*vc
, struct display
*p
, int sy
, int sx
,
187 int dy
, int dx
, int height
, int width
, u_int y_break
);
188 static void fbcon_set_disp(struct fb_info
*info
, struct fb_var_screeninfo
*var
,
190 static void fbcon_redraw_move(struct vc_data
*vc
, struct display
*p
,
191 int line
, int count
, int dy
);
192 static void fbcon_modechanged(struct fb_info
*info
);
193 static void fbcon_set_all_vcs(struct fb_info
*info
);
194 static void fbcon_start(void);
195 static void fbcon_exit(void);
196 static struct device
*fbcon_device
;
198 #ifdef CONFIG_FRAMEBUFFER_CONSOLE_ROTATION
199 static inline void fbcon_set_rotation(struct fb_info
*info
)
201 struct fbcon_ops
*ops
= info
->fbcon_par
;
203 if (!(info
->flags
& FBINFO_MISC_TILEBLITTING
) &&
204 ops
->p
->con_rotate
< 4)
205 ops
->rotate
= ops
->p
->con_rotate
;
210 static void fbcon_rotate(struct fb_info
*info
, u32 rotate
)
212 struct fbcon_ops
*ops
= info
->fbcon_par
;
213 struct fb_info
*fb_info
;
215 if (!ops
|| ops
->currcon
== -1)
218 fb_info
= registered_fb
[con2fb_map
[ops
->currcon
]];
220 if (info
== fb_info
) {
221 struct display
*p
= &fb_display
[ops
->currcon
];
224 p
->con_rotate
= rotate
;
228 fbcon_modechanged(info
);
232 static void fbcon_rotate_all(struct fb_info
*info
, u32 rotate
)
234 struct fbcon_ops
*ops
= info
->fbcon_par
;
239 if (!ops
|| ops
->currcon
< 0 || rotate
> 3)
242 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
244 if (!vc
|| vc
->vc_mode
!= KD_TEXT
||
245 registered_fb
[con2fb_map
[i
]] != info
)
248 p
= &fb_display
[vc
->vc_num
];
249 p
->con_rotate
= rotate
;
252 fbcon_set_all_vcs(info
);
255 static inline void fbcon_set_rotation(struct fb_info
*info
)
257 struct fbcon_ops
*ops
= info
->fbcon_par
;
259 ops
->rotate
= FB_ROTATE_UR
;
262 static void fbcon_rotate(struct fb_info
*info
, u32 rotate
)
267 static void fbcon_rotate_all(struct fb_info
*info
, u32 rotate
)
271 #endif /* CONFIG_FRAMEBUFFER_CONSOLE_ROTATION */
273 static int fbcon_get_rotate(struct fb_info
*info
)
275 struct fbcon_ops
*ops
= info
->fbcon_par
;
277 return (ops
) ? ops
->rotate
: 0;
280 static inline int fbcon_is_inactive(struct vc_data
*vc
, struct fb_info
*info
)
282 struct fbcon_ops
*ops
= info
->fbcon_par
;
284 return (info
->state
!= FBINFO_STATE_RUNNING
||
285 vc
->vc_mode
!= KD_TEXT
|| ops
->graphics
);
288 static inline int get_color(struct vc_data
*vc
, struct fb_info
*info
,
291 int depth
= fb_get_color_depth(&info
->var
, &info
->fix
);
294 if (console_blanked
) {
295 unsigned short charmask
= vc
->vc_hi_font_mask
? 0x1ff : 0xff;
297 c
= vc
->vc_video_erase_char
& charmask
;
301 color
= (is_fg
) ? attr_fgcol((vc
->vc_hi_font_mask
) ? 9 : 8, c
)
302 : attr_bgcol((vc
->vc_hi_font_mask
) ? 13 : 12, c
);
307 int col
= mono_col(info
);
309 int fg
= (info
->fix
.visual
!= FB_VISUAL_MONO01
) ? col
: 0;
310 int bg
= (info
->fix
.visual
!= FB_VISUAL_MONO01
) ? 0 : col
;
315 color
= (is_fg
) ? fg
: bg
;
320 * Scale down 16-colors to 4 colors. Default 4-color palette
321 * is grayscale. However, simply dividing the values by 4
322 * will not work, as colors 1, 2 and 3 will be scaled-down
323 * to zero rendering them invisible. So empirically convert
324 * colors to a sane 4-level grayscale.
328 color
= 0; /* black */
331 color
= 2; /* white */
334 color
= 1; /* gray */
337 color
= 3; /* intense white */
343 * Last 8 entries of default 16-color palette is a more intense
344 * version of the first 8 (i.e., same chrominance, different
355 static void fbcon_update_softback(struct vc_data
*vc
)
357 int l
= fbcon_softback_size
/ vc
->vc_size_row
;
360 softback_end
= softback_buf
+ l
* vc
->vc_size_row
;
362 /* Smaller scrollback makes no sense, and 0 would screw
363 the operation totally */
367 static void fb_flashcursor(struct work_struct
*work
)
369 struct fb_info
*info
= container_of(work
, struct fb_info
, queue
);
370 struct fbcon_ops
*ops
= info
->fbcon_par
;
372 struct vc_data
*vc
= NULL
;
376 acquire_console_sem();
377 if (ops
&& ops
->currcon
!= -1)
378 vc
= vc_cons
[ops
->currcon
].d
;
380 if (!vc
|| !CON_IS_VISIBLE(vc
) ||
381 registered_fb
[con2fb_map
[vc
->vc_num
]] != info
||
383 release_console_sem();
387 p
= &fb_display
[vc
->vc_num
];
388 c
= scr_readw((u16
*) vc
->vc_pos
);
389 mode
= (!ops
->cursor_flash
|| ops
->cursor_state
.enable
) ?
391 ops
->cursor(vc
, info
, mode
, softback_lines
, get_color(vc
, info
, c
, 1),
392 get_color(vc
, info
, c
, 0));
393 release_console_sem();
396 static void cursor_timer_handler(unsigned long dev_addr
)
398 struct fb_info
*info
= (struct fb_info
*) dev_addr
;
399 struct fbcon_ops
*ops
= info
->fbcon_par
;
401 schedule_work(&info
->queue
);
402 mod_timer(&ops
->cursor_timer
, jiffies
+ HZ
/5);
405 static void fbcon_add_cursor_timer(struct fb_info
*info
)
407 struct fbcon_ops
*ops
= info
->fbcon_par
;
409 if ((!info
->queue
.func
|| info
->queue
.func
== fb_flashcursor
) &&
410 !(ops
->flags
& FBCON_FLAGS_CURSOR_TIMER
) &&
411 !fbcon_cursor_noblink
) {
412 if (!info
->queue
.func
)
413 INIT_WORK(&info
->queue
, fb_flashcursor
);
415 init_timer(&ops
->cursor_timer
);
416 ops
->cursor_timer
.function
= cursor_timer_handler
;
417 ops
->cursor_timer
.expires
= jiffies
+ HZ
/ 5;
418 ops
->cursor_timer
.data
= (unsigned long ) info
;
419 add_timer(&ops
->cursor_timer
);
420 ops
->flags
|= FBCON_FLAGS_CURSOR_TIMER
;
424 static void fbcon_del_cursor_timer(struct fb_info
*info
)
426 struct fbcon_ops
*ops
= info
->fbcon_par
;
428 if (info
->queue
.func
== fb_flashcursor
&&
429 ops
->flags
& FBCON_FLAGS_CURSOR_TIMER
) {
430 del_timer_sync(&ops
->cursor_timer
);
431 ops
->flags
&= ~FBCON_FLAGS_CURSOR_TIMER
;
436 static int __init
fb_console_setup(char *this_opt
)
441 if (!this_opt
|| !*this_opt
)
444 while ((options
= strsep(&this_opt
, ",")) != NULL
) {
445 if (!strncmp(options
, "font:", 5))
446 strcpy(fontname
, options
+ 5);
448 if (!strncmp(options
, "scrollback:", 11)) {
451 fbcon_softback_size
= simple_strtoul(options
, &options
, 0);
452 if (*options
== 'k' || *options
== 'K') {
453 fbcon_softback_size
*= 1024;
463 if (!strncmp(options
, "map:", 4)) {
466 for (i
= 0, j
= 0; i
< MAX_NR_CONSOLES
; i
++) {
470 (options
[j
++]-'0') % FB_MAX
;
473 fbcon_map_override();
479 if (!strncmp(options
, "vc:", 3)) {
482 first_fb_vc
= simple_strtoul(options
, &options
, 10) - 1;
485 if (*options
++ == '-')
486 last_fb_vc
= simple_strtoul(options
, &options
, 10) - 1;
487 fbcon_is_default
= 0;
490 if (!strncmp(options
, "rotate:", 7)) {
493 initial_rotation
= simple_strtoul(options
, &options
, 0);
494 if (initial_rotation
> 3)
495 initial_rotation
= 0;
501 __setup("fbcon=", fb_console_setup
);
504 static int search_fb_in_map(int idx
)
508 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
509 if (con2fb_map
[i
] == idx
)
515 static int search_for_mapped_con(void)
519 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
520 if (con2fb_map
[i
] != -1)
526 static int fbcon_takeover(int show_logo
)
530 if (!num_registered_fb
)
534 logo_shown
= FBCON_LOGO_DONTSHOW
;
536 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++)
537 con2fb_map
[i
] = info_idx
;
539 err
= take_over_console(&fb_con
, first_fb_vc
, last_fb_vc
,
543 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
553 static void fbcon_prepare_logo(struct vc_data
*vc
, struct fb_info
*info
,
554 int cols
, int rows
, int new_cols
, int new_rows
)
556 logo_shown
= FBCON_LOGO_DONTSHOW
;
559 static void fbcon_prepare_logo(struct vc_data
*vc
, struct fb_info
*info
,
560 int cols
, int rows
, int new_cols
, int new_rows
)
562 /* Need to make room for the logo */
563 struct fbcon_ops
*ops
= info
->fbcon_par
;
564 int cnt
, erase
= vc
->vc_video_erase_char
, step
;
565 unsigned short *save
= NULL
, *r
, *q
;
568 if (info
->flags
& FBINFO_MODULE
) {
569 logo_shown
= FBCON_LOGO_DONTSHOW
;
574 * remove underline attribute from erase character
575 * if black and white framebuffer.
577 if (fb_get_color_depth(&info
->var
, &info
->fix
) == 1)
579 logo_height
= fb_prepare_logo(info
, ops
->rotate
);
580 logo_lines
= DIV_ROUND_UP(logo_height
, vc
->vc_font
.height
);
581 q
= (unsigned short *) (vc
->vc_origin
+
582 vc
->vc_size_row
* rows
);
583 step
= logo_lines
* cols
;
584 for (r
= q
- logo_lines
* cols
; r
< q
; r
++)
585 if (scr_readw(r
) != vc
->vc_video_erase_char
)
587 if (r
!= q
&& new_rows
>= rows
+ logo_lines
) {
588 save
= kmalloc(logo_lines
* new_cols
* 2, GFP_KERNEL
);
590 int i
= cols
< new_cols
? cols
: new_cols
;
591 scr_memsetw(save
, erase
, logo_lines
* new_cols
* 2);
593 for (cnt
= 0; cnt
< logo_lines
; cnt
++, r
+= i
)
594 scr_memcpyw(save
+ cnt
* new_cols
, r
, 2 * i
);
599 /* We can scroll screen down */
601 for (cnt
= rows
- logo_lines
; cnt
> 0; cnt
--) {
602 scr_memcpyw(r
+ step
, r
, vc
->vc_size_row
);
607 if (vc
->vc_y
+ logo_lines
>= rows
)
608 lines
= rows
- vc
->vc_y
- 1;
612 vc
->vc_pos
+= lines
* vc
->vc_size_row
;
615 scr_memsetw((unsigned short *) vc
->vc_origin
,
617 vc
->vc_size_row
* logo_lines
);
619 if (CON_IS_VISIBLE(vc
) && vc
->vc_mode
== KD_TEXT
) {
620 fbcon_clear_margins(vc
, 0);
625 q
= (unsigned short *) (vc
->vc_origin
+
628 scr_memcpyw(q
, save
, logo_lines
* new_cols
* 2);
629 vc
->vc_y
+= logo_lines
;
630 vc
->vc_pos
+= logo_lines
* vc
->vc_size_row
;
634 if (logo_lines
> vc
->vc_bottom
) {
635 logo_shown
= FBCON_LOGO_CANSHOW
;
637 "fbcon_init: disable boot-logo (boot-logo bigger than screen).\n");
638 } else if (logo_shown
!= FBCON_LOGO_DONTSHOW
) {
639 logo_shown
= FBCON_LOGO_DRAW
;
640 vc
->vc_top
= logo_lines
;
645 #ifdef CONFIG_FB_TILEBLITTING
646 static void set_blitting_type(struct vc_data
*vc
, struct fb_info
*info
)
648 struct fbcon_ops
*ops
= info
->fbcon_par
;
650 ops
->p
= &fb_display
[vc
->vc_num
];
652 if ((info
->flags
& FBINFO_MISC_TILEBLITTING
))
653 fbcon_set_tileops(vc
, info
);
655 fbcon_set_rotation(info
);
656 fbcon_set_bitops(ops
);
660 static int fbcon_invalid_charcount(struct fb_info
*info
, unsigned charcount
)
664 if (info
->flags
& FBINFO_MISC_TILEBLITTING
&&
665 info
->tileops
->fb_get_tilemax(info
) < charcount
)
671 static void set_blitting_type(struct vc_data
*vc
, struct fb_info
*info
)
673 struct fbcon_ops
*ops
= info
->fbcon_par
;
675 info
->flags
&= ~FBINFO_MISC_TILEBLITTING
;
676 ops
->p
= &fb_display
[vc
->vc_num
];
677 fbcon_set_rotation(info
);
678 fbcon_set_bitops(ops
);
681 static int fbcon_invalid_charcount(struct fb_info
*info
, unsigned charcount
)
686 #endif /* CONFIG_MISC_TILEBLITTING */
689 static int con2fb_acquire_newinfo(struct vc_data
*vc
, struct fb_info
*info
,
690 int unit
, int oldidx
)
692 struct fbcon_ops
*ops
= NULL
;
695 if (!try_module_get(info
->fbops
->owner
))
698 if (!err
&& info
->fbops
->fb_open
&&
699 info
->fbops
->fb_open(info
, 0))
703 ops
= kzalloc(sizeof(struct fbcon_ops
), GFP_KERNEL
);
709 info
->fbcon_par
= ops
;
712 set_blitting_type(vc
, info
);
716 con2fb_map
[unit
] = oldidx
;
717 module_put(info
->fbops
->owner
);
723 static int con2fb_release_oldinfo(struct vc_data
*vc
, struct fb_info
*oldinfo
,
724 struct fb_info
*newinfo
, int unit
,
725 int oldidx
, int found
)
727 struct fbcon_ops
*ops
= oldinfo
->fbcon_par
;
730 if (oldinfo
->fbops
->fb_release
&&
731 oldinfo
->fbops
->fb_release(oldinfo
, 0)) {
732 con2fb_map
[unit
] = oldidx
;
733 if (!found
&& newinfo
->fbops
->fb_release
)
734 newinfo
->fbops
->fb_release(newinfo
, 0);
736 module_put(newinfo
->fbops
->owner
);
741 fbcon_del_cursor_timer(oldinfo
);
742 kfree(ops
->cursor_state
.mask
);
743 kfree(ops
->cursor_data
);
744 kfree(ops
->fontbuffer
);
745 kfree(oldinfo
->fbcon_par
);
746 oldinfo
->fbcon_par
= NULL
;
747 module_put(oldinfo
->fbops
->owner
);
749 If oldinfo and newinfo are driving the same hardware,
750 the fb_release() method of oldinfo may attempt to
751 restore the hardware state. This will leave the
752 newinfo in an undefined state. Thus, a call to
753 fb_set_par() may be needed for the newinfo.
755 if (newinfo
->fbops
->fb_set_par
)
756 newinfo
->fbops
->fb_set_par(newinfo
);
762 static void con2fb_init_display(struct vc_data
*vc
, struct fb_info
*info
,
763 int unit
, int show_logo
)
765 struct fbcon_ops
*ops
= info
->fbcon_par
;
767 ops
->currcon
= fg_console
;
769 if (info
->fbops
->fb_set_par
&& !(ops
->flags
& FBCON_FLAGS_INIT
))
770 info
->fbops
->fb_set_par(info
);
772 ops
->flags
|= FBCON_FLAGS_INIT
;
774 fbcon_set_disp(info
, &info
->var
, unit
);
777 struct vc_data
*fg_vc
= vc_cons
[fg_console
].d
;
778 struct fb_info
*fg_info
=
779 registered_fb
[con2fb_map
[fg_console
]];
781 fbcon_prepare_logo(fg_vc
, fg_info
, fg_vc
->vc_cols
,
782 fg_vc
->vc_rows
, fg_vc
->vc_cols
,
786 update_screen(vc_cons
[fg_console
].d
);
790 * set_con2fb_map - map console to frame buffer device
791 * @unit: virtual console number to map
792 * @newidx: frame buffer index to map virtual console to
793 * @user: user request
795 * Maps a virtual console @unit to a frame buffer device
798 static int set_con2fb_map(int unit
, int newidx
, int user
)
800 struct vc_data
*vc
= vc_cons
[unit
].d
;
801 int oldidx
= con2fb_map
[unit
];
802 struct fb_info
*info
= registered_fb
[newidx
];
803 struct fb_info
*oldinfo
= NULL
;
806 if (oldidx
== newidx
)
809 if (!info
|| fbcon_has_exited
)
812 if (!err
&& !search_for_mapped_con()) {
814 return fbcon_takeover(0);
818 oldinfo
= registered_fb
[oldidx
];
820 found
= search_fb_in_map(newidx
);
822 acquire_console_sem();
823 con2fb_map
[unit
] = newidx
;
825 err
= con2fb_acquire_newinfo(vc
, info
, unit
, oldidx
);
829 * If old fb is not mapped to any of the consoles,
830 * fbcon should release it.
832 if (!err
&& oldinfo
&& !search_fb_in_map(oldidx
))
833 err
= con2fb_release_oldinfo(vc
, oldinfo
, info
, unit
, oldidx
,
837 int show_logo
= (fg_console
== 0 && !user
&&
838 logo_shown
!= FBCON_LOGO_DONTSHOW
);
841 fbcon_add_cursor_timer(info
);
842 con2fb_map_boot
[unit
] = newidx
;
843 con2fb_init_display(vc
, info
, unit
, show_logo
);
846 if (!search_fb_in_map(info_idx
))
849 release_console_sem();
854 * Low Level Operations
856 /* NOTE: fbcon cannot be __init: it may be called from take_over_console later */
857 static int var_to_display(struct display
*disp
,
858 struct fb_var_screeninfo
*var
,
859 struct fb_info
*info
)
861 disp
->xres_virtual
= var
->xres_virtual
;
862 disp
->yres_virtual
= var
->yres_virtual
;
863 disp
->bits_per_pixel
= var
->bits_per_pixel
;
864 disp
->grayscale
= var
->grayscale
;
865 disp
->nonstd
= var
->nonstd
;
866 disp
->accel_flags
= var
->accel_flags
;
867 disp
->height
= var
->height
;
868 disp
->width
= var
->width
;
869 disp
->red
= var
->red
;
870 disp
->green
= var
->green
;
871 disp
->blue
= var
->blue
;
872 disp
->transp
= var
->transp
;
873 disp
->rotate
= var
->rotate
;
874 disp
->mode
= fb_match_mode(var
, &info
->modelist
);
875 if (disp
->mode
== NULL
)
876 /* This should not happen */
881 static void display_to_var(struct fb_var_screeninfo
*var
,
882 struct display
*disp
)
884 fb_videomode_to_var(var
, disp
->mode
);
885 var
->xres_virtual
= disp
->xres_virtual
;
886 var
->yres_virtual
= disp
->yres_virtual
;
887 var
->bits_per_pixel
= disp
->bits_per_pixel
;
888 var
->grayscale
= disp
->grayscale
;
889 var
->nonstd
= disp
->nonstd
;
890 var
->accel_flags
= disp
->accel_flags
;
891 var
->height
= disp
->height
;
892 var
->width
= disp
->width
;
893 var
->red
= disp
->red
;
894 var
->green
= disp
->green
;
895 var
->blue
= disp
->blue
;
896 var
->transp
= disp
->transp
;
897 var
->rotate
= disp
->rotate
;
900 static const char *fbcon_startup(void)
902 const char *display_desc
= "frame buffer device";
903 struct display
*p
= &fb_display
[fg_console
];
904 struct vc_data
*vc
= vc_cons
[fg_console
].d
;
905 const struct font_desc
*font
= NULL
;
906 struct module
*owner
;
907 struct fb_info
*info
= NULL
;
908 struct fbcon_ops
*ops
;
912 * If num_registered_fb is zero, this is a call for the dummy part.
913 * The frame buffer devices weren't initialized yet.
915 if (!num_registered_fb
|| info_idx
== -1)
918 * Instead of blindly using registered_fb[0], we use info_idx, set by
921 info
= registered_fb
[info_idx
];
925 owner
= info
->fbops
->owner
;
926 if (!try_module_get(owner
))
928 if (info
->fbops
->fb_open
&& info
->fbops
->fb_open(info
, 0)) {
933 ops
= kzalloc(sizeof(struct fbcon_ops
), GFP_KERNEL
);
941 ops
->cur_rotate
= -1;
942 info
->fbcon_par
= ops
;
943 p
->con_rotate
= initial_rotation
;
944 set_blitting_type(vc
, info
);
946 if (info
->fix
.type
!= FB_TYPE_TEXT
) {
947 if (fbcon_softback_size
) {
951 kmalloc(fbcon_softback_size
,
954 fbcon_softback_size
= 0;
960 kfree((void *) softback_buf
);
966 softback_in
= softback_top
= softback_curr
=
971 /* Setup default font */
973 if (!fontname
[0] || !(font
= find_font(fontname
)))
974 font
= get_default_font(info
->var
.xres
,
977 info
->pixmap
.blit_y
);
978 vc
->vc_font
.width
= font
->width
;
979 vc
->vc_font
.height
= font
->height
;
980 vc
->vc_font
.data
= (void *)(p
->fontdata
= font
->data
);
981 vc
->vc_font
.charcount
= 256; /* FIXME Need to support more fonts */
984 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
985 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
986 cols
/= vc
->vc_font
.width
;
987 rows
/= vc
->vc_font
.height
;
988 vc_resize(vc
, cols
, rows
);
990 DPRINTK("mode: %s\n", info
->fix
.id
);
991 DPRINTK("visual: %d\n", info
->fix
.visual
);
992 DPRINTK("res: %dx%d-%d\n", info
->var
.xres
,
994 info
->var
.bits_per_pixel
);
996 fbcon_add_cursor_timer(info
);
997 fbcon_has_exited
= 0;
1001 static void fbcon_init(struct vc_data
*vc
, int init
)
1003 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1004 struct fbcon_ops
*ops
;
1005 struct vc_data
**default_mode
= vc
->vc_display_fg
;
1006 struct vc_data
*svc
= *default_mode
;
1007 struct display
*t
, *p
= &fb_display
[vc
->vc_num
];
1008 int logo
= 1, new_rows
, new_cols
, rows
, cols
, charcnt
= 256;
1011 if (info_idx
== -1 || info
== NULL
)
1016 if (vc
!= svc
|| logo_shown
== FBCON_LOGO_DONTSHOW
||
1017 (info
->fix
.type
== FB_TYPE_TEXT
))
1020 if (var_to_display(p
, &info
->var
, info
))
1023 if (!info
->fbcon_par
)
1024 con2fb_acquire_newinfo(vc
, info
, vc
->vc_num
, -1);
1026 /* If we are not the first console on this
1027 fb, copy the font from that console */
1028 t
= &fb_display
[fg_console
];
1031 struct vc_data
*fvc
= vc_cons
[fg_console
].d
;
1033 vc
->vc_font
.data
= (void *)(p
->fontdata
=
1035 vc
->vc_font
.width
= fvc
->vc_font
.width
;
1036 vc
->vc_font
.height
= fvc
->vc_font
.height
;
1037 p
->userfont
= t
->userfont
;
1040 REFCOUNT(p
->fontdata
)++;
1042 const struct font_desc
*font
= NULL
;
1044 if (!fontname
[0] || !(font
= find_font(fontname
)))
1045 font
= get_default_font(info
->var
.xres
,
1047 info
->pixmap
.blit_x
,
1048 info
->pixmap
.blit_y
);
1049 vc
->vc_font
.width
= font
->width
;
1050 vc
->vc_font
.height
= font
->height
;
1051 vc
->vc_font
.data
= (void *)(p
->fontdata
= font
->data
);
1052 vc
->vc_font
.charcount
= 256; /* FIXME Need to
1053 support more fonts */
1058 charcnt
= FNTCHARCNT(p
->fontdata
);
1060 vc
->vc_can_do_color
= (fb_get_color_depth(&info
->var
, &info
->fix
)!=1);
1061 vc
->vc_complement_mask
= vc
->vc_can_do_color
? 0x7700 : 0x0800;
1062 if (charcnt
== 256) {
1063 vc
->vc_hi_font_mask
= 0;
1065 vc
->vc_hi_font_mask
= 0x100;
1066 if (vc
->vc_can_do_color
)
1067 vc
->vc_complement_mask
<<= 1;
1070 if (!*svc
->vc_uni_pagedir_loc
)
1071 con_set_default_unimap(svc
);
1072 if (!*vc
->vc_uni_pagedir_loc
)
1073 con_copy_unimap(vc
, svc
);
1075 ops
= info
->fbcon_par
;
1076 p
->con_rotate
= initial_rotation
;
1077 set_blitting_type(vc
, info
);
1081 new_cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
1082 new_rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
1083 new_cols
/= vc
->vc_font
.width
;
1084 new_rows
/= vc
->vc_font
.height
;
1085 vc_resize(vc
, new_cols
, new_rows
);
1088 * We must always set the mode. The mode of the previous console
1089 * driver could be in the same resolution but we are using different
1090 * hardware so we have to initialize the hardware.
1092 * We need to do it in fbcon_init() to prevent screen corruption.
1094 if (CON_IS_VISIBLE(vc
) && vc
->vc_mode
== KD_TEXT
) {
1095 if (info
->fbops
->fb_set_par
&&
1096 !(ops
->flags
& FBCON_FLAGS_INIT
))
1097 info
->fbops
->fb_set_par(info
);
1098 ops
->flags
|= FBCON_FLAGS_INIT
;
1103 if ((cap
& FBINFO_HWACCEL_COPYAREA
) &&
1104 !(cap
& FBINFO_HWACCEL_DISABLED
))
1105 p
->scrollmode
= SCROLL_MOVE
;
1106 else /* default to something safe */
1107 p
->scrollmode
= SCROLL_REDRAW
;
1110 * ++guenther: console.c:vc_allocate() relies on initializing
1111 * vc_{cols,rows}, but we must not set those if we are only
1112 * resizing the console.
1115 vc
->vc_cols
= new_cols
;
1116 vc
->vc_rows
= new_rows
;
1120 fbcon_prepare_logo(vc
, info
, cols
, rows
, new_cols
, new_rows
);
1122 if (vc
== svc
&& softback_buf
)
1123 fbcon_update_softback(vc
);
1125 if (ops
->rotate_font
&& ops
->rotate_font(info
, vc
)) {
1126 ops
->rotate
= FB_ROTATE_UR
;
1127 set_blitting_type(vc
, info
);
1130 ops
->p
= &fb_display
[fg_console
];
1133 static void fbcon_free_font(struct display
*p
)
1135 if (p
->userfont
&& p
->fontdata
&& (--REFCOUNT(p
->fontdata
) == 0))
1136 kfree(p
->fontdata
- FONT_EXTRA_WORDS
* sizeof(int));
1141 static void fbcon_deinit(struct vc_data
*vc
)
1143 struct display
*p
= &fb_display
[vc
->vc_num
];
1144 struct fb_info
*info
;
1145 struct fbcon_ops
*ops
;
1149 idx
= con2fb_map
[vc
->vc_num
];
1154 info
= registered_fb
[idx
];
1159 ops
= info
->fbcon_par
;
1164 if (CON_IS_VISIBLE(vc
))
1165 fbcon_del_cursor_timer(info
);
1167 ops
->flags
&= ~FBCON_FLAGS_INIT
;
1170 if (!con_is_bound(&fb_con
))
1176 /* ====================================================================== */
1178 /* fbcon_XXX routines - interface used by the world
1180 * This system is now divided into two levels because of complications
1181 * caused by hardware scrolling. Top level functions:
1183 * fbcon_bmove(), fbcon_clear(), fbcon_putc(), fbcon_clear_margins()
1185 * handles y values in range [0, scr_height-1] that correspond to real
1186 * screen positions. y_wrap shift means that first line of bitmap may be
1187 * anywhere on this display. These functions convert lineoffsets to
1188 * bitmap offsets and deal with the wrap-around case by splitting blits.
1190 * fbcon_bmove_physical_8() -- These functions fast implementations
1191 * fbcon_clear_physical_8() -- of original fbcon_XXX fns.
1192 * fbcon_putc_physical_8() -- (font width != 8) may be added later
1196 * At the moment fbcon_putc() cannot blit across vertical wrap boundary
1197 * Implies should only really hardware scroll in rows. Only reason for
1198 * restriction is simplicity & efficiency at the moment.
1201 static void fbcon_clear(struct vc_data
*vc
, int sy
, int sx
, int height
,
1204 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1205 struct fbcon_ops
*ops
= info
->fbcon_par
;
1207 struct display
*p
= &fb_display
[vc
->vc_num
];
1210 if (fbcon_is_inactive(vc
, info
))
1213 if (!height
|| !width
)
1216 if (sy
< vc
->vc_top
&& vc
->vc_top
== logo_lines
)
1219 /* Split blits that cross physical y_wrap boundary */
1221 y_break
= p
->vrows
- p
->yscroll
;
1222 if (sy
< y_break
&& sy
+ height
- 1 >= y_break
) {
1223 u_int b
= y_break
- sy
;
1224 ops
->clear(vc
, info
, real_y(p
, sy
), sx
, b
, width
);
1225 ops
->clear(vc
, info
, real_y(p
, sy
+ b
), sx
, height
- b
,
1228 ops
->clear(vc
, info
, real_y(p
, sy
), sx
, height
, width
);
1231 static void fbcon_putcs(struct vc_data
*vc
, const unsigned short *s
,
1232 int count
, int ypos
, int xpos
)
1234 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1235 struct display
*p
= &fb_display
[vc
->vc_num
];
1236 struct fbcon_ops
*ops
= info
->fbcon_par
;
1238 if (!fbcon_is_inactive(vc
, info
))
1239 ops
->putcs(vc
, info
, s
, count
, real_y(p
, ypos
), xpos
,
1240 get_color(vc
, info
, scr_readw(s
), 1),
1241 get_color(vc
, info
, scr_readw(s
), 0));
1244 static void fbcon_putc(struct vc_data
*vc
, int c
, int ypos
, int xpos
)
1248 scr_writew(c
, &chr
);
1249 fbcon_putcs(vc
, &chr
, 1, ypos
, xpos
);
1252 static void fbcon_clear_margins(struct vc_data
*vc
, int bottom_only
)
1254 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1255 struct fbcon_ops
*ops
= info
->fbcon_par
;
1257 if (!fbcon_is_inactive(vc
, info
))
1258 ops
->clear_margins(vc
, info
, bottom_only
);
1261 static void fbcon_cursor(struct vc_data
*vc
, int mode
)
1263 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1264 struct fbcon_ops
*ops
= info
->fbcon_par
;
1266 int c
= scr_readw((u16
*) vc
->vc_pos
);
1268 if (fbcon_is_inactive(vc
, info
) || vc
->vc_deccm
!= 1)
1271 if (vc
->vc_cursor_type
& 0x10)
1272 fbcon_del_cursor_timer(info
);
1274 fbcon_add_cursor_timer(info
);
1276 ops
->cursor_flash
= (mode
== CM_ERASE
) ? 0 : 1;
1277 if (mode
& CM_SOFTBACK
) {
1278 mode
&= ~CM_SOFTBACK
;
1282 fbcon_set_origin(vc
);
1286 ops
->cursor(vc
, info
, mode
, y
, get_color(vc
, info
, c
, 1),
1287 get_color(vc
, info
, c
, 0));
1288 vbl_cursor_cnt
= CURSOR_DRAW_DELAY
;
1291 static int scrollback_phys_max
= 0;
1292 static int scrollback_max
= 0;
1293 static int scrollback_current
= 0;
1295 static void fbcon_set_disp(struct fb_info
*info
, struct fb_var_screeninfo
*var
,
1298 struct display
*p
, *t
;
1299 struct vc_data
**default_mode
, *vc
;
1300 struct vc_data
*svc
;
1301 struct fbcon_ops
*ops
= info
->fbcon_par
;
1302 int rows
, cols
, charcnt
= 256;
1304 p
= &fb_display
[unit
];
1306 if (var_to_display(p
, var
, info
))
1309 vc
= vc_cons
[unit
].d
;
1314 default_mode
= vc
->vc_display_fg
;
1315 svc
= *default_mode
;
1316 t
= &fb_display
[svc
->vc_num
];
1318 if (!vc
->vc_font
.data
) {
1319 vc
->vc_font
.data
= (void *)(p
->fontdata
= t
->fontdata
);
1320 vc
->vc_font
.width
= (*default_mode
)->vc_font
.width
;
1321 vc
->vc_font
.height
= (*default_mode
)->vc_font
.height
;
1322 p
->userfont
= t
->userfont
;
1324 REFCOUNT(p
->fontdata
)++;
1327 charcnt
= FNTCHARCNT(p
->fontdata
);
1329 var
->activate
= FB_ACTIVATE_NOW
;
1330 info
->var
.activate
= var
->activate
;
1331 var
->yoffset
= info
->var
.yoffset
;
1332 var
->xoffset
= info
->var
.xoffset
;
1333 fb_set_var(info
, var
);
1334 ops
->var
= info
->var
;
1335 vc
->vc_can_do_color
= (fb_get_color_depth(&info
->var
, &info
->fix
)!=1);
1336 vc
->vc_complement_mask
= vc
->vc_can_do_color
? 0x7700 : 0x0800;
1337 if (charcnt
== 256) {
1338 vc
->vc_hi_font_mask
= 0;
1340 vc
->vc_hi_font_mask
= 0x100;
1341 if (vc
->vc_can_do_color
)
1342 vc
->vc_complement_mask
<<= 1;
1345 if (!*svc
->vc_uni_pagedir_loc
)
1346 con_set_default_unimap(svc
);
1347 if (!*vc
->vc_uni_pagedir_loc
)
1348 con_copy_unimap(vc
, svc
);
1350 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
1351 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
1352 cols
/= vc
->vc_font
.width
;
1353 rows
/= vc
->vc_font
.height
;
1354 vc_resize(vc
, cols
, rows
);
1356 if (CON_IS_VISIBLE(vc
)) {
1359 fbcon_update_softback(vc
);
1363 static __inline__
void ywrap_up(struct vc_data
*vc
, int count
)
1365 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1366 struct fbcon_ops
*ops
= info
->fbcon_par
;
1367 struct display
*p
= &fb_display
[vc
->vc_num
];
1369 p
->yscroll
+= count
;
1370 if (p
->yscroll
>= p
->vrows
) /* Deal with wrap */
1371 p
->yscroll
-= p
->vrows
;
1372 ops
->var
.xoffset
= 0;
1373 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1374 ops
->var
.vmode
|= FB_VMODE_YWRAP
;
1375 ops
->update_start(info
);
1376 scrollback_max
+= count
;
1377 if (scrollback_max
> scrollback_phys_max
)
1378 scrollback_max
= scrollback_phys_max
;
1379 scrollback_current
= 0;
1382 static __inline__
void ywrap_down(struct vc_data
*vc
, int count
)
1384 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1385 struct fbcon_ops
*ops
= info
->fbcon_par
;
1386 struct display
*p
= &fb_display
[vc
->vc_num
];
1388 p
->yscroll
-= count
;
1389 if (p
->yscroll
< 0) /* Deal with wrap */
1390 p
->yscroll
+= p
->vrows
;
1391 ops
->var
.xoffset
= 0;
1392 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1393 ops
->var
.vmode
|= FB_VMODE_YWRAP
;
1394 ops
->update_start(info
);
1395 scrollback_max
-= count
;
1396 if (scrollback_max
< 0)
1398 scrollback_current
= 0;
1401 static __inline__
void ypan_up(struct vc_data
*vc
, int count
)
1403 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1404 struct display
*p
= &fb_display
[vc
->vc_num
];
1405 struct fbcon_ops
*ops
= info
->fbcon_par
;
1407 p
->yscroll
+= count
;
1408 if (p
->yscroll
> p
->vrows
- vc
->vc_rows
) {
1409 ops
->bmove(vc
, info
, p
->vrows
- vc
->vc_rows
,
1410 0, 0, 0, vc
->vc_rows
, vc
->vc_cols
);
1411 p
->yscroll
-= p
->vrows
- vc
->vc_rows
;
1414 ops
->var
.xoffset
= 0;
1415 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1416 ops
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1417 ops
->update_start(info
);
1418 fbcon_clear_margins(vc
, 1);
1419 scrollback_max
+= count
;
1420 if (scrollback_max
> scrollback_phys_max
)
1421 scrollback_max
= scrollback_phys_max
;
1422 scrollback_current
= 0;
1425 static __inline__
void ypan_up_redraw(struct vc_data
*vc
, int t
, int count
)
1427 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1428 struct fbcon_ops
*ops
= info
->fbcon_par
;
1429 struct display
*p
= &fb_display
[vc
->vc_num
];
1431 p
->yscroll
+= count
;
1433 if (p
->yscroll
> p
->vrows
- vc
->vc_rows
) {
1434 p
->yscroll
-= p
->vrows
- vc
->vc_rows
;
1435 fbcon_redraw_move(vc
, p
, t
+ count
, vc
->vc_rows
- count
, t
);
1438 ops
->var
.xoffset
= 0;
1439 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1440 ops
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1441 ops
->update_start(info
);
1442 fbcon_clear_margins(vc
, 1);
1443 scrollback_max
+= count
;
1444 if (scrollback_max
> scrollback_phys_max
)
1445 scrollback_max
= scrollback_phys_max
;
1446 scrollback_current
= 0;
1449 static __inline__
void ypan_down(struct vc_data
*vc
, int count
)
1451 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1452 struct display
*p
= &fb_display
[vc
->vc_num
];
1453 struct fbcon_ops
*ops
= info
->fbcon_par
;
1455 p
->yscroll
-= count
;
1456 if (p
->yscroll
< 0) {
1457 ops
->bmove(vc
, info
, 0, 0, p
->vrows
- vc
->vc_rows
,
1458 0, vc
->vc_rows
, vc
->vc_cols
);
1459 p
->yscroll
+= p
->vrows
- vc
->vc_rows
;
1462 ops
->var
.xoffset
= 0;
1463 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1464 ops
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1465 ops
->update_start(info
);
1466 fbcon_clear_margins(vc
, 1);
1467 scrollback_max
-= count
;
1468 if (scrollback_max
< 0)
1470 scrollback_current
= 0;
1473 static __inline__
void ypan_down_redraw(struct vc_data
*vc
, int t
, int count
)
1475 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1476 struct fbcon_ops
*ops
= info
->fbcon_par
;
1477 struct display
*p
= &fb_display
[vc
->vc_num
];
1479 p
->yscroll
-= count
;
1481 if (p
->yscroll
< 0) {
1482 p
->yscroll
+= p
->vrows
- vc
->vc_rows
;
1483 fbcon_redraw_move(vc
, p
, t
, vc
->vc_rows
- count
, t
+ count
);
1486 ops
->var
.xoffset
= 0;
1487 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1488 ops
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1489 ops
->update_start(info
);
1490 fbcon_clear_margins(vc
, 1);
1491 scrollback_max
-= count
;
1492 if (scrollback_max
< 0)
1494 scrollback_current
= 0;
1497 static void fbcon_redraw_softback(struct vc_data
*vc
, struct display
*p
,
1500 int count
= vc
->vc_rows
;
1501 unsigned short *d
, *s
;
1505 d
= (u16
*) softback_curr
;
1506 if (d
== (u16
*) softback_in
)
1507 d
= (u16
*) vc
->vc_origin
;
1508 n
= softback_curr
+ delta
* vc
->vc_size_row
;
1509 softback_lines
-= delta
;
1511 if (softback_curr
< softback_top
&& n
< softback_buf
) {
1512 n
+= softback_end
- softback_buf
;
1513 if (n
< softback_top
) {
1515 (softback_top
- n
) / vc
->vc_size_row
;
1518 } else if (softback_curr
>= softback_top
1519 && n
< softback_top
) {
1521 (softback_top
- n
) / vc
->vc_size_row
;
1525 if (softback_curr
> softback_in
&& n
>= softback_end
) {
1526 n
+= softback_buf
- softback_end
;
1527 if (n
> softback_in
) {
1531 } else if (softback_curr
<= softback_in
&& n
> softback_in
) {
1536 if (n
== softback_curr
)
1539 s
= (u16
*) softback_curr
;
1540 if (s
== (u16
*) softback_in
)
1541 s
= (u16
*) vc
->vc_origin
;
1543 unsigned short *start
;
1547 unsigned short attr
= 1;
1550 le
= advance_row(s
, 1);
1553 if (attr
!= (c
& 0xff00)) {
1556 fbcon_putcs(vc
, start
, s
- start
,
1562 if (c
== scr_readw(d
)) {
1564 fbcon_putcs(vc
, start
, s
- start
,
1577 fbcon_putcs(vc
, start
, s
- start
, line
, x
);
1579 if (d
== (u16
*) softback_end
)
1580 d
= (u16
*) softback_buf
;
1581 if (d
== (u16
*) softback_in
)
1582 d
= (u16
*) vc
->vc_origin
;
1583 if (s
== (u16
*) softback_end
)
1584 s
= (u16
*) softback_buf
;
1585 if (s
== (u16
*) softback_in
)
1586 s
= (u16
*) vc
->vc_origin
;
1590 static void fbcon_redraw_move(struct vc_data
*vc
, struct display
*p
,
1591 int line
, int count
, int dy
)
1593 unsigned short *s
= (unsigned short *)
1594 (vc
->vc_origin
+ vc
->vc_size_row
* line
);
1597 unsigned short *start
= s
;
1598 unsigned short *le
= advance_row(s
, 1);
1601 unsigned short attr
= 1;
1605 if (attr
!= (c
& 0xff00)) {
1608 fbcon_putcs(vc
, start
, s
- start
,
1614 console_conditional_schedule();
1618 fbcon_putcs(vc
, start
, s
- start
, dy
, x
);
1619 console_conditional_schedule();
1624 static void fbcon_redraw_blit(struct vc_data
*vc
, struct fb_info
*info
,
1625 struct display
*p
, int line
, int count
, int ycount
)
1627 int offset
= ycount
* vc
->vc_cols
;
1628 unsigned short *d
= (unsigned short *)
1629 (vc
->vc_origin
+ vc
->vc_size_row
* line
);
1630 unsigned short *s
= d
+ offset
;
1631 struct fbcon_ops
*ops
= info
->fbcon_par
;
1634 unsigned short *start
= s
;
1635 unsigned short *le
= advance_row(s
, 1);
1642 if (c
== scr_readw(d
)) {
1644 ops
->bmove(vc
, info
, line
+ ycount
, x
,
1645 line
, x
, 1, s
-start
);
1655 console_conditional_schedule();
1660 ops
->bmove(vc
, info
, line
+ ycount
, x
, line
, x
, 1,
1662 console_conditional_schedule();
1667 /* NOTE: We subtract two lines from these pointers */
1668 s
-= vc
->vc_size_row
;
1669 d
-= vc
->vc_size_row
;
1674 static void fbcon_redraw(struct vc_data
*vc
, struct display
*p
,
1675 int line
, int count
, int offset
)
1677 unsigned short *d
= (unsigned short *)
1678 (vc
->vc_origin
+ vc
->vc_size_row
* line
);
1679 unsigned short *s
= d
+ offset
;
1682 unsigned short *start
= s
;
1683 unsigned short *le
= advance_row(s
, 1);
1686 unsigned short attr
= 1;
1690 if (attr
!= (c
& 0xff00)) {
1693 fbcon_putcs(vc
, start
, s
- start
,
1699 if (c
== scr_readw(d
)) {
1701 fbcon_putcs(vc
, start
, s
- start
,
1711 console_conditional_schedule();
1716 fbcon_putcs(vc
, start
, s
- start
, line
, x
);
1717 console_conditional_schedule();
1722 /* NOTE: We subtract two lines from these pointers */
1723 s
-= vc
->vc_size_row
;
1724 d
-= vc
->vc_size_row
;
1729 static inline void fbcon_softback_note(struct vc_data
*vc
, int t
,
1734 if (vc
->vc_num
!= fg_console
)
1736 p
= (unsigned short *) (vc
->vc_origin
+ t
* vc
->vc_size_row
);
1739 scr_memcpyw((u16
*) softback_in
, p
, vc
->vc_size_row
);
1741 p
= advance_row(p
, 1);
1742 softback_in
+= vc
->vc_size_row
;
1743 if (softback_in
== softback_end
)
1744 softback_in
= softback_buf
;
1745 if (softback_in
== softback_top
) {
1746 softback_top
+= vc
->vc_size_row
;
1747 if (softback_top
== softback_end
)
1748 softback_top
= softback_buf
;
1751 softback_curr
= softback_in
;
1754 static int fbcon_scroll(struct vc_data
*vc
, int t
, int b
, int dir
,
1757 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1758 struct display
*p
= &fb_display
[vc
->vc_num
];
1759 int scroll_partial
= info
->flags
& FBINFO_PARTIAL_PAN_OK
;
1761 if (fbcon_is_inactive(vc
, info
))
1764 fbcon_cursor(vc
, CM_ERASE
);
1767 * ++Geert: Only use ywrap/ypan if the console is in text mode
1768 * ++Andrew: Only use ypan on hardware text mode when scrolling the
1769 * whole screen (prevents flicker).
1774 if (count
> vc
->vc_rows
) /* Maximum realistic size */
1775 count
= vc
->vc_rows
;
1777 fbcon_softback_note(vc
, t
, count
);
1778 if (logo_shown
>= 0)
1780 switch (p
->scrollmode
) {
1782 fbcon_redraw_blit(vc
, info
, p
, t
, b
- t
- count
,
1784 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1785 scr_memsetw((unsigned short *) (vc
->vc_origin
+
1788 vc
->vc_video_erase_char
,
1789 vc
->vc_size_row
* count
);
1793 case SCROLL_WRAP_MOVE
:
1794 if (b
- t
- count
> 3 * vc
->vc_rows
>> 2) {
1796 fbcon_bmove(vc
, 0, 0, count
, 0, t
,
1798 ywrap_up(vc
, count
);
1799 if (vc
->vc_rows
- b
> 0)
1800 fbcon_bmove(vc
, b
- count
, 0, b
, 0,
1803 } else if (info
->flags
& FBINFO_READS_FAST
)
1804 fbcon_bmove(vc
, t
+ count
, 0, t
, 0,
1805 b
- t
- count
, vc
->vc_cols
);
1808 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1811 case SCROLL_PAN_REDRAW
:
1812 if ((p
->yscroll
+ count
<=
1813 2 * (p
->vrows
- vc
->vc_rows
))
1814 && ((!scroll_partial
&& (b
- t
== vc
->vc_rows
))
1817 3 * vc
->vc_rows
>> 2)))) {
1819 fbcon_redraw_move(vc
, p
, 0, t
, count
);
1820 ypan_up_redraw(vc
, t
, count
);
1821 if (vc
->vc_rows
- b
> 0)
1822 fbcon_redraw_move(vc
, p
, b
,
1823 vc
->vc_rows
- b
, b
);
1825 fbcon_redraw_move(vc
, p
, t
+ count
, b
- t
- count
, t
);
1826 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1829 case SCROLL_PAN_MOVE
:
1830 if ((p
->yscroll
+ count
<=
1831 2 * (p
->vrows
- vc
->vc_rows
))
1832 && ((!scroll_partial
&& (b
- t
== vc
->vc_rows
))
1835 3 * vc
->vc_rows
>> 2)))) {
1837 fbcon_bmove(vc
, 0, 0, count
, 0, t
,
1840 if (vc
->vc_rows
- b
> 0)
1841 fbcon_bmove(vc
, b
- count
, 0, b
, 0,
1844 } else if (info
->flags
& FBINFO_READS_FAST
)
1845 fbcon_bmove(vc
, t
+ count
, 0, t
, 0,
1846 b
- t
- count
, vc
->vc_cols
);
1849 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1854 fbcon_redraw(vc
, p
, t
, b
- t
- count
,
1855 count
* vc
->vc_cols
);
1856 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1857 scr_memsetw((unsigned short *) (vc
->vc_origin
+
1860 vc
->vc_video_erase_char
,
1861 vc
->vc_size_row
* count
);
1867 if (count
> vc
->vc_rows
) /* Maximum realistic size */
1868 count
= vc
->vc_rows
;
1869 if (logo_shown
>= 0)
1871 switch (p
->scrollmode
) {
1873 fbcon_redraw_blit(vc
, info
, p
, b
- 1, b
- t
- count
,
1875 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
1876 scr_memsetw((unsigned short *) (vc
->vc_origin
+
1879 vc
->vc_video_erase_char
,
1880 vc
->vc_size_row
* count
);
1884 case SCROLL_WRAP_MOVE
:
1885 if (b
- t
- count
> 3 * vc
->vc_rows
>> 2) {
1886 if (vc
->vc_rows
- b
> 0)
1887 fbcon_bmove(vc
, b
, 0, b
- count
, 0,
1890 ywrap_down(vc
, count
);
1892 fbcon_bmove(vc
, count
, 0, 0, 0, t
,
1894 } else if (info
->flags
& FBINFO_READS_FAST
)
1895 fbcon_bmove(vc
, t
, 0, t
+ count
, 0,
1896 b
- t
- count
, vc
->vc_cols
);
1899 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
1902 case SCROLL_PAN_MOVE
:
1903 if ((count
- p
->yscroll
<= p
->vrows
- vc
->vc_rows
)
1904 && ((!scroll_partial
&& (b
- t
== vc
->vc_rows
))
1907 3 * vc
->vc_rows
>> 2)))) {
1908 if (vc
->vc_rows
- b
> 0)
1909 fbcon_bmove(vc
, b
, 0, b
- count
, 0,
1912 ypan_down(vc
, count
);
1914 fbcon_bmove(vc
, count
, 0, 0, 0, t
,
1916 } else if (info
->flags
& FBINFO_READS_FAST
)
1917 fbcon_bmove(vc
, t
, 0, t
+ count
, 0,
1918 b
- t
- count
, vc
->vc_cols
);
1921 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
1924 case SCROLL_PAN_REDRAW
:
1925 if ((count
- p
->yscroll
<= p
->vrows
- vc
->vc_rows
)
1926 && ((!scroll_partial
&& (b
- t
== vc
->vc_rows
))
1929 3 * vc
->vc_rows
>> 2)))) {
1930 if (vc
->vc_rows
- b
> 0)
1931 fbcon_redraw_move(vc
, p
, b
, vc
->vc_rows
- b
,
1933 ypan_down_redraw(vc
, t
, count
);
1935 fbcon_redraw_move(vc
, p
, count
, t
, 0);
1937 fbcon_redraw_move(vc
, p
, t
, b
- t
- count
, t
+ count
);
1938 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
1943 fbcon_redraw(vc
, p
, b
- 1, b
- t
- count
,
1944 -count
* vc
->vc_cols
);
1945 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
1946 scr_memsetw((unsigned short *) (vc
->vc_origin
+
1949 vc
->vc_video_erase_char
,
1950 vc
->vc_size_row
* count
);
1958 static void fbcon_bmove(struct vc_data
*vc
, int sy
, int sx
, int dy
, int dx
,
1959 int height
, int width
)
1961 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1962 struct display
*p
= &fb_display
[vc
->vc_num
];
1964 if (fbcon_is_inactive(vc
, info
))
1967 if (!width
|| !height
)
1970 /* Split blits that cross physical y_wrap case.
1971 * Pathological case involves 4 blits, better to use recursive
1972 * code rather than unrolled case
1974 * Recursive invocations don't need to erase the cursor over and
1975 * over again, so we use fbcon_bmove_rec()
1977 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, height
, width
,
1978 p
->vrows
- p
->yscroll
);
1981 static void fbcon_bmove_rec(struct vc_data
*vc
, struct display
*p
, int sy
, int sx
,
1982 int dy
, int dx
, int height
, int width
, u_int y_break
)
1984 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1985 struct fbcon_ops
*ops
= info
->fbcon_par
;
1988 if (sy
< y_break
&& sy
+ height
> y_break
) {
1990 if (dy
< sy
) { /* Avoid trashing self */
1991 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, b
, width
,
1993 fbcon_bmove_rec(vc
, p
, sy
+ b
, sx
, dy
+ b
, dx
,
1994 height
- b
, width
, y_break
);
1996 fbcon_bmove_rec(vc
, p
, sy
+ b
, sx
, dy
+ b
, dx
,
1997 height
- b
, width
, y_break
);
1998 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, b
, width
,
2004 if (dy
< y_break
&& dy
+ height
> y_break
) {
2006 if (dy
< sy
) { /* Avoid trashing self */
2007 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, b
, width
,
2009 fbcon_bmove_rec(vc
, p
, sy
+ b
, sx
, dy
+ b
, dx
,
2010 height
- b
, width
, y_break
);
2012 fbcon_bmove_rec(vc
, p
, sy
+ b
, sx
, dy
+ b
, dx
,
2013 height
- b
, width
, y_break
);
2014 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, b
, width
,
2019 ops
->bmove(vc
, info
, real_y(p
, sy
), sx
, real_y(p
, dy
), dx
,
2023 static void updatescrollmode(struct display
*p
,
2024 struct fb_info
*info
,
2027 struct fbcon_ops
*ops
= info
->fbcon_par
;
2028 int fh
= vc
->vc_font
.height
;
2029 int cap
= info
->flags
;
2031 int ypan
= FBCON_SWAP(ops
->rotate
, info
->fix
.ypanstep
,
2032 info
->fix
.xpanstep
);
2033 int ywrap
= FBCON_SWAP(ops
->rotate
, info
->fix
.ywrapstep
, t
);
2034 int yres
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
2035 int vyres
= FBCON_SWAP(ops
->rotate
, info
->var
.yres_virtual
,
2036 info
->var
.xres_virtual
);
2037 int good_pan
= (cap
& FBINFO_HWACCEL_YPAN
) &&
2038 divides(ypan
, vc
->vc_font
.height
) && vyres
> yres
;
2039 int good_wrap
= (cap
& FBINFO_HWACCEL_YWRAP
) &&
2040 divides(ywrap
, vc
->vc_font
.height
) &&
2041 divides(vc
->vc_font
.height
, vyres
) &&
2042 divides(vc
->vc_font
.height
, yres
);
2043 int reading_fast
= cap
& FBINFO_READS_FAST
;
2044 int fast_copyarea
= (cap
& FBINFO_HWACCEL_COPYAREA
) &&
2045 !(cap
& FBINFO_HWACCEL_DISABLED
);
2046 int fast_imageblit
= (cap
& FBINFO_HWACCEL_IMAGEBLIT
) &&
2047 !(cap
& FBINFO_HWACCEL_DISABLED
);
2049 p
->vrows
= vyres
/fh
;
2050 if (yres
> (fh
* (vc
->vc_rows
+ 1)))
2051 p
->vrows
-= (yres
- (fh
* vc
->vc_rows
)) / fh
;
2052 if ((yres
% fh
) && (vyres
% fh
< yres
% fh
))
2055 if (good_wrap
|| good_pan
) {
2056 if (reading_fast
|| fast_copyarea
)
2057 p
->scrollmode
= good_wrap
?
2058 SCROLL_WRAP_MOVE
: SCROLL_PAN_MOVE
;
2060 p
->scrollmode
= good_wrap
? SCROLL_REDRAW
:
2063 if (reading_fast
|| (fast_copyarea
&& !fast_imageblit
))
2064 p
->scrollmode
= SCROLL_MOVE
;
2066 p
->scrollmode
= SCROLL_REDRAW
;
2070 static int fbcon_resize(struct vc_data
*vc
, unsigned int width
,
2071 unsigned int height
, unsigned int user
)
2073 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2074 struct fbcon_ops
*ops
= info
->fbcon_par
;
2075 struct display
*p
= &fb_display
[vc
->vc_num
];
2076 struct fb_var_screeninfo var
= info
->var
;
2077 int x_diff
, y_diff
, virt_w
, virt_h
, virt_fw
, virt_fh
;
2079 virt_w
= FBCON_SWAP(ops
->rotate
, width
, height
);
2080 virt_h
= FBCON_SWAP(ops
->rotate
, height
, width
);
2081 virt_fw
= FBCON_SWAP(ops
->rotate
, vc
->vc_font
.width
,
2082 vc
->vc_font
.height
);
2083 virt_fh
= FBCON_SWAP(ops
->rotate
, vc
->vc_font
.height
,
2085 var
.xres
= virt_w
* virt_fw
;
2086 var
.yres
= virt_h
* virt_fh
;
2087 x_diff
= info
->var
.xres
- var
.xres
;
2088 y_diff
= info
->var
.yres
- var
.yres
;
2089 if (x_diff
< 0 || x_diff
> virt_fw
||
2090 y_diff
< 0 || y_diff
> virt_fh
) {
2091 const struct fb_videomode
*mode
;
2093 DPRINTK("attempting resize %ix%i\n", var
.xres
, var
.yres
);
2094 mode
= fb_find_best_mode(&var
, &info
->modelist
);
2097 display_to_var(&var
, p
);
2098 fb_videomode_to_var(&var
, mode
);
2100 if (virt_w
> var
.xres
/virt_fw
|| virt_h
> var
.yres
/virt_fh
)
2103 DPRINTK("resize now %ix%i\n", var
.xres
, var
.yres
);
2104 if (CON_IS_VISIBLE(vc
)) {
2105 var
.activate
= FB_ACTIVATE_NOW
|
2107 fb_set_var(info
, &var
);
2109 var_to_display(p
, &info
->var
, info
);
2110 ops
->var
= info
->var
;
2112 updatescrollmode(p
, info
, vc
);
2116 static int fbcon_switch(struct vc_data
*vc
)
2118 struct fb_info
*info
, *old_info
= NULL
;
2119 struct fbcon_ops
*ops
;
2120 struct display
*p
= &fb_display
[vc
->vc_num
];
2121 struct fb_var_screeninfo var
;
2122 int i
, prev_console
, charcnt
= 256;
2124 info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2125 ops
= info
->fbcon_par
;
2129 fbcon_set_origin(vc
);
2130 softback_top
= softback_curr
= softback_in
= softback_buf
;
2132 fbcon_update_softback(vc
);
2135 if (logo_shown
>= 0) {
2136 struct vc_data
*conp2
= vc_cons
[logo_shown
].d
;
2138 if (conp2
->vc_top
== logo_lines
2139 && conp2
->vc_bottom
== conp2
->vc_rows
)
2141 logo_shown
= FBCON_LOGO_CANSHOW
;
2144 prev_console
= ops
->currcon
;
2145 if (prev_console
!= -1)
2146 old_info
= registered_fb
[con2fb_map
[prev_console
]];
2148 * FIXME: If we have multiple fbdev's loaded, we need to
2149 * update all info->currcon. Perhaps, we can place this
2150 * in a centralized structure, but this might break some
2153 * info->currcon = vc->vc_num;
2155 for (i
= 0; i
< FB_MAX
; i
++) {
2156 if (registered_fb
[i
] != NULL
&& registered_fb
[i
]->fbcon_par
) {
2157 struct fbcon_ops
*o
= registered_fb
[i
]->fbcon_par
;
2159 o
->currcon
= vc
->vc_num
;
2162 memset(&var
, 0, sizeof(struct fb_var_screeninfo
));
2163 display_to_var(&var
, p
);
2164 var
.activate
= FB_ACTIVATE_NOW
;
2167 * make sure we don't unnecessarily trip the memcmp()
2170 info
->var
.activate
= var
.activate
;
2171 var
.vmode
|= info
->var
.vmode
& ~FB_VMODE_MASK
;
2172 fb_set_var(info
, &var
);
2173 ops
->var
= info
->var
;
2175 if (old_info
!= NULL
&& (old_info
!= info
||
2176 info
->flags
& FBINFO_MISC_ALWAYS_SETPAR
)) {
2177 if (info
->fbops
->fb_set_par
)
2178 info
->fbops
->fb_set_par(info
);
2180 if (old_info
!= info
)
2181 fbcon_del_cursor_timer(old_info
);
2184 if (fbcon_is_inactive(vc
, info
) ||
2185 ops
->blank_state
!= FB_BLANK_UNBLANK
)
2186 fbcon_del_cursor_timer(info
);
2188 fbcon_add_cursor_timer(info
);
2190 set_blitting_type(vc
, info
);
2191 ops
->cursor_reset
= 1;
2193 if (ops
->rotate_font
&& ops
->rotate_font(info
, vc
)) {
2194 ops
->rotate
= FB_ROTATE_UR
;
2195 set_blitting_type(vc
, info
);
2198 vc
->vc_can_do_color
= (fb_get_color_depth(&info
->var
, &info
->fix
)!=1);
2199 vc
->vc_complement_mask
= vc
->vc_can_do_color
? 0x7700 : 0x0800;
2202 charcnt
= FNTCHARCNT(vc
->vc_font
.data
);
2205 vc
->vc_complement_mask
<<= 1;
2207 updatescrollmode(p
, info
, vc
);
2209 switch (p
->scrollmode
) {
2210 case SCROLL_WRAP_MOVE
:
2211 scrollback_phys_max
= p
->vrows
- vc
->vc_rows
;
2213 case SCROLL_PAN_MOVE
:
2214 case SCROLL_PAN_REDRAW
:
2215 scrollback_phys_max
= p
->vrows
- 2 * vc
->vc_rows
;
2216 if (scrollback_phys_max
< 0)
2217 scrollback_phys_max
= 0;
2220 scrollback_phys_max
= 0;
2225 scrollback_current
= 0;
2227 if (!fbcon_is_inactive(vc
, info
)) {
2228 ops
->var
.xoffset
= ops
->var
.yoffset
= p
->yscroll
= 0;
2229 ops
->update_start(info
);
2232 fbcon_set_palette(vc
, color_table
);
2233 fbcon_clear_margins(vc
, 0);
2235 if (logo_shown
== FBCON_LOGO_DRAW
) {
2237 logo_shown
= fg_console
;
2238 /* This is protected above by initmem_freed */
2239 fb_show_logo(info
, ops
->rotate
);
2241 vc
->vc_origin
+ vc
->vc_size_row
* vc
->vc_top
,
2242 vc
->vc_size_row
* (vc
->vc_bottom
-
2249 static void fbcon_generic_blank(struct vc_data
*vc
, struct fb_info
*info
,
2252 struct fb_event event
;
2255 unsigned short charmask
= vc
->vc_hi_font_mask
?
2257 unsigned short oldc
;
2259 oldc
= vc
->vc_video_erase_char
;
2260 vc
->vc_video_erase_char
&= charmask
;
2261 fbcon_clear(vc
, 0, 0, vc
->vc_rows
, vc
->vc_cols
);
2262 vc
->vc_video_erase_char
= oldc
;
2267 event
.data
= &blank
;
2268 fb_notifier_call_chain(FB_EVENT_CONBLANK
, &event
);
2271 static int fbcon_blank(struct vc_data
*vc
, int blank
, int mode_switch
)
2273 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2274 struct fbcon_ops
*ops
= info
->fbcon_par
;
2277 struct fb_var_screeninfo var
= info
->var
;
2282 if (info
->fbops
->fb_save_state
)
2283 info
->fbops
->fb_save_state(info
);
2284 var
.activate
= FB_ACTIVATE_NOW
| FB_ACTIVATE_FORCE
;
2285 fb_set_var(info
, &var
);
2287 ops
->var
= info
->var
;
2288 } else if (info
->fbops
->fb_restore_state
)
2289 info
->fbops
->fb_restore_state(info
);
2292 if (!fbcon_is_inactive(vc
, info
)) {
2293 if (ops
->blank_state
!= blank
) {
2294 ops
->blank_state
= blank
;
2295 fbcon_cursor(vc
, blank
? CM_ERASE
: CM_DRAW
);
2296 ops
->cursor_flash
= (!blank
);
2298 if (!(info
->flags
& FBINFO_MISC_USEREVENT
))
2299 if (fb_blank(info
, blank
))
2300 fbcon_generic_blank(vc
, info
, blank
);
2307 if (mode_switch
|| fbcon_is_inactive(vc
, info
) ||
2308 ops
->blank_state
!= FB_BLANK_UNBLANK
)
2309 fbcon_del_cursor_timer(info
);
2311 fbcon_add_cursor_timer(info
);
2316 static int fbcon_get_font(struct vc_data
*vc
, struct console_font
*font
)
2318 u8
*fontdata
= vc
->vc_font
.data
;
2319 u8
*data
= font
->data
;
2322 font
->width
= vc
->vc_font
.width
;
2323 font
->height
= vc
->vc_font
.height
;
2324 font
->charcount
= vc
->vc_hi_font_mask
? 512 : 256;
2328 if (font
->width
<= 8) {
2329 j
= vc
->vc_font
.height
;
2330 for (i
= 0; i
< font
->charcount
; i
++) {
2331 memcpy(data
, fontdata
, j
);
2332 memset(data
+ j
, 0, 32 - j
);
2336 } else if (font
->width
<= 16) {
2337 j
= vc
->vc_font
.height
* 2;
2338 for (i
= 0; i
< font
->charcount
; i
++) {
2339 memcpy(data
, fontdata
, j
);
2340 memset(data
+ j
, 0, 64 - j
);
2344 } else if (font
->width
<= 24) {
2345 for (i
= 0; i
< font
->charcount
; i
++) {
2346 for (j
= 0; j
< vc
->vc_font
.height
; j
++) {
2347 *data
++ = fontdata
[0];
2348 *data
++ = fontdata
[1];
2349 *data
++ = fontdata
[2];
2350 fontdata
+= sizeof(u32
);
2352 memset(data
, 0, 3 * (32 - j
));
2353 data
+= 3 * (32 - j
);
2356 j
= vc
->vc_font
.height
* 4;
2357 for (i
= 0; i
< font
->charcount
; i
++) {
2358 memcpy(data
, fontdata
, j
);
2359 memset(data
+ j
, 0, 128 - j
);
2367 static int fbcon_do_set_font(struct vc_data
*vc
, int w
, int h
,
2368 const u8
* data
, int userfont
)
2370 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2371 struct fbcon_ops
*ops
= info
->fbcon_par
;
2372 struct display
*p
= &fb_display
[vc
->vc_num
];
2375 char *old_data
= NULL
;
2377 if (CON_IS_VISIBLE(vc
) && softback_lines
)
2378 fbcon_set_origin(vc
);
2380 resize
= (w
!= vc
->vc_font
.width
) || (h
!= vc
->vc_font
.height
);
2382 old_data
= vc
->vc_font
.data
;
2384 cnt
= FNTCHARCNT(data
);
2387 vc
->vc_font
.data
= (void *)(p
->fontdata
= data
);
2388 if ((p
->userfont
= userfont
))
2390 vc
->vc_font
.width
= w
;
2391 vc
->vc_font
.height
= h
;
2392 if (vc
->vc_hi_font_mask
&& cnt
== 256) {
2393 vc
->vc_hi_font_mask
= 0;
2394 if (vc
->vc_can_do_color
) {
2395 vc
->vc_complement_mask
>>= 1;
2396 vc
->vc_s_complement_mask
>>= 1;
2399 /* ++Edmund: reorder the attribute bits */
2400 if (vc
->vc_can_do_color
) {
2401 unsigned short *cp
=
2402 (unsigned short *) vc
->vc_origin
;
2403 int count
= vc
->vc_screenbuf_size
/ 2;
2405 for (; count
> 0; count
--, cp
++) {
2407 scr_writew(((c
& 0xfe00) >> 1) |
2410 c
= vc
->vc_video_erase_char
;
2411 vc
->vc_video_erase_char
=
2412 ((c
& 0xfe00) >> 1) | (c
& 0xff);
2415 } else if (!vc
->vc_hi_font_mask
&& cnt
== 512) {
2416 vc
->vc_hi_font_mask
= 0x100;
2417 if (vc
->vc_can_do_color
) {
2418 vc
->vc_complement_mask
<<= 1;
2419 vc
->vc_s_complement_mask
<<= 1;
2422 /* ++Edmund: reorder the attribute bits */
2424 unsigned short *cp
=
2425 (unsigned short *) vc
->vc_origin
;
2426 int count
= vc
->vc_screenbuf_size
/ 2;
2428 for (; count
> 0; count
--, cp
++) {
2429 unsigned short newc
;
2431 if (vc
->vc_can_do_color
)
2433 ((c
& 0xff00) << 1) | (c
&
2437 scr_writew(newc
, cp
);
2439 c
= vc
->vc_video_erase_char
;
2440 if (vc
->vc_can_do_color
) {
2441 vc
->vc_video_erase_char
=
2442 ((c
& 0xff00) << 1) | (c
& 0xff);
2445 vc
->vc_video_erase_char
= c
& ~0x100;
2453 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
2454 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
2457 vc_resize(vc
, cols
, rows
);
2458 if (CON_IS_VISIBLE(vc
) && softback_buf
)
2459 fbcon_update_softback(vc
);
2460 } else if (CON_IS_VISIBLE(vc
)
2461 && vc
->vc_mode
== KD_TEXT
) {
2462 fbcon_clear_margins(vc
, 0);
2466 if (old_data
&& (--REFCOUNT(old_data
) == 0))
2467 kfree(old_data
- FONT_EXTRA_WORDS
* sizeof(int));
2471 static int fbcon_copy_font(struct vc_data
*vc
, int con
)
2473 struct display
*od
= &fb_display
[con
];
2474 struct console_font
*f
= &vc
->vc_font
;
2476 if (od
->fontdata
== f
->data
)
2477 return 0; /* already the same font... */
2478 return fbcon_do_set_font(vc
, f
->width
, f
->height
, od
->fontdata
, od
->userfont
);
2482 * User asked to set font; we are guaranteed that
2483 * a) width and height are in range 1..32
2484 * b) charcount does not exceed 512
2485 * but lets not assume that, since someone might someday want to use larger
2486 * fonts. And charcount of 512 is small for unicode support.
2488 * However, user space gives the font in 32 rows , regardless of
2489 * actual font height. So a new API is needed if support for larger fonts
2490 * is ever implemented.
2493 static int fbcon_set_font(struct vc_data
*vc
, struct console_font
*font
, unsigned flags
)
2495 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2496 unsigned charcount
= font
->charcount
;
2497 int w
= font
->width
;
2498 int h
= font
->height
;
2501 u8
*new_data
, *data
= font
->data
;
2502 int pitch
= (font
->width
+7) >> 3;
2504 /* Is there a reason why fbconsole couldn't handle any charcount >256?
2505 * If not this check should be changed to charcount < 256 */
2506 if (charcount
!= 256 && charcount
!= 512)
2509 /* Make sure drawing engine can handle the font */
2510 if (!(info
->pixmap
.blit_x
& (1 << (font
->width
- 1))) ||
2511 !(info
->pixmap
.blit_y
& (1 << (font
->height
- 1))))
2514 /* Make sure driver can handle the font length */
2515 if (fbcon_invalid_charcount(info
, charcount
))
2518 size
= h
* pitch
* charcount
;
2520 new_data
= kmalloc(FONT_EXTRA_WORDS
* sizeof(int) + size
, GFP_USER
);
2525 new_data
+= FONT_EXTRA_WORDS
* sizeof(int);
2526 FNTSIZE(new_data
) = size
;
2527 FNTCHARCNT(new_data
) = charcount
;
2528 REFCOUNT(new_data
) = 0; /* usage counter */
2529 for (i
=0; i
< charcount
; i
++) {
2530 memcpy(new_data
+ i
*h
*pitch
, data
+ i
*32*pitch
, h
*pitch
);
2533 /* Since linux has a nice crc32 function use it for counting font
2535 csum
= crc32(0, new_data
, size
);
2537 FNTSUM(new_data
) = csum
;
2538 /* Check if the same font is on some other console already */
2539 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
2540 struct vc_data
*tmp
= vc_cons
[i
].d
;
2542 if (fb_display
[i
].userfont
&&
2543 fb_display
[i
].fontdata
&&
2544 FNTSUM(fb_display
[i
].fontdata
) == csum
&&
2545 FNTSIZE(fb_display
[i
].fontdata
) == size
&&
2546 tmp
->vc_font
.width
== w
&&
2547 !memcmp(fb_display
[i
].fontdata
, new_data
, size
)) {
2548 kfree(new_data
- FONT_EXTRA_WORDS
* sizeof(int));
2549 new_data
= (u8
*)fb_display
[i
].fontdata
;
2553 return fbcon_do_set_font(vc
, font
->width
, font
->height
, new_data
, 1);
2556 static int fbcon_set_def_font(struct vc_data
*vc
, struct console_font
*font
, char *name
)
2558 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2559 const struct font_desc
*f
;
2562 f
= get_default_font(info
->var
.xres
, info
->var
.yres
,
2563 info
->pixmap
.blit_x
, info
->pixmap
.blit_y
);
2564 else if (!(f
= find_font(name
)))
2567 font
->width
= f
->width
;
2568 font
->height
= f
->height
;
2569 return fbcon_do_set_font(vc
, f
->width
, f
->height
, f
->data
, 0);
2572 static u16 palette_red
[16];
2573 static u16 palette_green
[16];
2574 static u16 palette_blue
[16];
2576 static struct fb_cmap palette_cmap
= {
2577 0, 16, palette_red
, palette_green
, palette_blue
, NULL
2580 static int fbcon_set_palette(struct vc_data
*vc
, unsigned char *table
)
2582 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2586 if (fbcon_is_inactive(vc
, info
))
2589 if (!CON_IS_VISIBLE(vc
))
2592 depth
= fb_get_color_depth(&info
->var
, &info
->fix
);
2594 for (i
= j
= 0; i
< 16; i
++) {
2596 val
= vc
->vc_palette
[j
++];
2597 palette_red
[k
] = (val
<< 8) | val
;
2598 val
= vc
->vc_palette
[j
++];
2599 palette_green
[k
] = (val
<< 8) | val
;
2600 val
= vc
->vc_palette
[j
++];
2601 palette_blue
[k
] = (val
<< 8) | val
;
2603 palette_cmap
.len
= 16;
2604 palette_cmap
.start
= 0;
2606 * If framebuffer is capable of less than 16 colors,
2607 * use default palette of fbcon.
2610 fb_copy_cmap(fb_default_cmap(1 << depth
), &palette_cmap
);
2612 return fb_set_cmap(&palette_cmap
, info
);
2615 static u16
*fbcon_screen_pos(struct vc_data
*vc
, int offset
)
2620 if (vc
->vc_num
!= fg_console
|| !softback_lines
)
2621 return (u16
*) (vc
->vc_origin
+ offset
);
2622 line
= offset
/ vc
->vc_size_row
;
2623 if (line
>= softback_lines
)
2624 return (u16
*) (vc
->vc_origin
+ offset
-
2625 softback_lines
* vc
->vc_size_row
);
2626 p
= softback_curr
+ offset
;
2627 if (p
>= softback_end
)
2628 p
+= softback_buf
- softback_end
;
2632 static unsigned long fbcon_getxy(struct vc_data
*vc
, unsigned long pos
,
2638 if (pos
>= vc
->vc_origin
&& pos
< vc
->vc_scr_end
) {
2639 unsigned long offset
= (pos
- vc
->vc_origin
) / 2;
2641 x
= offset
% vc
->vc_cols
;
2642 y
= offset
/ vc
->vc_cols
;
2643 if (vc
->vc_num
== fg_console
)
2644 y
+= softback_lines
;
2645 ret
= pos
+ (vc
->vc_cols
- x
) * 2;
2646 } else if (vc
->vc_num
== fg_console
&& softback_lines
) {
2647 unsigned long offset
= pos
- softback_curr
;
2649 if (pos
< softback_curr
)
2650 offset
+= softback_end
- softback_buf
;
2652 x
= offset
% vc
->vc_cols
;
2653 y
= offset
/ vc
->vc_cols
;
2654 ret
= pos
+ (vc
->vc_cols
- x
) * 2;
2655 if (ret
== softback_end
)
2657 if (ret
== softback_in
)
2658 ret
= vc
->vc_origin
;
2660 /* Should not happen */
2662 ret
= vc
->vc_origin
;
2671 /* As we might be inside of softback, we may work with non-contiguous buffer,
2672 that's why we have to use a separate routine. */
2673 static void fbcon_invert_region(struct vc_data
*vc
, u16
* p
, int cnt
)
2676 u16 a
= scr_readw(p
);
2677 if (!vc
->vc_can_do_color
)
2679 else if (vc
->vc_hi_font_mask
== 0x100)
2680 a
= ((a
) & 0x11ff) | (((a
) & 0xe000) >> 4) |
2681 (((a
) & 0x0e00) << 4);
2683 a
= ((a
) & 0x88ff) | (((a
) & 0x7000) >> 4) |
2684 (((a
) & 0x0700) << 4);
2686 if (p
== (u16
*) softback_end
)
2687 p
= (u16
*) softback_buf
;
2688 if (p
== (u16
*) softback_in
)
2689 p
= (u16
*) vc
->vc_origin
;
2693 static int fbcon_scrolldelta(struct vc_data
*vc
, int lines
)
2695 struct fb_info
*info
= registered_fb
[con2fb_map
[fg_console
]];
2696 struct fbcon_ops
*ops
= info
->fbcon_par
;
2697 struct display
*disp
= &fb_display
[fg_console
];
2698 int offset
, limit
, scrollback_old
;
2701 if (vc
->vc_num
!= fg_console
)
2703 if (vc
->vc_mode
!= KD_TEXT
|| !lines
)
2705 if (logo_shown
>= 0) {
2706 struct vc_data
*conp2
= vc_cons
[logo_shown
].d
;
2708 if (conp2
->vc_top
== logo_lines
2709 && conp2
->vc_bottom
== conp2
->vc_rows
)
2711 if (logo_shown
== vc
->vc_num
) {
2717 logo_lines
* vc
->vc_size_row
;
2718 for (i
= 0; i
< logo_lines
; i
++) {
2719 if (p
== softback_top
)
2721 if (p
== softback_buf
)
2723 p
-= vc
->vc_size_row
;
2724 q
-= vc
->vc_size_row
;
2725 scr_memcpyw((u16
*) q
, (u16
*) p
,
2728 softback_in
= softback_curr
= p
;
2729 update_region(vc
, vc
->vc_origin
,
2730 logo_lines
* vc
->vc_cols
);
2732 logo_shown
= FBCON_LOGO_CANSHOW
;
2734 fbcon_cursor(vc
, CM_ERASE
| CM_SOFTBACK
);
2735 fbcon_redraw_softback(vc
, disp
, lines
);
2736 fbcon_cursor(vc
, CM_DRAW
| CM_SOFTBACK
);
2740 if (!scrollback_phys_max
)
2743 scrollback_old
= scrollback_current
;
2744 scrollback_current
-= lines
;
2745 if (scrollback_current
< 0)
2746 scrollback_current
= 0;
2747 else if (scrollback_current
> scrollback_max
)
2748 scrollback_current
= scrollback_max
;
2749 if (scrollback_current
== scrollback_old
)
2752 if (fbcon_is_inactive(vc
, info
))
2755 fbcon_cursor(vc
, CM_ERASE
);
2757 offset
= disp
->yscroll
- scrollback_current
;
2758 limit
= disp
->vrows
;
2759 switch (disp
->scrollmode
) {
2760 case SCROLL_WRAP_MOVE
:
2761 info
->var
.vmode
|= FB_VMODE_YWRAP
;
2763 case SCROLL_PAN_MOVE
:
2764 case SCROLL_PAN_REDRAW
:
2765 limit
-= vc
->vc_rows
;
2766 info
->var
.vmode
&= ~FB_VMODE_YWRAP
;
2771 else if (offset
>= limit
)
2774 ops
->var
.xoffset
= 0;
2775 ops
->var
.yoffset
= offset
* vc
->vc_font
.height
;
2776 ops
->update_start(info
);
2778 if (!scrollback_current
)
2779 fbcon_cursor(vc
, CM_DRAW
);
2783 static int fbcon_set_origin(struct vc_data
*vc
)
2786 fbcon_scrolldelta(vc
, softback_lines
);
2790 static void fbcon_suspended(struct fb_info
*info
)
2792 struct vc_data
*vc
= NULL
;
2793 struct fbcon_ops
*ops
= info
->fbcon_par
;
2795 if (!ops
|| ops
->currcon
< 0)
2797 vc
= vc_cons
[ops
->currcon
].d
;
2799 /* Clear cursor, restore saved data */
2800 fbcon_cursor(vc
, CM_ERASE
);
2803 static void fbcon_resumed(struct fb_info
*info
)
2806 struct fbcon_ops
*ops
= info
->fbcon_par
;
2808 if (!ops
|| ops
->currcon
< 0)
2810 vc
= vc_cons
[ops
->currcon
].d
;
2815 static void fbcon_modechanged(struct fb_info
*info
)
2817 struct fbcon_ops
*ops
= info
->fbcon_par
;
2822 if (!ops
|| ops
->currcon
< 0)
2824 vc
= vc_cons
[ops
->currcon
].d
;
2825 if (vc
->vc_mode
!= KD_TEXT
||
2826 registered_fb
[con2fb_map
[ops
->currcon
]] != info
)
2829 p
= &fb_display
[vc
->vc_num
];
2830 set_blitting_type(vc
, info
);
2832 if (CON_IS_VISIBLE(vc
)) {
2833 var_to_display(p
, &info
->var
, info
);
2834 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
2835 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
2836 cols
/= vc
->vc_font
.width
;
2837 rows
/= vc
->vc_font
.height
;
2838 vc_resize(vc
, cols
, rows
);
2839 updatescrollmode(p
, info
, vc
);
2841 scrollback_current
= 0;
2843 if (!fbcon_is_inactive(vc
, info
)) {
2844 ops
->var
.xoffset
= ops
->var
.yoffset
= p
->yscroll
= 0;
2845 ops
->update_start(info
);
2848 fbcon_set_palette(vc
, color_table
);
2851 fbcon_update_softback(vc
);
2855 static void fbcon_set_all_vcs(struct fb_info
*info
)
2857 struct fbcon_ops
*ops
= info
->fbcon_par
;
2860 int i
, rows
, cols
, fg
= -1;
2862 if (!ops
|| ops
->currcon
< 0)
2865 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
2867 if (!vc
|| vc
->vc_mode
!= KD_TEXT
||
2868 registered_fb
[con2fb_map
[i
]] != info
)
2871 if (CON_IS_VISIBLE(vc
)) {
2876 p
= &fb_display
[vc
->vc_num
];
2877 set_blitting_type(vc
, info
);
2878 var_to_display(p
, &info
->var
, info
);
2879 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
2880 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
2881 cols
/= vc
->vc_font
.width
;
2882 rows
/= vc
->vc_font
.height
;
2883 vc_resize(vc
, cols
, rows
);
2887 fbcon_modechanged(info
);
2890 static int fbcon_mode_deleted(struct fb_info
*info
,
2891 struct fb_videomode
*mode
)
2893 struct fb_info
*fb_info
;
2895 int i
, j
, found
= 0;
2897 /* before deletion, ensure that mode is not in use */
2898 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
2902 fb_info
= registered_fb
[j
];
2903 if (fb_info
!= info
)
2908 if (fb_mode_is_equal(p
->mode
, mode
)) {
2916 #ifdef CONFIG_VT_HW_CONSOLE_BINDING
2917 static int fbcon_unbind(void)
2921 ret
= unbind_con_driver(&fb_con
, first_fb_vc
, last_fb_vc
,
2926 static inline int fbcon_unbind(void)
2930 #endif /* CONFIG_VT_HW_CONSOLE_BINDING */
2932 static int fbcon_fb_unbind(int idx
)
2934 int i
, new_idx
= -1, ret
= 0;
2936 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
2937 if (con2fb_map
[i
] != idx
&&
2938 con2fb_map
[i
] != -1) {
2944 if (new_idx
!= -1) {
2945 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
2946 if (con2fb_map
[i
] == idx
)
2947 set_con2fb_map(i
, new_idx
, 0);
2950 ret
= fbcon_unbind();
2955 static int fbcon_fb_unregistered(struct fb_info
*info
)
2959 if (!lock_fb_info(info
))
2962 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
2963 if (con2fb_map
[i
] == idx
)
2967 if (idx
== info_idx
) {
2970 for (i
= 0; i
< FB_MAX
; i
++) {
2971 if (registered_fb
[i
] != NULL
) {
2978 if (info_idx
!= -1) {
2979 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
2980 if (con2fb_map
[i
] == -1)
2981 con2fb_map
[i
] = info_idx
;
2985 if (primary_device
== idx
)
2986 primary_device
= -1;
2988 unlock_fb_info(info
);
2990 if (!num_registered_fb
)
2991 unregister_con_driver(&fb_con
);
2996 #ifdef CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY
2997 static void fbcon_select_primary(struct fb_info
*info
)
2999 if (!map_override
&& primary_device
== -1 &&
3000 fb_is_primary_device(info
)) {
3003 printk(KERN_INFO
"fbcon: %s (fb%i) is primary device\n",
3004 info
->fix
.id
, info
->node
);
3005 primary_device
= info
->node
;
3007 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++)
3008 con2fb_map_boot
[i
] = primary_device
;
3010 if (con_is_bound(&fb_con
)) {
3011 printk(KERN_INFO
"fbcon: Remapping primary device, "
3012 "fb%i, to tty %i-%i\n", info
->node
,
3013 first_fb_vc
+ 1, last_fb_vc
+ 1);
3014 info_idx
= primary_device
;
3020 static inline void fbcon_select_primary(struct fb_info
*info
)
3024 #endif /* CONFIG_FRAMEBUFFER_DETECT_PRIMARY */
3026 static int fbcon_fb_registered(struct fb_info
*info
)
3028 int ret
= 0, i
, idx
;
3030 if (!lock_fb_info(info
))
3033 fbcon_select_primary(info
);
3034 unlock_fb_info(info
);
3036 if (info_idx
== -1) {
3037 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3038 if (con2fb_map_boot
[i
] == idx
) {
3045 ret
= fbcon_takeover(1);
3047 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3048 if (con2fb_map_boot
[i
] == idx
)
3049 set_con2fb_map(i
, idx
, 0);
3056 static void fbcon_fb_blanked(struct fb_info
*info
, int blank
)
3058 struct fbcon_ops
*ops
= info
->fbcon_par
;
3061 if (!ops
|| ops
->currcon
< 0)
3064 vc
= vc_cons
[ops
->currcon
].d
;
3065 if (vc
->vc_mode
!= KD_TEXT
||
3066 registered_fb
[con2fb_map
[ops
->currcon
]] != info
)
3069 if (CON_IS_VISIBLE(vc
)) {
3073 do_unblank_screen(0);
3075 ops
->blank_state
= blank
;
3078 static void fbcon_new_modelist(struct fb_info
*info
)
3082 struct fb_var_screeninfo var
;
3083 const struct fb_videomode
*mode
;
3085 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3086 if (registered_fb
[con2fb_map
[i
]] != info
)
3088 if (!fb_display
[i
].mode
)
3091 display_to_var(&var
, &fb_display
[i
]);
3092 mode
= fb_find_nearest_mode(fb_display
[i
].mode
,
3094 fb_videomode_to_var(&var
, mode
);
3095 fbcon_set_disp(info
, &var
, vc
->vc_num
);
3099 static void fbcon_get_requirement(struct fb_info
*info
,
3100 struct fb_blit_caps
*caps
)
3108 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3110 if (vc
&& vc
->vc_mode
== KD_TEXT
&&
3111 info
->node
== con2fb_map
[i
]) {
3113 caps
->x
|= 1 << (vc
->vc_font
.width
- 1);
3114 caps
->y
|= 1 << (vc
->vc_font
.height
- 1);
3115 charcnt
= (p
->userfont
) ?
3116 FNTCHARCNT(p
->fontdata
) : 256;
3117 if (caps
->len
< charcnt
)
3118 caps
->len
= charcnt
;
3122 vc
= vc_cons
[fg_console
].d
;
3124 if (vc
&& vc
->vc_mode
== KD_TEXT
&&
3125 info
->node
== con2fb_map
[fg_console
]) {
3126 p
= &fb_display
[fg_console
];
3127 caps
->x
= 1 << (vc
->vc_font
.width
- 1);
3128 caps
->y
= 1 << (vc
->vc_font
.height
- 1);
3129 caps
->len
= (p
->userfont
) ?
3130 FNTCHARCNT(p
->fontdata
) : 256;
3135 static int fbcon_event_notify(struct notifier_block
*self
,
3136 unsigned long action
, void *data
)
3138 struct fb_event
*event
= data
;
3139 struct fb_info
*info
= event
->info
;
3140 struct fb_videomode
*mode
;
3141 struct fb_con2fbmap
*con2fb
;
3142 struct fb_blit_caps
*caps
;
3146 * ignore all events except driver registration and deregistration
3147 * if fbcon is not active
3149 if (fbcon_has_exited
&& !(action
== FB_EVENT_FB_REGISTERED
||
3150 action
== FB_EVENT_FB_UNREGISTERED
))
3154 case FB_EVENT_SUSPEND
:
3155 if (!lock_fb_info(info
)) {
3159 fbcon_suspended(info
);
3160 unlock_fb_info(info
);
3162 case FB_EVENT_RESUME
:
3163 if (!lock_fb_info(info
)) {
3167 fbcon_resumed(info
);
3168 unlock_fb_info(info
);
3170 case FB_EVENT_MODE_CHANGE
:
3171 if (!lock_fb_info(info
)) {
3175 fbcon_modechanged(info
);
3176 unlock_fb_info(info
);
3178 case FB_EVENT_MODE_CHANGE_ALL
:
3179 if (!lock_fb_info(info
)) {
3183 fbcon_set_all_vcs(info
);
3184 unlock_fb_info(info
);
3186 case FB_EVENT_MODE_DELETE
:
3188 if (!lock_fb_info(info
)) {
3192 ret
= fbcon_mode_deleted(info
, mode
);
3193 unlock_fb_info(info
);
3195 case FB_EVENT_FB_UNBIND
:
3196 if (!lock_fb_info(info
)) {
3201 unlock_fb_info(info
);
3202 ret
= fbcon_fb_unbind(idx
);
3204 case FB_EVENT_FB_REGISTERED
:
3205 ret
= fbcon_fb_registered(info
);
3207 case FB_EVENT_FB_UNREGISTERED
:
3208 ret
= fbcon_fb_unregistered(info
);
3210 case FB_EVENT_SET_CONSOLE_MAP
:
3211 con2fb
= event
->data
;
3212 ret
= set_con2fb_map(con2fb
->console
- 1,
3213 con2fb
->framebuffer
, 1);
3215 case FB_EVENT_GET_CONSOLE_MAP
:
3216 con2fb
= event
->data
;
3217 con2fb
->framebuffer
= con2fb_map
[con2fb
->console
- 1];
3219 case FB_EVENT_BLANK
:
3220 if (!lock_fb_info(info
)) {
3224 fbcon_fb_blanked(info
, *(int *)event
->data
);
3225 unlock_fb_info(info
);
3227 case FB_EVENT_NEW_MODELIST
:
3228 if (!lock_fb_info(info
)) {
3232 fbcon_new_modelist(info
);
3233 unlock_fb_info(info
);
3235 case FB_EVENT_GET_REQ
:
3237 if (!lock_fb_info(info
)) {
3241 fbcon_get_requirement(info
, caps
);
3242 unlock_fb_info(info
);
3250 * The console `switch' structure for the frame buffer based console
3253 static const struct consw fb_con
= {
3254 .owner
= THIS_MODULE
,
3255 .con_startup
= fbcon_startup
,
3256 .con_init
= fbcon_init
,
3257 .con_deinit
= fbcon_deinit
,
3258 .con_clear
= fbcon_clear
,
3259 .con_putc
= fbcon_putc
,
3260 .con_putcs
= fbcon_putcs
,
3261 .con_cursor
= fbcon_cursor
,
3262 .con_scroll
= fbcon_scroll
,
3263 .con_bmove
= fbcon_bmove
,
3264 .con_switch
= fbcon_switch
,
3265 .con_blank
= fbcon_blank
,
3266 .con_font_set
= fbcon_set_font
,
3267 .con_font_get
= fbcon_get_font
,
3268 .con_font_default
= fbcon_set_def_font
,
3269 .con_font_copy
= fbcon_copy_font
,
3270 .con_set_palette
= fbcon_set_palette
,
3271 .con_scrolldelta
= fbcon_scrolldelta
,
3272 .con_set_origin
= fbcon_set_origin
,
3273 .con_invert_region
= fbcon_invert_region
,
3274 .con_screen_pos
= fbcon_screen_pos
,
3275 .con_getxy
= fbcon_getxy
,
3276 .con_resize
= fbcon_resize
,
3279 static struct notifier_block fbcon_event_notifier
= {
3280 .notifier_call
= fbcon_event_notify
,
3283 static ssize_t
store_rotate(struct device
*device
,
3284 struct device_attribute
*attr
, const char *buf
,
3287 struct fb_info
*info
;
3291 if (fbcon_has_exited
)
3294 acquire_console_sem();
3295 idx
= con2fb_map
[fg_console
];
3297 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3300 info
= registered_fb
[idx
];
3301 rotate
= simple_strtoul(buf
, last
, 0);
3302 fbcon_rotate(info
, rotate
);
3304 release_console_sem();
3308 static ssize_t
store_rotate_all(struct device
*device
,
3309 struct device_attribute
*attr
,const char *buf
,
3312 struct fb_info
*info
;
3316 if (fbcon_has_exited
)
3319 acquire_console_sem();
3320 idx
= con2fb_map
[fg_console
];
3322 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3325 info
= registered_fb
[idx
];
3326 rotate
= simple_strtoul(buf
, last
, 0);
3327 fbcon_rotate_all(info
, rotate
);
3329 release_console_sem();
3333 static ssize_t
show_rotate(struct device
*device
,
3334 struct device_attribute
*attr
,char *buf
)
3336 struct fb_info
*info
;
3337 int rotate
= 0, idx
;
3339 if (fbcon_has_exited
)
3342 acquire_console_sem();
3343 idx
= con2fb_map
[fg_console
];
3345 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3348 info
= registered_fb
[idx
];
3349 rotate
= fbcon_get_rotate(info
);
3351 release_console_sem();
3352 return snprintf(buf
, PAGE_SIZE
, "%d\n", rotate
);
3355 static ssize_t
show_cursor_blink(struct device
*device
,
3356 struct device_attribute
*attr
, char *buf
)
3358 struct fb_info
*info
;
3359 struct fbcon_ops
*ops
;
3360 int idx
, blink
= -1;
3362 if (fbcon_has_exited
)
3365 acquire_console_sem();
3366 idx
= con2fb_map
[fg_console
];
3368 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3371 info
= registered_fb
[idx
];
3372 ops
= info
->fbcon_par
;
3377 blink
= (ops
->flags
& FBCON_FLAGS_CURSOR_TIMER
) ? 1 : 0;
3379 release_console_sem();
3380 return snprintf(buf
, PAGE_SIZE
, "%d\n", blink
);
3383 static ssize_t
store_cursor_blink(struct device
*device
,
3384 struct device_attribute
*attr
,
3385 const char *buf
, size_t count
)
3387 struct fb_info
*info
;
3391 if (fbcon_has_exited
)
3394 acquire_console_sem();
3395 idx
= con2fb_map
[fg_console
];
3397 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3400 info
= registered_fb
[idx
];
3402 if (!info
->fbcon_par
)
3405 blink
= simple_strtoul(buf
, last
, 0);
3408 fbcon_cursor_noblink
= 0;
3409 fbcon_add_cursor_timer(info
);
3411 fbcon_cursor_noblink
= 1;
3412 fbcon_del_cursor_timer(info
);
3416 release_console_sem();
3420 static struct device_attribute device_attrs
[] = {
3421 __ATTR(rotate
, S_IRUGO
|S_IWUSR
, show_rotate
, store_rotate
),
3422 __ATTR(rotate_all
, S_IWUSR
, NULL
, store_rotate_all
),
3423 __ATTR(cursor_blink
, S_IRUGO
|S_IWUSR
, show_cursor_blink
,
3424 store_cursor_blink
),
3427 static int fbcon_init_device(void)
3431 fbcon_has_sysfs
= 1;
3433 for (i
= 0; i
< ARRAY_SIZE(device_attrs
); i
++) {
3434 error
= device_create_file(fbcon_device
, &device_attrs
[i
]);
3442 device_remove_file(fbcon_device
, &device_attrs
[i
]);
3444 fbcon_has_sysfs
= 0;
3450 static void fbcon_start(void)
3452 if (num_registered_fb
) {
3455 acquire_console_sem();
3457 for (i
= 0; i
< FB_MAX
; i
++) {
3458 if (registered_fb
[i
] != NULL
) {
3464 release_console_sem();
3469 static void fbcon_exit(void)
3471 struct fb_info
*info
;
3474 if (fbcon_has_exited
)
3477 kfree((void *)softback_buf
);
3480 for (i
= 0; i
< FB_MAX
; i
++) {
3484 info
= registered_fb
[i
];
3489 pending
= cancel_work_sync(&info
->queue
);
3490 DPRINTK("fbcon: %s pending work\n", (pending
? "canceled" :
3493 for (j
= first_fb_vc
; j
<= last_fb_vc
; j
++) {
3494 if (con2fb_map
[j
] == i
)
3499 if (info
->fbops
->fb_release
)
3500 info
->fbops
->fb_release(info
, 0);
3501 module_put(info
->fbops
->owner
);
3503 if (info
->fbcon_par
) {
3504 struct fbcon_ops
*ops
= info
->fbcon_par
;
3506 fbcon_del_cursor_timer(info
);
3507 kfree(ops
->cursor_src
);
3508 kfree(info
->fbcon_par
);
3509 info
->fbcon_par
= NULL
;
3512 if (info
->queue
.func
== fb_flashcursor
)
3513 info
->queue
.func
= NULL
;
3517 fbcon_has_exited
= 1;
3520 static int __init
fb_console_init(void)
3524 acquire_console_sem();
3525 fb_register_client(&fbcon_event_notifier
);
3526 fbcon_device
= device_create(fb_class
, NULL
, MKDEV(0, 0), NULL
,
3529 if (IS_ERR(fbcon_device
)) {
3530 printk(KERN_WARNING
"Unable to create device "
3531 "for fbcon; errno = %ld\n",
3532 PTR_ERR(fbcon_device
));
3533 fbcon_device
= NULL
;
3535 fbcon_init_device();
3537 for (i
= 0; i
< MAX_NR_CONSOLES
; i
++)
3540 release_console_sem();
3545 module_init(fb_console_init
);
3549 static void __exit
fbcon_deinit_device(void)
3553 if (fbcon_has_sysfs
) {
3554 for (i
= 0; i
< ARRAY_SIZE(device_attrs
); i
++)
3555 device_remove_file(fbcon_device
, &device_attrs
[i
]);
3557 fbcon_has_sysfs
= 0;
3561 static void __exit
fb_console_exit(void)
3563 acquire_console_sem();
3564 fb_unregister_client(&fbcon_event_notifier
);
3565 fbcon_deinit_device();
3566 device_destroy(fb_class
, MKDEV(0, 0));
3568 release_console_sem();
3569 unregister_con_driver(&fb_con
);
3572 module_exit(fb_console_exit
);
3576 MODULE_LICENSE("GPL");