console.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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. #ifndef _LINUX_CONSOLE_H_
  14. #define _LINUX_CONSOLE_H_ 1
  15. #include <linux/types.h>
  16. #include <linux/spinlock.h>
  17. struct vc_data;
  18. struct console_font_op;
  19. struct console_font;
  20. struct module;
  21. /*
  22.  * this is what the terminal answers to a ESC-Z or csi0c query.
  23.  */
  24. #define VT100ID "33[?1;2c"
  25. #define VT102ID "33[?6c"
  26. struct consw {
  27. struct module *owner;
  28. const char *(*con_startup)(void);
  29. void (*con_init)(struct vc_data *, int);
  30. void (*con_deinit)(struct vc_data *);
  31. void (*con_clear)(struct vc_data *, int, int, int, int);
  32. void (*con_putc)(struct vc_data *, int, int, int);
  33. void (*con_putcs)(struct vc_data *, const unsigned short *, int, int, int);
  34. void (*con_cursor)(struct vc_data *, int);
  35. int (*con_scroll)(struct vc_data *, int, int, int, int);
  36. void (*con_bmove)(struct vc_data *, int, int, int, int, int, int);
  37. int (*con_switch)(struct vc_data *);
  38. int (*con_blank)(struct vc_data *, int, int);
  39. int (*con_font_set)(struct vc_data *, struct console_font *, unsigned);
  40. int (*con_font_get)(struct vc_data *, struct console_font *);
  41. int (*con_font_default)(struct vc_data *, struct console_font *, char *);
  42. int (*con_font_copy)(struct vc_data *, int);
  43. int (*con_resize)(struct vc_data *, unsigned int, unsigned int);
  44. int (*con_set_palette)(struct vc_data *, unsigned char *);
  45. int (*con_scrolldelta)(struct vc_data *, int);
  46. int (*con_set_origin)(struct vc_data *);
  47. void (*con_save_screen)(struct vc_data *);
  48. u8 (*con_build_attr)(struct vc_data *, u8, u8, u8, u8, u8);
  49. void (*con_invert_region)(struct vc_data *, u16 *, int);
  50. u16    *(*con_screen_pos)(struct vc_data *, int);
  51. unsigned long (*con_getxy)(struct vc_data *, unsigned long, int *, int *);
  52. };
  53. extern const struct consw *conswitchp;
  54. extern const struct consw dummy_con; /* dummy console buffer */
  55. extern const struct consw vga_con; /* VGA text console */
  56. extern const struct consw newport_con; /* SGI Newport console  */
  57. extern const struct consw prom_con; /* SPARC PROM console */
  58. int take_over_console(const struct consw *sw, int first, int last, int deflt);
  59. void give_up_console(const struct consw *sw);
  60. /* scroll */
  61. #define SM_UP       (1)
  62. #define SM_DOWN     (2)
  63. /* cursor */
  64. #define CM_DRAW     (1)
  65. #define CM_ERASE    (2)
  66. #define CM_MOVE     (3)
  67. /*
  68.  * The interface for a console, or any other device that wants to capture
  69.  * console messages (printer driver?)
  70.  *
  71.  * If a console driver is marked CON_BOOT then it will be auto-unregistered
  72.  * when the first real console is registered.  This is for early-printk drivers.
  73.  */
  74. #define CON_PRINTBUFFER (1)
  75. #define CON_CONSDEV (2) /* Last on the command line */
  76. #define CON_ENABLED (4)
  77. #define CON_BOOT (8)
  78. struct console
  79. {
  80. char name[8];
  81. void (*write)(struct console *, const char *, unsigned);
  82. int (*read)(struct console *, char *, unsigned);
  83. struct tty_driver *(*device)(struct console *, int *);
  84. void (*unblank)(void);
  85. int (*setup)(struct console *, char *);
  86. short flags;
  87. short index;
  88. int cflag;
  89. void *data;
  90. struct  console *next;
  91. };
  92. extern int add_preferred_console(char *name, int idx, char *options);
  93. extern void register_console(struct console *);
  94. extern int unregister_console(struct console *);
  95. extern struct console *console_drivers;
  96. extern void acquire_console_sem(void);
  97. extern int try_acquire_console_sem(void);
  98. extern void release_console_sem(void);
  99. extern void console_conditional_schedule(void);
  100. extern void console_unblank(void);
  101. extern struct tty_driver *console_device(int *);
  102. extern void console_stop(struct console *);
  103. extern void console_start(struct console *);
  104. extern int is_console_locked(void);
  105. /* Some debug stub to catch some of the obvious races in the VT code */
  106. #if 1
  107. #define WARN_CONSOLE_UNLOCKED() WARN_ON(!is_console_locked() && !oops_in_progress)
  108. #else
  109. #define WARN_CONSOLE_UNLOCKED()
  110. #endif
  111. /* VESA Blanking Levels */
  112. #define VESA_NO_BLANKING        0
  113. #define VESA_VSYNC_SUSPEND      1
  114. #define VESA_HSYNC_SUSPEND      2
  115. #define VESA_POWERDOWN          3
  116. #endif /* _LINUX_CONSOLE_H */