vt_kern.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小: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. #include <linux/tty.h>
  11. #include <linux/console_struct.h>
  12. #include <linux/mm.h>
  13. /*
  14.  * Presently, a lot of graphics programs do not restore the contents of
  15.  * the higher font pages.  Defining this flag will avoid use of them, but
  16.  * will lose support for PIO_FONTRESET.  Note that many font operations are
  17.  * not likely to work with these programs anyway; they need to be
  18.  * fixed.  The linux/Documentation directory includes a code snippet
  19.  * to save and restore the text font.
  20.  */
  21. #ifdef CONFIG_VGA_CONSOLE
  22. #define BROKEN_GRAPHICS_PROGRAMS 1
  23. #endif
  24. extern void kd_mksound(unsigned int hz, unsigned int ticks);
  25. extern int kbd_rate(struct kbd_repeat *rep);
  26. /* console.c */
  27. int vc_allocate(unsigned int console);
  28. int vc_cons_allocated(unsigned int console);
  29. int vc_resize(struct vc_data *vc, unsigned int cols, unsigned int lines);
  30. void vc_disallocate(unsigned int console);
  31. void reset_palette(struct vc_data *vc);
  32. void do_blank_screen(int entering_gfx);
  33. void do_unblank_screen(int leaving_gfx);
  34. void unblank_screen(void);
  35. void poke_blanked_console(void);
  36. int con_font_op(struct vc_data *vc, struct console_font_op *op);
  37. int con_set_cmap(unsigned char __user *cmap);
  38. int con_get_cmap(unsigned char __user *cmap);
  39. void scrollback(struct vc_data *vc, int lines);
  40. void scrollfront(struct vc_data *vc, int lines);
  41. void update_region(struct vc_data *vc, unsigned long start, int count);
  42. void redraw_screen(struct vc_data *vc, int is_switch);
  43. #define update_screen(x) redraw_screen(x, 0)
  44. #define switch_screen(x) redraw_screen(x, 1)
  45. struct tty_struct;
  46. int tioclinux(struct tty_struct *tty, unsigned long arg);
  47. /* consolemap.c */
  48. struct unimapinit;
  49. struct unipair;
  50. int con_set_trans_old(unsigned char __user * table);
  51. int con_get_trans_old(unsigned char __user * table);
  52. int con_set_trans_new(unsigned short __user * table);
  53. int con_get_trans_new(unsigned short __user * table);
  54. int con_clear_unimap(struct vc_data *vc, struct unimapinit *ui);
  55. int con_set_unimap(struct vc_data *vc, ushort ct, struct unipair __user *list);
  56. int con_get_unimap(struct vc_data *vc, ushort ct, ushort __user *uct, struct unipair __user *list);
  57. int con_set_default_unimap(struct vc_data *vc);
  58. void con_free_unimap(struct vc_data *vc);
  59. void con_protect_unimap(struct vc_data *vc, int rdonly);
  60. int con_copy_unimap(struct vc_data *dst_vc, struct vc_data *src_vc);
  61. /* vt.c */
  62. int vt_waitactive(int vt);
  63. void change_console(struct vc_data *new_vc);
  64. void reset_vc(struct vc_data *vc);
  65. /*
  66.  * vc_screen.c shares this temporary buffer with the console write code so that
  67.  * we can easily avoid touching user space while holding the console spinlock.
  68.  */
  69. #define CON_BUF_SIZE (CONFIG_BASE_SMALL ? 256 : PAGE_SIZE)
  70. extern char con_buf[CON_BUF_SIZE];
  71. extern struct semaphore con_buf_sem;
  72. #endif /* _VT_KERN_H */