Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Copyright (C) 1991, 1992 Linus Torvalds |
| 3 | */ |
| 4 | |
| 5 | /* |
| 6 | * Hopefully this will be a rather complete VT102 implementation. |
| 7 | * |
| 8 | * Beeping thanks to John T Kohl. |
| 9 | * |
| 10 | * Virtual Consoles, Screen Blanking, Screen Dumping, Color, Graphics |
| 11 | * Chars, and VT100 enhancements by Peter MacDonald. |
| 12 | * |
| 13 | * Copy and paste function by Andrew Haylett, |
| 14 | * some enhancements by Alessandro Rubini. |
| 15 | * |
| 16 | * Code to check for different video-cards mostly by Galen Hunt, |
| 17 | * <g-hunt@ee.utah.edu> |
| 18 | * |
| 19 | * Rudimentary ISO 10646/Unicode/UTF-8 character set support by |
| 20 | * Markus Kuhn, <mskuhn@immd4.informatik.uni-erlangen.de>. |
| 21 | * |
| 22 | * Dynamic allocation of consoles, aeb@cwi.nl, May 1994 |
| 23 | * Resizing of consoles, aeb, 940926 |
| 24 | * |
| 25 | * Code for xterm like mouse click reporting by Peter Orbaek 20-Jul-94 |
| 26 | * <poe@daimi.aau.dk> |
| 27 | * |
| 28 | * User-defined bell sound, new setterm control sequences and printk |
| 29 | * redirection by Martin Mares <mj@k332.feld.cvut.cz> 19-Nov-95 |
| 30 | * |
| 31 | * APM screenblank bug fixed Takashi Manabe <manabe@roy.dsl.tutics.tut.jp> |
| 32 | * |
| 33 | * Merge with the abstract console driver by Geert Uytterhoeven |
| 34 | * <geert@linux-m68k.org>, Jan 1997. |
| 35 | * |
| 36 | * Original m68k console driver modifications by |
| 37 | * |
| 38 | * - Arno Griffioen <arno@usn.nl> |
| 39 | * - David Carter <carter@cs.bris.ac.uk> |
| 40 | * |
| 41 | * The abstract console driver provides a generic interface for a text |
| 42 | * console. It supports VGA text mode, frame buffer based graphical consoles |
| 43 | * and special graphics processors that are only accessible through some |
| 44 | * registers (e.g. a TMS340x0 GSP). |
| 45 | * |
| 46 | * The interface to the hardware is specified using a special structure |
| 47 | * (struct consw) which contains function pointers to console operations |
| 48 | * (see <linux/console.h> for more information). |
| 49 | * |
| 50 | * Support for changeable cursor shape |
| 51 | * by Pavel Machek <pavel@atrey.karlin.mff.cuni.cz>, August 1997 |
| 52 | * |
| 53 | * Ported to i386 and con_scrolldelta fixed |
| 54 | * by Emmanuel Marty <core@ggi-project.org>, April 1998 |
| 55 | * |
| 56 | * Resurrected character buffers in videoram plus lots of other trickery |
| 57 | * by Martin Mares <mj@atrey.karlin.mff.cuni.cz>, July 1998 |
| 58 | * |
| 59 | * Removed old-style timers, introduced console_timer, made timer |
Francois Cami | e1f8e87 | 2008-10-15 22:01:59 -0700 | [diff] [blame] | 60 | * deletion SMP-safe. 17Jun00, Andrew Morton |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | * |
| 62 | * Removed console_lock, enabled interrupts across all console operations |
| 63 | * 13 March 2001, Andrew Morton |
Adam Tlalka | d4328b4 | 2006-09-29 01:59:53 -0700 | [diff] [blame] | 64 | * |
| 65 | * Fixed UTF-8 mode so alternate charset modes always work according |
| 66 | * to control sequences interpreted in do_con_trol function |
| 67 | * preserving backward VT100 semigraphics compatibility, |
| 68 | * malformed UTF sequences represented as sequences of replacement glyphs, |
| 69 | * original codes or '?' as a last resort if replacement glyph is undefined |
| 70 | * by Adam Tla/lka <atlka@pg.gda.pl>, Aug 2006 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | */ |
| 72 | |
| 73 | #include <linux/module.h> |
| 74 | #include <linux/types.h> |
| 75 | #include <linux/sched.h> |
| 76 | #include <linux/tty.h> |
| 77 | #include <linux/tty_flip.h> |
| 78 | #include <linux/kernel.h> |
| 79 | #include <linux/string.h> |
| 80 | #include <linux/errno.h> |
| 81 | #include <linux/kd.h> |
| 82 | #include <linux/slab.h> |
| 83 | #include <linux/major.h> |
| 84 | #include <linux/mm.h> |
| 85 | #include <linux/console.h> |
| 86 | #include <linux/init.h> |
Matthias Kaehlcke | c831c33 | 2007-05-08 00:39:49 -0700 | [diff] [blame] | 87 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | #include <linux/vt_kern.h> |
| 89 | #include <linux/selection.h> |
| 90 | #include <linux/tiocl.h> |
| 91 | #include <linux/kbd_kern.h> |
| 92 | #include <linux/consolemap.h> |
| 93 | #include <linux/timer.h> |
| 94 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | #include <linux/workqueue.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | #include <linux/pm.h> |
| 97 | #include <linux/font.h> |
| 98 | #include <linux/bitops.h> |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 99 | #include <linux/notifier.h> |
Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 100 | #include <linux/device.h> |
| 101 | #include <linux/io.h> |
Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 102 | #include <linux/uaccess.h> |
Jason Wessel | 81d4450 | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 103 | #include <linux/kdb.h> |
Andy Shevchenko | 74c807c | 2010-06-15 17:24:16 +0300 | [diff] [blame] | 104 | #include <linux/ctype.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 106 | #define MAX_NR_CON_DRIVER 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 108 | #define CON_DRIVER_FLAG_MODULE 1 |
Antonino A. Daplas | 928e964 | 2006-10-03 01:14:49 -0700 | [diff] [blame] | 109 | #define CON_DRIVER_FLAG_INIT 2 |
| 110 | #define CON_DRIVER_FLAG_ATTR 4 |
Imre Deak | d364b5c | 2015-04-01 21:06:16 +0300 | [diff] [blame] | 111 | #define CON_DRIVER_FLAG_ZOMBIE 8 |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 112 | |
| 113 | struct con_driver { |
| 114 | const struct consw *con; |
| 115 | const char *desc; |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 116 | struct device *dev; |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 117 | int node; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 118 | int first; |
| 119 | int last; |
| 120 | int flag; |
| 121 | }; |
| 122 | |
| 123 | static struct con_driver registered_con_driver[MAX_NR_CON_DRIVER]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | const struct consw *conswitchp; |
| 125 | |
| 126 | /* A bitmap for codes <32. A bit of 1 indicates that the code |
| 127 | * corresponding to that bit number invokes some special action |
| 128 | * (such as cursor movement) and should not be displayed as a |
| 129 | * glyph unless the disp_ctrl mode is explicitly enabled. |
| 130 | */ |
| 131 | #define CTRL_ACTION 0x0d00ff81 |
| 132 | #define CTRL_ALWAYS 0x0800f501 /* Cannot be overridden by disp_ctrl */ |
| 133 | |
| 134 | /* |
| 135 | * Here is the default bell parameters: 750HZ, 1/8th of a second |
| 136 | */ |
| 137 | #define DEFAULT_BELL_PITCH 750 |
| 138 | #define DEFAULT_BELL_DURATION (HZ/8) |
Scot Doyle | bd63364 | 2015-03-26 13:54:39 +0000 | [diff] [blame] | 139 | #define DEFAULT_CURSOR_BLINK_MS 200 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | struct vc vc_cons [MAX_NR_CONSOLES]; |
| 142 | |
| 143 | #ifndef VT_SINGLE_DRIVER |
| 144 | static const struct consw *con_driver_map[MAX_NR_CONSOLES]; |
| 145 | #endif |
| 146 | |
| 147 | static int con_open(struct tty_struct *, struct file *); |
| 148 | static void vc_init(struct vc_data *vc, unsigned int rows, |
| 149 | unsigned int cols, int do_clear); |
| 150 | static void gotoxy(struct vc_data *vc, int new_x, int new_y); |
| 151 | static void save_cur(struct vc_data *vc); |
| 152 | static void reset_terminal(struct vc_data *vc, int do_clear); |
| 153 | static void con_flush_chars(struct tty_struct *tty); |
Yoichi Yuasa | 403aac9 | 2006-12-06 20:38:38 -0800 | [diff] [blame] | 154 | static int set_vesa_blanking(char __user *p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | static void set_cursor(struct vc_data *vc); |
| 156 | static void hide_cursor(struct vc_data *vc); |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 157 | static void console_callback(struct work_struct *ignored); |
Imre Deak | d364b5c | 2015-04-01 21:06:16 +0300 | [diff] [blame] | 158 | static void con_driver_unregister_callback(struct work_struct *ignored); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | static void blank_screen_t(unsigned long dummy); |
| 160 | static void set_palette(struct vc_data *vc); |
| 161 | |
Peter Hurley | 52c40fc | 2014-11-11 11:20:56 -0500 | [diff] [blame] | 162 | #define vt_get_kmsg_redirect() vt_kmsg_redirect(-1) |
| 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | static int printable; /* Is console ready for printing? */ |
Jan Engelhardt | 77bf2ba | 2007-10-18 03:04:34 -0700 | [diff] [blame] | 165 | int default_utf8 = true; |
Antonino A. Daplas | 042f10e | 2007-05-08 00:38:09 -0700 | [diff] [blame] | 166 | module_param(default_utf8, int, S_IRUGO | S_IWUSR); |
Matthew Garrett | f6c06b6 | 2009-11-13 15:14:11 -0500 | [diff] [blame] | 167 | int global_cursor_default = -1; |
| 168 | module_param(global_cursor_default, int, S_IRUGO | S_IWUSR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
Clemens Ladisch | 9ea9a88 | 2009-12-15 16:45:39 -0800 | [diff] [blame] | 170 | static int cur_default = CUR_DEFAULT; |
| 171 | module_param(cur_default, int, S_IRUGO | S_IWUSR); |
| 172 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | /* |
| 174 | * ignore_poke: don't unblank the screen when things are typed. This is |
| 175 | * mainly for the privacy of braille terminal users. |
| 176 | */ |
| 177 | static int ignore_poke; |
| 178 | |
| 179 | int do_poke_blanked_console; |
| 180 | int console_blanked; |
| 181 | |
| 182 | static int vesa_blank_mode; /* 0:none 1:suspendV 2:suspendH 3:powerdown */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | static int vesa_off_interval; |
Daniel Mack | f324edc | 2009-06-16 15:33:52 -0700 | [diff] [blame] | 184 | static int blankinterval = 10*60; |
| 185 | core_param(consoleblank, blankinterval, int, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 187 | static DECLARE_WORK(console_work, console_callback); |
Imre Deak | d364b5c | 2015-04-01 21:06:16 +0300 | [diff] [blame] | 188 | static DECLARE_WORK(con_driver_unregister_work, con_driver_unregister_callback); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | |
| 190 | /* |
| 191 | * fg_console is the current virtual console, |
| 192 | * last_console is the last used one, |
| 193 | * want_console is the console we want to switch to, |
Jesse Barnes | b45cfba | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 194 | * saved_* variants are for save/restore around kernel debugger enter/leave |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | */ |
| 196 | int fg_console; |
| 197 | int last_console; |
| 198 | int want_console = -1; |
Jason Wessel | fed891c | 2010-08-16 15:58:30 -0500 | [diff] [blame] | 199 | static int saved_fg_console; |
| 200 | static int saved_last_console; |
| 201 | static int saved_want_console; |
| 202 | static int saved_vc_mode; |
Jason Wessel | beed533 | 2010-08-16 15:58:31 -0500 | [diff] [blame] | 203 | static int saved_console_blanked; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
| 205 | /* |
| 206 | * For each existing display, we have a pointer to console currently visible |
| 207 | * on that display, allowing consoles other than fg_console to be refreshed |
| 208 | * appropriately. Unless the low-level driver supplies its own display_fg |
| 209 | * variable, we use this one for the "master display". |
| 210 | */ |
| 211 | static struct vc_data *master_display_fg; |
| 212 | |
| 213 | /* |
| 214 | * Unfortunately, we need to delay tty echo when we're currently writing to the |
| 215 | * console since the code is (and always was) not re-entrant, so we schedule |
| 216 | * all flip requests to process context with schedule-task() and run it from |
| 217 | * console_callback(). |
| 218 | */ |
| 219 | |
| 220 | /* |
| 221 | * For the same reason, we defer scrollback to the console callback. |
| 222 | */ |
| 223 | static int scrollback_delta; |
| 224 | |
| 225 | /* |
| 226 | * Hook so that the power management routines can (un)blank |
| 227 | * the console on our behalf. |
| 228 | */ |
| 229 | int (*console_blank_hook)(int); |
| 230 | |
Jiri Slaby | 40565f1 | 2007-02-12 00:52:31 -0800 | [diff] [blame] | 231 | static DEFINE_TIMER(console_timer, blank_screen_t, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | static int blank_state; |
| 233 | static int blank_timer_expired; |
| 234 | enum { |
| 235 | blank_off = 0, |
| 236 | blank_normal_wait, |
| 237 | blank_vesa_wait, |
| 238 | }; |
| 239 | |
| 240 | /* |
Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 241 | * /sys/class/tty/tty0/ |
| 242 | * |
| 243 | * the attribute 'active' contains the name of the current vc |
| 244 | * console and it supports poll() to detect vc switches |
| 245 | */ |
| 246 | static struct device *tty0dev; |
| 247 | |
| 248 | /* |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 249 | * Notifier list for console events. |
| 250 | */ |
| 251 | static ATOMIC_NOTIFIER_HEAD(vt_notifier_list); |
| 252 | |
| 253 | int register_vt_notifier(struct notifier_block *nb) |
| 254 | { |
| 255 | return atomic_notifier_chain_register(&vt_notifier_list, nb); |
| 256 | } |
| 257 | EXPORT_SYMBOL_GPL(register_vt_notifier); |
| 258 | |
| 259 | int unregister_vt_notifier(struct notifier_block *nb) |
| 260 | { |
| 261 | return atomic_notifier_chain_unregister(&vt_notifier_list, nb); |
| 262 | } |
| 263 | EXPORT_SYMBOL_GPL(unregister_vt_notifier); |
| 264 | |
| 265 | static void notify_write(struct vc_data *vc, unsigned int unicode) |
| 266 | { |
Mathias Krause | 502fcb7 | 2011-07-30 14:01:59 +0200 | [diff] [blame] | 267 | struct vt_notifier_param param = { .vc = vc, .c = unicode }; |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 268 | atomic_notifier_call_chain(&vt_notifier_list, VT_WRITE, ¶m); |
| 269 | } |
| 270 | |
| 271 | static void notify_update(struct vc_data *vc) |
| 272 | { |
| 273 | struct vt_notifier_param param = { .vc = vc }; |
| 274 | atomic_notifier_call_chain(&vt_notifier_list, VT_UPDATE, ¶m); |
| 275 | } |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 276 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | * Low-Level Functions |
| 278 | */ |
| 279 | |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 280 | static inline bool con_is_fg(const struct vc_data *vc) |
| 281 | { |
| 282 | return vc->vc_num == fg_console; |
| 283 | } |
| 284 | |
| 285 | static inline bool con_should_update(const struct vc_data *vc) |
| 286 | { |
| 287 | return con_is_visible(vc) && !console_blanked; |
| 288 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
| 290 | static inline unsigned short *screenpos(struct vc_data *vc, int offset, int viewed) |
| 291 | { |
| 292 | unsigned short *p; |
| 293 | |
| 294 | if (!viewed) |
| 295 | p = (unsigned short *)(vc->vc_origin + offset); |
| 296 | else if (!vc->vc_sw->con_screen_pos) |
| 297 | p = (unsigned short *)(vc->vc_visible_origin + offset); |
| 298 | else |
| 299 | p = vc->vc_sw->con_screen_pos(vc, offset); |
| 300 | return p; |
| 301 | } |
| 302 | |
Alan Cox | e33ac1c | 2010-06-01 22:52:54 +0200 | [diff] [blame] | 303 | /* Called from the keyboard irq path.. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | static inline void scrolldelta(int lines) |
| 305 | { |
Alan Cox | e33ac1c | 2010-06-01 22:52:54 +0200 | [diff] [blame] | 306 | /* FIXME */ |
| 307 | /* scrolldelta needs some kind of consistency lock, but the BKL was |
| 308 | and still is not protecting versus the scheduled back end */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | scrollback_delta += lines; |
| 310 | schedule_console_callback(); |
| 311 | } |
| 312 | |
| 313 | void schedule_console_callback(void) |
| 314 | { |
| 315 | schedule_work(&console_work); |
| 316 | } |
| 317 | |
| 318 | static void scrup(struct vc_data *vc, unsigned int t, unsigned int b, int nr) |
| 319 | { |
| 320 | unsigned short *d, *s; |
| 321 | |
| 322 | if (t+nr >= b) |
| 323 | nr = b - t - 1; |
| 324 | if (b > vc->vc_rows || t >= b || nr < 1) |
| 325 | return; |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 326 | if (con_is_visible(vc) && vc->vc_sw->con_scroll(vc, t, b, SM_UP, nr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | return; |
| 328 | d = (unsigned short *)(vc->vc_origin + vc->vc_size_row * t); |
| 329 | s = (unsigned short *)(vc->vc_origin + vc->vc_size_row * (t + nr)); |
| 330 | scr_memmovew(d, s, (b - t - nr) * vc->vc_size_row); |
Linus Torvalds | 386f40c | 2010-06-06 20:44:04 -0700 | [diff] [blame] | 331 | scr_memsetw(d + (b - t - nr) * vc->vc_cols, vc->vc_video_erase_char, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | vc->vc_size_row * nr); |
| 333 | } |
| 334 | |
| 335 | static void scrdown(struct vc_data *vc, unsigned int t, unsigned int b, int nr) |
| 336 | { |
| 337 | unsigned short *s; |
| 338 | unsigned int step; |
| 339 | |
| 340 | if (t+nr >= b) |
| 341 | nr = b - t - 1; |
| 342 | if (b > vc->vc_rows || t >= b || nr < 1) |
| 343 | return; |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 344 | if (con_is_visible(vc) && vc->vc_sw->con_scroll(vc, t, b, SM_DOWN, nr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | return; |
| 346 | s = (unsigned short *)(vc->vc_origin + vc->vc_size_row * t); |
| 347 | step = vc->vc_cols * nr; |
| 348 | scr_memmovew(s + step, s, (b - t - nr) * vc->vc_size_row); |
Linus Torvalds | 93f78da | 2008-10-14 12:12:02 -0700 | [diff] [blame] | 349 | scr_memsetw(s, vc->vc_video_erase_char, 2 * step); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | static void do_update_region(struct vc_data *vc, unsigned long start, int count) |
| 353 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | unsigned int xx, yy, offset; |
| 355 | u16 *p; |
| 356 | |
| 357 | p = (u16 *) start; |
| 358 | if (!vc->vc_sw->con_getxy) { |
| 359 | offset = (start - vc->vc_origin) / 2; |
| 360 | xx = offset % vc->vc_cols; |
| 361 | yy = offset / vc->vc_cols; |
| 362 | } else { |
| 363 | int nxx, nyy; |
| 364 | start = vc->vc_sw->con_getxy(vc, start, &nxx, &nyy); |
| 365 | xx = nxx; yy = nyy; |
| 366 | } |
| 367 | for(;;) { |
| 368 | u16 attrib = scr_readw(p) & 0xff00; |
| 369 | int startx = xx; |
| 370 | u16 *q = p; |
| 371 | while (xx < vc->vc_cols && count) { |
| 372 | if (attrib != (scr_readw(p) & 0xff00)) { |
| 373 | if (p > q) |
| 374 | vc->vc_sw->con_putcs(vc, q, p-q, yy, startx); |
| 375 | startx = xx; |
| 376 | q = p; |
| 377 | attrib = scr_readw(p) & 0xff00; |
| 378 | } |
| 379 | p++; |
| 380 | xx++; |
| 381 | count--; |
| 382 | } |
| 383 | if (p > q) |
| 384 | vc->vc_sw->con_putcs(vc, q, p-q, yy, startx); |
| 385 | if (!count) |
| 386 | break; |
| 387 | xx = 0; |
| 388 | yy++; |
| 389 | if (vc->vc_sw->con_getxy) { |
| 390 | p = (u16 *)start; |
| 391 | start = vc->vc_sw->con_getxy(vc, start, NULL, NULL); |
| 392 | } |
| 393 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | } |
| 395 | |
| 396 | void update_region(struct vc_data *vc, unsigned long start, int count) |
| 397 | { |
| 398 | WARN_CONSOLE_UNLOCKED(); |
| 399 | |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 400 | if (con_should_update(vc)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | hide_cursor(vc); |
| 402 | do_update_region(vc, start, count); |
| 403 | set_cursor(vc); |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | /* Structure of attributes is hardware-dependent */ |
| 408 | |
Jan Engelhardt | fa6ce9a | 2007-05-08 00:38:04 -0700 | [diff] [blame] | 409 | static u8 build_attr(struct vc_data *vc, u8 _color, u8 _intensity, u8 _blink, |
| 410 | u8 _underline, u8 _reverse, u8 _italic) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | { |
| 412 | if (vc->vc_sw->con_build_attr) |
Jan Engelhardt | fa6ce9a | 2007-05-08 00:38:04 -0700 | [diff] [blame] | 413 | return vc->vc_sw->con_build_attr(vc, _color, _intensity, |
| 414 | _blink, _underline, _reverse, _italic); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | /* |
| 417 | * ++roman: I completely changed the attribute format for monochrome |
| 418 | * mode (!can_do_color). The formerly used MDA (monochrome display |
| 419 | * adapter) format didn't allow the combination of certain effects. |
| 420 | * Now the attribute is just a bit vector: |
| 421 | * Bit 0..1: intensity (0..2) |
| 422 | * Bit 2 : underline |
| 423 | * Bit 3 : reverse |
| 424 | * Bit 7 : blink |
| 425 | */ |
| 426 | { |
Jan Engelhardt | c9e587ab | 2008-04-29 00:59:46 -0700 | [diff] [blame] | 427 | u8 a = _color; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | if (!vc->vc_can_do_color) |
| 429 | return _intensity | |
Jan Engelhardt | fa6ce9a | 2007-05-08 00:38:04 -0700 | [diff] [blame] | 430 | (_italic ? 2 : 0) | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | (_underline ? 4 : 0) | |
| 432 | (_reverse ? 8 : 0) | |
| 433 | (_blink ? 0x80 : 0); |
Jan Engelhardt | fa6ce9a | 2007-05-08 00:38:04 -0700 | [diff] [blame] | 434 | if (_italic) |
| 435 | a = (a & 0xF0) | vc->vc_itcolor; |
| 436 | else if (_underline) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | a = (a & 0xf0) | vc->vc_ulcolor; |
| 438 | else if (_intensity == 0) |
| 439 | a = (a & 0xf0) | vc->vc_ulcolor; |
| 440 | if (_reverse) |
| 441 | a = ((a) & 0x88) | ((((a) >> 4) | ((a) << 4)) & 0x77); |
| 442 | if (_blink) |
| 443 | a ^= 0x80; |
| 444 | if (_intensity == 2) |
| 445 | a ^= 0x08; |
| 446 | if (vc->vc_hi_font_mask == 0x100) |
| 447 | a <<= 1; |
| 448 | return a; |
| 449 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | static void update_attr(struct vc_data *vc) |
| 453 | { |
Jan Engelhardt | fa6ce9a | 2007-05-08 00:38:04 -0700 | [diff] [blame] | 454 | vc->vc_attr = build_attr(vc, vc->vc_color, vc->vc_intensity, |
| 455 | vc->vc_blink, vc->vc_underline, |
| 456 | vc->vc_reverse ^ vc->vc_decscnm, vc->vc_italic); |
| 457 | vc->vc_video_erase_char = (build_attr(vc, vc->vc_color, 1, vc->vc_blink, 0, vc->vc_decscnm, 0) << 8) | ' '; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | /* Note: inverting the screen twice should revert to the original state */ |
| 461 | void invert_screen(struct vc_data *vc, int offset, int count, int viewed) |
| 462 | { |
| 463 | unsigned short *p; |
| 464 | |
| 465 | WARN_CONSOLE_UNLOCKED(); |
| 466 | |
| 467 | count /= 2; |
| 468 | p = screenpos(vc, offset, viewed); |
Jiri Slaby | 6af39ed | 2016-06-23 13:34:29 +0200 | [diff] [blame] | 469 | if (vc->vc_sw->con_invert_region) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | vc->vc_sw->con_invert_region(vc, p, count); |
Jiri Slaby | 6af39ed | 2016-06-23 13:34:29 +0200 | [diff] [blame] | 471 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | u16 *q = p; |
| 473 | int cnt = count; |
| 474 | u16 a; |
| 475 | |
| 476 | if (!vc->vc_can_do_color) { |
| 477 | while (cnt--) { |
| 478 | a = scr_readw(q); |
| 479 | a ^= 0x0800; |
| 480 | scr_writew(a, q); |
| 481 | q++; |
| 482 | } |
| 483 | } else if (vc->vc_hi_font_mask == 0x100) { |
| 484 | while (cnt--) { |
| 485 | a = scr_readw(q); |
| 486 | a = ((a) & 0x11ff) | (((a) & 0xe000) >> 4) | (((a) & 0x0e00) << 4); |
| 487 | scr_writew(a, q); |
| 488 | q++; |
| 489 | } |
| 490 | } else { |
| 491 | while (cnt--) { |
| 492 | a = scr_readw(q); |
| 493 | a = ((a) & 0x88ff) | (((a) & 0x7000) >> 4) | (((a) & 0x0700) << 4); |
| 494 | scr_writew(a, q); |
| 495 | q++; |
| 496 | } |
| 497 | } |
| 498 | } |
Jiri Slaby | 6af39ed | 2016-06-23 13:34:29 +0200 | [diff] [blame] | 499 | |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 500 | if (con_should_update(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | do_update_region(vc, (unsigned long) p, count); |
Nicolas Pitre | 19e3ae6 | 2015-01-23 17:07:21 -0500 | [diff] [blame] | 502 | notify_update(vc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | } |
| 504 | |
| 505 | /* used by selection: complement pointer position */ |
| 506 | void complement_pos(struct vc_data *vc, int offset) |
| 507 | { |
Antonino A. Daplas | 414edcd | 2005-09-06 15:17:52 -0700 | [diff] [blame] | 508 | static int old_offset = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | static unsigned short old; |
| 510 | static unsigned short oldx, oldy; |
| 511 | |
| 512 | WARN_CONSOLE_UNLOCKED(); |
| 513 | |
Antonino A. Daplas | 414edcd | 2005-09-06 15:17:52 -0700 | [diff] [blame] | 514 | if (old_offset != -1 && old_offset >= 0 && |
| 515 | old_offset < vc->vc_screenbuf_size) { |
| 516 | scr_writew(old, screenpos(vc, old_offset, 1)); |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 517 | if (con_should_update(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | vc->vc_sw->con_putc(vc, old, oldy, oldx); |
Nicolas Pitre | 19e3ae6 | 2015-01-23 17:07:21 -0500 | [diff] [blame] | 519 | notify_update(vc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | } |
Antonino A. Daplas | 414edcd | 2005-09-06 15:17:52 -0700 | [diff] [blame] | 521 | |
| 522 | old_offset = offset; |
| 523 | |
| 524 | if (offset != -1 && offset >= 0 && |
| 525 | offset < vc->vc_screenbuf_size) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | unsigned short new; |
Antonino A. Daplas | 414edcd | 2005-09-06 15:17:52 -0700 | [diff] [blame] | 527 | unsigned short *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | p = screenpos(vc, offset, 1); |
| 529 | old = scr_readw(p); |
| 530 | new = old ^ vc->vc_complement_mask; |
| 531 | scr_writew(new, p); |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 532 | if (con_should_update(vc)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | oldx = (offset >> 1) % vc->vc_cols; |
| 534 | oldy = (offset >> 1) / vc->vc_cols; |
| 535 | vc->vc_sw->con_putc(vc, new, oldy, oldx); |
| 536 | } |
Nicolas Pitre | 19e3ae6 | 2015-01-23 17:07:21 -0500 | [diff] [blame] | 537 | notify_update(vc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | } |
| 539 | } |
| 540 | |
| 541 | static void insert_char(struct vc_data *vc, unsigned int nr) |
| 542 | { |
Jean-François Moine | 81732c3 | 2012-09-06 19:24:13 +0200 | [diff] [blame] | 543 | unsigned short *p = (unsigned short *) vc->vc_pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
Nicolas Pitre | a883b70 | 2013-02-24 20:06:09 -0500 | [diff] [blame] | 545 | scr_memmovew(p + nr, p, (vc->vc_cols - vc->vc_x - nr) * 2); |
Jean-François Moine | 81732c3 | 2012-09-06 19:24:13 +0200 | [diff] [blame] | 546 | scr_memsetw(p, vc->vc_video_erase_char, nr * 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | vc->vc_need_wrap = 0; |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 548 | if (con_should_update(vc)) |
Jean-François Moine | 81732c3 | 2012-09-06 19:24:13 +0200 | [diff] [blame] | 549 | do_update_region(vc, (unsigned long) p, |
Jean-François Moine | b1a925f | 2012-11-20 17:35:41 +0100 | [diff] [blame] | 550 | vc->vc_cols - vc->vc_x); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | } |
| 552 | |
| 553 | static void delete_char(struct vc_data *vc, unsigned int nr) |
| 554 | { |
Jean-François Moine | 81732c3 | 2012-09-06 19:24:13 +0200 | [diff] [blame] | 555 | unsigned short *p = (unsigned short *) vc->vc_pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
Jean-François Moine | b1a925f | 2012-11-20 17:35:41 +0100 | [diff] [blame] | 557 | scr_memcpyw(p, p + nr, (vc->vc_cols - vc->vc_x - nr) * 2); |
Jean-François Moine | 81732c3 | 2012-09-06 19:24:13 +0200 | [diff] [blame] | 558 | scr_memsetw(p + vc->vc_cols - vc->vc_x - nr, vc->vc_video_erase_char, |
| 559 | nr * 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | vc->vc_need_wrap = 0; |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 561 | if (con_should_update(vc)) |
Jean-François Moine | 81732c3 | 2012-09-06 19:24:13 +0200 | [diff] [blame] | 562 | do_update_region(vc, (unsigned long) p, |
Jean-François Moine | b1a925f | 2012-11-20 17:35:41 +0100 | [diff] [blame] | 563 | vc->vc_cols - vc->vc_x); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | } |
| 565 | |
Melchior FRANZ | e882f71 | 2015-11-01 19:48:18 +0100 | [diff] [blame] | 566 | static int softcursor_original = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | |
| 568 | static void add_softcursor(struct vc_data *vc) |
| 569 | { |
| 570 | int i = scr_readw((u16 *) vc->vc_pos); |
| 571 | u32 type = vc->vc_cursor_type; |
| 572 | |
| 573 | if (! (type & 0x10)) return; |
| 574 | if (softcursor_original != -1) return; |
| 575 | softcursor_original = i; |
| 576 | i |= ((type >> 8) & 0xff00 ); |
| 577 | i ^= ((type) & 0xff00 ); |
| 578 | if ((type & 0x20) && ((softcursor_original & 0x7000) == (i & 0x7000))) i ^= 0x7000; |
| 579 | if ((type & 0x40) && ((i & 0x700) == ((i & 0x7000) >> 4))) i ^= 0x0700; |
| 580 | scr_writew(i, (u16 *) vc->vc_pos); |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 581 | if (con_should_update(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | vc->vc_sw->con_putc(vc, i, vc->vc_y, vc->vc_x); |
| 583 | } |
| 584 | |
| 585 | static void hide_softcursor(struct vc_data *vc) |
| 586 | { |
| 587 | if (softcursor_original != -1) { |
| 588 | scr_writew(softcursor_original, (u16 *)vc->vc_pos); |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 589 | if (con_should_update(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | vc->vc_sw->con_putc(vc, softcursor_original, |
| 591 | vc->vc_y, vc->vc_x); |
| 592 | softcursor_original = -1; |
| 593 | } |
| 594 | } |
| 595 | |
| 596 | static void hide_cursor(struct vc_data *vc) |
| 597 | { |
| 598 | if (vc == sel_cons) |
| 599 | clear_selection(); |
| 600 | vc->vc_sw->con_cursor(vc, CM_ERASE); |
| 601 | hide_softcursor(vc); |
| 602 | } |
| 603 | |
| 604 | static void set_cursor(struct vc_data *vc) |
| 605 | { |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 606 | if (!con_is_fg(vc) || console_blanked || vc->vc_mode == KD_GRAPHICS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | return; |
| 608 | if (vc->vc_deccm) { |
| 609 | if (vc == sel_cons) |
| 610 | clear_selection(); |
| 611 | add_softcursor(vc); |
| 612 | if ((vc->vc_cursor_type & 0x0f) != 1) |
| 613 | vc->vc_sw->con_cursor(vc, CM_DRAW); |
| 614 | } else |
| 615 | hide_cursor(vc); |
| 616 | } |
| 617 | |
| 618 | static void set_origin(struct vc_data *vc) |
| 619 | { |
| 620 | WARN_CONSOLE_UNLOCKED(); |
| 621 | |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 622 | if (!con_is_visible(vc) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | !vc->vc_sw->con_set_origin || |
| 624 | !vc->vc_sw->con_set_origin(vc)) |
| 625 | vc->vc_origin = (unsigned long)vc->vc_screenbuf; |
| 626 | vc->vc_visible_origin = vc->vc_origin; |
| 627 | vc->vc_scr_end = vc->vc_origin + vc->vc_screenbuf_size; |
| 628 | vc->vc_pos = vc->vc_origin + vc->vc_size_row * vc->vc_y + 2 * vc->vc_x; |
| 629 | } |
| 630 | |
Denys Vlasenko | c0f160a | 2015-10-27 18:46:47 +0100 | [diff] [blame] | 631 | static void save_screen(struct vc_data *vc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | { |
| 633 | WARN_CONSOLE_UNLOCKED(); |
| 634 | |
| 635 | if (vc->vc_sw->con_save_screen) |
| 636 | vc->vc_sw->con_save_screen(vc); |
| 637 | } |
| 638 | |
| 639 | /* |
| 640 | * Redrawing of screen |
| 641 | */ |
| 642 | |
Dave Airlie | 2a24830 | 2013-01-24 14:14:19 +1000 | [diff] [blame] | 643 | void clear_buffer_attributes(struct vc_data *vc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | { |
| 645 | unsigned short *p = (unsigned short *)vc->vc_origin; |
| 646 | int count = vc->vc_screenbuf_size / 2; |
| 647 | int mask = vc->vc_hi_font_mask | 0xff; |
| 648 | |
| 649 | for (; count > 0; count--, p++) { |
| 650 | scr_writew((scr_readw(p)&mask) | (vc->vc_video_erase_char & ~mask), p); |
| 651 | } |
| 652 | } |
| 653 | |
| 654 | void redraw_screen(struct vc_data *vc, int is_switch) |
| 655 | { |
| 656 | int redraw = 0; |
| 657 | |
| 658 | WARN_CONSOLE_UNLOCKED(); |
| 659 | |
| 660 | if (!vc) { |
| 661 | /* strange ... */ |
| 662 | /* printk("redraw_screen: tty %d not allocated ??\n", new_console+1); */ |
| 663 | return; |
| 664 | } |
| 665 | |
| 666 | if (is_switch) { |
| 667 | struct vc_data *old_vc = vc_cons[fg_console].d; |
| 668 | if (old_vc == vc) |
| 669 | return; |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 670 | if (!con_is_visible(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | redraw = 1; |
| 672 | *vc->vc_display_fg = vc; |
| 673 | fg_console = vc->vc_num; |
| 674 | hide_cursor(old_vc); |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 675 | if (!con_is_visible(old_vc)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | save_screen(old_vc); |
| 677 | set_origin(old_vc); |
| 678 | } |
Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 679 | if (tty0dev) |
| 680 | sysfs_notify(&tty0dev->kobj, NULL, "active"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | } else { |
| 682 | hide_cursor(vc); |
| 683 | redraw = 1; |
| 684 | } |
| 685 | |
| 686 | if (redraw) { |
| 687 | int update; |
| 688 | int old_was_color = vc->vc_can_do_color; |
| 689 | |
| 690 | set_origin(vc); |
| 691 | update = vc->vc_sw->con_switch(vc); |
| 692 | set_palette(vc); |
| 693 | /* |
| 694 | * If console changed from mono<->color, the best we can do |
| 695 | * is to clear the buffer attributes. As it currently stands, |
| 696 | * rebuilding new attributes from the old buffer is not doable |
| 697 | * without overly complex code. |
| 698 | */ |
| 699 | if (old_was_color != vc->vc_can_do_color) { |
| 700 | update_attr(vc); |
| 701 | clear_buffer_attributes(vc); |
| 702 | } |
Jesse Barnes | 8fd4bd2 | 2010-06-23 12:56:12 -0700 | [diff] [blame] | 703 | |
| 704 | /* Forcibly update if we're panicing */ |
| 705 | if ((update && vc->vc_mode != KD_GRAPHICS) || |
| 706 | vt_force_oops_output(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | do_update_region(vc, vc->vc_origin, vc->vc_screenbuf_size / 2); |
| 708 | } |
| 709 | set_cursor(vc); |
| 710 | if (is_switch) { |
| 711 | set_leds(); |
| 712 | compute_shiftstate(); |
Samuel Thibault | 8182ec4 | 2008-03-04 14:28:36 -0800 | [diff] [blame] | 713 | notify_update(vc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | } |
| 715 | } |
| 716 | |
| 717 | /* |
| 718 | * Allocation, freeing and resizing of VTs. |
| 719 | */ |
| 720 | |
| 721 | int vc_cons_allocated(unsigned int i) |
| 722 | { |
| 723 | return (i < MAX_NR_CONSOLES && vc_cons[i].d); |
| 724 | } |
| 725 | |
| 726 | static void visual_init(struct vc_data *vc, int num, int init) |
| 727 | { |
| 728 | /* ++Geert: vc->vc_sw->con_init determines console size */ |
| 729 | if (vc->vc_sw) |
| 730 | module_put(vc->vc_sw->owner); |
| 731 | vc->vc_sw = conswitchp; |
| 732 | #ifndef VT_SINGLE_DRIVER |
| 733 | if (con_driver_map[num]) |
| 734 | vc->vc_sw = con_driver_map[num]; |
| 735 | #endif |
| 736 | __module_get(vc->vc_sw->owner); |
| 737 | vc->vc_num = num; |
| 738 | vc->vc_display_fg = &master_display_fg; |
Dongxing Zhang | 08b3324 | 2015-06-10 15:21:10 +0800 | [diff] [blame] | 739 | if (vc->vc_uni_pagedir_loc) |
| 740 | con_free_unimap(vc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | vc->vc_uni_pagedir_loc = &vc->vc_uni_pagedir; |
Takashi Iwai | e4bdab7 | 2014-05-13 12:09:28 +0200 | [diff] [blame] | 742 | vc->vc_uni_pagedir = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | vc->vc_hi_font_mask = 0; |
| 744 | vc->vc_complement_mask = 0; |
| 745 | vc->vc_can_do_color = 0; |
Jesse Barnes | 8fd4bd2 | 2010-06-23 12:56:12 -0700 | [diff] [blame] | 746 | vc->vc_panic_force_write = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; |
| 753 | } |
| 754 | |
| 755 | int vc_allocate(unsigned int currcons) /* return 0 on success */ |
| 756 | { |
Jiri Slaby | 34902b7 | 2016-03-31 10:08:15 +0200 | [diff] [blame] | 757 | struct vt_notifier_param param; |
| 758 | struct vc_data *vc; |
| 759 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | WARN_CONSOLE_UNLOCKED(); |
| 761 | |
| 762 | if (currcons >= MAX_NR_CONSOLES) |
| 763 | return -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | |
Jiri Slaby | 34902b7 | 2016-03-31 10:08:15 +0200 | [diff] [blame] | 765 | if (vc_cons[currcons].d) |
| 766 | return 0; |
| 767 | |
| 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); |
| 775 | if (!vc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | return -ENOMEM; |
Jiri Slaby | 34902b7 | 2016-03-31 10:08:15 +0200 | [diff] [blame] | 777 | |
| 778 | vc_cons[currcons].d = vc; |
| 779 | tty_port_init(&vc->port); |
| 780 | INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK); |
| 781 | |
| 782 | visual_init(vc, currcons, 1); |
| 783 | |
| 784 | if (!*vc->vc_uni_pagedir_loc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | con_set_default_unimap(vc); |
Matthew Garrett | f6c06b6 | 2009-11-13 15:14:11 -0500 | [diff] [blame] | 786 | |
Jiri Slaby | 34902b7 | 2016-03-31 10:08:15 +0200 | [diff] [blame] | 787 | vc->vc_screenbuf = kmalloc(vc->vc_screenbuf_size, GFP_KERNEL); |
| 788 | if (!vc->vc_screenbuf) |
| 789 | goto err_free; |
Matthew Garrett | f6c06b6 | 2009-11-13 15:14:11 -0500 | [diff] [blame] | 790 | |
Jiri Slaby | 34902b7 | 2016-03-31 10:08:15 +0200 | [diff] [blame] | 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; |
| 795 | |
| 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); |
| 799 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | return 0; |
Jiri Slaby | 34902b7 | 2016-03-31 10:08:15 +0200 | [diff] [blame] | 801 | err_free: |
| 802 | kfree(vc); |
| 803 | vc_cons[currcons].d = NULL; |
| 804 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | } |
| 806 | |
Antonino A. Daplas | e400b6e | 2007-10-16 01:29:35 -0700 | [diff] [blame] | 807 | static inline int resize_screen(struct vc_data *vc, int width, int height, |
| 808 | int user) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | { |
| 810 | /* Resizes the resolution of the display adapater */ |
| 811 | int err = 0; |
| 812 | |
| 813 | if (vc->vc_mode != KD_GRAPHICS && vc->vc_sw->con_resize) |
Antonino A. Daplas | e400b6e | 2007-10-16 01:29:35 -0700 | [diff] [blame] | 814 | err = vc->vc_sw->con_resize(vc, width, height, user); |
| 815 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | return err; |
| 817 | } |
| 818 | |
| 819 | /* |
| 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] |
| 823 | */ |
| 824 | #define VC_RESIZE_MAXCOL (32767) |
| 825 | #define VC_RESIZE_MAXROW (32767) |
Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 826 | |
| 827 | /** |
| 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 |
| 832 | * @cols: columns |
| 833 | * @lines: lines |
| 834 | * |
| 835 | * Resize a virtual console, clipping according to the actual constraints. |
| 836 | * If the caller passes a tty structure then update the termios winsize |
Daniel Mack | 3ad2f3fb | 2010-02-03 08:01:28 +0800 | [diff] [blame] | 837 | * information and perform any necessary signal handling. |
Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 838 | * |
Peter Hurley | 6a1c068 | 2013-06-15 09:14:23 -0400 | [diff] [blame] | 839 | * Caller must hold the console semaphore. Takes the termios rwsem and |
Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 840 | * ctrl_lock of the tty IFF a tty is passed. |
| 841 | */ |
| 842 | |
Alan Cox | fc6f623 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 843 | static int vc_do_resize(struct tty_struct *tty, struct vc_data *vc, |
| 844 | unsigned int cols, unsigned int lines) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | { |
| 846 | unsigned long old_origin, new_origin, new_scr_end, rlth, rrem, err = 0; |
qiaochong | 9e0ba74 | 2010-08-09 17:21:27 -0700 | [diff] [blame] | 847 | unsigned long end; |
Jiri Slaby | f2ee4ae | 2011-03-23 09:49:57 +0100 | [diff] [blame] | 848 | unsigned int old_rows, old_row_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | unsigned int new_cols, new_rows, new_row_size, new_screen_size; |
qiaochong | 9e0ba74 | 2010-08-09 17:21:27 -0700 | [diff] [blame] | 850 | unsigned int user; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | unsigned short *newscreen; |
| 852 | |
| 853 | WARN_CONSOLE_UNLOCKED(); |
| 854 | |
| 855 | if (!vc) |
| 856 | return -ENXIO; |
| 857 | |
Antonino A. Daplas | e400b6e | 2007-10-16 01:29:35 -0700 | [diff] [blame] | 858 | user = vc->vc_resize_user; |
| 859 | vc->vc_resize_user = 0; |
| 860 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | if (cols > VC_RESIZE_MAXCOL || lines > VC_RESIZE_MAXROW) |
| 862 | return -EINVAL; |
| 863 | |
| 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; |
| 868 | |
| 869 | if (new_cols == vc->vc_cols && new_rows == vc->vc_rows) |
| 870 | return 0; |
| 871 | |
Robert P. J. Day | 5cbded5 | 2006-12-13 00:35:56 -0800 | [diff] [blame] | 872 | newscreen = kmalloc(new_screen_size, GFP_USER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | if (!newscreen) |
| 874 | return -ENOMEM; |
| 875 | |
| 876 | old_rows = vc->vc_rows; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | old_row_size = vc->vc_size_row; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | |
Antonino A. Daplas | e400b6e | 2007-10-16 01:29:35 -0700 | [diff] [blame] | 879 | err = resize_screen(vc, new_cols, new_rows, user); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | if (err) { |
| 881 | kfree(newscreen); |
| 882 | return err; |
| 883 | } |
| 884 | |
| 885 | vc->vc_rows = new_rows; |
| 886 | vc->vc_cols = new_cols; |
| 887 | vc->vc_size_row = new_row_size; |
| 888 | vc->vc_screenbuf_size = new_screen_size; |
| 889 | |
| 890 | rlth = min(old_row_size, new_row_size); |
| 891 | rrem = new_row_size - rlth; |
| 892 | old_origin = vc->vc_origin; |
| 893 | new_origin = (long) newscreen; |
| 894 | new_scr_end = new_origin + new_screen_size; |
Antonino A. Daplas | 3b41dc1 | 2005-09-09 13:04:39 -0700 | [diff] [blame] | 895 | |
| 896 | if (vc->vc_y > new_rows) { |
| 897 | if (old_rows - vc->vc_y < new_rows) { |
| 898 | /* |
| 899 | * Cursor near the bottom, copy contents from the |
| 900 | * bottom of buffer |
| 901 | */ |
| 902 | old_origin += (old_rows - new_rows) * old_row_size; |
Antonino A. Daplas | 3b41dc1 | 2005-09-09 13:04:39 -0700 | [diff] [blame] | 903 | } else { |
| 904 | /* |
| 905 | * Cursor is in no man's land, copy 1/2 screenful |
| 906 | * from the top and bottom of cursor position |
| 907 | */ |
| 908 | old_origin += (vc->vc_y - new_rows/2) * old_row_size; |
Antonino A. Daplas | 3b41dc1 | 2005-09-09 13:04:39 -0700 | [diff] [blame] | 909 | } |
Francisco Jerez | 9fc2b2d | 2010-08-22 17:37:24 +0200 | [diff] [blame] | 910 | } |
| 911 | |
| 912 | end = old_origin + old_row_size * min(old_rows, new_rows); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | |
| 914 | update_attr(vc); |
| 915 | |
Antonino A. Daplas | 3b41dc1 | 2005-09-09 13:04:39 -0700 | [diff] [blame] | 916 | while (old_origin < end) { |
| 917 | scr_memcpyw((unsigned short *) new_origin, |
| 918 | (unsigned short *) old_origin, rlth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | if (rrem) |
Antonino A. Daplas | 3b41dc1 | 2005-09-09 13:04:39 -0700 | [diff] [blame] | 920 | scr_memsetw((void *)(new_origin + rlth), |
| 921 | vc->vc_video_erase_char, rrem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | old_origin += old_row_size; |
| 923 | new_origin += new_row_size; |
| 924 | } |
| 925 | if (new_scr_end > new_origin) |
Antonino A. Daplas | 3b41dc1 | 2005-09-09 13:04:39 -0700 | [diff] [blame] | 926 | scr_memsetw((void *)new_origin, vc->vc_video_erase_char, |
| 927 | new_scr_end - new_origin); |
Johannes Weiner | 5c9228f | 2009-07-16 16:06:09 +0100 | [diff] [blame] | 928 | kfree(vc->vc_screenbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | vc->vc_screenbuf = newscreen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | vc->vc_screenbuf_size = new_screen_size; |
| 931 | set_origin(vc); |
| 932 | |
| 933 | /* do part of a reset_terminal() */ |
| 934 | vc->vc_top = 0; |
| 935 | vc->vc_bottom = vc->vc_rows; |
| 936 | gotoxy(vc, vc->vc_x, vc->vc_y); |
| 937 | save_cur(vc); |
| 938 | |
Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 939 | if (tty) { |
| 940 | /* Rewrite the requested winsize data with the actual |
| 941 | resulting sizes */ |
| 942 | struct winsize ws; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | memset(&ws, 0, sizeof(ws)); |
| 944 | ws.ws_row = vc->vc_rows; |
| 945 | ws.ws_col = vc->vc_cols; |
| 946 | ws.ws_ypixel = vc->vc_scan_lines; |
Alan Cox | fc6f623 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 947 | tty_do_resize(tty, &ws); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | } |
| 949 | |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 950 | if (con_is_visible(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | update_screen(vc); |
Alan Cox | 8b92e87 | 2009-09-19 13:13:24 -0700 | [diff] [blame] | 952 | vt_event_post(VT_EVENT_RESIZE, vc->vc_num, vc->vc_num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | return err; |
| 954 | } |
| 955 | |
Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 956 | /** |
| 957 | * vc_resize - resize a VT |
| 958 | * @vc: virtual console |
| 959 | * @cols: columns |
| 960 | * @rows: rows |
| 961 | * |
| 962 | * Resize a virtual console as seen from the console end of things. We |
| 963 | * use the common vc_do_resize methods to update the structures. The |
| 964 | * caller must hold the console sem to protect console internals and |
Alan Cox | 8ce7326 | 2010-06-01 22:52:56 +0200 | [diff] [blame] | 965 | * vc->port.tty |
Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 966 | */ |
| 967 | |
| 968 | int vc_resize(struct vc_data *vc, unsigned int cols, unsigned int rows) |
Alan Cox | ca9bda0 | 2006-09-29 02:00:03 -0700 | [diff] [blame] | 969 | { |
Alan Cox | 8ce7326 | 2010-06-01 22:52:56 +0200 | [diff] [blame] | 970 | return vc_do_resize(vc->port.tty, vc, cols, rows); |
Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 971 | } |
| 972 | |
| 973 | /** |
| 974 | * vt_resize - resize a VT |
| 975 | * @tty: tty to resize |
Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 976 | * @ws: winsize attributes |
| 977 | * |
| 978 | * Resize a virtual terminal. This is called by the tty layer as we |
| 979 | * register our own handler for resizing. The mutual helper does all |
| 980 | * the actual work. |
| 981 | * |
| 982 | * Takes the console sem and the called methods then take the tty |
Peter Hurley | 6a1c068 | 2013-06-15 09:14:23 -0400 | [diff] [blame] | 983 | * termios_rwsem and the tty ctrl_lock in that order. |
Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 984 | */ |
Roel Kluin | da2bdf9 | 2009-01-07 18:09:15 -0800 | [diff] [blame] | 985 | static int vt_resize(struct tty_struct *tty, struct winsize *ws) |
Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 986 | { |
| 987 | struct vc_data *vc = tty->driver_data; |
| 988 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 990 | console_lock(); |
Alan Cox | fc6f623 | 2009-01-02 13:43:17 +0000 | [diff] [blame] | 991 | ret = vc_do_resize(tty, vc, ws->ws_col, ws->ws_row); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 992 | console_unlock(); |
Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 993 | return ret; |
Alan Cox | ca9bda0 | 2006-09-29 02:00:03 -0700 | [diff] [blame] | 994 | } |
| 995 | |
Peter Hurley | 421b40a | 2013-05-17 12:41:03 -0400 | [diff] [blame] | 996 | struct vc_data *vc_deallocate(unsigned int currcons) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | { |
Peter Hurley | 421b40a | 2013-05-17 12:41:03 -0400 | [diff] [blame] | 998 | struct vc_data *vc = NULL; |
| 999 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | WARN_CONSOLE_UNLOCKED(); |
| 1001 | |
| 1002 | if (vc_cons_allocated(currcons)) { |
Peter Hurley | 421b40a | 2013-05-17 12:41:03 -0400 | [diff] [blame] | 1003 | struct vt_notifier_param param; |
Kay Sievers | 4995f8e | 2009-03-09 14:18:52 +0100 | [diff] [blame] | 1004 | |
Peter Hurley | 421b40a | 2013-05-17 12:41:03 -0400 | [diff] [blame] | 1005 | param.vc = vc = vc_cons[currcons].d; |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 1006 | atomic_notifier_call_chain(&vt_notifier_list, VT_DEALLOCATE, ¶m); |
Kay Sievers | 4995f8e | 2009-03-09 14:18:52 +0100 | [diff] [blame] | 1007 | vcs_remove_sysfs(currcons); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | vc->vc_sw->con_deinit(vc); |
Eric W. Biederman | bde0d2c | 2006-10-02 02:17:14 -0700 | [diff] [blame] | 1009 | put_pid(vc->vt_pid); |
Antonino A. Daplas | d459ec0 | 2006-07-03 00:24:20 -0700 | [diff] [blame] | 1010 | module_put(vc->vc_sw->owner); |
Johannes Weiner | 5c9228f | 2009-07-16 16:06:09 +0100 | [diff] [blame] | 1011 | kfree(vc->vc_screenbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | vc_cons[currcons].d = NULL; |
| 1013 | } |
Peter Hurley | 421b40a | 2013-05-17 12:41:03 -0400 | [diff] [blame] | 1014 | return vc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | } |
| 1016 | |
| 1017 | /* |
| 1018 | * VT102 emulator |
| 1019 | */ |
| 1020 | |
Alan Cox | 079c953 | 2012-02-28 14:49:23 +0000 | [diff] [blame] | 1021 | #define set_kbd(vc, x) vt_set_kbd_mode_bit((vc)->vc_num, (x)) |
| 1022 | #define clr_kbd(vc, x) vt_clr_kbd_mode_bit((vc)->vc_num, (x)) |
| 1023 | #define is_kbd(vc, x) vt_get_kbd_mode_bit((vc)->vc_num, (x)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | |
| 1025 | #define decarm VC_REPEAT |
| 1026 | #define decckm VC_CKMODE |
| 1027 | #define kbdapplic VC_APPLIC |
| 1028 | #define lnm VC_CRLF |
| 1029 | |
| 1030 | /* |
| 1031 | * this is what the terminal answers to a ESC-Z or csi0c query. |
| 1032 | */ |
| 1033 | #define VT100ID "\033[?1;2c" |
| 1034 | #define VT102ID "\033[?6c" |
| 1035 | |
Jiri Slaby | 8ede5cc | 2016-03-31 10:08:16 +0200 | [diff] [blame] | 1036 | const unsigned char color_table[] = { 0, 4, 2, 6, 1, 5, 3, 7, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | 8,12,10,14, 9,13,11,15 }; |
| 1038 | |
| 1039 | /* the default colour table, for VGA+ colour systems */ |
Jiri Slaby | 91e74ca | 2016-03-31 10:08:17 +0200 | [diff] [blame] | 1040 | unsigned char default_red[] = { |
| 1041 | 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, 0x00, 0xaa, |
| 1042 | 0x55, 0xff, 0x55, 0xff, 0x55, 0xff, 0x55, 0xff |
| 1043 | }; |
| 1044 | module_param_array(default_red, byte, NULL, S_IRUGO | S_IWUSR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | |
Jiri Slaby | 91e74ca | 2016-03-31 10:08:17 +0200 | [diff] [blame] | 1046 | unsigned char default_grn[] = { |
| 1047 | 0x00, 0x00, 0xaa, 0x55, 0x00, 0x00, 0xaa, 0xaa, |
| 1048 | 0x55, 0x55, 0xff, 0xff, 0x55, 0x55, 0xff, 0xff |
| 1049 | }; |
| 1050 | module_param_array(default_grn, byte, NULL, S_IRUGO | S_IWUSR); |
| 1051 | |
| 1052 | unsigned char default_blu[] = { |
| 1053 | 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, 0xaa, 0xaa, |
| 1054 | 0x55, 0x55, 0x55, 0x55, 0xff, 0xff, 0xff, 0xff |
| 1055 | }; |
| 1056 | module_param_array(default_blu, byte, NULL, S_IRUGO | S_IWUSR); |
Jan Engelhardt | 1c2bbe6 | 2007-05-08 00:38:03 -0700 | [diff] [blame] | 1057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | /* |
| 1059 | * gotoxy() must verify all boundaries, because the arguments |
| 1060 | * might also be negative. If the given position is out of |
| 1061 | * bounds, the cursor is placed at the nearest margin. |
| 1062 | */ |
| 1063 | static void gotoxy(struct vc_data *vc, int new_x, int new_y) |
| 1064 | { |
| 1065 | int min_y, max_y; |
| 1066 | |
| 1067 | if (new_x < 0) |
| 1068 | vc->vc_x = 0; |
| 1069 | else { |
| 1070 | if (new_x >= vc->vc_cols) |
| 1071 | vc->vc_x = vc->vc_cols - 1; |
| 1072 | else |
| 1073 | vc->vc_x = new_x; |
| 1074 | } |
| 1075 | |
| 1076 | if (vc->vc_decom) { |
| 1077 | min_y = vc->vc_top; |
| 1078 | max_y = vc->vc_bottom; |
| 1079 | } else { |
| 1080 | min_y = 0; |
| 1081 | max_y = vc->vc_rows; |
| 1082 | } |
| 1083 | if (new_y < min_y) |
| 1084 | vc->vc_y = min_y; |
| 1085 | else if (new_y >= max_y) |
| 1086 | vc->vc_y = max_y - 1; |
| 1087 | else |
| 1088 | vc->vc_y = new_y; |
| 1089 | vc->vc_pos = vc->vc_origin + vc->vc_y * vc->vc_size_row + (vc->vc_x<<1); |
| 1090 | vc->vc_need_wrap = 0; |
| 1091 | } |
| 1092 | |
| 1093 | /* for absolute user moves, when decom is set */ |
| 1094 | static void gotoxay(struct vc_data *vc, int new_x, int new_y) |
| 1095 | { |
| 1096 | gotoxy(vc, new_x, vc->vc_decom ? (vc->vc_top + new_y) : new_y); |
| 1097 | } |
| 1098 | |
Jiri Slaby | 1b0ec88 | 2016-06-23 13:34:23 +0200 | [diff] [blame] | 1099 | void scrollback(struct vc_data *vc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | { |
Jiri Slaby | 1b0ec88 | 2016-06-23 13:34:23 +0200 | [diff] [blame] | 1101 | scrolldelta(-(vc->vc_rows / 2)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1102 | } |
| 1103 | |
| 1104 | void scrollfront(struct vc_data *vc, int lines) |
| 1105 | { |
| 1106 | if (!lines) |
| 1107 | lines = vc->vc_rows / 2; |
| 1108 | scrolldelta(lines); |
| 1109 | } |
| 1110 | |
| 1111 | static void lf(struct vc_data *vc) |
| 1112 | { |
| 1113 | /* don't scroll if above bottom of scrolling region, or |
| 1114 | * if below scrolling region |
| 1115 | */ |
| 1116 | if (vc->vc_y + 1 == vc->vc_bottom) |
| 1117 | scrup(vc, vc->vc_top, vc->vc_bottom, 1); |
| 1118 | else if (vc->vc_y < vc->vc_rows - 1) { |
| 1119 | vc->vc_y++; |
| 1120 | vc->vc_pos += vc->vc_size_row; |
| 1121 | } |
| 1122 | vc->vc_need_wrap = 0; |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 1123 | notify_write(vc, '\n'); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | } |
| 1125 | |
| 1126 | static void ri(struct vc_data *vc) |
| 1127 | { |
| 1128 | /* don't scroll if below top of scrolling region, or |
| 1129 | * if above scrolling region |
| 1130 | */ |
| 1131 | if (vc->vc_y == vc->vc_top) |
| 1132 | scrdown(vc, vc->vc_top, vc->vc_bottom, 1); |
| 1133 | else if (vc->vc_y > 0) { |
| 1134 | vc->vc_y--; |
| 1135 | vc->vc_pos -= vc->vc_size_row; |
| 1136 | } |
| 1137 | vc->vc_need_wrap = 0; |
| 1138 | } |
| 1139 | |
| 1140 | static inline void cr(struct vc_data *vc) |
| 1141 | { |
| 1142 | vc->vc_pos -= vc->vc_x << 1; |
| 1143 | vc->vc_need_wrap = vc->vc_x = 0; |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 1144 | notify_write(vc, '\r'); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | } |
| 1146 | |
| 1147 | static inline void bs(struct vc_data *vc) |
| 1148 | { |
| 1149 | if (vc->vc_x) { |
| 1150 | vc->vc_pos -= 2; |
| 1151 | vc->vc_x--; |
| 1152 | vc->vc_need_wrap = 0; |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 1153 | notify_write(vc, '\b'); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | } |
| 1155 | } |
| 1156 | |
| 1157 | static inline void del(struct vc_data *vc) |
| 1158 | { |
| 1159 | /* ignored */ |
| 1160 | } |
| 1161 | |
| 1162 | static void csi_J(struct vc_data *vc, int vpar) |
| 1163 | { |
| 1164 | unsigned int count; |
| 1165 | unsigned short * start; |
| 1166 | |
| 1167 | switch (vpar) { |
| 1168 | case 0: /* erase from cursor to end of display */ |
| 1169 | count = (vc->vc_scr_end - vc->vc_pos) >> 1; |
| 1170 | start = (unsigned short *)vc->vc_pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | break; |
| 1172 | case 1: /* erase from start to cursor */ |
| 1173 | count = ((vc->vc_pos - vc->vc_origin) >> 1) + 1; |
| 1174 | start = (unsigned short *)vc->vc_origin; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | break; |
Petr PÃsaÅ™ | f8df13e | 2011-04-15 10:08:08 +0200 | [diff] [blame] | 1176 | case 3: /* erase scroll-back buffer (and whole display) */ |
| 1177 | scr_memsetw(vc->vc_screenbuf, vc->vc_video_erase_char, |
| 1178 | vc->vc_screenbuf_size >> 1); |
| 1179 | set_origin(vc); |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 1180 | if (con_is_visible(vc)) |
Petr PÃsaÅ™ | 0930b09 | 2014-02-06 21:01:23 +0100 | [diff] [blame] | 1181 | update_screen(vc); |
Petr PÃsaÅ™ | f8df13e | 2011-04-15 10:08:08 +0200 | [diff] [blame] | 1182 | /* fall through */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | case 2: /* erase whole display */ |
| 1184 | count = vc->vc_cols * vc->vc_rows; |
| 1185 | start = (unsigned short *)vc->vc_origin; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | break; |
| 1187 | default: |
| 1188 | return; |
| 1189 | } |
| 1190 | scr_memsetw(start, vc->vc_video_erase_char, 2 * count); |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 1191 | if (con_should_update(vc)) |
Jean-François Moine | 81732c3 | 2012-09-06 19:24:13 +0200 | [diff] [blame] | 1192 | do_update_region(vc, (unsigned long) start, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | vc->vc_need_wrap = 0; |
| 1194 | } |
| 1195 | |
| 1196 | static void csi_K(struct vc_data *vc, int vpar) |
| 1197 | { |
| 1198 | unsigned int count; |
| 1199 | unsigned short * start; |
| 1200 | |
| 1201 | switch (vpar) { |
| 1202 | case 0: /* erase from cursor to end of line */ |
| 1203 | count = vc->vc_cols - vc->vc_x; |
| 1204 | start = (unsigned short *)vc->vc_pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | break; |
| 1206 | case 1: /* erase from start of line to cursor */ |
| 1207 | start = (unsigned short *)(vc->vc_pos - (vc->vc_x << 1)); |
| 1208 | count = vc->vc_x + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | break; |
| 1210 | case 2: /* erase whole line */ |
| 1211 | start = (unsigned short *)(vc->vc_pos - (vc->vc_x << 1)); |
| 1212 | count = vc->vc_cols; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | break; |
| 1214 | default: |
| 1215 | return; |
| 1216 | } |
| 1217 | scr_memsetw(start, vc->vc_video_erase_char, 2 * count); |
| 1218 | vc->vc_need_wrap = 0; |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 1219 | if (con_should_update(vc)) |
Jean-François Moine | 81732c3 | 2012-09-06 19:24:13 +0200 | [diff] [blame] | 1220 | do_update_region(vc, (unsigned long) start, count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | } |
| 1222 | |
| 1223 | static void csi_X(struct vc_data *vc, int vpar) /* erase the following vpar positions */ |
| 1224 | { /* not vt100? */ |
| 1225 | int count; |
| 1226 | |
| 1227 | if (!vpar) |
| 1228 | vpar++; |
| 1229 | count = (vpar > vc->vc_cols - vc->vc_x) ? (vc->vc_cols - vc->vc_x) : vpar; |
| 1230 | |
| 1231 | scr_memsetw((unsigned short *)vc->vc_pos, vc->vc_video_erase_char, 2 * count); |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 1232 | if (con_should_update(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | vc->vc_sw->con_clear(vc, vc->vc_y, vc->vc_x, 1, count); |
| 1234 | vc->vc_need_wrap = 0; |
| 1235 | } |
| 1236 | |
| 1237 | static void default_attr(struct vc_data *vc) |
| 1238 | { |
| 1239 | vc->vc_intensity = 1; |
Jan Engelhardt | fa6ce9a | 2007-05-08 00:38:04 -0700 | [diff] [blame] | 1240 | vc->vc_italic = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | vc->vc_underline = 0; |
| 1242 | vc->vc_reverse = 0; |
| 1243 | vc->vc_blink = 0; |
| 1244 | vc->vc_color = vc->vc_def_color; |
| 1245 | } |
| 1246 | |
Adam Borowski | cec5b2a9 | 2014-05-23 01:33:08 +0200 | [diff] [blame] | 1247 | struct rgb { u8 r; u8 g; u8 b; }; |
| 1248 | |
Jiri Slaby | 0f91e14 | 2016-06-23 13:34:32 +0200 | [diff] [blame] | 1249 | static void rgb_from_256(int i, struct rgb *c) |
Adam Borowski | cec5b2a9 | 2014-05-23 01:33:08 +0200 | [diff] [blame] | 1250 | { |
Adam Borowski | cec5b2a9 | 2014-05-23 01:33:08 +0200 | [diff] [blame] | 1251 | if (i < 8) { /* Standard colours. */ |
Jiri Slaby | 0f91e14 | 2016-06-23 13:34:32 +0200 | [diff] [blame] | 1252 | c->r = i&1 ? 0xaa : 0x00; |
| 1253 | c->g = i&2 ? 0xaa : 0x00; |
| 1254 | c->b = i&4 ? 0xaa : 0x00; |
Adam Borowski | cec5b2a9 | 2014-05-23 01:33:08 +0200 | [diff] [blame] | 1255 | } else if (i < 16) { |
Jiri Slaby | 0f91e14 | 2016-06-23 13:34:32 +0200 | [diff] [blame] | 1256 | c->r = i&1 ? 0xff : 0x55; |
| 1257 | c->g = i&2 ? 0xff : 0x55; |
| 1258 | c->b = i&4 ? 0xff : 0x55; |
Adam Borowski | cec5b2a9 | 2014-05-23 01:33:08 +0200 | [diff] [blame] | 1259 | } else if (i < 232) { /* 6x6x6 colour cube. */ |
Jiri Slaby | 0f91e14 | 2016-06-23 13:34:32 +0200 | [diff] [blame] | 1260 | c->r = (i - 16) / 36 * 85 / 2; |
| 1261 | c->g = (i - 16) / 6 % 6 * 85 / 2; |
| 1262 | c->b = (i - 16) % 6 * 85 / 2; |
Adam Borowski | cec5b2a9 | 2014-05-23 01:33:08 +0200 | [diff] [blame] | 1263 | } else /* Grayscale ramp. */ |
Jiri Slaby | 0f91e14 | 2016-06-23 13:34:32 +0200 | [diff] [blame] | 1264 | c->r = c->g = c->b = i * 10 - 2312; |
Adam Borowski | cec5b2a9 | 2014-05-23 01:33:08 +0200 | [diff] [blame] | 1265 | } |
| 1266 | |
Jiri Slaby | 0f91e14 | 2016-06-23 13:34:32 +0200 | [diff] [blame] | 1267 | static void rgb_foreground(struct vc_data *vc, const struct rgb *c) |
Adam Borowski | cec5b2a9 | 2014-05-23 01:33:08 +0200 | [diff] [blame] | 1268 | { |
Jiri Slaby | 193df02 | 2016-06-23 13:34:33 +0200 | [diff] [blame] | 1269 | u8 hue = 0, max = max3(c->r, c->g, c->b); |
| 1270 | |
| 1271 | if (c->r > max / 2) |
| 1272 | hue |= 4; |
| 1273 | if (c->g > max / 2) |
| 1274 | hue |= 2; |
| 1275 | if (c->b > max / 2) |
| 1276 | hue |= 1; |
| 1277 | |
| 1278 | if (hue == 7 && max <= 0x55) { |
| 1279 | hue = 0; |
| 1280 | vc->vc_intensity = 2; |
| 1281 | } else if (max > 0xaa) |
| 1282 | vc->vc_intensity = 2; |
Adam Borowski | cec5b2a9 | 2014-05-23 01:33:08 +0200 | [diff] [blame] | 1283 | else |
Jiri Slaby | 193df02 | 2016-06-23 13:34:33 +0200 | [diff] [blame] | 1284 | vc->vc_intensity = 1; |
| 1285 | |
Adam Borowski | cec5b2a9 | 2014-05-23 01:33:08 +0200 | [diff] [blame] | 1286 | vc->vc_color = (vc->vc_color & 0xf0) | hue; |
| 1287 | } |
| 1288 | |
Jiri Slaby | 0f91e14 | 2016-06-23 13:34:32 +0200 | [diff] [blame] | 1289 | static void rgb_background(struct vc_data *vc, const struct rgb *c) |
Adam Borowski | cec5b2a9 | 2014-05-23 01:33:08 +0200 | [diff] [blame] | 1290 | { |
| 1291 | /* For backgrounds, err on the dark side. */ |
| 1292 | vc->vc_color = (vc->vc_color & 0x0f) |
Jiri Slaby | 0f91e14 | 2016-06-23 13:34:32 +0200 | [diff] [blame] | 1293 | | (c->r&0x80) >> 1 | (c->g&0x80) >> 2 | (c->b&0x80) >> 3; |
Adam Borowski | cec5b2a9 | 2014-05-23 01:33:08 +0200 | [diff] [blame] | 1294 | } |
| 1295 | |
Jiri Slaby | e05ab23 | 2016-06-23 13:34:31 +0200 | [diff] [blame] | 1296 | /* |
| 1297 | * ITU T.416 Higher colour modes. They break the usual properties of SGR codes |
| 1298 | * and thus need to be detected and ignored by hand. Strictly speaking, that |
| 1299 | * standard also wants : rather than ; as separators, contrary to ECMA-48, but |
| 1300 | * no one produces such codes and almost no one accepts them. |
| 1301 | * |
| 1302 | * Subcommands 3 (CMY) and 4 (CMYK) are so insane there's no point in |
| 1303 | * supporting them. |
| 1304 | */ |
| 1305 | static int vc_t416_color(struct vc_data *vc, int i, |
Jiri Slaby | 0f91e14 | 2016-06-23 13:34:32 +0200 | [diff] [blame] | 1306 | void(*set_color)(struct vc_data *vc, const struct rgb *c)) |
Jiri Slaby | e05ab23 | 2016-06-23 13:34:31 +0200 | [diff] [blame] | 1307 | { |
Jiri Slaby | 0f91e14 | 2016-06-23 13:34:32 +0200 | [diff] [blame] | 1308 | struct rgb c; |
| 1309 | |
Jiri Slaby | e05ab23 | 2016-06-23 13:34:31 +0200 | [diff] [blame] | 1310 | i++; |
| 1311 | if (i > vc->vc_npar) |
| 1312 | return i; |
| 1313 | |
| 1314 | if (vc->vc_par[i] == 5 && i < vc->vc_npar) { |
| 1315 | /* 256 colours -- ubiquitous */ |
| 1316 | i++; |
Jiri Slaby | 0f91e14 | 2016-06-23 13:34:32 +0200 | [diff] [blame] | 1317 | rgb_from_256(vc->vc_par[i], &c); |
Jiri Slaby | e05ab23 | 2016-06-23 13:34:31 +0200 | [diff] [blame] | 1318 | } else if (vc->vc_par[i] == 2 && i <= vc->vc_npar + 3) { |
| 1319 | /* 24 bit -- extremely rare */ |
Jiri Slaby | 0f91e14 | 2016-06-23 13:34:32 +0200 | [diff] [blame] | 1320 | c.r = vc->vc_par[i + 1]; |
| 1321 | c.g = vc->vc_par[i + 2]; |
| 1322 | c.b = vc->vc_par[i + 3]; |
Jiri Slaby | e05ab23 | 2016-06-23 13:34:31 +0200 | [diff] [blame] | 1323 | i += 3; |
Jiri Slaby | 0f91e14 | 2016-06-23 13:34:32 +0200 | [diff] [blame] | 1324 | } else |
| 1325 | return i; |
| 1326 | |
| 1327 | set_color(vc, &c); |
Jiri Slaby | e05ab23 | 2016-06-23 13:34:31 +0200 | [diff] [blame] | 1328 | |
| 1329 | return i; |
| 1330 | } |
| 1331 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1332 | /* console_lock is held */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | static void csi_m(struct vc_data *vc) |
| 1334 | { |
| 1335 | int i; |
| 1336 | |
| 1337 | for (i = 0; i <= vc->vc_npar; i++) |
| 1338 | switch (vc->vc_par[i]) { |
Jiri Slaby | aada0a3 | 2016-06-23 13:34:34 +0200 | [diff] [blame] | 1339 | case 0: /* all attributes off */ |
| 1340 | default_attr(vc); |
| 1341 | break; |
| 1342 | case 1: |
| 1343 | vc->vc_intensity = 2; |
| 1344 | break; |
| 1345 | case 2: |
| 1346 | vc->vc_intensity = 0; |
| 1347 | break; |
| 1348 | case 3: |
| 1349 | vc->vc_italic = 1; |
| 1350 | break; |
| 1351 | case 4: |
| 1352 | vc->vc_underline = 1; |
| 1353 | break; |
| 1354 | case 5: |
| 1355 | vc->vc_blink = 1; |
| 1356 | break; |
| 1357 | case 7: |
| 1358 | vc->vc_reverse = 1; |
| 1359 | break; |
| 1360 | case 10: /* ANSI X3.64-1979 (SCO-ish?) |
| 1361 | * Select primary font, don't display control chars if |
| 1362 | * defined, don't set bit 8 on output. |
| 1363 | */ |
| 1364 | vc->vc_translate = set_translate(vc->vc_charset == 0 |
| 1365 | ? vc->vc_G0_charset |
| 1366 | : vc->vc_G1_charset, vc); |
| 1367 | vc->vc_disp_ctrl = 0; |
| 1368 | vc->vc_toggle_meta = 0; |
| 1369 | break; |
| 1370 | case 11: /* ANSI X3.64-1979 (SCO-ish?) |
| 1371 | * Select first alternate font, lets chars < 32 be |
| 1372 | * displayed as ROM chars. |
| 1373 | */ |
| 1374 | vc->vc_translate = set_translate(IBMPC_MAP, vc); |
| 1375 | vc->vc_disp_ctrl = 1; |
| 1376 | vc->vc_toggle_meta = 0; |
| 1377 | break; |
| 1378 | case 12: /* ANSI X3.64-1979 (SCO-ish?) |
| 1379 | * Select second alternate font, toggle high bit |
| 1380 | * before displaying as ROM char. |
| 1381 | */ |
| 1382 | vc->vc_translate = set_translate(IBMPC_MAP, vc); |
| 1383 | vc->vc_disp_ctrl = 1; |
| 1384 | vc->vc_toggle_meta = 1; |
| 1385 | break; |
| 1386 | case 21: |
| 1387 | case 22: |
| 1388 | vc->vc_intensity = 1; |
| 1389 | break; |
| 1390 | case 23: |
| 1391 | vc->vc_italic = 0; |
| 1392 | break; |
| 1393 | case 24: |
| 1394 | vc->vc_underline = 0; |
| 1395 | break; |
| 1396 | case 25: |
| 1397 | vc->vc_blink = 0; |
| 1398 | break; |
| 1399 | case 27: |
| 1400 | vc->vc_reverse = 0; |
| 1401 | break; |
| 1402 | case 38: |
| 1403 | i = vc_t416_color(vc, i, rgb_foreground); |
| 1404 | break; |
| 1405 | case 48: |
| 1406 | i = vc_t416_color(vc, i, rgb_background); |
| 1407 | break; |
| 1408 | case 39: |
| 1409 | vc->vc_color = (vc->vc_def_color & 0x0f) | |
| 1410 | (vc->vc_color & 0xf0); |
| 1411 | break; |
| 1412 | case 49: |
| 1413 | vc->vc_color = (vc->vc_def_color & 0xf0) | |
| 1414 | (vc->vc_color & 0x0f); |
| 1415 | break; |
| 1416 | default: |
| 1417 | if (vc->vc_par[i] >= 30 && vc->vc_par[i] <= 37) |
| 1418 | vc->vc_color = color_table[vc->vc_par[i] - 30] |
| 1419 | | (vc->vc_color & 0xf0); |
| 1420 | else if (vc->vc_par[i] >= 40 && vc->vc_par[i] <= 47) |
| 1421 | vc->vc_color = (color_table[vc->vc_par[i] - 40] << 4) |
| 1422 | | (vc->vc_color & 0x0f); |
| 1423 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1424 | } |
| 1425 | update_attr(vc); |
| 1426 | } |
| 1427 | |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 1428 | static void respond_string(const char *p, struct tty_port *port) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | { |
| 1430 | while (*p) { |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 1431 | tty_insert_flip_char(port, *p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1432 | p++; |
| 1433 | } |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 1434 | tty_schedule_flip(port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1435 | } |
| 1436 | |
| 1437 | static void cursor_report(struct vc_data *vc, struct tty_struct *tty) |
| 1438 | { |
| 1439 | char buf[40]; |
| 1440 | |
| 1441 | sprintf(buf, "\033[%d;%dR", vc->vc_y + (vc->vc_decom ? vc->vc_top + 1 : 1), vc->vc_x + 1); |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 1442 | respond_string(buf, tty->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | } |
| 1444 | |
| 1445 | static inline void status_report(struct tty_struct *tty) |
| 1446 | { |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 1447 | respond_string("\033[0n", tty->port); /* Terminal ok */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | } |
| 1449 | |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 1450 | static inline void respond_ID(struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | { |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 1452 | respond_string(VT102ID, tty->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | } |
| 1454 | |
| 1455 | void mouse_report(struct tty_struct *tty, int butt, int mrx, int mry) |
| 1456 | { |
| 1457 | char buf[8]; |
| 1458 | |
| 1459 | sprintf(buf, "\033[M%c%c%c", (char)(' ' + butt), (char)('!' + mrx), |
| 1460 | (char)('!' + mry)); |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 1461 | respond_string(buf, tty->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | } |
| 1463 | |
| 1464 | /* invoked via ioctl(TIOCLINUX) and through set_selection */ |
| 1465 | int mouse_reporting(void) |
| 1466 | { |
| 1467 | return vc_cons[fg_console].d->vc_report_mouse; |
| 1468 | } |
| 1469 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1470 | /* console_lock is held */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | static void set_mode(struct vc_data *vc, int on_off) |
| 1472 | { |
| 1473 | int i; |
| 1474 | |
| 1475 | for (i = 0; i <= vc->vc_npar; i++) |
| 1476 | if (vc->vc_ques) { |
| 1477 | switch(vc->vc_par[i]) { /* DEC private modes set/reset */ |
| 1478 | case 1: /* Cursor keys send ^[Ox/^[[x */ |
| 1479 | if (on_off) |
| 1480 | set_kbd(vc, decckm); |
| 1481 | else |
| 1482 | clr_kbd(vc, decckm); |
| 1483 | break; |
| 1484 | case 3: /* 80/132 mode switch unimplemented */ |
| 1485 | vc->vc_deccolm = on_off; |
| 1486 | #if 0 |
| 1487 | vc_resize(deccolm ? 132 : 80, vc->vc_rows); |
| 1488 | /* this alone does not suffice; some user mode |
| 1489 | utility has to change the hardware regs */ |
| 1490 | #endif |
| 1491 | break; |
| 1492 | case 5: /* Inverted screen on/off */ |
| 1493 | if (vc->vc_decscnm != on_off) { |
| 1494 | vc->vc_decscnm = on_off; |
| 1495 | invert_screen(vc, 0, vc->vc_screenbuf_size, 0); |
| 1496 | update_attr(vc); |
| 1497 | } |
| 1498 | break; |
| 1499 | case 6: /* Origin relative/absolute */ |
| 1500 | vc->vc_decom = on_off; |
| 1501 | gotoxay(vc, 0, 0); |
| 1502 | break; |
| 1503 | case 7: /* Autowrap on/off */ |
| 1504 | vc->vc_decawm = on_off; |
| 1505 | break; |
| 1506 | case 8: /* Autorepeat on/off */ |
| 1507 | if (on_off) |
| 1508 | set_kbd(vc, decarm); |
| 1509 | else |
| 1510 | clr_kbd(vc, decarm); |
| 1511 | break; |
| 1512 | case 9: |
| 1513 | vc->vc_report_mouse = on_off ? 1 : 0; |
| 1514 | break; |
| 1515 | case 25: /* Cursor on/off */ |
| 1516 | vc->vc_deccm = on_off; |
| 1517 | break; |
| 1518 | case 1000: |
| 1519 | vc->vc_report_mouse = on_off ? 2 : 0; |
| 1520 | break; |
| 1521 | } |
| 1522 | } else { |
| 1523 | switch(vc->vc_par[i]) { /* ANSI modes set/reset */ |
| 1524 | case 3: /* Monitor (display ctrls) */ |
| 1525 | vc->vc_disp_ctrl = on_off; |
| 1526 | break; |
| 1527 | case 4: /* Insert Mode on/off */ |
| 1528 | vc->vc_decim = on_off; |
| 1529 | break; |
| 1530 | case 20: /* Lf, Enter == CrLf/Lf */ |
| 1531 | if (on_off) |
| 1532 | set_kbd(vc, lnm); |
| 1533 | else |
| 1534 | clr_kbd(vc, lnm); |
| 1535 | break; |
| 1536 | } |
| 1537 | } |
| 1538 | } |
| 1539 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1540 | /* console_lock is held */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | static void setterm_command(struct vc_data *vc) |
| 1542 | { |
| 1543 | switch(vc->vc_par[0]) { |
| 1544 | case 1: /* set color for underline mode */ |
| 1545 | if (vc->vc_can_do_color && |
| 1546 | vc->vc_par[1] < 16) { |
| 1547 | vc->vc_ulcolor = color_table[vc->vc_par[1]]; |
| 1548 | if (vc->vc_underline) |
| 1549 | update_attr(vc); |
| 1550 | } |
| 1551 | break; |
| 1552 | case 2: /* set color for half intensity mode */ |
| 1553 | if (vc->vc_can_do_color && |
| 1554 | vc->vc_par[1] < 16) { |
| 1555 | vc->vc_halfcolor = color_table[vc->vc_par[1]]; |
| 1556 | if (vc->vc_intensity == 0) |
| 1557 | update_attr(vc); |
| 1558 | } |
| 1559 | break; |
| 1560 | case 8: /* store colors as defaults */ |
| 1561 | vc->vc_def_color = vc->vc_attr; |
| 1562 | if (vc->vc_hi_font_mask == 0x100) |
| 1563 | vc->vc_def_color >>= 1; |
| 1564 | default_attr(vc); |
| 1565 | update_attr(vc); |
| 1566 | break; |
| 1567 | case 9: /* set blanking interval */ |
Daniel Mack | f324edc | 2009-06-16 15:33:52 -0700 | [diff] [blame] | 1568 | blankinterval = ((vc->vc_par[1] < 60) ? vc->vc_par[1] : 60) * 60; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | poke_blanked_console(); |
| 1570 | break; |
| 1571 | case 10: /* set bell frequency in Hz */ |
| 1572 | if (vc->vc_npar >= 1) |
| 1573 | vc->vc_bell_pitch = vc->vc_par[1]; |
| 1574 | else |
| 1575 | vc->vc_bell_pitch = DEFAULT_BELL_PITCH; |
| 1576 | break; |
| 1577 | case 11: /* set bell duration in msec */ |
| 1578 | if (vc->vc_npar >= 1) |
| 1579 | vc->vc_bell_duration = (vc->vc_par[1] < 2000) ? |
Nicholas Mc Guire | 3372ec2 | 2015-02-09 10:54:10 -0500 | [diff] [blame] | 1580 | msecs_to_jiffies(vc->vc_par[1]) : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | else |
| 1582 | vc->vc_bell_duration = DEFAULT_BELL_DURATION; |
| 1583 | break; |
| 1584 | case 12: /* bring specified console to the front */ |
| 1585 | if (vc->vc_par[1] >= 1 && vc_cons_allocated(vc->vc_par[1] - 1)) |
| 1586 | set_console(vc->vc_par[1] - 1); |
| 1587 | break; |
| 1588 | case 13: /* unblank the screen */ |
| 1589 | poke_blanked_console(); |
| 1590 | break; |
| 1591 | case 14: /* set vesa powerdown interval */ |
| 1592 | vesa_off_interval = ((vc->vc_par[1] < 60) ? vc->vc_par[1] : 60) * 60 * HZ; |
| 1593 | break; |
| 1594 | case 15: /* activate the previous console */ |
| 1595 | set_console(last_console); |
| 1596 | break; |
Scot Doyle | bd63364 | 2015-03-26 13:54:39 +0000 | [diff] [blame] | 1597 | case 16: /* set cursor blink duration in msec */ |
| 1598 | if (vc->vc_npar >= 1 && vc->vc_par[1] >= 50 && |
| 1599 | vc->vc_par[1] <= USHRT_MAX) |
| 1600 | vc->vc_cur_blink_ms = vc->vc_par[1]; |
| 1601 | else |
| 1602 | vc->vc_cur_blink_ms = DEFAULT_CURSOR_BLINK_MS; |
| 1603 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | } |
| 1605 | } |
| 1606 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1607 | /* console_lock is held */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1608 | static void csi_at(struct vc_data *vc, unsigned int nr) |
| 1609 | { |
| 1610 | if (nr > vc->vc_cols - vc->vc_x) |
| 1611 | nr = vc->vc_cols - vc->vc_x; |
| 1612 | else if (!nr) |
| 1613 | nr = 1; |
| 1614 | insert_char(vc, nr); |
| 1615 | } |
| 1616 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1617 | /* console_lock is held */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | static void csi_L(struct vc_data *vc, unsigned int nr) |
| 1619 | { |
| 1620 | if (nr > vc->vc_rows - vc->vc_y) |
| 1621 | nr = vc->vc_rows - vc->vc_y; |
| 1622 | else if (!nr) |
| 1623 | nr = 1; |
| 1624 | scrdown(vc, vc->vc_y, vc->vc_bottom, nr); |
| 1625 | vc->vc_need_wrap = 0; |
| 1626 | } |
| 1627 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1628 | /* console_lock is held */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | static void csi_P(struct vc_data *vc, unsigned int nr) |
| 1630 | { |
| 1631 | if (nr > vc->vc_cols - vc->vc_x) |
| 1632 | nr = vc->vc_cols - vc->vc_x; |
| 1633 | else if (!nr) |
| 1634 | nr = 1; |
| 1635 | delete_char(vc, nr); |
| 1636 | } |
| 1637 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1638 | /* console_lock is held */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | static void csi_M(struct vc_data *vc, unsigned int nr) |
| 1640 | { |
| 1641 | if (nr > vc->vc_rows - vc->vc_y) |
| 1642 | nr = vc->vc_rows - vc->vc_y; |
| 1643 | else if (!nr) |
| 1644 | nr=1; |
| 1645 | scrup(vc, vc->vc_y, vc->vc_bottom, nr); |
| 1646 | vc->vc_need_wrap = 0; |
| 1647 | } |
| 1648 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1649 | /* console_lock is held (except via vc_init->reset_terminal */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | static void save_cur(struct vc_data *vc) |
| 1651 | { |
| 1652 | vc->vc_saved_x = vc->vc_x; |
| 1653 | vc->vc_saved_y = vc->vc_y; |
| 1654 | vc->vc_s_intensity = vc->vc_intensity; |
Jan Engelhardt | fa6ce9a | 2007-05-08 00:38:04 -0700 | [diff] [blame] | 1655 | vc->vc_s_italic = vc->vc_italic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | vc->vc_s_underline = vc->vc_underline; |
| 1657 | vc->vc_s_blink = vc->vc_blink; |
| 1658 | vc->vc_s_reverse = vc->vc_reverse; |
| 1659 | vc->vc_s_charset = vc->vc_charset; |
| 1660 | vc->vc_s_color = vc->vc_color; |
| 1661 | vc->vc_saved_G0 = vc->vc_G0_charset; |
| 1662 | vc->vc_saved_G1 = vc->vc_G1_charset; |
| 1663 | } |
| 1664 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1665 | /* console_lock is held */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | static void restore_cur(struct vc_data *vc) |
| 1667 | { |
| 1668 | gotoxy(vc, vc->vc_saved_x, vc->vc_saved_y); |
| 1669 | vc->vc_intensity = vc->vc_s_intensity; |
Jan Engelhardt | fa6ce9a | 2007-05-08 00:38:04 -0700 | [diff] [blame] | 1670 | vc->vc_italic = vc->vc_s_italic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | vc->vc_underline = vc->vc_s_underline; |
| 1672 | vc->vc_blink = vc->vc_s_blink; |
| 1673 | vc->vc_reverse = vc->vc_s_reverse; |
| 1674 | vc->vc_charset = vc->vc_s_charset; |
| 1675 | vc->vc_color = vc->vc_s_color; |
| 1676 | vc->vc_G0_charset = vc->vc_saved_G0; |
| 1677 | vc->vc_G1_charset = vc->vc_saved_G1; |
| 1678 | vc->vc_translate = set_translate(vc->vc_charset ? vc->vc_G1_charset : vc->vc_G0_charset, vc); |
| 1679 | update_attr(vc); |
| 1680 | vc->vc_need_wrap = 0; |
| 1681 | } |
| 1682 | |
Adam Borowski | b290af6 | 2014-02-19 01:40:16 +0100 | [diff] [blame] | 1683 | enum { ESnormal, ESesc, ESsquare, ESgetpars, ESfunckey, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | EShash, ESsetG0, ESsetG1, ESpercent, ESignore, ESnonstd, |
Adam Borowski | 63f3a16 | 2014-02-19 01:38:04 +0100 | [diff] [blame] | 1685 | ESpalette, ESosc }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1686 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1687 | /* console_lock is held (except via vc_init()) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1688 | static void reset_terminal(struct vc_data *vc, int do_clear) |
| 1689 | { |
| 1690 | vc->vc_top = 0; |
| 1691 | vc->vc_bottom = vc->vc_rows; |
| 1692 | vc->vc_state = ESnormal; |
| 1693 | vc->vc_ques = 0; |
| 1694 | vc->vc_translate = set_translate(LAT1_MAP, vc); |
| 1695 | vc->vc_G0_charset = LAT1_MAP; |
| 1696 | vc->vc_G1_charset = GRAF_MAP; |
| 1697 | vc->vc_charset = 0; |
| 1698 | vc->vc_need_wrap = 0; |
| 1699 | vc->vc_report_mouse = 0; |
Antonino A. Daplas | 042f10e | 2007-05-08 00:38:09 -0700 | [diff] [blame] | 1700 | vc->vc_utf = default_utf8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | vc->vc_utf_count = 0; |
| 1702 | |
| 1703 | vc->vc_disp_ctrl = 0; |
| 1704 | vc->vc_toggle_meta = 0; |
| 1705 | |
| 1706 | vc->vc_decscnm = 0; |
| 1707 | vc->vc_decom = 0; |
| 1708 | vc->vc_decawm = 1; |
Matthew Garrett | f6c06b6 | 2009-11-13 15:14:11 -0500 | [diff] [blame] | 1709 | vc->vc_deccm = global_cursor_default; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1710 | vc->vc_decim = 0; |
| 1711 | |
Alan Cox | 079c953 | 2012-02-28 14:49:23 +0000 | [diff] [blame] | 1712 | vt_reset_keyboard(vc->vc_num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | |
Clemens Ladisch | 9ea9a88 | 2009-12-15 16:45:39 -0800 | [diff] [blame] | 1714 | vc->vc_cursor_type = cur_default; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1715 | vc->vc_complement_mask = vc->vc_s_complement_mask; |
| 1716 | |
| 1717 | default_attr(vc); |
| 1718 | update_attr(vc); |
| 1719 | |
| 1720 | vc->vc_tab_stop[0] = 0x01010100; |
| 1721 | vc->vc_tab_stop[1] = |
| 1722 | vc->vc_tab_stop[2] = |
| 1723 | vc->vc_tab_stop[3] = |
Wolfgang Kroworsch | a564738 | 2008-11-06 12:53:16 -0800 | [diff] [blame] | 1724 | vc->vc_tab_stop[4] = |
| 1725 | vc->vc_tab_stop[5] = |
| 1726 | vc->vc_tab_stop[6] = |
| 1727 | vc->vc_tab_stop[7] = 0x01010101; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | |
| 1729 | vc->vc_bell_pitch = DEFAULT_BELL_PITCH; |
| 1730 | vc->vc_bell_duration = DEFAULT_BELL_DURATION; |
Scot Doyle | bd63364 | 2015-03-26 13:54:39 +0000 | [diff] [blame] | 1731 | vc->vc_cur_blink_ms = DEFAULT_CURSOR_BLINK_MS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | |
| 1733 | gotoxy(vc, 0, 0); |
| 1734 | save_cur(vc); |
| 1735 | if (do_clear) |
| 1736 | csi_J(vc, 2); |
| 1737 | } |
| 1738 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 1739 | /* console_lock is held */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | static void do_con_trol(struct tty_struct *tty, struct vc_data *vc, int c) |
| 1741 | { |
| 1742 | /* |
| 1743 | * Control characters can be used in the _middle_ |
| 1744 | * of an escape sequence. |
| 1745 | */ |
Adam Borowski | 63f3a16 | 2014-02-19 01:38:04 +0100 | [diff] [blame] | 1746 | if (vc->vc_state == ESosc && c>=8 && c<=13) /* ... except for OSC */ |
| 1747 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | switch (c) { |
| 1749 | case 0: |
| 1750 | return; |
| 1751 | case 7: |
Adam Borowski | 63f3a16 | 2014-02-19 01:38:04 +0100 | [diff] [blame] | 1752 | if (vc->vc_state == ESosc) |
| 1753 | vc->vc_state = ESnormal; |
| 1754 | else if (vc->vc_bell_duration) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | kd_mksound(vc->vc_bell_pitch, vc->vc_bell_duration); |
| 1756 | return; |
| 1757 | case 8: |
| 1758 | bs(vc); |
| 1759 | return; |
| 1760 | case 9: |
| 1761 | vc->vc_pos -= (vc->vc_x << 1); |
| 1762 | while (vc->vc_x < vc->vc_cols - 1) { |
| 1763 | vc->vc_x++; |
| 1764 | if (vc->vc_tab_stop[vc->vc_x >> 5] & (1 << (vc->vc_x & 31))) |
| 1765 | break; |
| 1766 | } |
| 1767 | vc->vc_pos += (vc->vc_x << 1); |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 1768 | notify_write(vc, '\t'); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1769 | return; |
| 1770 | case 10: case 11: case 12: |
| 1771 | lf(vc); |
| 1772 | if (!is_kbd(vc, lnm)) |
| 1773 | return; |
| 1774 | case 13: |
| 1775 | cr(vc); |
| 1776 | return; |
| 1777 | case 14: |
| 1778 | vc->vc_charset = 1; |
| 1779 | vc->vc_translate = set_translate(vc->vc_G1_charset, vc); |
| 1780 | vc->vc_disp_ctrl = 1; |
| 1781 | return; |
| 1782 | case 15: |
| 1783 | vc->vc_charset = 0; |
| 1784 | vc->vc_translate = set_translate(vc->vc_G0_charset, vc); |
| 1785 | vc->vc_disp_ctrl = 0; |
| 1786 | return; |
| 1787 | case 24: case 26: |
| 1788 | vc->vc_state = ESnormal; |
| 1789 | return; |
| 1790 | case 27: |
| 1791 | vc->vc_state = ESesc; |
| 1792 | return; |
| 1793 | case 127: |
| 1794 | del(vc); |
| 1795 | return; |
| 1796 | case 128+27: |
| 1797 | vc->vc_state = ESsquare; |
| 1798 | return; |
| 1799 | } |
| 1800 | switch(vc->vc_state) { |
| 1801 | case ESesc: |
| 1802 | vc->vc_state = ESnormal; |
| 1803 | switch (c) { |
| 1804 | case '[': |
| 1805 | vc->vc_state = ESsquare; |
| 1806 | return; |
| 1807 | case ']': |
| 1808 | vc->vc_state = ESnonstd; |
| 1809 | return; |
| 1810 | case '%': |
| 1811 | vc->vc_state = ESpercent; |
| 1812 | return; |
| 1813 | case 'E': |
| 1814 | cr(vc); |
| 1815 | lf(vc); |
| 1816 | return; |
| 1817 | case 'M': |
| 1818 | ri(vc); |
| 1819 | return; |
| 1820 | case 'D': |
| 1821 | lf(vc); |
| 1822 | return; |
| 1823 | case 'H': |
| 1824 | vc->vc_tab_stop[vc->vc_x >> 5] |= (1 << (vc->vc_x & 31)); |
| 1825 | return; |
| 1826 | case 'Z': |
| 1827 | respond_ID(tty); |
| 1828 | return; |
| 1829 | case '7': |
| 1830 | save_cur(vc); |
| 1831 | return; |
| 1832 | case '8': |
| 1833 | restore_cur(vc); |
| 1834 | return; |
| 1835 | case '(': |
| 1836 | vc->vc_state = ESsetG0; |
| 1837 | return; |
| 1838 | case ')': |
| 1839 | vc->vc_state = ESsetG1; |
| 1840 | return; |
| 1841 | case '#': |
| 1842 | vc->vc_state = EShash; |
| 1843 | return; |
| 1844 | case 'c': |
| 1845 | reset_terminal(vc, 1); |
| 1846 | return; |
| 1847 | case '>': /* Numeric keypad */ |
| 1848 | clr_kbd(vc, kbdapplic); |
| 1849 | return; |
| 1850 | case '=': /* Appl. keypad */ |
| 1851 | set_kbd(vc, kbdapplic); |
| 1852 | return; |
| 1853 | } |
| 1854 | return; |
| 1855 | case ESnonstd: |
| 1856 | if (c=='P') { /* palette escape sequence */ |
| 1857 | for (vc->vc_npar = 0; vc->vc_npar < NPAR; vc->vc_npar++) |
| 1858 | vc->vc_par[vc->vc_npar] = 0; |
| 1859 | vc->vc_npar = 0; |
| 1860 | vc->vc_state = ESpalette; |
| 1861 | return; |
| 1862 | } else if (c=='R') { /* reset palette */ |
| 1863 | reset_palette(vc); |
| 1864 | vc->vc_state = ESnormal; |
Adam Borowski | 63f3a16 | 2014-02-19 01:38:04 +0100 | [diff] [blame] | 1865 | } else if (c>='0' && c<='9') |
| 1866 | vc->vc_state = ESosc; |
| 1867 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | vc->vc_state = ESnormal; |
| 1869 | return; |
| 1870 | case ESpalette: |
Andy Shevchenko | 74c807c | 2010-06-15 17:24:16 +0300 | [diff] [blame] | 1871 | if (isxdigit(c)) { |
| 1872 | vc->vc_par[vc->vc_npar++] = hex_to_bin(c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | if (vc->vc_npar == 7) { |
| 1874 | int i = vc->vc_par[0] * 3, j = 1; |
| 1875 | vc->vc_palette[i] = 16 * vc->vc_par[j++]; |
| 1876 | vc->vc_palette[i++] += vc->vc_par[j++]; |
| 1877 | vc->vc_palette[i] = 16 * vc->vc_par[j++]; |
| 1878 | vc->vc_palette[i++] += vc->vc_par[j++]; |
| 1879 | vc->vc_palette[i] = 16 * vc->vc_par[j++]; |
| 1880 | vc->vc_palette[i] += vc->vc_par[j]; |
| 1881 | set_palette(vc); |
| 1882 | vc->vc_state = ESnormal; |
| 1883 | } |
| 1884 | } else |
| 1885 | vc->vc_state = ESnormal; |
| 1886 | return; |
| 1887 | case ESsquare: |
| 1888 | for (vc->vc_npar = 0; vc->vc_npar < NPAR; vc->vc_npar++) |
| 1889 | vc->vc_par[vc->vc_npar] = 0; |
| 1890 | vc->vc_npar = 0; |
| 1891 | vc->vc_state = ESgetpars; |
| 1892 | if (c == '[') { /* Function key */ |
| 1893 | vc->vc_state=ESfunckey; |
| 1894 | return; |
| 1895 | } |
| 1896 | vc->vc_ques = (c == '?'); |
| 1897 | if (vc->vc_ques) |
| 1898 | return; |
| 1899 | case ESgetpars: |
| 1900 | if (c == ';' && vc->vc_npar < NPAR - 1) { |
| 1901 | vc->vc_npar++; |
| 1902 | return; |
| 1903 | } else if (c>='0' && c<='9') { |
| 1904 | vc->vc_par[vc->vc_npar] *= 10; |
| 1905 | vc->vc_par[vc->vc_npar] += c - '0'; |
| 1906 | return; |
Adam Borowski | b290af6 | 2014-02-19 01:40:16 +0100 | [diff] [blame] | 1907 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | vc->vc_state = ESnormal; |
| 1909 | switch(c) { |
| 1910 | case 'h': |
| 1911 | set_mode(vc, 1); |
| 1912 | return; |
| 1913 | case 'l': |
| 1914 | set_mode(vc, 0); |
| 1915 | return; |
| 1916 | case 'c': |
| 1917 | if (vc->vc_ques) { |
| 1918 | if (vc->vc_par[0]) |
| 1919 | vc->vc_cursor_type = vc->vc_par[0] | (vc->vc_par[1] << 8) | (vc->vc_par[2] << 16); |
| 1920 | else |
Clemens Ladisch | 9ea9a88 | 2009-12-15 16:45:39 -0800 | [diff] [blame] | 1921 | vc->vc_cursor_type = cur_default; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | return; |
| 1923 | } |
| 1924 | break; |
| 1925 | case 'm': |
| 1926 | if (vc->vc_ques) { |
| 1927 | clear_selection(); |
| 1928 | if (vc->vc_par[0]) |
| 1929 | vc->vc_complement_mask = vc->vc_par[0] << 8 | vc->vc_par[1]; |
| 1930 | else |
| 1931 | vc->vc_complement_mask = vc->vc_s_complement_mask; |
| 1932 | return; |
| 1933 | } |
| 1934 | break; |
| 1935 | case 'n': |
| 1936 | if (!vc->vc_ques) { |
| 1937 | if (vc->vc_par[0] == 5) |
| 1938 | status_report(tty); |
| 1939 | else if (vc->vc_par[0] == 6) |
| 1940 | cursor_report(vc, tty); |
| 1941 | } |
| 1942 | return; |
| 1943 | } |
| 1944 | if (vc->vc_ques) { |
| 1945 | vc->vc_ques = 0; |
| 1946 | return; |
| 1947 | } |
| 1948 | switch(c) { |
| 1949 | case 'G': case '`': |
| 1950 | if (vc->vc_par[0]) |
| 1951 | vc->vc_par[0]--; |
| 1952 | gotoxy(vc, vc->vc_par[0], vc->vc_y); |
| 1953 | return; |
| 1954 | case 'A': |
| 1955 | if (!vc->vc_par[0]) |
| 1956 | vc->vc_par[0]++; |
| 1957 | gotoxy(vc, vc->vc_x, vc->vc_y - vc->vc_par[0]); |
| 1958 | return; |
| 1959 | case 'B': case 'e': |
| 1960 | if (!vc->vc_par[0]) |
| 1961 | vc->vc_par[0]++; |
| 1962 | gotoxy(vc, vc->vc_x, vc->vc_y + vc->vc_par[0]); |
| 1963 | return; |
| 1964 | case 'C': case 'a': |
| 1965 | if (!vc->vc_par[0]) |
| 1966 | vc->vc_par[0]++; |
| 1967 | gotoxy(vc, vc->vc_x + vc->vc_par[0], vc->vc_y); |
| 1968 | return; |
| 1969 | case 'D': |
| 1970 | if (!vc->vc_par[0]) |
| 1971 | vc->vc_par[0]++; |
| 1972 | gotoxy(vc, vc->vc_x - vc->vc_par[0], vc->vc_y); |
| 1973 | return; |
| 1974 | case 'E': |
| 1975 | if (!vc->vc_par[0]) |
| 1976 | vc->vc_par[0]++; |
| 1977 | gotoxy(vc, 0, vc->vc_y + vc->vc_par[0]); |
| 1978 | return; |
| 1979 | case 'F': |
| 1980 | if (!vc->vc_par[0]) |
| 1981 | vc->vc_par[0]++; |
| 1982 | gotoxy(vc, 0, vc->vc_y - vc->vc_par[0]); |
| 1983 | return; |
| 1984 | case 'd': |
| 1985 | if (vc->vc_par[0]) |
| 1986 | vc->vc_par[0]--; |
| 1987 | gotoxay(vc, vc->vc_x ,vc->vc_par[0]); |
| 1988 | return; |
| 1989 | case 'H': case 'f': |
| 1990 | if (vc->vc_par[0]) |
| 1991 | vc->vc_par[0]--; |
| 1992 | if (vc->vc_par[1]) |
| 1993 | vc->vc_par[1]--; |
| 1994 | gotoxay(vc, vc->vc_par[1], vc->vc_par[0]); |
| 1995 | return; |
| 1996 | case 'J': |
| 1997 | csi_J(vc, vc->vc_par[0]); |
| 1998 | return; |
| 1999 | case 'K': |
| 2000 | csi_K(vc, vc->vc_par[0]); |
| 2001 | return; |
| 2002 | case 'L': |
| 2003 | csi_L(vc, vc->vc_par[0]); |
| 2004 | return; |
| 2005 | case 'M': |
| 2006 | csi_M(vc, vc->vc_par[0]); |
| 2007 | return; |
| 2008 | case 'P': |
| 2009 | csi_P(vc, vc->vc_par[0]); |
| 2010 | return; |
| 2011 | case 'c': |
| 2012 | if (!vc->vc_par[0]) |
| 2013 | respond_ID(tty); |
| 2014 | return; |
| 2015 | case 'g': |
| 2016 | if (!vc->vc_par[0]) |
| 2017 | vc->vc_tab_stop[vc->vc_x >> 5] &= ~(1 << (vc->vc_x & 31)); |
| 2018 | else if (vc->vc_par[0] == 3) { |
| 2019 | vc->vc_tab_stop[0] = |
| 2020 | vc->vc_tab_stop[1] = |
| 2021 | vc->vc_tab_stop[2] = |
| 2022 | vc->vc_tab_stop[3] = |
Wolfgang Kroworsch | a564738 | 2008-11-06 12:53:16 -0800 | [diff] [blame] | 2023 | vc->vc_tab_stop[4] = |
| 2024 | vc->vc_tab_stop[5] = |
| 2025 | vc->vc_tab_stop[6] = |
| 2026 | vc->vc_tab_stop[7] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | } |
| 2028 | return; |
| 2029 | case 'm': |
| 2030 | csi_m(vc); |
| 2031 | return; |
| 2032 | case 'q': /* DECLL - but only 3 leds */ |
| 2033 | /* map 0,1,2,3 to 0,1,2,4 */ |
| 2034 | if (vc->vc_par[0] < 4) |
Alan Cox | 079c953 | 2012-02-28 14:49:23 +0000 | [diff] [blame] | 2035 | vt_set_led_state(vc->vc_num, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2036 | (vc->vc_par[0] < 3) ? vc->vc_par[0] : 4); |
| 2037 | return; |
| 2038 | case 'r': |
| 2039 | if (!vc->vc_par[0]) |
| 2040 | vc->vc_par[0]++; |
| 2041 | if (!vc->vc_par[1]) |
| 2042 | vc->vc_par[1] = vc->vc_rows; |
| 2043 | /* Minimum allowed region is 2 lines */ |
| 2044 | if (vc->vc_par[0] < vc->vc_par[1] && |
| 2045 | vc->vc_par[1] <= vc->vc_rows) { |
| 2046 | vc->vc_top = vc->vc_par[0] - 1; |
| 2047 | vc->vc_bottom = vc->vc_par[1]; |
| 2048 | gotoxay(vc, 0, 0); |
| 2049 | } |
| 2050 | return; |
| 2051 | case 's': |
| 2052 | save_cur(vc); |
| 2053 | return; |
| 2054 | case 'u': |
| 2055 | restore_cur(vc); |
| 2056 | return; |
| 2057 | case 'X': |
| 2058 | csi_X(vc, vc->vc_par[0]); |
| 2059 | return; |
| 2060 | case '@': |
| 2061 | csi_at(vc, vc->vc_par[0]); |
| 2062 | return; |
| 2063 | case ']': /* setterm functions */ |
| 2064 | setterm_command(vc); |
| 2065 | return; |
| 2066 | } |
| 2067 | return; |
| 2068 | case ESpercent: |
| 2069 | vc->vc_state = ESnormal; |
| 2070 | switch (c) { |
| 2071 | case '@': /* defined in ISO 2022 */ |
| 2072 | vc->vc_utf = 0; |
| 2073 | return; |
| 2074 | case 'G': /* prelim official escape code */ |
| 2075 | case '8': /* retained for compatibility */ |
| 2076 | vc->vc_utf = 1; |
| 2077 | return; |
| 2078 | } |
| 2079 | return; |
| 2080 | case ESfunckey: |
| 2081 | vc->vc_state = ESnormal; |
| 2082 | return; |
| 2083 | case EShash: |
| 2084 | vc->vc_state = ESnormal; |
| 2085 | if (c == '8') { |
| 2086 | /* DEC screen alignment test. kludge :-) */ |
| 2087 | vc->vc_video_erase_char = |
| 2088 | (vc->vc_video_erase_char & 0xff00) | 'E'; |
| 2089 | csi_J(vc, 2); |
| 2090 | vc->vc_video_erase_char = |
| 2091 | (vc->vc_video_erase_char & 0xff00) | ' '; |
| 2092 | do_update_region(vc, vc->vc_origin, vc->vc_screenbuf_size / 2); |
| 2093 | } |
| 2094 | return; |
| 2095 | case ESsetG0: |
| 2096 | if (c == '0') |
| 2097 | vc->vc_G0_charset = GRAF_MAP; |
| 2098 | else if (c == 'B') |
| 2099 | vc->vc_G0_charset = LAT1_MAP; |
| 2100 | else if (c == 'U') |
| 2101 | vc->vc_G0_charset = IBMPC_MAP; |
| 2102 | else if (c == 'K') |
| 2103 | vc->vc_G0_charset = USER_MAP; |
| 2104 | if (vc->vc_charset == 0) |
| 2105 | vc->vc_translate = set_translate(vc->vc_G0_charset, vc); |
| 2106 | vc->vc_state = ESnormal; |
| 2107 | return; |
| 2108 | case ESsetG1: |
| 2109 | if (c == '0') |
| 2110 | vc->vc_G1_charset = GRAF_MAP; |
| 2111 | else if (c == 'B') |
| 2112 | vc->vc_G1_charset = LAT1_MAP; |
| 2113 | else if (c == 'U') |
| 2114 | vc->vc_G1_charset = IBMPC_MAP; |
| 2115 | else if (c == 'K') |
| 2116 | vc->vc_G1_charset = USER_MAP; |
| 2117 | if (vc->vc_charset == 1) |
| 2118 | vc->vc_translate = set_translate(vc->vc_G1_charset, vc); |
| 2119 | vc->vc_state = ESnormal; |
| 2120 | return; |
Adam Borowski | 63f3a16 | 2014-02-19 01:38:04 +0100 | [diff] [blame] | 2121 | case ESosc: |
| 2122 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | default: |
| 2124 | vc->vc_state = ESnormal; |
| 2125 | } |
| 2126 | } |
| 2127 | |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2128 | /* is_double_width() is based on the wcwidth() implementation by |
Egmont Koblinger | 1ed8a2b | 2007-06-23 17:16:27 -0700 | [diff] [blame] | 2129 | * Markus Kuhn -- 2007-05-26 (Unicode 5.0) |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2130 | * Latest version: http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c |
| 2131 | */ |
| 2132 | struct interval { |
| 2133 | uint32_t first; |
| 2134 | uint32_t last; |
| 2135 | }; |
| 2136 | |
| 2137 | static int bisearch(uint32_t ucs, const struct interval *table, int max) |
| 2138 | { |
| 2139 | int min = 0; |
| 2140 | int mid; |
| 2141 | |
| 2142 | if (ucs < table[0].first || ucs > table[max].last) |
| 2143 | return 0; |
| 2144 | while (max >= min) { |
| 2145 | mid = (min + max) / 2; |
| 2146 | if (ucs > table[mid].last) |
| 2147 | min = mid + 1; |
| 2148 | else if (ucs < table[mid].first) |
| 2149 | max = mid - 1; |
| 2150 | else |
| 2151 | return 1; |
| 2152 | } |
| 2153 | return 0; |
| 2154 | } |
| 2155 | |
| 2156 | static int is_double_width(uint32_t ucs) |
| 2157 | { |
| 2158 | static const struct interval double_width[] = { |
| 2159 | { 0x1100, 0x115F }, { 0x2329, 0x232A }, { 0x2E80, 0x303E }, |
| 2160 | { 0x3040, 0xA4CF }, { 0xAC00, 0xD7A3 }, { 0xF900, 0xFAFF }, |
Egmont Koblinger | 1ed8a2b | 2007-06-23 17:16:27 -0700 | [diff] [blame] | 2161 | { 0xFE10, 0xFE19 }, { 0xFE30, 0xFE6F }, { 0xFF00, 0xFF60 }, |
| 2162 | { 0xFFE0, 0xFFE6 }, { 0x20000, 0x2FFFD }, { 0x30000, 0x3FFFD } |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2163 | }; |
Jiri Slaby | 0f11541 | 2007-07-17 04:05:21 -0700 | [diff] [blame] | 2164 | return bisearch(ucs, double_width, ARRAY_SIZE(double_width) - 1); |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2165 | } |
| 2166 | |
Jiri Slaby | d711ea8 | 2016-06-23 13:34:30 +0200 | [diff] [blame] | 2167 | static void con_flush(struct vc_data *vc, unsigned long draw_from, |
| 2168 | unsigned long draw_to, int *draw_x) |
| 2169 | { |
| 2170 | if (*draw_x < 0) |
| 2171 | return; |
| 2172 | |
| 2173 | vc->vc_sw->con_putcs(vc, (u16 *)draw_from, |
| 2174 | (u16 *)draw_to - (u16 *)draw_from, vc->vc_y, *draw_x); |
| 2175 | *draw_x = -1; |
| 2176 | } |
| 2177 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2178 | /* acquires console_lock */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2179 | static int do_con_write(struct tty_struct *tty, const unsigned char *buf, int count) |
| 2180 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | int c, tc, ok, n = 0, draw_x = -1; |
| 2182 | unsigned int currcons; |
| 2183 | unsigned long draw_from = 0, draw_to = 0; |
| 2184 | struct vc_data *vc; |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2185 | unsigned char vc_attr; |
Karl Dahlke | 0341a4d | 2008-04-28 02:14:25 -0700 | [diff] [blame] | 2186 | struct vt_notifier_param param; |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2187 | uint8_t rescan; |
| 2188 | uint8_t inverse; |
| 2189 | uint8_t width; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2190 | u16 himask, charmask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2191 | |
| 2192 | if (in_interrupt()) |
| 2193 | return count; |
| 2194 | |
| 2195 | might_sleep(); |
| 2196 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2197 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | vc = tty->driver_data; |
| 2199 | if (vc == NULL) { |
| 2200 | printk(KERN_ERR "vt: argh, driver_data is NULL !\n"); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2201 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2202 | return 0; |
| 2203 | } |
| 2204 | |
| 2205 | currcons = vc->vc_num; |
| 2206 | if (!vc_cons_allocated(currcons)) { |
Mandeep Singh Baines | 1ffdda9 | 2011-02-06 09:31:53 -0800 | [diff] [blame] | 2207 | /* could this happen? */ |
| 2208 | pr_warn_once("con_write: tty %d not allocated\n", currcons+1); |
| 2209 | console_unlock(); |
| 2210 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | himask = vc->vc_hi_font_mask; |
| 2214 | charmask = himask ? 0x1ff : 0xff; |
| 2215 | |
| 2216 | /* undraw cursor first */ |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 2217 | if (con_is_fg(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | hide_cursor(vc); |
| 2219 | |
Karl Dahlke | 0341a4d | 2008-04-28 02:14:25 -0700 | [diff] [blame] | 2220 | param.vc = vc; |
| 2221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2222 | while (!tty->stopped && count) { |
| 2223 | int orig = *buf; |
| 2224 | c = orig; |
| 2225 | buf++; |
| 2226 | n++; |
| 2227 | count--; |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2228 | rescan = 0; |
| 2229 | inverse = 0; |
| 2230 | width = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2231 | |
| 2232 | /* Do no translation at all in control states */ |
| 2233 | if (vc->vc_state != ESnormal) { |
| 2234 | tc = c; |
Adam Tlalka | d4328b4 | 2006-09-29 01:59:53 -0700 | [diff] [blame] | 2235 | } else if (vc->vc_utf && !vc->vc_disp_ctrl) { |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2236 | /* Combine UTF-8 into Unicode in vc_utf_char. |
| 2237 | * vc_utf_count is the number of continuation bytes still |
| 2238 | * expected to arrive. |
| 2239 | * vc_npar is the number of continuation bytes arrived so |
| 2240 | * far |
| 2241 | */ |
Adam Tlalka | d4328b4 | 2006-09-29 01:59:53 -0700 | [diff] [blame] | 2242 | rescan_last_byte: |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2243 | if ((c & 0xc0) == 0x80) { |
| 2244 | /* Continuation byte received */ |
| 2245 | static const uint32_t utf8_length_changes[] = { 0x0000007f, 0x000007ff, 0x0000ffff, 0x001fffff, 0x03ffffff, 0x7fffffff }; |
Adam Tlalka | d4328b4 | 2006-09-29 01:59:53 -0700 | [diff] [blame] | 2246 | if (vc->vc_utf_count) { |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2247 | vc->vc_utf_char = (vc->vc_utf_char << 6) | (c & 0x3f); |
| 2248 | vc->vc_npar++; |
| 2249 | if (--vc->vc_utf_count) { |
| 2250 | /* Still need some bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2251 | continue; |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2252 | } |
| 2253 | /* Got a whole character */ |
| 2254 | c = vc->vc_utf_char; |
| 2255 | /* Reject overlong sequences */ |
| 2256 | if (c <= utf8_length_changes[vc->vc_npar - 1] || |
| 2257 | c > utf8_length_changes[vc->vc_npar]) |
| 2258 | c = 0xfffd; |
| 2259 | } else { |
| 2260 | /* Unexpected continuation byte */ |
| 2261 | vc->vc_utf_count = 0; |
| 2262 | c = 0xfffd; |
| 2263 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | } else { |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2265 | /* Single ASCII byte or first byte of a sequence received */ |
| 2266 | if (vc->vc_utf_count) { |
| 2267 | /* Continuation byte expected */ |
| 2268 | rescan = 1; |
| 2269 | vc->vc_utf_count = 0; |
| 2270 | c = 0xfffd; |
| 2271 | } else if (c > 0x7f) { |
| 2272 | /* First byte of a multibyte sequence received */ |
| 2273 | vc->vc_npar = 0; |
| 2274 | if ((c & 0xe0) == 0xc0) { |
| 2275 | vc->vc_utf_count = 1; |
| 2276 | vc->vc_utf_char = (c & 0x1f); |
| 2277 | } else if ((c & 0xf0) == 0xe0) { |
| 2278 | vc->vc_utf_count = 2; |
| 2279 | vc->vc_utf_char = (c & 0x0f); |
| 2280 | } else if ((c & 0xf8) == 0xf0) { |
| 2281 | vc->vc_utf_count = 3; |
| 2282 | vc->vc_utf_char = (c & 0x07); |
| 2283 | } else if ((c & 0xfc) == 0xf8) { |
| 2284 | vc->vc_utf_count = 4; |
| 2285 | vc->vc_utf_char = (c & 0x03); |
| 2286 | } else if ((c & 0xfe) == 0xfc) { |
| 2287 | vc->vc_utf_count = 5; |
| 2288 | vc->vc_utf_char = (c & 0x01); |
| 2289 | } else { |
| 2290 | /* 254 and 255 are invalid */ |
| 2291 | c = 0xfffd; |
| 2292 | } |
| 2293 | if (vc->vc_utf_count) { |
| 2294 | /* Still need some bytes */ |
| 2295 | continue; |
| 2296 | } |
| 2297 | } |
| 2298 | /* Nothing to do if an ASCII byte was received */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2299 | } |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2300 | /* End of UTF-8 decoding. */ |
| 2301 | /* c is the received character, or U+FFFD for invalid sequences. */ |
| 2302 | /* Replace invalid Unicode code points with U+FFFD too */ |
| 2303 | if ((c >= 0xd800 && c <= 0xdfff) || c == 0xfffe || c == 0xffff) |
| 2304 | c = 0xfffd; |
| 2305 | tc = c; |
Adam Tlalka | d4328b4 | 2006-09-29 01:59:53 -0700 | [diff] [blame] | 2306 | } else { /* no utf or alternate charset mode */ |
David Woodhouse | a29ccf6f8 | 2008-06-03 14:59:40 +0100 | [diff] [blame] | 2307 | tc = vc_translate(vc, c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2308 | } |
| 2309 | |
Karl Dahlke | 0341a4d | 2008-04-28 02:14:25 -0700 | [diff] [blame] | 2310 | param.c = tc; |
| 2311 | if (atomic_notifier_call_chain(&vt_notifier_list, VT_PREWRITE, |
| 2312 | ¶m) == NOTIFY_STOP) |
| 2313 | continue; |
| 2314 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2315 | /* If the original code was a control character we |
| 2316 | * only allow a glyph to be displayed if the code is |
| 2317 | * not normally used (such as for cursor movement) or |
| 2318 | * if the disp_ctrl mode has been explicitly enabled. |
| 2319 | * Certain characters (as given by the CTRL_ALWAYS |
| 2320 | * bitmap) are always displayed as control characters, |
| 2321 | * as the console would be pretty useless without |
| 2322 | * them; to display an arbitrary font position use the |
| 2323 | * direct-to-font zone in UTF-8 mode. |
| 2324 | */ |
| 2325 | ok = tc && (c >= 32 || |
Adam Tlalka | d4328b4 | 2006-09-29 01:59:53 -0700 | [diff] [blame] | 2326 | !(vc->vc_disp_ctrl ? (CTRL_ALWAYS >> c) & 1 : |
| 2327 | vc->vc_utf || ((CTRL_ACTION >> c) & 1))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2328 | && (c != 127 || vc->vc_disp_ctrl) |
| 2329 | && (c != 128+27); |
| 2330 | |
| 2331 | if (vc->vc_state == ESnormal && ok) { |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2332 | if (vc->vc_utf && !vc->vc_disp_ctrl) { |
| 2333 | if (is_double_width(c)) |
| 2334 | width = 2; |
| 2335 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2336 | /* Now try to find out how to display it */ |
| 2337 | tc = conv_uni_to_pc(vc, tc); |
Adam Tlalka | d4328b4 | 2006-09-29 01:59:53 -0700 | [diff] [blame] | 2338 | if (tc & ~charmask) { |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2339 | if (tc == -1 || tc == -2) { |
| 2340 | continue; /* nothing to display */ |
| 2341 | } |
| 2342 | /* Glyph not found */ |
Samuel Thibault | c0b7988 | 2009-04-18 22:17:17 +0200 | [diff] [blame] | 2343 | if ((!(vc->vc_utf && !vc->vc_disp_ctrl) || c < 128) && !(c & ~charmask)) { |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2344 | /* In legacy mode use the glyph we get by a 1:1 mapping. |
Egmont Koblinger | 1ed8a2b | 2007-06-23 17:16:27 -0700 | [diff] [blame] | 2345 | This would make absolutely no sense with Unicode in mind, |
| 2346 | but do this for ASCII characters since a font may lack |
| 2347 | Unicode mapping info and we don't want to end up with |
| 2348 | having question marks only. */ |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2349 | tc = c; |
| 2350 | } else { |
| 2351 | /* Display U+FFFD. If it's not found, display an inverse question mark. */ |
| 2352 | tc = conv_uni_to_pc(vc, 0xfffd); |
| 2353 | if (tc < 0) { |
| 2354 | inverse = 1; |
| 2355 | tc = conv_uni_to_pc(vc, '?'); |
| 2356 | if (tc < 0) tc = '?'; |
| 2357 | } |
| 2358 | } |
Adam Tlalka | d4328b4 | 2006-09-29 01:59:53 -0700 | [diff] [blame] | 2359 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2360 | |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2361 | if (!inverse) { |
| 2362 | vc_attr = vc->vc_attr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | } else { |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2364 | /* invert vc_attr */ |
| 2365 | if (!vc->vc_can_do_color) { |
| 2366 | vc_attr = (vc->vc_attr) ^ 0x08; |
| 2367 | } else if (vc->vc_hi_font_mask == 0x100) { |
| 2368 | vc_attr = ((vc->vc_attr) & 0x11) | (((vc->vc_attr) & 0xe0) >> 4) | (((vc->vc_attr) & 0x0e) << 4); |
| 2369 | } else { |
| 2370 | vc_attr = ((vc->vc_attr) & 0x88) | (((vc->vc_attr) & 0x70) >> 4) | (((vc->vc_attr) & 0x07) << 4); |
Adam Tlalka | d4328b4 | 2006-09-29 01:59:53 -0700 | [diff] [blame] | 2371 | } |
Jiri Slaby | d711ea8 | 2016-06-23 13:34:30 +0200 | [diff] [blame] | 2372 | con_flush(vc, draw_from, draw_to, &draw_x); |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2373 | } |
| 2374 | |
| 2375 | while (1) { |
| 2376 | if (vc->vc_need_wrap || vc->vc_decim) |
Jiri Slaby | d711ea8 | 2016-06-23 13:34:30 +0200 | [diff] [blame] | 2377 | con_flush(vc, draw_from, draw_to, |
| 2378 | &draw_x); |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2379 | if (vc->vc_need_wrap) { |
| 2380 | cr(vc); |
| 2381 | lf(vc); |
| 2382 | } |
| 2383 | if (vc->vc_decim) |
| 2384 | insert_char(vc, 1); |
| 2385 | scr_writew(himask ? |
| 2386 | ((vc_attr << 8) & ~himask) + ((tc & 0x100) ? himask : 0) + (tc & 0xff) : |
| 2387 | (vc_attr << 8) + tc, |
| 2388 | (u16 *) vc->vc_pos); |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 2389 | if (con_should_update(vc) && draw_x < 0) { |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2390 | draw_x = vc->vc_x; |
| 2391 | draw_from = vc->vc_pos; |
| 2392 | } |
| 2393 | if (vc->vc_x == vc->vc_cols - 1) { |
| 2394 | vc->vc_need_wrap = vc->vc_decawm; |
| 2395 | draw_to = vc->vc_pos + 2; |
| 2396 | } else { |
| 2397 | vc->vc_x++; |
| 2398 | draw_to = (vc->vc_pos += 2); |
| 2399 | } |
| 2400 | |
| 2401 | if (!--width) break; |
| 2402 | |
| 2403 | tc = conv_uni_to_pc(vc, ' '); /* A space is printed in the second column */ |
| 2404 | if (tc < 0) tc = ' '; |
| 2405 | } |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 2406 | notify_write(vc, c); |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2407 | |
Jiri Slaby | d711ea8 | 2016-06-23 13:34:30 +0200 | [diff] [blame] | 2408 | if (inverse) |
| 2409 | con_flush(vc, draw_from, draw_to, &draw_x); |
Egmont Koblinger | 1ed8a2b | 2007-06-23 17:16:27 -0700 | [diff] [blame] | 2410 | |
Egmont Koblinger | 2f1a2cc | 2007-05-08 00:30:37 -0700 | [diff] [blame] | 2411 | if (rescan) { |
| 2412 | rescan = 0; |
| 2413 | inverse = 0; |
| 2414 | width = 1; |
Adam Tlalka | d4328b4 | 2006-09-29 01:59:53 -0700 | [diff] [blame] | 2415 | c = orig; |
| 2416 | goto rescan_last_byte; |
| 2417 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2418 | continue; |
| 2419 | } |
Jiri Slaby | d711ea8 | 2016-06-23 13:34:30 +0200 | [diff] [blame] | 2420 | con_flush(vc, draw_from, draw_to, &draw_x); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | do_con_trol(tty, vc, orig); |
| 2422 | } |
Jiri Slaby | d711ea8 | 2016-06-23 13:34:30 +0200 | [diff] [blame] | 2423 | con_flush(vc, draw_from, draw_to, &draw_x); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2424 | console_conditional_schedule(); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2425 | console_unlock(); |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 2426 | notify_update(vc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2427 | return n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2428 | } |
| 2429 | |
| 2430 | /* |
| 2431 | * This is the console switching callback. |
| 2432 | * |
| 2433 | * Doing console switching in a process context allows |
| 2434 | * us to do the switches asynchronously (needed when we want |
| 2435 | * to switch due to a keyboard interrupt). Synchronization |
| 2436 | * with other console code and prevention of re-entrancy is |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2437 | * ensured with console_lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2438 | */ |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 2439 | static void console_callback(struct work_struct *ignored) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | { |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2441 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2442 | |
| 2443 | if (want_console >= 0) { |
| 2444 | if (want_console != fg_console && |
| 2445 | vc_cons_allocated(want_console)) { |
| 2446 | hide_cursor(vc_cons[fg_console].d); |
| 2447 | change_console(vc_cons[want_console].d); |
| 2448 | /* we only changed when the console had already |
| 2449 | been allocated - a new console is not created |
| 2450 | in an interrupt routine */ |
| 2451 | } |
| 2452 | want_console = -1; |
| 2453 | } |
| 2454 | if (do_poke_blanked_console) { /* do not unblank for a LED change */ |
| 2455 | do_poke_blanked_console = 0; |
| 2456 | poke_blanked_console(); |
| 2457 | } |
| 2458 | if (scrollback_delta) { |
| 2459 | struct vc_data *vc = vc_cons[fg_console].d; |
| 2460 | clear_selection(); |
Jiri Slaby | 97293de | 2016-06-23 13:34:26 +0200 | [diff] [blame] | 2461 | if (vc->vc_mode == KD_TEXT && vc->vc_sw->con_scrolldelta) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | vc->vc_sw->con_scrolldelta(vc, scrollback_delta); |
| 2463 | scrollback_delta = 0; |
| 2464 | } |
| 2465 | if (blank_timer_expired) { |
| 2466 | do_blank_screen(0); |
| 2467 | blank_timer_expired = 0; |
| 2468 | } |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 2469 | notify_update(vc_cons[fg_console].d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2470 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2471 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2472 | } |
| 2473 | |
Andrew Johnson | b257bc0 | 2007-03-16 13:38:24 -0800 | [diff] [blame] | 2474 | int set_console(int nr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2475 | { |
Andrew Johnson | b257bc0 | 2007-03-16 13:38:24 -0800 | [diff] [blame] | 2476 | struct vc_data *vc = vc_cons[fg_console].d; |
| 2477 | |
| 2478 | if (!vc_cons_allocated(nr) || vt_dont_switch || |
| 2479 | (vc->vt_mode.mode == VT_AUTO && vc->vc_mode == KD_GRAPHICS)) { |
| 2480 | |
| 2481 | /* |
| 2482 | * Console switch will fail in console_callback() or |
| 2483 | * change_console() so there is no point scheduling |
| 2484 | * the callback |
| 2485 | * |
| 2486 | * Existing set_console() users don't check the return |
| 2487 | * value so this shouldn't break anything |
| 2488 | */ |
| 2489 | return -EINVAL; |
| 2490 | } |
| 2491 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2492 | want_console = nr; |
| 2493 | schedule_console_callback(); |
Andrew Johnson | b257bc0 | 2007-03-16 13:38:24 -0800 | [diff] [blame] | 2494 | |
| 2495 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2496 | } |
| 2497 | |
| 2498 | struct tty_driver *console_driver; |
| 2499 | |
| 2500 | #ifdef CONFIG_VT_CONSOLE |
| 2501 | |
Bernhard Walle | 5ada918 | 2009-12-14 18:00:43 -0800 | [diff] [blame] | 2502 | /** |
| 2503 | * vt_kmsg_redirect() - Sets/gets the kernel message console |
| 2504 | * @new: The new virtual terminal number or -1 if the console should stay |
| 2505 | * unchanged |
| 2506 | * |
| 2507 | * By default, the kernel messages are always printed on the current virtual |
| 2508 | * console. However, the user may modify that default with the |
| 2509 | * TIOCL_SETKMSGREDIRECT ioctl call. |
| 2510 | * |
| 2511 | * This function sets the kernel message console to be @new. It returns the old |
| 2512 | * virtual console number. The virtual terminal number 0 (both as parameter and |
| 2513 | * return value) means no redirection (i.e. always printed on the currently |
| 2514 | * active console). |
| 2515 | * |
| 2516 | * The parameter -1 means that only the current console is returned, but the |
| 2517 | * value is not modified. You may use the macro vt_get_kmsg_redirect() in that |
| 2518 | * case to make the code more understandable. |
| 2519 | * |
| 2520 | * When the kernel is compiled without CONFIG_VT_CONSOLE, this function ignores |
| 2521 | * the parameter and always returns 0. |
| 2522 | */ |
| 2523 | int vt_kmsg_redirect(int new) |
| 2524 | { |
| 2525 | static int kmsg_con; |
| 2526 | |
| 2527 | if (new != -1) |
| 2528 | return xchg(&kmsg_con, new); |
| 2529 | else |
| 2530 | return kmsg_con; |
| 2531 | } |
| 2532 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2533 | /* |
| 2534 | * Console on virtual terminal |
| 2535 | * |
| 2536 | * The console must be locked when we get here. |
| 2537 | */ |
| 2538 | |
| 2539 | static void vt_console_print(struct console *co, const char *b, unsigned count) |
| 2540 | { |
| 2541 | struct vc_data *vc = vc_cons[fg_console].d; |
| 2542 | unsigned char c; |
Nick Piggin | b094000 | 2008-02-06 01:37:04 -0800 | [diff] [blame] | 2543 | static DEFINE_SPINLOCK(printing_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2544 | const ushort *start; |
| 2545 | ushort cnt = 0; |
| 2546 | ushort myx; |
Bernhard Walle | 5ada918 | 2009-12-14 18:00:43 -0800 | [diff] [blame] | 2547 | int kmsg_console; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2548 | |
| 2549 | /* console busy or not yet initialized */ |
Nick Piggin | b094000 | 2008-02-06 01:37:04 -0800 | [diff] [blame] | 2550 | if (!printable) |
| 2551 | return; |
| 2552 | if (!spin_trylock(&printing_lock)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2553 | return; |
| 2554 | |
Bernhard Walle | 5ada918 | 2009-12-14 18:00:43 -0800 | [diff] [blame] | 2555 | kmsg_console = vt_get_kmsg_redirect(); |
| 2556 | if (kmsg_console && vc_cons_allocated(kmsg_console - 1)) |
| 2557 | vc = vc_cons[kmsg_console - 1].d; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | |
| 2559 | /* read `x' only after setting currcons properly (otherwise |
| 2560 | the `x' macro will read the x of the foreground console). */ |
| 2561 | myx = vc->vc_x; |
| 2562 | |
| 2563 | if (!vc_cons_allocated(fg_console)) { |
| 2564 | /* impossible */ |
| 2565 | /* printk("vt_console_print: tty %d not allocated ??\n", currcons+1); */ |
| 2566 | goto quit; |
| 2567 | } |
| 2568 | |
Jesse Barnes | 8fd4bd2 | 2010-06-23 12:56:12 -0700 | [diff] [blame] | 2569 | if (vc->vc_mode != KD_TEXT && !vt_force_oops_output(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2570 | goto quit; |
| 2571 | |
| 2572 | /* undraw cursor first */ |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 2573 | if (con_is_fg(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2574 | hide_cursor(vc); |
| 2575 | |
| 2576 | start = (ushort *)vc->vc_pos; |
| 2577 | |
| 2578 | /* Contrived structure to try to emulate original need_wrap behaviour |
| 2579 | * Problems caused when we have need_wrap set on '\n' character */ |
| 2580 | while (count--) { |
| 2581 | c = *b++; |
| 2582 | if (c == 10 || c == 13 || c == 8 || vc->vc_need_wrap) { |
| 2583 | if (cnt > 0) { |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 2584 | if (con_is_visible(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2585 | vc->vc_sw->con_putcs(vc, start, cnt, vc->vc_y, vc->vc_x); |
| 2586 | vc->vc_x += cnt; |
| 2587 | if (vc->vc_need_wrap) |
| 2588 | vc->vc_x--; |
| 2589 | cnt = 0; |
| 2590 | } |
| 2591 | if (c == 8) { /* backspace */ |
| 2592 | bs(vc); |
| 2593 | start = (ushort *)vc->vc_pos; |
| 2594 | myx = vc->vc_x; |
| 2595 | continue; |
| 2596 | } |
| 2597 | if (c != 13) |
| 2598 | lf(vc); |
| 2599 | cr(vc); |
| 2600 | start = (ushort *)vc->vc_pos; |
| 2601 | myx = vc->vc_x; |
| 2602 | if (c == 10 || c == 13) |
| 2603 | continue; |
| 2604 | } |
| 2605 | scr_writew((vc->vc_attr << 8) + c, (unsigned short *)vc->vc_pos); |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 2606 | notify_write(vc, c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2607 | cnt++; |
| 2608 | if (myx == vc->vc_cols - 1) { |
| 2609 | vc->vc_need_wrap = 1; |
| 2610 | continue; |
| 2611 | } |
| 2612 | vc->vc_pos += 2; |
| 2613 | myx++; |
| 2614 | } |
| 2615 | if (cnt > 0) { |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 2616 | if (con_is_visible(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2617 | vc->vc_sw->con_putcs(vc, start, cnt, vc->vc_y, vc->vc_x); |
| 2618 | vc->vc_x += cnt; |
| 2619 | if (vc->vc_x == vc->vc_cols) { |
| 2620 | vc->vc_x--; |
| 2621 | vc->vc_need_wrap = 1; |
| 2622 | } |
| 2623 | } |
| 2624 | set_cursor(vc); |
Samuel Thibault | b293d75 | 2007-10-18 23:39:17 -0700 | [diff] [blame] | 2625 | notify_update(vc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2626 | |
| 2627 | quit: |
Nick Piggin | b094000 | 2008-02-06 01:37:04 -0800 | [diff] [blame] | 2628 | spin_unlock(&printing_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2629 | } |
| 2630 | |
| 2631 | static struct tty_driver *vt_console_device(struct console *c, int *index) |
| 2632 | { |
| 2633 | *index = c->index ? c->index-1 : fg_console; |
| 2634 | return console_driver; |
| 2635 | } |
| 2636 | |
| 2637 | static struct console vt_console_driver = { |
| 2638 | .name = "tty", |
| 2639 | .write = vt_console_print, |
| 2640 | .device = vt_console_device, |
| 2641 | .unblank = unblank_screen, |
| 2642 | .flags = CON_PRINTBUFFER, |
| 2643 | .index = -1, |
| 2644 | }; |
| 2645 | #endif |
| 2646 | |
| 2647 | /* |
| 2648 | * Handling of Linux-specific VC ioctls |
| 2649 | */ |
| 2650 | |
| 2651 | /* |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2652 | * Generally a bit racy with respect to console_lock();. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2653 | * |
| 2654 | * There are some functions which don't need it. |
| 2655 | * |
| 2656 | * There are some functions which can sleep for arbitrary periods |
| 2657 | * (paste_selection) but we don't need the lock there anyway. |
| 2658 | * |
| 2659 | * set_selection has locking, and definitely needs it |
| 2660 | */ |
| 2661 | |
| 2662 | int tioclinux(struct tty_struct *tty, unsigned long arg) |
| 2663 | { |
| 2664 | char type, data; |
| 2665 | char __user *p = (char __user *)arg; |
| 2666 | int lines; |
| 2667 | int ret; |
| 2668 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2669 | if (current->signal->tty != tty && !capable(CAP_SYS_ADMIN)) |
| 2670 | return -EPERM; |
| 2671 | if (get_user(type, p)) |
| 2672 | return -EFAULT; |
| 2673 | ret = 0; |
Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 2674 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2675 | switch (type) |
| 2676 | { |
| 2677 | case TIOCL_SETSEL: |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2678 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2679 | ret = set_selection((struct tiocl_selection __user *)(p+1), tty); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2680 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | break; |
| 2682 | case TIOCL_PASTESEL: |
| 2683 | ret = paste_selection(tty); |
| 2684 | break; |
| 2685 | case TIOCL_UNBLANKSCREEN: |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2686 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2687 | unblank_screen(); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2688 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2689 | break; |
| 2690 | case TIOCL_SELLOADLUT: |
Alan Cox | 5289475 | 2012-03-02 15:00:02 +0000 | [diff] [blame] | 2691 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2692 | ret = sel_loadlut(p); |
Alan Cox | 5289475 | 2012-03-02 15:00:02 +0000 | [diff] [blame] | 2693 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2694 | break; |
| 2695 | case TIOCL_GETSHIFTSTATE: |
Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 2696 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2697 | /* |
| 2698 | * Make it possible to react to Shift+Mousebutton. |
| 2699 | * Note that 'shift_state' is an undocumented |
| 2700 | * kernel-internal variable; programs not closely |
| 2701 | * related to the kernel should not use this. |
| 2702 | */ |
Alan Cox | 079c953 | 2012-02-28 14:49:23 +0000 | [diff] [blame] | 2703 | data = vt_get_shift_state(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2704 | ret = __put_user(data, p); |
| 2705 | break; |
| 2706 | case TIOCL_GETMOUSEREPORTING: |
Alan Cox | 20f6257 | 2012-03-02 14:59:37 +0000 | [diff] [blame] | 2707 | console_lock(); /* May be overkill */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2708 | data = mouse_reporting(); |
Alan Cox | 20f6257 | 2012-03-02 14:59:37 +0000 | [diff] [blame] | 2709 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2710 | ret = __put_user(data, p); |
| 2711 | break; |
| 2712 | case TIOCL_SETVESABLANK: |
Alan Cox | 20f6257 | 2012-03-02 14:59:37 +0000 | [diff] [blame] | 2713 | console_lock(); |
Yoichi Yuasa | 403aac9 | 2006-12-06 20:38:38 -0800 | [diff] [blame] | 2714 | ret = set_vesa_blanking(p); |
Alan Cox | 20f6257 | 2012-03-02 14:59:37 +0000 | [diff] [blame] | 2715 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2716 | break; |
Rafael J. Wysocki | 0ca0773 | 2006-03-31 02:30:58 -0800 | [diff] [blame] | 2717 | case TIOCL_GETKMSGREDIRECT: |
Bernhard Walle | 5ada918 | 2009-12-14 18:00:43 -0800 | [diff] [blame] | 2718 | data = vt_get_kmsg_redirect(); |
Rafael J. Wysocki | 0ca0773 | 2006-03-31 02:30:58 -0800 | [diff] [blame] | 2719 | ret = __put_user(data, p); |
| 2720 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2721 | case TIOCL_SETKMSGREDIRECT: |
| 2722 | if (!capable(CAP_SYS_ADMIN)) { |
| 2723 | ret = -EPERM; |
| 2724 | } else { |
| 2725 | if (get_user(data, p+1)) |
| 2726 | ret = -EFAULT; |
| 2727 | else |
Bernhard Walle | 5ada918 | 2009-12-14 18:00:43 -0800 | [diff] [blame] | 2728 | vt_kmsg_redirect(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2729 | } |
| 2730 | break; |
| 2731 | case TIOCL_GETFGCONSOLE: |
Alan Cox | 20f6257 | 2012-03-02 14:59:37 +0000 | [diff] [blame] | 2732 | /* No locking needed as this is a transiently |
| 2733 | correct return anyway if the caller hasn't |
| 2734 | disabled switching */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2735 | ret = fg_console; |
| 2736 | break; |
| 2737 | case TIOCL_SCROLLCONSOLE: |
| 2738 | if (get_user(lines, (s32 __user *)(p+4))) { |
| 2739 | ret = -EFAULT; |
| 2740 | } else { |
Alan Cox | 20f6257 | 2012-03-02 14:59:37 +0000 | [diff] [blame] | 2741 | /* Need the console lock here. Note that lots |
| 2742 | of other calls need fixing before the lock |
| 2743 | is actually useful ! */ |
| 2744 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | scrollfront(vc_cons[fg_console].d, lines); |
Alan Cox | 20f6257 | 2012-03-02 14:59:37 +0000 | [diff] [blame] | 2746 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2747 | ret = 0; |
| 2748 | } |
| 2749 | break; |
| 2750 | case TIOCL_BLANKSCREEN: /* until explicitly unblanked, not only poked */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2751 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2752 | ignore_poke = 1; |
| 2753 | do_blank_screen(0); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2754 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2755 | break; |
| 2756 | case TIOCL_BLANKEDSCREEN: |
| 2757 | ret = console_blanked; |
| 2758 | break; |
| 2759 | default: |
| 2760 | ret = -EINVAL; |
| 2761 | break; |
| 2762 | } |
| 2763 | return ret; |
| 2764 | } |
| 2765 | |
| 2766 | /* |
| 2767 | * /dev/ttyN handling |
| 2768 | */ |
| 2769 | |
| 2770 | static int con_write(struct tty_struct *tty, const unsigned char *buf, int count) |
| 2771 | { |
| 2772 | int retval; |
| 2773 | |
| 2774 | retval = do_con_write(tty, buf, count); |
| 2775 | con_flush_chars(tty); |
| 2776 | |
| 2777 | return retval; |
| 2778 | } |
| 2779 | |
Alan Cox | 5d19f54 | 2008-04-30 00:54:08 -0700 | [diff] [blame] | 2780 | static int con_put_char(struct tty_struct *tty, unsigned char ch) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2781 | { |
| 2782 | if (in_interrupt()) |
Alan Cox | 5d19f54 | 2008-04-30 00:54:08 -0700 | [diff] [blame] | 2783 | return 0; /* n_r3964 calls put_char() from interrupt context */ |
| 2784 | return do_con_write(tty, &ch, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2785 | } |
| 2786 | |
| 2787 | static int con_write_room(struct tty_struct *tty) |
| 2788 | { |
| 2789 | if (tty->stopped) |
| 2790 | return 0; |
Joe Peterson | a88a69c | 2009-01-02 13:40:53 +0000 | [diff] [blame] | 2791 | return 32768; /* No limit, really; we're not buffering */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2792 | } |
| 2793 | |
| 2794 | static int con_chars_in_buffer(struct tty_struct *tty) |
| 2795 | { |
| 2796 | return 0; /* we're not buffering */ |
| 2797 | } |
| 2798 | |
| 2799 | /* |
| 2800 | * con_throttle and con_unthrottle are only used for |
| 2801 | * paste_selection(), which has to stuff in a large number of |
| 2802 | * characters... |
| 2803 | */ |
| 2804 | static void con_throttle(struct tty_struct *tty) |
| 2805 | { |
| 2806 | } |
| 2807 | |
| 2808 | static void con_unthrottle(struct tty_struct *tty) |
| 2809 | { |
| 2810 | struct vc_data *vc = tty->driver_data; |
| 2811 | |
| 2812 | wake_up_interruptible(&vc->paste_wait); |
| 2813 | } |
| 2814 | |
| 2815 | /* |
| 2816 | * Turn the Scroll-Lock LED on when the tty is stopped |
| 2817 | */ |
| 2818 | static void con_stop(struct tty_struct *tty) |
| 2819 | { |
| 2820 | int console_num; |
| 2821 | if (!tty) |
| 2822 | return; |
| 2823 | console_num = tty->index; |
| 2824 | if (!vc_cons_allocated(console_num)) |
| 2825 | return; |
Alan Cox | 079c953 | 2012-02-28 14:49:23 +0000 | [diff] [blame] | 2826 | vt_kbd_con_stop(console_num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2827 | } |
| 2828 | |
| 2829 | /* |
| 2830 | * Turn the Scroll-Lock LED off when the console is started |
| 2831 | */ |
| 2832 | static void con_start(struct tty_struct *tty) |
| 2833 | { |
| 2834 | int console_num; |
| 2835 | if (!tty) |
| 2836 | return; |
| 2837 | console_num = tty->index; |
| 2838 | if (!vc_cons_allocated(console_num)) |
| 2839 | return; |
Alan Cox | 079c953 | 2012-02-28 14:49:23 +0000 | [diff] [blame] | 2840 | vt_kbd_con_start(console_num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2841 | } |
| 2842 | |
| 2843 | static void con_flush_chars(struct tty_struct *tty) |
| 2844 | { |
| 2845 | struct vc_data *vc; |
| 2846 | |
| 2847 | if (in_interrupt()) /* from flush_to_ldisc */ |
| 2848 | return; |
| 2849 | |
| 2850 | /* if we race with con_close(), vt may be null */ |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2851 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2852 | vc = tty->driver_data; |
| 2853 | if (vc) |
| 2854 | set_cursor(vc); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2855 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2856 | } |
| 2857 | |
| 2858 | /* |
| 2859 | * Allocate the console screen memory. |
| 2860 | */ |
Jiri Slaby | bc1e99d | 2012-06-04 13:35:33 +0200 | [diff] [blame] | 2861 | static int con_install(struct tty_driver *driver, struct tty_struct *tty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2862 | { |
| 2863 | unsigned int currcons = tty->index; |
Jiri Slaby | bc1e99d | 2012-06-04 13:35:33 +0200 | [diff] [blame] | 2864 | struct vc_data *vc; |
| 2865 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2866 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2867 | console_lock(); |
Jiri Slaby | bc1e99d | 2012-06-04 13:35:33 +0200 | [diff] [blame] | 2868 | ret = vc_allocate(currcons); |
| 2869 | if (ret) |
| 2870 | goto unlock; |
Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 2871 | |
Jiri Slaby | bc1e99d | 2012-06-04 13:35:33 +0200 | [diff] [blame] | 2872 | vc = vc_cons[currcons].d; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2873 | |
Jiri Slaby | bc1e99d | 2012-06-04 13:35:33 +0200 | [diff] [blame] | 2874 | /* Still being freed */ |
| 2875 | if (vc->port.tty) { |
| 2876 | ret = -ERESTARTSYS; |
| 2877 | goto unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2878 | } |
Jiri Slaby | bc1e99d | 2012-06-04 13:35:33 +0200 | [diff] [blame] | 2879 | |
| 2880 | ret = tty_port_install(&vc->port, driver, tty); |
| 2881 | if (ret) |
| 2882 | goto unlock; |
| 2883 | |
| 2884 | tty->driver_data = vc; |
| 2885 | vc->port.tty = tty; |
| 2886 | |
| 2887 | if (!tty->winsize.ws_row && !tty->winsize.ws_col) { |
| 2888 | tty->winsize.ws_row = vc_cons[currcons].d->vc_rows; |
| 2889 | tty->winsize.ws_col = vc_cons[currcons].d->vc_cols; |
| 2890 | } |
| 2891 | if (vc->vc_utf) |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 2892 | tty->termios.c_iflag |= IUTF8; |
Jiri Slaby | bc1e99d | 2012-06-04 13:35:33 +0200 | [diff] [blame] | 2893 | else |
Alan Cox | adc8d74 | 2012-07-14 15:31:47 +0100 | [diff] [blame] | 2894 | tty->termios.c_iflag &= ~IUTF8; |
Jiri Slaby | bc1e99d | 2012-06-04 13:35:33 +0200 | [diff] [blame] | 2895 | unlock: |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2896 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2897 | return ret; |
| 2898 | } |
| 2899 | |
Jiri Slaby | bc1e99d | 2012-06-04 13:35:33 +0200 | [diff] [blame] | 2900 | static int con_open(struct tty_struct *tty, struct file *filp) |
| 2901 | { |
| 2902 | /* everything done in install */ |
| 2903 | return 0; |
| 2904 | } |
| 2905 | |
| 2906 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2907 | static void con_close(struct tty_struct *tty, struct file *filp) |
| 2908 | { |
Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 2909 | /* Nothing to do - we defer to shutdown */ |
| 2910 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2911 | |
Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 2912 | static void con_shutdown(struct tty_struct *tty) |
| 2913 | { |
| 2914 | struct vc_data *vc = tty->driver_data; |
| 2915 | BUG_ON(vc == NULL); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2916 | console_lock(); |
Alan Cox | 8ce7326 | 2010-06-01 22:52:56 +0200 | [diff] [blame] | 2917 | vc->port.tty = NULL; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2918 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2919 | } |
| 2920 | |
Clemens Ladisch | 3855ae1 | 2013-08-04 13:09:50 +0200 | [diff] [blame] | 2921 | static int default_color = 7; /* white */ |
Jan Engelhardt | fa6ce9a | 2007-05-08 00:38:04 -0700 | [diff] [blame] | 2922 | static int default_italic_color = 2; // green (ASCII) |
| 2923 | static int default_underline_color = 3; // cyan (ASCII) |
Clemens Ladisch | 3855ae1 | 2013-08-04 13:09:50 +0200 | [diff] [blame] | 2924 | module_param_named(color, default_color, int, S_IRUGO | S_IWUSR); |
Jan Engelhardt | fa6ce9a | 2007-05-08 00:38:04 -0700 | [diff] [blame] | 2925 | module_param_named(italic, default_italic_color, int, S_IRUGO | S_IWUSR); |
| 2926 | module_param_named(underline, default_underline_color, int, S_IRUGO | S_IWUSR); |
| 2927 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2928 | static void vc_init(struct vc_data *vc, unsigned int rows, |
| 2929 | unsigned int cols, int do_clear) |
| 2930 | { |
| 2931 | int j, k ; |
| 2932 | |
| 2933 | vc->vc_cols = cols; |
| 2934 | vc->vc_rows = rows; |
| 2935 | vc->vc_size_row = cols << 1; |
| 2936 | vc->vc_screenbuf_size = vc->vc_rows * vc->vc_size_row; |
| 2937 | |
| 2938 | set_origin(vc); |
| 2939 | vc->vc_pos = vc->vc_origin; |
| 2940 | reset_vc(vc); |
| 2941 | for (j=k=0; j<16; j++) { |
| 2942 | vc->vc_palette[k++] = default_red[j] ; |
| 2943 | vc->vc_palette[k++] = default_grn[j] ; |
| 2944 | vc->vc_palette[k++] = default_blu[j] ; |
| 2945 | } |
Clemens Ladisch | 3855ae1 | 2013-08-04 13:09:50 +0200 | [diff] [blame] | 2946 | vc->vc_def_color = default_color; |
Jan Engelhardt | fa6ce9a | 2007-05-08 00:38:04 -0700 | [diff] [blame] | 2947 | vc->vc_ulcolor = default_underline_color; |
| 2948 | vc->vc_itcolor = default_italic_color; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2949 | vc->vc_halfcolor = 0x08; /* grey */ |
| 2950 | init_waitqueue_head(&vc->paste_wait); |
| 2951 | reset_terminal(vc, do_clear); |
| 2952 | } |
| 2953 | |
| 2954 | /* |
| 2955 | * This routine initializes console interrupts, and does nothing |
| 2956 | * else. If you want the screen to clear, call tty_write with |
| 2957 | * the appropriate escape-sequence. |
| 2958 | */ |
| 2959 | |
| 2960 | static int __init con_init(void) |
| 2961 | { |
| 2962 | const char *display_desc = NULL; |
| 2963 | struct vc_data *vc; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 2964 | unsigned int currcons = 0, i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2965 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2966 | console_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2967 | |
| 2968 | if (conswitchp) |
| 2969 | display_desc = conswitchp->con_startup(); |
| 2970 | if (!display_desc) { |
| 2971 | fg_console = 0; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 2972 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2973 | return 0; |
| 2974 | } |
| 2975 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 2976 | for (i = 0; i < MAX_NR_CON_DRIVER; i++) { |
| 2977 | struct con_driver *con_driver = ®istered_con_driver[i]; |
| 2978 | |
| 2979 | if (con_driver->con == NULL) { |
| 2980 | con_driver->con = conswitchp; |
| 2981 | con_driver->desc = display_desc; |
| 2982 | con_driver->flag = CON_DRIVER_FLAG_INIT; |
| 2983 | con_driver->first = 0; |
| 2984 | con_driver->last = MAX_NR_CONSOLES - 1; |
| 2985 | break; |
| 2986 | } |
| 2987 | } |
| 2988 | |
| 2989 | for (i = 0; i < MAX_NR_CONSOLES; i++) |
| 2990 | con_driver_map[i] = conswitchp; |
| 2991 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2992 | if (blankinterval) { |
| 2993 | blank_state = blank_normal_wait; |
Daniel Mack | f324edc | 2009-06-16 15:33:52 -0700 | [diff] [blame] | 2994 | mod_timer(&console_timer, jiffies + (blankinterval * HZ)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2995 | } |
| 2996 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2997 | for (currcons = 0; currcons < MIN_NR_CONSOLES; currcons++) { |
Pekka Enberg | a5f4f52 | 2009-06-10 23:53:37 +0300 | [diff] [blame] | 2998 | vc_cons[currcons].d = vc = kzalloc(sizeof(struct vc_data), GFP_NOWAIT); |
Eric W. Biederman | 7f1f86a | 2007-02-13 14:38:58 -0700 | [diff] [blame] | 2999 | INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK); |
Alan Cox | ff917ba | 2010-06-01 22:52:55 +0200 | [diff] [blame] | 3000 | tty_port_init(&vc->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3001 | visual_init(vc, currcons, 1); |
Pekka Enberg | a5f4f52 | 2009-06-10 23:53:37 +0300 | [diff] [blame] | 3002 | vc->vc_screenbuf = kzalloc(vc->vc_screenbuf_size, GFP_NOWAIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3003 | vc_init(vc, vc->vc_rows, vc->vc_cols, |
| 3004 | currcons || !vc->vc_sw->con_save_screen); |
| 3005 | } |
| 3006 | currcons = fg_console = 0; |
| 3007 | master_display_fg = vc = vc_cons[currcons].d; |
| 3008 | set_origin(vc); |
| 3009 | save_screen(vc); |
| 3010 | gotoxy(vc, vc->vc_x, vc->vc_y); |
| 3011 | csi_J(vc, 0); |
| 3012 | update_screen(vc); |
Kay Sievers | 5da527a | 2012-04-03 03:18:23 +0200 | [diff] [blame] | 3013 | pr_info("Console: %s %s %dx%d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3014 | vc->vc_can_do_color ? "colour" : "mono", |
| 3015 | display_desc, vc->vc_cols, vc->vc_rows); |
| 3016 | printable = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3017 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 3018 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3019 | |
| 3020 | #ifdef CONFIG_VT_CONSOLE |
| 3021 | register_console(&vt_console_driver); |
| 3022 | #endif |
| 3023 | return 0; |
| 3024 | } |
| 3025 | console_initcall(con_init); |
| 3026 | |
Jeff Dike | b68e31d | 2006-10-02 02:17:18 -0700 | [diff] [blame] | 3027 | static const struct tty_operations con_ops = { |
Jiri Slaby | bc1e99d | 2012-06-04 13:35:33 +0200 | [diff] [blame] | 3028 | .install = con_install, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3029 | .open = con_open, |
| 3030 | .close = con_close, |
| 3031 | .write = con_write, |
| 3032 | .write_room = con_write_room, |
| 3033 | .put_char = con_put_char, |
| 3034 | .flush_chars = con_flush_chars, |
| 3035 | .chars_in_buffer = con_chars_in_buffer, |
| 3036 | .ioctl = vt_ioctl, |
Arnd Bergmann | e921665 | 2009-08-06 15:09:28 +0200 | [diff] [blame] | 3037 | #ifdef CONFIG_COMPAT |
| 3038 | .compat_ioctl = vt_compat_ioctl, |
| 3039 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3040 | .stop = con_stop, |
| 3041 | .start = con_start, |
| 3042 | .throttle = con_throttle, |
| 3043 | .unthrottle = con_unthrottle, |
Alan Cox | 8c9a9dd | 2008-08-15 10:39:38 +0100 | [diff] [blame] | 3044 | .resize = vt_resize, |
Alan Cox | feebed6 | 2008-10-13 10:41:30 +0100 | [diff] [blame] | 3045 | .shutdown = con_shutdown |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3046 | }; |
| 3047 | |
Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 3048 | static struct cdev vc0_cdev; |
| 3049 | |
Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 3050 | static ssize_t show_tty_active(struct device *dev, |
| 3051 | struct device_attribute *attr, char *buf) |
| 3052 | { |
| 3053 | return sprintf(buf, "tty%d\n", fg_console + 1); |
| 3054 | } |
| 3055 | static DEVICE_ATTR(active, S_IRUGO, show_tty_active, NULL); |
| 3056 | |
Takashi Iwai | 1083a7b | 2015-02-05 11:07:42 +0100 | [diff] [blame] | 3057 | static struct attribute *vt_dev_attrs[] = { |
| 3058 | &dev_attr_active.attr, |
| 3059 | NULL |
| 3060 | }; |
| 3061 | |
| 3062 | ATTRIBUTE_GROUPS(vt_dev); |
| 3063 | |
Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 3064 | int __init vty_init(const struct file_operations *console_fops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3065 | { |
Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 3066 | cdev_init(&vc0_cdev, console_fops); |
| 3067 | if (cdev_add(&vc0_cdev, MKDEV(TTY_MAJOR, 0), 1) || |
| 3068 | register_chrdev_region(MKDEV(TTY_MAJOR, 0), 1, "/dev/vc/0") < 0) |
| 3069 | panic("Couldn't register /dev/tty0 driver\n"); |
Takashi Iwai | 1083a7b | 2015-02-05 11:07:42 +0100 | [diff] [blame] | 3070 | tty0dev = device_create_with_groups(tty_class, NULL, |
| 3071 | MKDEV(TTY_MAJOR, 0), NULL, |
| 3072 | vt_dev_groups, "tty0"); |
Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 3073 | if (IS_ERR(tty0dev)) |
| 3074 | tty0dev = NULL; |
Alan Cox | d81ed10 | 2008-10-13 10:41:42 +0100 | [diff] [blame] | 3075 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3076 | vcs_init(); |
| 3077 | |
| 3078 | console_driver = alloc_tty_driver(MAX_NR_CONSOLES); |
| 3079 | if (!console_driver) |
| 3080 | panic("Couldn't allocate console driver\n"); |
Jiri Slaby | 2f16669 | 2012-03-05 14:51:52 +0100 | [diff] [blame] | 3081 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | console_driver->name = "tty"; |
| 3083 | console_driver->name_base = 1; |
| 3084 | console_driver->major = TTY_MAJOR; |
| 3085 | console_driver->minor_start = 1; |
| 3086 | console_driver->type = TTY_DRIVER_TYPE_CONSOLE; |
| 3087 | console_driver->init_termios = tty_std_termios; |
Samuel Thibault | c1236d3 | 2008-05-06 20:42:37 -0700 | [diff] [blame] | 3088 | if (default_utf8) |
| 3089 | console_driver->init_termios.c_iflag |= IUTF8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3090 | console_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_RESET_TERMIOS; |
| 3091 | tty_set_operations(console_driver, &con_ops); |
| 3092 | if (tty_register_driver(console_driver)) |
| 3093 | panic("Couldn't register console driver\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3094 | kbd_init(); |
| 3095 | console_map_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3096 | #ifdef CONFIG_MDA_CONSOLE |
| 3097 | mda_console_init(); |
| 3098 | #endif |
| 3099 | return 0; |
| 3100 | } |
| 3101 | |
| 3102 | #ifndef VT_SINGLE_DRIVER |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3103 | |
| 3104 | static struct class *vtconsole_class; |
| 3105 | |
Alan Cox | 50e244c | 2013-01-25 10:28:15 +1000 | [diff] [blame] | 3106 | static int do_bind_con_driver(const struct consw *csw, int first, int last, |
Jesse Barnes | b7269dd | 2007-07-17 04:05:34 -0700 | [diff] [blame] | 3107 | int deflt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3108 | { |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3109 | struct module *owner = csw->owner; |
| 3110 | const char *desc = NULL; |
| 3111 | struct con_driver *con_driver; |
| 3112 | int i, j = -1, k = -1, retval = -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3113 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3114 | if (!try_module_get(owner)) |
| 3115 | return -ENODEV; |
| 3116 | |
Alan Cox | 50e244c | 2013-01-25 10:28:15 +1000 | [diff] [blame] | 3117 | WARN_CONSOLE_UNLOCKED(); |
Antonino A. Daplas | 1c8ce27 | 2006-06-26 00:27:03 -0700 | [diff] [blame] | 3118 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3119 | /* check if driver is registered */ |
| 3120 | for (i = 0; i < MAX_NR_CON_DRIVER; i++) { |
| 3121 | con_driver = ®istered_con_driver[i]; |
| 3122 | |
| 3123 | if (con_driver->con == csw) { |
| 3124 | desc = con_driver->desc; |
| 3125 | retval = 0; |
| 3126 | break; |
| 3127 | } |
| 3128 | } |
| 3129 | |
| 3130 | if (retval) |
| 3131 | goto err; |
| 3132 | |
| 3133 | if (!(con_driver->flag & CON_DRIVER_FLAG_INIT)) { |
| 3134 | csw->con_startup(); |
| 3135 | con_driver->flag |= CON_DRIVER_FLAG_INIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | } |
Antonino A. Daplas | 1c8ce27 | 2006-06-26 00:27:03 -0700 | [diff] [blame] | 3137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3138 | if (deflt) { |
| 3139 | if (conswitchp) |
| 3140 | module_put(conswitchp->owner); |
Antonino A. Daplas | 1c8ce27 | 2006-06-26 00:27:03 -0700 | [diff] [blame] | 3141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3142 | __module_get(owner); |
| 3143 | conswitchp = csw; |
| 3144 | } |
| 3145 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3146 | first = max(first, con_driver->first); |
| 3147 | last = min(last, con_driver->last); |
| 3148 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3149 | for (i = first; i <= last; i++) { |
| 3150 | int old_was_color; |
| 3151 | struct vc_data *vc = vc_cons[i].d; |
| 3152 | |
| 3153 | if (con_driver_map[i]) |
| 3154 | module_put(con_driver_map[i]->owner); |
| 3155 | __module_get(owner); |
| 3156 | con_driver_map[i] = csw; |
| 3157 | |
| 3158 | if (!vc || !vc->vc_sw) |
| 3159 | continue; |
| 3160 | |
| 3161 | j = i; |
Antonino A. Daplas | 1c8ce27 | 2006-06-26 00:27:03 -0700 | [diff] [blame] | 3162 | |
Jiri Slaby | 6ca8dfd | 2016-06-23 13:34:35 +0200 | [diff] [blame^] | 3163 | if (con_is_visible(vc)) { |
David Hollister | 4ee1acc | 2006-06-26 00:26:41 -0700 | [diff] [blame] | 3164 | k = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3165 | save_screen(vc); |
David Hollister | 4ee1acc | 2006-06-26 00:26:41 -0700 | [diff] [blame] | 3166 | } |
| 3167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3168 | old_was_color = vc->vc_can_do_color; |
| 3169 | vc->vc_sw->con_deinit(vc); |
Francisco Jerez | 9fc2b2d | 2010-08-22 17:37:24 +0200 | [diff] [blame] | 3170 | vc->vc_origin = (unsigned long)vc->vc_screenbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3171 | visual_init(vc, i, 0); |
Antonino A. Daplas | 1c8ce27 | 2006-06-26 00:27:03 -0700 | [diff] [blame] | 3172 | set_origin(vc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3173 | update_attr(vc); |
| 3174 | |
| 3175 | /* If the console changed between mono <-> color, then |
| 3176 | * the attributes in the screenbuf will be wrong. The |
| 3177 | * following resets all attributes to something sane. |
| 3178 | */ |
| 3179 | if (old_was_color != vc->vc_can_do_color) |
| 3180 | clear_buffer_attributes(vc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3181 | } |
David Hollister | 4ee1acc | 2006-06-26 00:26:41 -0700 | [diff] [blame] | 3182 | |
Mandeep Singh Baines | 1ffdda9 | 2011-02-06 09:31:53 -0800 | [diff] [blame] | 3183 | pr_info("Console: switching "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3184 | if (!deflt) |
| 3185 | printk("consoles %d-%d ", first+1, last+1); |
David Hollister | 4ee1acc | 2006-06-26 00:26:41 -0700 | [diff] [blame] | 3186 | if (j >= 0) { |
| 3187 | struct vc_data *vc = vc_cons[j].d; |
| 3188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3189 | printk("to %s %s %dx%d\n", |
David Hollister | 4ee1acc | 2006-06-26 00:26:41 -0700 | [diff] [blame] | 3190 | vc->vc_can_do_color ? "colour" : "mono", |
| 3191 | desc, vc->vc_cols, vc->vc_rows); |
| 3192 | |
| 3193 | if (k >= 0) { |
| 3194 | vc = vc_cons[k].d; |
| 3195 | update_screen(vc); |
| 3196 | } |
| 3197 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3198 | printk("to %s\n", desc); |
| 3199 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3200 | retval = 0; |
| 3201 | err: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3202 | module_put(owner); |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3203 | return retval; |
| 3204 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3205 | |
Alan Cox | 50e244c | 2013-01-25 10:28:15 +1000 | [diff] [blame] | 3206 | |
Antonino A. Daplas | 13ae664 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3207 | #ifdef CONFIG_VT_HW_CONSOLE_BINDING |
Takashi Iwai | e93a9a8 | 2013-01-25 10:28:18 +1000 | [diff] [blame] | 3208 | /* unlocked version of unbind_con_driver() */ |
| 3209 | int do_unbind_con_driver(const struct consw *csw, int first, int last, int deflt) |
| 3210 | { |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3211 | struct module *owner = csw->owner; |
| 3212 | const struct consw *defcsw = NULL; |
| 3213 | struct con_driver *con_driver = NULL, *con_back = NULL; |
| 3214 | int i, retval = -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3215 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3216 | if (!try_module_get(owner)) |
| 3217 | return -ENODEV; |
| 3218 | |
Takashi Iwai | e93a9a8 | 2013-01-25 10:28:18 +1000 | [diff] [blame] | 3219 | WARN_CONSOLE_UNLOCKED(); |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3220 | |
| 3221 | /* check if driver is registered and if it is unbindable */ |
| 3222 | for (i = 0; i < MAX_NR_CON_DRIVER; i++) { |
| 3223 | con_driver = ®istered_con_driver[i]; |
| 3224 | |
| 3225 | if (con_driver->con == csw && |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3226 | con_driver->flag & CON_DRIVER_FLAG_MODULE) { |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3227 | retval = 0; |
| 3228 | break; |
| 3229 | } |
| 3230 | } |
| 3231 | |
Takashi Iwai | e93a9a8 | 2013-01-25 10:28:18 +1000 | [diff] [blame] | 3232 | if (retval) |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3233 | goto err; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3234 | |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3235 | retval = -ENODEV; |
| 3236 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3237 | /* check if backup driver exists */ |
| 3238 | for (i = 0; i < MAX_NR_CON_DRIVER; i++) { |
| 3239 | con_back = ®istered_con_driver[i]; |
| 3240 | |
Daniel Vetter | 249f7b3 | 2014-06-05 16:24:47 +0200 | [diff] [blame] | 3241 | if (con_back->con && con_back->con != csw) { |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3242 | defcsw = con_back->con; |
| 3243 | retval = 0; |
| 3244 | break; |
| 3245 | } |
| 3246 | } |
| 3247 | |
Takashi Iwai | e93a9a8 | 2013-01-25 10:28:18 +1000 | [diff] [blame] | 3248 | if (retval) |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3249 | goto err; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3250 | |
Takashi Iwai | e93a9a8 | 2013-01-25 10:28:18 +1000 | [diff] [blame] | 3251 | if (!con_is_bound(csw)) |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3252 | goto err; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3253 | |
| 3254 | first = max(first, con_driver->first); |
| 3255 | last = min(last, con_driver->last); |
| 3256 | |
| 3257 | for (i = first; i <= last; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3258 | if (con_driver_map[i] == csw) { |
| 3259 | module_put(csw->owner); |
| 3260 | con_driver_map[i] = NULL; |
| 3261 | } |
Antonino A. Daplas | 1c8ce27 | 2006-06-26 00:27:03 -0700 | [diff] [blame] | 3262 | } |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3263 | |
| 3264 | if (!con_is_bound(defcsw)) { |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3265 | const struct consw *defconsw = conswitchp; |
| 3266 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3267 | defcsw->con_startup(); |
| 3268 | con_back->flag |= CON_DRIVER_FLAG_INIT; |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3269 | /* |
| 3270 | * vgacon may change the default driver to point |
| 3271 | * to dummycon, we restore it here... |
| 3272 | */ |
| 3273 | conswitchp = defconsw; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3274 | } |
| 3275 | |
| 3276 | if (!con_is_bound(csw)) |
| 3277 | con_driver->flag &= ~CON_DRIVER_FLAG_INIT; |
| 3278 | |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3279 | /* ignore return value, binding should not fail */ |
Alan Cox | 50e244c | 2013-01-25 10:28:15 +1000 | [diff] [blame] | 3280 | do_bind_con_driver(defcsw, first, last, deflt); |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3281 | err: |
| 3282 | module_put(owner); |
| 3283 | return retval; |
| 3284 | |
| 3285 | } |
Takashi Iwai | e93a9a8 | 2013-01-25 10:28:18 +1000 | [diff] [blame] | 3286 | EXPORT_SYMBOL_GPL(do_unbind_con_driver); |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3287 | |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3288 | static int vt_bind(struct con_driver *con) |
| 3289 | { |
| 3290 | const struct consw *defcsw = NULL, *csw = NULL; |
| 3291 | int i, more = 1, first = -1, last = -1, deflt = 0; |
| 3292 | |
Daniel Vetter | 77232f7 | 2015-04-13 11:16:21 +0200 | [diff] [blame] | 3293 | if (!con->con || !(con->flag & CON_DRIVER_FLAG_MODULE)) |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3294 | goto err; |
| 3295 | |
| 3296 | csw = con->con; |
| 3297 | |
| 3298 | for (i = 0; i < MAX_NR_CON_DRIVER; i++) { |
| 3299 | struct con_driver *con = ®istered_con_driver[i]; |
| 3300 | |
| 3301 | if (con->con && !(con->flag & CON_DRIVER_FLAG_MODULE)) { |
| 3302 | defcsw = con->con; |
| 3303 | break; |
| 3304 | } |
| 3305 | } |
| 3306 | |
| 3307 | if (!defcsw) |
| 3308 | goto err; |
| 3309 | |
| 3310 | while (more) { |
| 3311 | more = 0; |
| 3312 | |
| 3313 | for (i = con->first; i <= con->last; i++) { |
| 3314 | if (con_driver_map[i] == defcsw) { |
| 3315 | if (first == -1) |
| 3316 | first = i; |
| 3317 | last = i; |
| 3318 | more = 1; |
| 3319 | } else if (first != -1) |
| 3320 | break; |
| 3321 | } |
| 3322 | |
| 3323 | if (first == 0 && last == MAX_NR_CONSOLES -1) |
| 3324 | deflt = 1; |
| 3325 | |
Imre Deak | 4c215fe | 2014-12-16 00:16:00 +0200 | [diff] [blame] | 3326 | if (first != -1) |
Wang YanQing | c62a1e5 | 2013-05-09 02:14:21 +0800 | [diff] [blame] | 3327 | do_bind_con_driver(csw, first, last, deflt); |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3328 | |
| 3329 | first = -1; |
| 3330 | last = -1; |
| 3331 | deflt = 0; |
| 3332 | } |
| 3333 | |
| 3334 | err: |
| 3335 | return 0; |
| 3336 | } |
| 3337 | |
| 3338 | static int vt_unbind(struct con_driver *con) |
| 3339 | { |
| 3340 | const struct consw *csw = NULL; |
| 3341 | int i, more = 1, first = -1, last = -1, deflt = 0; |
Daniel Vetter | f418f2e | 2014-06-05 16:33:24 +0200 | [diff] [blame] | 3342 | int ret; |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3343 | |
Daniel Vetter | 77232f7 | 2015-04-13 11:16:21 +0200 | [diff] [blame] | 3344 | if (!con->con || !(con->flag & CON_DRIVER_FLAG_MODULE)) |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3345 | goto err; |
| 3346 | |
| 3347 | csw = con->con; |
| 3348 | |
| 3349 | while (more) { |
| 3350 | more = 0; |
| 3351 | |
| 3352 | for (i = con->first; i <= con->last; i++) { |
| 3353 | if (con_driver_map[i] == csw) { |
| 3354 | if (first == -1) |
| 3355 | first = i; |
| 3356 | last = i; |
| 3357 | more = 1; |
| 3358 | } else if (first != -1) |
| 3359 | break; |
| 3360 | } |
| 3361 | |
| 3362 | if (first == 0 && last == MAX_NR_CONSOLES -1) |
| 3363 | deflt = 1; |
| 3364 | |
Wang YanQing | 618f2b9 | 2013-05-09 02:14:07 +0800 | [diff] [blame] | 3365 | if (first != -1) { |
Daniel Vetter | f418f2e | 2014-06-05 16:33:24 +0200 | [diff] [blame] | 3366 | ret = do_unbind_con_driver(csw, first, last, deflt); |
Daniel Vetter | f418f2e | 2014-06-05 16:33:24 +0200 | [diff] [blame] | 3367 | if (ret != 0) |
| 3368 | return ret; |
Wang YanQing | 618f2b9 | 2013-05-09 02:14:07 +0800 | [diff] [blame] | 3369 | } |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3370 | |
| 3371 | first = -1; |
| 3372 | last = -1; |
| 3373 | deflt = 0; |
| 3374 | } |
| 3375 | |
| 3376 | err: |
| 3377 | return 0; |
| 3378 | } |
Antonino A. Daplas | 13ae664 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3379 | #else |
| 3380 | static inline int vt_bind(struct con_driver *con) |
| 3381 | { |
| 3382 | return 0; |
| 3383 | } |
| 3384 | static inline int vt_unbind(struct con_driver *con) |
| 3385 | { |
| 3386 | return 0; |
| 3387 | } |
| 3388 | #endif /* CONFIG_VT_HW_CONSOLE_BINDING */ |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3389 | |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3390 | static ssize_t store_bind(struct device *dev, struct device_attribute *attr, |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3391 | const char *buf, size_t count) |
| 3392 | { |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3393 | struct con_driver *con = dev_get_drvdata(dev); |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3394 | int bind = simple_strtoul(buf, NULL, 0); |
| 3395 | |
Imre Deak | 4c215fe | 2014-12-16 00:16:00 +0200 | [diff] [blame] | 3396 | console_lock(); |
| 3397 | |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3398 | if (bind) |
| 3399 | vt_bind(con); |
| 3400 | else |
| 3401 | vt_unbind(con); |
| 3402 | |
Imre Deak | 4c215fe | 2014-12-16 00:16:00 +0200 | [diff] [blame] | 3403 | console_unlock(); |
| 3404 | |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3405 | return count; |
| 3406 | } |
| 3407 | |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3408 | static ssize_t show_bind(struct device *dev, struct device_attribute *attr, |
| 3409 | char *buf) |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3410 | { |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3411 | struct con_driver *con = dev_get_drvdata(dev); |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3412 | int bind = con_is_bound(con->con); |
| 3413 | |
| 3414 | return snprintf(buf, PAGE_SIZE, "%i\n", bind); |
| 3415 | } |
| 3416 | |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3417 | static ssize_t show_name(struct device *dev, struct device_attribute *attr, |
| 3418 | char *buf) |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3419 | { |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3420 | struct con_driver *con = dev_get_drvdata(dev); |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3421 | |
| 3422 | return snprintf(buf, PAGE_SIZE, "%s %s\n", |
| 3423 | (con->flag & CON_DRIVER_FLAG_MODULE) ? "(M)" : "(S)", |
| 3424 | con->desc); |
| 3425 | |
| 3426 | } |
| 3427 | |
Takashi Iwai | 1083a7b | 2015-02-05 11:07:42 +0100 | [diff] [blame] | 3428 | static DEVICE_ATTR(bind, S_IRUGO|S_IWUSR, show_bind, store_bind); |
| 3429 | static DEVICE_ATTR(name, S_IRUGO, show_name, NULL); |
| 3430 | |
| 3431 | static struct attribute *con_dev_attrs[] = { |
| 3432 | &dev_attr_bind.attr, |
| 3433 | &dev_attr_name.attr, |
| 3434 | NULL |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3435 | }; |
| 3436 | |
Takashi Iwai | 1083a7b | 2015-02-05 11:07:42 +0100 | [diff] [blame] | 3437 | ATTRIBUTE_GROUPS(con_dev); |
| 3438 | |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3439 | static int vtconsole_init_device(struct con_driver *con) |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3440 | { |
Antonino A. Daplas | 928e964 | 2006-10-03 01:14:49 -0700 | [diff] [blame] | 3441 | con->flag |= CON_DRIVER_FLAG_ATTR; |
Takashi Iwai | 1083a7b | 2015-02-05 11:07:42 +0100 | [diff] [blame] | 3442 | return 0; |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3443 | } |
| 3444 | |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3445 | static void vtconsole_deinit_device(struct con_driver *con) |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3446 | { |
Takashi Iwai | 1083a7b | 2015-02-05 11:07:42 +0100 | [diff] [blame] | 3447 | con->flag &= ~CON_DRIVER_FLAG_ATTR; |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3448 | } |
| 3449 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3450 | /** |
| 3451 | * con_is_bound - checks if driver is bound to the console |
| 3452 | * @csw: console driver |
| 3453 | * |
| 3454 | * RETURNS: zero if unbound, nonzero if bound |
| 3455 | * |
| 3456 | * Drivers can call this and if zero, they should release |
| 3457 | * all resources allocated on con_startup() |
| 3458 | */ |
| 3459 | int con_is_bound(const struct consw *csw) |
| 3460 | { |
| 3461 | int i, bound = 0; |
| 3462 | |
| 3463 | for (i = 0; i < MAX_NR_CONSOLES; i++) { |
| 3464 | if (con_driver_map[i] == csw) { |
| 3465 | bound = 1; |
| 3466 | break; |
| 3467 | } |
| 3468 | } |
| 3469 | |
| 3470 | return bound; |
| 3471 | } |
| 3472 | EXPORT_SYMBOL(con_is_bound); |
| 3473 | |
| 3474 | /** |
Jesse Barnes | b45cfba | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 3475 | * con_debug_enter - prepare the console for the kernel debugger |
| 3476 | * @sw: console driver |
| 3477 | * |
| 3478 | * Called when the console is taken over by the kernel debugger, this |
| 3479 | * function needs to save the current console state, then put the console |
| 3480 | * into a state suitable for the kernel debugger. |
| 3481 | * |
| 3482 | * RETURNS: |
| 3483 | * Zero on success, nonzero if a failure occurred when trying to prepare |
| 3484 | * the console for the debugger. |
| 3485 | */ |
| 3486 | int con_debug_enter(struct vc_data *vc) |
| 3487 | { |
| 3488 | int ret = 0; |
| 3489 | |
| 3490 | saved_fg_console = fg_console; |
| 3491 | saved_last_console = last_console; |
| 3492 | saved_want_console = want_console; |
| 3493 | saved_vc_mode = vc->vc_mode; |
Jason Wessel | beed533 | 2010-08-16 15:58:31 -0500 | [diff] [blame] | 3494 | saved_console_blanked = console_blanked; |
Jesse Barnes | b45cfba | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 3495 | vc->vc_mode = KD_TEXT; |
| 3496 | console_blanked = 0; |
| 3497 | if (vc->vc_sw->con_debug_enter) |
| 3498 | ret = vc->vc_sw->con_debug_enter(vc); |
Jason Wessel | 81d4450 | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 3499 | #ifdef CONFIG_KGDB_KDB |
| 3500 | /* Set the initial LINES variable if it is not already set */ |
| 3501 | if (vc->vc_rows < 999) { |
| 3502 | int linecount; |
| 3503 | char lns[4]; |
| 3504 | const char *setargs[3] = { |
| 3505 | "set", |
| 3506 | "LINES", |
| 3507 | lns, |
| 3508 | }; |
| 3509 | if (kdbgetintenv(setargs[0], &linecount)) { |
| 3510 | snprintf(lns, 4, "%i", vc->vc_rows); |
| 3511 | kdb_set(2, setargs); |
| 3512 | } |
| 3513 | } |
Jason Wessel | 17b572e8 | 2012-08-26 22:37:03 -0500 | [diff] [blame] | 3514 | if (vc->vc_cols < 999) { |
| 3515 | int colcount; |
| 3516 | char cols[4]; |
| 3517 | const char *setargs[3] = { |
| 3518 | "set", |
| 3519 | "COLUMNS", |
| 3520 | cols, |
| 3521 | }; |
| 3522 | if (kdbgetintenv(setargs[0], &colcount)) { |
| 3523 | snprintf(cols, 4, "%i", vc->vc_cols); |
| 3524 | kdb_set(2, setargs); |
| 3525 | } |
| 3526 | } |
Jason Wessel | 81d4450 | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 3527 | #endif /* CONFIG_KGDB_KDB */ |
Jesse Barnes | b45cfba | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 3528 | return ret; |
| 3529 | } |
| 3530 | EXPORT_SYMBOL_GPL(con_debug_enter); |
| 3531 | |
| 3532 | /** |
| 3533 | * con_debug_leave - restore console state |
| 3534 | * @sw: console driver |
| 3535 | * |
| 3536 | * Restore the console state to what it was before the kernel debugger |
| 3537 | * was invoked. |
| 3538 | * |
| 3539 | * RETURNS: |
| 3540 | * Zero on success, nonzero if a failure occurred when trying to restore |
| 3541 | * the console. |
| 3542 | */ |
| 3543 | int con_debug_leave(void) |
| 3544 | { |
| 3545 | struct vc_data *vc; |
| 3546 | int ret = 0; |
| 3547 | |
| 3548 | fg_console = saved_fg_console; |
| 3549 | last_console = saved_last_console; |
| 3550 | want_console = saved_want_console; |
Jason Wessel | beed533 | 2010-08-16 15:58:31 -0500 | [diff] [blame] | 3551 | console_blanked = saved_console_blanked; |
Jesse Barnes | b45cfba | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 3552 | vc_cons[fg_console].d->vc_mode = saved_vc_mode; |
| 3553 | |
| 3554 | vc = vc_cons[fg_console].d; |
| 3555 | if (vc->vc_sw->con_debug_leave) |
| 3556 | ret = vc->vc_sw->con_debug_leave(vc); |
| 3557 | return ret; |
| 3558 | } |
| 3559 | EXPORT_SYMBOL_GPL(con_debug_leave); |
| 3560 | |
Alan Cox | 50e244c | 2013-01-25 10:28:15 +1000 | [diff] [blame] | 3561 | static int do_register_con_driver(const struct consw *csw, int first, int last) |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3562 | { |
| 3563 | struct module *owner = csw->owner; |
| 3564 | struct con_driver *con_driver; |
| 3565 | const char *desc; |
Jiri Slaby | 96317e9 | 2016-05-03 17:05:55 +0200 | [diff] [blame] | 3566 | int i, retval; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3567 | |
Alan Cox | 50e244c | 2013-01-25 10:28:15 +1000 | [diff] [blame] | 3568 | WARN_CONSOLE_UNLOCKED(); |
| 3569 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3570 | if (!try_module_get(owner)) |
| 3571 | return -ENODEV; |
| 3572 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3573 | for (i = 0; i < MAX_NR_CON_DRIVER; i++) { |
| 3574 | con_driver = ®istered_con_driver[i]; |
| 3575 | |
| 3576 | /* already registered */ |
Jiri Slaby | 96317e9 | 2016-05-03 17:05:55 +0200 | [diff] [blame] | 3577 | if (con_driver->con == csw) { |
Dave Airlie | c55c63c | 2011-01-07 09:57:41 +1000 | [diff] [blame] | 3578 | retval = -EBUSY; |
Jiri Slaby | 96317e9 | 2016-05-03 17:05:55 +0200 | [diff] [blame] | 3579 | goto err; |
| 3580 | } |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3581 | } |
| 3582 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3583 | desc = csw->con_startup(); |
Jiri Slaby | 6798df4 | 2016-05-03 17:05:54 +0200 | [diff] [blame] | 3584 | if (!desc) { |
| 3585 | retval = -ENODEV; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3586 | goto err; |
Jiri Slaby | 6798df4 | 2016-05-03 17:05:54 +0200 | [diff] [blame] | 3587 | } |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3588 | |
| 3589 | retval = -EINVAL; |
| 3590 | |
| 3591 | for (i = 0; i < MAX_NR_CON_DRIVER; i++) { |
| 3592 | con_driver = ®istered_con_driver[i]; |
| 3593 | |
Imre Deak | d364b5c | 2015-04-01 21:06:16 +0300 | [diff] [blame] | 3594 | if (con_driver->con == NULL && |
| 3595 | !(con_driver->flag & CON_DRIVER_FLAG_ZOMBIE)) { |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3596 | con_driver->con = csw; |
| 3597 | con_driver->desc = desc; |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3598 | con_driver->node = i; |
| 3599 | con_driver->flag = CON_DRIVER_FLAG_MODULE | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3600 | CON_DRIVER_FLAG_INIT; |
| 3601 | con_driver->first = first; |
| 3602 | con_driver->last = last; |
| 3603 | retval = 0; |
| 3604 | break; |
| 3605 | } |
| 3606 | } |
| 3607 | |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3608 | if (retval) |
| 3609 | goto err; |
| 3610 | |
Takashi Iwai | 1083a7b | 2015-02-05 11:07:42 +0100 | [diff] [blame] | 3611 | con_driver->dev = |
| 3612 | device_create_with_groups(vtconsole_class, NULL, |
| 3613 | MKDEV(0, con_driver->node), |
| 3614 | con_driver, con_dev_groups, |
| 3615 | "vtcon%i", con_driver->node); |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3616 | if (IS_ERR(con_driver->dev)) { |
| 3617 | printk(KERN_WARNING "Unable to create device for %s; " |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3618 | "errno = %ld\n", con_driver->desc, |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3619 | PTR_ERR(con_driver->dev)); |
| 3620 | con_driver->dev = NULL; |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3621 | } else { |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3622 | vtconsole_init_device(con_driver); |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3623 | } |
Antonino A. Daplas | 928e964 | 2006-10-03 01:14:49 -0700 | [diff] [blame] | 3624 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3625 | err: |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3626 | module_put(owner); |
| 3627 | return retval; |
| 3628 | } |
Alan Cox | 50e244c | 2013-01-25 10:28:15 +1000 | [diff] [blame] | 3629 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3630 | |
| 3631 | /** |
Wang YanQing | 50539dd | 2013-05-09 02:14:44 +0800 | [diff] [blame] | 3632 | * do_unregister_con_driver - unregister console driver from console layer |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3633 | * @csw: console driver |
| 3634 | * |
| 3635 | * DESCRIPTION: All drivers that registers to the console layer must |
| 3636 | * call this function upon exit, or if the console driver is in a state |
| 3637 | * where it won't be able to handle console services, such as the |
| 3638 | * framebuffer console without loaded framebuffer drivers. |
| 3639 | * |
| 3640 | * The driver must unbind first prior to unregistration. |
| 3641 | */ |
Takashi Iwai | e93a9a8 | 2013-01-25 10:28:18 +1000 | [diff] [blame] | 3642 | int do_unregister_con_driver(const struct consw *csw) |
| 3643 | { |
Daniel Vetter | d9c660e | 2014-06-05 16:29:56 +0200 | [diff] [blame] | 3644 | int i; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3645 | |
| 3646 | /* cannot unregister a bound driver */ |
| 3647 | if (con_is_bound(csw)) |
Daniel Vetter | d9c660e | 2014-06-05 16:29:56 +0200 | [diff] [blame] | 3648 | return -EBUSY; |
| 3649 | |
| 3650 | if (csw == conswitchp) |
| 3651 | return -EINVAL; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3652 | |
| 3653 | for (i = 0; i < MAX_NR_CON_DRIVER; i++) { |
| 3654 | struct con_driver *con_driver = ®istered_con_driver[i]; |
| 3655 | |
Imre Deak | 2cf30f7 | 2014-12-16 00:15:59 +0200 | [diff] [blame] | 3656 | if (con_driver->con == csw) { |
Imre Deak | d364b5c | 2015-04-01 21:06:16 +0300 | [diff] [blame] | 3657 | /* |
| 3658 | * Defer the removal of the sysfs entries since that |
| 3659 | * will acquire the kernfs s_active lock and we can't |
| 3660 | * acquire this lock while holding the console lock: |
| 3661 | * the unbind sysfs entry imposes already the opposite |
| 3662 | * order. Reset con already here to prevent any later |
| 3663 | * lookup to succeed and mark this slot as zombie, so |
| 3664 | * it won't get reused until we complete the removal |
| 3665 | * in the deferred work. |
| 3666 | */ |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3667 | con_driver->con = NULL; |
Imre Deak | d364b5c | 2015-04-01 21:06:16 +0300 | [diff] [blame] | 3668 | con_driver->flag = CON_DRIVER_FLAG_ZOMBIE; |
| 3669 | schedule_work(&con_driver_unregister_work); |
| 3670 | |
Daniel Vetter | d9c660e | 2014-06-05 16:29:56 +0200 | [diff] [blame] | 3671 | return 0; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3672 | } |
| 3673 | } |
Daniel Vetter | d9c660e | 2014-06-05 16:29:56 +0200 | [diff] [blame] | 3674 | |
| 3675 | return -ENODEV; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3676 | } |
Takashi Iwai | e93a9a8 | 2013-01-25 10:28:18 +1000 | [diff] [blame] | 3677 | EXPORT_SYMBOL_GPL(do_unregister_con_driver); |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3678 | |
Imre Deak | d364b5c | 2015-04-01 21:06:16 +0300 | [diff] [blame] | 3679 | static void con_driver_unregister_callback(struct work_struct *ignored) |
| 3680 | { |
| 3681 | int i; |
| 3682 | |
| 3683 | console_lock(); |
| 3684 | |
| 3685 | for (i = 0; i < MAX_NR_CON_DRIVER; i++) { |
| 3686 | struct con_driver *con_driver = ®istered_con_driver[i]; |
| 3687 | |
| 3688 | if (!(con_driver->flag & CON_DRIVER_FLAG_ZOMBIE)) |
| 3689 | continue; |
| 3690 | |
| 3691 | console_unlock(); |
| 3692 | |
| 3693 | vtconsole_deinit_device(con_driver); |
| 3694 | device_destroy(vtconsole_class, MKDEV(0, con_driver->node)); |
| 3695 | |
| 3696 | console_lock(); |
| 3697 | |
| 3698 | if (WARN_ON_ONCE(con_driver->con)) |
| 3699 | con_driver->con = NULL; |
| 3700 | con_driver->desc = NULL; |
| 3701 | con_driver->dev = NULL; |
| 3702 | con_driver->node = 0; |
| 3703 | WARN_ON_ONCE(con_driver->flag != CON_DRIVER_FLAG_ZOMBIE); |
| 3704 | con_driver->flag = 0; |
| 3705 | con_driver->first = 0; |
| 3706 | con_driver->last = 0; |
| 3707 | } |
| 3708 | |
| 3709 | console_unlock(); |
| 3710 | } |
| 3711 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3712 | /* |
| 3713 | * If we support more console drivers, this function is used |
| 3714 | * when a driver wants to take over some existing consoles |
| 3715 | * and become default driver for newly opened ones. |
| 3716 | * |
Wang YanQing | 155957f | 2013-05-21 13:15:12 +0800 | [diff] [blame] | 3717 | * do_take_over_console is basically a register followed by unbind |
Alan Cox | 50e244c | 2013-01-25 10:28:15 +1000 | [diff] [blame] | 3718 | */ |
| 3719 | int do_take_over_console(const struct consw *csw, int first, int last, int deflt) |
| 3720 | { |
| 3721 | int err; |
| 3722 | |
| 3723 | err = do_register_con_driver(csw, first, last); |
| 3724 | /* |
| 3725 | * If we get an busy error we still want to bind the console driver |
| 3726 | * and return success, as we may have unbound the console driver |
| 3727 | * but not unregistered it. |
| 3728 | */ |
| 3729 | if (err == -EBUSY) |
| 3730 | err = 0; |
| 3731 | if (!err) |
| 3732 | do_bind_con_driver(csw, first, last, deflt); |
| 3733 | |
| 3734 | return err; |
| 3735 | } |
| 3736 | EXPORT_SYMBOL_GPL(do_take_over_console); |
| 3737 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3738 | |
| 3739 | /* |
| 3740 | * give_up_console is a wrapper to unregister_con_driver. It will only |
| 3741 | * work if driver is fully unbound. |
| 3742 | */ |
| 3743 | void give_up_console(const struct consw *csw) |
| 3744 | { |
Wang YanQing | 70125e7 | 2013-05-09 02:14:39 +0800 | [diff] [blame] | 3745 | console_lock(); |
| 3746 | do_unregister_con_driver(csw); |
| 3747 | console_unlock(); |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3748 | } |
| 3749 | |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3750 | static int __init vtconsole_class_init(void) |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3751 | { |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3752 | int i; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3753 | |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3754 | vtconsole_class = class_create(THIS_MODULE, "vtconsole"); |
| 3755 | if (IS_ERR(vtconsole_class)) { |
| 3756 | printk(KERN_WARNING "Unable to create vt console class; " |
| 3757 | "errno = %ld\n", PTR_ERR(vtconsole_class)); |
| 3758 | vtconsole_class = NULL; |
| 3759 | } |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3760 | |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3761 | /* Add system drivers to sysfs */ |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3762 | for (i = 0; i < MAX_NR_CON_DRIVER; i++) { |
| 3763 | struct con_driver *con = ®istered_con_driver[i]; |
| 3764 | |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3765 | if (con->con && !con->dev) { |
Takashi Iwai | 1083a7b | 2015-02-05 11:07:42 +0100 | [diff] [blame] | 3766 | con->dev = |
| 3767 | device_create_with_groups(vtconsole_class, NULL, |
| 3768 | MKDEV(0, con->node), |
| 3769 | con, con_dev_groups, |
| 3770 | "vtcon%i", con->node); |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3771 | |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3772 | if (IS_ERR(con->dev)) { |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3773 | printk(KERN_WARNING "Unable to create " |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3774 | "device for %s; errno = %ld\n", |
| 3775 | con->desc, PTR_ERR(con->dev)); |
| 3776 | con->dev = NULL; |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3777 | } else { |
Greg Kroah-Hartman | 805952a | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 3778 | vtconsole_init_device(con); |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3779 | } |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3780 | } |
| 3781 | } |
| 3782 | |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3783 | return 0; |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3784 | } |
Antonino A. Daplas | 6db4063 | 2006-06-26 00:27:12 -0700 | [diff] [blame] | 3785 | postcore_initcall(vtconsole_class_init); |
| 3786 | |
| 3787 | #endif |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 3788 | |
| 3789 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3790 | * Screen blanking |
| 3791 | */ |
| 3792 | |
Yoichi Yuasa | 403aac9 | 2006-12-06 20:38:38 -0800 | [diff] [blame] | 3793 | static int set_vesa_blanking(char __user *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3794 | { |
Yoichi Yuasa | 403aac9 | 2006-12-06 20:38:38 -0800 | [diff] [blame] | 3795 | unsigned int mode; |
| 3796 | |
| 3797 | if (get_user(mode, p + 1)) |
| 3798 | return -EFAULT; |
| 3799 | |
| 3800 | vesa_blank_mode = (mode < 4) ? mode : 0; |
| 3801 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3802 | } |
| 3803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3804 | void do_blank_screen(int entering_gfx) |
| 3805 | { |
| 3806 | struct vc_data *vc = vc_cons[fg_console].d; |
| 3807 | int i; |
| 3808 | |
| 3809 | WARN_CONSOLE_UNLOCKED(); |
| 3810 | |
| 3811 | if (console_blanked) { |
| 3812 | if (blank_state == blank_vesa_wait) { |
| 3813 | blank_state = blank_off; |
Ville Syrjala | d060a32 | 2006-01-09 20:53:49 -0800 | [diff] [blame] | 3814 | vc->vc_sw->con_blank(vc, vesa_blank_mode + 1, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3815 | } |
| 3816 | return; |
| 3817 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3818 | |
| 3819 | /* entering graphics mode? */ |
| 3820 | if (entering_gfx) { |
| 3821 | hide_cursor(vc); |
| 3822 | save_screen(vc); |
| 3823 | vc->vc_sw->con_blank(vc, -1, 1); |
| 3824 | console_blanked = fg_console + 1; |
izumi | b6e8f00 | 2007-07-17 04:05:49 -0700 | [diff] [blame] | 3825 | blank_state = blank_off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3826 | set_origin(vc); |
| 3827 | return; |
| 3828 | } |
| 3829 | |
izumi | b6e8f00 | 2007-07-17 04:05:49 -0700 | [diff] [blame] | 3830 | if (blank_state != blank_normal_wait) |
| 3831 | return; |
| 3832 | blank_state = blank_off; |
| 3833 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3834 | /* don't blank graphics */ |
| 3835 | if (vc->vc_mode != KD_TEXT) { |
| 3836 | console_blanked = fg_console + 1; |
| 3837 | return; |
| 3838 | } |
| 3839 | |
| 3840 | hide_cursor(vc); |
| 3841 | del_timer_sync(&console_timer); |
| 3842 | blank_timer_expired = 0; |
| 3843 | |
| 3844 | save_screen(vc); |
| 3845 | /* In case we need to reset origin, blanking hook returns 1 */ |
Ville Syrjala | d060a32 | 2006-01-09 20:53:49 -0800 | [diff] [blame] | 3846 | i = vc->vc_sw->con_blank(vc, vesa_off_interval ? 1 : (vesa_blank_mode + 1), 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3847 | console_blanked = fg_console + 1; |
| 3848 | if (i) |
| 3849 | set_origin(vc); |
| 3850 | |
| 3851 | if (console_blank_hook && console_blank_hook(1)) |
| 3852 | return; |
| 3853 | |
Ville Syrjala | d060a32 | 2006-01-09 20:53:49 -0800 | [diff] [blame] | 3854 | if (vesa_off_interval && vesa_blank_mode) { |
Nishanth Aravamudan | 030baba | 2005-07-15 03:56:25 -0700 | [diff] [blame] | 3855 | blank_state = blank_vesa_wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3856 | mod_timer(&console_timer, jiffies + vesa_off_interval); |
| 3857 | } |
Alan Cox | 8b92e87 | 2009-09-19 13:13:24 -0700 | [diff] [blame] | 3858 | vt_event_post(VT_EVENT_BLANK, vc->vc_num, vc->vc_num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3859 | } |
| 3860 | EXPORT_SYMBOL(do_blank_screen); |
| 3861 | |
| 3862 | /* |
| 3863 | * Called by timer as well as from vt_console_driver |
| 3864 | */ |
| 3865 | void do_unblank_screen(int leaving_gfx) |
| 3866 | { |
| 3867 | struct vc_data *vc; |
| 3868 | |
| 3869 | /* This should now always be called from a "sane" (read: can schedule) |
| 3870 | * context for the sake of the low level drivers, except in the special |
| 3871 | * case of oops_in_progress |
| 3872 | */ |
| 3873 | if (!oops_in_progress) |
| 3874 | might_sleep(); |
| 3875 | |
| 3876 | WARN_CONSOLE_UNLOCKED(); |
| 3877 | |
| 3878 | ignore_poke = 0; |
| 3879 | if (!console_blanked) |
| 3880 | return; |
| 3881 | if (!vc_cons_allocated(fg_console)) { |
| 3882 | /* impossible */ |
Joe Perches | e620e54 | 2014-11-09 22:46:35 -0800 | [diff] [blame] | 3883 | pr_warn("unblank_screen: tty %d not allocated ??\n", |
| 3884 | fg_console + 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3885 | return; |
| 3886 | } |
| 3887 | vc = vc_cons[fg_console].d; |
Jesse Barnes | 8fd4bd2 | 2010-06-23 12:56:12 -0700 | [diff] [blame] | 3888 | /* Try to unblank in oops case too */ |
| 3889 | if (vc->vc_mode != KD_TEXT && !vt_force_oops_output(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3890 | return; /* but leave console_blanked != 0 */ |
| 3891 | |
| 3892 | if (blankinterval) { |
Daniel Mack | f324edc | 2009-06-16 15:33:52 -0700 | [diff] [blame] | 3893 | mod_timer(&console_timer, jiffies + (blankinterval * HZ)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3894 | blank_state = blank_normal_wait; |
| 3895 | } |
| 3896 | |
| 3897 | console_blanked = 0; |
Jesse Barnes | 8fd4bd2 | 2010-06-23 12:56:12 -0700 | [diff] [blame] | 3898 | if (vc->vc_sw->con_blank(vc, 0, leaving_gfx) || vt_force_oops_output(vc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3899 | /* Low-level driver cannot restore -> do it ourselves */ |
| 3900 | update_screen(vc); |
| 3901 | if (console_blank_hook) |
| 3902 | console_blank_hook(0); |
| 3903 | set_palette(vc); |
| 3904 | set_cursor(vc); |
Alan Cox | 8b92e87 | 2009-09-19 13:13:24 -0700 | [diff] [blame] | 3905 | vt_event_post(VT_EVENT_UNBLANK, vc->vc_num, vc->vc_num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3906 | } |
| 3907 | EXPORT_SYMBOL(do_unblank_screen); |
| 3908 | |
| 3909 | /* |
| 3910 | * This is called by the outside world to cause a forced unblank, mostly for |
| 3911 | * oopses. Currently, I just call do_unblank_screen(0), but we could eventually |
| 3912 | * call it with 1 as an argument and so force a mode restore... that may kill |
| 3913 | * X or at least garbage the screen but would also make the Oops visible... |
| 3914 | */ |
| 3915 | void unblank_screen(void) |
| 3916 | { |
| 3917 | do_unblank_screen(0); |
| 3918 | } |
| 3919 | |
| 3920 | /* |
Ingo Molnar | 70522e1 | 2006-03-23 03:00:31 -0800 | [diff] [blame] | 3921 | * We defer the timer blanking to work queue so it can take the console mutex |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3922 | * (console operations can still happen at irq time, but only from printk which |
Ingo Molnar | 70522e1 | 2006-03-23 03:00:31 -0800 | [diff] [blame] | 3923 | * has the console mutex. Not perfect yet, but better than no locking |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3924 | */ |
| 3925 | static void blank_screen_t(unsigned long dummy) |
| 3926 | { |
Jan Beulich | cc63b1e | 2005-06-17 13:20:58 -0700 | [diff] [blame] | 3927 | if (unlikely(!keventd_up())) { |
Daniel Mack | f324edc | 2009-06-16 15:33:52 -0700 | [diff] [blame] | 3928 | mod_timer(&console_timer, jiffies + (blankinterval * HZ)); |
Jan Beulich | cc63b1e | 2005-06-17 13:20:58 -0700 | [diff] [blame] | 3929 | return; |
| 3930 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3931 | blank_timer_expired = 1; |
| 3932 | schedule_work(&console_work); |
| 3933 | } |
| 3934 | |
| 3935 | void poke_blanked_console(void) |
| 3936 | { |
| 3937 | WARN_CONSOLE_UNLOCKED(); |
| 3938 | |
| 3939 | /* Add this so we quickly catch whoever might call us in a non |
| 3940 | * safe context. Nowadays, unblank_screen() isn't to be called in |
| 3941 | * atomic contexts and is allowed to schedule (with the special case |
| 3942 | * of oops_in_progress, but that isn't of any concern for this |
| 3943 | * function. --BenH. |
| 3944 | */ |
| 3945 | might_sleep(); |
| 3946 | |
| 3947 | /* This isn't perfectly race free, but a race here would be mostly harmless, |
| 3948 | * at worse, we'll do a spurrious blank and it's unlikely |
| 3949 | */ |
| 3950 | del_timer(&console_timer); |
| 3951 | blank_timer_expired = 0; |
| 3952 | |
| 3953 | if (ignore_poke || !vc_cons[fg_console].d || vc_cons[fg_console].d->vc_mode == KD_GRAPHICS) |
| 3954 | return; |
| 3955 | if (console_blanked) |
| 3956 | unblank_screen(); |
| 3957 | else if (blankinterval) { |
Daniel Mack | f324edc | 2009-06-16 15:33:52 -0700 | [diff] [blame] | 3958 | mod_timer(&console_timer, jiffies + (blankinterval * HZ)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3959 | blank_state = blank_normal_wait; |
| 3960 | } |
| 3961 | } |
| 3962 | |
| 3963 | /* |
| 3964 | * Palettes |
| 3965 | */ |
| 3966 | |
| 3967 | static void set_palette(struct vc_data *vc) |
| 3968 | { |
| 3969 | WARN_CONSOLE_UNLOCKED(); |
| 3970 | |
Jiri Slaby | 709280d | 2016-06-23 13:34:27 +0200 | [diff] [blame] | 3971 | if (vc->vc_mode != KD_GRAPHICS && vc->vc_sw->con_set_palette) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3972 | vc->vc_sw->con_set_palette(vc, color_table); |
| 3973 | } |
| 3974 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3975 | /* |
| 3976 | * Load palette into the DAC registers. arg points to a colour |
| 3977 | * map, 3 bytes per colour, 16 colours, range from 0 to 255. |
| 3978 | */ |
| 3979 | |
| 3980 | int con_set_cmap(unsigned char __user *arg) |
| 3981 | { |
Michael Gehring | 871bdea | 2012-03-21 01:26:45 +0100 | [diff] [blame] | 3982 | int i, j, k; |
| 3983 | unsigned char colormap[3*16]; |
| 3984 | |
| 3985 | if (copy_from_user(colormap, arg, sizeof(colormap))) |
| 3986 | return -EFAULT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3987 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 3988 | console_lock(); |
Michael Gehring | 871bdea | 2012-03-21 01:26:45 +0100 | [diff] [blame] | 3989 | for (i = k = 0; i < 16; i++) { |
| 3990 | default_red[i] = colormap[k++]; |
| 3991 | default_grn[i] = colormap[k++]; |
| 3992 | default_blu[i] = colormap[k++]; |
| 3993 | } |
| 3994 | for (i = 0; i < MAX_NR_CONSOLES; i++) { |
| 3995 | if (!vc_cons_allocated(i)) |
| 3996 | continue; |
| 3997 | for (j = k = 0; j < 16; j++) { |
| 3998 | vc_cons[i].d->vc_palette[k++] = default_red[j]; |
| 3999 | vc_cons[i].d->vc_palette[k++] = default_grn[j]; |
| 4000 | vc_cons[i].d->vc_palette[k++] = default_blu[j]; |
| 4001 | } |
| 4002 | set_palette(vc_cons[i].d); |
| 4003 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 4004 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4005 | |
Michael Gehring | 871bdea | 2012-03-21 01:26:45 +0100 | [diff] [blame] | 4006 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4007 | } |
| 4008 | |
| 4009 | int con_get_cmap(unsigned char __user *arg) |
| 4010 | { |
Michael Gehring | 871bdea | 2012-03-21 01:26:45 +0100 | [diff] [blame] | 4011 | int i, k; |
| 4012 | unsigned char colormap[3*16]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4013 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 4014 | console_lock(); |
Michael Gehring | 871bdea | 2012-03-21 01:26:45 +0100 | [diff] [blame] | 4015 | for (i = k = 0; i < 16; i++) { |
| 4016 | colormap[k++] = default_red[i]; |
| 4017 | colormap[k++] = default_grn[i]; |
| 4018 | colormap[k++] = default_blu[i]; |
| 4019 | } |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 4020 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4021 | |
Michael Gehring | 871bdea | 2012-03-21 01:26:45 +0100 | [diff] [blame] | 4022 | if (copy_to_user(arg, colormap, sizeof(colormap))) |
| 4023 | return -EFAULT; |
| 4024 | |
| 4025 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4026 | } |
| 4027 | |
| 4028 | void reset_palette(struct vc_data *vc) |
| 4029 | { |
| 4030 | int j, k; |
| 4031 | for (j=k=0; j<16; j++) { |
| 4032 | vc->vc_palette[k++] = default_red[j]; |
| 4033 | vc->vc_palette[k++] = default_grn[j]; |
| 4034 | vc->vc_palette[k++] = default_blu[j]; |
| 4035 | } |
| 4036 | set_palette(vc); |
| 4037 | } |
| 4038 | |
| 4039 | /* |
| 4040 | * Font switching |
| 4041 | * |
| 4042 | * Currently we only support fonts up to 32 pixels wide, at a maximum height |
| 4043 | * of 32 pixels. Userspace fontdata is stored with 32 bytes (shorts/ints, |
| 4044 | * depending on width) reserved for each character which is kinda wasty, but |
| 4045 | * this is done in order to maintain compatibility with the EGA/VGA fonts. It |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 4046 | * is up to the actual low-level console-driver convert data into its favorite |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4047 | * format (maybe we should add a `fontoffset' field to the `display' |
| 4048 | * structure so we won't have to convert the fontdata all the time. |
| 4049 | * /Jes |
| 4050 | */ |
| 4051 | |
| 4052 | #define max_font_size 65536 |
| 4053 | |
| 4054 | static int con_font_get(struct vc_data *vc, struct console_font_op *op) |
| 4055 | { |
| 4056 | struct console_font font; |
| 4057 | int rc = -EINVAL; |
| 4058 | int c; |
| 4059 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4060 | if (op->data) { |
| 4061 | font.data = kmalloc(max_font_size, GFP_KERNEL); |
| 4062 | if (!font.data) |
| 4063 | return -ENOMEM; |
| 4064 | } else |
| 4065 | font.data = NULL; |
| 4066 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 4067 | console_lock(); |
Alan Cox | edab558 | 2012-03-02 14:59:08 +0000 | [diff] [blame] | 4068 | if (vc->vc_mode != KD_TEXT) |
| 4069 | rc = -EINVAL; |
| 4070 | else if (vc->vc_sw->con_font_get) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4071 | rc = vc->vc_sw->con_font_get(vc, &font); |
| 4072 | else |
| 4073 | rc = -ENOSYS; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 4074 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4075 | |
| 4076 | if (rc) |
| 4077 | goto out; |
| 4078 | |
| 4079 | c = (font.width+7)/8 * 32 * font.charcount; |
Alan Cox | 04f378b | 2008-04-30 00:53:29 -0700 | [diff] [blame] | 4080 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4081 | if (op->data && font.charcount > op->charcount) |
| 4082 | rc = -ENOSPC; |
| 4083 | if (!(op->flags & KD_FONT_FLAG_OLD)) { |
| 4084 | if (font.width > op->width || font.height > op->height) |
| 4085 | rc = -ENOSPC; |
| 4086 | } else { |
| 4087 | if (font.width != 8) |
| 4088 | rc = -EIO; |
| 4089 | else if ((op->height && font.height > op->height) || |
| 4090 | font.height > 32) |
| 4091 | rc = -ENOSPC; |
| 4092 | } |
| 4093 | if (rc) |
| 4094 | goto out; |
| 4095 | |
| 4096 | op->height = font.height; |
| 4097 | op->width = font.width; |
| 4098 | op->charcount = font.charcount; |
| 4099 | |
| 4100 | if (op->data && copy_to_user(op->data, font.data, c)) |
| 4101 | rc = -EFAULT; |
| 4102 | |
| 4103 | out: |
| 4104 | kfree(font.data); |
| 4105 | return rc; |
| 4106 | } |
| 4107 | |
| 4108 | static int con_font_set(struct vc_data *vc, struct console_font_op *op) |
| 4109 | { |
| 4110 | struct console_font font; |
| 4111 | int rc = -EINVAL; |
| 4112 | int size; |
| 4113 | |
| 4114 | if (vc->vc_mode != KD_TEXT) |
| 4115 | return -EINVAL; |
| 4116 | if (!op->data) |
| 4117 | return -EINVAL; |
| 4118 | if (op->charcount > 512) |
| 4119 | return -EINVAL; |
| 4120 | if (!op->height) { /* Need to guess font height [compat] */ |
| 4121 | int h, i; |
| 4122 | u8 __user *charmap = op->data; |
| 4123 | u8 tmp; |
| 4124 | |
| 4125 | /* If from KDFONTOP ioctl, don't allow things which can be done in userland, |
| 4126 | so that we can get rid of this soon */ |
| 4127 | if (!(op->flags & KD_FONT_FLAG_OLD)) |
| 4128 | return -EINVAL; |
| 4129 | for (h = 32; h > 0; h--) |
| 4130 | for (i = 0; i < op->charcount; i++) { |
| 4131 | if (get_user(tmp, &charmap[32*i+h-1])) |
| 4132 | return -EFAULT; |
| 4133 | if (tmp) |
| 4134 | goto nonzero; |
| 4135 | } |
| 4136 | return -EINVAL; |
| 4137 | nonzero: |
| 4138 | op->height = h; |
| 4139 | } |
| 4140 | if (op->width <= 0 || op->width > 32 || op->height > 32) |
| 4141 | return -EINVAL; |
| 4142 | size = (op->width+7)/8 * 32 * op->charcount; |
| 4143 | if (size > max_font_size) |
| 4144 | return -ENOSPC; |
| 4145 | font.charcount = op->charcount; |
| 4146 | font.height = op->height; |
| 4147 | font.width = op->width; |
Julia Lawall | 9b71ca2 | 2010-05-26 14:42:11 -0700 | [diff] [blame] | 4148 | font.data = memdup_user(op->data, size); |
| 4149 | if (IS_ERR(font.data)) |
| 4150 | return PTR_ERR(font.data); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 4151 | console_lock(); |
Alan Cox | edab558 | 2012-03-02 14:59:08 +0000 | [diff] [blame] | 4152 | if (vc->vc_mode != KD_TEXT) |
| 4153 | rc = -EINVAL; |
| 4154 | else if (vc->vc_sw->con_font_set) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4155 | rc = vc->vc_sw->con_font_set(vc, &font, op->flags); |
| 4156 | else |
| 4157 | rc = -ENOSYS; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 4158 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4159 | kfree(font.data); |
| 4160 | return rc; |
| 4161 | } |
| 4162 | |
| 4163 | static int con_font_default(struct vc_data *vc, struct console_font_op *op) |
| 4164 | { |
| 4165 | struct console_font font = {.width = op->width, .height = op->height}; |
| 4166 | char name[MAX_FONT_NAME]; |
| 4167 | char *s = name; |
| 4168 | int rc; |
| 4169 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4170 | |
| 4171 | if (!op->data) |
| 4172 | s = NULL; |
| 4173 | else if (strncpy_from_user(name, op->data, MAX_FONT_NAME - 1) < 0) |
| 4174 | return -EFAULT; |
| 4175 | else |
| 4176 | name[MAX_FONT_NAME - 1] = 0; |
| 4177 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 4178 | console_lock(); |
Alan Cox | edab558 | 2012-03-02 14:59:08 +0000 | [diff] [blame] | 4179 | if (vc->vc_mode != KD_TEXT) { |
| 4180 | console_unlock(); |
| 4181 | return -EINVAL; |
| 4182 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4183 | if (vc->vc_sw->con_font_default) |
| 4184 | rc = vc->vc_sw->con_font_default(vc, &font, s); |
| 4185 | else |
| 4186 | rc = -ENOSYS; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 4187 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4188 | if (!rc) { |
| 4189 | op->width = font.width; |
| 4190 | op->height = font.height; |
| 4191 | } |
| 4192 | return rc; |
| 4193 | } |
| 4194 | |
| 4195 | static int con_font_copy(struct vc_data *vc, struct console_font_op *op) |
| 4196 | { |
| 4197 | int con = op->height; |
| 4198 | int rc; |
| 4199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4200 | |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 4201 | console_lock(); |
Alan Cox | edab558 | 2012-03-02 14:59:08 +0000 | [diff] [blame] | 4202 | if (vc->vc_mode != KD_TEXT) |
| 4203 | rc = -EINVAL; |
| 4204 | else if (!vc->vc_sw->con_font_copy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4205 | rc = -ENOSYS; |
| 4206 | else if (con < 0 || !vc_cons_allocated(con)) |
| 4207 | rc = -ENOTTY; |
| 4208 | else if (con == vc->vc_num) /* nothing to do */ |
| 4209 | rc = 0; |
| 4210 | else |
| 4211 | rc = vc->vc_sw->con_font_copy(vc, con); |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 4212 | console_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4213 | return rc; |
| 4214 | } |
| 4215 | |
| 4216 | int con_font_op(struct vc_data *vc, struct console_font_op *op) |
| 4217 | { |
| 4218 | switch (op->op) { |
| 4219 | case KD_FONT_OP_SET: |
| 4220 | return con_font_set(vc, op); |
| 4221 | case KD_FONT_OP_GET: |
| 4222 | return con_font_get(vc, op); |
| 4223 | case KD_FONT_OP_SET_DEFAULT: |
| 4224 | return con_font_default(vc, op); |
| 4225 | case KD_FONT_OP_COPY: |
| 4226 | return con_font_copy(vc, op); |
| 4227 | } |
| 4228 | return -ENOSYS; |
| 4229 | } |
| 4230 | |
| 4231 | /* |
| 4232 | * Interface exported to selection and vcs. |
| 4233 | */ |
| 4234 | |
| 4235 | /* used by selection */ |
| 4236 | u16 screen_glyph(struct vc_data *vc, int offset) |
| 4237 | { |
| 4238 | u16 w = scr_readw(screenpos(vc, offset, 1)); |
| 4239 | u16 c = w & 0xff; |
| 4240 | |
| 4241 | if (w & vc->vc_hi_font_mask) |
| 4242 | c |= 0x100; |
| 4243 | return c; |
| 4244 | } |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 4245 | EXPORT_SYMBOL_GPL(screen_glyph); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4246 | |
| 4247 | /* used by vcs - note the word offset */ |
| 4248 | unsigned short *screen_pos(struct vc_data *vc, int w_offset, int viewed) |
| 4249 | { |
| 4250 | return screenpos(vc, 2 * w_offset, viewed); |
| 4251 | } |
Samuel Thibault | 88867e3 | 2016-01-25 01:32:08 +0100 | [diff] [blame] | 4252 | EXPORT_SYMBOL_GPL(screen_pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4253 | |
| 4254 | void getconsxy(struct vc_data *vc, unsigned char *p) |
| 4255 | { |
| 4256 | p[0] = vc->vc_x; |
| 4257 | p[1] = vc->vc_y; |
| 4258 | } |
| 4259 | |
| 4260 | void putconsxy(struct vc_data *vc, unsigned char *p) |
| 4261 | { |
Antonino A. Daplas | 9477e26 | 2006-02-01 03:06:52 -0800 | [diff] [blame] | 4262 | hide_cursor(vc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4263 | gotoxy(vc, p[0], p[1]); |
| 4264 | set_cursor(vc); |
| 4265 | } |
| 4266 | |
| 4267 | u16 vcs_scr_readw(struct vc_data *vc, const u16 *org) |
| 4268 | { |
| 4269 | if ((unsigned long)org == vc->vc_pos && softcursor_original != -1) |
| 4270 | return softcursor_original; |
| 4271 | return scr_readw(org); |
| 4272 | } |
| 4273 | |
| 4274 | void vcs_scr_writew(struct vc_data *vc, u16 val, u16 *org) |
| 4275 | { |
| 4276 | scr_writew(val, org); |
| 4277 | if ((unsigned long)org == vc->vc_pos) { |
| 4278 | softcursor_original = -1; |
| 4279 | add_softcursor(vc); |
| 4280 | } |
| 4281 | } |
| 4282 | |
Nicolas Pitre | 432c9ed | 2010-10-01 00:10:44 -0400 | [diff] [blame] | 4283 | void vcs_scr_updated(struct vc_data *vc) |
| 4284 | { |
| 4285 | notify_update(vc); |
| 4286 | } |
| 4287 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4288 | /* |
| 4289 | * Visible symbols for modules |
| 4290 | */ |
| 4291 | |
| 4292 | EXPORT_SYMBOL(color_table); |
| 4293 | EXPORT_SYMBOL(default_red); |
| 4294 | EXPORT_SYMBOL(default_grn); |
| 4295 | EXPORT_SYMBOL(default_blu); |
| 4296 | EXPORT_SYMBOL(update_region); |
| 4297 | EXPORT_SYMBOL(redraw_screen); |
| 4298 | EXPORT_SYMBOL(vc_resize); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4299 | EXPORT_SYMBOL(fg_console); |
| 4300 | EXPORT_SYMBOL(console_blank_hook); |
| 4301 | EXPORT_SYMBOL(console_blanked); |
| 4302 | EXPORT_SYMBOL(vc_cons); |
Matthew Garrett | f6c06b6 | 2009-11-13 15:14:11 -0500 | [diff] [blame] | 4303 | EXPORT_SYMBOL(global_cursor_default); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4304 | #ifndef VT_SINGLE_DRIVER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4305 | EXPORT_SYMBOL(give_up_console); |
| 4306 | #endif |