vt_kern.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _VT_KERN_H
  2. #define _VT_KERN_H
  3. /*
  4.  * this really is an extension of the vc_cons structure in console.c, but
  5.  * with information needed by the vt package
  6.  */
  7. #include <linux/config.h>
  8. #include <linux/vt.h>
  9. #include <linux/kd.h>
  10. /*
  11.  * Presently, a lot of graphics programs do not restore the contents of
  12.  * the higher font pages.  Defining this flag will avoid use of them, but
  13.  * will lose support for PIO_FONTRESET.  Note that many font operations are
  14.  * not likely to work with these programs anyway; they need to be
  15.  * fixed.  The linux/Documentation directory includes a code snippet
  16.  * to save and restore the text font.
  17.  */
  18. #ifdef CONFIG_VGA_CONSOLE
  19. #define BROKEN_GRAPHICS_PROGRAMS 1
  20. #endif
  21. extern struct vt_struct {
  22. int vc_num; /* The console number */
  23. unsigned char vc_mode; /* KD_TEXT, ... */
  24. struct vt_mode vt_mode;
  25. int vt_pid;
  26. int vt_newvt;
  27. wait_queue_head_t paste_wait;
  28. } *vt_cons[MAX_NR_CONSOLES];
  29. extern void (*kd_mksound)(unsigned int hz, unsigned int ticks);
  30. extern int (*kbd_rate)(struct kbd_repeat *rep);
  31. /* console.c */
  32. struct console_font_op;
  33. int vc_allocate(unsigned int console);
  34. int vc_cons_allocated(unsigned int console);
  35. int vc_resize(unsigned int lines, unsigned int cols,
  36.       unsigned int first, unsigned int last);
  37. #define vc_resize_all(l, c) vc_resize(l, c, 0, MAX_NR_CONSOLES-1)
  38. #define vc_resize_con(l, c, x) vc_resize(l, c, x, x)
  39. void vc_disallocate(unsigned int console);
  40. void reset_palette(int currcons);
  41. void set_palette(int currcons);
  42. void do_blank_screen(int gfx_mode);
  43. void unblank_screen(void);
  44. void poke_blanked_console(void);
  45. int con_font_op(int currcons, struct console_font_op *op);
  46. int con_set_cmap(unsigned char *cmap);
  47. int con_get_cmap(unsigned char *cmap);
  48. void scrollback(int);
  49. void scrollfront(int);
  50. void update_region(int currcons, unsigned long start, int count);
  51. void redraw_screen(int new_console, int is_switch);
  52. #define update_screen(x) redraw_screen(x, 0)
  53. #define switch_screen(x) redraw_screen(x, 1)
  54. struct tty_struct;
  55. int tioclinux(struct tty_struct *tty, unsigned long arg);
  56. /* consolemap.c */
  57. struct unimapinit;
  58. struct unipair;
  59. int con_set_trans_old(unsigned char * table);
  60. int con_get_trans_old(unsigned char * table);
  61. int con_set_trans_new(unsigned short * table);
  62. int con_get_trans_new(unsigned short * table);
  63. int con_clear_unimap(int currcons, struct unimapinit *ui);
  64. int con_set_unimap(int currcons, ushort ct, struct unipair *list);
  65. int con_get_unimap(int currcons, ushort ct, ushort *uct, struct unipair *list);
  66. int con_set_default_unimap(int currcons);
  67. void con_free_unimap(int currcons);
  68. void con_protect_unimap(int currcons, int rdonly);
  69. int con_copy_unimap(int dstcons, int srccons);
  70. /* vt.c */
  71. extern unsigned int video_font_height;
  72. extern unsigned int default_font_height;
  73. extern unsigned int video_scan_lines;
  74. void complete_change_console(unsigned int new_console);
  75. int vt_waitactive(int vt);
  76. void change_console(unsigned int);
  77. void reset_vc(unsigned int new_console);
  78. int vt_waitactive(int vt);
  79. #endif /* _VT_KERN_H */