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 */
84 # define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __func__ , ## args)
86 # define DPRINTK(fmt, args...)
90 FBCON_LOGO_CANSHOW
= -1, /* the logo can be shown */
91 FBCON_LOGO_DRAW
= -2, /* draw the logo to a console */
92 FBCON_LOGO_DONTSHOW
= -3 /* do not show the logo */
95 static struct display fb_display
[MAX_NR_CONSOLES
];
97 static signed char con2fb_map
[MAX_NR_CONSOLES
];
98 static signed char con2fb_map_boot
[MAX_NR_CONSOLES
];
100 static int logo_lines
;
101 /* logo_shown is an index to vc_cons when >= 0; otherwise follows FBCON_LOGO
103 static int logo_shown
= FBCON_LOGO_CANSHOW
;
104 /* Software scrollback */
105 static int fbcon_softback_size
= 32768;
106 static unsigned long softback_buf
, softback_curr
;
107 static unsigned long softback_in
;
108 static unsigned long softback_top
, softback_end
;
109 static int softback_lines
;
110 /* console mappings */
111 static int first_fb_vc
;
112 static int last_fb_vc
= MAX_NR_CONSOLES
- 1;
113 static int fbcon_is_default
= 1;
114 static int fbcon_has_exited
;
115 static int primary_device
= -1;
116 static int fbcon_has_console_bind
;
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 static int fbcon_cursor_noblink
;
151 #define divides(a, b) ((!(a) || (b)%(a)) ? 0 : 1)
154 * Interface used by the world
157 static const char *fbcon_startup(void);
158 static void fbcon_init(struct vc_data
*vc
, int init
);
159 static void fbcon_deinit(struct vc_data
*vc
);
160 static void fbcon_clear(struct vc_data
*vc
, int sy
, int sx
, int height
,
162 static void fbcon_putc(struct vc_data
*vc
, int c
, int ypos
, int xpos
);
163 static void fbcon_putcs(struct vc_data
*vc
, const unsigned short *s
,
164 int count
, int ypos
, int xpos
);
165 static void fbcon_clear_margins(struct vc_data
*vc
, int bottom_only
);
166 static void fbcon_cursor(struct vc_data
*vc
, int mode
);
167 static void fbcon_bmove(struct vc_data
*vc
, int sy
, int sx
, int dy
, int dx
,
168 int height
, int width
);
169 static int fbcon_switch(struct vc_data
*vc
);
170 static int fbcon_blank(struct vc_data
*vc
, int blank
, int mode_switch
);
171 static void fbcon_set_palette(struct vc_data
*vc
, const unsigned char *table
);
176 static __inline__
void ywrap_up(struct vc_data
*vc
, int count
);
177 static __inline__
void ywrap_down(struct vc_data
*vc
, int count
);
178 static __inline__
void ypan_up(struct vc_data
*vc
, int count
);
179 static __inline__
void ypan_down(struct vc_data
*vc
, int count
);
180 static void fbcon_bmove_rec(struct vc_data
*vc
, struct display
*p
, int sy
, int sx
,
181 int dy
, int dx
, int height
, int width
, u_int y_break
);
182 static void fbcon_set_disp(struct fb_info
*info
, struct fb_var_screeninfo
*var
,
184 static void fbcon_redraw_move(struct vc_data
*vc
, struct display
*p
,
185 int line
, int count
, int dy
);
186 static void fbcon_modechanged(struct fb_info
*info
);
187 static void fbcon_set_all_vcs(struct fb_info
*info
);
188 static void fbcon_start(void);
189 static void fbcon_exit(void);
190 static struct device
*fbcon_device
;
192 #ifdef CONFIG_FRAMEBUFFER_CONSOLE_ROTATION
193 static inline void fbcon_set_rotation(struct fb_info
*info
)
195 struct fbcon_ops
*ops
= info
->fbcon_par
;
197 if (!(info
->flags
& FBINFO_MISC_TILEBLITTING
) &&
198 ops
->p
->con_rotate
< 4)
199 ops
->rotate
= ops
->p
->con_rotate
;
204 static void fbcon_rotate(struct fb_info
*info
, u32 rotate
)
206 struct fbcon_ops
*ops
= info
->fbcon_par
;
207 struct fb_info
*fb_info
;
209 if (!ops
|| ops
->currcon
== -1)
212 fb_info
= registered_fb
[con2fb_map
[ops
->currcon
]];
214 if (info
== fb_info
) {
215 struct display
*p
= &fb_display
[ops
->currcon
];
218 p
->con_rotate
= rotate
;
222 fbcon_modechanged(info
);
226 static void fbcon_rotate_all(struct fb_info
*info
, u32 rotate
)
228 struct fbcon_ops
*ops
= info
->fbcon_par
;
233 if (!ops
|| ops
->currcon
< 0 || rotate
> 3)
236 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
238 if (!vc
|| vc
->vc_mode
!= KD_TEXT
||
239 registered_fb
[con2fb_map
[i
]] != info
)
242 p
= &fb_display
[vc
->vc_num
];
243 p
->con_rotate
= rotate
;
246 fbcon_set_all_vcs(info
);
249 static inline void fbcon_set_rotation(struct fb_info
*info
)
251 struct fbcon_ops
*ops
= info
->fbcon_par
;
253 ops
->rotate
= FB_ROTATE_UR
;
256 static void fbcon_rotate(struct fb_info
*info
, u32 rotate
)
261 static void fbcon_rotate_all(struct fb_info
*info
, u32 rotate
)
265 #endif /* CONFIG_FRAMEBUFFER_CONSOLE_ROTATION */
267 static int fbcon_get_rotate(struct fb_info
*info
)
269 struct fbcon_ops
*ops
= info
->fbcon_par
;
271 return (ops
) ? ops
->rotate
: 0;
274 static inline int fbcon_is_inactive(struct vc_data
*vc
, struct fb_info
*info
)
276 struct fbcon_ops
*ops
= info
->fbcon_par
;
278 return (info
->state
!= FBINFO_STATE_RUNNING
||
279 vc
->vc_mode
!= KD_TEXT
|| ops
->graphics
) &&
280 !vt_force_oops_output(vc
);
283 static int get_color(struct vc_data
*vc
, struct fb_info
*info
,
286 int depth
= fb_get_color_depth(&info
->var
, &info
->fix
);
289 if (console_blanked
) {
290 unsigned short charmask
= vc
->vc_hi_font_mask
? 0x1ff : 0xff;
292 c
= vc
->vc_video_erase_char
& charmask
;
296 color
= (is_fg
) ? attr_fgcol((vc
->vc_hi_font_mask
) ? 9 : 8, c
)
297 : attr_bgcol((vc
->vc_hi_font_mask
) ? 13 : 12, c
);
302 int col
= mono_col(info
);
304 int fg
= (info
->fix
.visual
!= FB_VISUAL_MONO01
) ? col
: 0;
305 int bg
= (info
->fix
.visual
!= FB_VISUAL_MONO01
) ? 0 : col
;
310 color
= (is_fg
) ? fg
: bg
;
315 * Scale down 16-colors to 4 colors. Default 4-color palette
316 * is grayscale. However, simply dividing the values by 4
317 * will not work, as colors 1, 2 and 3 will be scaled-down
318 * to zero rendering them invisible. So empirically convert
319 * colors to a sane 4-level grayscale.
323 color
= 0; /* black */
326 color
= 2; /* white */
329 color
= 1; /* gray */
332 color
= 3; /* intense white */
338 * Last 8 entries of default 16-color palette is a more intense
339 * version of the first 8 (i.e., same chrominance, different
350 static void fbcon_update_softback(struct vc_data
*vc
)
352 int l
= fbcon_softback_size
/ vc
->vc_size_row
;
355 softback_end
= softback_buf
+ l
* vc
->vc_size_row
;
357 /* Smaller scrollback makes no sense, and 0 would screw
358 the operation totally */
362 static void fb_flashcursor(struct work_struct
*work
)
364 struct fb_info
*info
= container_of(work
, struct fb_info
, queue
);
365 struct fbcon_ops
*ops
= info
->fbcon_par
;
366 struct vc_data
*vc
= NULL
;
371 /* FIXME: we should sort out the unbind locking instead */
372 /* instead we just fail to flash the cursor if we can't get
373 * the lock instead of blocking fbcon deinit */
374 ret
= console_trylock();
378 if (ops
&& ops
->currcon
!= -1)
379 vc
= vc_cons
[ops
->currcon
].d
;
381 if (!vc
|| !con_is_visible(vc
) ||
382 registered_fb
[con2fb_map
[vc
->vc_num
]] != info
||
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));
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 queue_work(system_power_efficient_wq
, &info
->queue
);
402 mod_timer(&ops
->cursor_timer
, jiffies
+ ops
->cur_blink_jiffies
);
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
+ ops
->cur_blink_jiffies
;
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 strlcpy(fontname
, options
+ 5, sizeof(fontname
));
450 if (!strncmp(options
, "scrollback:", 11)) {
453 fbcon_softback_size
= simple_strtoul(options
, &options
, 0);
454 if (*options
== 'k' || *options
== 'K') {
455 fbcon_softback_size
*= 1024;
461 if (!strncmp(options
, "map:", 4)) {
464 for (i
= 0, j
= 0; i
< MAX_NR_CONSOLES
; i
++) {
468 (options
[j
++]-'0') % FB_MAX
;
471 fbcon_map_override();
476 if (!strncmp(options
, "vc:", 3)) {
479 first_fb_vc
= simple_strtoul(options
, &options
, 10) - 1;
482 if (*options
++ == '-')
483 last_fb_vc
= simple_strtoul(options
, &options
, 10) - 1;
484 fbcon_is_default
= 0;
488 if (!strncmp(options
, "rotate:", 7)) {
491 initial_rotation
= simple_strtoul(options
, &options
, 0);
492 if (initial_rotation
> 3)
493 initial_rotation
= 0;
500 __setup("fbcon=", fb_console_setup
);
503 static int search_fb_in_map(int idx
)
507 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
508 if (con2fb_map
[i
] == idx
)
514 static int search_for_mapped_con(void)
518 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
519 if (con2fb_map
[i
] != -1)
525 static int do_fbcon_takeover(int show_logo
)
529 if (!num_registered_fb
)
533 logo_shown
= FBCON_LOGO_DONTSHOW
;
535 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++)
536 con2fb_map
[i
] = info_idx
;
538 err
= do_take_over_console(&fb_con
, first_fb_vc
, last_fb_vc
,
542 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++)
546 fbcon_has_console_bind
= 1;
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 ops
->cur_blink_jiffies
= HZ
/ 5;
710 info
->fbcon_par
= ops
;
713 set_blitting_type(vc
, info
);
717 con2fb_map
[unit
] = oldidx
;
718 module_put(info
->fbops
->owner
);
724 static int con2fb_release_oldinfo(struct vc_data
*vc
, struct fb_info
*oldinfo
,
725 struct fb_info
*newinfo
, int unit
,
726 int oldidx
, int found
)
728 struct fbcon_ops
*ops
= oldinfo
->fbcon_par
;
731 if (oldinfo
->fbops
->fb_release
&&
732 oldinfo
->fbops
->fb_release(oldinfo
, 0)) {
733 con2fb_map
[unit
] = oldidx
;
734 if (!found
&& newinfo
->fbops
->fb_release
)
735 newinfo
->fbops
->fb_release(newinfo
, 0);
737 module_put(newinfo
->fbops
->owner
);
742 fbcon_del_cursor_timer(oldinfo
);
743 kfree(ops
->cursor_state
.mask
);
744 kfree(ops
->cursor_data
);
745 kfree(ops
->cursor_src
);
746 kfree(ops
->fontbuffer
);
747 kfree(oldinfo
->fbcon_par
);
748 oldinfo
->fbcon_par
= NULL
;
749 module_put(oldinfo
->fbops
->owner
);
751 If oldinfo and newinfo are driving the same hardware,
752 the fb_release() method of oldinfo may attempt to
753 restore the hardware state. This will leave the
754 newinfo in an undefined state. Thus, a call to
755 fb_set_par() may be needed for the newinfo.
757 if (newinfo
&& newinfo
->fbops
->fb_set_par
) {
758 ret
= newinfo
->fbops
->fb_set_par(newinfo
);
761 printk(KERN_ERR
"con2fb_release_oldinfo: "
762 "detected unhandled fb_set_par error, "
763 "error code %d\n", ret
);
770 static void con2fb_init_display(struct vc_data
*vc
, struct fb_info
*info
,
771 int unit
, int show_logo
)
773 struct fbcon_ops
*ops
= info
->fbcon_par
;
776 ops
->currcon
= fg_console
;
778 if (info
->fbops
->fb_set_par
&& !(ops
->flags
& FBCON_FLAGS_INIT
)) {
779 ret
= info
->fbops
->fb_set_par(info
);
782 printk(KERN_ERR
"con2fb_init_display: detected "
783 "unhandled fb_set_par error, "
784 "error code %d\n", ret
);
787 ops
->flags
|= FBCON_FLAGS_INIT
;
789 fbcon_set_disp(info
, &info
->var
, unit
);
792 struct vc_data
*fg_vc
= vc_cons
[fg_console
].d
;
793 struct fb_info
*fg_info
=
794 registered_fb
[con2fb_map
[fg_console
]];
796 fbcon_prepare_logo(fg_vc
, fg_info
, fg_vc
->vc_cols
,
797 fg_vc
->vc_rows
, fg_vc
->vc_cols
,
801 update_screen(vc_cons
[fg_console
].d
);
805 * set_con2fb_map - map console to frame buffer device
806 * @unit: virtual console number to map
807 * @newidx: frame buffer index to map virtual console to
808 * @user: user request
810 * Maps a virtual console @unit to a frame buffer device
813 * This should be called with the console lock held.
815 static int set_con2fb_map(int unit
, int newidx
, int user
)
817 struct vc_data
*vc
= vc_cons
[unit
].d
;
818 int oldidx
= con2fb_map
[unit
];
819 struct fb_info
*info
= registered_fb
[newidx
];
820 struct fb_info
*oldinfo
= NULL
;
823 if (oldidx
== newidx
)
829 if (!search_for_mapped_con() || !con_is_bound(&fb_con
)) {
831 return do_fbcon_takeover(0);
835 oldinfo
= registered_fb
[oldidx
];
837 found
= search_fb_in_map(newidx
);
839 con2fb_map
[unit
] = newidx
;
841 err
= con2fb_acquire_newinfo(vc
, info
, unit
, oldidx
);
845 * If old fb is not mapped to any of the consoles,
846 * fbcon should release it.
848 if (!err
&& oldinfo
&& !search_fb_in_map(oldidx
))
849 err
= con2fb_release_oldinfo(vc
, oldinfo
, info
, unit
, oldidx
,
853 int show_logo
= (fg_console
== 0 && !user
&&
854 logo_shown
!= FBCON_LOGO_DONTSHOW
);
857 fbcon_add_cursor_timer(info
);
858 con2fb_map_boot
[unit
] = newidx
;
859 con2fb_init_display(vc
, info
, unit
, show_logo
);
862 if (!search_fb_in_map(info_idx
))
869 * Low Level Operations
871 /* NOTE: fbcon cannot be __init: it may be called from do_take_over_console later */
872 static int var_to_display(struct display
*disp
,
873 struct fb_var_screeninfo
*var
,
874 struct fb_info
*info
)
876 disp
->xres_virtual
= var
->xres_virtual
;
877 disp
->yres_virtual
= var
->yres_virtual
;
878 disp
->bits_per_pixel
= var
->bits_per_pixel
;
879 disp
->grayscale
= var
->grayscale
;
880 disp
->nonstd
= var
->nonstd
;
881 disp
->accel_flags
= var
->accel_flags
;
882 disp
->height
= var
->height
;
883 disp
->width
= var
->width
;
884 disp
->red
= var
->red
;
885 disp
->green
= var
->green
;
886 disp
->blue
= var
->blue
;
887 disp
->transp
= var
->transp
;
888 disp
->rotate
= var
->rotate
;
889 disp
->mode
= fb_match_mode(var
, &info
->modelist
);
890 if (disp
->mode
== NULL
)
891 /* This should not happen */
896 static void display_to_var(struct fb_var_screeninfo
*var
,
897 struct display
*disp
)
899 fb_videomode_to_var(var
, disp
->mode
);
900 var
->xres_virtual
= disp
->xres_virtual
;
901 var
->yres_virtual
= disp
->yres_virtual
;
902 var
->bits_per_pixel
= disp
->bits_per_pixel
;
903 var
->grayscale
= disp
->grayscale
;
904 var
->nonstd
= disp
->nonstd
;
905 var
->accel_flags
= disp
->accel_flags
;
906 var
->height
= disp
->height
;
907 var
->width
= disp
->width
;
908 var
->red
= disp
->red
;
909 var
->green
= disp
->green
;
910 var
->blue
= disp
->blue
;
911 var
->transp
= disp
->transp
;
912 var
->rotate
= disp
->rotate
;
915 static const char *fbcon_startup(void)
917 const char *display_desc
= "frame buffer device";
918 struct display
*p
= &fb_display
[fg_console
];
919 struct vc_data
*vc
= vc_cons
[fg_console
].d
;
920 const struct font_desc
*font
= NULL
;
921 struct module
*owner
;
922 struct fb_info
*info
= NULL
;
923 struct fbcon_ops
*ops
;
927 * If num_registered_fb is zero, this is a call for the dummy part.
928 * The frame buffer devices weren't initialized yet.
930 if (!num_registered_fb
|| info_idx
== -1)
933 * Instead of blindly using registered_fb[0], we use info_idx, set by
936 info
= registered_fb
[info_idx
];
940 owner
= info
->fbops
->owner
;
941 if (!try_module_get(owner
))
943 if (info
->fbops
->fb_open
&& info
->fbops
->fb_open(info
, 0)) {
948 ops
= kzalloc(sizeof(struct fbcon_ops
), GFP_KERNEL
);
956 ops
->cur_rotate
= -1;
957 ops
->cur_blink_jiffies
= HZ
/ 5;
958 info
->fbcon_par
= ops
;
959 p
->con_rotate
= initial_rotation
;
960 set_blitting_type(vc
, info
);
962 if (info
->fix
.type
!= FB_TYPE_TEXT
) {
963 if (fbcon_softback_size
) {
967 kmalloc(fbcon_softback_size
,
970 fbcon_softback_size
= 0;
976 kfree((void *) softback_buf
);
982 softback_in
= softback_top
= softback_curr
=
987 /* Setup default font */
988 if (!p
->fontdata
&& !vc
->vc_font
.data
) {
989 if (!fontname
[0] || !(font
= find_font(fontname
)))
990 font
= get_default_font(info
->var
.xres
,
993 info
->pixmap
.blit_y
);
994 vc
->vc_font
.width
= font
->width
;
995 vc
->vc_font
.height
= font
->height
;
996 vc
->vc_font
.data
= (void *)(p
->fontdata
= font
->data
);
997 vc
->vc_font
.charcount
= 256; /* FIXME Need to support more fonts */
999 p
->fontdata
= vc
->vc_font
.data
;
1002 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
1003 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
1004 cols
/= vc
->vc_font
.width
;
1005 rows
/= vc
->vc_font
.height
;
1006 vc_resize(vc
, cols
, rows
);
1008 DPRINTK("mode: %s\n", info
->fix
.id
);
1009 DPRINTK("visual: %d\n", info
->fix
.visual
);
1010 DPRINTK("res: %dx%d-%d\n", info
->var
.xres
,
1012 info
->var
.bits_per_pixel
);
1014 fbcon_add_cursor_timer(info
);
1015 fbcon_has_exited
= 0;
1016 return display_desc
;
1019 static void fbcon_init(struct vc_data
*vc
, int init
)
1021 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1022 struct fbcon_ops
*ops
;
1023 struct vc_data
**default_mode
= vc
->vc_display_fg
;
1024 struct vc_data
*svc
= *default_mode
;
1025 struct display
*t
, *p
= &fb_display
[vc
->vc_num
];
1026 int logo
= 1, new_rows
, new_cols
, rows
, cols
, charcnt
= 256;
1029 if (info_idx
== -1 || info
== NULL
)
1034 if (vc
!= svc
|| logo_shown
== FBCON_LOGO_DONTSHOW
||
1035 (info
->fix
.type
== FB_TYPE_TEXT
))
1038 if (var_to_display(p
, &info
->var
, info
))
1041 if (!info
->fbcon_par
)
1042 con2fb_acquire_newinfo(vc
, info
, vc
->vc_num
, -1);
1044 /* If we are not the first console on this
1045 fb, copy the font from that console */
1046 t
= &fb_display
[fg_console
];
1049 struct vc_data
*fvc
= vc_cons
[fg_console
].d
;
1051 vc
->vc_font
.data
= (void *)(p
->fontdata
=
1053 vc
->vc_font
.width
= fvc
->vc_font
.width
;
1054 vc
->vc_font
.height
= fvc
->vc_font
.height
;
1055 p
->userfont
= t
->userfont
;
1058 REFCOUNT(p
->fontdata
)++;
1060 const struct font_desc
*font
= NULL
;
1062 if (!fontname
[0] || !(font
= find_font(fontname
)))
1063 font
= get_default_font(info
->var
.xres
,
1065 info
->pixmap
.blit_x
,
1066 info
->pixmap
.blit_y
);
1067 vc
->vc_font
.width
= font
->width
;
1068 vc
->vc_font
.height
= font
->height
;
1069 vc
->vc_font
.data
= (void *)(p
->fontdata
= font
->data
);
1070 vc
->vc_font
.charcount
= 256; /* FIXME Need to
1071 support more fonts */
1076 charcnt
= FNTCHARCNT(p
->fontdata
);
1078 vc
->vc_panic_force_write
= !!(info
->flags
& FBINFO_CAN_FORCE_OUTPUT
);
1079 vc
->vc_can_do_color
= (fb_get_color_depth(&info
->var
, &info
->fix
)!=1);
1080 vc
->vc_complement_mask
= vc
->vc_can_do_color
? 0x7700 : 0x0800;
1081 if (charcnt
== 256) {
1082 vc
->vc_hi_font_mask
= 0;
1084 vc
->vc_hi_font_mask
= 0x100;
1085 if (vc
->vc_can_do_color
)
1086 vc
->vc_complement_mask
<<= 1;
1089 if (!*svc
->vc_uni_pagedir_loc
)
1090 con_set_default_unimap(svc
);
1091 if (!*vc
->vc_uni_pagedir_loc
)
1092 con_copy_unimap(vc
, svc
);
1094 ops
= info
->fbcon_par
;
1095 ops
->cur_blink_jiffies
= msecs_to_jiffies(vc
->vc_cur_blink_ms
);
1096 p
->con_rotate
= initial_rotation
;
1097 set_blitting_type(vc
, info
);
1101 new_cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
1102 new_rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
1103 new_cols
/= vc
->vc_font
.width
;
1104 new_rows
/= vc
->vc_font
.height
;
1107 * We must always set the mode. The mode of the previous console
1108 * driver could be in the same resolution but we are using different
1109 * hardware so we have to initialize the hardware.
1111 * We need to do it in fbcon_init() to prevent screen corruption.
1113 if (con_is_visible(vc
) && vc
->vc_mode
== KD_TEXT
) {
1114 if (info
->fbops
->fb_set_par
&&
1115 !(ops
->flags
& FBCON_FLAGS_INIT
)) {
1116 ret
= info
->fbops
->fb_set_par(info
);
1119 printk(KERN_ERR
"fbcon_init: detected "
1120 "unhandled fb_set_par error, "
1121 "error code %d\n", ret
);
1124 ops
->flags
|= FBCON_FLAGS_INIT
;
1129 if ((cap
& FBINFO_HWACCEL_COPYAREA
) &&
1130 !(cap
& FBINFO_HWACCEL_DISABLED
))
1131 p
->scrollmode
= SCROLL_MOVE
;
1132 else /* default to something safe */
1133 p
->scrollmode
= SCROLL_REDRAW
;
1136 * ++guenther: console.c:vc_allocate() relies on initializing
1137 * vc_{cols,rows}, but we must not set those if we are only
1138 * resizing the console.
1141 vc
->vc_cols
= new_cols
;
1142 vc
->vc_rows
= new_rows
;
1144 vc_resize(vc
, new_cols
, new_rows
);
1147 fbcon_prepare_logo(vc
, info
, cols
, rows
, new_cols
, new_rows
);
1149 if (vc
== svc
&& softback_buf
)
1150 fbcon_update_softback(vc
);
1152 if (ops
->rotate_font
&& ops
->rotate_font(info
, vc
)) {
1153 ops
->rotate
= FB_ROTATE_UR
;
1154 set_blitting_type(vc
, info
);
1157 ops
->p
= &fb_display
[fg_console
];
1160 static void fbcon_free_font(struct display
*p
, bool freefont
)
1162 if (freefont
&& p
->userfont
&& p
->fontdata
&& (--REFCOUNT(p
->fontdata
) == 0))
1163 kfree(p
->fontdata
- FONT_EXTRA_WORDS
* sizeof(int));
1168 static void fbcon_deinit(struct vc_data
*vc
)
1170 struct display
*p
= &fb_display
[vc
->vc_num
];
1171 struct fb_info
*info
;
1172 struct fbcon_ops
*ops
;
1174 bool free_font
= true;
1176 idx
= con2fb_map
[vc
->vc_num
];
1181 info
= registered_fb
[idx
];
1186 if (info
->flags
& FBINFO_MISC_FIRMWARE
)
1188 ops
= info
->fbcon_par
;
1193 if (con_is_visible(vc
))
1194 fbcon_del_cursor_timer(info
);
1196 ops
->flags
&= ~FBCON_FLAGS_INIT
;
1199 fbcon_free_font(p
, free_font
);
1201 vc
->vc_font
.data
= NULL
;
1203 if (!con_is_bound(&fb_con
))
1209 /* ====================================================================== */
1211 /* fbcon_XXX routines - interface used by the world
1213 * This system is now divided into two levels because of complications
1214 * caused by hardware scrolling. Top level functions:
1216 * fbcon_bmove(), fbcon_clear(), fbcon_putc(), fbcon_clear_margins()
1218 * handles y values in range [0, scr_height-1] that correspond to real
1219 * screen positions. y_wrap shift means that first line of bitmap may be
1220 * anywhere on this display. These functions convert lineoffsets to
1221 * bitmap offsets and deal with the wrap-around case by splitting blits.
1223 * fbcon_bmove_physical_8() -- These functions fast implementations
1224 * fbcon_clear_physical_8() -- of original fbcon_XXX fns.
1225 * fbcon_putc_physical_8() -- (font width != 8) may be added later
1229 * At the moment fbcon_putc() cannot blit across vertical wrap boundary
1230 * Implies should only really hardware scroll in rows. Only reason for
1231 * restriction is simplicity & efficiency at the moment.
1234 static void fbcon_clear(struct vc_data
*vc
, int sy
, int sx
, int height
,
1237 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1238 struct fbcon_ops
*ops
= info
->fbcon_par
;
1240 struct display
*p
= &fb_display
[vc
->vc_num
];
1243 if (fbcon_is_inactive(vc
, info
))
1246 if (!height
|| !width
)
1249 if (sy
< vc
->vc_top
&& vc
->vc_top
== logo_lines
) {
1252 * If the font dimensions are not an integral of the display
1253 * dimensions then the ops->clear below won't end up clearing
1254 * the margins. Call clear_margins here in case the logo
1255 * bitmap stretched into the margin area.
1257 fbcon_clear_margins(vc
, 0);
1260 /* Split blits that cross physical y_wrap boundary */
1262 y_break
= p
->vrows
- p
->yscroll
;
1263 if (sy
< y_break
&& sy
+ height
- 1 >= y_break
) {
1264 u_int b
= y_break
- sy
;
1265 ops
->clear(vc
, info
, real_y(p
, sy
), sx
, b
, width
);
1266 ops
->clear(vc
, info
, real_y(p
, sy
+ b
), sx
, height
- b
,
1269 ops
->clear(vc
, info
, real_y(p
, sy
), sx
, height
, width
);
1272 static void fbcon_putcs(struct vc_data
*vc
, const unsigned short *s
,
1273 int count
, int ypos
, int xpos
)
1275 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1276 struct display
*p
= &fb_display
[vc
->vc_num
];
1277 struct fbcon_ops
*ops
= info
->fbcon_par
;
1279 if (!fbcon_is_inactive(vc
, info
))
1280 ops
->putcs(vc
, info
, s
, count
, real_y(p
, ypos
), xpos
,
1281 get_color(vc
, info
, scr_readw(s
), 1),
1282 get_color(vc
, info
, scr_readw(s
), 0));
1285 static void fbcon_putc(struct vc_data
*vc
, int c
, int ypos
, int xpos
)
1289 scr_writew(c
, &chr
);
1290 fbcon_putcs(vc
, &chr
, 1, ypos
, xpos
);
1293 static void fbcon_clear_margins(struct vc_data
*vc
, int bottom_only
)
1295 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1296 struct fbcon_ops
*ops
= info
->fbcon_par
;
1298 if (!fbcon_is_inactive(vc
, info
))
1299 ops
->clear_margins(vc
, info
, bottom_only
);
1302 static void fbcon_cursor(struct vc_data
*vc
, int mode
)
1304 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1305 struct fbcon_ops
*ops
= info
->fbcon_par
;
1307 int c
= scr_readw((u16
*) vc
->vc_pos
);
1309 ops
->cur_blink_jiffies
= msecs_to_jiffies(vc
->vc_cur_blink_ms
);
1311 if (fbcon_is_inactive(vc
, info
) || vc
->vc_deccm
!= 1)
1314 if (vc
->vc_cursor_type
& 0x10)
1315 fbcon_del_cursor_timer(info
);
1317 fbcon_add_cursor_timer(info
);
1319 ops
->cursor_flash
= (mode
== CM_ERASE
) ? 0 : 1;
1320 if (mode
& CM_SOFTBACK
) {
1321 mode
&= ~CM_SOFTBACK
;
1325 fbcon_set_origin(vc
);
1329 ops
->cursor(vc
, info
, mode
, y
, get_color(vc
, info
, c
, 1),
1330 get_color(vc
, info
, c
, 0));
1333 static int scrollback_phys_max
= 0;
1334 static int scrollback_max
= 0;
1335 static int scrollback_current
= 0;
1337 static void fbcon_set_disp(struct fb_info
*info
, struct fb_var_screeninfo
*var
,
1340 struct display
*p
, *t
;
1341 struct vc_data
**default_mode
, *vc
;
1342 struct vc_data
*svc
;
1343 struct fbcon_ops
*ops
= info
->fbcon_par
;
1344 int rows
, cols
, charcnt
= 256;
1346 p
= &fb_display
[unit
];
1348 if (var_to_display(p
, var
, info
))
1351 vc
= vc_cons
[unit
].d
;
1356 default_mode
= vc
->vc_display_fg
;
1357 svc
= *default_mode
;
1358 t
= &fb_display
[svc
->vc_num
];
1360 if (!vc
->vc_font
.data
) {
1361 vc
->vc_font
.data
= (void *)(p
->fontdata
= t
->fontdata
);
1362 vc
->vc_font
.width
= (*default_mode
)->vc_font
.width
;
1363 vc
->vc_font
.height
= (*default_mode
)->vc_font
.height
;
1364 p
->userfont
= t
->userfont
;
1366 REFCOUNT(p
->fontdata
)++;
1369 charcnt
= FNTCHARCNT(p
->fontdata
);
1371 var
->activate
= FB_ACTIVATE_NOW
;
1372 info
->var
.activate
= var
->activate
;
1373 var
->yoffset
= info
->var
.yoffset
;
1374 var
->xoffset
= info
->var
.xoffset
;
1375 fb_set_var(info
, var
);
1376 ops
->var
= info
->var
;
1377 vc
->vc_can_do_color
= (fb_get_color_depth(&info
->var
, &info
->fix
)!=1);
1378 vc
->vc_complement_mask
= vc
->vc_can_do_color
? 0x7700 : 0x0800;
1379 if (charcnt
== 256) {
1380 vc
->vc_hi_font_mask
= 0;
1382 vc
->vc_hi_font_mask
= 0x100;
1383 if (vc
->vc_can_do_color
)
1384 vc
->vc_complement_mask
<<= 1;
1387 if (!*svc
->vc_uni_pagedir_loc
)
1388 con_set_default_unimap(svc
);
1389 if (!*vc
->vc_uni_pagedir_loc
)
1390 con_copy_unimap(vc
, svc
);
1392 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
1393 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
1394 cols
/= vc
->vc_font
.width
;
1395 rows
/= vc
->vc_font
.height
;
1396 vc_resize(vc
, cols
, rows
);
1398 if (con_is_visible(vc
)) {
1401 fbcon_update_softback(vc
);
1405 static __inline__
void ywrap_up(struct vc_data
*vc
, int count
)
1407 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1408 struct fbcon_ops
*ops
= info
->fbcon_par
;
1409 struct display
*p
= &fb_display
[vc
->vc_num
];
1411 p
->yscroll
+= count
;
1412 if (p
->yscroll
>= p
->vrows
) /* Deal with wrap */
1413 p
->yscroll
-= p
->vrows
;
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 scrollback_max
+= count
;
1419 if (scrollback_max
> scrollback_phys_max
)
1420 scrollback_max
= scrollback_phys_max
;
1421 scrollback_current
= 0;
1424 static __inline__
void ywrap_down(struct vc_data
*vc
, int count
)
1426 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1427 struct fbcon_ops
*ops
= info
->fbcon_par
;
1428 struct display
*p
= &fb_display
[vc
->vc_num
];
1430 p
->yscroll
-= count
;
1431 if (p
->yscroll
< 0) /* Deal with wrap */
1432 p
->yscroll
+= p
->vrows
;
1433 ops
->var
.xoffset
= 0;
1434 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1435 ops
->var
.vmode
|= FB_VMODE_YWRAP
;
1436 ops
->update_start(info
);
1437 scrollback_max
-= count
;
1438 if (scrollback_max
< 0)
1440 scrollback_current
= 0;
1443 static __inline__
void ypan_up(struct vc_data
*vc
, int count
)
1445 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1446 struct display
*p
= &fb_display
[vc
->vc_num
];
1447 struct fbcon_ops
*ops
= info
->fbcon_par
;
1449 p
->yscroll
+= count
;
1450 if (p
->yscroll
> p
->vrows
- vc
->vc_rows
) {
1451 ops
->bmove(vc
, info
, p
->vrows
- vc
->vc_rows
,
1452 0, 0, 0, vc
->vc_rows
, vc
->vc_cols
);
1453 p
->yscroll
-= p
->vrows
- vc
->vc_rows
;
1456 ops
->var
.xoffset
= 0;
1457 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1458 ops
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1459 ops
->update_start(info
);
1460 fbcon_clear_margins(vc
, 1);
1461 scrollback_max
+= count
;
1462 if (scrollback_max
> scrollback_phys_max
)
1463 scrollback_max
= scrollback_phys_max
;
1464 scrollback_current
= 0;
1467 static __inline__
void ypan_up_redraw(struct vc_data
*vc
, int t
, int count
)
1469 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1470 struct fbcon_ops
*ops
= info
->fbcon_par
;
1471 struct display
*p
= &fb_display
[vc
->vc_num
];
1473 p
->yscroll
+= count
;
1475 if (p
->yscroll
> p
->vrows
- vc
->vc_rows
) {
1476 p
->yscroll
-= p
->vrows
- vc
->vc_rows
;
1477 fbcon_redraw_move(vc
, p
, t
+ count
, vc
->vc_rows
- count
, t
);
1480 ops
->var
.xoffset
= 0;
1481 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1482 ops
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1483 ops
->update_start(info
);
1484 fbcon_clear_margins(vc
, 1);
1485 scrollback_max
+= count
;
1486 if (scrollback_max
> scrollback_phys_max
)
1487 scrollback_max
= scrollback_phys_max
;
1488 scrollback_current
= 0;
1491 static __inline__
void ypan_down(struct vc_data
*vc
, int count
)
1493 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1494 struct display
*p
= &fb_display
[vc
->vc_num
];
1495 struct fbcon_ops
*ops
= info
->fbcon_par
;
1497 p
->yscroll
-= count
;
1498 if (p
->yscroll
< 0) {
1499 ops
->bmove(vc
, info
, 0, 0, p
->vrows
- vc
->vc_rows
,
1500 0, vc
->vc_rows
, vc
->vc_cols
);
1501 p
->yscroll
+= p
->vrows
- vc
->vc_rows
;
1504 ops
->var
.xoffset
= 0;
1505 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1506 ops
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1507 ops
->update_start(info
);
1508 fbcon_clear_margins(vc
, 1);
1509 scrollback_max
-= count
;
1510 if (scrollback_max
< 0)
1512 scrollback_current
= 0;
1515 static __inline__
void ypan_down_redraw(struct vc_data
*vc
, int t
, int count
)
1517 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1518 struct fbcon_ops
*ops
= info
->fbcon_par
;
1519 struct display
*p
= &fb_display
[vc
->vc_num
];
1521 p
->yscroll
-= count
;
1523 if (p
->yscroll
< 0) {
1524 p
->yscroll
+= p
->vrows
- vc
->vc_rows
;
1525 fbcon_redraw_move(vc
, p
, t
, vc
->vc_rows
- count
, t
+ count
);
1528 ops
->var
.xoffset
= 0;
1529 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1530 ops
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1531 ops
->update_start(info
);
1532 fbcon_clear_margins(vc
, 1);
1533 scrollback_max
-= count
;
1534 if (scrollback_max
< 0)
1536 scrollback_current
= 0;
1539 static void fbcon_redraw_softback(struct vc_data
*vc
, struct display
*p
,
1542 int count
= vc
->vc_rows
;
1543 unsigned short *d
, *s
;
1547 d
= (u16
*) softback_curr
;
1548 if (d
== (u16
*) softback_in
)
1549 d
= (u16
*) vc
->vc_origin
;
1550 n
= softback_curr
+ delta
* vc
->vc_size_row
;
1551 softback_lines
-= delta
;
1553 if (softback_curr
< softback_top
&& n
< softback_buf
) {
1554 n
+= softback_end
- softback_buf
;
1555 if (n
< softback_top
) {
1557 (softback_top
- n
) / vc
->vc_size_row
;
1560 } else if (softback_curr
>= softback_top
1561 && n
< softback_top
) {
1563 (softback_top
- n
) / vc
->vc_size_row
;
1567 if (softback_curr
> softback_in
&& n
>= softback_end
) {
1568 n
+= softback_buf
- softback_end
;
1569 if (n
> softback_in
) {
1573 } else if (softback_curr
<= softback_in
&& n
> softback_in
) {
1578 if (n
== softback_curr
)
1581 s
= (u16
*) softback_curr
;
1582 if (s
== (u16
*) softback_in
)
1583 s
= (u16
*) vc
->vc_origin
;
1585 unsigned short *start
;
1589 unsigned short attr
= 1;
1592 le
= advance_row(s
, 1);
1595 if (attr
!= (c
& 0xff00)) {
1598 fbcon_putcs(vc
, start
, s
- start
,
1604 if (c
== scr_readw(d
)) {
1606 fbcon_putcs(vc
, start
, s
- start
,
1619 fbcon_putcs(vc
, start
, s
- start
, line
, x
);
1621 if (d
== (u16
*) softback_end
)
1622 d
= (u16
*) softback_buf
;
1623 if (d
== (u16
*) softback_in
)
1624 d
= (u16
*) vc
->vc_origin
;
1625 if (s
== (u16
*) softback_end
)
1626 s
= (u16
*) softback_buf
;
1627 if (s
== (u16
*) softback_in
)
1628 s
= (u16
*) vc
->vc_origin
;
1632 static void fbcon_redraw_move(struct vc_data
*vc
, struct display
*p
,
1633 int line
, int count
, int dy
)
1635 unsigned short *s
= (unsigned short *)
1636 (vc
->vc_origin
+ vc
->vc_size_row
* line
);
1639 unsigned short *start
= s
;
1640 unsigned short *le
= advance_row(s
, 1);
1643 unsigned short attr
= 1;
1647 if (attr
!= (c
& 0xff00)) {
1650 fbcon_putcs(vc
, start
, s
- start
,
1656 console_conditional_schedule();
1660 fbcon_putcs(vc
, start
, s
- start
, dy
, x
);
1661 console_conditional_schedule();
1666 static void fbcon_redraw_blit(struct vc_data
*vc
, struct fb_info
*info
,
1667 struct display
*p
, int line
, int count
, int ycount
)
1669 int offset
= ycount
* vc
->vc_cols
;
1670 unsigned short *d
= (unsigned short *)
1671 (vc
->vc_origin
+ vc
->vc_size_row
* line
);
1672 unsigned short *s
= d
+ offset
;
1673 struct fbcon_ops
*ops
= info
->fbcon_par
;
1676 unsigned short *start
= s
;
1677 unsigned short *le
= advance_row(s
, 1);
1684 if (c
== scr_readw(d
)) {
1686 ops
->bmove(vc
, info
, line
+ ycount
, x
,
1687 line
, x
, 1, s
-start
);
1697 console_conditional_schedule();
1702 ops
->bmove(vc
, info
, line
+ ycount
, x
, line
, x
, 1,
1704 console_conditional_schedule();
1709 /* NOTE: We subtract two lines from these pointers */
1710 s
-= vc
->vc_size_row
;
1711 d
-= vc
->vc_size_row
;
1716 static void fbcon_redraw(struct vc_data
*vc
, struct display
*p
,
1717 int line
, int count
, int offset
)
1719 unsigned short *d
= (unsigned short *)
1720 (vc
->vc_origin
+ vc
->vc_size_row
* line
);
1721 unsigned short *s
= d
+ offset
;
1724 unsigned short *start
= s
;
1725 unsigned short *le
= advance_row(s
, 1);
1728 unsigned short attr
= 1;
1732 if (attr
!= (c
& 0xff00)) {
1735 fbcon_putcs(vc
, start
, s
- start
,
1741 if (c
== scr_readw(d
)) {
1743 fbcon_putcs(vc
, start
, s
- start
,
1753 console_conditional_schedule();
1758 fbcon_putcs(vc
, start
, s
- start
, line
, x
);
1759 console_conditional_schedule();
1764 /* NOTE: We subtract two lines from these pointers */
1765 s
-= vc
->vc_size_row
;
1766 d
-= vc
->vc_size_row
;
1771 static inline void fbcon_softback_note(struct vc_data
*vc
, int t
,
1776 if (vc
->vc_num
!= fg_console
)
1778 p
= (unsigned short *) (vc
->vc_origin
+ t
* vc
->vc_size_row
);
1781 scr_memcpyw((u16
*) softback_in
, p
, vc
->vc_size_row
);
1783 p
= advance_row(p
, 1);
1784 softback_in
+= vc
->vc_size_row
;
1785 if (softback_in
== softback_end
)
1786 softback_in
= softback_buf
;
1787 if (softback_in
== softback_top
) {
1788 softback_top
+= vc
->vc_size_row
;
1789 if (softback_top
== softback_end
)
1790 softback_top
= softback_buf
;
1793 softback_curr
= softback_in
;
1796 static bool fbcon_scroll(struct vc_data
*vc
, unsigned int t
, unsigned int b
,
1797 enum con_scroll dir
, unsigned int count
)
1799 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1800 struct display
*p
= &fb_display
[vc
->vc_num
];
1801 int scroll_partial
= info
->flags
& FBINFO_PARTIAL_PAN_OK
;
1803 if (fbcon_is_inactive(vc
, info
))
1806 fbcon_cursor(vc
, CM_ERASE
);
1809 * ++Geert: Only use ywrap/ypan if the console is in text mode
1810 * ++Andrew: Only use ypan on hardware text mode when scrolling the
1811 * whole screen (prevents flicker).
1816 if (count
> vc
->vc_rows
) /* Maximum realistic size */
1817 count
= vc
->vc_rows
;
1819 fbcon_softback_note(vc
, t
, count
);
1820 if (logo_shown
>= 0)
1822 switch (p
->scrollmode
) {
1824 fbcon_redraw_blit(vc
, info
, p
, t
, b
- t
- count
,
1826 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1827 scr_memsetw((unsigned short *) (vc
->vc_origin
+
1830 vc
->vc_video_erase_char
,
1831 vc
->vc_size_row
* count
);
1835 case SCROLL_WRAP_MOVE
:
1836 if (b
- t
- count
> 3 * vc
->vc_rows
>> 2) {
1838 fbcon_bmove(vc
, 0, 0, count
, 0, t
,
1840 ywrap_up(vc
, count
);
1841 if (vc
->vc_rows
- b
> 0)
1842 fbcon_bmove(vc
, b
- count
, 0, b
, 0,
1845 } else if (info
->flags
& FBINFO_READS_FAST
)
1846 fbcon_bmove(vc
, t
+ count
, 0, t
, 0,
1847 b
- t
- count
, vc
->vc_cols
);
1850 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1853 case SCROLL_PAN_REDRAW
:
1854 if ((p
->yscroll
+ count
<=
1855 2 * (p
->vrows
- vc
->vc_rows
))
1856 && ((!scroll_partial
&& (b
- t
== vc
->vc_rows
))
1859 3 * vc
->vc_rows
>> 2)))) {
1861 fbcon_redraw_move(vc
, p
, 0, t
, count
);
1862 ypan_up_redraw(vc
, t
, count
);
1863 if (vc
->vc_rows
- b
> 0)
1864 fbcon_redraw_move(vc
, p
, b
,
1865 vc
->vc_rows
- b
, b
);
1867 fbcon_redraw_move(vc
, p
, t
+ count
, b
- t
- count
, t
);
1868 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1871 case SCROLL_PAN_MOVE
:
1872 if ((p
->yscroll
+ count
<=
1873 2 * (p
->vrows
- vc
->vc_rows
))
1874 && ((!scroll_partial
&& (b
- t
== vc
->vc_rows
))
1877 3 * vc
->vc_rows
>> 2)))) {
1879 fbcon_bmove(vc
, 0, 0, count
, 0, t
,
1882 if (vc
->vc_rows
- b
> 0)
1883 fbcon_bmove(vc
, b
- count
, 0, b
, 0,
1886 } else if (info
->flags
& FBINFO_READS_FAST
)
1887 fbcon_bmove(vc
, t
+ count
, 0, t
, 0,
1888 b
- t
- count
, vc
->vc_cols
);
1891 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1896 fbcon_redraw(vc
, p
, t
, b
- t
- count
,
1897 count
* vc
->vc_cols
);
1898 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1899 scr_memsetw((unsigned short *) (vc
->vc_origin
+
1902 vc
->vc_video_erase_char
,
1903 vc
->vc_size_row
* count
);
1909 if (count
> vc
->vc_rows
) /* Maximum realistic size */
1910 count
= vc
->vc_rows
;
1911 if (logo_shown
>= 0)
1913 switch (p
->scrollmode
) {
1915 fbcon_redraw_blit(vc
, info
, p
, b
- 1, b
- t
- count
,
1917 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
1918 scr_memsetw((unsigned short *) (vc
->vc_origin
+
1921 vc
->vc_video_erase_char
,
1922 vc
->vc_size_row
* count
);
1926 case SCROLL_WRAP_MOVE
:
1927 if (b
- t
- count
> 3 * vc
->vc_rows
>> 2) {
1928 if (vc
->vc_rows
- b
> 0)
1929 fbcon_bmove(vc
, b
, 0, b
- count
, 0,
1932 ywrap_down(vc
, count
);
1934 fbcon_bmove(vc
, count
, 0, 0, 0, t
,
1936 } else if (info
->flags
& FBINFO_READS_FAST
)
1937 fbcon_bmove(vc
, t
, 0, t
+ count
, 0,
1938 b
- t
- count
, vc
->vc_cols
);
1941 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
1944 case SCROLL_PAN_MOVE
:
1945 if ((count
- p
->yscroll
<= p
->vrows
- vc
->vc_rows
)
1946 && ((!scroll_partial
&& (b
- t
== vc
->vc_rows
))
1949 3 * vc
->vc_rows
>> 2)))) {
1950 if (vc
->vc_rows
- b
> 0)
1951 fbcon_bmove(vc
, b
, 0, b
- count
, 0,
1954 ypan_down(vc
, count
);
1956 fbcon_bmove(vc
, count
, 0, 0, 0, t
,
1958 } else if (info
->flags
& FBINFO_READS_FAST
)
1959 fbcon_bmove(vc
, t
, 0, t
+ count
, 0,
1960 b
- t
- count
, vc
->vc_cols
);
1963 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
1966 case SCROLL_PAN_REDRAW
:
1967 if ((count
- p
->yscroll
<= p
->vrows
- vc
->vc_rows
)
1968 && ((!scroll_partial
&& (b
- t
== vc
->vc_rows
))
1971 3 * vc
->vc_rows
>> 2)))) {
1972 if (vc
->vc_rows
- b
> 0)
1973 fbcon_redraw_move(vc
, p
, b
, vc
->vc_rows
- b
,
1975 ypan_down_redraw(vc
, t
, count
);
1977 fbcon_redraw_move(vc
, p
, count
, t
, 0);
1979 fbcon_redraw_move(vc
, p
, t
, b
- t
- count
, t
+ count
);
1980 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
1985 fbcon_redraw(vc
, p
, b
- 1, b
- t
- count
,
1986 -count
* vc
->vc_cols
);
1987 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
1988 scr_memsetw((unsigned short *) (vc
->vc_origin
+
1991 vc
->vc_video_erase_char
,
1992 vc
->vc_size_row
* count
);
2000 static void fbcon_bmove(struct vc_data
*vc
, int sy
, int sx
, int dy
, int dx
,
2001 int height
, int width
)
2003 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2004 struct display
*p
= &fb_display
[vc
->vc_num
];
2006 if (fbcon_is_inactive(vc
, info
))
2009 if (!width
|| !height
)
2012 /* Split blits that cross physical y_wrap case.
2013 * Pathological case involves 4 blits, better to use recursive
2014 * code rather than unrolled case
2016 * Recursive invocations don't need to erase the cursor over and
2017 * over again, so we use fbcon_bmove_rec()
2019 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, height
, width
,
2020 p
->vrows
- p
->yscroll
);
2023 static void fbcon_bmove_rec(struct vc_data
*vc
, struct display
*p
, int sy
, int sx
,
2024 int dy
, int dx
, int height
, int width
, u_int y_break
)
2026 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2027 struct fbcon_ops
*ops
= info
->fbcon_par
;
2030 if (sy
< y_break
&& sy
+ height
> y_break
) {
2032 if (dy
< sy
) { /* Avoid trashing self */
2033 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, b
, width
,
2035 fbcon_bmove_rec(vc
, p
, sy
+ b
, sx
, dy
+ b
, dx
,
2036 height
- b
, width
, y_break
);
2038 fbcon_bmove_rec(vc
, p
, sy
+ b
, sx
, dy
+ b
, dx
,
2039 height
- b
, width
, y_break
);
2040 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, b
, width
,
2046 if (dy
< y_break
&& dy
+ height
> y_break
) {
2048 if (dy
< sy
) { /* Avoid trashing self */
2049 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, b
, width
,
2051 fbcon_bmove_rec(vc
, p
, sy
+ b
, sx
, dy
+ b
, dx
,
2052 height
- b
, width
, y_break
);
2054 fbcon_bmove_rec(vc
, p
, sy
+ b
, sx
, dy
+ b
, dx
,
2055 height
- b
, width
, y_break
);
2056 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, b
, width
,
2061 ops
->bmove(vc
, info
, real_y(p
, sy
), sx
, real_y(p
, dy
), dx
,
2065 static void updatescrollmode(struct display
*p
,
2066 struct fb_info
*info
,
2069 struct fbcon_ops
*ops
= info
->fbcon_par
;
2070 int fh
= vc
->vc_font
.height
;
2071 int cap
= info
->flags
;
2073 int ypan
= FBCON_SWAP(ops
->rotate
, info
->fix
.ypanstep
,
2074 info
->fix
.xpanstep
);
2075 int ywrap
= FBCON_SWAP(ops
->rotate
, info
->fix
.ywrapstep
, t
);
2076 int yres
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
2077 int vyres
= FBCON_SWAP(ops
->rotate
, info
->var
.yres_virtual
,
2078 info
->var
.xres_virtual
);
2079 int good_pan
= (cap
& FBINFO_HWACCEL_YPAN
) &&
2080 divides(ypan
, vc
->vc_font
.height
) && vyres
> yres
;
2081 int good_wrap
= (cap
& FBINFO_HWACCEL_YWRAP
) &&
2082 divides(ywrap
, vc
->vc_font
.height
) &&
2083 divides(vc
->vc_font
.height
, vyres
) &&
2084 divides(vc
->vc_font
.height
, yres
);
2085 int reading_fast
= cap
& FBINFO_READS_FAST
;
2086 int fast_copyarea
= (cap
& FBINFO_HWACCEL_COPYAREA
) &&
2087 !(cap
& FBINFO_HWACCEL_DISABLED
);
2088 int fast_imageblit
= (cap
& FBINFO_HWACCEL_IMAGEBLIT
) &&
2089 !(cap
& FBINFO_HWACCEL_DISABLED
);
2091 p
->vrows
= vyres
/fh
;
2092 if (yres
> (fh
* (vc
->vc_rows
+ 1)))
2093 p
->vrows
-= (yres
- (fh
* vc
->vc_rows
)) / fh
;
2094 if ((yres
% fh
) && (vyres
% fh
< yres
% fh
))
2097 if (good_wrap
|| good_pan
) {
2098 if (reading_fast
|| fast_copyarea
)
2099 p
->scrollmode
= good_wrap
?
2100 SCROLL_WRAP_MOVE
: SCROLL_PAN_MOVE
;
2102 p
->scrollmode
= good_wrap
? SCROLL_REDRAW
:
2105 if (reading_fast
|| (fast_copyarea
&& !fast_imageblit
))
2106 p
->scrollmode
= SCROLL_MOVE
;
2108 p
->scrollmode
= SCROLL_REDRAW
;
2112 static int fbcon_resize(struct vc_data
*vc
, unsigned int width
,
2113 unsigned int height
, unsigned int user
)
2115 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2116 struct fbcon_ops
*ops
= info
->fbcon_par
;
2117 struct display
*p
= &fb_display
[vc
->vc_num
];
2118 struct fb_var_screeninfo var
= info
->var
;
2119 int x_diff
, y_diff
, virt_w
, virt_h
, virt_fw
, virt_fh
;
2121 virt_w
= FBCON_SWAP(ops
->rotate
, width
, height
);
2122 virt_h
= FBCON_SWAP(ops
->rotate
, height
, width
);
2123 virt_fw
= FBCON_SWAP(ops
->rotate
, vc
->vc_font
.width
,
2124 vc
->vc_font
.height
);
2125 virt_fh
= FBCON_SWAP(ops
->rotate
, vc
->vc_font
.height
,
2127 var
.xres
= virt_w
* virt_fw
;
2128 var
.yres
= virt_h
* virt_fh
;
2129 x_diff
= info
->var
.xres
- var
.xres
;
2130 y_diff
= info
->var
.yres
- var
.yres
;
2131 if (x_diff
< 0 || x_diff
> virt_fw
||
2132 y_diff
< 0 || y_diff
> virt_fh
) {
2133 const struct fb_videomode
*mode
;
2135 DPRINTK("attempting resize %ix%i\n", var
.xres
, var
.yres
);
2136 mode
= fb_find_best_mode(&var
, &info
->modelist
);
2139 display_to_var(&var
, p
);
2140 fb_videomode_to_var(&var
, mode
);
2142 if (virt_w
> var
.xres
/virt_fw
|| virt_h
> var
.yres
/virt_fh
)
2145 DPRINTK("resize now %ix%i\n", var
.xres
, var
.yres
);
2146 if (con_is_visible(vc
)) {
2147 var
.activate
= FB_ACTIVATE_NOW
|
2149 fb_set_var(info
, &var
);
2151 var_to_display(p
, &info
->var
, info
);
2152 ops
->var
= info
->var
;
2154 updatescrollmode(p
, info
, vc
);
2158 static int fbcon_switch(struct vc_data
*vc
)
2160 struct fb_info
*info
, *old_info
= NULL
;
2161 struct fbcon_ops
*ops
;
2162 struct display
*p
= &fb_display
[vc
->vc_num
];
2163 struct fb_var_screeninfo var
;
2164 int i
, ret
, prev_console
, charcnt
= 256;
2166 info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2167 ops
= info
->fbcon_par
;
2171 fbcon_set_origin(vc
);
2172 softback_top
= softback_curr
= softback_in
= softback_buf
;
2174 fbcon_update_softback(vc
);
2177 if (logo_shown
>= 0) {
2178 struct vc_data
*conp2
= vc_cons
[logo_shown
].d
;
2180 if (conp2
->vc_top
== logo_lines
2181 && conp2
->vc_bottom
== conp2
->vc_rows
)
2183 logo_shown
= FBCON_LOGO_CANSHOW
;
2186 prev_console
= ops
->currcon
;
2187 if (prev_console
!= -1)
2188 old_info
= registered_fb
[con2fb_map
[prev_console
]];
2190 * FIXME: If we have multiple fbdev's loaded, we need to
2191 * update all info->currcon. Perhaps, we can place this
2192 * in a centralized structure, but this might break some
2195 * info->currcon = vc->vc_num;
2197 for (i
= 0; i
< FB_MAX
; i
++) {
2198 if (registered_fb
[i
] != NULL
&& registered_fb
[i
]->fbcon_par
) {
2199 struct fbcon_ops
*o
= registered_fb
[i
]->fbcon_par
;
2201 o
->currcon
= vc
->vc_num
;
2204 memset(&var
, 0, sizeof(struct fb_var_screeninfo
));
2205 display_to_var(&var
, p
);
2206 var
.activate
= FB_ACTIVATE_NOW
;
2209 * make sure we don't unnecessarily trip the memcmp()
2212 info
->var
.activate
= var
.activate
;
2213 var
.vmode
|= info
->var
.vmode
& ~FB_VMODE_MASK
;
2214 fb_set_var(info
, &var
);
2215 ops
->var
= info
->var
;
2217 if (old_info
!= NULL
&& (old_info
!= info
||
2218 info
->flags
& FBINFO_MISC_ALWAYS_SETPAR
)) {
2219 if (info
->fbops
->fb_set_par
) {
2220 ret
= info
->fbops
->fb_set_par(info
);
2223 printk(KERN_ERR
"fbcon_switch: detected "
2224 "unhandled fb_set_par error, "
2225 "error code %d\n", ret
);
2228 if (old_info
!= info
)
2229 fbcon_del_cursor_timer(old_info
);
2232 if (fbcon_is_inactive(vc
, info
) ||
2233 ops
->blank_state
!= FB_BLANK_UNBLANK
)
2234 fbcon_del_cursor_timer(info
);
2236 fbcon_add_cursor_timer(info
);
2238 set_blitting_type(vc
, info
);
2239 ops
->cursor_reset
= 1;
2241 if (ops
->rotate_font
&& ops
->rotate_font(info
, vc
)) {
2242 ops
->rotate
= FB_ROTATE_UR
;
2243 set_blitting_type(vc
, info
);
2246 vc
->vc_can_do_color
= (fb_get_color_depth(&info
->var
, &info
->fix
)!=1);
2247 vc
->vc_complement_mask
= vc
->vc_can_do_color
? 0x7700 : 0x0800;
2250 charcnt
= FNTCHARCNT(vc
->vc_font
.data
);
2253 vc
->vc_complement_mask
<<= 1;
2255 updatescrollmode(p
, info
, vc
);
2257 switch (p
->scrollmode
) {
2258 case SCROLL_WRAP_MOVE
:
2259 scrollback_phys_max
= p
->vrows
- vc
->vc_rows
;
2261 case SCROLL_PAN_MOVE
:
2262 case SCROLL_PAN_REDRAW
:
2263 scrollback_phys_max
= p
->vrows
- 2 * vc
->vc_rows
;
2264 if (scrollback_phys_max
< 0)
2265 scrollback_phys_max
= 0;
2268 scrollback_phys_max
= 0;
2273 scrollback_current
= 0;
2275 if (!fbcon_is_inactive(vc
, info
)) {
2276 ops
->var
.xoffset
= ops
->var
.yoffset
= p
->yscroll
= 0;
2277 ops
->update_start(info
);
2280 fbcon_set_palette(vc
, color_table
);
2281 fbcon_clear_margins(vc
, 0);
2283 if (logo_shown
== FBCON_LOGO_DRAW
) {
2285 logo_shown
= fg_console
;
2286 /* This is protected above by initmem_freed */
2287 fb_show_logo(info
, ops
->rotate
);
2289 vc
->vc_origin
+ vc
->vc_size_row
* vc
->vc_top
,
2290 vc
->vc_size_row
* (vc
->vc_bottom
-
2297 static void fbcon_generic_blank(struct vc_data
*vc
, struct fb_info
*info
,
2300 struct fb_event event
;
2303 unsigned short charmask
= vc
->vc_hi_font_mask
?
2305 unsigned short oldc
;
2307 oldc
= vc
->vc_video_erase_char
;
2308 vc
->vc_video_erase_char
&= charmask
;
2309 fbcon_clear(vc
, 0, 0, vc
->vc_rows
, vc
->vc_cols
);
2310 vc
->vc_video_erase_char
= oldc
;
2314 if (!lock_fb_info(info
))
2317 event
.data
= &blank
;
2318 fb_notifier_call_chain(FB_EVENT_CONBLANK
, &event
);
2319 unlock_fb_info(info
);
2322 static int fbcon_blank(struct vc_data
*vc
, int blank
, int mode_switch
)
2324 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2325 struct fbcon_ops
*ops
= info
->fbcon_par
;
2328 struct fb_var_screeninfo var
= info
->var
;
2333 var
.activate
= FB_ACTIVATE_NOW
| FB_ACTIVATE_FORCE
;
2334 fb_set_var(info
, &var
);
2336 ops
->var
= info
->var
;
2340 if (!fbcon_is_inactive(vc
, info
)) {
2341 if (ops
->blank_state
!= blank
) {
2342 ops
->blank_state
= blank
;
2343 fbcon_cursor(vc
, blank
? CM_ERASE
: CM_DRAW
);
2344 ops
->cursor_flash
= (!blank
);
2346 if (!(info
->flags
& FBINFO_MISC_USEREVENT
))
2347 if (fb_blank(info
, blank
))
2348 fbcon_generic_blank(vc
, info
, blank
);
2355 if (mode_switch
|| fbcon_is_inactive(vc
, info
) ||
2356 ops
->blank_state
!= FB_BLANK_UNBLANK
)
2357 fbcon_del_cursor_timer(info
);
2359 fbcon_add_cursor_timer(info
);
2364 static int fbcon_debug_enter(struct vc_data
*vc
)
2366 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2367 struct fbcon_ops
*ops
= info
->fbcon_par
;
2369 ops
->save_graphics
= ops
->graphics
;
2371 if (info
->fbops
->fb_debug_enter
)
2372 info
->fbops
->fb_debug_enter(info
);
2373 fbcon_set_palette(vc
, color_table
);
2377 static int fbcon_debug_leave(struct vc_data
*vc
)
2379 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2380 struct fbcon_ops
*ops
= info
->fbcon_par
;
2382 ops
->graphics
= ops
->save_graphics
;
2383 if (info
->fbops
->fb_debug_leave
)
2384 info
->fbops
->fb_debug_leave(info
);
2388 static int fbcon_get_font(struct vc_data
*vc
, struct console_font
*font
)
2390 u8
*fontdata
= vc
->vc_font
.data
;
2391 u8
*data
= font
->data
;
2394 font
->width
= vc
->vc_font
.width
;
2395 font
->height
= vc
->vc_font
.height
;
2396 font
->charcount
= vc
->vc_hi_font_mask
? 512 : 256;
2400 if (font
->width
<= 8) {
2401 j
= vc
->vc_font
.height
;
2402 for (i
= 0; i
< font
->charcount
; i
++) {
2403 memcpy(data
, fontdata
, j
);
2404 memset(data
+ j
, 0, 32 - j
);
2408 } else if (font
->width
<= 16) {
2409 j
= vc
->vc_font
.height
* 2;
2410 for (i
= 0; i
< font
->charcount
; i
++) {
2411 memcpy(data
, fontdata
, j
);
2412 memset(data
+ j
, 0, 64 - j
);
2416 } else if (font
->width
<= 24) {
2417 for (i
= 0; i
< font
->charcount
; i
++) {
2418 for (j
= 0; j
< vc
->vc_font
.height
; j
++) {
2419 *data
++ = fontdata
[0];
2420 *data
++ = fontdata
[1];
2421 *data
++ = fontdata
[2];
2422 fontdata
+= sizeof(u32
);
2424 memset(data
, 0, 3 * (32 - j
));
2425 data
+= 3 * (32 - j
);
2428 j
= vc
->vc_font
.height
* 4;
2429 for (i
= 0; i
< font
->charcount
; i
++) {
2430 memcpy(data
, fontdata
, j
);
2431 memset(data
+ j
, 0, 128 - j
);
2439 static int fbcon_do_set_font(struct vc_data
*vc
, int w
, int h
,
2440 const u8
* data
, int userfont
)
2442 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2443 struct fbcon_ops
*ops
= info
->fbcon_par
;
2444 struct display
*p
= &fb_display
[vc
->vc_num
];
2447 char *old_data
= NULL
;
2449 if (con_is_visible(vc
) && softback_lines
)
2450 fbcon_set_origin(vc
);
2452 resize
= (w
!= vc
->vc_font
.width
) || (h
!= vc
->vc_font
.height
);
2454 old_data
= vc
->vc_font
.data
;
2456 cnt
= FNTCHARCNT(data
);
2459 vc
->vc_font
.data
= (void *)(p
->fontdata
= data
);
2460 if ((p
->userfont
= userfont
))
2462 vc
->vc_font
.width
= w
;
2463 vc
->vc_font
.height
= h
;
2464 if (vc
->vc_hi_font_mask
&& cnt
== 256) {
2465 vc
->vc_hi_font_mask
= 0;
2466 if (vc
->vc_can_do_color
) {
2467 vc
->vc_complement_mask
>>= 1;
2468 vc
->vc_s_complement_mask
>>= 1;
2471 /* ++Edmund: reorder the attribute bits */
2472 if (vc
->vc_can_do_color
) {
2473 unsigned short *cp
=
2474 (unsigned short *) vc
->vc_origin
;
2475 int count
= vc
->vc_screenbuf_size
/ 2;
2477 for (; count
> 0; count
--, cp
++) {
2479 scr_writew(((c
& 0xfe00) >> 1) |
2482 c
= vc
->vc_video_erase_char
;
2483 vc
->vc_video_erase_char
=
2484 ((c
& 0xfe00) >> 1) | (c
& 0xff);
2487 } else if (!vc
->vc_hi_font_mask
&& cnt
== 512) {
2488 vc
->vc_hi_font_mask
= 0x100;
2489 if (vc
->vc_can_do_color
) {
2490 vc
->vc_complement_mask
<<= 1;
2491 vc
->vc_s_complement_mask
<<= 1;
2494 /* ++Edmund: reorder the attribute bits */
2496 unsigned short *cp
=
2497 (unsigned short *) vc
->vc_origin
;
2498 int count
= vc
->vc_screenbuf_size
/ 2;
2500 for (; count
> 0; count
--, cp
++) {
2501 unsigned short newc
;
2503 if (vc
->vc_can_do_color
)
2505 ((c
& 0xff00) << 1) | (c
&
2509 scr_writew(newc
, cp
);
2511 c
= vc
->vc_video_erase_char
;
2512 if (vc
->vc_can_do_color
) {
2513 vc
->vc_video_erase_char
=
2514 ((c
& 0xff00) << 1) | (c
& 0xff);
2517 vc
->vc_video_erase_char
= c
& ~0x100;
2525 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
2526 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
2529 vc_resize(vc
, cols
, rows
);
2530 if (con_is_visible(vc
) && softback_buf
)
2531 fbcon_update_softback(vc
);
2532 } else if (con_is_visible(vc
)
2533 && vc
->vc_mode
== KD_TEXT
) {
2534 fbcon_clear_margins(vc
, 0);
2538 if (old_data
&& (--REFCOUNT(old_data
) == 0))
2539 kfree(old_data
- FONT_EXTRA_WORDS
* sizeof(int));
2543 static int fbcon_copy_font(struct vc_data
*vc
, int con
)
2545 struct display
*od
= &fb_display
[con
];
2546 struct console_font
*f
= &vc
->vc_font
;
2548 if (od
->fontdata
== f
->data
)
2549 return 0; /* already the same font... */
2550 return fbcon_do_set_font(vc
, f
->width
, f
->height
, od
->fontdata
, od
->userfont
);
2554 * User asked to set font; we are guaranteed that
2555 * a) width and height are in range 1..32
2556 * b) charcount does not exceed 512
2557 * but lets not assume that, since someone might someday want to use larger
2558 * fonts. And charcount of 512 is small for unicode support.
2560 * However, user space gives the font in 32 rows , regardless of
2561 * actual font height. So a new API is needed if support for larger fonts
2562 * is ever implemented.
2565 static int fbcon_set_font(struct vc_data
*vc
, struct console_font
*font
, unsigned flags
)
2567 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2568 unsigned charcount
= font
->charcount
;
2569 int w
= font
->width
;
2570 int h
= font
->height
;
2573 u8
*new_data
, *data
= font
->data
;
2574 int pitch
= (font
->width
+7) >> 3;
2576 /* Is there a reason why fbconsole couldn't handle any charcount >256?
2577 * If not this check should be changed to charcount < 256 */
2578 if (charcount
!= 256 && charcount
!= 512)
2581 /* Make sure drawing engine can handle the font */
2582 if (!(info
->pixmap
.blit_x
& (1 << (font
->width
- 1))) ||
2583 !(info
->pixmap
.blit_y
& (1 << (font
->height
- 1))))
2586 /* Make sure driver can handle the font length */
2587 if (fbcon_invalid_charcount(info
, charcount
))
2590 size
= h
* pitch
* charcount
;
2592 new_data
= kmalloc(FONT_EXTRA_WORDS
* sizeof(int) + size
, GFP_USER
);
2597 new_data
+= FONT_EXTRA_WORDS
* sizeof(int);
2598 FNTSIZE(new_data
) = size
;
2599 FNTCHARCNT(new_data
) = charcount
;
2600 REFCOUNT(new_data
) = 0; /* usage counter */
2601 for (i
=0; i
< charcount
; i
++) {
2602 memcpy(new_data
+ i
*h
*pitch
, data
+ i
*32*pitch
, h
*pitch
);
2605 /* Since linux has a nice crc32 function use it for counting font
2607 csum
= crc32(0, new_data
, size
);
2609 FNTSUM(new_data
) = csum
;
2610 /* Check if the same font is on some other console already */
2611 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
2612 struct vc_data
*tmp
= vc_cons
[i
].d
;
2614 if (fb_display
[i
].userfont
&&
2615 fb_display
[i
].fontdata
&&
2616 FNTSUM(fb_display
[i
].fontdata
) == csum
&&
2617 FNTSIZE(fb_display
[i
].fontdata
) == size
&&
2618 tmp
->vc_font
.width
== w
&&
2619 !memcmp(fb_display
[i
].fontdata
, new_data
, size
)) {
2620 kfree(new_data
- FONT_EXTRA_WORDS
* sizeof(int));
2621 new_data
= (u8
*)fb_display
[i
].fontdata
;
2625 return fbcon_do_set_font(vc
, font
->width
, font
->height
, new_data
, 1);
2628 static int fbcon_set_def_font(struct vc_data
*vc
, struct console_font
*font
, char *name
)
2630 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2631 const struct font_desc
*f
;
2634 f
= get_default_font(info
->var
.xres
, info
->var
.yres
,
2635 info
->pixmap
.blit_x
, info
->pixmap
.blit_y
);
2636 else if (!(f
= find_font(name
)))
2639 font
->width
= f
->width
;
2640 font
->height
= f
->height
;
2641 return fbcon_do_set_font(vc
, f
->width
, f
->height
, f
->data
, 0);
2644 static u16 palette_red
[16];
2645 static u16 palette_green
[16];
2646 static u16 palette_blue
[16];
2648 static struct fb_cmap palette_cmap
= {
2649 0, 16, palette_red
, palette_green
, palette_blue
, NULL
2652 static void fbcon_set_palette(struct vc_data
*vc
, const unsigned char *table
)
2654 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2658 if (fbcon_is_inactive(vc
, info
))
2661 if (!con_is_visible(vc
))
2664 depth
= fb_get_color_depth(&info
->var
, &info
->fix
);
2666 for (i
= j
= 0; i
< 16; i
++) {
2668 val
= vc
->vc_palette
[j
++];
2669 palette_red
[k
] = (val
<< 8) | val
;
2670 val
= vc
->vc_palette
[j
++];
2671 palette_green
[k
] = (val
<< 8) | val
;
2672 val
= vc
->vc_palette
[j
++];
2673 palette_blue
[k
] = (val
<< 8) | val
;
2675 palette_cmap
.len
= 16;
2676 palette_cmap
.start
= 0;
2678 * If framebuffer is capable of less than 16 colors,
2679 * use default palette of fbcon.
2682 fb_copy_cmap(fb_default_cmap(1 << depth
), &palette_cmap
);
2684 fb_set_cmap(&palette_cmap
, info
);
2687 static u16
*fbcon_screen_pos(struct vc_data
*vc
, int offset
)
2692 if (vc
->vc_num
!= fg_console
|| !softback_lines
)
2693 return (u16
*) (vc
->vc_origin
+ offset
);
2694 line
= offset
/ vc
->vc_size_row
;
2695 if (line
>= softback_lines
)
2696 return (u16
*) (vc
->vc_origin
+ offset
-
2697 softback_lines
* vc
->vc_size_row
);
2698 p
= softback_curr
+ offset
;
2699 if (p
>= softback_end
)
2700 p
+= softback_buf
- softback_end
;
2704 static unsigned long fbcon_getxy(struct vc_data
*vc
, unsigned long pos
,
2710 if (pos
>= vc
->vc_origin
&& pos
< vc
->vc_scr_end
) {
2711 unsigned long offset
= (pos
- vc
->vc_origin
) / 2;
2713 x
= offset
% vc
->vc_cols
;
2714 y
= offset
/ vc
->vc_cols
;
2715 if (vc
->vc_num
== fg_console
)
2716 y
+= softback_lines
;
2717 ret
= pos
+ (vc
->vc_cols
- x
) * 2;
2718 } else if (vc
->vc_num
== fg_console
&& softback_lines
) {
2719 unsigned long offset
= pos
- softback_curr
;
2721 if (pos
< softback_curr
)
2722 offset
+= softback_end
- softback_buf
;
2724 x
= offset
% vc
->vc_cols
;
2725 y
= offset
/ vc
->vc_cols
;
2726 ret
= pos
+ (vc
->vc_cols
- x
) * 2;
2727 if (ret
== softback_end
)
2729 if (ret
== softback_in
)
2730 ret
= vc
->vc_origin
;
2732 /* Should not happen */
2734 ret
= vc
->vc_origin
;
2743 /* As we might be inside of softback, we may work with non-contiguous buffer,
2744 that's why we have to use a separate routine. */
2745 static void fbcon_invert_region(struct vc_data
*vc
, u16
* p
, int cnt
)
2748 u16 a
= scr_readw(p
);
2749 if (!vc
->vc_can_do_color
)
2751 else if (vc
->vc_hi_font_mask
== 0x100)
2752 a
= ((a
) & 0x11ff) | (((a
) & 0xe000) >> 4) |
2753 (((a
) & 0x0e00) << 4);
2755 a
= ((a
) & 0x88ff) | (((a
) & 0x7000) >> 4) |
2756 (((a
) & 0x0700) << 4);
2758 if (p
== (u16
*) softback_end
)
2759 p
= (u16
*) softback_buf
;
2760 if (p
== (u16
*) softback_in
)
2761 p
= (u16
*) vc
->vc_origin
;
2765 static void fbcon_scrolldelta(struct vc_data
*vc
, int lines
)
2767 struct fb_info
*info
= registered_fb
[con2fb_map
[fg_console
]];
2768 struct fbcon_ops
*ops
= info
->fbcon_par
;
2769 struct display
*disp
= &fb_display
[fg_console
];
2770 int offset
, limit
, scrollback_old
;
2773 if (vc
->vc_num
!= fg_console
)
2775 if (vc
->vc_mode
!= KD_TEXT
|| !lines
)
2777 if (logo_shown
>= 0) {
2778 struct vc_data
*conp2
= vc_cons
[logo_shown
].d
;
2780 if (conp2
->vc_top
== logo_lines
2781 && conp2
->vc_bottom
== conp2
->vc_rows
)
2783 if (logo_shown
== vc
->vc_num
) {
2789 logo_lines
* vc
->vc_size_row
;
2790 for (i
= 0; i
< logo_lines
; i
++) {
2791 if (p
== softback_top
)
2793 if (p
== softback_buf
)
2795 p
-= vc
->vc_size_row
;
2796 q
-= vc
->vc_size_row
;
2797 scr_memcpyw((u16
*) q
, (u16
*) p
,
2800 softback_in
= softback_curr
= p
;
2801 update_region(vc
, vc
->vc_origin
,
2802 logo_lines
* vc
->vc_cols
);
2804 logo_shown
= FBCON_LOGO_CANSHOW
;
2806 fbcon_cursor(vc
, CM_ERASE
| CM_SOFTBACK
);
2807 fbcon_redraw_softback(vc
, disp
, lines
);
2808 fbcon_cursor(vc
, CM_DRAW
| CM_SOFTBACK
);
2812 if (!scrollback_phys_max
)
2815 scrollback_old
= scrollback_current
;
2816 scrollback_current
-= lines
;
2817 if (scrollback_current
< 0)
2818 scrollback_current
= 0;
2819 else if (scrollback_current
> scrollback_max
)
2820 scrollback_current
= scrollback_max
;
2821 if (scrollback_current
== scrollback_old
)
2824 if (fbcon_is_inactive(vc
, info
))
2827 fbcon_cursor(vc
, CM_ERASE
);
2829 offset
= disp
->yscroll
- scrollback_current
;
2830 limit
= disp
->vrows
;
2831 switch (disp
->scrollmode
) {
2832 case SCROLL_WRAP_MOVE
:
2833 info
->var
.vmode
|= FB_VMODE_YWRAP
;
2835 case SCROLL_PAN_MOVE
:
2836 case SCROLL_PAN_REDRAW
:
2837 limit
-= vc
->vc_rows
;
2838 info
->var
.vmode
&= ~FB_VMODE_YWRAP
;
2843 else if (offset
>= limit
)
2846 ops
->var
.xoffset
= 0;
2847 ops
->var
.yoffset
= offset
* vc
->vc_font
.height
;
2848 ops
->update_start(info
);
2850 if (!scrollback_current
)
2851 fbcon_cursor(vc
, CM_DRAW
);
2854 static int fbcon_set_origin(struct vc_data
*vc
)
2857 fbcon_scrolldelta(vc
, softback_lines
);
2861 static void fbcon_suspended(struct fb_info
*info
)
2863 struct vc_data
*vc
= NULL
;
2864 struct fbcon_ops
*ops
= info
->fbcon_par
;
2866 if (!ops
|| ops
->currcon
< 0)
2868 vc
= vc_cons
[ops
->currcon
].d
;
2870 /* Clear cursor, restore saved data */
2871 fbcon_cursor(vc
, CM_ERASE
);
2874 static void fbcon_resumed(struct fb_info
*info
)
2877 struct fbcon_ops
*ops
= info
->fbcon_par
;
2879 if (!ops
|| ops
->currcon
< 0)
2881 vc
= vc_cons
[ops
->currcon
].d
;
2886 static void fbcon_modechanged(struct fb_info
*info
)
2888 struct fbcon_ops
*ops
= info
->fbcon_par
;
2893 if (!ops
|| ops
->currcon
< 0)
2895 vc
= vc_cons
[ops
->currcon
].d
;
2896 if (vc
->vc_mode
!= KD_TEXT
||
2897 registered_fb
[con2fb_map
[ops
->currcon
]] != info
)
2900 p
= &fb_display
[vc
->vc_num
];
2901 set_blitting_type(vc
, info
);
2903 if (con_is_visible(vc
)) {
2904 var_to_display(p
, &info
->var
, info
);
2905 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
2906 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
2907 cols
/= vc
->vc_font
.width
;
2908 rows
/= vc
->vc_font
.height
;
2909 vc_resize(vc
, cols
, rows
);
2910 updatescrollmode(p
, info
, vc
);
2912 scrollback_current
= 0;
2914 if (!fbcon_is_inactive(vc
, info
)) {
2915 ops
->var
.xoffset
= ops
->var
.yoffset
= p
->yscroll
= 0;
2916 ops
->update_start(info
);
2919 fbcon_set_palette(vc
, color_table
);
2922 fbcon_update_softback(vc
);
2926 static void fbcon_set_all_vcs(struct fb_info
*info
)
2928 struct fbcon_ops
*ops
= info
->fbcon_par
;
2931 int i
, rows
, cols
, fg
= -1;
2933 if (!ops
|| ops
->currcon
< 0)
2936 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
2938 if (!vc
|| vc
->vc_mode
!= KD_TEXT
||
2939 registered_fb
[con2fb_map
[i
]] != info
)
2942 if (con_is_visible(vc
)) {
2947 p
= &fb_display
[vc
->vc_num
];
2948 set_blitting_type(vc
, info
);
2949 var_to_display(p
, &info
->var
, info
);
2950 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
2951 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
2952 cols
/= vc
->vc_font
.width
;
2953 rows
/= vc
->vc_font
.height
;
2954 vc_resize(vc
, cols
, rows
);
2958 fbcon_modechanged(info
);
2961 static int fbcon_mode_deleted(struct fb_info
*info
,
2962 struct fb_videomode
*mode
)
2964 struct fb_info
*fb_info
;
2966 int i
, j
, found
= 0;
2968 /* before deletion, ensure that mode is not in use */
2969 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
2973 fb_info
= registered_fb
[j
];
2974 if (fb_info
!= info
)
2979 if (fb_mode_is_equal(p
->mode
, mode
)) {
2987 #ifdef CONFIG_VT_HW_CONSOLE_BINDING
2988 static int fbcon_unbind(void)
2992 ret
= do_unbind_con_driver(&fb_con
, first_fb_vc
, last_fb_vc
,
2996 fbcon_has_console_bind
= 0;
3001 static inline int fbcon_unbind(void)
3005 #endif /* CONFIG_VT_HW_CONSOLE_BINDING */
3007 /* called with console_lock held */
3008 static int fbcon_fb_unbind(int idx
)
3010 int i
, new_idx
= -1, ret
= 0;
3012 if (!fbcon_has_console_bind
)
3015 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3016 if (con2fb_map
[i
] != idx
&&
3017 con2fb_map
[i
] != -1) {
3023 if (new_idx
!= -1) {
3024 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3025 if (con2fb_map
[i
] == idx
)
3026 set_con2fb_map(i
, new_idx
, 0);
3029 struct fb_info
*info
= registered_fb
[idx
];
3031 /* This is sort of like set_con2fb_map, except it maps
3032 * the consoles to no device and then releases the
3033 * oldinfo to free memory and cancel the cursor blink
3034 * timer. I can imagine this just becoming part of
3035 * set_con2fb_map where new_idx is -1
3037 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3038 if (con2fb_map
[i
] == idx
) {
3040 if (!search_fb_in_map(idx
)) {
3041 ret
= con2fb_release_oldinfo(vc_cons
[i
].d
,
3045 con2fb_map
[i
] = idx
;
3051 ret
= fbcon_unbind();
3057 /* called with console_lock held */
3058 static int fbcon_fb_unregistered(struct fb_info
*info
)
3063 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3064 if (con2fb_map
[i
] == idx
)
3068 if (idx
== info_idx
) {
3071 for (i
= 0; i
< FB_MAX
; i
++) {
3072 if (registered_fb
[i
] != NULL
) {
3079 if (info_idx
!= -1) {
3080 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3081 if (con2fb_map
[i
] == -1)
3082 con2fb_map
[i
] = info_idx
;
3086 if (primary_device
== idx
)
3087 primary_device
= -1;
3089 if (!num_registered_fb
)
3090 do_unregister_con_driver(&fb_con
);
3095 /* called with console_lock held */
3096 static void fbcon_remap_all(int idx
)
3099 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++)
3100 set_con2fb_map(i
, idx
, 0);
3102 if (con_is_bound(&fb_con
)) {
3103 printk(KERN_INFO
"fbcon: Remapping primary device, "
3104 "fb%i, to tty %i-%i\n", idx
,
3105 first_fb_vc
+ 1, last_fb_vc
+ 1);
3110 #ifdef CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY
3111 static void fbcon_select_primary(struct fb_info
*info
)
3113 if (!map_override
&& primary_device
== -1 &&
3114 fb_is_primary_device(info
)) {
3117 printk(KERN_INFO
"fbcon: %s (fb%i) is primary device\n",
3118 info
->fix
.id
, info
->node
);
3119 primary_device
= info
->node
;
3121 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++)
3122 con2fb_map_boot
[i
] = primary_device
;
3124 if (con_is_bound(&fb_con
)) {
3125 printk(KERN_INFO
"fbcon: Remapping primary device, "
3126 "fb%i, to tty %i-%i\n", info
->node
,
3127 first_fb_vc
+ 1, last_fb_vc
+ 1);
3128 info_idx
= primary_device
;
3134 static inline void fbcon_select_primary(struct fb_info
*info
)
3138 #endif /* CONFIG_FRAMEBUFFER_DETECT_PRIMARY */
3140 /* called with console_lock held */
3141 static int fbcon_fb_registered(struct fb_info
*info
)
3143 int ret
= 0, i
, idx
;
3146 fbcon_select_primary(info
);
3148 if (info_idx
== -1) {
3149 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3150 if (con2fb_map_boot
[i
] == idx
) {
3157 ret
= do_fbcon_takeover(1);
3159 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3160 if (con2fb_map_boot
[i
] == idx
)
3161 set_con2fb_map(i
, idx
, 0);
3168 static void fbcon_fb_blanked(struct fb_info
*info
, int blank
)
3170 struct fbcon_ops
*ops
= info
->fbcon_par
;
3173 if (!ops
|| ops
->currcon
< 0)
3176 vc
= vc_cons
[ops
->currcon
].d
;
3177 if (vc
->vc_mode
!= KD_TEXT
||
3178 registered_fb
[con2fb_map
[ops
->currcon
]] != info
)
3181 if (con_is_visible(vc
)) {
3185 do_unblank_screen(0);
3187 ops
->blank_state
= blank
;
3190 static void fbcon_new_modelist(struct fb_info
*info
)
3194 struct fb_var_screeninfo var
;
3195 const struct fb_videomode
*mode
;
3197 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3198 if (registered_fb
[con2fb_map
[i
]] != info
)
3200 if (!fb_display
[i
].mode
)
3203 display_to_var(&var
, &fb_display
[i
]);
3204 mode
= fb_find_nearest_mode(fb_display
[i
].mode
,
3206 fb_videomode_to_var(&var
, mode
);
3207 fbcon_set_disp(info
, &var
, vc
->vc_num
);
3211 static void fbcon_get_requirement(struct fb_info
*info
,
3212 struct fb_blit_caps
*caps
)
3220 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3222 if (vc
&& vc
->vc_mode
== KD_TEXT
&&
3223 info
->node
== con2fb_map
[i
]) {
3225 caps
->x
|= 1 << (vc
->vc_font
.width
- 1);
3226 caps
->y
|= 1 << (vc
->vc_font
.height
- 1);
3227 charcnt
= (p
->userfont
) ?
3228 FNTCHARCNT(p
->fontdata
) : 256;
3229 if (caps
->len
< charcnt
)
3230 caps
->len
= charcnt
;
3234 vc
= vc_cons
[fg_console
].d
;
3236 if (vc
&& vc
->vc_mode
== KD_TEXT
&&
3237 info
->node
== con2fb_map
[fg_console
]) {
3238 p
= &fb_display
[fg_console
];
3239 caps
->x
= 1 << (vc
->vc_font
.width
- 1);
3240 caps
->y
= 1 << (vc
->vc_font
.height
- 1);
3241 caps
->len
= (p
->userfont
) ?
3242 FNTCHARCNT(p
->fontdata
) : 256;
3247 static int fbcon_event_notify(struct notifier_block
*self
,
3248 unsigned long action
, void *data
)
3250 struct fb_event
*event
= data
;
3251 struct fb_info
*info
= event
->info
;
3252 struct fb_videomode
*mode
;
3253 struct fb_con2fbmap
*con2fb
;
3254 struct fb_blit_caps
*caps
;
3258 * ignore all events except driver registration and deregistration
3259 * if fbcon is not active
3261 if (fbcon_has_exited
&& !(action
== FB_EVENT_FB_REGISTERED
||
3262 action
== FB_EVENT_FB_UNREGISTERED
))
3266 case FB_EVENT_SUSPEND
:
3267 fbcon_suspended(info
);
3269 case FB_EVENT_RESUME
:
3270 fbcon_resumed(info
);
3272 case FB_EVENT_MODE_CHANGE
:
3273 fbcon_modechanged(info
);
3275 case FB_EVENT_MODE_CHANGE_ALL
:
3276 fbcon_set_all_vcs(info
);
3278 case FB_EVENT_MODE_DELETE
:
3280 ret
= fbcon_mode_deleted(info
, mode
);
3282 case FB_EVENT_FB_UNBIND
:
3284 ret
= fbcon_fb_unbind(idx
);
3286 case FB_EVENT_FB_REGISTERED
:
3287 ret
= fbcon_fb_registered(info
);
3289 case FB_EVENT_FB_UNREGISTERED
:
3290 ret
= fbcon_fb_unregistered(info
);
3292 case FB_EVENT_SET_CONSOLE_MAP
:
3293 /* called with console lock held */
3294 con2fb
= event
->data
;
3295 ret
= set_con2fb_map(con2fb
->console
- 1,
3296 con2fb
->framebuffer
, 1);
3298 case FB_EVENT_GET_CONSOLE_MAP
:
3299 con2fb
= event
->data
;
3300 con2fb
->framebuffer
= con2fb_map
[con2fb
->console
- 1];
3302 case FB_EVENT_BLANK
:
3303 fbcon_fb_blanked(info
, *(int *)event
->data
);
3305 case FB_EVENT_NEW_MODELIST
:
3306 fbcon_new_modelist(info
);
3308 case FB_EVENT_GET_REQ
:
3310 fbcon_get_requirement(info
, caps
);
3312 case FB_EVENT_REMAP_ALL_CONSOLE
:
3314 fbcon_remap_all(idx
);
3322 * The console `switch' structure for the frame buffer based console
3325 static const struct consw fb_con
= {
3326 .owner
= THIS_MODULE
,
3327 .con_startup
= fbcon_startup
,
3328 .con_init
= fbcon_init
,
3329 .con_deinit
= fbcon_deinit
,
3330 .con_clear
= fbcon_clear
,
3331 .con_putc
= fbcon_putc
,
3332 .con_putcs
= fbcon_putcs
,
3333 .con_cursor
= fbcon_cursor
,
3334 .con_scroll
= fbcon_scroll
,
3335 .con_switch
= fbcon_switch
,
3336 .con_blank
= fbcon_blank
,
3337 .con_font_set
= fbcon_set_font
,
3338 .con_font_get
= fbcon_get_font
,
3339 .con_font_default
= fbcon_set_def_font
,
3340 .con_font_copy
= fbcon_copy_font
,
3341 .con_set_palette
= fbcon_set_palette
,
3342 .con_scrolldelta
= fbcon_scrolldelta
,
3343 .con_set_origin
= fbcon_set_origin
,
3344 .con_invert_region
= fbcon_invert_region
,
3345 .con_screen_pos
= fbcon_screen_pos
,
3346 .con_getxy
= fbcon_getxy
,
3347 .con_resize
= fbcon_resize
,
3348 .con_debug_enter
= fbcon_debug_enter
,
3349 .con_debug_leave
= fbcon_debug_leave
,
3352 static struct notifier_block fbcon_event_notifier
= {
3353 .notifier_call
= fbcon_event_notify
,
3356 static ssize_t
store_rotate(struct device
*device
,
3357 struct device_attribute
*attr
, const char *buf
,
3360 struct fb_info
*info
;
3364 if (fbcon_has_exited
)
3368 idx
= con2fb_map
[fg_console
];
3370 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3373 info
= registered_fb
[idx
];
3374 rotate
= simple_strtoul(buf
, last
, 0);
3375 fbcon_rotate(info
, rotate
);
3381 static ssize_t
store_rotate_all(struct device
*device
,
3382 struct device_attribute
*attr
,const char *buf
,
3385 struct fb_info
*info
;
3389 if (fbcon_has_exited
)
3393 idx
= con2fb_map
[fg_console
];
3395 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3398 info
= registered_fb
[idx
];
3399 rotate
= simple_strtoul(buf
, last
, 0);
3400 fbcon_rotate_all(info
, rotate
);
3406 static ssize_t
show_rotate(struct device
*device
,
3407 struct device_attribute
*attr
,char *buf
)
3409 struct fb_info
*info
;
3410 int rotate
= 0, idx
;
3412 if (fbcon_has_exited
)
3416 idx
= con2fb_map
[fg_console
];
3418 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3421 info
= registered_fb
[idx
];
3422 rotate
= fbcon_get_rotate(info
);
3425 return snprintf(buf
, PAGE_SIZE
, "%d\n", rotate
);
3428 static ssize_t
show_cursor_blink(struct device
*device
,
3429 struct device_attribute
*attr
, char *buf
)
3431 struct fb_info
*info
;
3432 struct fbcon_ops
*ops
;
3433 int idx
, blink
= -1;
3435 if (fbcon_has_exited
)
3439 idx
= con2fb_map
[fg_console
];
3441 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3444 info
= registered_fb
[idx
];
3445 ops
= info
->fbcon_par
;
3450 blink
= (ops
->flags
& FBCON_FLAGS_CURSOR_TIMER
) ? 1 : 0;
3453 return snprintf(buf
, PAGE_SIZE
, "%d\n", blink
);
3456 static ssize_t
store_cursor_blink(struct device
*device
,
3457 struct device_attribute
*attr
,
3458 const char *buf
, size_t count
)
3460 struct fb_info
*info
;
3464 if (fbcon_has_exited
)
3468 idx
= con2fb_map
[fg_console
];
3470 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3473 info
= registered_fb
[idx
];
3475 if (!info
->fbcon_par
)
3478 blink
= simple_strtoul(buf
, last
, 0);
3481 fbcon_cursor_noblink
= 0;
3482 fbcon_add_cursor_timer(info
);
3484 fbcon_cursor_noblink
= 1;
3485 fbcon_del_cursor_timer(info
);
3493 static struct device_attribute device_attrs
[] = {
3494 __ATTR(rotate
, S_IRUGO
|S_IWUSR
, show_rotate
, store_rotate
),
3495 __ATTR(rotate_all
, S_IWUSR
, NULL
, store_rotate_all
),
3496 __ATTR(cursor_blink
, S_IRUGO
|S_IWUSR
, show_cursor_blink
,
3497 store_cursor_blink
),
3500 static int fbcon_init_device(void)
3504 fbcon_has_sysfs
= 1;
3506 for (i
= 0; i
< ARRAY_SIZE(device_attrs
); i
++) {
3507 error
= device_create_file(fbcon_device
, &device_attrs
[i
]);
3515 device_remove_file(fbcon_device
, &device_attrs
[i
]);
3517 fbcon_has_sysfs
= 0;
3523 static void fbcon_start(void)
3525 if (num_registered_fb
) {
3530 for (i
= 0; i
< FB_MAX
; i
++) {
3531 if (registered_fb
[i
] != NULL
) {
3537 do_fbcon_takeover(0);
3543 static void fbcon_exit(void)
3545 struct fb_info
*info
;
3548 if (fbcon_has_exited
)
3551 kfree((void *)softback_buf
);
3554 for (i
= 0; i
< FB_MAX
; i
++) {
3558 info
= registered_fb
[i
];
3563 if (info
->queue
.func
)
3564 pending
= cancel_work_sync(&info
->queue
);
3565 DPRINTK("fbcon: %s pending work\n", (pending
? "canceled" :
3568 for (j
= first_fb_vc
; j
<= last_fb_vc
; j
++) {
3569 if (con2fb_map
[j
] == i
) {
3576 if (info
->fbops
->fb_release
)
3577 info
->fbops
->fb_release(info
, 0);
3578 module_put(info
->fbops
->owner
);
3580 if (info
->fbcon_par
) {
3581 struct fbcon_ops
*ops
= info
->fbcon_par
;
3583 fbcon_del_cursor_timer(info
);
3584 kfree(ops
->cursor_src
);
3585 kfree(ops
->cursor_state
.mask
);
3586 kfree(info
->fbcon_par
);
3587 info
->fbcon_par
= NULL
;
3590 if (info
->queue
.func
== fb_flashcursor
)
3591 info
->queue
.func
= NULL
;
3595 fbcon_has_exited
= 1;
3598 static int __init
fb_console_init(void)
3603 fb_register_client(&fbcon_event_notifier
);
3604 fbcon_device
= device_create(fb_class
, NULL
, MKDEV(0, 0), NULL
,
3607 if (IS_ERR(fbcon_device
)) {
3608 printk(KERN_WARNING
"Unable to create device "
3609 "for fbcon; errno = %ld\n",
3610 PTR_ERR(fbcon_device
));
3611 fbcon_device
= NULL
;
3613 fbcon_init_device();
3615 for (i
= 0; i
< MAX_NR_CONSOLES
; i
++)
3623 fs_initcall(fb_console_init
);
3627 static void __exit
fbcon_deinit_device(void)
3631 if (fbcon_has_sysfs
) {
3632 for (i
= 0; i
< ARRAY_SIZE(device_attrs
); i
++)
3633 device_remove_file(fbcon_device
, &device_attrs
[i
]);
3635 fbcon_has_sysfs
= 0;
3639 static void __exit
fb_console_exit(void)
3642 fb_unregister_client(&fbcon_event_notifier
);
3643 fbcon_deinit_device();
3644 device_destroy(fb_class
, MKDEV(0, 0));
3646 do_unregister_con_driver(&fb_con
);
3650 module_exit(fb_console_exit
);
3654 MODULE_LICENSE("GPL");