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>
82 #include <asm/atariints.h>
85 #include <asm/macints.h>
87 #if defined(__mc68000__)
88 #include <asm/machdep.h>
89 #include <asm/setup.h>
95 # define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __FUNCTION__ , ## args)
97 # define DPRINTK(fmt, args...)
101 FBCON_LOGO_CANSHOW
= -1, /* the logo can be shown */
102 FBCON_LOGO_DRAW
= -2, /* draw the logo to a console */
103 FBCON_LOGO_DONTSHOW
= -3 /* do not show the logo */
106 static struct display fb_display
[MAX_NR_CONSOLES
];
108 static signed char con2fb_map
[MAX_NR_CONSOLES
];
109 static signed char con2fb_map_boot
[MAX_NR_CONSOLES
];
111 static int logo_height
;
113 static int logo_lines
;
114 /* logo_shown is an index to vc_cons when >= 0; otherwise follows FBCON_LOGO
116 static int logo_shown
= FBCON_LOGO_CANSHOW
;
117 /* Software scrollback */
118 static int fbcon_softback_size
= 32768;
119 static unsigned long softback_buf
, softback_curr
;
120 static unsigned long softback_in
;
121 static unsigned long softback_top
, softback_end
;
122 static int softback_lines
;
123 /* console mappings */
124 static int first_fb_vc
;
125 static int last_fb_vc
= MAX_NR_CONSOLES
- 1;
126 static int fbcon_is_default
= 1;
127 static int fbcon_has_exited
;
128 static int primary_device
= -1;
130 #ifdef CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY
131 static int map_override
;
133 static inline void fbcon_map_override(void)
138 static inline void fbcon_map_override(void)
141 #endif /* CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY */
144 static char fontname
[40];
146 /* current fb_info */
147 static int info_idx
= -1;
149 /* console rotation */
150 static int initial_rotation
;
151 static int fbcon_has_sysfs
;
153 static const struct consw fb_con
;
155 #define CM_SOFTBACK (8)
157 #define advance_row(p, delta) (unsigned short *)((unsigned long)(p) + (delta) * vc->vc_size_row)
159 static int fbcon_set_origin(struct vc_data
*);
161 #define CURSOR_DRAW_DELAY (1)
163 /* # VBL ints between cursor state changes */
164 #define ATARI_CURSOR_BLINK_RATE (42)
165 #define MAC_CURSOR_BLINK_RATE (32)
166 #define DEFAULT_CURSOR_BLINK_RATE (20)
168 static int vbl_cursor_cnt
;
169 static int fbcon_cursor_noblink
;
171 #define divides(a, b) ((!(a) || (b)%(a)) ? 0 : 1)
174 * Interface used by the world
177 static const char *fbcon_startup(void);
178 static void fbcon_init(struct vc_data
*vc
, int init
);
179 static void fbcon_deinit(struct vc_data
*vc
);
180 static void fbcon_clear(struct vc_data
*vc
, int sy
, int sx
, int height
,
182 static void fbcon_putc(struct vc_data
*vc
, int c
, int ypos
, int xpos
);
183 static void fbcon_putcs(struct vc_data
*vc
, const unsigned short *s
,
184 int count
, int ypos
, int xpos
);
185 static void fbcon_clear_margins(struct vc_data
*vc
, int bottom_only
);
186 static void fbcon_cursor(struct vc_data
*vc
, int mode
);
187 static int fbcon_scroll(struct vc_data
*vc
, int t
, int b
, int dir
,
189 static void fbcon_bmove(struct vc_data
*vc
, int sy
, int sx
, int dy
, int dx
,
190 int height
, int width
);
191 static int fbcon_switch(struct vc_data
*vc
);
192 static int fbcon_blank(struct vc_data
*vc
, int blank
, int mode_switch
);
193 static int fbcon_set_palette(struct vc_data
*vc
, unsigned char *table
);
194 static int fbcon_scrolldelta(struct vc_data
*vc
, int lines
);
199 static __inline__
void ywrap_up(struct vc_data
*vc
, int count
);
200 static __inline__
void ywrap_down(struct vc_data
*vc
, int count
);
201 static __inline__
void ypan_up(struct vc_data
*vc
, int count
);
202 static __inline__
void ypan_down(struct vc_data
*vc
, int count
);
203 static void fbcon_bmove_rec(struct vc_data
*vc
, struct display
*p
, int sy
, int sx
,
204 int dy
, int dx
, int height
, int width
, u_int y_break
);
205 static void fbcon_set_disp(struct fb_info
*info
, struct fb_var_screeninfo
*var
,
207 static void fbcon_redraw_move(struct vc_data
*vc
, struct display
*p
,
208 int line
, int count
, int dy
);
209 static void fbcon_modechanged(struct fb_info
*info
);
210 static void fbcon_set_all_vcs(struct fb_info
*info
);
211 static void fbcon_start(void);
212 static void fbcon_exit(void);
213 static struct device
*fbcon_device
;
217 * On the Macintoy, there may or may not be a working VBL int. We need to probe
219 static int vbl_detected
;
221 static irqreturn_t
fb_vbl_detect(int irq
, void *dummy
)
228 #ifdef CONFIG_FRAMEBUFFER_CONSOLE_ROTATION
229 static inline void fbcon_set_rotation(struct fb_info
*info
)
231 struct fbcon_ops
*ops
= info
->fbcon_par
;
233 if (!(info
->flags
& FBINFO_MISC_TILEBLITTING
) &&
234 ops
->p
->con_rotate
< 4)
235 ops
->rotate
= ops
->p
->con_rotate
;
240 static void fbcon_rotate(struct fb_info
*info
, u32 rotate
)
242 struct fbcon_ops
*ops
= info
->fbcon_par
;
243 struct fb_info
*fb_info
;
245 if (!ops
|| ops
->currcon
== -1)
248 fb_info
= registered_fb
[con2fb_map
[ops
->currcon
]];
250 if (info
== fb_info
) {
251 struct display
*p
= &fb_display
[ops
->currcon
];
254 p
->con_rotate
= rotate
;
258 fbcon_modechanged(info
);
262 static void fbcon_rotate_all(struct fb_info
*info
, u32 rotate
)
264 struct fbcon_ops
*ops
= info
->fbcon_par
;
269 if (!ops
|| ops
->currcon
< 0 || rotate
> 3)
272 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
274 if (!vc
|| vc
->vc_mode
!= KD_TEXT
||
275 registered_fb
[con2fb_map
[i
]] != info
)
278 p
= &fb_display
[vc
->vc_num
];
279 p
->con_rotate
= rotate
;
282 fbcon_set_all_vcs(info
);
285 static inline void fbcon_set_rotation(struct fb_info
*info
)
287 struct fbcon_ops
*ops
= info
->fbcon_par
;
289 ops
->rotate
= FB_ROTATE_UR
;
292 static void fbcon_rotate(struct fb_info
*info
, u32 rotate
)
297 static void fbcon_rotate_all(struct fb_info
*info
, u32 rotate
)
301 #endif /* CONFIG_FRAMEBUFFER_CONSOLE_ROTATION */
303 static int fbcon_get_rotate(struct fb_info
*info
)
305 struct fbcon_ops
*ops
= info
->fbcon_par
;
307 return (ops
) ? ops
->rotate
: 0;
310 static inline int fbcon_is_inactive(struct vc_data
*vc
, struct fb_info
*info
)
312 struct fbcon_ops
*ops
= info
->fbcon_par
;
314 return (info
->state
!= FBINFO_STATE_RUNNING
||
315 vc
->vc_mode
!= KD_TEXT
|| ops
->graphics
);
318 static inline int get_color(struct vc_data
*vc
, struct fb_info
*info
,
321 int depth
= fb_get_color_depth(&info
->var
, &info
->fix
);
324 if (console_blanked
) {
325 unsigned short charmask
= vc
->vc_hi_font_mask
? 0x1ff : 0xff;
327 c
= vc
->vc_video_erase_char
& charmask
;
331 color
= (is_fg
) ? attr_fgcol((vc
->vc_hi_font_mask
) ? 9 : 8, c
)
332 : attr_bgcol((vc
->vc_hi_font_mask
) ? 13 : 12, c
);
337 int col
= mono_col(info
);
339 int fg
= (info
->fix
.visual
!= FB_VISUAL_MONO01
) ? col
: 0;
340 int bg
= (info
->fix
.visual
!= FB_VISUAL_MONO01
) ? 0 : col
;
345 color
= (is_fg
) ? fg
: bg
;
350 * Scale down 16-colors to 4 colors. Default 4-color palette
351 * is grayscale. However, simply dividing the values by 4
352 * will not work, as colors 1, 2 and 3 will be scaled-down
353 * to zero rendering them invisible. So empirically convert
354 * colors to a sane 4-level grayscale.
358 color
= 0; /* black */
361 color
= 2; /* white */
364 color
= 1; /* gray */
367 color
= 3; /* intense white */
373 * Last 8 entries of default 16-color palette is a more intense
374 * version of the first 8 (i.e., same chrominance, different
385 static void fbcon_update_softback(struct vc_data
*vc
)
387 int l
= fbcon_softback_size
/ vc
->vc_size_row
;
390 softback_end
= softback_buf
+ l
* vc
->vc_size_row
;
392 /* Smaller scrollback makes no sense, and 0 would screw
393 the operation totally */
397 static void fb_flashcursor(struct work_struct
*work
)
399 struct fb_info
*info
= container_of(work
, struct fb_info
, queue
);
400 struct fbcon_ops
*ops
= info
->fbcon_par
;
402 struct vc_data
*vc
= NULL
;
406 acquire_console_sem();
407 if (ops
&& ops
->currcon
!= -1)
408 vc
= vc_cons
[ops
->currcon
].d
;
410 if (!vc
|| !CON_IS_VISIBLE(vc
) ||
411 registered_fb
[con2fb_map
[vc
->vc_num
]] != info
||
413 release_console_sem();
417 p
= &fb_display
[vc
->vc_num
];
418 c
= scr_readw((u16
*) vc
->vc_pos
);
419 mode
= (!ops
->cursor_flash
|| ops
->cursor_state
.enable
) ?
421 ops
->cursor(vc
, info
, mode
, softback_lines
, get_color(vc
, info
, c
, 1),
422 get_color(vc
, info
, c
, 0));
423 release_console_sem();
426 #if defined(CONFIG_ATARI) || defined(CONFIG_MAC)
427 static int cursor_blink_rate
;
428 static irqreturn_t
fb_vbl_handler(int irq
, void *dev_id
)
430 struct fb_info
*info
= dev_id
;
432 if (vbl_cursor_cnt
&& --vbl_cursor_cnt
== 0) {
433 schedule_work(&info
->queue
);
434 vbl_cursor_cnt
= cursor_blink_rate
;
440 static void cursor_timer_handler(unsigned long dev_addr
)
442 struct fb_info
*info
= (struct fb_info
*) dev_addr
;
443 struct fbcon_ops
*ops
= info
->fbcon_par
;
445 schedule_work(&info
->queue
);
446 mod_timer(&ops
->cursor_timer
, jiffies
+ HZ
/5);
449 static void fbcon_add_cursor_timer(struct fb_info
*info
)
451 struct fbcon_ops
*ops
= info
->fbcon_par
;
453 if ((!info
->queue
.func
|| info
->queue
.func
== fb_flashcursor
) &&
454 !(ops
->flags
& FBCON_FLAGS_CURSOR_TIMER
) &&
455 !fbcon_cursor_noblink
) {
456 if (!info
->queue
.func
)
457 INIT_WORK(&info
->queue
, fb_flashcursor
);
459 init_timer(&ops
->cursor_timer
);
460 ops
->cursor_timer
.function
= cursor_timer_handler
;
461 ops
->cursor_timer
.expires
= jiffies
+ HZ
/ 5;
462 ops
->cursor_timer
.data
= (unsigned long ) info
;
463 add_timer(&ops
->cursor_timer
);
464 ops
->flags
|= FBCON_FLAGS_CURSOR_TIMER
;
468 static void fbcon_del_cursor_timer(struct fb_info
*info
)
470 struct fbcon_ops
*ops
= info
->fbcon_par
;
472 if (info
->queue
.func
== fb_flashcursor
&&
473 ops
->flags
& FBCON_FLAGS_CURSOR_TIMER
) {
474 del_timer_sync(&ops
->cursor_timer
);
475 ops
->flags
&= ~FBCON_FLAGS_CURSOR_TIMER
;
480 static int __init
fb_console_setup(char *this_opt
)
485 if (!this_opt
|| !*this_opt
)
488 while ((options
= strsep(&this_opt
, ",")) != NULL
) {
489 if (!strncmp(options
, "font:", 5))
490 strcpy(fontname
, options
+ 5);
492 if (!strncmp(options
, "scrollback:", 11)) {
495 fbcon_softback_size
= simple_strtoul(options
, &options
, 0);
496 if (*options
== 'k' || *options
== 'K') {
497 fbcon_softback_size
*= 1024;
507 if (!strncmp(options
, "map:", 4)) {
510 for (i
= 0, j
= 0; i
< MAX_NR_CONSOLES
; i
++) {
514 (options
[j
++]-'0') % FB_MAX
;
517 fbcon_map_override();
523 if (!strncmp(options
, "vc:", 3)) {
526 first_fb_vc
= simple_strtoul(options
, &options
, 10) - 1;
529 if (*options
++ == '-')
530 last_fb_vc
= simple_strtoul(options
, &options
, 10) - 1;
531 fbcon_is_default
= 0;
534 if (!strncmp(options
, "rotate:", 7)) {
537 initial_rotation
= simple_strtoul(options
, &options
, 0);
538 if (initial_rotation
> 3)
539 initial_rotation
= 0;
545 __setup("fbcon=", fb_console_setup
);
548 static int search_fb_in_map(int idx
)
552 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
553 if (con2fb_map
[i
] == idx
)
559 static int search_for_mapped_con(void)
563 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
564 if (con2fb_map
[i
] != -1)
570 static int fbcon_takeover(int show_logo
)
574 if (!num_registered_fb
)
578 logo_shown
= FBCON_LOGO_DONTSHOW
;
580 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++)
581 con2fb_map
[i
] = info_idx
;
583 err
= take_over_console(&fb_con
, first_fb_vc
, last_fb_vc
,
587 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
597 static void fbcon_prepare_logo(struct vc_data
*vc
, struct fb_info
*info
,
598 int cols
, int rows
, int new_cols
, int new_rows
)
600 logo_shown
= FBCON_LOGO_DONTSHOW
;
603 static void fbcon_prepare_logo(struct vc_data
*vc
, struct fb_info
*info
,
604 int cols
, int rows
, int new_cols
, int new_rows
)
606 /* Need to make room for the logo */
607 struct fbcon_ops
*ops
= info
->fbcon_par
;
608 int cnt
, erase
= vc
->vc_video_erase_char
, step
;
609 unsigned short *save
= NULL
, *r
, *q
;
611 if (info
->flags
& FBINFO_MODULE
) {
612 logo_shown
= FBCON_LOGO_DONTSHOW
;
617 * remove underline attribute from erase character
618 * if black and white framebuffer.
620 if (fb_get_color_depth(&info
->var
, &info
->fix
) == 1)
622 logo_height
= fb_prepare_logo(info
, ops
->rotate
);
623 logo_lines
= (logo_height
+ vc
->vc_font
.height
- 1) /
625 q
= (unsigned short *) (vc
->vc_origin
+
626 vc
->vc_size_row
* rows
);
627 step
= logo_lines
* cols
;
628 for (r
= q
- logo_lines
* cols
; r
< q
; r
++)
629 if (scr_readw(r
) != vc
->vc_video_erase_char
)
631 if (r
!= q
&& new_rows
>= rows
+ logo_lines
) {
632 save
= kmalloc(logo_lines
* new_cols
* 2, GFP_KERNEL
);
634 int i
= cols
< new_cols
? cols
: new_cols
;
635 scr_memsetw(save
, erase
, logo_lines
* new_cols
* 2);
637 for (cnt
= 0; cnt
< logo_lines
; cnt
++, r
+= i
)
638 scr_memcpyw(save
+ cnt
* new_cols
, r
, 2 * i
);
643 /* We can scroll screen down */
645 for (cnt
= rows
- logo_lines
; cnt
> 0; cnt
--) {
646 scr_memcpyw(r
+ step
, r
, vc
->vc_size_row
);
651 if (vc
->vc_y
+ logo_lines
>= rows
)
652 lines
= rows
- vc
->vc_y
- 1;
656 vc
->vc_pos
+= lines
* vc
->vc_size_row
;
659 scr_memsetw((unsigned short *) vc
->vc_origin
,
661 vc
->vc_size_row
* logo_lines
);
663 if (CON_IS_VISIBLE(vc
) && vc
->vc_mode
== KD_TEXT
) {
664 fbcon_clear_margins(vc
, 0);
669 q
= (unsigned short *) (vc
->vc_origin
+
672 scr_memcpyw(q
, save
, logo_lines
* new_cols
* 2);
673 vc
->vc_y
+= logo_lines
;
674 vc
->vc_pos
+= logo_lines
* vc
->vc_size_row
;
678 if (logo_lines
> vc
->vc_bottom
) {
679 logo_shown
= FBCON_LOGO_CANSHOW
;
681 "fbcon_init: disable boot-logo (boot-logo bigger than screen).\n");
682 } else if (logo_shown
!= FBCON_LOGO_DONTSHOW
) {
683 logo_shown
= FBCON_LOGO_DRAW
;
684 vc
->vc_top
= logo_lines
;
689 #ifdef CONFIG_FB_TILEBLITTING
690 static void set_blitting_type(struct vc_data
*vc
, struct fb_info
*info
)
692 struct fbcon_ops
*ops
= info
->fbcon_par
;
694 ops
->p
= &fb_display
[vc
->vc_num
];
696 if ((info
->flags
& FBINFO_MISC_TILEBLITTING
))
697 fbcon_set_tileops(vc
, info
);
699 fbcon_set_rotation(info
);
700 fbcon_set_bitops(ops
);
704 static int fbcon_invalid_charcount(struct fb_info
*info
, unsigned charcount
)
708 if (info
->flags
& FBINFO_MISC_TILEBLITTING
&&
709 info
->tileops
->fb_get_tilemax(info
) < charcount
)
715 static void set_blitting_type(struct vc_data
*vc
, struct fb_info
*info
)
717 struct fbcon_ops
*ops
= info
->fbcon_par
;
719 info
->flags
&= ~FBINFO_MISC_TILEBLITTING
;
720 ops
->p
= &fb_display
[vc
->vc_num
];
721 fbcon_set_rotation(info
);
722 fbcon_set_bitops(ops
);
725 static int fbcon_invalid_charcount(struct fb_info
*info
, unsigned charcount
)
730 #endif /* CONFIG_MISC_TILEBLITTING */
733 static int con2fb_acquire_newinfo(struct vc_data
*vc
, struct fb_info
*info
,
734 int unit
, int oldidx
)
736 struct fbcon_ops
*ops
= NULL
;
739 if (!try_module_get(info
->fbops
->owner
))
742 if (!err
&& info
->fbops
->fb_open
&&
743 info
->fbops
->fb_open(info
, 0))
747 ops
= kzalloc(sizeof(struct fbcon_ops
), GFP_KERNEL
);
753 info
->fbcon_par
= ops
;
756 set_blitting_type(vc
, info
);
760 con2fb_map
[unit
] = oldidx
;
761 module_put(info
->fbops
->owner
);
767 static int con2fb_release_oldinfo(struct vc_data
*vc
, struct fb_info
*oldinfo
,
768 struct fb_info
*newinfo
, int unit
,
769 int oldidx
, int found
)
771 struct fbcon_ops
*ops
= oldinfo
->fbcon_par
;
774 if (oldinfo
->fbops
->fb_release
&&
775 oldinfo
->fbops
->fb_release(oldinfo
, 0)) {
776 con2fb_map
[unit
] = oldidx
;
777 if (!found
&& newinfo
->fbops
->fb_release
)
778 newinfo
->fbops
->fb_release(newinfo
, 0);
780 module_put(newinfo
->fbops
->owner
);
785 fbcon_del_cursor_timer(oldinfo
);
786 kfree(ops
->cursor_state
.mask
);
787 kfree(ops
->cursor_data
);
788 kfree(ops
->fontbuffer
);
789 kfree(oldinfo
->fbcon_par
);
790 oldinfo
->fbcon_par
= NULL
;
791 module_put(oldinfo
->fbops
->owner
);
793 If oldinfo and newinfo are driving the same hardware,
794 the fb_release() method of oldinfo may attempt to
795 restore the hardware state. This will leave the
796 newinfo in an undefined state. Thus, a call to
797 fb_set_par() may be needed for the newinfo.
799 if (newinfo
->fbops
->fb_set_par
)
800 newinfo
->fbops
->fb_set_par(newinfo
);
806 static void con2fb_init_display(struct vc_data
*vc
, struct fb_info
*info
,
807 int unit
, int show_logo
)
809 struct fbcon_ops
*ops
= info
->fbcon_par
;
811 ops
->currcon
= fg_console
;
813 if (info
->fbops
->fb_set_par
&& !(ops
->flags
& FBCON_FLAGS_INIT
))
814 info
->fbops
->fb_set_par(info
);
816 ops
->flags
|= FBCON_FLAGS_INIT
;
818 fbcon_set_disp(info
, &info
->var
, unit
);
821 struct vc_data
*fg_vc
= vc_cons
[fg_console
].d
;
822 struct fb_info
*fg_info
=
823 registered_fb
[con2fb_map
[fg_console
]];
825 fbcon_prepare_logo(fg_vc
, fg_info
, fg_vc
->vc_cols
,
826 fg_vc
->vc_rows
, fg_vc
->vc_cols
,
830 update_screen(vc_cons
[fg_console
].d
);
834 * set_con2fb_map - map console to frame buffer device
835 * @unit: virtual console number to map
836 * @newidx: frame buffer index to map virtual console to
837 * @user: user request
839 * Maps a virtual console @unit to a frame buffer device
842 static int set_con2fb_map(int unit
, int newidx
, int user
)
844 struct vc_data
*vc
= vc_cons
[unit
].d
;
845 int oldidx
= con2fb_map
[unit
];
846 struct fb_info
*info
= registered_fb
[newidx
];
847 struct fb_info
*oldinfo
= NULL
;
850 if (oldidx
== newidx
)
853 if (!info
|| fbcon_has_exited
)
856 if (!err
&& !search_for_mapped_con()) {
858 return fbcon_takeover(0);
862 oldinfo
= registered_fb
[oldidx
];
864 found
= search_fb_in_map(newidx
);
866 acquire_console_sem();
867 con2fb_map
[unit
] = newidx
;
869 err
= con2fb_acquire_newinfo(vc
, info
, unit
, oldidx
);
873 * If old fb is not mapped to any of the consoles,
874 * fbcon should release it.
876 if (!err
&& oldinfo
&& !search_fb_in_map(oldidx
))
877 err
= con2fb_release_oldinfo(vc
, oldinfo
, info
, unit
, oldidx
,
881 int show_logo
= (fg_console
== 0 && !user
&&
882 logo_shown
!= FBCON_LOGO_DONTSHOW
);
885 fbcon_add_cursor_timer(info
);
886 con2fb_map_boot
[unit
] = newidx
;
887 con2fb_init_display(vc
, info
, unit
, show_logo
);
890 if (!search_fb_in_map(info_idx
))
893 release_console_sem();
898 * Low Level Operations
900 /* NOTE: fbcon cannot be __init: it may be called from take_over_console later */
901 static int var_to_display(struct display
*disp
,
902 struct fb_var_screeninfo
*var
,
903 struct fb_info
*info
)
905 disp
->xres_virtual
= var
->xres_virtual
;
906 disp
->yres_virtual
= var
->yres_virtual
;
907 disp
->bits_per_pixel
= var
->bits_per_pixel
;
908 disp
->grayscale
= var
->grayscale
;
909 disp
->nonstd
= var
->nonstd
;
910 disp
->accel_flags
= var
->accel_flags
;
911 disp
->height
= var
->height
;
912 disp
->width
= var
->width
;
913 disp
->red
= var
->red
;
914 disp
->green
= var
->green
;
915 disp
->blue
= var
->blue
;
916 disp
->transp
= var
->transp
;
917 disp
->rotate
= var
->rotate
;
918 disp
->mode
= fb_match_mode(var
, &info
->modelist
);
919 if (disp
->mode
== NULL
)
920 /* This should not happen */
925 static void display_to_var(struct fb_var_screeninfo
*var
,
926 struct display
*disp
)
928 fb_videomode_to_var(var
, disp
->mode
);
929 var
->xres_virtual
= disp
->xres_virtual
;
930 var
->yres_virtual
= disp
->yres_virtual
;
931 var
->bits_per_pixel
= disp
->bits_per_pixel
;
932 var
->grayscale
= disp
->grayscale
;
933 var
->nonstd
= disp
->nonstd
;
934 var
->accel_flags
= disp
->accel_flags
;
935 var
->height
= disp
->height
;
936 var
->width
= disp
->width
;
937 var
->red
= disp
->red
;
938 var
->green
= disp
->green
;
939 var
->blue
= disp
->blue
;
940 var
->transp
= disp
->transp
;
941 var
->rotate
= disp
->rotate
;
944 static const char *fbcon_startup(void)
946 const char *display_desc
= "frame buffer device";
947 struct display
*p
= &fb_display
[fg_console
];
948 struct vc_data
*vc
= vc_cons
[fg_console
].d
;
949 const struct font_desc
*font
= NULL
;
950 struct module
*owner
;
951 struct fb_info
*info
= NULL
;
952 struct fbcon_ops
*ops
;
958 * If num_registered_fb is zero, this is a call for the dummy part.
959 * The frame buffer devices weren't initialized yet.
961 if (!num_registered_fb
|| info_idx
== -1)
964 * Instead of blindly using registered_fb[0], we use info_idx, set by
967 info
= registered_fb
[info_idx
];
971 owner
= info
->fbops
->owner
;
972 if (!try_module_get(owner
))
974 if (info
->fbops
->fb_open
&& info
->fbops
->fb_open(info
, 0)) {
979 ops
= kzalloc(sizeof(struct fbcon_ops
), GFP_KERNEL
);
987 ops
->cur_rotate
= -1;
988 info
->fbcon_par
= ops
;
989 p
->con_rotate
= initial_rotation
;
990 set_blitting_type(vc
, info
);
992 if (info
->fix
.type
!= FB_TYPE_TEXT
) {
993 if (fbcon_softback_size
) {
997 kmalloc(fbcon_softback_size
,
1000 fbcon_softback_size
= 0;
1006 kfree((void *) softback_buf
);
1012 softback_in
= softback_top
= softback_curr
=
1017 /* Setup default font */
1019 if (!fontname
[0] || !(font
= find_font(fontname
)))
1020 font
= get_default_font(info
->var
.xres
,
1022 info
->pixmap
.blit_x
,
1023 info
->pixmap
.blit_y
);
1024 vc
->vc_font
.width
= font
->width
;
1025 vc
->vc_font
.height
= font
->height
;
1026 vc
->vc_font
.data
= (void *)(p
->fontdata
= font
->data
);
1027 vc
->vc_font
.charcount
= 256; /* FIXME Need to support more fonts */
1030 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
1031 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
1032 cols
/= vc
->vc_font
.width
;
1033 rows
/= vc
->vc_font
.height
;
1034 vc_resize(vc
, cols
, rows
);
1036 DPRINTK("mode: %s\n", info
->fix
.id
);
1037 DPRINTK("visual: %d\n", info
->fix
.visual
);
1038 DPRINTK("res: %dx%d-%d\n", info
->var
.xres
,
1040 info
->var
.bits_per_pixel
);
1043 if (MACH_IS_ATARI
) {
1044 cursor_blink_rate
= ATARI_CURSOR_BLINK_RATE
;
1046 request_irq(IRQ_AUTO_4
, fb_vbl_handler
,
1047 IRQ_TYPE_PRIO
, "framebuffer vbl",
1050 #endif /* CONFIG_ATARI */
1054 * On a Macintoy, the VBL interrupt may or may not be active.
1055 * As interrupt based cursor is more reliable and race free, we
1056 * probe for VBL interrupts.
1061 * Probe for VBL: set temp. handler ...
1063 irqres
= request_irq(IRQ_MAC_VBL
, fb_vbl_detect
, 0,
1064 "framebuffer vbl", info
);
1068 * ... and spin for 20 ms ...
1070 while (!vbl_detected
&& ++ct
< 1000)
1075 ("fbcon_startup: No VBL detected, using timer based cursor.\n");
1077 free_irq(IRQ_MAC_VBL
, fb_vbl_detect
);
1081 * interrupt based cursor ok
1083 cursor_blink_rate
= MAC_CURSOR_BLINK_RATE
;
1085 request_irq(IRQ_MAC_VBL
, fb_vbl_handler
, 0,
1086 "framebuffer vbl", info
);
1089 * VBL not detected: fall through, use timer based cursor
1094 #endif /* CONFIG_MAC */
1096 fbcon_add_cursor_timer(info
);
1097 fbcon_has_exited
= 0;
1098 return display_desc
;
1101 static void fbcon_init(struct vc_data
*vc
, int init
)
1103 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1104 struct fbcon_ops
*ops
;
1105 struct vc_data
**default_mode
= vc
->vc_display_fg
;
1106 struct vc_data
*svc
= *default_mode
;
1107 struct display
*t
, *p
= &fb_display
[vc
->vc_num
];
1108 int logo
= 1, new_rows
, new_cols
, rows
, cols
, charcnt
= 256;
1111 if (info_idx
== -1 || info
== NULL
)
1116 if (vc
!= svc
|| logo_shown
== FBCON_LOGO_DONTSHOW
||
1117 (info
->fix
.type
== FB_TYPE_TEXT
))
1120 if (var_to_display(p
, &info
->var
, info
))
1123 if (!info
->fbcon_par
)
1124 con2fb_acquire_newinfo(vc
, info
, vc
->vc_num
, -1);
1126 /* If we are not the first console on this
1127 fb, copy the font from that console */
1128 t
= &fb_display
[fg_console
];
1131 struct vc_data
*fvc
= vc_cons
[fg_console
].d
;
1133 vc
->vc_font
.data
= (void *)(p
->fontdata
=
1135 vc
->vc_font
.width
= fvc
->vc_font
.width
;
1136 vc
->vc_font
.height
= fvc
->vc_font
.height
;
1137 p
->userfont
= t
->userfont
;
1140 REFCOUNT(p
->fontdata
)++;
1142 const struct font_desc
*font
= NULL
;
1144 if (!fontname
[0] || !(font
= find_font(fontname
)))
1145 font
= get_default_font(info
->var
.xres
,
1147 info
->pixmap
.blit_x
,
1148 info
->pixmap
.blit_y
);
1149 vc
->vc_font
.width
= font
->width
;
1150 vc
->vc_font
.height
= font
->height
;
1151 vc
->vc_font
.data
= (void *)(p
->fontdata
= font
->data
);
1152 vc
->vc_font
.charcount
= 256; /* FIXME Need to
1153 support more fonts */
1158 charcnt
= FNTCHARCNT(p
->fontdata
);
1160 vc
->vc_can_do_color
= (fb_get_color_depth(&info
->var
, &info
->fix
)!=1);
1161 vc
->vc_complement_mask
= vc
->vc_can_do_color
? 0x7700 : 0x0800;
1162 if (charcnt
== 256) {
1163 vc
->vc_hi_font_mask
= 0;
1165 vc
->vc_hi_font_mask
= 0x100;
1166 if (vc
->vc_can_do_color
)
1167 vc
->vc_complement_mask
<<= 1;
1170 if (!*svc
->vc_uni_pagedir_loc
)
1171 con_set_default_unimap(svc
);
1172 if (!*vc
->vc_uni_pagedir_loc
)
1173 con_copy_unimap(vc
, svc
);
1175 ops
= info
->fbcon_par
;
1176 p
->con_rotate
= initial_rotation
;
1177 set_blitting_type(vc
, info
);
1181 new_cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
1182 new_rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
1183 new_cols
/= vc
->vc_font
.width
;
1184 new_rows
/= vc
->vc_font
.height
;
1185 vc_resize(vc
, new_cols
, new_rows
);
1188 * We must always set the mode. The mode of the previous console
1189 * driver could be in the same resolution but we are using different
1190 * hardware so we have to initialize the hardware.
1192 * We need to do it in fbcon_init() to prevent screen corruption.
1194 if (CON_IS_VISIBLE(vc
) && vc
->vc_mode
== KD_TEXT
) {
1195 if (info
->fbops
->fb_set_par
&&
1196 !(ops
->flags
& FBCON_FLAGS_INIT
))
1197 info
->fbops
->fb_set_par(info
);
1198 ops
->flags
|= FBCON_FLAGS_INIT
;
1203 if ((cap
& FBINFO_HWACCEL_COPYAREA
) &&
1204 !(cap
& FBINFO_HWACCEL_DISABLED
))
1205 p
->scrollmode
= SCROLL_MOVE
;
1206 else /* default to something safe */
1207 p
->scrollmode
= SCROLL_REDRAW
;
1210 * ++guenther: console.c:vc_allocate() relies on initializing
1211 * vc_{cols,rows}, but we must not set those if we are only
1212 * resizing the console.
1215 vc
->vc_cols
= new_cols
;
1216 vc
->vc_rows
= new_rows
;
1220 fbcon_prepare_logo(vc
, info
, cols
, rows
, new_cols
, new_rows
);
1222 if (vc
== svc
&& softback_buf
)
1223 fbcon_update_softback(vc
);
1225 if (ops
->rotate_font
&& ops
->rotate_font(info
, vc
)) {
1226 ops
->rotate
= FB_ROTATE_UR
;
1227 set_blitting_type(vc
, info
);
1230 ops
->p
= &fb_display
[fg_console
];
1233 static void fbcon_free_font(struct display
*p
)
1235 if (p
->userfont
&& p
->fontdata
&& (--REFCOUNT(p
->fontdata
) == 0))
1236 kfree(p
->fontdata
- FONT_EXTRA_WORDS
* sizeof(int));
1241 static void fbcon_deinit(struct vc_data
*vc
)
1243 struct display
*p
= &fb_display
[vc
->vc_num
];
1244 struct fb_info
*info
;
1245 struct fbcon_ops
*ops
;
1249 idx
= con2fb_map
[vc
->vc_num
];
1254 info
= registered_fb
[idx
];
1259 ops
= info
->fbcon_par
;
1264 if (CON_IS_VISIBLE(vc
))
1265 fbcon_del_cursor_timer(info
);
1267 ops
->flags
&= ~FBCON_FLAGS_INIT
;
1270 if (!con_is_bound(&fb_con
))
1276 /* ====================================================================== */
1278 /* fbcon_XXX routines - interface used by the world
1280 * This system is now divided into two levels because of complications
1281 * caused by hardware scrolling. Top level functions:
1283 * fbcon_bmove(), fbcon_clear(), fbcon_putc(), fbcon_clear_margins()
1285 * handles y values in range [0, scr_height-1] that correspond to real
1286 * screen positions. y_wrap shift means that first line of bitmap may be
1287 * anywhere on this display. These functions convert lineoffsets to
1288 * bitmap offsets and deal with the wrap-around case by splitting blits.
1290 * fbcon_bmove_physical_8() -- These functions fast implementations
1291 * fbcon_clear_physical_8() -- of original fbcon_XXX fns.
1292 * fbcon_putc_physical_8() -- (font width != 8) may be added later
1296 * At the moment fbcon_putc() cannot blit across vertical wrap boundary
1297 * Implies should only really hardware scroll in rows. Only reason for
1298 * restriction is simplicity & efficiency at the moment.
1301 static void fbcon_clear(struct vc_data
*vc
, int sy
, int sx
, int height
,
1304 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1305 struct fbcon_ops
*ops
= info
->fbcon_par
;
1307 struct display
*p
= &fb_display
[vc
->vc_num
];
1310 if (fbcon_is_inactive(vc
, info
))
1313 if (!height
|| !width
)
1316 /* Split blits that cross physical y_wrap boundary */
1318 y_break
= p
->vrows
- p
->yscroll
;
1319 if (sy
< y_break
&& sy
+ height
- 1 >= y_break
) {
1320 u_int b
= y_break
- sy
;
1321 ops
->clear(vc
, info
, real_y(p
, sy
), sx
, b
, width
);
1322 ops
->clear(vc
, info
, real_y(p
, sy
+ b
), sx
, height
- b
,
1325 ops
->clear(vc
, info
, real_y(p
, sy
), sx
, height
, width
);
1328 static void fbcon_putcs(struct vc_data
*vc
, const unsigned short *s
,
1329 int count
, int ypos
, int xpos
)
1331 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1332 struct display
*p
= &fb_display
[vc
->vc_num
];
1333 struct fbcon_ops
*ops
= info
->fbcon_par
;
1335 if (!fbcon_is_inactive(vc
, info
))
1336 ops
->putcs(vc
, info
, s
, count
, real_y(p
, ypos
), xpos
,
1337 get_color(vc
, info
, scr_readw(s
), 1),
1338 get_color(vc
, info
, scr_readw(s
), 0));
1341 static void fbcon_putc(struct vc_data
*vc
, int c
, int ypos
, int xpos
)
1345 scr_writew(c
, &chr
);
1346 fbcon_putcs(vc
, &chr
, 1, ypos
, xpos
);
1349 static void fbcon_clear_margins(struct vc_data
*vc
, int bottom_only
)
1351 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1352 struct fbcon_ops
*ops
= info
->fbcon_par
;
1354 if (!fbcon_is_inactive(vc
, info
))
1355 ops
->clear_margins(vc
, info
, bottom_only
);
1358 static void fbcon_cursor(struct vc_data
*vc
, int mode
)
1360 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1361 struct fbcon_ops
*ops
= info
->fbcon_par
;
1363 int c
= scr_readw((u16
*) vc
->vc_pos
);
1365 if (fbcon_is_inactive(vc
, info
) || vc
->vc_deccm
!= 1)
1368 if (vc
->vc_cursor_type
& 0x10)
1369 fbcon_del_cursor_timer(info
);
1371 fbcon_add_cursor_timer(info
);
1373 ops
->cursor_flash
= (mode
== CM_ERASE
) ? 0 : 1;
1374 if (mode
& CM_SOFTBACK
) {
1375 mode
&= ~CM_SOFTBACK
;
1379 fbcon_set_origin(vc
);
1383 ops
->cursor(vc
, info
, mode
, y
, get_color(vc
, info
, c
, 1),
1384 get_color(vc
, info
, c
, 0));
1385 vbl_cursor_cnt
= CURSOR_DRAW_DELAY
;
1388 static int scrollback_phys_max
= 0;
1389 static int scrollback_max
= 0;
1390 static int scrollback_current
= 0;
1392 static void fbcon_set_disp(struct fb_info
*info
, struct fb_var_screeninfo
*var
,
1395 struct display
*p
, *t
;
1396 struct vc_data
**default_mode
, *vc
;
1397 struct vc_data
*svc
;
1398 struct fbcon_ops
*ops
= info
->fbcon_par
;
1399 int rows
, cols
, charcnt
= 256;
1401 p
= &fb_display
[unit
];
1403 if (var_to_display(p
, var
, info
))
1406 vc
= vc_cons
[unit
].d
;
1411 default_mode
= vc
->vc_display_fg
;
1412 svc
= *default_mode
;
1413 t
= &fb_display
[svc
->vc_num
];
1415 if (!vc
->vc_font
.data
) {
1416 vc
->vc_font
.data
= (void *)(p
->fontdata
= t
->fontdata
);
1417 vc
->vc_font
.width
= (*default_mode
)->vc_font
.width
;
1418 vc
->vc_font
.height
= (*default_mode
)->vc_font
.height
;
1419 p
->userfont
= t
->userfont
;
1421 REFCOUNT(p
->fontdata
)++;
1424 charcnt
= FNTCHARCNT(p
->fontdata
);
1426 var
->activate
= FB_ACTIVATE_NOW
;
1427 info
->var
.activate
= var
->activate
;
1428 var
->yoffset
= info
->var
.yoffset
;
1429 var
->xoffset
= info
->var
.xoffset
;
1430 fb_set_var(info
, var
);
1431 ops
->var
= info
->var
;
1432 vc
->vc_can_do_color
= (fb_get_color_depth(&info
->var
, &info
->fix
)!=1);
1433 vc
->vc_complement_mask
= vc
->vc_can_do_color
? 0x7700 : 0x0800;
1434 if (charcnt
== 256) {
1435 vc
->vc_hi_font_mask
= 0;
1437 vc
->vc_hi_font_mask
= 0x100;
1438 if (vc
->vc_can_do_color
)
1439 vc
->vc_complement_mask
<<= 1;
1442 if (!*svc
->vc_uni_pagedir_loc
)
1443 con_set_default_unimap(svc
);
1444 if (!*vc
->vc_uni_pagedir_loc
)
1445 con_copy_unimap(vc
, svc
);
1447 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
1448 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
1449 cols
/= vc
->vc_font
.width
;
1450 rows
/= vc
->vc_font
.height
;
1451 vc_resize(vc
, cols
, rows
);
1453 if (CON_IS_VISIBLE(vc
)) {
1456 fbcon_update_softback(vc
);
1460 static __inline__
void ywrap_up(struct vc_data
*vc
, int count
)
1462 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1463 struct fbcon_ops
*ops
= info
->fbcon_par
;
1464 struct display
*p
= &fb_display
[vc
->vc_num
];
1466 p
->yscroll
+= count
;
1467 if (p
->yscroll
>= p
->vrows
) /* Deal with wrap */
1468 p
->yscroll
-= p
->vrows
;
1469 ops
->var
.xoffset
= 0;
1470 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1471 ops
->var
.vmode
|= FB_VMODE_YWRAP
;
1472 ops
->update_start(info
);
1473 scrollback_max
+= count
;
1474 if (scrollback_max
> scrollback_phys_max
)
1475 scrollback_max
= scrollback_phys_max
;
1476 scrollback_current
= 0;
1479 static __inline__
void ywrap_down(struct vc_data
*vc
, int count
)
1481 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1482 struct fbcon_ops
*ops
= info
->fbcon_par
;
1483 struct display
*p
= &fb_display
[vc
->vc_num
];
1485 p
->yscroll
-= count
;
1486 if (p
->yscroll
< 0) /* Deal with wrap */
1487 p
->yscroll
+= p
->vrows
;
1488 ops
->var
.xoffset
= 0;
1489 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1490 ops
->var
.vmode
|= FB_VMODE_YWRAP
;
1491 ops
->update_start(info
);
1492 scrollback_max
-= count
;
1493 if (scrollback_max
< 0)
1495 scrollback_current
= 0;
1498 static __inline__
void ypan_up(struct vc_data
*vc
, int count
)
1500 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1501 struct display
*p
= &fb_display
[vc
->vc_num
];
1502 struct fbcon_ops
*ops
= info
->fbcon_par
;
1504 p
->yscroll
+= count
;
1505 if (p
->yscroll
> p
->vrows
- vc
->vc_rows
) {
1506 ops
->bmove(vc
, info
, p
->vrows
- vc
->vc_rows
,
1507 0, 0, 0, vc
->vc_rows
, vc
->vc_cols
);
1508 p
->yscroll
-= p
->vrows
- vc
->vc_rows
;
1511 ops
->var
.xoffset
= 0;
1512 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1513 ops
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1514 ops
->update_start(info
);
1515 fbcon_clear_margins(vc
, 1);
1516 scrollback_max
+= count
;
1517 if (scrollback_max
> scrollback_phys_max
)
1518 scrollback_max
= scrollback_phys_max
;
1519 scrollback_current
= 0;
1522 static __inline__
void ypan_up_redraw(struct vc_data
*vc
, int t
, int count
)
1524 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1525 struct fbcon_ops
*ops
= info
->fbcon_par
;
1526 struct display
*p
= &fb_display
[vc
->vc_num
];
1528 p
->yscroll
+= count
;
1530 if (p
->yscroll
> p
->vrows
- vc
->vc_rows
) {
1531 p
->yscroll
-= p
->vrows
- vc
->vc_rows
;
1532 fbcon_redraw_move(vc
, p
, t
+ count
, vc
->vc_rows
- count
, t
);
1535 ops
->var
.xoffset
= 0;
1536 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1537 ops
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1538 ops
->update_start(info
);
1539 fbcon_clear_margins(vc
, 1);
1540 scrollback_max
+= count
;
1541 if (scrollback_max
> scrollback_phys_max
)
1542 scrollback_max
= scrollback_phys_max
;
1543 scrollback_current
= 0;
1546 static __inline__
void ypan_down(struct vc_data
*vc
, int count
)
1548 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1549 struct display
*p
= &fb_display
[vc
->vc_num
];
1550 struct fbcon_ops
*ops
= info
->fbcon_par
;
1552 p
->yscroll
-= count
;
1553 if (p
->yscroll
< 0) {
1554 ops
->bmove(vc
, info
, 0, 0, p
->vrows
- vc
->vc_rows
,
1555 0, vc
->vc_rows
, vc
->vc_cols
);
1556 p
->yscroll
+= p
->vrows
- vc
->vc_rows
;
1559 ops
->var
.xoffset
= 0;
1560 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1561 ops
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1562 ops
->update_start(info
);
1563 fbcon_clear_margins(vc
, 1);
1564 scrollback_max
-= count
;
1565 if (scrollback_max
< 0)
1567 scrollback_current
= 0;
1570 static __inline__
void ypan_down_redraw(struct vc_data
*vc
, int t
, int count
)
1572 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1573 struct fbcon_ops
*ops
= info
->fbcon_par
;
1574 struct display
*p
= &fb_display
[vc
->vc_num
];
1576 p
->yscroll
-= count
;
1578 if (p
->yscroll
< 0) {
1579 p
->yscroll
+= p
->vrows
- vc
->vc_rows
;
1580 fbcon_redraw_move(vc
, p
, t
, vc
->vc_rows
- count
, t
+ count
);
1583 ops
->var
.xoffset
= 0;
1584 ops
->var
.yoffset
= p
->yscroll
* vc
->vc_font
.height
;
1585 ops
->var
.vmode
&= ~FB_VMODE_YWRAP
;
1586 ops
->update_start(info
);
1587 fbcon_clear_margins(vc
, 1);
1588 scrollback_max
-= count
;
1589 if (scrollback_max
< 0)
1591 scrollback_current
= 0;
1594 static void fbcon_redraw_softback(struct vc_data
*vc
, struct display
*p
,
1597 int count
= vc
->vc_rows
;
1598 unsigned short *d
, *s
;
1602 d
= (u16
*) softback_curr
;
1603 if (d
== (u16
*) softback_in
)
1604 d
= (u16
*) vc
->vc_origin
;
1605 n
= softback_curr
+ delta
* vc
->vc_size_row
;
1606 softback_lines
-= delta
;
1608 if (softback_curr
< softback_top
&& n
< softback_buf
) {
1609 n
+= softback_end
- softback_buf
;
1610 if (n
< softback_top
) {
1612 (softback_top
- n
) / vc
->vc_size_row
;
1615 } else if (softback_curr
>= softback_top
1616 && n
< softback_top
) {
1618 (softback_top
- n
) / vc
->vc_size_row
;
1622 if (softback_curr
> softback_in
&& n
>= softback_end
) {
1623 n
+= softback_buf
- softback_end
;
1624 if (n
> softback_in
) {
1628 } else if (softback_curr
<= softback_in
&& n
> softback_in
) {
1633 if (n
== softback_curr
)
1636 s
= (u16
*) softback_curr
;
1637 if (s
== (u16
*) softback_in
)
1638 s
= (u16
*) vc
->vc_origin
;
1640 unsigned short *start
;
1644 unsigned short attr
= 1;
1647 le
= advance_row(s
, 1);
1650 if (attr
!= (c
& 0xff00)) {
1653 fbcon_putcs(vc
, start
, s
- start
,
1659 if (c
== scr_readw(d
)) {
1661 fbcon_putcs(vc
, start
, s
- start
,
1674 fbcon_putcs(vc
, start
, s
- start
, line
, x
);
1676 if (d
== (u16
*) softback_end
)
1677 d
= (u16
*) softback_buf
;
1678 if (d
== (u16
*) softback_in
)
1679 d
= (u16
*) vc
->vc_origin
;
1680 if (s
== (u16
*) softback_end
)
1681 s
= (u16
*) softback_buf
;
1682 if (s
== (u16
*) softback_in
)
1683 s
= (u16
*) vc
->vc_origin
;
1687 static void fbcon_redraw_move(struct vc_data
*vc
, struct display
*p
,
1688 int line
, int count
, int dy
)
1690 unsigned short *s
= (unsigned short *)
1691 (vc
->vc_origin
+ vc
->vc_size_row
* line
);
1694 unsigned short *start
= s
;
1695 unsigned short *le
= advance_row(s
, 1);
1698 unsigned short attr
= 1;
1702 if (attr
!= (c
& 0xff00)) {
1705 fbcon_putcs(vc
, start
, s
- start
,
1711 console_conditional_schedule();
1715 fbcon_putcs(vc
, start
, s
- start
, dy
, x
);
1716 console_conditional_schedule();
1721 static void fbcon_redraw_blit(struct vc_data
*vc
, struct fb_info
*info
,
1722 struct display
*p
, int line
, int count
, int ycount
)
1724 int offset
= ycount
* vc
->vc_cols
;
1725 unsigned short *d
= (unsigned short *)
1726 (vc
->vc_origin
+ vc
->vc_size_row
* line
);
1727 unsigned short *s
= d
+ offset
;
1728 struct fbcon_ops
*ops
= info
->fbcon_par
;
1731 unsigned short *start
= s
;
1732 unsigned short *le
= advance_row(s
, 1);
1739 if (c
== scr_readw(d
)) {
1741 ops
->bmove(vc
, info
, line
+ ycount
, x
,
1742 line
, x
, 1, s
-start
);
1752 console_conditional_schedule();
1757 ops
->bmove(vc
, info
, line
+ ycount
, x
, line
, x
, 1,
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 void fbcon_redraw(struct vc_data
*vc
, struct display
*p
,
1772 int line
, int count
, int offset
)
1774 unsigned short *d
= (unsigned short *)
1775 (vc
->vc_origin
+ vc
->vc_size_row
* line
);
1776 unsigned short *s
= d
+ offset
;
1779 unsigned short *start
= s
;
1780 unsigned short *le
= advance_row(s
, 1);
1783 unsigned short attr
= 1;
1787 if (attr
!= (c
& 0xff00)) {
1790 fbcon_putcs(vc
, start
, s
- start
,
1796 if (c
== scr_readw(d
)) {
1798 fbcon_putcs(vc
, start
, s
- start
,
1808 console_conditional_schedule();
1813 fbcon_putcs(vc
, start
, s
- start
, line
, x
);
1814 console_conditional_schedule();
1819 /* NOTE: We subtract two lines from these pointers */
1820 s
-= vc
->vc_size_row
;
1821 d
-= vc
->vc_size_row
;
1826 static inline void fbcon_softback_note(struct vc_data
*vc
, int t
,
1831 if (vc
->vc_num
!= fg_console
)
1833 p
= (unsigned short *) (vc
->vc_origin
+ t
* vc
->vc_size_row
);
1836 scr_memcpyw((u16
*) softback_in
, p
, vc
->vc_size_row
);
1838 p
= advance_row(p
, 1);
1839 softback_in
+= vc
->vc_size_row
;
1840 if (softback_in
== softback_end
)
1841 softback_in
= softback_buf
;
1842 if (softback_in
== softback_top
) {
1843 softback_top
+= vc
->vc_size_row
;
1844 if (softback_top
== softback_end
)
1845 softback_top
= softback_buf
;
1848 softback_curr
= softback_in
;
1851 static int fbcon_scroll(struct vc_data
*vc
, int t
, int b
, int dir
,
1854 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
1855 struct display
*p
= &fb_display
[vc
->vc_num
];
1856 int scroll_partial
= info
->flags
& FBINFO_PARTIAL_PAN_OK
;
1858 if (fbcon_is_inactive(vc
, info
))
1861 fbcon_cursor(vc
, CM_ERASE
);
1864 * ++Geert: Only use ywrap/ypan if the console is in text mode
1865 * ++Andrew: Only use ypan on hardware text mode when scrolling the
1866 * whole screen (prevents flicker).
1871 if (count
> vc
->vc_rows
) /* Maximum realistic size */
1872 count
= vc
->vc_rows
;
1874 fbcon_softback_note(vc
, t
, count
);
1875 if (logo_shown
>= 0)
1877 switch (p
->scrollmode
) {
1879 fbcon_redraw_blit(vc
, info
, p
, t
, b
- t
- count
,
1881 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1882 scr_memsetw((unsigned short *) (vc
->vc_origin
+
1885 vc
->vc_video_erase_char
,
1886 vc
->vc_size_row
* count
);
1890 case SCROLL_WRAP_MOVE
:
1891 if (b
- t
- count
> 3 * vc
->vc_rows
>> 2) {
1893 fbcon_bmove(vc
, 0, 0, count
, 0, t
,
1895 ywrap_up(vc
, count
);
1896 if (vc
->vc_rows
- b
> 0)
1897 fbcon_bmove(vc
, b
- count
, 0, b
, 0,
1900 } else if (info
->flags
& FBINFO_READS_FAST
)
1901 fbcon_bmove(vc
, t
+ count
, 0, t
, 0,
1902 b
- t
- count
, vc
->vc_cols
);
1905 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1908 case SCROLL_PAN_REDRAW
:
1909 if ((p
->yscroll
+ count
<=
1910 2 * (p
->vrows
- vc
->vc_rows
))
1911 && ((!scroll_partial
&& (b
- t
== vc
->vc_rows
))
1914 3 * vc
->vc_rows
>> 2)))) {
1916 fbcon_redraw_move(vc
, p
, 0, t
, count
);
1917 ypan_up_redraw(vc
, t
, count
);
1918 if (vc
->vc_rows
- b
> 0)
1919 fbcon_redraw_move(vc
, p
, b
,
1920 vc
->vc_rows
- b
, b
);
1922 fbcon_redraw_move(vc
, p
, t
+ count
, b
- t
- count
, t
);
1923 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1926 case SCROLL_PAN_MOVE
:
1927 if ((p
->yscroll
+ count
<=
1928 2 * (p
->vrows
- vc
->vc_rows
))
1929 && ((!scroll_partial
&& (b
- t
== vc
->vc_rows
))
1932 3 * vc
->vc_rows
>> 2)))) {
1934 fbcon_bmove(vc
, 0, 0, count
, 0, t
,
1937 if (vc
->vc_rows
- b
> 0)
1938 fbcon_bmove(vc
, b
- count
, 0, b
, 0,
1941 } else if (info
->flags
& FBINFO_READS_FAST
)
1942 fbcon_bmove(vc
, t
+ count
, 0, t
, 0,
1943 b
- t
- count
, vc
->vc_cols
);
1946 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1951 fbcon_redraw(vc
, p
, t
, b
- t
- count
,
1952 count
* vc
->vc_cols
);
1953 fbcon_clear(vc
, b
- count
, 0, count
, vc
->vc_cols
);
1954 scr_memsetw((unsigned short *) (vc
->vc_origin
+
1957 vc
->vc_video_erase_char
,
1958 vc
->vc_size_row
* count
);
1964 if (count
> vc
->vc_rows
) /* Maximum realistic size */
1965 count
= vc
->vc_rows
;
1966 if (logo_shown
>= 0)
1968 switch (p
->scrollmode
) {
1970 fbcon_redraw_blit(vc
, info
, p
, b
- 1, b
- t
- count
,
1972 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
1973 scr_memsetw((unsigned short *) (vc
->vc_origin
+
1976 vc
->vc_video_erase_char
,
1977 vc
->vc_size_row
* count
);
1981 case SCROLL_WRAP_MOVE
:
1982 if (b
- t
- count
> 3 * vc
->vc_rows
>> 2) {
1983 if (vc
->vc_rows
- b
> 0)
1984 fbcon_bmove(vc
, b
, 0, b
- count
, 0,
1987 ywrap_down(vc
, count
);
1989 fbcon_bmove(vc
, count
, 0, 0, 0, t
,
1991 } else if (info
->flags
& FBINFO_READS_FAST
)
1992 fbcon_bmove(vc
, t
, 0, t
+ count
, 0,
1993 b
- t
- count
, vc
->vc_cols
);
1996 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
1999 case SCROLL_PAN_MOVE
:
2000 if ((count
- p
->yscroll
<= p
->vrows
- vc
->vc_rows
)
2001 && ((!scroll_partial
&& (b
- t
== vc
->vc_rows
))
2004 3 * vc
->vc_rows
>> 2)))) {
2005 if (vc
->vc_rows
- b
> 0)
2006 fbcon_bmove(vc
, b
, 0, b
- count
, 0,
2009 ypan_down(vc
, count
);
2011 fbcon_bmove(vc
, count
, 0, 0, 0, t
,
2013 } else if (info
->flags
& FBINFO_READS_FAST
)
2014 fbcon_bmove(vc
, t
, 0, t
+ count
, 0,
2015 b
- t
- count
, vc
->vc_cols
);
2018 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
2021 case SCROLL_PAN_REDRAW
:
2022 if ((count
- p
->yscroll
<= p
->vrows
- vc
->vc_rows
)
2023 && ((!scroll_partial
&& (b
- t
== vc
->vc_rows
))
2026 3 * vc
->vc_rows
>> 2)))) {
2027 if (vc
->vc_rows
- b
> 0)
2028 fbcon_redraw_move(vc
, p
, b
, vc
->vc_rows
- b
,
2030 ypan_down_redraw(vc
, t
, count
);
2032 fbcon_redraw_move(vc
, p
, count
, t
, 0);
2034 fbcon_redraw_move(vc
, p
, t
, b
- t
- count
, t
+ count
);
2035 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
2040 fbcon_redraw(vc
, p
, b
- 1, b
- t
- count
,
2041 -count
* vc
->vc_cols
);
2042 fbcon_clear(vc
, t
, 0, count
, vc
->vc_cols
);
2043 scr_memsetw((unsigned short *) (vc
->vc_origin
+
2046 vc
->vc_video_erase_char
,
2047 vc
->vc_size_row
* count
);
2055 static void fbcon_bmove(struct vc_data
*vc
, int sy
, int sx
, int dy
, int dx
,
2056 int height
, int width
)
2058 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2059 struct display
*p
= &fb_display
[vc
->vc_num
];
2061 if (fbcon_is_inactive(vc
, info
))
2064 if (!width
|| !height
)
2067 /* Split blits that cross physical y_wrap case.
2068 * Pathological case involves 4 blits, better to use recursive
2069 * code rather than unrolled case
2071 * Recursive invocations don't need to erase the cursor over and
2072 * over again, so we use fbcon_bmove_rec()
2074 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, height
, width
,
2075 p
->vrows
- p
->yscroll
);
2078 static void fbcon_bmove_rec(struct vc_data
*vc
, struct display
*p
, int sy
, int sx
,
2079 int dy
, int dx
, int height
, int width
, u_int y_break
)
2081 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2082 struct fbcon_ops
*ops
= info
->fbcon_par
;
2085 if (sy
< y_break
&& sy
+ height
> y_break
) {
2087 if (dy
< sy
) { /* Avoid trashing self */
2088 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, b
, width
,
2090 fbcon_bmove_rec(vc
, p
, sy
+ b
, sx
, dy
+ b
, dx
,
2091 height
- b
, width
, y_break
);
2093 fbcon_bmove_rec(vc
, p
, sy
+ b
, sx
, dy
+ b
, dx
,
2094 height
- b
, width
, y_break
);
2095 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, b
, width
,
2101 if (dy
< y_break
&& dy
+ height
> y_break
) {
2103 if (dy
< sy
) { /* Avoid trashing self */
2104 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, b
, width
,
2106 fbcon_bmove_rec(vc
, p
, sy
+ b
, sx
, dy
+ b
, dx
,
2107 height
- b
, width
, y_break
);
2109 fbcon_bmove_rec(vc
, p
, sy
+ b
, sx
, dy
+ b
, dx
,
2110 height
- b
, width
, y_break
);
2111 fbcon_bmove_rec(vc
, p
, sy
, sx
, dy
, dx
, b
, width
,
2116 ops
->bmove(vc
, info
, real_y(p
, sy
), sx
, real_y(p
, dy
), dx
,
2120 static __inline__
void updatescrollmode(struct display
*p
,
2121 struct fb_info
*info
,
2124 struct fbcon_ops
*ops
= info
->fbcon_par
;
2125 int fh
= vc
->vc_font
.height
;
2126 int cap
= info
->flags
;
2128 int ypan
= FBCON_SWAP(ops
->rotate
, info
->fix
.ypanstep
,
2129 info
->fix
.xpanstep
);
2130 int ywrap
= FBCON_SWAP(ops
->rotate
, info
->fix
.ywrapstep
, t
);
2131 int yres
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
2132 int vyres
= FBCON_SWAP(ops
->rotate
, info
->var
.yres_virtual
,
2133 info
->var
.xres_virtual
);
2134 int good_pan
= (cap
& FBINFO_HWACCEL_YPAN
) &&
2135 divides(ypan
, vc
->vc_font
.height
) && vyres
> yres
;
2136 int good_wrap
= (cap
& FBINFO_HWACCEL_YWRAP
) &&
2137 divides(ywrap
, vc
->vc_font
.height
) &&
2138 divides(vc
->vc_font
.height
, vyres
) &&
2139 divides(vc
->vc_font
.height
, yres
);
2140 int reading_fast
= cap
& FBINFO_READS_FAST
;
2141 int fast_copyarea
= (cap
& FBINFO_HWACCEL_COPYAREA
) &&
2142 !(cap
& FBINFO_HWACCEL_DISABLED
);
2143 int fast_imageblit
= (cap
& FBINFO_HWACCEL_IMAGEBLIT
) &&
2144 !(cap
& FBINFO_HWACCEL_DISABLED
);
2146 p
->vrows
= vyres
/fh
;
2147 if (yres
> (fh
* (vc
->vc_rows
+ 1)))
2148 p
->vrows
-= (yres
- (fh
* vc
->vc_rows
)) / fh
;
2149 if ((yres
% fh
) && (vyres
% fh
< yres
% fh
))
2152 if (good_wrap
|| good_pan
) {
2153 if (reading_fast
|| fast_copyarea
)
2154 p
->scrollmode
= good_wrap
?
2155 SCROLL_WRAP_MOVE
: SCROLL_PAN_MOVE
;
2157 p
->scrollmode
= good_wrap
? SCROLL_REDRAW
:
2160 if (reading_fast
|| (fast_copyarea
&& !fast_imageblit
))
2161 p
->scrollmode
= SCROLL_MOVE
;
2163 p
->scrollmode
= SCROLL_REDRAW
;
2167 static int fbcon_resize(struct vc_data
*vc
, unsigned int width
,
2168 unsigned int height
, unsigned int user
)
2170 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2171 struct fbcon_ops
*ops
= info
->fbcon_par
;
2172 struct display
*p
= &fb_display
[vc
->vc_num
];
2173 struct fb_var_screeninfo var
= info
->var
;
2174 int x_diff
, y_diff
, virt_w
, virt_h
, virt_fw
, virt_fh
;
2176 virt_w
= FBCON_SWAP(ops
->rotate
, width
, height
);
2177 virt_h
= FBCON_SWAP(ops
->rotate
, height
, width
);
2178 virt_fw
= FBCON_SWAP(ops
->rotate
, vc
->vc_font
.width
,
2179 vc
->vc_font
.height
);
2180 virt_fh
= FBCON_SWAP(ops
->rotate
, vc
->vc_font
.height
,
2182 var
.xres
= virt_w
* virt_fw
;
2183 var
.yres
= virt_h
* virt_fh
;
2184 x_diff
= info
->var
.xres
- var
.xres
;
2185 y_diff
= info
->var
.yres
- var
.yres
;
2186 if (x_diff
< 0 || x_diff
> virt_fw
||
2187 y_diff
< 0 || y_diff
> virt_fh
) {
2188 const struct fb_videomode
*mode
;
2190 DPRINTK("attempting resize %ix%i\n", var
.xres
, var
.yres
);
2191 mode
= fb_find_best_mode(&var
, &info
->modelist
);
2194 display_to_var(&var
, p
);
2195 fb_videomode_to_var(&var
, mode
);
2197 if (virt_w
> var
.xres
/virt_fw
|| virt_h
> var
.yres
/virt_fh
)
2200 DPRINTK("resize now %ix%i\n", var
.xres
, var
.yres
);
2201 if (CON_IS_VISIBLE(vc
)) {
2202 var
.activate
= FB_ACTIVATE_NOW
|
2204 fb_set_var(info
, &var
);
2206 var_to_display(p
, &info
->var
, info
);
2207 ops
->var
= info
->var
;
2209 updatescrollmode(p
, info
, vc
);
2213 static int fbcon_switch(struct vc_data
*vc
)
2215 struct fb_info
*info
, *old_info
= NULL
;
2216 struct fbcon_ops
*ops
;
2217 struct display
*p
= &fb_display
[vc
->vc_num
];
2218 struct fb_var_screeninfo var
;
2219 int i
, prev_console
, charcnt
= 256;
2221 info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2222 ops
= info
->fbcon_par
;
2226 fbcon_set_origin(vc
);
2227 softback_top
= softback_curr
= softback_in
= softback_buf
;
2229 fbcon_update_softback(vc
);
2232 if (logo_shown
>= 0) {
2233 struct vc_data
*conp2
= vc_cons
[logo_shown
].d
;
2235 if (conp2
->vc_top
== logo_lines
2236 && conp2
->vc_bottom
== conp2
->vc_rows
)
2238 logo_shown
= FBCON_LOGO_CANSHOW
;
2241 prev_console
= ops
->currcon
;
2242 if (prev_console
!= -1)
2243 old_info
= registered_fb
[con2fb_map
[prev_console
]];
2245 * FIXME: If we have multiple fbdev's loaded, we need to
2246 * update all info->currcon. Perhaps, we can place this
2247 * in a centralized structure, but this might break some
2250 * info->currcon = vc->vc_num;
2252 for (i
= 0; i
< FB_MAX
; i
++) {
2253 if (registered_fb
[i
] != NULL
&& registered_fb
[i
]->fbcon_par
) {
2254 struct fbcon_ops
*o
= registered_fb
[i
]->fbcon_par
;
2256 o
->currcon
= vc
->vc_num
;
2259 memset(&var
, 0, sizeof(struct fb_var_screeninfo
));
2260 display_to_var(&var
, p
);
2261 var
.activate
= FB_ACTIVATE_NOW
;
2264 * make sure we don't unnecessarily trip the memcmp()
2267 info
->var
.activate
= var
.activate
;
2268 var
.yoffset
= info
->var
.yoffset
;
2269 var
.xoffset
= info
->var
.xoffset
;
2270 var
.vmode
= info
->var
.vmode
;
2271 fb_set_var(info
, &var
);
2272 ops
->var
= info
->var
;
2274 if (old_info
!= NULL
&& (old_info
!= info
||
2275 info
->flags
& FBINFO_MISC_ALWAYS_SETPAR
)) {
2276 if (info
->fbops
->fb_set_par
)
2277 info
->fbops
->fb_set_par(info
);
2279 if (old_info
!= info
)
2280 fbcon_del_cursor_timer(old_info
);
2283 if (fbcon_is_inactive(vc
, info
) ||
2284 ops
->blank_state
!= FB_BLANK_UNBLANK
)
2285 fbcon_del_cursor_timer(info
);
2287 fbcon_add_cursor_timer(info
);
2289 set_blitting_type(vc
, info
);
2290 ops
->cursor_reset
= 1;
2292 if (ops
->rotate_font
&& ops
->rotate_font(info
, vc
)) {
2293 ops
->rotate
= FB_ROTATE_UR
;
2294 set_blitting_type(vc
, info
);
2297 vc
->vc_can_do_color
= (fb_get_color_depth(&info
->var
, &info
->fix
)!=1);
2298 vc
->vc_complement_mask
= vc
->vc_can_do_color
? 0x7700 : 0x0800;
2301 charcnt
= FNTCHARCNT(vc
->vc_font
.data
);
2304 vc
->vc_complement_mask
<<= 1;
2306 updatescrollmode(p
, info
, vc
);
2308 switch (p
->scrollmode
) {
2309 case SCROLL_WRAP_MOVE
:
2310 scrollback_phys_max
= p
->vrows
- vc
->vc_rows
;
2312 case SCROLL_PAN_MOVE
:
2313 case SCROLL_PAN_REDRAW
:
2314 scrollback_phys_max
= p
->vrows
- 2 * vc
->vc_rows
;
2315 if (scrollback_phys_max
< 0)
2316 scrollback_phys_max
= 0;
2319 scrollback_phys_max
= 0;
2324 scrollback_current
= 0;
2326 if (!fbcon_is_inactive(vc
, info
)) {
2327 ops
->var
.xoffset
= ops
->var
.yoffset
= p
->yscroll
= 0;
2328 ops
->update_start(info
);
2331 fbcon_set_palette(vc
, color_table
);
2332 fbcon_clear_margins(vc
, 0);
2334 if (logo_shown
== FBCON_LOGO_DRAW
) {
2336 logo_shown
= fg_console
;
2337 /* This is protected above by initmem_freed */
2338 fb_show_logo(info
, ops
->rotate
);
2340 vc
->vc_origin
+ vc
->vc_size_row
* vc
->vc_top
,
2341 vc
->vc_size_row
* (vc
->vc_bottom
-
2348 static void fbcon_generic_blank(struct vc_data
*vc
, struct fb_info
*info
,
2351 struct fb_event event
;
2354 unsigned short charmask
= vc
->vc_hi_font_mask
?
2356 unsigned short oldc
;
2358 oldc
= vc
->vc_video_erase_char
;
2359 vc
->vc_video_erase_char
&= charmask
;
2360 fbcon_clear(vc
, 0, 0, vc
->vc_rows
, vc
->vc_cols
);
2361 vc
->vc_video_erase_char
= oldc
;
2366 event
.data
= &blank
;
2367 fb_notifier_call_chain(FB_EVENT_CONBLANK
, &event
);
2370 static int fbcon_blank(struct vc_data
*vc
, int blank
, int mode_switch
)
2372 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2373 struct fbcon_ops
*ops
= info
->fbcon_par
;
2376 struct fb_var_screeninfo var
= info
->var
;
2381 if (info
->fbops
->fb_save_state
)
2382 info
->fbops
->fb_save_state(info
);
2383 var
.activate
= FB_ACTIVATE_NOW
| FB_ACTIVATE_FORCE
;
2384 fb_set_var(info
, &var
);
2386 ops
->var
= info
->var
;
2387 } else if (info
->fbops
->fb_restore_state
)
2388 info
->fbops
->fb_restore_state(info
);
2391 if (!fbcon_is_inactive(vc
, info
)) {
2392 if (ops
->blank_state
!= blank
) {
2393 ops
->blank_state
= blank
;
2394 fbcon_cursor(vc
, blank
? CM_ERASE
: CM_DRAW
);
2395 ops
->cursor_flash
= (!blank
);
2397 if (fb_blank(info
, blank
))
2398 fbcon_generic_blank(vc
, info
, blank
);
2405 if (mode_switch
|| fbcon_is_inactive(vc
, info
) ||
2406 ops
->blank_state
!= FB_BLANK_UNBLANK
)
2407 fbcon_del_cursor_timer(info
);
2409 fbcon_add_cursor_timer(info
);
2414 static int fbcon_get_font(struct vc_data
*vc
, struct console_font
*font
)
2416 u8
*fontdata
= vc
->vc_font
.data
;
2417 u8
*data
= font
->data
;
2420 font
->width
= vc
->vc_font
.width
;
2421 font
->height
= vc
->vc_font
.height
;
2422 font
->charcount
= vc
->vc_hi_font_mask
? 512 : 256;
2426 if (font
->width
<= 8) {
2427 j
= vc
->vc_font
.height
;
2428 for (i
= 0; i
< font
->charcount
; i
++) {
2429 memcpy(data
, fontdata
, j
);
2430 memset(data
+ j
, 0, 32 - j
);
2434 } else if (font
->width
<= 16) {
2435 j
= vc
->vc_font
.height
* 2;
2436 for (i
= 0; i
< font
->charcount
; i
++) {
2437 memcpy(data
, fontdata
, j
);
2438 memset(data
+ j
, 0, 64 - j
);
2442 } else if (font
->width
<= 24) {
2443 for (i
= 0; i
< font
->charcount
; i
++) {
2444 for (j
= 0; j
< vc
->vc_font
.height
; j
++) {
2445 *data
++ = fontdata
[0];
2446 *data
++ = fontdata
[1];
2447 *data
++ = fontdata
[2];
2448 fontdata
+= sizeof(u32
);
2450 memset(data
, 0, 3 * (32 - j
));
2451 data
+= 3 * (32 - j
);
2454 j
= vc
->vc_font
.height
* 4;
2455 for (i
= 0; i
< font
->charcount
; i
++) {
2456 memcpy(data
, fontdata
, j
);
2457 memset(data
+ j
, 0, 128 - j
);
2465 static int fbcon_do_set_font(struct vc_data
*vc
, int w
, int h
,
2466 const u8
* data
, int userfont
)
2468 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2469 struct fbcon_ops
*ops
= info
->fbcon_par
;
2470 struct display
*p
= &fb_display
[vc
->vc_num
];
2473 char *old_data
= NULL
;
2475 if (CON_IS_VISIBLE(vc
) && softback_lines
)
2476 fbcon_set_origin(vc
);
2478 resize
= (w
!= vc
->vc_font
.width
) || (h
!= vc
->vc_font
.height
);
2480 old_data
= vc
->vc_font
.data
;
2482 cnt
= FNTCHARCNT(data
);
2485 vc
->vc_font
.data
= (void *)(p
->fontdata
= data
);
2486 if ((p
->userfont
= userfont
))
2488 vc
->vc_font
.width
= w
;
2489 vc
->vc_font
.height
= h
;
2490 if (vc
->vc_hi_font_mask
&& cnt
== 256) {
2491 vc
->vc_hi_font_mask
= 0;
2492 if (vc
->vc_can_do_color
) {
2493 vc
->vc_complement_mask
>>= 1;
2494 vc
->vc_s_complement_mask
>>= 1;
2497 /* ++Edmund: reorder the attribute bits */
2498 if (vc
->vc_can_do_color
) {
2499 unsigned short *cp
=
2500 (unsigned short *) vc
->vc_origin
;
2501 int count
= vc
->vc_screenbuf_size
/ 2;
2503 for (; count
> 0; count
--, cp
++) {
2505 scr_writew(((c
& 0xfe00) >> 1) |
2508 c
= vc
->vc_video_erase_char
;
2509 vc
->vc_video_erase_char
=
2510 ((c
& 0xfe00) >> 1) | (c
& 0xff);
2513 } else if (!vc
->vc_hi_font_mask
&& cnt
== 512) {
2514 vc
->vc_hi_font_mask
= 0x100;
2515 if (vc
->vc_can_do_color
) {
2516 vc
->vc_complement_mask
<<= 1;
2517 vc
->vc_s_complement_mask
<<= 1;
2520 /* ++Edmund: reorder the attribute bits */
2522 unsigned short *cp
=
2523 (unsigned short *) vc
->vc_origin
;
2524 int count
= vc
->vc_screenbuf_size
/ 2;
2526 for (; count
> 0; count
--, cp
++) {
2527 unsigned short newc
;
2529 if (vc
->vc_can_do_color
)
2531 ((c
& 0xff00) << 1) | (c
&
2535 scr_writew(newc
, cp
);
2537 c
= vc
->vc_video_erase_char
;
2538 if (vc
->vc_can_do_color
) {
2539 vc
->vc_video_erase_char
=
2540 ((c
& 0xff00) << 1) | (c
& 0xff);
2543 vc
->vc_video_erase_char
= c
& ~0x100;
2551 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
2552 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
2555 vc_resize(vc
, cols
, rows
);
2556 if (CON_IS_VISIBLE(vc
) && softback_buf
)
2557 fbcon_update_softback(vc
);
2558 } else if (CON_IS_VISIBLE(vc
)
2559 && vc
->vc_mode
== KD_TEXT
) {
2560 fbcon_clear_margins(vc
, 0);
2564 if (old_data
&& (--REFCOUNT(old_data
) == 0))
2565 kfree(old_data
- FONT_EXTRA_WORDS
* sizeof(int));
2569 static int fbcon_copy_font(struct vc_data
*vc
, int con
)
2571 struct display
*od
= &fb_display
[con
];
2572 struct console_font
*f
= &vc
->vc_font
;
2574 if (od
->fontdata
== f
->data
)
2575 return 0; /* already the same font... */
2576 return fbcon_do_set_font(vc
, f
->width
, f
->height
, od
->fontdata
, od
->userfont
);
2580 * User asked to set font; we are guaranteed that
2581 * a) width and height are in range 1..32
2582 * b) charcount does not exceed 512
2583 * but lets not assume that, since someone might someday want to use larger
2584 * fonts. And charcount of 512 is small for unicode support.
2586 * However, user space gives the font in 32 rows , regardless of
2587 * actual font height. So a new API is needed if support for larger fonts
2588 * is ever implemented.
2591 static int fbcon_set_font(struct vc_data
*vc
, struct console_font
*font
, unsigned flags
)
2593 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2594 unsigned charcount
= font
->charcount
;
2595 int w
= font
->width
;
2596 int h
= font
->height
;
2599 u8
*new_data
, *data
= font
->data
;
2600 int pitch
= (font
->width
+7) >> 3;
2602 /* Is there a reason why fbconsole couldn't handle any charcount >256?
2603 * If not this check should be changed to charcount < 256 */
2604 if (charcount
!= 256 && charcount
!= 512)
2607 /* Make sure drawing engine can handle the font */
2608 if (!(info
->pixmap
.blit_x
& (1 << (font
->width
- 1))) ||
2609 !(info
->pixmap
.blit_y
& (1 << (font
->height
- 1))))
2612 /* Make sure driver can handle the font length */
2613 if (fbcon_invalid_charcount(info
, charcount
))
2616 size
= h
* pitch
* charcount
;
2618 new_data
= kmalloc(FONT_EXTRA_WORDS
* sizeof(int) + size
, GFP_USER
);
2623 new_data
+= FONT_EXTRA_WORDS
* sizeof(int);
2624 FNTSIZE(new_data
) = size
;
2625 FNTCHARCNT(new_data
) = charcount
;
2626 REFCOUNT(new_data
) = 0; /* usage counter */
2627 for (i
=0; i
< charcount
; i
++) {
2628 memcpy(new_data
+ i
*h
*pitch
, data
+ i
*32*pitch
, h
*pitch
);
2631 /* Since linux has a nice crc32 function use it for counting font
2633 csum
= crc32(0, new_data
, size
);
2635 FNTSUM(new_data
) = csum
;
2636 /* Check if the same font is on some other console already */
2637 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
2638 struct vc_data
*tmp
= vc_cons
[i
].d
;
2640 if (fb_display
[i
].userfont
&&
2641 fb_display
[i
].fontdata
&&
2642 FNTSUM(fb_display
[i
].fontdata
) == csum
&&
2643 FNTSIZE(fb_display
[i
].fontdata
) == size
&&
2644 tmp
->vc_font
.width
== w
&&
2645 !memcmp(fb_display
[i
].fontdata
, new_data
, size
)) {
2646 kfree(new_data
- FONT_EXTRA_WORDS
* sizeof(int));
2647 new_data
= (u8
*)fb_display
[i
].fontdata
;
2651 return fbcon_do_set_font(vc
, font
->width
, font
->height
, new_data
, 1);
2654 static int fbcon_set_def_font(struct vc_data
*vc
, struct console_font
*font
, char *name
)
2656 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2657 const struct font_desc
*f
;
2660 f
= get_default_font(info
->var
.xres
, info
->var
.yres
,
2661 info
->pixmap
.blit_x
, info
->pixmap
.blit_y
);
2662 else if (!(f
= find_font(name
)))
2665 font
->width
= f
->width
;
2666 font
->height
= f
->height
;
2667 return fbcon_do_set_font(vc
, f
->width
, f
->height
, f
->data
, 0);
2670 static u16 palette_red
[16];
2671 static u16 palette_green
[16];
2672 static u16 palette_blue
[16];
2674 static struct fb_cmap palette_cmap
= {
2675 0, 16, palette_red
, palette_green
, palette_blue
, NULL
2678 static int fbcon_set_palette(struct vc_data
*vc
, unsigned char *table
)
2680 struct fb_info
*info
= registered_fb
[con2fb_map
[vc
->vc_num
]];
2684 if (fbcon_is_inactive(vc
, info
))
2687 if (!CON_IS_VISIBLE(vc
))
2690 depth
= fb_get_color_depth(&info
->var
, &info
->fix
);
2692 for (i
= j
= 0; i
< 16; i
++) {
2694 val
= vc
->vc_palette
[j
++];
2695 palette_red
[k
] = (val
<< 8) | val
;
2696 val
= vc
->vc_palette
[j
++];
2697 palette_green
[k
] = (val
<< 8) | val
;
2698 val
= vc
->vc_palette
[j
++];
2699 palette_blue
[k
] = (val
<< 8) | val
;
2701 palette_cmap
.len
= 16;
2702 palette_cmap
.start
= 0;
2704 * If framebuffer is capable of less than 16 colors,
2705 * use default palette of fbcon.
2708 fb_copy_cmap(fb_default_cmap(1 << depth
), &palette_cmap
);
2710 return fb_set_cmap(&palette_cmap
, info
);
2713 static u16
*fbcon_screen_pos(struct vc_data
*vc
, int offset
)
2718 if (vc
->vc_num
!= fg_console
|| !softback_lines
)
2719 return (u16
*) (vc
->vc_origin
+ offset
);
2720 line
= offset
/ vc
->vc_size_row
;
2721 if (line
>= softback_lines
)
2722 return (u16
*) (vc
->vc_origin
+ offset
-
2723 softback_lines
* vc
->vc_size_row
);
2724 p
= softback_curr
+ offset
;
2725 if (p
>= softback_end
)
2726 p
+= softback_buf
- softback_end
;
2730 static unsigned long fbcon_getxy(struct vc_data
*vc
, unsigned long pos
,
2736 if (pos
>= vc
->vc_origin
&& pos
< vc
->vc_scr_end
) {
2737 unsigned long offset
= (pos
- vc
->vc_origin
) / 2;
2739 x
= offset
% vc
->vc_cols
;
2740 y
= offset
/ vc
->vc_cols
;
2741 if (vc
->vc_num
== fg_console
)
2742 y
+= softback_lines
;
2743 ret
= pos
+ (vc
->vc_cols
- x
) * 2;
2744 } else if (vc
->vc_num
== fg_console
&& softback_lines
) {
2745 unsigned long offset
= pos
- softback_curr
;
2747 if (pos
< softback_curr
)
2748 offset
+= softback_end
- softback_buf
;
2750 x
= offset
% vc
->vc_cols
;
2751 y
= offset
/ vc
->vc_cols
;
2752 ret
= pos
+ (vc
->vc_cols
- x
) * 2;
2753 if (ret
== softback_end
)
2755 if (ret
== softback_in
)
2756 ret
= vc
->vc_origin
;
2758 /* Should not happen */
2760 ret
= vc
->vc_origin
;
2769 /* As we might be inside of softback, we may work with non-contiguous buffer,
2770 that's why we have to use a separate routine. */
2771 static void fbcon_invert_region(struct vc_data
*vc
, u16
* p
, int cnt
)
2774 u16 a
= scr_readw(p
);
2775 if (!vc
->vc_can_do_color
)
2777 else if (vc
->vc_hi_font_mask
== 0x100)
2778 a
= ((a
) & 0x11ff) | (((a
) & 0xe000) >> 4) |
2779 (((a
) & 0x0e00) << 4);
2781 a
= ((a
) & 0x88ff) | (((a
) & 0x7000) >> 4) |
2782 (((a
) & 0x0700) << 4);
2784 if (p
== (u16
*) softback_end
)
2785 p
= (u16
*) softback_buf
;
2786 if (p
== (u16
*) softback_in
)
2787 p
= (u16
*) vc
->vc_origin
;
2791 static int fbcon_scrolldelta(struct vc_data
*vc
, int lines
)
2793 struct fb_info
*info
= registered_fb
[con2fb_map
[fg_console
]];
2794 struct fbcon_ops
*ops
= info
->fbcon_par
;
2795 struct display
*disp
= &fb_display
[fg_console
];
2796 int offset
, limit
, scrollback_old
;
2799 if (vc
->vc_num
!= fg_console
)
2801 if (vc
->vc_mode
!= KD_TEXT
|| !lines
)
2803 if (logo_shown
>= 0) {
2804 struct vc_data
*conp2
= vc_cons
[logo_shown
].d
;
2806 if (conp2
->vc_top
== logo_lines
2807 && conp2
->vc_bottom
== conp2
->vc_rows
)
2809 if (logo_shown
== vc
->vc_num
) {
2815 logo_lines
* vc
->vc_size_row
;
2816 for (i
= 0; i
< logo_lines
; i
++) {
2817 if (p
== softback_top
)
2819 if (p
== softback_buf
)
2821 p
-= vc
->vc_size_row
;
2822 q
-= vc
->vc_size_row
;
2823 scr_memcpyw((u16
*) q
, (u16
*) p
,
2826 softback_in
= softback_curr
= p
;
2827 update_region(vc
, vc
->vc_origin
,
2828 logo_lines
* vc
->vc_cols
);
2830 logo_shown
= FBCON_LOGO_CANSHOW
;
2832 fbcon_cursor(vc
, CM_ERASE
| CM_SOFTBACK
);
2833 fbcon_redraw_softback(vc
, disp
, lines
);
2834 fbcon_cursor(vc
, CM_DRAW
| CM_SOFTBACK
);
2838 if (!scrollback_phys_max
)
2841 scrollback_old
= scrollback_current
;
2842 scrollback_current
-= lines
;
2843 if (scrollback_current
< 0)
2844 scrollback_current
= 0;
2845 else if (scrollback_current
> scrollback_max
)
2846 scrollback_current
= scrollback_max
;
2847 if (scrollback_current
== scrollback_old
)
2850 if (fbcon_is_inactive(vc
, info
))
2853 fbcon_cursor(vc
, CM_ERASE
);
2855 offset
= disp
->yscroll
- scrollback_current
;
2856 limit
= disp
->vrows
;
2857 switch (disp
->scrollmode
) {
2858 case SCROLL_WRAP_MOVE
:
2859 info
->var
.vmode
|= FB_VMODE_YWRAP
;
2861 case SCROLL_PAN_MOVE
:
2862 case SCROLL_PAN_REDRAW
:
2863 limit
-= vc
->vc_rows
;
2864 info
->var
.vmode
&= ~FB_VMODE_YWRAP
;
2869 else if (offset
>= limit
)
2872 ops
->var
.xoffset
= 0;
2873 ops
->var
.yoffset
= offset
* vc
->vc_font
.height
;
2874 ops
->update_start(info
);
2876 if (!scrollback_current
)
2877 fbcon_cursor(vc
, CM_DRAW
);
2881 static int fbcon_set_origin(struct vc_data
*vc
)
2884 fbcon_scrolldelta(vc
, softback_lines
);
2888 static void fbcon_suspended(struct fb_info
*info
)
2890 struct vc_data
*vc
= NULL
;
2891 struct fbcon_ops
*ops
= info
->fbcon_par
;
2893 if (!ops
|| ops
->currcon
< 0)
2895 vc
= vc_cons
[ops
->currcon
].d
;
2897 /* Clear cursor, restore saved data */
2898 fbcon_cursor(vc
, CM_ERASE
);
2901 static void fbcon_resumed(struct fb_info
*info
)
2904 struct fbcon_ops
*ops
= info
->fbcon_par
;
2906 if (!ops
|| ops
->currcon
< 0)
2908 vc
= vc_cons
[ops
->currcon
].d
;
2913 static void fbcon_modechanged(struct fb_info
*info
)
2915 struct fbcon_ops
*ops
= info
->fbcon_par
;
2920 if (!ops
|| ops
->currcon
< 0)
2922 vc
= vc_cons
[ops
->currcon
].d
;
2923 if (vc
->vc_mode
!= KD_TEXT
||
2924 registered_fb
[con2fb_map
[ops
->currcon
]] != info
)
2927 p
= &fb_display
[vc
->vc_num
];
2928 set_blitting_type(vc
, info
);
2930 if (CON_IS_VISIBLE(vc
)) {
2931 var_to_display(p
, &info
->var
, info
);
2932 cols
= FBCON_SWAP(ops
->rotate
, info
->var
.xres
, info
->var
.yres
);
2933 rows
= FBCON_SWAP(ops
->rotate
, info
->var
.yres
, info
->var
.xres
);
2934 cols
/= vc
->vc_font
.width
;
2935 rows
/= vc
->vc_font
.height
;
2936 vc_resize(vc
, cols
, rows
);
2937 updatescrollmode(p
, info
, vc
);
2939 scrollback_current
= 0;
2941 if (!fbcon_is_inactive(vc
, info
)) {
2942 ops
->var
.xoffset
= ops
->var
.yoffset
= p
->yscroll
= 0;
2943 ops
->update_start(info
);
2946 fbcon_set_palette(vc
, color_table
);
2949 fbcon_update_softback(vc
);
2953 static void fbcon_set_all_vcs(struct fb_info
*info
)
2955 struct fbcon_ops
*ops
= info
->fbcon_par
;
2958 int i
, rows
, cols
, fg
= -1;
2960 if (!ops
|| ops
->currcon
< 0)
2963 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
2965 if (!vc
|| vc
->vc_mode
!= KD_TEXT
||
2966 registered_fb
[con2fb_map
[i
]] != info
)
2969 if (CON_IS_VISIBLE(vc
)) {
2974 p
= &fb_display
[vc
->vc_num
];
2975 set_blitting_type(vc
, info
);
2976 var_to_display(p
, &info
->var
, info
);
2977 cols
= FBCON_SWAP(p
->rotate
, info
->var
.xres
, info
->var
.yres
);
2978 rows
= FBCON_SWAP(p
->rotate
, info
->var
.yres
, info
->var
.xres
);
2979 cols
/= vc
->vc_font
.width
;
2980 rows
/= vc
->vc_font
.height
;
2981 vc_resize(vc
, cols
, rows
);
2985 fbcon_modechanged(info
);
2988 static int fbcon_mode_deleted(struct fb_info
*info
,
2989 struct fb_videomode
*mode
)
2991 struct fb_info
*fb_info
;
2993 int i
, j
, found
= 0;
2995 /* before deletion, ensure that mode is not in use */
2996 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3000 fb_info
= registered_fb
[j
];
3001 if (fb_info
!= info
)
3006 if (fb_mode_is_equal(p
->mode
, mode
)) {
3014 #ifdef CONFIG_VT_HW_CONSOLE_BINDING
3015 static int fbcon_unbind(void)
3019 ret
= unbind_con_driver(&fb_con
, first_fb_vc
, last_fb_vc
,
3024 static inline int fbcon_unbind(void)
3028 #endif /* CONFIG_VT_HW_CONSOLE_BINDING */
3030 static int fbcon_fb_unbind(int idx
)
3032 int i
, new_idx
= -1, ret
= 0;
3034 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3035 if (con2fb_map
[i
] != idx
&&
3036 con2fb_map
[i
] != -1) {
3042 if (new_idx
!= -1) {
3043 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3044 if (con2fb_map
[i
] == idx
)
3045 set_con2fb_map(i
, new_idx
, 0);
3048 ret
= fbcon_unbind();
3053 static int fbcon_fb_unregistered(struct fb_info
*info
)
3055 int i
, idx
= info
->node
;
3057 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3058 if (con2fb_map
[i
] == idx
)
3062 if (idx
== info_idx
) {
3065 for (i
= 0; i
< FB_MAX
; i
++) {
3066 if (registered_fb
[i
] != NULL
) {
3073 if (info_idx
!= -1) {
3074 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3075 if (con2fb_map
[i
] == -1)
3076 con2fb_map
[i
] = info_idx
;
3080 if (!num_registered_fb
)
3081 unregister_con_driver(&fb_con
);
3084 if (primary_device
== idx
)
3085 primary_device
= -1;
3090 #ifdef CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY
3091 static void fbcon_select_primary(struct fb_info
*info
)
3093 if (!map_override
&& primary_device
== -1 &&
3094 fb_is_primary_device(info
)) {
3097 printk(KERN_INFO
"fbcon: %s (fb%i) is primary device\n",
3098 info
->fix
.id
, info
->node
);
3099 primary_device
= info
->node
;
3101 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++)
3102 con2fb_map_boot
[i
] = primary_device
;
3104 if (con_is_bound(&fb_con
)) {
3105 printk(KERN_INFO
"fbcon: Remapping primary device, "
3106 "fb%i, to tty %i-%i\n", info
->node
,
3107 first_fb_vc
+ 1, last_fb_vc
+ 1);
3108 info_idx
= primary_device
;
3114 static inline void fbcon_select_primary(struct fb_info
*info
)
3118 #endif /* CONFIG_FRAMEBUFFER_DETECT_PRIMARY */
3120 static int fbcon_fb_registered(struct fb_info
*info
)
3122 int ret
= 0, i
, idx
= info
->node
;
3124 fbcon_select_primary(info
);
3126 if (info_idx
== -1) {
3127 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3128 if (con2fb_map_boot
[i
] == idx
) {
3135 ret
= fbcon_takeover(1);
3137 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3138 if (con2fb_map_boot
[i
] == idx
)
3139 set_con2fb_map(i
, idx
, 0);
3146 static void fbcon_fb_blanked(struct fb_info
*info
, int blank
)
3148 struct fbcon_ops
*ops
= info
->fbcon_par
;
3151 if (!ops
|| ops
->currcon
< 0)
3154 vc
= vc_cons
[ops
->currcon
].d
;
3155 if (vc
->vc_mode
!= KD_TEXT
||
3156 registered_fb
[con2fb_map
[ops
->currcon
]] != info
)
3159 if (CON_IS_VISIBLE(vc
)) {
3163 do_unblank_screen(0);
3165 ops
->blank_state
= blank
;
3168 static void fbcon_new_modelist(struct fb_info
*info
)
3172 struct fb_var_screeninfo var
;
3173 const struct fb_videomode
*mode
;
3175 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3176 if (registered_fb
[con2fb_map
[i
]] != info
)
3178 if (!fb_display
[i
].mode
)
3181 display_to_var(&var
, &fb_display
[i
]);
3182 mode
= fb_find_nearest_mode(fb_display
[i
].mode
,
3184 fb_videomode_to_var(&var
, mode
);
3185 fbcon_set_disp(info
, &var
, vc
->vc_num
);
3189 static void fbcon_get_requirement(struct fb_info
*info
,
3190 struct fb_blit_caps
*caps
)
3198 for (i
= first_fb_vc
; i
<= last_fb_vc
; i
++) {
3200 if (vc
&& vc
->vc_mode
== KD_TEXT
&&
3201 info
->node
== con2fb_map
[i
]) {
3203 caps
->x
|= 1 << (vc
->vc_font
.width
- 1);
3204 caps
->y
|= 1 << (vc
->vc_font
.height
- 1);
3205 charcnt
= (p
->userfont
) ?
3206 FNTCHARCNT(p
->fontdata
) : 256;
3207 if (caps
->len
< charcnt
)
3208 caps
->len
= charcnt
;
3212 vc
= vc_cons
[fg_console
].d
;
3214 if (vc
&& vc
->vc_mode
== KD_TEXT
&&
3215 info
->node
== con2fb_map
[fg_console
]) {
3216 p
= &fb_display
[fg_console
];
3217 caps
->x
= 1 << (vc
->vc_font
.width
- 1);
3218 caps
->y
= 1 << (vc
->vc_font
.height
- 1);
3219 caps
->len
= (p
->userfont
) ?
3220 FNTCHARCNT(p
->fontdata
) : 256;
3225 static int fbcon_event_notify(struct notifier_block
*self
,
3226 unsigned long action
, void *data
)
3228 struct fb_event
*event
= data
;
3229 struct fb_info
*info
= event
->info
;
3230 struct fb_videomode
*mode
;
3231 struct fb_con2fbmap
*con2fb
;
3232 struct fb_blit_caps
*caps
;
3236 * ignore all events except driver registration and deregistration
3237 * if fbcon is not active
3239 if (fbcon_has_exited
&& !(action
== FB_EVENT_FB_REGISTERED
||
3240 action
== FB_EVENT_FB_UNREGISTERED
))
3244 case FB_EVENT_SUSPEND
:
3245 fbcon_suspended(info
);
3247 case FB_EVENT_RESUME
:
3248 fbcon_resumed(info
);
3250 case FB_EVENT_MODE_CHANGE
:
3251 fbcon_modechanged(info
);
3253 case FB_EVENT_MODE_CHANGE_ALL
:
3254 fbcon_set_all_vcs(info
);
3256 case FB_EVENT_MODE_DELETE
:
3258 ret
= fbcon_mode_deleted(info
, mode
);
3260 case FB_EVENT_FB_UNBIND
:
3261 ret
= fbcon_fb_unbind(info
->node
);
3263 case FB_EVENT_FB_REGISTERED
:
3264 ret
= fbcon_fb_registered(info
);
3266 case FB_EVENT_FB_UNREGISTERED
:
3267 ret
= fbcon_fb_unregistered(info
);
3269 case FB_EVENT_SET_CONSOLE_MAP
:
3270 con2fb
= event
->data
;
3271 ret
= set_con2fb_map(con2fb
->console
- 1,
3272 con2fb
->framebuffer
, 1);
3274 case FB_EVENT_GET_CONSOLE_MAP
:
3275 con2fb
= event
->data
;
3276 con2fb
->framebuffer
= con2fb_map
[con2fb
->console
- 1];
3278 case FB_EVENT_BLANK
:
3279 fbcon_fb_blanked(info
, *(int *)event
->data
);
3281 case FB_EVENT_NEW_MODELIST
:
3282 fbcon_new_modelist(info
);
3284 case FB_EVENT_GET_REQ
:
3286 fbcon_get_requirement(info
, caps
);
3295 * The console `switch' structure for the frame buffer based console
3298 static const struct consw fb_con
= {
3299 .owner
= THIS_MODULE
,
3300 .con_startup
= fbcon_startup
,
3301 .con_init
= fbcon_init
,
3302 .con_deinit
= fbcon_deinit
,
3303 .con_clear
= fbcon_clear
,
3304 .con_putc
= fbcon_putc
,
3305 .con_putcs
= fbcon_putcs
,
3306 .con_cursor
= fbcon_cursor
,
3307 .con_scroll
= fbcon_scroll
,
3308 .con_bmove
= fbcon_bmove
,
3309 .con_switch
= fbcon_switch
,
3310 .con_blank
= fbcon_blank
,
3311 .con_font_set
= fbcon_set_font
,
3312 .con_font_get
= fbcon_get_font
,
3313 .con_font_default
= fbcon_set_def_font
,
3314 .con_font_copy
= fbcon_copy_font
,
3315 .con_set_palette
= fbcon_set_palette
,
3316 .con_scrolldelta
= fbcon_scrolldelta
,
3317 .con_set_origin
= fbcon_set_origin
,
3318 .con_invert_region
= fbcon_invert_region
,
3319 .con_screen_pos
= fbcon_screen_pos
,
3320 .con_getxy
= fbcon_getxy
,
3321 .con_resize
= fbcon_resize
,
3324 static struct notifier_block fbcon_event_notifier
= {
3325 .notifier_call
= fbcon_event_notify
,
3328 static ssize_t
store_rotate(struct device
*device
,
3329 struct device_attribute
*attr
, const char *buf
,
3332 struct fb_info
*info
;
3336 if (fbcon_has_exited
)
3339 acquire_console_sem();
3340 idx
= con2fb_map
[fg_console
];
3342 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3345 info
= registered_fb
[idx
];
3346 rotate
= simple_strtoul(buf
, last
, 0);
3347 fbcon_rotate(info
, rotate
);
3349 release_console_sem();
3353 static ssize_t
store_rotate_all(struct device
*device
,
3354 struct device_attribute
*attr
,const char *buf
,
3357 struct fb_info
*info
;
3361 if (fbcon_has_exited
)
3364 acquire_console_sem();
3365 idx
= con2fb_map
[fg_console
];
3367 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3370 info
= registered_fb
[idx
];
3371 rotate
= simple_strtoul(buf
, last
, 0);
3372 fbcon_rotate_all(info
, rotate
);
3374 release_console_sem();
3378 static ssize_t
show_rotate(struct device
*device
,
3379 struct device_attribute
*attr
,char *buf
)
3381 struct fb_info
*info
;
3382 int rotate
= 0, idx
;
3384 if (fbcon_has_exited
)
3387 acquire_console_sem();
3388 idx
= con2fb_map
[fg_console
];
3390 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3393 info
= registered_fb
[idx
];
3394 rotate
= fbcon_get_rotate(info
);
3396 release_console_sem();
3397 return snprintf(buf
, PAGE_SIZE
, "%d\n", rotate
);
3400 static ssize_t
show_cursor_blink(struct device
*device
,
3401 struct device_attribute
*attr
, char *buf
)
3403 struct fb_info
*info
;
3404 struct fbcon_ops
*ops
;
3405 int idx
, blink
= -1;
3407 if (fbcon_has_exited
)
3410 acquire_console_sem();
3411 idx
= con2fb_map
[fg_console
];
3413 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3416 info
= registered_fb
[idx
];
3417 ops
= info
->fbcon_par
;
3422 blink
= (ops
->flags
& FBCON_FLAGS_CURSOR_TIMER
) ? 1 : 0;
3424 release_console_sem();
3425 return snprintf(buf
, PAGE_SIZE
, "%d\n", blink
);
3428 static ssize_t
store_cursor_blink(struct device
*device
,
3429 struct device_attribute
*attr
,
3430 const char *buf
, size_t count
)
3432 struct fb_info
*info
;
3436 if (fbcon_has_exited
)
3439 acquire_console_sem();
3440 idx
= con2fb_map
[fg_console
];
3442 if (idx
== -1 || registered_fb
[idx
] == NULL
)
3445 info
= registered_fb
[idx
];
3447 if (!info
->fbcon_par
)
3450 blink
= simple_strtoul(buf
, last
, 0);
3453 fbcon_cursor_noblink
= 0;
3454 fbcon_add_cursor_timer(info
);
3456 fbcon_cursor_noblink
= 1;
3457 fbcon_del_cursor_timer(info
);
3461 release_console_sem();
3465 static struct device_attribute device_attrs
[] = {
3466 __ATTR(rotate
, S_IRUGO
|S_IWUSR
, show_rotate
, store_rotate
),
3467 __ATTR(rotate_all
, S_IWUSR
, NULL
, store_rotate_all
),
3468 __ATTR(cursor_blink
, S_IRUGO
|S_IWUSR
, show_cursor_blink
,
3469 store_cursor_blink
),
3472 static int fbcon_init_device(void)
3476 fbcon_has_sysfs
= 1;
3478 for (i
= 0; i
< ARRAY_SIZE(device_attrs
); i
++) {
3479 error
= device_create_file(fbcon_device
, &device_attrs
[i
]);
3487 device_remove_file(fbcon_device
, &device_attrs
[i
]);
3489 fbcon_has_sysfs
= 0;
3495 static void fbcon_start(void)
3497 if (num_registered_fb
) {
3500 acquire_console_sem();
3502 for (i
= 0; i
< FB_MAX
; i
++) {
3503 if (registered_fb
[i
] != NULL
) {
3509 release_console_sem();
3514 static void fbcon_exit(void)
3516 struct fb_info
*info
;
3519 if (fbcon_has_exited
)
3523 free_irq(IRQ_AUTO_4
, fb_vbl_handler
);
3526 if (MACH_IS_MAC
&& vbl_detected
)
3527 free_irq(IRQ_MAC_VBL
, fb_vbl_handler
);
3530 kfree((void *)softback_buf
);
3533 for (i
= 0; i
< FB_MAX
; i
++) {
3535 info
= registered_fb
[i
];
3540 for (j
= first_fb_vc
; j
<= last_fb_vc
; j
++) {
3541 if (con2fb_map
[j
] == i
)
3546 if (info
->fbops
->fb_release
)
3547 info
->fbops
->fb_release(info
, 0);
3548 module_put(info
->fbops
->owner
);
3550 if (info
->fbcon_par
) {
3551 struct fbcon_ops
*ops
= info
->fbcon_par
;
3553 fbcon_del_cursor_timer(info
);
3554 kfree(ops
->cursor_src
);
3555 kfree(info
->fbcon_par
);
3556 info
->fbcon_par
= NULL
;
3559 if (info
->queue
.func
== fb_flashcursor
)
3560 info
->queue
.func
= NULL
;
3564 fbcon_has_exited
= 1;
3567 static int __init
fb_console_init(void)
3571 acquire_console_sem();
3572 fb_register_client(&fbcon_event_notifier
);
3573 fbcon_device
= device_create(fb_class
, NULL
, MKDEV(0, 0), "fbcon");
3575 if (IS_ERR(fbcon_device
)) {
3576 printk(KERN_WARNING
"Unable to create device "
3577 "for fbcon; errno = %ld\n",
3578 PTR_ERR(fbcon_device
));
3579 fbcon_device
= NULL
;
3581 fbcon_init_device();
3583 for (i
= 0; i
< MAX_NR_CONSOLES
; i
++)
3586 release_console_sem();
3591 module_init(fb_console_init
);
3595 static void __exit
fbcon_deinit_device(void)
3599 if (fbcon_has_sysfs
) {
3600 for (i
= 0; i
< ARRAY_SIZE(device_attrs
); i
++)
3601 device_remove_file(fbcon_device
, &device_attrs
[i
]);
3603 fbcon_has_sysfs
= 0;
3607 static void __exit
fb_console_exit(void)
3609 acquire_console_sem();
3610 fb_unregister_client(&fbcon_event_notifier
);
3611 fbcon_deinit_device();
3612 device_destroy(fb_class
, MKDEV(0, 0));
3614 release_console_sem();
3615 unregister_con_driver(&fb_con
);
3618 module_exit(fb_console_exit
);
3622 MODULE_LICENSE("GPL");