Release 4.7 include/linux/console.h
/*
* linux/include/linux/console.h
*
* Copyright (C) 1993 Hamish Macdonald
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of this archive
* for more details.
*
* Changed:
* 10-Mar-94: Arno Griffioen: Conversion for vt100 emulator port from PC LINUX
*/
#ifndef _LINUX_CONSOLE_H_
#define _LINUX_CONSOLE_H_ 1
#include <linux/types.h>
struct vc_data;
struct console_font_op;
struct console_font;
struct module;
struct tty_struct;
/*
* this is what the terminal answers to a ESC-Z or csi0c query.
*/
#define VT100ID "\033[?1;2c"
#define VT102ID "\033[?6c"
struct consw {
struct module *owner;
const char *(*con_startup)(void);
void (*con_init)(struct vc_data *, int);
void (*con_deinit)(struct vc_data *);
void (*con_clear)(struct vc_data *, int, int, int, int);
void (*con_putc)(struct vc_data *, int, int, int);
void (*con_putcs)(struct vc_data *, const unsigned short *, int, int, int);
void (*con_cursor)(struct vc_data *, int);
int (*con_scroll)(struct vc_data *, int, int, int, int);
void (*con_bmove)(struct vc_data *, int, int, int, int, int, int);
int (*con_switch)(struct vc_data *);
int (*con_blank)(struct vc_data *, int, int);
int (*con_font_set)(struct vc_data *, struct console_font *, unsigned);
int (*con_font_get)(struct vc_data *, struct console_font *);
int (*con_font_default)(struct vc_data *, struct console_font *, char *);
int (*con_font_copy)(struct vc_data *, int);
int (*con_resize)(struct vc_data *, unsigned int, unsigned int,
unsigned int);
int (*con_set_palette)(struct vc_data *, const unsigned char *);
int (*con_scrolldelta)(struct vc_data *, int);
int (*con_set_origin)(struct vc_data *);
void (*con_save_screen)(struct vc_data *);
u8 (*con_build_attr)(struct vc_data *, u8, u8, u8, u8, u8, u8);
void (*con_invert_region)(struct vc_data *, u16 *, int);
u16 *(*con_screen_pos)(struct vc_data *, int);
unsigned long (*con_getxy)(struct vc_data *, unsigned long, int *, int *);
/*
* Prepare the console for the debugger. This includes, but is not
* limited to, unblanking the console, loading an appropriate
* palette, and allowing debugger generated output.
*/
int (*con_debug_enter)(struct vc_data *);
/*
* Restore the console to its pre-debug state as closely as possible.
*/
int (*con_debug_leave)(struct vc_data *);
};
extern const struct consw *conswitchp;
extern const struct consw dummy_con; /* dummy console buffer */
extern const struct consw vga_con; /* VGA text console */
extern const struct consw newport_con; /* SGI Newport console */
extern const struct consw prom_con; /* SPARC PROM console */
int con_is_bound(const struct consw *csw);
int do_unregister_con_driver(const struct consw *csw);
int do_take_over_console(const struct consw *sw, int first, int last, int deflt);
void give_up_console(const struct consw *sw);
#ifdef CONFIG_HW_CONSOLE
int con_debug_enter(struct vc_data *vc);
int con_debug_leave(void);
#else
static inline int con_debug_enter(struct vc_data *vc)
{
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
arnd bergmann | arnd bergmann | 11 | 73.33% | 1 | 50.00% |
jason wessel | jason wessel | 4 | 26.67% | 1 | 50.00% |
| Total | 15 | 100.00% | 2 | 100.00% |
static inline int con_debug_leave(void)
{
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
arnd bergmann | arnd bergmann | 11 | 91.67% | 1 | 50.00% |
jason wessel | jason wessel | 1 | 8.33% | 1 | 50.00% |
| Total | 12 | 100.00% | 2 | 100.00% |
#endif
/* scroll */
#define SM_UP (1)
#define SM_DOWN (2)
/* cursor */
#define CM_DRAW (1)
#define CM_ERASE (2)
#define CM_MOVE (3)
/*
* The interface for a console, or any other device that wants to capture
* console messages (printer driver?)
*
* If a console driver is marked CON_BOOT then it will be auto-unregistered
* when the first real console is registered. This is for early-printk drivers.
*/
#define CON_PRINTBUFFER (1)
#define CON_CONSDEV (2)
/* Last on the command line */
#define CON_ENABLED (4)
#define CON_BOOT (8)
#define CON_ANYTIME (16)
/* Safe to call when cpu is offline */
#define CON_BRL (32)
/* Used for a braille device */
#define CON_EXTENDED (64)
/* Use the extended output format a la /dev/kmsg */
struct console {
char name[16];
void (*write)(struct console *, const char *, unsigned);
int (*read)(struct console *, char *, unsigned);
struct tty_driver *(*device)(struct console *, int *);
void (*unblank)(void);
int (*setup)(struct console *, char *);
int (*match)(struct console *, char *name, int idx, char *options);
short flags;
short index;
int cflag;
void *data;
struct console *next;
};
/*
* for_each_console() allows you to iterate on each console
*/
#define for_each_console(con) \
for (con = console_drivers; con != NULL; con = con->next)
extern int console_set_on_cmdline;
extern struct console *early_console;
extern int add_preferred_console(char *name, int idx, char *options);
extern void register_console(struct console *);
extern int unregister_console(struct console *);
extern struct console *console_drivers;
extern void console_lock(void);
extern int console_trylock(void);
extern void console_unlock(void);
extern void console_conditional_schedule(void);
extern void console_unblank(void);
extern void console_flush_on_panic(void);
extern struct tty_driver *console_device(int *);
extern void console_stop(struct console *);
extern void console_start(struct console *);
extern int is_console_locked(void);
extern int braille_register_console(struct console *, int index,
char *console_options, char *braille_options);
extern int braille_unregister_console(struct console *);
#ifdef CONFIG_TTY
extern void console_sysfs_notify(void);
#else
static inline void console_sysfs_notify(void)
{ }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
joe millenbach | joe millenbach | 8 | 100.00% | 1 | 100.00% |
| Total | 8 | 100.00% | 1 | 100.00% |
#endif
extern bool console_suspend_enabled;
/* Suspend and resume console messages over PM events */
extern void suspend_console(void);
extern void resume_console(void);
int mda_console_init(void);
void prom_con_init(void);
void vcs_make_sysfs(int index);
void vcs_remove_sysfs(int index);
/* Some debug stub to catch some of the obvious races in the VT code */
#if 1
#define WARN_CONSOLE_UNLOCKED() WARN_ON(!is_console_locked() && !oops_in_progress)
#else
#define WARN_CONSOLE_UNLOCKED()
#endif
/* VESA Blanking Levels */
#define VESA_NO_BLANKING 0
#define VESA_VSYNC_SUSPEND 1
#define VESA_HSYNC_SUSPEND 2
#define VESA_POWERDOWN 3
#ifdef CONFIG_VGA_CONSOLE
extern bool vgacon_text_force(void);
#else
static inline bool vgacon_text_force(void) { return false; }
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
daniel vetter | daniel vetter | 12 | 100.00% | 1 | 100.00% |
| Total | 12 | 100.00% | 1 | 100.00% |
#endif
#endif /* _LINUX_CONSOLE_H */
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
pre-git | pre-git | 550 | 52.03% | 18 | 27.27% |
al viro | al viro | 65 | 6.15% | 7 | 10.61% |
linus torvalds | linus torvalds | 41 | 3.88% | 3 | 4.55% |
jesse barnes | jesse barnes | 39 | 3.69% | 1 | 1.52% |
andrew morton | andrew morton | 36 | 3.41% | 4 | 6.06% |
samuel thibault | samuel thibault | 34 | 3.22% | 1 | 1.52% |
russell king | russell king | 28 | 2.65% | 2 | 3.03% |
adrian bunk | adrian bunk | 25 | 2.37% | 2 | 3.03% |
arnd bergmann | arnd bergmann | 22 | 2.08% | 1 | 1.52% |
alan cox | alan cox | 19 | 1.80% | 1 | 1.52% |
james simmons | james simmons | 17 | 1.61% | 1 | 1.52% |
keith m. wesolowski | keith m. wesolowski | 16 | 1.51% | 1 | 1.52% |
joe millenbach | joe millenbach | 15 | 1.42% | 1 | 1.52% |
peter hurley | peter hurley | 15 | 1.42% | 1 | 1.52% |
daniel vetter | daniel vetter | 14 | 1.32% | 1 | 1.52% |
antonino daplas | antonino daplas | 13 | 1.23% | 2 | 3.03% |
dave airlie | dave airlie | 12 | 1.14% | 1 | 1.52% |
tejun heo | tejun heo | 12 | 1.14% | 2 | 3.03% |
jason wessel | jason wessel | 12 | 1.14% | 1 | 1.52% |
kay sievers | kay sievers | 11 | 1.04% | 2 | 3.03% |
jiri slaby | jiri slaby | 10 | 0.95% | 2 | 3.03% |
takashi iwai | takashi iwai | 9 | 0.85% | 1 | 1.52% |
yinghai lu | yinghai lu | 7 | 0.66% | 1 | 1.52% |
benjamin herrenschmidt | benjamin herrenschmidt | 6 | 0.57% | 1 | 1.52% |
thomas gleixner | thomas gleixner | 6 | 0.57% | 1 | 1.52% |
michael ellerman | michael ellerman | 5 | 0.47% | 1 | 1.52% |
matthew wilcox | matthew wilcox | 5 | 0.47% | 1 | 1.52% |
markus armbruster | markus armbruster | 4 | 0.38% | 1 | 1.52% |
torben hohn | torben hohn | 3 | 0.28% | 1 | 1.52% |
andres salomon | andres salomon | 3 | 0.28% | 1 | 1.52% |
jan engelhardt | jan engelhardt | 2 | 0.19% | 1 | 1.52% |
rusty russell | rusty russell | 1 | 0.09% | 1 | 1.52% |
| Total | 1057 | 100.00% | 66 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.