console.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

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/kdev_t.h>
  17. #include <linux/spinlock.h>
  18. struct vc_data;
  19. struct console_font_op;
  20. /*
  21.  * this is what the terminal answers to a ESC-Z or csi0c query.
  22.  */
  23. #define VT100ID "33[?1;2c"
  24. #define VT102ID "33[?6c"
  25. struct consw {
  26. const char *(*con_startup)(void);
  27. void (*con_init)(struct vc_data *, int);
  28. void (*con_deinit)(struct vc_data *);
  29. void (*con_clear)(struct vc_data *, int, int, int, int);
  30. void (*con_putc)(struct vc_data *, int, int, int);
  31. void (*con_putcs)(struct vc_data *, const unsigned short *, int, int, int);
  32. void (*con_cursor)(struct vc_data *, int);
  33. int (*con_scroll)(struct vc_data *, int, int, int, int);
  34. void (*con_bmove)(struct vc_data *, int, int, int, int, int, int);
  35. int (*con_switch)(struct vc_data *);
  36. int (*con_blank)(struct vc_data *, int);
  37. int (*con_font_op)(struct vc_data *, struct console_font_op *);
  38. int (*con_set_palette)(struct vc_data *, unsigned char *);
  39. int (*con_scrolldelta)(struct vc_data *, int);
  40. int (*con_set_origin)(struct vc_data *);
  41. void (*con_save_screen)(struct vc_data *);
  42. u8 (*con_build_attr)(struct vc_data *, u8, u8, u8, u8, u8);
  43. void (*con_invert_region)(struct vc_data *, u16 *, int);
  44. u16    *(*con_screen_pos)(struct vc_data *, int);
  45. unsigned long (*con_getxy)(struct vc_data *, unsigned long, int *, int *);
  46. };
  47. extern const struct consw *conswitchp;
  48. extern const struct consw dummy_con; /* dummy console buffer */
  49. extern const struct consw fb_con; /* frame buffer based console */
  50. extern const struct consw vga_con; /* VGA text console */
  51. extern const struct consw newport_con; /* SGI Newport console  */
  52. extern const struct consw prom_con; /* SPARC PROM console */
  53. void take_over_console(const struct consw *sw, int first, int last, int deflt);
  54. void give_up_console(const struct consw *sw);
  55. /* scroll */
  56. #define SM_UP       (1)
  57. #define SM_DOWN     (2)
  58. /* cursor */
  59. #define CM_DRAW     (1)
  60. #define CM_ERASE    (2)
  61. #define CM_MOVE     (3)
  62. /*
  63.  * Array of consoles built from command line options (console=)
  64.  */
  65. struct console_cmdline
  66. {
  67. char name[8]; /* Name of the driver     */
  68. int index; /* Minor dev. to use     */
  69. char *options; /* Options for the driver   */
  70. };
  71. #define MAX_CMDLINECONSOLES 8
  72. extern struct console_cmdline console_list[MAX_CMDLINECONSOLES];
  73. /*
  74.  * The interface for a console, or any other device that
  75.  * wants to capture console messages (printer driver?)
  76.  */
  77. #define CON_PRINTBUFFER (1)
  78. #define CON_CONSDEV (2) /* Last on the command line */
  79. #define CON_ENABLED (4)
  80. struct console
  81. {
  82. char name[8];
  83. void (*write)(struct console *, const char *, unsigned);
  84. int (*read)(struct console *, const char *, unsigned);
  85. kdev_t (*device)(struct console *);
  86. void (*unblank)(void);
  87. int (*setup)(struct console *, char *);
  88. short flags;
  89. short index;
  90. int cflag;
  91. struct  console *next;
  92. };
  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 void release_console_sem(void);
  98. extern void console_conditional_schedule(void);
  99. extern void console_unblank(void);
  100. /* VESA Blanking Levels */
  101. #define VESA_NO_BLANKING        0
  102. #define VESA_VSYNC_SUSPEND      1
  103. #define VESA_HSYNC_SUSPEND      2
  104. #define VESA_POWERDOWN          3
  105. #endif /* _LINUX_CONSOLE_H */