Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/include/linux/console.h |
| 3 | * |
| 4 | * Copyright (C) 1993 Hamish Macdonald |
| 5 | * |
| 6 | * This file is subject to the terms and conditions of the GNU General Public |
| 7 | * License. See the file COPYING in the main directory of this archive |
| 8 | * for more details. |
| 9 | * |
| 10 | * Changed: |
| 11 | * 10-Mar-94: Arno Griffioen: Conversion for vt100 emulator port from PC LINUX |
| 12 | */ |
| 13 | |
| 14 | #ifndef _LINUX_CONSOLE_H_ |
| 15 | #define _LINUX_CONSOLE_H_ 1 |
| 16 | |
Thomas Zimmermann | 56e6c10 | 2018-07-31 13:06:57 +0200 | [diff] [blame] | 17 | #include <linux/atomic.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
| 20 | struct vc_data; |
| 21 | struct console_font_op; |
| 22 | struct console_font; |
| 23 | struct module; |
Adrian Bunk | 1b13543 | 2007-02-10 01:45:02 -0800 | [diff] [blame] | 24 | struct tty_struct; |
Hans de Goede | 83d83be | 2018-06-28 15:20:30 +0200 | [diff] [blame] | 25 | struct notifier_block; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
| 27 | /* |
| 28 | * this is what the terminal answers to a ESC-Z or csi0c query. |
| 29 | */ |
| 30 | #define VT100ID "\033[?1;2c" |
| 31 | #define VT102ID "\033[?6c" |
| 32 | |
Jiri Slaby | d705ff3 | 2016-10-03 11:18:33 +0200 | [diff] [blame] | 33 | enum con_scroll { |
| 34 | SM_UP, |
| 35 | SM_DOWN, |
| 36 | }; |
| 37 | |
Jiri Slaby | 97293de | 2016-06-23 13:34:26 +0200 | [diff] [blame] | 38 | /** |
| 39 | * struct consw - callbacks for consoles |
| 40 | * |
Jiri Slaby | d705ff3 | 2016-10-03 11:18:33 +0200 | [diff] [blame] | 41 | * @con_scroll: move lines from @top to @bottom in direction @dir by @lines. |
| 42 | * Return true if no generic handling should be done. |
| 43 | * Invoked by csi_M and printing to the console. |
Jiri Slaby | 709280d | 2016-06-23 13:34:27 +0200 | [diff] [blame] | 44 | * @con_set_palette: sets the palette of the console to @table (optional) |
Jiri Slaby | 97293de | 2016-06-23 13:34:26 +0200 | [diff] [blame] | 45 | * @con_scrolldelta: the contents of the console should be scrolled by @lines. |
| 46 | * Invoked by user. (optional) |
| 47 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | struct consw { |
| 49 | struct module *owner; |
| 50 | const char *(*con_startup)(void); |
Kees Cook | 209f668 | 2018-02-26 16:04:19 -0800 | [diff] [blame] | 51 | void (*con_init)(struct vc_data *vc, int init); |
| 52 | void (*con_deinit)(struct vc_data *vc); |
| 53 | void (*con_clear)(struct vc_data *vc, int sy, int sx, int height, |
| 54 | int width); |
| 55 | void (*con_putc)(struct vc_data *vc, int c, int ypos, int xpos); |
| 56 | void (*con_putcs)(struct vc_data *vc, const unsigned short *s, |
| 57 | int count, int ypos, int xpos); |
| 58 | void (*con_cursor)(struct vc_data *vc, int mode); |
| 59 | bool (*con_scroll)(struct vc_data *vc, unsigned int top, |
Jiri Slaby | d705ff3 | 2016-10-03 11:18:33 +0200 | [diff] [blame] | 60 | unsigned int bottom, enum con_scroll dir, |
| 61 | unsigned int lines); |
Kees Cook | 209f668 | 2018-02-26 16:04:19 -0800 | [diff] [blame] | 62 | int (*con_switch)(struct vc_data *vc); |
| 63 | int (*con_blank)(struct vc_data *vc, int blank, int mode_switch); |
| 64 | int (*con_font_set)(struct vc_data *vc, struct console_font *font, |
| 65 | unsigned int flags); |
| 66 | int (*con_font_get)(struct vc_data *vc, struct console_font *font); |
| 67 | int (*con_font_default)(struct vc_data *vc, |
| 68 | struct console_font *font, char *name); |
| 69 | int (*con_font_copy)(struct vc_data *vc, int con); |
| 70 | int (*con_resize)(struct vc_data *vc, unsigned int width, |
| 71 | unsigned int height, unsigned int user); |
| 72 | void (*con_set_palette)(struct vc_data *vc, |
Jiri Slaby | 709280d | 2016-06-23 13:34:27 +0200 | [diff] [blame] | 73 | const unsigned char *table); |
Kees Cook | 209f668 | 2018-02-26 16:04:19 -0800 | [diff] [blame] | 74 | void (*con_scrolldelta)(struct vc_data *vc, int lines); |
| 75 | int (*con_set_origin)(struct vc_data *vc); |
| 76 | void (*con_save_screen)(struct vc_data *vc); |
| 77 | u8 (*con_build_attr)(struct vc_data *vc, u8 color, u8 intensity, |
| 78 | u8 blink, u8 underline, u8 reverse, u8 italic); |
| 79 | void (*con_invert_region)(struct vc_data *vc, u16 *p, int count); |
| 80 | u16 *(*con_screen_pos)(struct vc_data *vc, int offset); |
| 81 | unsigned long (*con_getxy)(struct vc_data *vc, unsigned long position, |
| 82 | int *px, int *py); |
Jesse Barnes | b45cfba | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 83 | /* |
Manuel Schölling | bcd375f | 2017-01-13 21:07:56 +0100 | [diff] [blame] | 84 | * Flush the video console driver's scrollback buffer |
| 85 | */ |
Kees Cook | 209f668 | 2018-02-26 16:04:19 -0800 | [diff] [blame] | 86 | void (*con_flush_scrollback)(struct vc_data *vc); |
Manuel Schölling | bcd375f | 2017-01-13 21:07:56 +0100 | [diff] [blame] | 87 | /* |
Jesse Barnes | b45cfba | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 88 | * Prepare the console for the debugger. This includes, but is not |
| 89 | * limited to, unblanking the console, loading an appropriate |
| 90 | * palette, and allowing debugger generated output. |
| 91 | */ |
Kees Cook | 209f668 | 2018-02-26 16:04:19 -0800 | [diff] [blame] | 92 | int (*con_debug_enter)(struct vc_data *vc); |
Jesse Barnes | b45cfba | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 93 | /* |
| 94 | * Restore the console to its pre-debug state as closely as possible. |
| 95 | */ |
Kees Cook | 209f668 | 2018-02-26 16:04:19 -0800 | [diff] [blame] | 96 | int (*con_debug_leave)(struct vc_data *vc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | }; |
| 98 | |
| 99 | extern const struct consw *conswitchp; |
| 100 | |
| 101 | extern const struct consw dummy_con; /* dummy console buffer */ |
| 102 | extern const struct consw vga_con; /* VGA text console */ |
| 103 | extern const struct consw newport_con; /* SGI Newport console */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
Antonino A. Daplas | 3e795de | 2006-06-26 00:27:08 -0700 | [diff] [blame] | 105 | int con_is_bound(const struct consw *csw); |
Takashi Iwai | e93a9a8 | 2013-01-25 10:28:18 +1000 | [diff] [blame] | 106 | int do_unregister_con_driver(const struct consw *csw); |
Alan Cox | 50e244c | 2013-01-25 10:28:15 +1000 | [diff] [blame] | 107 | int do_take_over_console(const struct consw *sw, int first, int last, int deflt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | void give_up_console(const struct consw *sw); |
Jason Wessel | 9261ec1 | 2010-08-06 15:36:47 -0500 | [diff] [blame] | 109 | #ifdef CONFIG_HW_CONSOLE |
Jesse Barnes | b45cfba | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 110 | int con_debug_enter(struct vc_data *vc); |
| 111 | int con_debug_leave(void); |
Jason Wessel | 9261ec1 | 2010-08-06 15:36:47 -0500 | [diff] [blame] | 112 | #else |
Arnd Bergmann | f2f0945 | 2012-09-28 23:36:14 +0200 | [diff] [blame] | 113 | static inline int con_debug_enter(struct vc_data *vc) |
| 114 | { |
| 115 | return 0; |
| 116 | } |
| 117 | static inline int con_debug_leave(void) |
| 118 | { |
| 119 | return 0; |
| 120 | } |
Jason Wessel | 9261ec1 | 2010-08-06 15:36:47 -0500 | [diff] [blame] | 121 | #endif |
Jesse Barnes | b45cfba | 2010-08-05 09:22:30 -0500 | [diff] [blame] | 122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | /* cursor */ |
| 124 | #define CM_DRAW (1) |
| 125 | #define CM_ERASE (2) |
| 126 | #define CM_MOVE (3) |
| 127 | |
| 128 | /* |
| 129 | * The interface for a console, or any other device that wants to capture |
| 130 | * console messages (printer driver?) |
| 131 | * |
| 132 | * If a console driver is marked CON_BOOT then it will be auto-unregistered |
| 133 | * when the first real console is registered. This is for early-printk drivers. |
| 134 | */ |
| 135 | |
| 136 | #define CON_PRINTBUFFER (1) |
| 137 | #define CON_CONSDEV (2) /* Last on the command line */ |
| 138 | #define CON_ENABLED (4) |
| 139 | #define CON_BOOT (8) |
Michael Ellerman | 76a8ad29 | 2006-06-25 05:47:40 -0700 | [diff] [blame] | 140 | #define CON_ANYTIME (16) /* Safe to call when cpu is offline */ |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 141 | #define CON_BRL (32) /* Used for a braille device */ |
Tejun Heo | 6fe2935 | 2015-06-25 15:01:30 -0700 | [diff] [blame] | 142 | #define CON_EXTENDED (64) /* Use the extended output format a la /dev/kmsg */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
Andrew Morton | 6ae9200 | 2007-05-08 00:26:47 -0700 | [diff] [blame] | 144 | struct console { |
| 145 | char name[16]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | void (*write)(struct console *, const char *, unsigned); |
| 147 | int (*read)(struct console *, char *, unsigned); |
| 148 | struct tty_driver *(*device)(struct console *, int *); |
| 149 | void (*unblank)(void); |
| 150 | int (*setup)(struct console *, char *); |
Peter Hurley | c7cef0a | 2015-03-09 16:27:12 -0400 | [diff] [blame] | 151 | int (*match)(struct console *, char *name, int idx, char *options); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | short flags; |
| 153 | short index; |
| 154 | int cflag; |
| 155 | void *data; |
| 156 | struct console *next; |
| 157 | }; |
| 158 | |
Jiri Slaby | a75d946 | 2010-11-04 16:20:20 +0100 | [diff] [blame] | 159 | /* |
| 160 | * for_each_console() allows you to iterate on each console |
| 161 | */ |
| 162 | #define for_each_console(con) \ |
| 163 | for (con = console_drivers; con != NULL; con = con->next) |
| 164 | |
Markus Armbruster | 9e124fe | 2008-05-26 23:31:07 +0100 | [diff] [blame] | 165 | extern int console_set_on_cmdline; |
Thomas Gleixner | d0380e6 | 2013-04-29 16:17:18 -0700 | [diff] [blame] | 166 | extern struct console *early_console; |
Markus Armbruster | 9e124fe | 2008-05-26 23:31:07 +0100 | [diff] [blame] | 167 | |
Feng Tang | de6da1e | 2019-05-17 14:31:50 -0700 | [diff] [blame] | 168 | enum con_flush_mode { |
| 169 | CONSOLE_FLUSH_PENDING, |
| 170 | CONSOLE_REPLAY_ALL, |
| 171 | }; |
| 172 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | extern int add_preferred_console(char *name, int idx, char *options); |
| 174 | extern void register_console(struct console *); |
| 175 | extern int unregister_console(struct console *); |
| 176 | extern struct console *console_drivers; |
Torben Hohn | ac751ef | 2011-01-25 15:07:35 -0800 | [diff] [blame] | 177 | extern void console_lock(void); |
| 178 | extern int console_trylock(void); |
| 179 | extern void console_unlock(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | extern void console_conditional_schedule(void); |
| 181 | extern void console_unblank(void); |
Feng Tang | de6da1e | 2019-05-17 14:31:50 -0700 | [diff] [blame] | 182 | extern void console_flush_on_panic(enum con_flush_mode mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | extern struct tty_driver *console_device(int *); |
| 184 | extern void console_stop(struct console *); |
| 185 | extern void console_start(struct console *); |
| 186 | extern int is_console_locked(void); |
Samuel Thibault | f7511d5 | 2008-04-30 00:54:51 -0700 | [diff] [blame] | 187 | extern int braille_register_console(struct console *, int index, |
| 188 | char *console_options, char *braille_options); |
| 189 | extern int braille_unregister_console(struct console *); |
Joe Millenbach | 4f73bc4 | 2013-01-17 22:44:22 -0800 | [diff] [blame] | 190 | #ifdef CONFIG_TTY |
Kay Sievers | fbc92a3 | 2010-12-01 18:51:05 +0100 | [diff] [blame] | 191 | extern void console_sysfs_notify(void); |
Joe Millenbach | 4f73bc4 | 2013-01-17 22:44:22 -0800 | [diff] [blame] | 192 | #else |
| 193 | static inline void console_sysfs_notify(void) |
| 194 | { } |
| 195 | #endif |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 196 | extern bool console_suspend_enabled; |
Andres Salomon | 8f4ce8c | 2007-10-18 03:04:50 -0700 | [diff] [blame] | 197 | |
Linus Torvalds | 557240b | 2006-06-19 18:16:01 -0700 | [diff] [blame] | 198 | /* Suspend and resume console messages over PM events */ |
| 199 | extern void suspend_console(void); |
| 200 | extern void resume_console(void); |
| 201 | |
Adrian Bunk | 3cb340e | 2006-10-03 01:15:06 -0700 | [diff] [blame] | 202 | int mda_console_init(void); |
Adrian Bunk | 3cb340e | 2006-10-03 01:15:06 -0700 | [diff] [blame] | 203 | |
Kay Sievers | 4995f8e | 2009-03-09 14:18:52 +0100 | [diff] [blame] | 204 | void vcs_make_sysfs(int index); |
| 205 | void vcs_remove_sysfs(int index); |
Adrian Bunk | 1b13543 | 2007-02-10 01:45:02 -0800 | [diff] [blame] | 206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | /* Some debug stub to catch some of the obvious races in the VT code */ |
Thomas Zimmermann | 56e6c10 | 2018-07-31 13:06:57 +0200 | [diff] [blame] | 208 | #define WARN_CONSOLE_UNLOCKED() \ |
| 209 | WARN_ON(!atomic_read(&ignore_console_lock_warning) && \ |
| 210 | !is_console_locked() && !oops_in_progress) |
| 211 | /* |
| 212 | * Increment ignore_console_lock_warning if you need to quiet |
| 213 | * WARN_CONSOLE_UNLOCKED() for debugging purposes. |
| 214 | */ |
| 215 | extern atomic_t ignore_console_lock_warning; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
| 217 | /* VESA Blanking Levels */ |
| 218 | #define VESA_NO_BLANKING 0 |
| 219 | #define VESA_VSYNC_SUSPEND 1 |
| 220 | #define VESA_HSYNC_SUSPEND 2 |
| 221 | #define VESA_POWERDOWN 3 |
| 222 | |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 223 | #ifdef CONFIG_VGA_CONSOLE |
| 224 | extern bool vgacon_text_force(void); |
Daniel Vetter | 44debe7 | 2016-03-30 11:26:35 +0200 | [diff] [blame] | 225 | #else |
| 226 | static inline bool vgacon_text_force(void) { return false; } |
Dave Airlie | f453ba0 | 2008-11-07 14:05:41 -0800 | [diff] [blame] | 227 | #endif |
| 228 | |
Nicolas Pitre | 0c68861 | 2017-04-12 18:37:14 -0400 | [diff] [blame] | 229 | extern void console_init(void); |
| 230 | |
Hans de Goede | 83d83be | 2018-06-28 15:20:30 +0200 | [diff] [blame] | 231 | /* For deferred console takeover */ |
| 232 | void dummycon_register_output_notifier(struct notifier_block *nb); |
| 233 | void dummycon_unregister_output_notifier(struct notifier_block *nb); |
| 234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | #endif /* _LINUX_CONSOLE_H */ |