Merge tag 'gpio-v4.19-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6-block.git] / include / linux / console.h
CommitLineData
1da177e4
LT
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
56e6c104 17#include <linux/atomic.h>
1da177e4 18#include <linux/types.h>
1da177e4
LT
19
20struct vc_data;
21struct console_font_op;
22struct console_font;
23struct module;
1b135431 24struct tty_struct;
83d83beb 25struct notifier_block;
1da177e4
LT
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
d705ff38
JS
33enum con_scroll {
34 SM_UP,
35 SM_DOWN,
36};
37
97293de9
JS
38/**
39 * struct consw - callbacks for consoles
40 *
d705ff38
JS
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.
709280da 44 * @con_set_palette: sets the palette of the console to @table (optional)
97293de9
JS
45 * @con_scrolldelta: the contents of the console should be scrolled by @lines.
46 * Invoked by user. (optional)
47 */
1da177e4
LT
48struct consw {
49 struct module *owner;
50 const char *(*con_startup)(void);
209f668c
KC
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,
d705ff38
JS
60 unsigned int bottom, enum con_scroll dir,
61 unsigned int lines);
209f668c
KC
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,
709280da 73 const unsigned char *table);
209f668c
KC
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);
bcd375f7
MS
83 /*
84 * Flush the video console driver's scrollback buffer
85 */
209f668c 86 void (*con_flush_scrollback)(struct vc_data *vc);
b45cfba4
JB
87 /*
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 */
209f668c 92 int (*con_debug_enter)(struct vc_data *vc);
b45cfba4
JB
93 /*
94 * Restore the console to its pre-debug state as closely as possible.
95 */
209f668c 96 int (*con_debug_leave)(struct vc_data *vc);
1da177e4
LT
97};
98
99extern const struct consw *conswitchp;
100
101extern const struct consw dummy_con; /* dummy console buffer */
102extern const struct consw vga_con; /* VGA text console */
103extern const struct consw newport_con; /* SGI Newport console */
104extern const struct consw prom_con; /* SPARC PROM console */
105
3e795de7 106int con_is_bound(const struct consw *csw);
e93a9a86 107int do_unregister_con_driver(const struct consw *csw);
50e244cc 108int do_take_over_console(const struct consw *sw, int first, int last, int deflt);
1da177e4 109void give_up_console(const struct consw *sw);
9261ec1a 110#ifdef CONFIG_HW_CONSOLE
b45cfba4
JB
111int con_debug_enter(struct vc_data *vc);
112int con_debug_leave(void);
9261ec1a 113#else
f2f0945e
AB
114static inline int con_debug_enter(struct vc_data *vc)
115{
116 return 0;
117}
118static inline int con_debug_leave(void)
119{
120 return 0;
121}
9261ec1a 122#endif
b45cfba4 123
1da177e4
LT
124/* cursor */
125#define CM_DRAW (1)
126#define CM_ERASE (2)
127#define CM_MOVE (3)
128
129/*
130 * The interface for a console, or any other device that wants to capture
131 * console messages (printer driver?)
132 *
133 * If a console driver is marked CON_BOOT then it will be auto-unregistered
134 * when the first real console is registered. This is for early-printk drivers.
135 */
136
137#define CON_PRINTBUFFER (1)
138#define CON_CONSDEV (2) /* Last on the command line */
139#define CON_ENABLED (4)
140#define CON_BOOT (8)
76a8ad29 141#define CON_ANYTIME (16) /* Safe to call when cpu is offline */
f7511d5f 142#define CON_BRL (32) /* Used for a braille device */
6fe29354 143#define CON_EXTENDED (64) /* Use the extended output format a la /dev/kmsg */
1da177e4 144
6ae9200f
AM
145struct console {
146 char name[16];
1da177e4
LT
147 void (*write)(struct console *, const char *, unsigned);
148 int (*read)(struct console *, char *, unsigned);
149 struct tty_driver *(*device)(struct console *, int *);
150 void (*unblank)(void);
151 int (*setup)(struct console *, char *);
c7cef0a8 152 int (*match)(struct console *, char *name, int idx, char *options);
1da177e4
LT
153 short flags;
154 short index;
155 int cflag;
156 void *data;
157 struct console *next;
158};
159
a75d946f
JS
160/*
161 * for_each_console() allows you to iterate on each console
162 */
163#define for_each_console(con) \
164 for (con = console_drivers; con != NULL; con = con->next)
165
9e124fe1 166extern int console_set_on_cmdline;
d0380e6c 167extern struct console *early_console;
9e124fe1 168
1da177e4
LT
169extern int add_preferred_console(char *name, int idx, char *options);
170extern void register_console(struct console *);
171extern int unregister_console(struct console *);
172extern struct console *console_drivers;
ac751efa
TH
173extern void console_lock(void);
174extern int console_trylock(void);
175extern void console_unlock(void);
1da177e4
LT
176extern void console_conditional_schedule(void);
177extern void console_unblank(void);
8d91f8b1 178extern void console_flush_on_panic(void);
1da177e4
LT
179extern struct tty_driver *console_device(int *);
180extern void console_stop(struct console *);
181extern void console_start(struct console *);
182extern int is_console_locked(void);
f7511d5f
ST
183extern int braille_register_console(struct console *, int index,
184 char *console_options, char *braille_options);
185extern int braille_unregister_console(struct console *);
4f73bc4d 186#ifdef CONFIG_TTY
fbc92a34 187extern void console_sysfs_notify(void);
4f73bc4d
JM
188#else
189static inline void console_sysfs_notify(void)
190{ }
191#endif
90ab5ee9 192extern bool console_suspend_enabled;
8f4ce8c3 193
557240b4
LT
194/* Suspend and resume console messages over PM events */
195extern void suspend_console(void);
196extern void resume_console(void);
197
3cb340ec
AB
198int mda_console_init(void);
199void prom_con_init(void);
200
4995f8ef
KS
201void vcs_make_sysfs(int index);
202void vcs_remove_sysfs(int index);
1b135431 203
1da177e4 204/* Some debug stub to catch some of the obvious races in the VT code */
56e6c104
TZ
205#define WARN_CONSOLE_UNLOCKED() \
206 WARN_ON(!atomic_read(&ignore_console_lock_warning) && \
207 !is_console_locked() && !oops_in_progress)
208/*
209 * Increment ignore_console_lock_warning if you need to quiet
210 * WARN_CONSOLE_UNLOCKED() for debugging purposes.
211 */
212extern atomic_t ignore_console_lock_warning;
1da177e4
LT
213
214/* VESA Blanking Levels */
215#define VESA_NO_BLANKING 0
216#define VESA_VSYNC_SUSPEND 1
217#define VESA_HSYNC_SUSPEND 2
218#define VESA_POWERDOWN 3
219
f453ba04
DA
220#ifdef CONFIG_VGA_CONSOLE
221extern bool vgacon_text_force(void);
44debe7a
DV
222#else
223static inline bool vgacon_text_force(void) { return false; }
f453ba04
DA
224#endif
225
0c688614
NP
226extern void console_init(void);
227
83d83beb
HG
228/* For deferred console takeover */
229void dummycon_register_output_notifier(struct notifier_block *nb);
230void dummycon_unregister_output_notifier(struct notifier_block *nb);
231
1da177e4 232#endif /* _LINUX_CONSOLE_H */