1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 1991, 1992 Linus Torvalds
7 * Hopefully this will be a rather complete VT102 implementation.
9 * Beeping thanks to John T Kohl.
11 * Virtual Consoles, Screen Blanking, Screen Dumping, Color, Graphics
12 * Chars, and VT100 enhancements by Peter MacDonald.
14 * Copy and paste function by Andrew Haylett,
15 * some enhancements by Alessandro Rubini.
17 * Code to check for different video-cards mostly by Galen Hunt,
18 * <g-hunt@ee.utah.edu>
20 * Rudimentary ISO 10646/Unicode/UTF-8 character set support by
21 * Markus Kuhn, <mskuhn@immd4.informatik.uni-erlangen.de>.
23 * Dynamic allocation of consoles, aeb@cwi.nl, May 1994
24 * Resizing of consoles, aeb, 940926
26 * Code for xterm like mouse click reporting by Peter Orbaek 20-Jul-94
29 * User-defined bell sound, new setterm control sequences and printk
30 * redirection by Martin Mares <mj@k332.feld.cvut.cz> 19-Nov-95
32 * APM screenblank bug fixed Takashi Manabe <manabe@roy.dsl.tutics.tut.jp>
34 * Merge with the abstract console driver by Geert Uytterhoeven
35 * <geert@linux-m68k.org>, Jan 1997.
37 * Original m68k console driver modifications by
39 * - Arno Griffioen <arno@usn.nl>
40 * - David Carter <carter@cs.bris.ac.uk>
42 * The abstract console driver provides a generic interface for a text
43 * console. It supports VGA text mode, frame buffer based graphical consoles
44 * and special graphics processors that are only accessible through some
45 * registers (e.g. a TMS340x0 GSP).
47 * The interface to the hardware is specified using a special structure
48 * (struct consw) which contains function pointers to console operations
49 * (see <linux/console.h> for more information).
51 * Support for changeable cursor shape
52 * by Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>, August 1997
54 * Ported to i386 and con_scrolldelta fixed
55 * by Emmanuel Marty <core@ggi-project.org>, April 1998
57 * Resurrected character buffers in videoram plus lots of other trickery
58 * by Martin Mares <mj@atrey.karlin.mff.cuni.cz>, July 1998
60 * Removed old-style timers, introduced console_timer, made timer
61 * deletion SMP-safe. 17Jun00, Andrew Morton
63 * Removed console_lock, enabled interrupts across all console operations
64 * 13 March 2001, Andrew Morton
66 * Fixed UTF-8 mode so alternate charset modes always work according
67 * to control sequences interpreted in do_con_trol function
68 * preserving backward VT100 semigraphics compatibility,
69 * malformed UTF sequences represented as sequences of replacement glyphs,
70 * original codes or '?' as a last resort if replacement glyph is undefined
71 * by Adam Tla/lka <atlka@pg.gda.pl>, Aug 2006
74 #include <linux/module.h>
75 #include <linux/types.h>
76 #include <linux/sched/signal.h>
77 #include <linux/tty.h>
78 #include <linux/tty_flip.h>
79 #include <linux/kernel.h>
80 #include <linux/string.h>
81 #include <linux/errno.h>
83 #include <linux/slab.h>
84 #include <linux/major.h>
86 #include <linux/console.h>
87 #include <linux/init.h>
88 #include <linux/mutex.h>
89 #include <linux/vt_kern.h>
90 #include <linux/selection.h>
91 #include <linux/tiocl.h>
92 #include <linux/kbd_kern.h>
93 #include <linux/consolemap.h>
94 #include <linux/timer.h>
95 #include <linux/interrupt.h>
96 #include <linux/workqueue.h>
98 #include <linux/font.h>
99 #include <linux/bitops.h>
100 #include <linux/notifier.h>
101 #include <linux/device.h>
102 #include <linux/io.h>
103 #include <linux/uaccess.h>
104 #include <linux/kdb.h>
105 #include <linux/ctype.h>
106 #include <linux/bsearch.h>
108 #define MAX_NR_CON_DRIVER 16
110 #define CON_DRIVER_FLAG_MODULE 1
111 #define CON_DRIVER_FLAG_INIT 2
112 #define CON_DRIVER_FLAG_ATTR 4
113 #define CON_DRIVER_FLAG_ZOMBIE 8
116 const struct consw
*con
;
125 static struct con_driver registered_con_driver
[MAX_NR_CON_DRIVER
];
126 const struct consw
*conswitchp
;
128 /* A bitmap for codes <32. A bit of 1 indicates that the code
129 * corresponding to that bit number invokes some special action
130 * (such as cursor movement) and should not be displayed as a
131 * glyph unless the disp_ctrl mode is explicitly enabled.
133 #define CTRL_ACTION 0x0d00ff81
134 #define CTRL_ALWAYS 0x0800f501 /* Cannot be overridden by disp_ctrl */
137 * Here is the default bell parameters: 750HZ, 1/8th of a second
139 #define DEFAULT_BELL_PITCH 750
140 #define DEFAULT_BELL_DURATION (HZ/8)
141 #define DEFAULT_CURSOR_BLINK_MS 200
143 struct vc vc_cons
[MAX_NR_CONSOLES
];
145 #ifndef VT_SINGLE_DRIVER
146 static const struct consw
*con_driver_map
[MAX_NR_CONSOLES
];
149 static int con_open(struct tty_struct
*, struct file
*);
150 static void vc_init(struct vc_data
*vc
, unsigned int rows
,
151 unsigned int cols
, int do_clear
);
152 static void gotoxy(struct vc_data
*vc
, int new_x
, int new_y
);
153 static void save_cur(struct vc_data
*vc
);
154 static void reset_terminal(struct vc_data
*vc
, int do_clear
);
155 static void con_flush_chars(struct tty_struct
*tty
);
156 static int set_vesa_blanking(char __user
*p
);
157 static void set_cursor(struct vc_data
*vc
);
158 static void hide_cursor(struct vc_data
*vc
);
159 static void console_callback(struct work_struct
*ignored
);
160 static void con_driver_unregister_callback(struct work_struct
*ignored
);
161 static void blank_screen_t(struct timer_list
*unused
);
162 static void set_palette(struct vc_data
*vc
);
164 #define vt_get_kmsg_redirect() vt_kmsg_redirect(-1)
166 static int printable
; /* Is console ready for printing? */
167 int default_utf8
= true;
168 module_param(default_utf8
, int, S_IRUGO
| S_IWUSR
);
169 int global_cursor_default
= -1;
170 module_param(global_cursor_default
, int, S_IRUGO
| S_IWUSR
);
172 static int cur_default
= CUR_DEFAULT
;
173 module_param(cur_default
, int, S_IRUGO
| S_IWUSR
);
176 * ignore_poke: don't unblank the screen when things are typed. This is
177 * mainly for the privacy of braille terminal users.
179 static int ignore_poke
;
181 int do_poke_blanked_console
;
184 static int vesa_blank_mode
; /* 0:none 1:suspendV 2:suspendH 3:powerdown */
185 static int vesa_off_interval
;
186 static int blankinterval
;
187 core_param(consoleblank
, blankinterval
, int, 0444);
189 static DECLARE_WORK(console_work
, console_callback
);
190 static DECLARE_WORK(con_driver_unregister_work
, con_driver_unregister_callback
);
193 * fg_console is the current virtual console,
194 * last_console is the last used one,
195 * want_console is the console we want to switch to,
196 * saved_* variants are for save/restore around kernel debugger enter/leave
200 int want_console
= -1;
201 static int saved_fg_console
;
202 static int saved_last_console
;
203 static int saved_want_console
;
204 static int saved_vc_mode
;
205 static int saved_console_blanked
;
208 * For each existing display, we have a pointer to console currently visible
209 * on that display, allowing consoles other than fg_console to be refreshed
210 * appropriately. Unless the low-level driver supplies its own display_fg
211 * variable, we use this one for the "master display".
213 static struct vc_data
*master_display_fg
;
216 * Unfortunately, we need to delay tty echo when we're currently writing to the
217 * console since the code is (and always was) not re-entrant, so we schedule
218 * all flip requests to process context with schedule-task() and run it from
219 * console_callback().
223 * For the same reason, we defer scrollback to the console callback.
225 static int scrollback_delta
;
228 * Hook so that the power management routines can (un)blank
229 * the console on our behalf.
231 int (*console_blank_hook
)(int);
233 static DEFINE_TIMER(console_timer
, blank_screen_t
);
234 static int blank_state
;
235 static int blank_timer_expired
;
243 * /sys/class/tty/tty0/
245 * the attribute 'active' contains the name of the current vc
246 * console and it supports poll() to detect vc switches
248 static struct device
*tty0dev
;
251 * Notifier list for console events.
253 static ATOMIC_NOTIFIER_HEAD(vt_notifier_list
);
255 int register_vt_notifier(struct notifier_block
*nb
)
257 return atomic_notifier_chain_register(&vt_notifier_list
, nb
);
259 EXPORT_SYMBOL_GPL(register_vt_notifier
);
261 int unregister_vt_notifier(struct notifier_block
*nb
)
263 return atomic_notifier_chain_unregister(&vt_notifier_list
, nb
);
265 EXPORT_SYMBOL_GPL(unregister_vt_notifier
);
267 static void notify_write(struct vc_data
*vc
, unsigned int unicode
)
269 struct vt_notifier_param param
= { .vc
= vc
, .c
= unicode
};
270 atomic_notifier_call_chain(&vt_notifier_list
, VT_WRITE
, ¶m
);
273 static void notify_update(struct vc_data
*vc
)
275 struct vt_notifier_param param
= { .vc
= vc
};
276 atomic_notifier_call_chain(&vt_notifier_list
, VT_UPDATE
, ¶m
);
279 * Low-Level Functions
282 static inline bool con_is_fg(const struct vc_data
*vc
)
284 return vc
->vc_num
== fg_console
;
287 static inline bool con_should_update(const struct vc_data
*vc
)
289 return con_is_visible(vc
) && !console_blanked
;
292 static inline unsigned short *screenpos(struct vc_data
*vc
, int offset
, int viewed
)
297 p
= (unsigned short *)(vc
->vc_origin
+ offset
);
298 else if (!vc
->vc_sw
->con_screen_pos
)
299 p
= (unsigned short *)(vc
->vc_visible_origin
+ offset
);
301 p
= vc
->vc_sw
->con_screen_pos(vc
, offset
);
305 /* Called from the keyboard irq path.. */
306 static inline void scrolldelta(int lines
)
309 /* scrolldelta needs some kind of consistency lock, but the BKL was
310 and still is not protecting versus the scheduled back end */
311 scrollback_delta
+= lines
;
312 schedule_console_callback();
315 void schedule_console_callback(void)
317 schedule_work(&console_work
);
320 static void con_scroll(struct vc_data
*vc
, unsigned int t
, unsigned int b
,
321 enum con_scroll dir
, unsigned int nr
)
327 if (b
> vc
->vc_rows
|| t
>= b
|| nr
< 1)
329 if (con_is_visible(vc
) && vc
->vc_sw
->con_scroll(vc
, t
, b
, dir
, nr
))
332 s
= clear
= (u16
*)(vc
->vc_origin
+ vc
->vc_size_row
* t
);
333 d
= (u16
*)(vc
->vc_origin
+ vc
->vc_size_row
* (t
+ nr
));
336 clear
= s
+ (b
- t
- nr
) * vc
->vc_cols
;
339 scr_memmovew(d
, s
, (b
- t
- nr
) * vc
->vc_size_row
);
340 scr_memsetw(clear
, vc
->vc_video_erase_char
, vc
->vc_size_row
* nr
);
343 static void do_update_region(struct vc_data
*vc
, unsigned long start
, int count
)
345 unsigned int xx
, yy
, offset
;
349 if (!vc
->vc_sw
->con_getxy
) {
350 offset
= (start
- vc
->vc_origin
) / 2;
351 xx
= offset
% vc
->vc_cols
;
352 yy
= offset
/ vc
->vc_cols
;
355 start
= vc
->vc_sw
->con_getxy(vc
, start
, &nxx
, &nyy
);
359 u16 attrib
= scr_readw(p
) & 0xff00;
362 while (xx
< vc
->vc_cols
&& count
) {
363 if (attrib
!= (scr_readw(p
) & 0xff00)) {
365 vc
->vc_sw
->con_putcs(vc
, q
, p
-q
, yy
, startx
);
368 attrib
= scr_readw(p
) & 0xff00;
375 vc
->vc_sw
->con_putcs(vc
, q
, p
-q
, yy
, startx
);
380 if (vc
->vc_sw
->con_getxy
) {
382 start
= vc
->vc_sw
->con_getxy(vc
, start
, NULL
, NULL
);
387 void update_region(struct vc_data
*vc
, unsigned long start
, int count
)
389 WARN_CONSOLE_UNLOCKED();
391 if (con_should_update(vc
)) {
393 do_update_region(vc
, start
, count
);
398 /* Structure of attributes is hardware-dependent */
400 static u8
build_attr(struct vc_data
*vc
, u8 _color
, u8 _intensity
, u8 _blink
,
401 u8 _underline
, u8 _reverse
, u8 _italic
)
403 if (vc
->vc_sw
->con_build_attr
)
404 return vc
->vc_sw
->con_build_attr(vc
, _color
, _intensity
,
405 _blink
, _underline
, _reverse
, _italic
);
408 * ++roman: I completely changed the attribute format for monochrome
409 * mode (!can_do_color). The formerly used MDA (monochrome display
410 * adapter) format didn't allow the combination of certain effects.
411 * Now the attribute is just a bit vector:
412 * Bit 0..1: intensity (0..2)
419 if (!vc
->vc_can_do_color
)
422 (_underline
? 4 : 0) |
426 a
= (a
& 0xF0) | vc
->vc_itcolor
;
428 a
= (a
& 0xf0) | vc
->vc_ulcolor
;
429 else if (_intensity
== 0)
430 a
= (a
& 0xf0) | vc
->vc_halfcolor
;
432 a
= ((a
) & 0x88) | ((((a
) >> 4) | ((a
) << 4)) & 0x77);
437 if (vc
->vc_hi_font_mask
== 0x100)
443 static void update_attr(struct vc_data
*vc
)
445 vc
->vc_attr
= build_attr(vc
, vc
->vc_color
, vc
->vc_intensity
,
446 vc
->vc_blink
, vc
->vc_underline
,
447 vc
->vc_reverse
^ vc
->vc_decscnm
, vc
->vc_italic
);
448 vc
->vc_video_erase_char
= (build_attr(vc
, vc
->vc_color
, 1, vc
->vc_blink
, 0, vc
->vc_decscnm
, 0) << 8) | ' ';
451 /* Note: inverting the screen twice should revert to the original state */
452 void invert_screen(struct vc_data
*vc
, int offset
, int count
, int viewed
)
456 WARN_CONSOLE_UNLOCKED();
459 p
= screenpos(vc
, offset
, viewed
);
460 if (vc
->vc_sw
->con_invert_region
) {
461 vc
->vc_sw
->con_invert_region(vc
, p
, count
);
467 if (!vc
->vc_can_do_color
) {
474 } else if (vc
->vc_hi_font_mask
== 0x100) {
477 a
= ((a
) & 0x11ff) | (((a
) & 0xe000) >> 4) | (((a
) & 0x0e00) << 4);
484 a
= ((a
) & 0x88ff) | (((a
) & 0x7000) >> 4) | (((a
) & 0x0700) << 4);
491 if (con_should_update(vc
))
492 do_update_region(vc
, (unsigned long) p
, count
);
496 /* used by selection: complement pointer position */
497 void complement_pos(struct vc_data
*vc
, int offset
)
499 static int old_offset
= -1;
500 static unsigned short old
;
501 static unsigned short oldx
, oldy
;
503 WARN_CONSOLE_UNLOCKED();
505 if (old_offset
!= -1 && old_offset
>= 0 &&
506 old_offset
< vc
->vc_screenbuf_size
) {
507 scr_writew(old
, screenpos(vc
, old_offset
, 1));
508 if (con_should_update(vc
))
509 vc
->vc_sw
->con_putc(vc
, old
, oldy
, oldx
);
515 if (offset
!= -1 && offset
>= 0 &&
516 offset
< vc
->vc_screenbuf_size
) {
519 p
= screenpos(vc
, offset
, 1);
521 new = old
^ vc
->vc_complement_mask
;
523 if (con_should_update(vc
)) {
524 oldx
= (offset
>> 1) % vc
->vc_cols
;
525 oldy
= (offset
>> 1) / vc
->vc_cols
;
526 vc
->vc_sw
->con_putc(vc
, new, oldy
, oldx
);
532 static void insert_char(struct vc_data
*vc
, unsigned int nr
)
534 unsigned short *p
= (unsigned short *) vc
->vc_pos
;
536 scr_memmovew(p
+ nr
, p
, (vc
->vc_cols
- vc
->vc_x
- nr
) * 2);
537 scr_memsetw(p
, vc
->vc_video_erase_char
, nr
* 2);
538 vc
->vc_need_wrap
= 0;
539 if (con_should_update(vc
))
540 do_update_region(vc
, (unsigned long) p
,
541 vc
->vc_cols
- vc
->vc_x
);
544 static void delete_char(struct vc_data
*vc
, unsigned int nr
)
546 unsigned short *p
= (unsigned short *) vc
->vc_pos
;
548 scr_memcpyw(p
, p
+ nr
, (vc
->vc_cols
- vc
->vc_x
- nr
) * 2);
549 scr_memsetw(p
+ vc
->vc_cols
- vc
->vc_x
- nr
, vc
->vc_video_erase_char
,
551 vc
->vc_need_wrap
= 0;
552 if (con_should_update(vc
))
553 do_update_region(vc
, (unsigned long) p
,
554 vc
->vc_cols
- vc
->vc_x
);
557 static int softcursor_original
= -1;
559 static void add_softcursor(struct vc_data
*vc
)
561 int i
= scr_readw((u16
*) vc
->vc_pos
);
562 u32 type
= vc
->vc_cursor_type
;
564 if (! (type
& 0x10)) return;
565 if (softcursor_original
!= -1) return;
566 softcursor_original
= i
;
567 i
|= ((type
>> 8) & 0xff00 );
568 i
^= ((type
) & 0xff00 );
569 if ((type
& 0x20) && ((softcursor_original
& 0x7000) == (i
& 0x7000))) i
^= 0x7000;
570 if ((type
& 0x40) && ((i
& 0x700) == ((i
& 0x7000) >> 4))) i
^= 0x0700;
571 scr_writew(i
, (u16
*) vc
->vc_pos
);
572 if (con_should_update(vc
))
573 vc
->vc_sw
->con_putc(vc
, i
, vc
->vc_y
, vc
->vc_x
);
576 static void hide_softcursor(struct vc_data
*vc
)
578 if (softcursor_original
!= -1) {
579 scr_writew(softcursor_original
, (u16
*)vc
->vc_pos
);
580 if (con_should_update(vc
))
581 vc
->vc_sw
->con_putc(vc
, softcursor_original
,
583 softcursor_original
= -1;
587 static void hide_cursor(struct vc_data
*vc
)
591 vc
->vc_sw
->con_cursor(vc
, CM_ERASE
);
595 static void set_cursor(struct vc_data
*vc
)
597 if (!con_is_fg(vc
) || console_blanked
|| vc
->vc_mode
== KD_GRAPHICS
)
603 if ((vc
->vc_cursor_type
& 0x0f) != 1)
604 vc
->vc_sw
->con_cursor(vc
, CM_DRAW
);
609 static void set_origin(struct vc_data
*vc
)
611 WARN_CONSOLE_UNLOCKED();
613 if (!con_is_visible(vc
) ||
614 !vc
->vc_sw
->con_set_origin
||
615 !vc
->vc_sw
->con_set_origin(vc
))
616 vc
->vc_origin
= (unsigned long)vc
->vc_screenbuf
;
617 vc
->vc_visible_origin
= vc
->vc_origin
;
618 vc
->vc_scr_end
= vc
->vc_origin
+ vc
->vc_screenbuf_size
;
619 vc
->vc_pos
= vc
->vc_origin
+ vc
->vc_size_row
* vc
->vc_y
+ 2 * vc
->vc_x
;
622 static void save_screen(struct vc_data
*vc
)
624 WARN_CONSOLE_UNLOCKED();
626 if (vc
->vc_sw
->con_save_screen
)
627 vc
->vc_sw
->con_save_screen(vc
);
630 static void flush_scrollback(struct vc_data
*vc
)
632 WARN_CONSOLE_UNLOCKED();
634 if (vc
->vc_sw
->con_flush_scrollback
)
635 vc
->vc_sw
->con_flush_scrollback(vc
);
639 * Redrawing of screen
642 void clear_buffer_attributes(struct vc_data
*vc
)
644 unsigned short *p
= (unsigned short *)vc
->vc_origin
;
645 int count
= vc
->vc_screenbuf_size
/ 2;
646 int mask
= vc
->vc_hi_font_mask
| 0xff;
648 for (; count
> 0; count
--, p
++) {
649 scr_writew((scr_readw(p
)&mask
) | (vc
->vc_video_erase_char
& ~mask
), p
);
653 void redraw_screen(struct vc_data
*vc
, int is_switch
)
657 WARN_CONSOLE_UNLOCKED();
661 /* printk("redraw_screen: tty %d not allocated ??\n", new_console+1); */
666 struct vc_data
*old_vc
= vc_cons
[fg_console
].d
;
669 if (!con_is_visible(vc
))
671 *vc
->vc_display_fg
= vc
;
672 fg_console
= vc
->vc_num
;
674 if (!con_is_visible(old_vc
)) {
679 sysfs_notify(&tty0dev
->kobj
, NULL
, "active");
687 int old_was_color
= vc
->vc_can_do_color
;
690 update
= vc
->vc_sw
->con_switch(vc
);
693 * If console changed from mono<->color, the best we can do
694 * is to clear the buffer attributes. As it currently stands,
695 * rebuilding new attributes from the old buffer is not doable
696 * without overly complex code.
698 if (old_was_color
!= vc
->vc_can_do_color
) {
700 clear_buffer_attributes(vc
);
703 /* Forcibly update if we're panicing */
704 if ((update
&& vc
->vc_mode
!= KD_GRAPHICS
) ||
705 vt_force_oops_output(vc
))
706 do_update_region(vc
, vc
->vc_origin
, vc
->vc_screenbuf_size
/ 2);
711 compute_shiftstate();
717 * Allocation, freeing and resizing of VTs.
720 int vc_cons_allocated(unsigned int i
)
722 return (i
< MAX_NR_CONSOLES
&& vc_cons
[i
].d
);
725 static void visual_init(struct vc_data
*vc
, int num
, int init
)
727 /* ++Geert: vc->vc_sw->con_init determines console size */
729 module_put(vc
->vc_sw
->owner
);
730 vc
->vc_sw
= conswitchp
;
731 #ifndef VT_SINGLE_DRIVER
732 if (con_driver_map
[num
])
733 vc
->vc_sw
= con_driver_map
[num
];
735 __module_get(vc
->vc_sw
->owner
);
737 vc
->vc_display_fg
= &master_display_fg
;
738 if (vc
->vc_uni_pagedir_loc
)
740 vc
->vc_uni_pagedir_loc
= &vc
->vc_uni_pagedir
;
741 vc
->vc_uni_pagedir
= NULL
;
742 vc
->vc_hi_font_mask
= 0;
743 vc
->vc_complement_mask
= 0;
744 vc
->vc_can_do_color
= 0;
745 vc
->vc_panic_force_write
= false;
746 vc
->vc_cur_blink_ms
= DEFAULT_CURSOR_BLINK_MS
;
747 vc
->vc_sw
->con_init(vc
, init
);
748 if (!vc
->vc_complement_mask
)
749 vc
->vc_complement_mask
= vc
->vc_can_do_color
? 0x7700 : 0x0800;
750 vc
->vc_s_complement_mask
= vc
->vc_complement_mask
;
751 vc
->vc_size_row
= vc
->vc_cols
<< 1;
752 vc
->vc_screenbuf_size
= vc
->vc_rows
* vc
->vc_size_row
;
755 int vc_allocate(unsigned int currcons
) /* return 0 on success */
757 struct vt_notifier_param param
;
760 WARN_CONSOLE_UNLOCKED();
762 if (currcons
>= MAX_NR_CONSOLES
)
765 if (vc_cons
[currcons
].d
)
768 /* due to the granularity of kmalloc, we waste some memory here */
769 /* the alloc is done in two steps, to optimize the common situation
770 of a 25x80 console (structsize=216, screenbuf_size=4000) */
771 /* although the numbers above are not valid since long ago, the
772 point is still up-to-date and the comment still has its value
773 even if only as a historical artifact. --mj, July 1998 */
774 param
.vc
= vc
= kzalloc(sizeof(struct vc_data
), GFP_KERNEL
);
778 vc_cons
[currcons
].d
= vc
;
779 tty_port_init(&vc
->port
);
780 INIT_WORK(&vc_cons
[currcons
].SAK_work
, vc_SAK
);
782 visual_init(vc
, currcons
, 1);
784 if (!*vc
->vc_uni_pagedir_loc
)
785 con_set_default_unimap(vc
);
787 vc
->vc_screenbuf
= kzalloc(vc
->vc_screenbuf_size
, GFP_KERNEL
);
788 if (!vc
->vc_screenbuf
)
791 /* If no drivers have overridden us and the user didn't pass a
792 boot option, default to displaying the cursor */
793 if (global_cursor_default
== -1)
794 global_cursor_default
= 1;
796 vc_init(vc
, vc
->vc_rows
, vc
->vc_cols
, 1);
797 vcs_make_sysfs(currcons
);
798 atomic_notifier_call_chain(&vt_notifier_list
, VT_ALLOCATE
, ¶m
);
803 vc_cons
[currcons
].d
= NULL
;
807 static inline int resize_screen(struct vc_data
*vc
, int width
, int height
,
810 /* Resizes the resolution of the display adapater */
813 if (vc
->vc_mode
!= KD_GRAPHICS
&& vc
->vc_sw
->con_resize
)
814 err
= vc
->vc_sw
->con_resize(vc
, width
, height
, user
);
820 * Change # of rows and columns (0 means unchanged/the size of fg_console)
821 * [this is to be used together with some user program
822 * like resize that changes the hardware videomode]
824 #define VC_RESIZE_MAXCOL (32767)
825 #define VC_RESIZE_MAXROW (32767)
828 * vc_do_resize - resizing method for the tty
829 * @tty: tty being resized
830 * @real_tty: real tty (different to tty if a pty/tty pair)
831 * @vc: virtual console private data
835 * Resize a virtual console, clipping according to the actual constraints.
836 * If the caller passes a tty structure then update the termios winsize
837 * information and perform any necessary signal handling.
839 * Caller must hold the console semaphore. Takes the termios rwsem and
840 * ctrl_lock of the tty IFF a tty is passed.
843 static int vc_do_resize(struct tty_struct
*tty
, struct vc_data
*vc
,
844 unsigned int cols
, unsigned int lines
)
846 unsigned long old_origin
, new_origin
, new_scr_end
, rlth
, rrem
, err
= 0;
848 unsigned int old_rows
, old_row_size
;
849 unsigned int new_cols
, new_rows
, new_row_size
, new_screen_size
;
851 unsigned short *newscreen
;
853 WARN_CONSOLE_UNLOCKED();
858 user
= vc
->vc_resize_user
;
859 vc
->vc_resize_user
= 0;
861 if (cols
> VC_RESIZE_MAXCOL
|| lines
> VC_RESIZE_MAXROW
)
864 new_cols
= (cols
? cols
: vc
->vc_cols
);
865 new_rows
= (lines
? lines
: vc
->vc_rows
);
866 new_row_size
= new_cols
<< 1;
867 new_screen_size
= new_row_size
* new_rows
;
869 if (new_cols
== vc
->vc_cols
&& new_rows
== vc
->vc_rows
)
872 if (new_screen_size
> (4 << 20))
874 newscreen
= kzalloc(new_screen_size
, GFP_USER
);
881 old_rows
= vc
->vc_rows
;
882 old_row_size
= vc
->vc_size_row
;
884 err
= resize_screen(vc
, new_cols
, new_rows
, user
);
890 vc
->vc_rows
= new_rows
;
891 vc
->vc_cols
= new_cols
;
892 vc
->vc_size_row
= new_row_size
;
893 vc
->vc_screenbuf_size
= new_screen_size
;
895 rlth
= min(old_row_size
, new_row_size
);
896 rrem
= new_row_size
- rlth
;
897 old_origin
= vc
->vc_origin
;
898 new_origin
= (long) newscreen
;
899 new_scr_end
= new_origin
+ new_screen_size
;
901 if (vc
->vc_y
> new_rows
) {
902 if (old_rows
- vc
->vc_y
< new_rows
) {
904 * Cursor near the bottom, copy contents from the
907 old_origin
+= (old_rows
- new_rows
) * old_row_size
;
910 * Cursor is in no man's land, copy 1/2 screenful
911 * from the top and bottom of cursor position
913 old_origin
+= (vc
->vc_y
- new_rows
/2) * old_row_size
;
917 end
= old_origin
+ old_row_size
* min(old_rows
, new_rows
);
921 while (old_origin
< end
) {
922 scr_memcpyw((unsigned short *) new_origin
,
923 (unsigned short *) old_origin
, rlth
);
925 scr_memsetw((void *)(new_origin
+ rlth
),
926 vc
->vc_video_erase_char
, rrem
);
927 old_origin
+= old_row_size
;
928 new_origin
+= new_row_size
;
930 if (new_scr_end
> new_origin
)
931 scr_memsetw((void *)new_origin
, vc
->vc_video_erase_char
,
932 new_scr_end
- new_origin
);
933 kfree(vc
->vc_screenbuf
);
934 vc
->vc_screenbuf
= newscreen
;
935 vc
->vc_screenbuf_size
= new_screen_size
;
938 /* do part of a reset_terminal() */
940 vc
->vc_bottom
= vc
->vc_rows
;
941 gotoxy(vc
, vc
->vc_x
, vc
->vc_y
);
945 /* Rewrite the requested winsize data with the actual
948 memset(&ws
, 0, sizeof(ws
));
949 ws
.ws_row
= vc
->vc_rows
;
950 ws
.ws_col
= vc
->vc_cols
;
951 ws
.ws_ypixel
= vc
->vc_scan_lines
;
952 tty_do_resize(tty
, &ws
);
955 if (con_is_visible(vc
))
957 vt_event_post(VT_EVENT_RESIZE
, vc
->vc_num
, vc
->vc_num
);
962 * vc_resize - resize a VT
963 * @vc: virtual console
967 * Resize a virtual console as seen from the console end of things. We
968 * use the common vc_do_resize methods to update the structures. The
969 * caller must hold the console sem to protect console internals and
973 int vc_resize(struct vc_data
*vc
, unsigned int cols
, unsigned int rows
)
975 return vc_do_resize(vc
->port
.tty
, vc
, cols
, rows
);
979 * vt_resize - resize a VT
980 * @tty: tty to resize
981 * @ws: winsize attributes
983 * Resize a virtual terminal. This is called by the tty layer as we
984 * register our own handler for resizing. The mutual helper does all
987 * Takes the console sem and the called methods then take the tty
988 * termios_rwsem and the tty ctrl_lock in that order.
990 static int vt_resize(struct tty_struct
*tty
, struct winsize
*ws
)
992 struct vc_data
*vc
= tty
->driver_data
;
996 ret
= vc_do_resize(tty
, vc
, ws
->ws_col
, ws
->ws_row
);
1001 struct vc_data
*vc_deallocate(unsigned int currcons
)
1003 struct vc_data
*vc
= NULL
;
1005 WARN_CONSOLE_UNLOCKED();
1007 if (vc_cons_allocated(currcons
)) {
1008 struct vt_notifier_param param
;
1010 param
.vc
= vc
= vc_cons
[currcons
].d
;
1011 atomic_notifier_call_chain(&vt_notifier_list
, VT_DEALLOCATE
, ¶m
);
1012 vcs_remove_sysfs(currcons
);
1013 vc
->vc_sw
->con_deinit(vc
);
1014 put_pid(vc
->vt_pid
);
1015 module_put(vc
->vc_sw
->owner
);
1016 kfree(vc
->vc_screenbuf
);
1017 vc_cons
[currcons
].d
= NULL
;
1026 #define set_kbd(vc, x) vt_set_kbd_mode_bit((vc)->vc_num, (x))
1027 #define clr_kbd(vc, x) vt_clr_kbd_mode_bit((vc)->vc_num, (x))
1028 #define is_kbd(vc, x) vt_get_kbd_mode_bit((vc)->vc_num, (x))
1030 #define decarm VC_REPEAT
1031 #define decckm VC_CKMODE
1032 #define kbdapplic VC_APPLIC
1036 * this is what the terminal answers to a ESC-Z or csi0c query.
1038 #define VT100ID "\033[?1;2c"
1039 #define VT102ID "\033[?6c"
1041 const unsigned char color_table
[] = { 0, 4, 2, 6, 1, 5, 3, 7,
1042 8,12,10,14, 9,13,11,15 };
1044 /* the default colour table, for VGA+ colour systems */
1045 unsigned char default_red
[] = {
1046 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa,
1047 0x55, 0xff, 0x55, 0xff, 0x55, 0xff, 0x55, 0xff
1049 module_param_array(default_red
, byte
, NULL
, S_IRUGO
| S_IWUSR
);
1051 unsigned char default_grn
[] = {
1052 0x00, 0x00, 0xaa, 0x55, 0x00, 0x00, 0xaa, 0xaa,
1053 0x55, 0x55, 0xff, 0xff, 0x55, 0x55, 0xff, 0xff
1055 module_param_array(default_grn
, byte
, NULL
, S_IRUGO
| S_IWUSR
);
1057 unsigned char default_blu
[] = {
1058 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, 0xaa, 0xaa,
1059 0x55, 0x55, 0x55, 0x55, 0xff, 0xff, 0xff, 0xff
1061 module_param_array(default_blu
, byte
, NULL
, S_IRUGO
| S_IWUSR
);
1064 * gotoxy() must verify all boundaries, because the arguments
1065 * might also be negative. If the given position is out of
1066 * bounds, the cursor is placed at the nearest margin.
1068 static void gotoxy(struct vc_data
*vc
, int new_x
, int new_y
)
1075 if (new_x
>= vc
->vc_cols
)
1076 vc
->vc_x
= vc
->vc_cols
- 1;
1083 max_y
= vc
->vc_bottom
;
1086 max_y
= vc
->vc_rows
;
1090 else if (new_y
>= max_y
)
1091 vc
->vc_y
= max_y
- 1;
1094 vc
->vc_pos
= vc
->vc_origin
+ vc
->vc_y
* vc
->vc_size_row
+ (vc
->vc_x
<<1);
1095 vc
->vc_need_wrap
= 0;
1098 /* for absolute user moves, when decom is set */
1099 static void gotoxay(struct vc_data
*vc
, int new_x
, int new_y
)
1101 gotoxy(vc
, new_x
, vc
->vc_decom
? (vc
->vc_top
+ new_y
) : new_y
);
1104 void scrollback(struct vc_data
*vc
)
1106 scrolldelta(-(vc
->vc_rows
/ 2));
1109 void scrollfront(struct vc_data
*vc
, int lines
)
1112 lines
= vc
->vc_rows
/ 2;
1116 static void lf(struct vc_data
*vc
)
1118 /* don't scroll if above bottom of scrolling region, or
1119 * if below scrolling region
1121 if (vc
->vc_y
+ 1 == vc
->vc_bottom
)
1122 con_scroll(vc
, vc
->vc_top
, vc
->vc_bottom
, SM_UP
, 1);
1123 else if (vc
->vc_y
< vc
->vc_rows
- 1) {
1125 vc
->vc_pos
+= vc
->vc_size_row
;
1127 vc
->vc_need_wrap
= 0;
1128 notify_write(vc
, '\n');
1131 static void ri(struct vc_data
*vc
)
1133 /* don't scroll if below top of scrolling region, or
1134 * if above scrolling region
1136 if (vc
->vc_y
== vc
->vc_top
)
1137 con_scroll(vc
, vc
->vc_top
, vc
->vc_bottom
, SM_DOWN
, 1);
1138 else if (vc
->vc_y
> 0) {
1140 vc
->vc_pos
-= vc
->vc_size_row
;
1142 vc
->vc_need_wrap
= 0;
1145 static inline void cr(struct vc_data
*vc
)
1147 vc
->vc_pos
-= vc
->vc_x
<< 1;
1148 vc
->vc_need_wrap
= vc
->vc_x
= 0;
1149 notify_write(vc
, '\r');
1152 static inline void bs(struct vc_data
*vc
)
1157 vc
->vc_need_wrap
= 0;
1158 notify_write(vc
, '\b');
1162 static inline void del(struct vc_data
*vc
)
1167 static void csi_J(struct vc_data
*vc
, int vpar
)
1170 unsigned short * start
;
1173 case 0: /* erase from cursor to end of display */
1174 count
= (vc
->vc_scr_end
- vc
->vc_pos
) >> 1;
1175 start
= (unsigned short *)vc
->vc_pos
;
1177 case 1: /* erase from start to cursor */
1178 count
= ((vc
->vc_pos
- vc
->vc_origin
) >> 1) + 1;
1179 start
= (unsigned short *)vc
->vc_origin
;
1181 case 2: /* erase whole display */
1182 case 3: /* (and scrollback buffer later) */
1183 count
= vc
->vc_cols
* vc
->vc_rows
;
1184 start
= (unsigned short *)vc
->vc_origin
;
1189 scr_memsetw(start
, vc
->vc_video_erase_char
, 2 * count
);
1192 flush_scrollback(vc
);
1193 if (con_is_visible(vc
))
1195 } else if (con_should_update(vc
))
1196 do_update_region(vc
, (unsigned long) start
, count
);
1197 vc
->vc_need_wrap
= 0;
1200 static void csi_K(struct vc_data
*vc
, int vpar
)
1203 unsigned short * start
;
1206 case 0: /* erase from cursor to end of line */
1207 count
= vc
->vc_cols
- vc
->vc_x
;
1208 start
= (unsigned short *)vc
->vc_pos
;
1210 case 1: /* erase from start of line to cursor */
1211 start
= (unsigned short *)(vc
->vc_pos
- (vc
->vc_x
<< 1));
1212 count
= vc
->vc_x
+ 1;
1214 case 2: /* erase whole line */
1215 start
= (unsigned short *)(vc
->vc_pos
- (vc
->vc_x
<< 1));
1216 count
= vc
->vc_cols
;
1221 scr_memsetw(start
, vc
->vc_video_erase_char
, 2 * count
);
1222 vc
->vc_need_wrap
= 0;
1223 if (con_should_update(vc
))
1224 do_update_region(vc
, (unsigned long) start
, count
);
1227 static void csi_X(struct vc_data
*vc
, int vpar
) /* erase the following vpar positions */
1233 count
= (vpar
> vc
->vc_cols
- vc
->vc_x
) ? (vc
->vc_cols
- vc
->vc_x
) : vpar
;
1235 scr_memsetw((unsigned short *)vc
->vc_pos
, vc
->vc_video_erase_char
, 2 * count
);
1236 if (con_should_update(vc
))
1237 vc
->vc_sw
->con_clear(vc
, vc
->vc_y
, vc
->vc_x
, 1, count
);
1238 vc
->vc_need_wrap
= 0;
1241 static void default_attr(struct vc_data
*vc
)
1243 vc
->vc_intensity
= 1;
1245 vc
->vc_underline
= 0;
1248 vc
->vc_color
= vc
->vc_def_color
;
1251 struct rgb
{ u8 r
; u8 g
; u8 b
; };
1253 static void rgb_from_256(int i
, struct rgb
*c
)
1255 if (i
< 8) { /* Standard colours. */
1256 c
->r
= i
&1 ? 0xaa : 0x00;
1257 c
->g
= i
&2 ? 0xaa : 0x00;
1258 c
->b
= i
&4 ? 0xaa : 0x00;
1259 } else if (i
< 16) {
1260 c
->r
= i
&1 ? 0xff : 0x55;
1261 c
->g
= i
&2 ? 0xff : 0x55;
1262 c
->b
= i
&4 ? 0xff : 0x55;
1263 } else if (i
< 232) { /* 6x6x6 colour cube. */
1264 c
->r
= (i
- 16) / 36 * 85 / 2;
1265 c
->g
= (i
- 16) / 6 % 6 * 85 / 2;
1266 c
->b
= (i
- 16) % 6 * 85 / 2;
1267 } else /* Grayscale ramp. */
1268 c
->r
= c
->g
= c
->b
= i
* 10 - 2312;
1271 static void rgb_foreground(struct vc_data
*vc
, const struct rgb
*c
)
1273 u8 hue
= 0, max
= max3(c
->r
, c
->g
, c
->b
);
1282 if (hue
== 7 && max
<= 0x55) {
1284 vc
->vc_intensity
= 2;
1285 } else if (max
> 0xaa)
1286 vc
->vc_intensity
= 2;
1288 vc
->vc_intensity
= 1;
1290 vc
->vc_color
= (vc
->vc_color
& 0xf0) | hue
;
1293 static void rgb_background(struct vc_data
*vc
, const struct rgb
*c
)
1295 /* For backgrounds, err on the dark side. */
1296 vc
->vc_color
= (vc
->vc_color
& 0x0f)
1297 | (c
->r
&0x80) >> 1 | (c
->g
&0x80) >> 2 | (c
->b
&0x80) >> 3;
1301 * ITU T.416 Higher colour modes. They break the usual properties of SGR codes
1302 * and thus need to be detected and ignored by hand. Strictly speaking, that
1303 * standard also wants : rather than ; as separators, contrary to ECMA-48, but
1304 * no one produces such codes and almost no one accepts them.
1306 * Subcommands 3 (CMY) and 4 (CMYK) are so insane there's no point in
1309 static int vc_t416_color(struct vc_data
*vc
, int i
,
1310 void(*set_color
)(struct vc_data
*vc
, const struct rgb
*c
))
1315 if (i
> vc
->vc_npar
)
1318 if (vc
->vc_par
[i
] == 5 && i
+ 1 <= vc
->vc_npar
) {
1321 rgb_from_256(vc
->vc_par
[i
], &c
);
1322 } else if (vc
->vc_par
[i
] == 2 && i
+ 3 <= vc
->vc_npar
) {
1324 c
.r
= vc
->vc_par
[i
+ 1];
1325 c
.g
= vc
->vc_par
[i
+ 2];
1326 c
.b
= vc
->vc_par
[i
+ 3];
1336 /* console_lock is held */
1337 static void csi_m(struct vc_data
*vc
)
1341 for (i
= 0; i
<= vc
->vc_npar
; i
++)
1342 switch (vc
->vc_par
[i
]) {
1343 case 0: /* all attributes off */
1347 vc
->vc_intensity
= 2;
1350 vc
->vc_intensity
= 0;
1357 * No console drivers support double underline, so
1358 * convert it to a single underline.
1361 vc
->vc_underline
= 1;
1369 case 10: /* ANSI X3.64-1979 (SCO-ish?)
1370 * Select primary font, don't display control chars if
1371 * defined, don't set bit 8 on output.
1373 vc
->vc_translate
= set_translate(vc
->vc_charset
== 0
1375 : vc
->vc_G1_charset
, vc
);
1376 vc
->vc_disp_ctrl
= 0;
1377 vc
->vc_toggle_meta
= 0;
1379 case 11: /* ANSI X3.64-1979 (SCO-ish?)
1380 * Select first alternate font, lets chars < 32 be
1381 * displayed as ROM chars.
1383 vc
->vc_translate
= set_translate(IBMPC_MAP
, vc
);
1384 vc
->vc_disp_ctrl
= 1;
1385 vc
->vc_toggle_meta
= 0;
1387 case 12: /* ANSI X3.64-1979 (SCO-ish?)
1388 * Select second alternate font, toggle high bit
1389 * before displaying as ROM char.
1391 vc
->vc_translate
= set_translate(IBMPC_MAP
, vc
);
1392 vc
->vc_disp_ctrl
= 1;
1393 vc
->vc_toggle_meta
= 1;
1396 vc
->vc_intensity
= 1;
1402 vc
->vc_underline
= 0;
1411 i
= vc_t416_color(vc
, i
, rgb_foreground
);
1414 i
= vc_t416_color(vc
, i
, rgb_background
);
1417 vc
->vc_color
= (vc
->vc_def_color
& 0x0f) |
1418 (vc
->vc_color
& 0xf0);
1421 vc
->vc_color
= (vc
->vc_def_color
& 0xf0) |
1422 (vc
->vc_color
& 0x0f);
1425 if (vc
->vc_par
[i
] >= 90 && vc
->vc_par
[i
] <= 107) {
1426 if (vc
->vc_par
[i
] < 100)
1427 vc
->vc_intensity
= 2;
1428 vc
->vc_par
[i
] -= 60;
1430 if (vc
->vc_par
[i
] >= 30 && vc
->vc_par
[i
] <= 37)
1431 vc
->vc_color
= color_table
[vc
->vc_par
[i
] - 30]
1432 | (vc
->vc_color
& 0xf0);
1433 else if (vc
->vc_par
[i
] >= 40 && vc
->vc_par
[i
] <= 47)
1434 vc
->vc_color
= (color_table
[vc
->vc_par
[i
] - 40] << 4)
1435 | (vc
->vc_color
& 0x0f);
1441 static void respond_string(const char *p
, struct tty_port
*port
)
1444 tty_insert_flip_char(port
, *p
, 0);
1447 tty_schedule_flip(port
);
1450 static void cursor_report(struct vc_data
*vc
, struct tty_struct
*tty
)
1454 sprintf(buf
, "\033[%d;%dR", vc
->vc_y
+ (vc
->vc_decom
? vc
->vc_top
+ 1 : 1), vc
->vc_x
+ 1);
1455 respond_string(buf
, tty
->port
);
1458 static inline void status_report(struct tty_struct
*tty
)
1460 respond_string("\033[0n", tty
->port
); /* Terminal ok */
1463 static inline void respond_ID(struct tty_struct
*tty
)
1465 respond_string(VT102ID
, tty
->port
);
1468 void mouse_report(struct tty_struct
*tty
, int butt
, int mrx
, int mry
)
1472 sprintf(buf
, "\033[M%c%c%c", (char)(' ' + butt
), (char)('!' + mrx
),
1474 respond_string(buf
, tty
->port
);
1477 /* invoked via ioctl(TIOCLINUX) and through set_selection */
1478 int mouse_reporting(void)
1480 return vc_cons
[fg_console
].d
->vc_report_mouse
;
1483 /* console_lock is held */
1484 static void set_mode(struct vc_data
*vc
, int on_off
)
1488 for (i
= 0; i
<= vc
->vc_npar
; i
++)
1490 switch(vc
->vc_par
[i
]) { /* DEC private modes set/reset */
1491 case 1: /* Cursor keys send ^[Ox/^[[x */
1493 set_kbd(vc
, decckm
);
1495 clr_kbd(vc
, decckm
);
1497 case 3: /* 80/132 mode switch unimplemented */
1499 vc_resize(deccolm
? 132 : 80, vc
->vc_rows
);
1500 /* this alone does not suffice; some user mode
1501 utility has to change the hardware regs */
1504 case 5: /* Inverted screen on/off */
1505 if (vc
->vc_decscnm
!= on_off
) {
1506 vc
->vc_decscnm
= on_off
;
1507 invert_screen(vc
, 0, vc
->vc_screenbuf_size
, 0);
1511 case 6: /* Origin relative/absolute */
1512 vc
->vc_decom
= on_off
;
1515 case 7: /* Autowrap on/off */
1516 vc
->vc_decawm
= on_off
;
1518 case 8: /* Autorepeat on/off */
1520 set_kbd(vc
, decarm
);
1522 clr_kbd(vc
, decarm
);
1525 vc
->vc_report_mouse
= on_off
? 1 : 0;
1527 case 25: /* Cursor on/off */
1528 vc
->vc_deccm
= on_off
;
1531 vc
->vc_report_mouse
= on_off
? 2 : 0;
1535 switch(vc
->vc_par
[i
]) { /* ANSI modes set/reset */
1536 case 3: /* Monitor (display ctrls) */
1537 vc
->vc_disp_ctrl
= on_off
;
1539 case 4: /* Insert Mode on/off */
1540 vc
->vc_decim
= on_off
;
1542 case 20: /* Lf, Enter == CrLf/Lf */
1552 /* console_lock is held */
1553 static void setterm_command(struct vc_data
*vc
)
1555 switch(vc
->vc_par
[0]) {
1556 case 1: /* set color for underline mode */
1557 if (vc
->vc_can_do_color
&&
1558 vc
->vc_par
[1] < 16) {
1559 vc
->vc_ulcolor
= color_table
[vc
->vc_par
[1]];
1560 if (vc
->vc_underline
)
1564 case 2: /* set color for half intensity mode */
1565 if (vc
->vc_can_do_color
&&
1566 vc
->vc_par
[1] < 16) {
1567 vc
->vc_halfcolor
= color_table
[vc
->vc_par
[1]];
1568 if (vc
->vc_intensity
== 0)
1572 case 8: /* store colors as defaults */
1573 vc
->vc_def_color
= vc
->vc_attr
;
1574 if (vc
->vc_hi_font_mask
== 0x100)
1575 vc
->vc_def_color
>>= 1;
1579 case 9: /* set blanking interval */
1580 blankinterval
= ((vc
->vc_par
[1] < 60) ? vc
->vc_par
[1] : 60) * 60;
1581 poke_blanked_console();
1583 case 10: /* set bell frequency in Hz */
1584 if (vc
->vc_npar
>= 1)
1585 vc
->vc_bell_pitch
= vc
->vc_par
[1];
1587 vc
->vc_bell_pitch
= DEFAULT_BELL_PITCH
;
1589 case 11: /* set bell duration in msec */
1590 if (vc
->vc_npar
>= 1)
1591 vc
->vc_bell_duration
= (vc
->vc_par
[1] < 2000) ?
1592 msecs_to_jiffies(vc
->vc_par
[1]) : 0;
1594 vc
->vc_bell_duration
= DEFAULT_BELL_DURATION
;
1596 case 12: /* bring specified console to the front */
1597 if (vc
->vc_par
[1] >= 1 && vc_cons_allocated(vc
->vc_par
[1] - 1))
1598 set_console(vc
->vc_par
[1] - 1);
1600 case 13: /* unblank the screen */
1601 poke_blanked_console();
1603 case 14: /* set vesa powerdown interval */
1604 vesa_off_interval
= ((vc
->vc_par
[1] < 60) ? vc
->vc_par
[1] : 60) * 60 * HZ
;
1606 case 15: /* activate the previous console */
1607 set_console(last_console
);
1609 case 16: /* set cursor blink duration in msec */
1610 if (vc
->vc_npar
>= 1 && vc
->vc_par
[1] >= 50 &&
1611 vc
->vc_par
[1] <= USHRT_MAX
)
1612 vc
->vc_cur_blink_ms
= vc
->vc_par
[1];
1614 vc
->vc_cur_blink_ms
= DEFAULT_CURSOR_BLINK_MS
;
1619 /* console_lock is held */
1620 static void csi_at(struct vc_data
*vc
, unsigned int nr
)
1622 if (nr
> vc
->vc_cols
- vc
->vc_x
)
1623 nr
= vc
->vc_cols
- vc
->vc_x
;
1626 insert_char(vc
, nr
);
1629 /* console_lock is held */
1630 static void csi_L(struct vc_data
*vc
, unsigned int nr
)
1632 if (nr
> vc
->vc_rows
- vc
->vc_y
)
1633 nr
= vc
->vc_rows
- vc
->vc_y
;
1636 con_scroll(vc
, vc
->vc_y
, vc
->vc_bottom
, SM_DOWN
, nr
);
1637 vc
->vc_need_wrap
= 0;
1640 /* console_lock is held */
1641 static void csi_P(struct vc_data
*vc
, unsigned int nr
)
1643 if (nr
> vc
->vc_cols
- vc
->vc_x
)
1644 nr
= vc
->vc_cols
- vc
->vc_x
;
1647 delete_char(vc
, nr
);
1650 /* console_lock is held */
1651 static void csi_M(struct vc_data
*vc
, unsigned int nr
)
1653 if (nr
> vc
->vc_rows
- vc
->vc_y
)
1654 nr
= vc
->vc_rows
- vc
->vc_y
;
1657 con_scroll(vc
, vc
->vc_y
, vc
->vc_bottom
, SM_UP
, nr
);
1658 vc
->vc_need_wrap
= 0;
1661 /* console_lock is held (except via vc_init->reset_terminal */
1662 static void save_cur(struct vc_data
*vc
)
1664 vc
->vc_saved_x
= vc
->vc_x
;
1665 vc
->vc_saved_y
= vc
->vc_y
;
1666 vc
->vc_s_intensity
= vc
->vc_intensity
;
1667 vc
->vc_s_italic
= vc
->vc_italic
;
1668 vc
->vc_s_underline
= vc
->vc_underline
;
1669 vc
->vc_s_blink
= vc
->vc_blink
;
1670 vc
->vc_s_reverse
= vc
->vc_reverse
;
1671 vc
->vc_s_charset
= vc
->vc_charset
;
1672 vc
->vc_s_color
= vc
->vc_color
;
1673 vc
->vc_saved_G0
= vc
->vc_G0_charset
;
1674 vc
->vc_saved_G1
= vc
->vc_G1_charset
;
1677 /* console_lock is held */
1678 static void restore_cur(struct vc_data
*vc
)
1680 gotoxy(vc
, vc
->vc_saved_x
, vc
->vc_saved_y
);
1681 vc
->vc_intensity
= vc
->vc_s_intensity
;
1682 vc
->vc_italic
= vc
->vc_s_italic
;
1683 vc
->vc_underline
= vc
->vc_s_underline
;
1684 vc
->vc_blink
= vc
->vc_s_blink
;
1685 vc
->vc_reverse
= vc
->vc_s_reverse
;
1686 vc
->vc_charset
= vc
->vc_s_charset
;
1687 vc
->vc_color
= vc
->vc_s_color
;
1688 vc
->vc_G0_charset
= vc
->vc_saved_G0
;
1689 vc
->vc_G1_charset
= vc
->vc_saved_G1
;
1690 vc
->vc_translate
= set_translate(vc
->vc_charset
? vc
->vc_G1_charset
: vc
->vc_G0_charset
, vc
);
1692 vc
->vc_need_wrap
= 0;
1695 enum { ESnormal
, ESesc
, ESsquare
, ESgetpars
, ESfunckey
,
1696 EShash
, ESsetG0
, ESsetG1
, ESpercent
, ESignore
, ESnonstd
,
1699 /* console_lock is held (except via vc_init()) */
1700 static void reset_terminal(struct vc_data
*vc
, int do_clear
)
1703 vc
->vc_bottom
= vc
->vc_rows
;
1704 vc
->vc_state
= ESnormal
;
1706 vc
->vc_translate
= set_translate(LAT1_MAP
, vc
);
1707 vc
->vc_G0_charset
= LAT1_MAP
;
1708 vc
->vc_G1_charset
= GRAF_MAP
;
1710 vc
->vc_need_wrap
= 0;
1711 vc
->vc_report_mouse
= 0;
1712 vc
->vc_utf
= default_utf8
;
1713 vc
->vc_utf_count
= 0;
1715 vc
->vc_disp_ctrl
= 0;
1716 vc
->vc_toggle_meta
= 0;
1721 vc
->vc_deccm
= global_cursor_default
;
1724 vt_reset_keyboard(vc
->vc_num
);
1726 vc
->vc_cursor_type
= cur_default
;
1727 vc
->vc_complement_mask
= vc
->vc_s_complement_mask
;
1732 vc
->vc_tab_stop
[0] =
1733 vc
->vc_tab_stop
[1] =
1734 vc
->vc_tab_stop
[2] =
1735 vc
->vc_tab_stop
[3] =
1736 vc
->vc_tab_stop
[4] =
1737 vc
->vc_tab_stop
[5] =
1738 vc
->vc_tab_stop
[6] =
1739 vc
->vc_tab_stop
[7] = 0x01010101;
1741 vc
->vc_bell_pitch
= DEFAULT_BELL_PITCH
;
1742 vc
->vc_bell_duration
= DEFAULT_BELL_DURATION
;
1743 vc
->vc_cur_blink_ms
= DEFAULT_CURSOR_BLINK_MS
;
1751 /* console_lock is held */
1752 static void do_con_trol(struct tty_struct
*tty
, struct vc_data
*vc
, int c
)
1755 * Control characters can be used in the _middle_
1756 * of an escape sequence.
1758 if (vc
->vc_state
== ESosc
&& c
>=8 && c
<=13) /* ... except for OSC */
1764 if (vc
->vc_state
== ESosc
)
1765 vc
->vc_state
= ESnormal
;
1766 else if (vc
->vc_bell_duration
)
1767 kd_mksound(vc
->vc_bell_pitch
, vc
->vc_bell_duration
);
1773 vc
->vc_pos
-= (vc
->vc_x
<< 1);
1774 while (vc
->vc_x
< vc
->vc_cols
- 1) {
1776 if (vc
->vc_tab_stop
[7 & (vc
->vc_x
>> 5)] & (1 << (vc
->vc_x
& 31)))
1779 vc
->vc_pos
+= (vc
->vc_x
<< 1);
1780 notify_write(vc
, '\t');
1782 case 10: case 11: case 12:
1784 if (!is_kbd(vc
, lnm
))
1791 vc
->vc_translate
= set_translate(vc
->vc_G1_charset
, vc
);
1792 vc
->vc_disp_ctrl
= 1;
1796 vc
->vc_translate
= set_translate(vc
->vc_G0_charset
, vc
);
1797 vc
->vc_disp_ctrl
= 0;
1800 vc
->vc_state
= ESnormal
;
1803 vc
->vc_state
= ESesc
;
1809 vc
->vc_state
= ESsquare
;
1812 switch(vc
->vc_state
) {
1814 vc
->vc_state
= ESnormal
;
1817 vc
->vc_state
= ESsquare
;
1820 vc
->vc_state
= ESnonstd
;
1823 vc
->vc_state
= ESpercent
;
1836 vc
->vc_tab_stop
[7 & (vc
->vc_x
>> 5)] |= (1 << (vc
->vc_x
& 31));
1848 vc
->vc_state
= ESsetG0
;
1851 vc
->vc_state
= ESsetG1
;
1854 vc
->vc_state
= EShash
;
1857 reset_terminal(vc
, 1);
1859 case '>': /* Numeric keypad */
1860 clr_kbd(vc
, kbdapplic
);
1862 case '=': /* Appl. keypad */
1863 set_kbd(vc
, kbdapplic
);
1868 if (c
=='P') { /* palette escape sequence */
1869 for (vc
->vc_npar
= 0; vc
->vc_npar
< NPAR
; vc
->vc_npar
++)
1870 vc
->vc_par
[vc
->vc_npar
] = 0;
1872 vc
->vc_state
= ESpalette
;
1874 } else if (c
=='R') { /* reset palette */
1876 vc
->vc_state
= ESnormal
;
1877 } else if (c
>='0' && c
<='9')
1878 vc
->vc_state
= ESosc
;
1880 vc
->vc_state
= ESnormal
;
1884 vc
->vc_par
[vc
->vc_npar
++] = hex_to_bin(c
);
1885 if (vc
->vc_npar
== 7) {
1886 int i
= vc
->vc_par
[0] * 3, j
= 1;
1887 vc
->vc_palette
[i
] = 16 * vc
->vc_par
[j
++];
1888 vc
->vc_palette
[i
++] += vc
->vc_par
[j
++];
1889 vc
->vc_palette
[i
] = 16 * vc
->vc_par
[j
++];
1890 vc
->vc_palette
[i
++] += vc
->vc_par
[j
++];
1891 vc
->vc_palette
[i
] = 16 * vc
->vc_par
[j
++];
1892 vc
->vc_palette
[i
] += vc
->vc_par
[j
];
1894 vc
->vc_state
= ESnormal
;
1897 vc
->vc_state
= ESnormal
;
1900 for (vc
->vc_npar
= 0; vc
->vc_npar
< NPAR
; vc
->vc_npar
++)
1901 vc
->vc_par
[vc
->vc_npar
] = 0;
1903 vc
->vc_state
= ESgetpars
;
1904 if (c
== '[') { /* Function key */
1905 vc
->vc_state
=ESfunckey
;
1908 vc
->vc_ques
= (c
== '?');
1912 if (c
== ';' && vc
->vc_npar
< NPAR
- 1) {
1915 } else if (c
>='0' && c
<='9') {
1916 vc
->vc_par
[vc
->vc_npar
] *= 10;
1917 vc
->vc_par
[vc
->vc_npar
] += c
- '0';
1920 vc
->vc_state
= ESnormal
;
1931 vc
->vc_cursor_type
= vc
->vc_par
[0] | (vc
->vc_par
[1] << 8) | (vc
->vc_par
[2] << 16);
1933 vc
->vc_cursor_type
= cur_default
;
1941 vc
->vc_complement_mask
= vc
->vc_par
[0] << 8 | vc
->vc_par
[1];
1943 vc
->vc_complement_mask
= vc
->vc_s_complement_mask
;
1949 if (vc
->vc_par
[0] == 5)
1951 else if (vc
->vc_par
[0] == 6)
1952 cursor_report(vc
, tty
);
1964 gotoxy(vc
, vc
->vc_par
[0], vc
->vc_y
);
1969 gotoxy(vc
, vc
->vc_x
, vc
->vc_y
- vc
->vc_par
[0]);
1974 gotoxy(vc
, vc
->vc_x
, vc
->vc_y
+ vc
->vc_par
[0]);
1979 gotoxy(vc
, vc
->vc_x
+ vc
->vc_par
[0], vc
->vc_y
);
1984 gotoxy(vc
, vc
->vc_x
- vc
->vc_par
[0], vc
->vc_y
);
1989 gotoxy(vc
, 0, vc
->vc_y
+ vc
->vc_par
[0]);
1994 gotoxy(vc
, 0, vc
->vc_y
- vc
->vc_par
[0]);
1999 gotoxay(vc
, vc
->vc_x
,vc
->vc_par
[0]);
2006 gotoxay(vc
, vc
->vc_par
[1], vc
->vc_par
[0]);
2009 csi_J(vc
, vc
->vc_par
[0]);
2012 csi_K(vc
, vc
->vc_par
[0]);
2015 csi_L(vc
, vc
->vc_par
[0]);
2018 csi_M(vc
, vc
->vc_par
[0]);
2021 csi_P(vc
, vc
->vc_par
[0]);
2029 vc
->vc_tab_stop
[7 & (vc
->vc_x
>> 5)] &= ~(1 << (vc
->vc_x
& 31));
2030 else if (vc
->vc_par
[0] == 3) {
2031 vc
->vc_tab_stop
[0] =
2032 vc
->vc_tab_stop
[1] =
2033 vc
->vc_tab_stop
[2] =
2034 vc
->vc_tab_stop
[3] =
2035 vc
->vc_tab_stop
[4] =
2036 vc
->vc_tab_stop
[5] =
2037 vc
->vc_tab_stop
[6] =
2038 vc
->vc_tab_stop
[7] = 0;
2044 case 'q': /* DECLL - but only 3 leds */
2045 /* map 0,1,2,3 to 0,1,2,4 */
2046 if (vc
->vc_par
[0] < 4)
2047 vt_set_led_state(vc
->vc_num
,
2048 (vc
->vc_par
[0] < 3) ? vc
->vc_par
[0] : 4);
2054 vc
->vc_par
[1] = vc
->vc_rows
;
2055 /* Minimum allowed region is 2 lines */
2056 if (vc
->vc_par
[0] < vc
->vc_par
[1] &&
2057 vc
->vc_par
[1] <= vc
->vc_rows
) {
2058 vc
->vc_top
= vc
->vc_par
[0] - 1;
2059 vc
->vc_bottom
= vc
->vc_par
[1];
2070 csi_X(vc
, vc
->vc_par
[0]);
2073 csi_at(vc
, vc
->vc_par
[0]);
2075 case ']': /* setterm functions */
2076 setterm_command(vc
);
2081 vc
->vc_state
= ESnormal
;
2083 case '@': /* defined in ISO 2022 */
2086 case 'G': /* prelim official escape code */
2087 case '8': /* retained for compatibility */
2093 vc
->vc_state
= ESnormal
;
2096 vc
->vc_state
= ESnormal
;
2098 /* DEC screen alignment test. kludge :-) */
2099 vc
->vc_video_erase_char
=
2100 (vc
->vc_video_erase_char
& 0xff00) | 'E';
2102 vc
->vc_video_erase_char
=
2103 (vc
->vc_video_erase_char
& 0xff00) | ' ';
2104 do_update_region(vc
, vc
->vc_origin
, vc
->vc_screenbuf_size
/ 2);
2109 vc
->vc_G0_charset
= GRAF_MAP
;
2111 vc
->vc_G0_charset
= LAT1_MAP
;
2113 vc
->vc_G0_charset
= IBMPC_MAP
;
2115 vc
->vc_G0_charset
= USER_MAP
;
2116 if (vc
->vc_charset
== 0)
2117 vc
->vc_translate
= set_translate(vc
->vc_G0_charset
, vc
);
2118 vc
->vc_state
= ESnormal
;
2122 vc
->vc_G1_charset
= GRAF_MAP
;
2124 vc
->vc_G1_charset
= LAT1_MAP
;
2126 vc
->vc_G1_charset
= IBMPC_MAP
;
2128 vc
->vc_G1_charset
= USER_MAP
;
2129 if (vc
->vc_charset
== 1)
2130 vc
->vc_translate
= set_translate(vc
->vc_G1_charset
, vc
);
2131 vc
->vc_state
= ESnormal
;
2136 vc
->vc_state
= ESnormal
;
2140 /* is_double_width() is based on the wcwidth() implementation by
2141 * Markus Kuhn -- 2007-05-26 (Unicode 5.0)
2142 * Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
2149 static int ucs_cmp(const void *key
, const void *elt
)
2151 uint32_t ucs
= *(uint32_t *)key
;
2152 struct interval e
= *(struct interval
*) elt
;
2156 else if (ucs
< e
.first
)
2161 static int is_double_width(uint32_t ucs
)
2163 static const struct interval double_width
[] = {
2164 { 0x1100, 0x115F }, { 0x2329, 0x232A }, { 0x2E80, 0x303E },
2165 { 0x3040, 0xA4CF }, { 0xAC00, 0xD7A3 }, { 0xF900, 0xFAFF },
2166 { 0xFE10, 0xFE19 }, { 0xFE30, 0xFE6F }, { 0xFF00, 0xFF60 },
2167 { 0xFFE0, 0xFFE6 }, { 0x20000, 0x2FFFD }, { 0x30000, 0x3FFFD }
2169 if (ucs
< double_width
[0].first
||
2170 ucs
> double_width
[ARRAY_SIZE(double_width
) - 1].last
)
2173 return bsearch(&ucs
, double_width
, ARRAY_SIZE(double_width
),
2174 sizeof(struct interval
), ucs_cmp
) != NULL
;
2177 static void con_flush(struct vc_data
*vc
, unsigned long draw_from
,
2178 unsigned long draw_to
, int *draw_x
)
2183 vc
->vc_sw
->con_putcs(vc
, (u16
*)draw_from
,
2184 (u16
*)draw_to
- (u16
*)draw_from
, vc
->vc_y
, *draw_x
);
2188 /* acquires console_lock */
2189 static int do_con_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
2191 int c
, tc
, ok
, n
= 0, draw_x
= -1;
2192 unsigned int currcons
;
2193 unsigned long draw_from
= 0, draw_to
= 0;
2195 unsigned char vc_attr
;
2196 struct vt_notifier_param param
;
2200 u16 himask
, charmask
;
2208 vc
= tty
->driver_data
;
2210 pr_err("vt: argh, driver_data is NULL !\n");
2215 currcons
= vc
->vc_num
;
2216 if (!vc_cons_allocated(currcons
)) {
2217 /* could this happen? */
2218 pr_warn_once("con_write: tty %d not allocated\n", currcons
+1);
2223 himask
= vc
->vc_hi_font_mask
;
2224 charmask
= himask
? 0x1ff : 0xff;
2226 /* undraw cursor first */
2232 while (!tty
->stopped
&& count
) {
2242 /* Do no translation at all in control states */
2243 if (vc
->vc_state
!= ESnormal
) {
2245 } else if (vc
->vc_utf
&& !vc
->vc_disp_ctrl
) {
2246 /* Combine UTF-8 into Unicode in vc_utf_char.
2247 * vc_utf_count is the number of continuation bytes still
2248 * expected to arrive.
2249 * vc_npar is the number of continuation bytes arrived so
2253 if ((c
& 0xc0) == 0x80) {
2254 /* Continuation byte received */
2255 static const uint32_t utf8_length_changes
[] = { 0x0000007f, 0x000007ff, 0x0000ffff, 0x001fffff, 0x03ffffff, 0x7fffffff };
2256 if (vc
->vc_utf_count
) {
2257 vc
->vc_utf_char
= (vc
->vc_utf_char
<< 6) | (c
& 0x3f);
2259 if (--vc
->vc_utf_count
) {
2260 /* Still need some bytes */
2263 /* Got a whole character */
2264 c
= vc
->vc_utf_char
;
2265 /* Reject overlong sequences */
2266 if (c
<= utf8_length_changes
[vc
->vc_npar
- 1] ||
2267 c
> utf8_length_changes
[vc
->vc_npar
])
2270 /* Unexpected continuation byte */
2271 vc
->vc_utf_count
= 0;
2275 /* Single ASCII byte or first byte of a sequence received */
2276 if (vc
->vc_utf_count
) {
2277 /* Continuation byte expected */
2279 vc
->vc_utf_count
= 0;
2281 } else if (c
> 0x7f) {
2282 /* First byte of a multibyte sequence received */
2284 if ((c
& 0xe0) == 0xc0) {
2285 vc
->vc_utf_count
= 1;
2286 vc
->vc_utf_char
= (c
& 0x1f);
2287 } else if ((c
& 0xf0) == 0xe0) {
2288 vc
->vc_utf_count
= 2;
2289 vc
->vc_utf_char
= (c
& 0x0f);
2290 } else if ((c
& 0xf8) == 0xf0) {
2291 vc
->vc_utf_count
= 3;
2292 vc
->vc_utf_char
= (c
& 0x07);
2293 } else if ((c
& 0xfc) == 0xf8) {
2294 vc
->vc_utf_count
= 4;
2295 vc
->vc_utf_char
= (c
& 0x03);
2296 } else if ((c
& 0xfe) == 0xfc) {
2297 vc
->vc_utf_count
= 5;
2298 vc
->vc_utf_char
= (c
& 0x01);
2300 /* 254 and 255 are invalid */
2303 if (vc
->vc_utf_count
) {
2304 /* Still need some bytes */
2308 /* Nothing to do if an ASCII byte was received */
2310 /* End of UTF-8 decoding. */
2311 /* c is the received character, or U+FFFD for invalid sequences. */
2312 /* Replace invalid Unicode code points with U+FFFD too */
2313 if ((c
>= 0xd800 && c
<= 0xdfff) || c
== 0xfffe || c
== 0xffff)
2316 } else { /* no utf or alternate charset mode */
2317 tc
= vc_translate(vc
, c
);
2321 if (atomic_notifier_call_chain(&vt_notifier_list
, VT_PREWRITE
,
2322 ¶m
) == NOTIFY_STOP
)
2325 /* If the original code was a control character we
2326 * only allow a glyph to be displayed if the code is
2327 * not normally used (such as for cursor movement) or
2328 * if the disp_ctrl mode has been explicitly enabled.
2329 * Certain characters (as given by the CTRL_ALWAYS
2330 * bitmap) are always displayed as control characters,
2331 * as the console would be pretty useless without
2332 * them; to display an arbitrary font position use the
2333 * direct-to-font zone in UTF-8 mode.
2335 ok
= tc
&& (c
>= 32 ||
2336 !(vc
->vc_disp_ctrl
? (CTRL_ALWAYS
>> c
) & 1 :
2337 vc
->vc_utf
|| ((CTRL_ACTION
>> c
) & 1)))
2338 && (c
!= 127 || vc
->vc_disp_ctrl
)
2341 if (vc
->vc_state
== ESnormal
&& ok
) {
2342 if (vc
->vc_utf
&& !vc
->vc_disp_ctrl
) {
2343 if (is_double_width(c
))
2346 /* Now try to find out how to display it */
2347 tc
= conv_uni_to_pc(vc
, tc
);
2348 if (tc
& ~charmask
) {
2349 if (tc
== -1 || tc
== -2) {
2350 continue; /* nothing to display */
2352 /* Glyph not found */
2353 if ((!(vc
->vc_utf
&& !vc
->vc_disp_ctrl
) || c
< 128) && !(c
& ~charmask
)) {
2354 /* In legacy mode use the glyph we get by a 1:1 mapping.
2355 This would make absolutely no sense with Unicode in mind,
2356 but do this for ASCII characters since a font may lack
2357 Unicode mapping info and we don't want to end up with
2358 having question marks only. */
2361 /* Display U+FFFD. If it's not found, display an inverse question mark. */
2362 tc
= conv_uni_to_pc(vc
, 0xfffd);
2365 tc
= conv_uni_to_pc(vc
, '?');
2366 if (tc
< 0) tc
= '?';
2372 vc_attr
= vc
->vc_attr
;
2374 /* invert vc_attr */
2375 if (!vc
->vc_can_do_color
) {
2376 vc_attr
= (vc
->vc_attr
) ^ 0x08;
2377 } else if (vc
->vc_hi_font_mask
== 0x100) {
2378 vc_attr
= ((vc
->vc_attr
) & 0x11) | (((vc
->vc_attr
) & 0xe0) >> 4) | (((vc
->vc_attr
) & 0x0e) << 4);
2380 vc_attr
= ((vc
->vc_attr
) & 0x88) | (((vc
->vc_attr
) & 0x70) >> 4) | (((vc
->vc_attr
) & 0x07) << 4);
2382 con_flush(vc
, draw_from
, draw_to
, &draw_x
);
2386 if (vc
->vc_need_wrap
|| vc
->vc_decim
)
2387 con_flush(vc
, draw_from
, draw_to
,
2389 if (vc
->vc_need_wrap
) {
2396 ((vc_attr
<< 8) & ~himask
) + ((tc
& 0x100) ? himask
: 0) + (tc
& 0xff) :
2397 (vc_attr
<< 8) + tc
,
2398 (u16
*) vc
->vc_pos
);
2399 if (con_should_update(vc
) && draw_x
< 0) {
2401 draw_from
= vc
->vc_pos
;
2403 if (vc
->vc_x
== vc
->vc_cols
- 1) {
2404 vc
->vc_need_wrap
= vc
->vc_decawm
;
2405 draw_to
= vc
->vc_pos
+ 2;
2408 draw_to
= (vc
->vc_pos
+= 2);
2411 if (!--width
) break;
2413 tc
= conv_uni_to_pc(vc
, ' '); /* A space is printed in the second column */
2414 if (tc
< 0) tc
= ' ';
2416 notify_write(vc
, c
);
2419 con_flush(vc
, draw_from
, draw_to
, &draw_x
);
2426 goto rescan_last_byte
;
2430 con_flush(vc
, draw_from
, draw_to
, &draw_x
);
2431 do_con_trol(tty
, vc
, orig
);
2433 con_flush(vc
, draw_from
, draw_to
, &draw_x
);
2434 console_conditional_schedule();
2441 * This is the console switching callback.
2443 * Doing console switching in a process context allows
2444 * us to do the switches asynchronously (needed when we want
2445 * to switch due to a keyboard interrupt). Synchronization
2446 * with other console code and prevention of re-entrancy is
2447 * ensured with console_lock.
2449 static void console_callback(struct work_struct
*ignored
)
2453 if (want_console
>= 0) {
2454 if (want_console
!= fg_console
&&
2455 vc_cons_allocated(want_console
)) {
2456 hide_cursor(vc_cons
[fg_console
].d
);
2457 change_console(vc_cons
[want_console
].d
);
2458 /* we only changed when the console had already
2459 been allocated - a new console is not created
2460 in an interrupt routine */
2464 if (do_poke_blanked_console
) { /* do not unblank for a LED change */
2465 do_poke_blanked_console
= 0;
2466 poke_blanked_console();
2468 if (scrollback_delta
) {
2469 struct vc_data
*vc
= vc_cons
[fg_console
].d
;
2471 if (vc
->vc_mode
== KD_TEXT
&& vc
->vc_sw
->con_scrolldelta
)
2472 vc
->vc_sw
->con_scrolldelta(vc
, scrollback_delta
);
2473 scrollback_delta
= 0;
2475 if (blank_timer_expired
) {
2477 blank_timer_expired
= 0;
2479 notify_update(vc_cons
[fg_console
].d
);
2484 int set_console(int nr
)
2486 struct vc_data
*vc
= vc_cons
[fg_console
].d
;
2488 if (!vc_cons_allocated(nr
) || vt_dont_switch
||
2489 (vc
->vt_mode
.mode
== VT_AUTO
&& vc
->vc_mode
== KD_GRAPHICS
)) {
2492 * Console switch will fail in console_callback() or
2493 * change_console() so there is no point scheduling
2496 * Existing set_console() users don't check the return
2497 * value so this shouldn't break anything
2503 schedule_console_callback();
2508 struct tty_driver
*console_driver
;
2510 #ifdef CONFIG_VT_CONSOLE
2513 * vt_kmsg_redirect() - Sets/gets the kernel message console
2514 * @new: The new virtual terminal number or -1 if the console should stay
2517 * By default, the kernel messages are always printed on the current virtual
2518 * console. However, the user may modify that default with the
2519 * TIOCL_SETKMSGREDIRECT ioctl call.
2521 * This function sets the kernel message console to be @new. It returns the old
2522 * virtual console number. The virtual terminal number 0 (both as parameter and
2523 * return value) means no redirection (i.e. always printed on the currently
2526 * The parameter -1 means that only the current console is returned, but the
2527 * value is not modified. You may use the macro vt_get_kmsg_redirect() in that
2528 * case to make the code more understandable.
2530 * When the kernel is compiled without CONFIG_VT_CONSOLE, this function ignores
2531 * the parameter and always returns 0.
2533 int vt_kmsg_redirect(int new)
2535 static int kmsg_con
;
2538 return xchg(&kmsg_con
, new);
2544 * Console on virtual terminal
2546 * The console must be locked when we get here.
2549 static void vt_console_print(struct console
*co
, const char *b
, unsigned count
)
2551 struct vc_data
*vc
= vc_cons
[fg_console
].d
;
2553 static DEFINE_SPINLOCK(printing_lock
);
2554 const ushort
*start
;
2559 /* console busy or not yet initialized */
2562 if (!spin_trylock(&printing_lock
))
2565 kmsg_console
= vt_get_kmsg_redirect();
2566 if (kmsg_console
&& vc_cons_allocated(kmsg_console
- 1))
2567 vc
= vc_cons
[kmsg_console
- 1].d
;
2569 /* read `x' only after setting currcons properly (otherwise
2570 the `x' macro will read the x of the foreground console). */
2573 if (!vc_cons_allocated(fg_console
)) {
2575 /* printk("vt_console_print: tty %d not allocated ??\n", currcons+1); */
2579 if (vc
->vc_mode
!= KD_TEXT
&& !vt_force_oops_output(vc
))
2582 /* undraw cursor first */
2586 start
= (ushort
*)vc
->vc_pos
;
2588 /* Contrived structure to try to emulate original need_wrap behaviour
2589 * Problems caused when we have need_wrap set on '\n' character */
2592 if (c
== 10 || c
== 13 || c
== 8 || vc
->vc_need_wrap
) {
2594 if (con_is_visible(vc
))
2595 vc
->vc_sw
->con_putcs(vc
, start
, cnt
, vc
->vc_y
, vc
->vc_x
);
2597 if (vc
->vc_need_wrap
)
2601 if (c
== 8) { /* backspace */
2603 start
= (ushort
*)vc
->vc_pos
;
2610 start
= (ushort
*)vc
->vc_pos
;
2612 if (c
== 10 || c
== 13)
2615 scr_writew((vc
->vc_attr
<< 8) + c
, (unsigned short *)vc
->vc_pos
);
2616 notify_write(vc
, c
);
2618 if (myx
== vc
->vc_cols
- 1) {
2619 vc
->vc_need_wrap
= 1;
2626 if (con_is_visible(vc
))
2627 vc
->vc_sw
->con_putcs(vc
, start
, cnt
, vc
->vc_y
, vc
->vc_x
);
2629 if (vc
->vc_x
== vc
->vc_cols
) {
2631 vc
->vc_need_wrap
= 1;
2638 spin_unlock(&printing_lock
);
2641 static struct tty_driver
*vt_console_device(struct console
*c
, int *index
)
2643 *index
= c
->index
? c
->index
-1 : fg_console
;
2644 return console_driver
;
2647 static struct console vt_console_driver
= {
2649 .write
= vt_console_print
,
2650 .device
= vt_console_device
,
2651 .unblank
= unblank_screen
,
2652 .flags
= CON_PRINTBUFFER
,
2658 * Handling of Linux-specific VC ioctls
2662 * Generally a bit racy with respect to console_lock();.
2664 * There are some functions which don't need it.
2666 * There are some functions which can sleep for arbitrary periods
2667 * (paste_selection) but we don't need the lock there anyway.
2669 * set_selection has locking, and definitely needs it
2672 int tioclinux(struct tty_struct
*tty
, unsigned long arg
)
2675 char __user
*p
= (char __user
*)arg
;
2679 if (current
->signal
->tty
!= tty
&& !capable(CAP_SYS_ADMIN
))
2681 if (get_user(type
, p
))
2689 ret
= set_selection((struct tiocl_selection __user
*)(p
+1), tty
);
2692 case TIOCL_PASTESEL
:
2693 ret
= paste_selection(tty
);
2695 case TIOCL_UNBLANKSCREEN
:
2700 case TIOCL_SELLOADLUT
:
2702 ret
= sel_loadlut(p
);
2705 case TIOCL_GETSHIFTSTATE
:
2708 * Make it possible to react to Shift+Mousebutton.
2709 * Note that 'shift_state' is an undocumented
2710 * kernel-internal variable; programs not closely
2711 * related to the kernel should not use this.
2713 data
= vt_get_shift_state();
2714 ret
= put_user(data
, p
);
2716 case TIOCL_GETMOUSEREPORTING
:
2717 console_lock(); /* May be overkill */
2718 data
= mouse_reporting();
2720 ret
= put_user(data
, p
);
2722 case TIOCL_SETVESABLANK
:
2724 ret
= set_vesa_blanking(p
);
2727 case TIOCL_GETKMSGREDIRECT
:
2728 data
= vt_get_kmsg_redirect();
2729 ret
= put_user(data
, p
);
2731 case TIOCL_SETKMSGREDIRECT
:
2732 if (!capable(CAP_SYS_ADMIN
)) {
2735 if (get_user(data
, p
+1))
2738 vt_kmsg_redirect(data
);
2741 case TIOCL_GETFGCONSOLE
:
2742 /* No locking needed as this is a transiently
2743 correct return anyway if the caller hasn't
2744 disabled switching */
2747 case TIOCL_SCROLLCONSOLE
:
2748 if (get_user(lines
, (s32 __user
*)(p
+4))) {
2751 /* Need the console lock here. Note that lots
2752 of other calls need fixing before the lock
2753 is actually useful ! */
2755 scrollfront(vc_cons
[fg_console
].d
, lines
);
2760 case TIOCL_BLANKSCREEN
: /* until explicitly unblanked, not only poked */
2766 case TIOCL_BLANKEDSCREEN
:
2767 ret
= console_blanked
;
2777 * /dev/ttyN handling
2780 static int con_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
2784 retval
= do_con_write(tty
, buf
, count
);
2785 con_flush_chars(tty
);
2790 static int con_put_char(struct tty_struct
*tty
, unsigned char ch
)
2793 return 0; /* n_r3964 calls put_char() from interrupt context */
2794 return do_con_write(tty
, &ch
, 1);
2797 static int con_write_room(struct tty_struct
*tty
)
2801 return 32768; /* No limit, really; we're not buffering */
2804 static int con_chars_in_buffer(struct tty_struct
*tty
)
2806 return 0; /* we're not buffering */
2810 * con_throttle and con_unthrottle are only used for
2811 * paste_selection(), which has to stuff in a large number of
2814 static void con_throttle(struct tty_struct
*tty
)
2818 static void con_unthrottle(struct tty_struct
*tty
)
2820 struct vc_data
*vc
= tty
->driver_data
;
2822 wake_up_interruptible(&vc
->paste_wait
);
2826 * Turn the Scroll-Lock LED on when the tty is stopped
2828 static void con_stop(struct tty_struct
*tty
)
2833 console_num
= tty
->index
;
2834 if (!vc_cons_allocated(console_num
))
2836 vt_kbd_con_stop(console_num
);
2840 * Turn the Scroll-Lock LED off when the console is started
2842 static void con_start(struct tty_struct
*tty
)
2847 console_num
= tty
->index
;
2848 if (!vc_cons_allocated(console_num
))
2850 vt_kbd_con_start(console_num
);
2853 static void con_flush_chars(struct tty_struct
*tty
)
2857 if (in_interrupt()) /* from flush_to_ldisc */
2860 /* if we race with con_close(), vt may be null */
2862 vc
= tty
->driver_data
;
2869 * Allocate the console screen memory.
2871 static int con_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
2873 unsigned int currcons
= tty
->index
;
2878 ret
= vc_allocate(currcons
);
2882 vc
= vc_cons
[currcons
].d
;
2884 /* Still being freed */
2890 ret
= tty_port_install(&vc
->port
, driver
, tty
);
2894 tty
->driver_data
= vc
;
2897 if (!tty
->winsize
.ws_row
&& !tty
->winsize
.ws_col
) {
2898 tty
->winsize
.ws_row
= vc_cons
[currcons
].d
->vc_rows
;
2899 tty
->winsize
.ws_col
= vc_cons
[currcons
].d
->vc_cols
;
2902 tty
->termios
.c_iflag
|= IUTF8
;
2904 tty
->termios
.c_iflag
&= ~IUTF8
;
2910 static int con_open(struct tty_struct
*tty
, struct file
*filp
)
2912 /* everything done in install */
2917 static void con_close(struct tty_struct
*tty
, struct file
*filp
)
2919 /* Nothing to do - we defer to shutdown */
2922 static void con_shutdown(struct tty_struct
*tty
)
2924 struct vc_data
*vc
= tty
->driver_data
;
2927 vc
->port
.tty
= NULL
;
2931 static int default_color
= 7; /* white */
2932 static int default_italic_color
= 2; // green (ASCII)
2933 static int default_underline_color
= 3; // cyan (ASCII)
2934 module_param_named(color
, default_color
, int, S_IRUGO
| S_IWUSR
);
2935 module_param_named(italic
, default_italic_color
, int, S_IRUGO
| S_IWUSR
);
2936 module_param_named(underline
, default_underline_color
, int, S_IRUGO
| S_IWUSR
);
2938 static void vc_init(struct vc_data
*vc
, unsigned int rows
,
2939 unsigned int cols
, int do_clear
)
2945 vc
->vc_size_row
= cols
<< 1;
2946 vc
->vc_screenbuf_size
= vc
->vc_rows
* vc
->vc_size_row
;
2949 vc
->vc_pos
= vc
->vc_origin
;
2951 for (j
=k
=0; j
<16; j
++) {
2952 vc
->vc_palette
[k
++] = default_red
[j
] ;
2953 vc
->vc_palette
[k
++] = default_grn
[j
] ;
2954 vc
->vc_palette
[k
++] = default_blu
[j
] ;
2956 vc
->vc_def_color
= default_color
;
2957 vc
->vc_ulcolor
= default_underline_color
;
2958 vc
->vc_itcolor
= default_italic_color
;
2959 vc
->vc_halfcolor
= 0x08; /* grey */
2960 init_waitqueue_head(&vc
->paste_wait
);
2961 reset_terminal(vc
, do_clear
);
2965 * This routine initializes console interrupts, and does nothing
2966 * else. If you want the screen to clear, call tty_write with
2967 * the appropriate escape-sequence.
2970 static int __init
con_init(void)
2972 const char *display_desc
= NULL
;
2974 unsigned int currcons
= 0, i
;
2979 display_desc
= conswitchp
->con_startup();
2980 if (!display_desc
) {
2986 for (i
= 0; i
< MAX_NR_CON_DRIVER
; i
++) {
2987 struct con_driver
*con_driver
= ®istered_con_driver
[i
];
2989 if (con_driver
->con
== NULL
) {
2990 con_driver
->con
= conswitchp
;
2991 con_driver
->desc
= display_desc
;
2992 con_driver
->flag
= CON_DRIVER_FLAG_INIT
;
2993 con_driver
->first
= 0;
2994 con_driver
->last
= MAX_NR_CONSOLES
- 1;
2999 for (i
= 0; i
< MAX_NR_CONSOLES
; i
++)
3000 con_driver_map
[i
] = conswitchp
;
3002 if (blankinterval
) {
3003 blank_state
= blank_normal_wait
;
3004 mod_timer(&console_timer
, jiffies
+ (blankinterval
* HZ
));
3007 for (currcons
= 0; currcons
< MIN_NR_CONSOLES
; currcons
++) {
3008 vc_cons
[currcons
].d
= vc
= kzalloc(sizeof(struct vc_data
), GFP_NOWAIT
);
3009 INIT_WORK(&vc_cons
[currcons
].SAK_work
, vc_SAK
);
3010 tty_port_init(&vc
->port
);
3011 visual_init(vc
, currcons
, 1);
3012 vc
->vc_screenbuf
= kzalloc(vc
->vc_screenbuf_size
, GFP_NOWAIT
);
3013 vc_init(vc
, vc
->vc_rows
, vc
->vc_cols
,
3014 currcons
|| !vc
->vc_sw
->con_save_screen
);
3016 currcons
= fg_console
= 0;
3017 master_display_fg
= vc
= vc_cons
[currcons
].d
;
3020 gotoxy(vc
, vc
->vc_x
, vc
->vc_y
);
3023 pr_info("Console: %s %s %dx%d\n",
3024 vc
->vc_can_do_color
? "colour" : "mono",
3025 display_desc
, vc
->vc_cols
, vc
->vc_rows
);
3030 #ifdef CONFIG_VT_CONSOLE
3031 register_console(&vt_console_driver
);
3035 console_initcall(con_init
);
3037 static const struct tty_operations con_ops
= {
3038 .install
= con_install
,
3042 .write_room
= con_write_room
,
3043 .put_char
= con_put_char
,
3044 .flush_chars
= con_flush_chars
,
3045 .chars_in_buffer
= con_chars_in_buffer
,
3047 #ifdef CONFIG_COMPAT
3048 .compat_ioctl
= vt_compat_ioctl
,
3052 .throttle
= con_throttle
,
3053 .unthrottle
= con_unthrottle
,
3054 .resize
= vt_resize
,
3055 .shutdown
= con_shutdown
3058 static struct cdev vc0_cdev
;
3060 static ssize_t
show_tty_active(struct device
*dev
,
3061 struct device_attribute
*attr
, char *buf
)
3063 return sprintf(buf
, "tty%d\n", fg_console
+ 1);
3065 static DEVICE_ATTR(active
, S_IRUGO
, show_tty_active
, NULL
);
3067 static struct attribute
*vt_dev_attrs
[] = {
3068 &dev_attr_active
.attr
,
3072 ATTRIBUTE_GROUPS(vt_dev
);
3074 int __init
vty_init(const struct file_operations
*console_fops
)
3076 cdev_init(&vc0_cdev
, console_fops
);
3077 if (cdev_add(&vc0_cdev
, MKDEV(TTY_MAJOR
, 0), 1) ||
3078 register_chrdev_region(MKDEV(TTY_MAJOR
, 0), 1, "/dev/vc/0") < 0)
3079 panic("Couldn't register /dev/tty0 driver\n");
3080 tty0dev
= device_create_with_groups(tty_class
, NULL
,
3081 MKDEV(TTY_MAJOR
, 0), NULL
,
3082 vt_dev_groups
, "tty0");
3083 if (IS_ERR(tty0dev
))
3088 console_driver
= alloc_tty_driver(MAX_NR_CONSOLES
);
3089 if (!console_driver
)
3090 panic("Couldn't allocate console driver\n");
3092 console_driver
->name
= "tty";
3093 console_driver
->name_base
= 1;
3094 console_driver
->major
= TTY_MAJOR
;
3095 console_driver
->minor_start
= 1;
3096 console_driver
->type
= TTY_DRIVER_TYPE_CONSOLE
;
3097 console_driver
->init_termios
= tty_std_termios
;
3099 console_driver
->init_termios
.c_iflag
|= IUTF8
;
3100 console_driver
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_RESET_TERMIOS
;
3101 tty_set_operations(console_driver
, &con_ops
);
3102 if (tty_register_driver(console_driver
))
3103 panic("Couldn't register console driver\n");
3106 #ifdef CONFIG_MDA_CONSOLE
3112 #ifndef VT_SINGLE_DRIVER
3114 static struct class *vtconsole_class
;
3116 static int do_bind_con_driver(const struct consw
*csw
, int first
, int last
,
3119 struct module
*owner
= csw
->owner
;
3120 const char *desc
= NULL
;
3121 struct con_driver
*con_driver
;
3122 int i
, j
= -1, k
= -1, retval
= -ENODEV
;
3124 if (!try_module_get(owner
))
3127 WARN_CONSOLE_UNLOCKED();
3129 /* check if driver is registered */
3130 for (i
= 0; i
< MAX_NR_CON_DRIVER
; i
++) {
3131 con_driver
= ®istered_con_driver
[i
];
3133 if (con_driver
->con
== csw
) {
3134 desc
= con_driver
->desc
;
3143 if (!(con_driver
->flag
& CON_DRIVER_FLAG_INIT
)) {
3145 con_driver
->flag
|= CON_DRIVER_FLAG_INIT
;
3150 module_put(conswitchp
->owner
);
3152 __module_get(owner
);
3156 first
= max(first
, con_driver
->first
);
3157 last
= min(last
, con_driver
->last
);
3159 for (i
= first
; i
<= last
; i
++) {
3161 struct vc_data
*vc
= vc_cons
[i
].d
;
3163 if (con_driver_map
[i
])
3164 module_put(con_driver_map
[i
]->owner
);
3165 __module_get(owner
);
3166 con_driver_map
[i
] = csw
;
3168 if (!vc
|| !vc
->vc_sw
)
3173 if (con_is_visible(vc
)) {
3178 old_was_color
= vc
->vc_can_do_color
;
3179 vc
->vc_sw
->con_deinit(vc
);
3180 vc
->vc_origin
= (unsigned long)vc
->vc_screenbuf
;
3181 visual_init(vc
, i
, 0);
3185 /* If the console changed between mono <-> color, then
3186 * the attributes in the screenbuf will be wrong. The
3187 * following resets all attributes to something sane.
3189 if (old_was_color
!= vc
->vc_can_do_color
)
3190 clear_buffer_attributes(vc
);
3193 pr_info("Console: switching ");
3195 pr_cont("consoles %d-%d ", first
+ 1, last
+ 1);
3197 struct vc_data
*vc
= vc_cons
[j
].d
;
3199 pr_cont("to %s %s %dx%d\n",
3200 vc
->vc_can_do_color
? "colour" : "mono",
3201 desc
, vc
->vc_cols
, vc
->vc_rows
);
3208 pr_cont("to %s\n", desc
);
3218 #ifdef CONFIG_VT_HW_CONSOLE_BINDING
3219 /* unlocked version of unbind_con_driver() */
3220 int do_unbind_con_driver(const struct consw
*csw
, int first
, int last
, int deflt
)
3222 struct module
*owner
= csw
->owner
;
3223 const struct consw
*defcsw
= NULL
;
3224 struct con_driver
*con_driver
= NULL
, *con_back
= NULL
;
3225 int i
, retval
= -ENODEV
;
3227 if (!try_module_get(owner
))
3230 WARN_CONSOLE_UNLOCKED();
3232 /* check if driver is registered and if it is unbindable */
3233 for (i
= 0; i
< MAX_NR_CON_DRIVER
; i
++) {
3234 con_driver
= ®istered_con_driver
[i
];
3236 if (con_driver
->con
== csw
&&
3237 con_driver
->flag
& CON_DRIVER_FLAG_MODULE
) {
3248 /* check if backup driver exists */
3249 for (i
= 0; i
< MAX_NR_CON_DRIVER
; i
++) {
3250 con_back
= ®istered_con_driver
[i
];
3252 if (con_back
->con
&& con_back
->con
!= csw
) {
3253 defcsw
= con_back
->con
;
3262 if (!con_is_bound(csw
))
3265 first
= max(first
, con_driver
->first
);
3266 last
= min(last
, con_driver
->last
);
3268 for (i
= first
; i
<= last
; i
++) {
3269 if (con_driver_map
[i
] == csw
) {
3270 module_put(csw
->owner
);
3271 con_driver_map
[i
] = NULL
;
3275 if (!con_is_bound(defcsw
)) {
3276 const struct consw
*defconsw
= conswitchp
;
3278 defcsw
->con_startup();
3279 con_back
->flag
|= CON_DRIVER_FLAG_INIT
;
3281 * vgacon may change the default driver to point
3282 * to dummycon, we restore it here...
3284 conswitchp
= defconsw
;
3287 if (!con_is_bound(csw
))
3288 con_driver
->flag
&= ~CON_DRIVER_FLAG_INIT
;
3290 /* ignore return value, binding should not fail */
3291 do_bind_con_driver(defcsw
, first
, last
, deflt
);
3297 EXPORT_SYMBOL_GPL(do_unbind_con_driver
);
3299 static int vt_bind(struct con_driver
*con
)
3301 const struct consw
*defcsw
= NULL
, *csw
= NULL
;
3302 int i
, more
= 1, first
= -1, last
= -1, deflt
= 0;
3304 if (!con
->con
|| !(con
->flag
& CON_DRIVER_FLAG_MODULE
))
3309 for (i
= 0; i
< MAX_NR_CON_DRIVER
; i
++) {
3310 struct con_driver
*con
= ®istered_con_driver
[i
];
3312 if (con
->con
&& !(con
->flag
& CON_DRIVER_FLAG_MODULE
)) {
3324 for (i
= con
->first
; i
<= con
->last
; i
++) {
3325 if (con_driver_map
[i
] == defcsw
) {
3330 } else if (first
!= -1)
3334 if (first
== 0 && last
== MAX_NR_CONSOLES
-1)
3338 do_bind_con_driver(csw
, first
, last
, deflt
);
3349 static int vt_unbind(struct con_driver
*con
)
3351 const struct consw
*csw
= NULL
;
3352 int i
, more
= 1, first
= -1, last
= -1, deflt
= 0;
3355 if (!con
->con
|| !(con
->flag
& CON_DRIVER_FLAG_MODULE
))
3363 for (i
= con
->first
; i
<= con
->last
; i
++) {
3364 if (con_driver_map
[i
] == csw
) {
3369 } else if (first
!= -1)
3373 if (first
== 0 && last
== MAX_NR_CONSOLES
-1)
3377 ret
= do_unbind_con_driver(csw
, first
, last
, deflt
);
3391 static inline int vt_bind(struct con_driver
*con
)
3395 static inline int vt_unbind(struct con_driver
*con
)
3399 #endif /* CONFIG_VT_HW_CONSOLE_BINDING */
3401 static ssize_t
store_bind(struct device
*dev
, struct device_attribute
*attr
,
3402 const char *buf
, size_t count
)
3404 struct con_driver
*con
= dev_get_drvdata(dev
);
3405 int bind
= simple_strtoul(buf
, NULL
, 0);
3419 static ssize_t
show_bind(struct device
*dev
, struct device_attribute
*attr
,
3422 struct con_driver
*con
= dev_get_drvdata(dev
);
3423 int bind
= con_is_bound(con
->con
);
3425 return snprintf(buf
, PAGE_SIZE
, "%i\n", bind
);
3428 static ssize_t
show_name(struct device
*dev
, struct device_attribute
*attr
,
3431 struct con_driver
*con
= dev_get_drvdata(dev
);
3433 return snprintf(buf
, PAGE_SIZE
, "%s %s\n",
3434 (con
->flag
& CON_DRIVER_FLAG_MODULE
) ? "(M)" : "(S)",
3439 static DEVICE_ATTR(bind
, S_IRUGO
|S_IWUSR
, show_bind
, store_bind
);
3440 static DEVICE_ATTR(name
, S_IRUGO
, show_name
, NULL
);
3442 static struct attribute
*con_dev_attrs
[] = {
3443 &dev_attr_bind
.attr
,
3444 &dev_attr_name
.attr
,
3448 ATTRIBUTE_GROUPS(con_dev
);
3450 static int vtconsole_init_device(struct con_driver
*con
)
3452 con
->flag
|= CON_DRIVER_FLAG_ATTR
;
3456 static void vtconsole_deinit_device(struct con_driver
*con
)
3458 con
->flag
&= ~CON_DRIVER_FLAG_ATTR
;
3462 * con_is_bound - checks if driver is bound to the console
3463 * @csw: console driver
3465 * RETURNS: zero if unbound, nonzero if bound
3467 * Drivers can call this and if zero, they should release
3468 * all resources allocated on con_startup()
3470 int con_is_bound(const struct consw
*csw
)
3474 for (i
= 0; i
< MAX_NR_CONSOLES
; i
++) {
3475 if (con_driver_map
[i
] == csw
) {
3483 EXPORT_SYMBOL(con_is_bound
);
3486 * con_debug_enter - prepare the console for the kernel debugger
3487 * @sw: console driver
3489 * Called when the console is taken over by the kernel debugger, this
3490 * function needs to save the current console state, then put the console
3491 * into a state suitable for the kernel debugger.
3494 * Zero on success, nonzero if a failure occurred when trying to prepare
3495 * the console for the debugger.
3497 int con_debug_enter(struct vc_data
*vc
)
3501 saved_fg_console
= fg_console
;
3502 saved_last_console
= last_console
;
3503 saved_want_console
= want_console
;
3504 saved_vc_mode
= vc
->vc_mode
;
3505 saved_console_blanked
= console_blanked
;
3506 vc
->vc_mode
= KD_TEXT
;
3507 console_blanked
= 0;
3508 if (vc
->vc_sw
->con_debug_enter
)
3509 ret
= vc
->vc_sw
->con_debug_enter(vc
);
3510 #ifdef CONFIG_KGDB_KDB
3511 /* Set the initial LINES variable if it is not already set */
3512 if (vc
->vc_rows
< 999) {
3515 const char *setargs
[3] = {
3520 if (kdbgetintenv(setargs
[0], &linecount
)) {
3521 snprintf(lns
, 4, "%i", vc
->vc_rows
);
3522 kdb_set(2, setargs
);
3525 if (vc
->vc_cols
< 999) {
3528 const char *setargs
[3] = {
3533 if (kdbgetintenv(setargs
[0], &colcount
)) {
3534 snprintf(cols
, 4, "%i", vc
->vc_cols
);
3535 kdb_set(2, setargs
);
3538 #endif /* CONFIG_KGDB_KDB */
3541 EXPORT_SYMBOL_GPL(con_debug_enter
);
3544 * con_debug_leave - restore console state
3545 * @sw: console driver
3547 * Restore the console state to what it was before the kernel debugger
3551 * Zero on success, nonzero if a failure occurred when trying to restore
3554 int con_debug_leave(void)
3559 fg_console
= saved_fg_console
;
3560 last_console
= saved_last_console
;
3561 want_console
= saved_want_console
;
3562 console_blanked
= saved_console_blanked
;
3563 vc_cons
[fg_console
].d
->vc_mode
= saved_vc_mode
;
3565 vc
= vc_cons
[fg_console
].d
;
3566 if (vc
->vc_sw
->con_debug_leave
)
3567 ret
= vc
->vc_sw
->con_debug_leave(vc
);
3570 EXPORT_SYMBOL_GPL(con_debug_leave
);
3572 static int do_register_con_driver(const struct consw
*csw
, int first
, int last
)
3574 struct module
*owner
= csw
->owner
;
3575 struct con_driver
*con_driver
;
3579 WARN_CONSOLE_UNLOCKED();
3581 if (!try_module_get(owner
))
3584 for (i
= 0; i
< MAX_NR_CON_DRIVER
; i
++) {
3585 con_driver
= ®istered_con_driver
[i
];
3587 /* already registered */
3588 if (con_driver
->con
== csw
) {
3594 desc
= csw
->con_startup();
3602 for (i
= 0; i
< MAX_NR_CON_DRIVER
; i
++) {
3603 con_driver
= ®istered_con_driver
[i
];
3605 if (con_driver
->con
== NULL
&&
3606 !(con_driver
->flag
& CON_DRIVER_FLAG_ZOMBIE
)) {
3607 con_driver
->con
= csw
;
3608 con_driver
->desc
= desc
;
3609 con_driver
->node
= i
;
3610 con_driver
->flag
= CON_DRIVER_FLAG_MODULE
|
3611 CON_DRIVER_FLAG_INIT
;
3612 con_driver
->first
= first
;
3613 con_driver
->last
= last
;
3623 device_create_with_groups(vtconsole_class
, NULL
,
3624 MKDEV(0, con_driver
->node
),
3625 con_driver
, con_dev_groups
,
3626 "vtcon%i", con_driver
->node
);
3627 if (IS_ERR(con_driver
->dev
)) {
3628 pr_warn("Unable to create device for %s; errno = %ld\n",
3629 con_driver
->desc
, PTR_ERR(con_driver
->dev
));
3630 con_driver
->dev
= NULL
;
3632 vtconsole_init_device(con_driver
);
3642 * do_unregister_con_driver - unregister console driver from console layer
3643 * @csw: console driver
3645 * DESCRIPTION: All drivers that registers to the console layer must
3646 * call this function upon exit, or if the console driver is in a state
3647 * where it won't be able to handle console services, such as the
3648 * framebuffer console without loaded framebuffer drivers.
3650 * The driver must unbind first prior to unregistration.
3652 int do_unregister_con_driver(const struct consw
*csw
)
3656 /* cannot unregister a bound driver */
3657 if (con_is_bound(csw
))
3660 if (csw
== conswitchp
)
3663 for (i
= 0; i
< MAX_NR_CON_DRIVER
; i
++) {
3664 struct con_driver
*con_driver
= ®istered_con_driver
[i
];
3666 if (con_driver
->con
== csw
) {
3668 * Defer the removal of the sysfs entries since that
3669 * will acquire the kernfs s_active lock and we can't
3670 * acquire this lock while holding the console lock:
3671 * the unbind sysfs entry imposes already the opposite
3672 * order. Reset con already here to prevent any later
3673 * lookup to succeed and mark this slot as zombie, so
3674 * it won't get reused until we complete the removal
3675 * in the deferred work.
3677 con_driver
->con
= NULL
;
3678 con_driver
->flag
= CON_DRIVER_FLAG_ZOMBIE
;
3679 schedule_work(&con_driver_unregister_work
);
3687 EXPORT_SYMBOL_GPL(do_unregister_con_driver
);
3689 static void con_driver_unregister_callback(struct work_struct
*ignored
)
3695 for (i
= 0; i
< MAX_NR_CON_DRIVER
; i
++) {
3696 struct con_driver
*con_driver
= ®istered_con_driver
[i
];
3698 if (!(con_driver
->flag
& CON_DRIVER_FLAG_ZOMBIE
))
3703 vtconsole_deinit_device(con_driver
);
3704 device_destroy(vtconsole_class
, MKDEV(0, con_driver
->node
));
3708 if (WARN_ON_ONCE(con_driver
->con
))
3709 con_driver
->con
= NULL
;
3710 con_driver
->desc
= NULL
;
3711 con_driver
->dev
= NULL
;
3712 con_driver
->node
= 0;
3713 WARN_ON_ONCE(con_driver
->flag
!= CON_DRIVER_FLAG_ZOMBIE
);
3714 con_driver
->flag
= 0;
3715 con_driver
->first
= 0;
3716 con_driver
->last
= 0;
3723 * If we support more console drivers, this function is used
3724 * when a driver wants to take over some existing consoles
3725 * and become default driver for newly opened ones.
3727 * do_take_over_console is basically a register followed by unbind
3729 int do_take_over_console(const struct consw
*csw
, int first
, int last
, int deflt
)
3733 err
= do_register_con_driver(csw
, first
, last
);
3735 * If we get an busy error we still want to bind the console driver
3736 * and return success, as we may have unbound the console driver
3737 * but not unregistered it.
3742 do_bind_con_driver(csw
, first
, last
, deflt
);
3746 EXPORT_SYMBOL_GPL(do_take_over_console
);
3750 * give_up_console is a wrapper to unregister_con_driver. It will only
3751 * work if driver is fully unbound.
3753 void give_up_console(const struct consw
*csw
)
3756 do_unregister_con_driver(csw
);
3760 static int __init
vtconsole_class_init(void)
3764 vtconsole_class
= class_create(THIS_MODULE
, "vtconsole");
3765 if (IS_ERR(vtconsole_class
)) {
3766 pr_warn("Unable to create vt console class; errno = %ld\n",
3767 PTR_ERR(vtconsole_class
));
3768 vtconsole_class
= NULL
;
3771 /* Add system drivers to sysfs */
3772 for (i
= 0; i
< MAX_NR_CON_DRIVER
; i
++) {
3773 struct con_driver
*con
= ®istered_con_driver
[i
];
3775 if (con
->con
&& !con
->dev
) {
3777 device_create_with_groups(vtconsole_class
, NULL
,
3778 MKDEV(0, con
->node
),
3779 con
, con_dev_groups
,
3780 "vtcon%i", con
->node
);
3782 if (IS_ERR(con
->dev
)) {
3783 pr_warn("Unable to create device for %s; errno = %ld\n",
3784 con
->desc
, PTR_ERR(con
->dev
));
3787 vtconsole_init_device(con
);
3794 postcore_initcall(vtconsole_class_init
);
3802 static int set_vesa_blanking(char __user
*p
)
3806 if (get_user(mode
, p
+ 1))
3809 vesa_blank_mode
= (mode
< 4) ? mode
: 0;
3813 void do_blank_screen(int entering_gfx
)
3815 struct vc_data
*vc
= vc_cons
[fg_console
].d
;
3818 WARN_CONSOLE_UNLOCKED();
3820 if (console_blanked
) {
3821 if (blank_state
== blank_vesa_wait
) {
3822 blank_state
= blank_off
;
3823 vc
->vc_sw
->con_blank(vc
, vesa_blank_mode
+ 1, 0);
3828 /* entering graphics mode? */
3832 vc
->vc_sw
->con_blank(vc
, -1, 1);
3833 console_blanked
= fg_console
+ 1;
3834 blank_state
= blank_off
;
3839 if (blank_state
!= blank_normal_wait
)
3841 blank_state
= blank_off
;
3843 /* don't blank graphics */
3844 if (vc
->vc_mode
!= KD_TEXT
) {
3845 console_blanked
= fg_console
+ 1;
3850 del_timer_sync(&console_timer
);
3851 blank_timer_expired
= 0;
3854 /* In case we need to reset origin, blanking hook returns 1 */
3855 i
= vc
->vc_sw
->con_blank(vc
, vesa_off_interval
? 1 : (vesa_blank_mode
+ 1), 0);
3856 console_blanked
= fg_console
+ 1;
3860 if (console_blank_hook
&& console_blank_hook(1))
3863 if (vesa_off_interval
&& vesa_blank_mode
) {
3864 blank_state
= blank_vesa_wait
;
3865 mod_timer(&console_timer
, jiffies
+ vesa_off_interval
);
3867 vt_event_post(VT_EVENT_BLANK
, vc
->vc_num
, vc
->vc_num
);
3869 EXPORT_SYMBOL(do_blank_screen
);
3872 * Called by timer as well as from vt_console_driver
3874 void do_unblank_screen(int leaving_gfx
)
3878 /* This should now always be called from a "sane" (read: can schedule)
3879 * context for the sake of the low level drivers, except in the special
3880 * case of oops_in_progress
3882 if (!oops_in_progress
)
3885 WARN_CONSOLE_UNLOCKED();
3888 if (!console_blanked
)
3890 if (!vc_cons_allocated(fg_console
)) {
3892 pr_warn("unblank_screen: tty %d not allocated ??\n",
3896 vc
= vc_cons
[fg_console
].d
;
3897 /* Try to unblank in oops case too */
3898 if (vc
->vc_mode
!= KD_TEXT
&& !vt_force_oops_output(vc
))
3899 return; /* but leave console_blanked != 0 */
3901 if (blankinterval
) {
3902 mod_timer(&console_timer
, jiffies
+ (blankinterval
* HZ
));
3903 blank_state
= blank_normal_wait
;
3906 console_blanked
= 0;
3907 if (vc
->vc_sw
->con_blank(vc
, 0, leaving_gfx
) || vt_force_oops_output(vc
))
3908 /* Low-level driver cannot restore -> do it ourselves */
3910 if (console_blank_hook
)
3911 console_blank_hook(0);
3914 vt_event_post(VT_EVENT_UNBLANK
, vc
->vc_num
, vc
->vc_num
);
3916 EXPORT_SYMBOL(do_unblank_screen
);
3919 * This is called by the outside world to cause a forced unblank, mostly for
3920 * oopses. Currently, I just call do_unblank_screen(0), but we could eventually
3921 * call it with 1 as an argument and so force a mode restore... that may kill
3922 * X or at least garbage the screen but would also make the Oops visible...
3924 void unblank_screen(void)
3926 do_unblank_screen(0);
3930 * We defer the timer blanking to work queue so it can take the console mutex
3931 * (console operations can still happen at irq time, but only from printk which
3932 * has the console mutex. Not perfect yet, but better than no locking
3934 static void blank_screen_t(struct timer_list
*unused
)
3936 blank_timer_expired
= 1;
3937 schedule_work(&console_work
);
3940 void poke_blanked_console(void)
3942 WARN_CONSOLE_UNLOCKED();
3944 /* Add this so we quickly catch whoever might call us in a non
3945 * safe context. Nowadays, unblank_screen() isn't to be called in
3946 * atomic contexts and is allowed to schedule (with the special case
3947 * of oops_in_progress, but that isn't of any concern for this
3952 /* This isn't perfectly race free, but a race here would be mostly harmless,
3953 * at worse, we'll do a spurrious blank and it's unlikely
3955 del_timer(&console_timer
);
3956 blank_timer_expired
= 0;
3958 if (ignore_poke
|| !vc_cons
[fg_console
].d
|| vc_cons
[fg_console
].d
->vc_mode
== KD_GRAPHICS
)
3960 if (console_blanked
)
3962 else if (blankinterval
) {
3963 mod_timer(&console_timer
, jiffies
+ (blankinterval
* HZ
));
3964 blank_state
= blank_normal_wait
;
3972 static void set_palette(struct vc_data
*vc
)
3974 WARN_CONSOLE_UNLOCKED();
3976 if (vc
->vc_mode
!= KD_GRAPHICS
&& vc
->vc_sw
->con_set_palette
)
3977 vc
->vc_sw
->con_set_palette(vc
, color_table
);
3981 * Load palette into the DAC registers. arg points to a colour
3982 * map, 3 bytes per colour, 16 colours, range from 0 to 255.
3985 int con_set_cmap(unsigned char __user
*arg
)
3988 unsigned char colormap
[3*16];
3990 if (copy_from_user(colormap
, arg
, sizeof(colormap
)))
3994 for (i
= k
= 0; i
< 16; i
++) {
3995 default_red
[i
] = colormap
[k
++];
3996 default_grn
[i
] = colormap
[k
++];
3997 default_blu
[i
] = colormap
[k
++];
3999 for (i
= 0; i
< MAX_NR_CONSOLES
; i
++) {
4000 if (!vc_cons_allocated(i
))
4002 for (j
= k
= 0; j
< 16; j
++) {
4003 vc_cons
[i
].d
->vc_palette
[k
++] = default_red
[j
];
4004 vc_cons
[i
].d
->vc_palette
[k
++] = default_grn
[j
];
4005 vc_cons
[i
].d
->vc_palette
[k
++] = default_blu
[j
];
4007 set_palette(vc_cons
[i
].d
);
4014 int con_get_cmap(unsigned char __user
*arg
)
4017 unsigned char colormap
[3*16];
4020 for (i
= k
= 0; i
< 16; i
++) {
4021 colormap
[k
++] = default_red
[i
];
4022 colormap
[k
++] = default_grn
[i
];
4023 colormap
[k
++] = default_blu
[i
];
4027 if (copy_to_user(arg
, colormap
, sizeof(colormap
)))
4033 void reset_palette(struct vc_data
*vc
)
4036 for (j
=k
=0; j
<16; j
++) {
4037 vc
->vc_palette
[k
++] = default_red
[j
];
4038 vc
->vc_palette
[k
++] = default_grn
[j
];
4039 vc
->vc_palette
[k
++] = default_blu
[j
];
4047 * Currently we only support fonts up to 32 pixels wide, at a maximum height
4048 * of 32 pixels. Userspace fontdata is stored with 32 bytes (shorts/ints,
4049 * depending on width) reserved for each character which is kinda wasty, but
4050 * this is done in order to maintain compatibility with the EGA/VGA fonts. It
4051 * is up to the actual low-level console-driver convert data into its favorite
4052 * format (maybe we should add a `fontoffset' field to the `display'
4053 * structure so we won't have to convert the fontdata all the time.
4057 #define max_font_size 65536
4059 static int con_font_get(struct vc_data
*vc
, struct console_font_op
*op
)
4061 struct console_font font
;
4066 font
.data
= kmalloc(max_font_size
, GFP_KERNEL
);
4073 if (vc
->vc_mode
!= KD_TEXT
)
4075 else if (vc
->vc_sw
->con_font_get
)
4076 rc
= vc
->vc_sw
->con_font_get(vc
, &font
);
4084 c
= (font
.width
+7)/8 * 32 * font
.charcount
;
4086 if (op
->data
&& font
.charcount
> op
->charcount
)
4088 if (!(op
->flags
& KD_FONT_FLAG_OLD
)) {
4089 if (font
.width
> op
->width
|| font
.height
> op
->height
)
4092 if (font
.width
!= 8)
4094 else if ((op
->height
&& font
.height
> op
->height
) ||
4101 op
->height
= font
.height
;
4102 op
->width
= font
.width
;
4103 op
->charcount
= font
.charcount
;
4105 if (op
->data
&& copy_to_user(op
->data
, font
.data
, c
))
4113 static int con_font_set(struct vc_data
*vc
, struct console_font_op
*op
)
4115 struct console_font font
;
4119 if (vc
->vc_mode
!= KD_TEXT
)
4123 if (op
->charcount
> 512)
4125 if (op
->width
<= 0 || op
->width
> 32 || op
->height
> 32)
4127 size
= (op
->width
+7)/8 * 32 * op
->charcount
;
4128 if (size
> max_font_size
)
4131 font
.data
= memdup_user(op
->data
, size
);
4132 if (IS_ERR(font
.data
))
4133 return PTR_ERR(font
.data
);
4135 if (!op
->height
) { /* Need to guess font height [compat] */
4137 u8
*charmap
= font
.data
;
4140 * If from KDFONTOP ioctl, don't allow things which can be done
4141 * in userland,so that we can get rid of this soon
4143 if (!(op
->flags
& KD_FONT_FLAG_OLD
)) {
4148 for (h
= 32; h
> 0; h
--)
4149 for (i
= 0; i
< op
->charcount
; i
++)
4150 if (charmap
[32*i
+h
-1])
4160 font
.charcount
= op
->charcount
;
4161 font
.width
= op
->width
;
4162 font
.height
= op
->height
;
4165 if (vc
->vc_mode
!= KD_TEXT
)
4167 else if (vc
->vc_sw
->con_font_set
)
4168 rc
= vc
->vc_sw
->con_font_set(vc
, &font
, op
->flags
);
4176 static int con_font_default(struct vc_data
*vc
, struct console_font_op
*op
)
4178 struct console_font font
= {.width
= op
->width
, .height
= op
->height
};
4179 char name
[MAX_FONT_NAME
];
4186 else if (strncpy_from_user(name
, op
->data
, MAX_FONT_NAME
- 1) < 0)
4189 name
[MAX_FONT_NAME
- 1] = 0;
4192 if (vc
->vc_mode
!= KD_TEXT
) {
4196 if (vc
->vc_sw
->con_font_default
)
4197 rc
= vc
->vc_sw
->con_font_default(vc
, &font
, s
);
4202 op
->width
= font
.width
;
4203 op
->height
= font
.height
;
4208 static int con_font_copy(struct vc_data
*vc
, struct console_font_op
*op
)
4210 int con
= op
->height
;
4215 if (vc
->vc_mode
!= KD_TEXT
)
4217 else if (!vc
->vc_sw
->con_font_copy
)
4219 else if (con
< 0 || !vc_cons_allocated(con
))
4221 else if (con
== vc
->vc_num
) /* nothing to do */
4224 rc
= vc
->vc_sw
->con_font_copy(vc
, con
);
4229 int con_font_op(struct vc_data
*vc
, struct console_font_op
*op
)
4232 case KD_FONT_OP_SET
:
4233 return con_font_set(vc
, op
);
4234 case KD_FONT_OP_GET
:
4235 return con_font_get(vc
, op
);
4236 case KD_FONT_OP_SET_DEFAULT
:
4237 return con_font_default(vc
, op
);
4238 case KD_FONT_OP_COPY
:
4239 return con_font_copy(vc
, op
);
4245 * Interface exported to selection and vcs.
4248 /* used by selection */
4249 u16
screen_glyph(struct vc_data
*vc
, int offset
)
4251 u16 w
= scr_readw(screenpos(vc
, offset
, 1));
4254 if (w
& vc
->vc_hi_font_mask
)
4258 EXPORT_SYMBOL_GPL(screen_glyph
);
4260 /* used by vcs - note the word offset */
4261 unsigned short *screen_pos(struct vc_data
*vc
, int w_offset
, int viewed
)
4263 return screenpos(vc
, 2 * w_offset
, viewed
);
4265 EXPORT_SYMBOL_GPL(screen_pos
);
4267 void getconsxy(struct vc_data
*vc
, unsigned char *p
)
4273 void putconsxy(struct vc_data
*vc
, unsigned char *p
)
4276 gotoxy(vc
, p
[0], p
[1]);
4280 u16
vcs_scr_readw(struct vc_data
*vc
, const u16
*org
)
4282 if ((unsigned long)org
== vc
->vc_pos
&& softcursor_original
!= -1)
4283 return softcursor_original
;
4284 return scr_readw(org
);
4287 void vcs_scr_writew(struct vc_data
*vc
, u16 val
, u16
*org
)
4289 scr_writew(val
, org
);
4290 if ((unsigned long)org
== vc
->vc_pos
) {
4291 softcursor_original
= -1;
4296 void vcs_scr_updated(struct vc_data
*vc
)
4301 void vc_scrolldelta_helper(struct vc_data
*c
, int lines
,
4302 unsigned int rolled_over
, void *base
, unsigned int size
)
4304 unsigned long ubase
= (unsigned long)base
;
4305 ptrdiff_t scr_end
= (void *)c
->vc_scr_end
- base
;
4306 ptrdiff_t vorigin
= (void *)c
->vc_visible_origin
- base
;
4307 ptrdiff_t origin
= (void *)c
->vc_origin
- base
;
4308 int margin
= c
->vc_size_row
* 4;
4309 int from
, wrap
, from_off
, avail
;
4311 /* Turn scrollback off */
4313 c
->vc_visible_origin
= c
->vc_origin
;
4317 /* Do we have already enough to allow jumping from 0 to the end? */
4318 if (rolled_over
> scr_end
+ margin
) {
4320 wrap
= rolled_over
+ c
->vc_size_row
;
4326 from_off
= (vorigin
- from
+ wrap
) % wrap
+ lines
* c
->vc_size_row
;
4327 avail
= (origin
- from
+ wrap
) % wrap
;
4329 /* Only a little piece would be left? Show all incl. the piece! */
4330 if (avail
< 2 * margin
)
4332 if (from_off
< margin
)
4334 if (from_off
> avail
- margin
)
4337 c
->vc_visible_origin
= ubase
+ (from
+ from_off
) % wrap
;
4339 EXPORT_SYMBOL_GPL(vc_scrolldelta_helper
);
4342 * Visible symbols for modules
4345 EXPORT_SYMBOL(color_table
);
4346 EXPORT_SYMBOL(default_red
);
4347 EXPORT_SYMBOL(default_grn
);
4348 EXPORT_SYMBOL(default_blu
);
4349 EXPORT_SYMBOL(update_region
);
4350 EXPORT_SYMBOL(redraw_screen
);
4351 EXPORT_SYMBOL(vc_resize
);
4352 EXPORT_SYMBOL(fg_console
);
4353 EXPORT_SYMBOL(console_blank_hook
);
4354 EXPORT_SYMBOL(console_blanked
);
4355 EXPORT_SYMBOL(vc_cons
);
4356 EXPORT_SYMBOL(global_cursor_default
);
4357 #ifndef VT_SINGLE_DRIVER
4358 EXPORT_SYMBOL(give_up_console
);