console_struct.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /*
  2. * console_struct.h
  3. *
  4. * Data structure describing single virtual console except for data
  5. * used by vt.c.
  6. *
  7. * Fields marked with [#] must be set by the low-level driver.
  8. * Fields marked with [!] can be changed by the low-level driver
  9. * to achieve effects such as fast scrolling by changing the origin.
  10. */
  11. #ifndef _LINUX_CONSOLE_STRUCT_H
  12. #define _LINUX_CONSOLE_STRUCT_H
  13. #include <linux/wait.h>
  14. #include <linux/vt.h>
  15. #include <linux/workqueue.h>
  16. struct vt_struct;
  17. #define NPAR 16
  18. struct vc_data {
  19. unsigned short vc_num; /* Console number */
  20. unsigned int vc_cols; /* [#] Console size */
  21. unsigned int vc_rows;
  22. unsigned int vc_size_row; /* Bytes per row */
  23. unsigned int vc_scan_lines; /* # of scan lines */
  24. unsigned long vc_origin; /* [!] Start of real screen */
  25. unsigned long vc_scr_end; /* [!] End of real screen */
  26. unsigned long vc_visible_origin; /* [!] Top of visible window */
  27. unsigned int vc_top, vc_bottom; /* Scrolling region */
  28. const struct consw *vc_sw;
  29. unsigned short *vc_screenbuf; /* In-memory character/attribute buffer */
  30. unsigned int vc_screenbuf_size;
  31. unsigned char vc_mode; /* KD_TEXT, ... */
  32. /* attributes for all characters on screen */
  33. unsigned char vc_attr; /* Current attributes */
  34. unsigned char vc_def_color; /* Default colors */
  35. unsigned char vc_color; /* Foreground & background */
  36. unsigned char vc_s_color; /* Saved foreground & background */
  37. unsigned char vc_ulcolor; /* Color for underline mode */
  38. unsigned char vc_itcolor;
  39. unsigned char vc_halfcolor; /* Color for half intensity mode */
  40. /* cursor */
  41. unsigned int vc_cursor_type;
  42. unsigned short vc_complement_mask; /* [#] Xor mask for mouse pointer */
  43. unsigned short vc_s_complement_mask; /* Saved mouse pointer mask */
  44. unsigned int vc_x, vc_y; /* Cursor position */
  45. unsigned int vc_saved_x, vc_saved_y;
  46. unsigned long vc_pos; /* Cursor address */
  47. /* fonts */
  48. unsigned short vc_hi_font_mask; /* [#] Attribute set for upper 256 chars of font or 0 if not supported */
  49. struct console_font vc_font; /* Current VC font set */
  50. unsigned short vc_video_erase_char; /* Background erase character */
  51. unsigned short vc_scrl_erase_char; /* Erase character for scroll */
  52. /* VT terminal data */
  53. unsigned int vc_state; /* Escape sequence parser state */
  54. unsigned int vc_npar,vc_par[NPAR]; /* Parameters of current escape sequence */
  55. struct tty_struct *vc_tty; /* TTY we are attached to */
  56. /* data for manual vt switching */
  57. struct vt_mode vt_mode;
  58. struct pid *vt_pid;
  59. int vt_newvt;
  60. wait_queue_head_t paste_wait;
  61. /* mode flags */
  62. unsigned int vc_charset : 1; /* Character set G0 / G1 */
  63. unsigned int vc_s_charset : 1; /* Saved character set */
  64. unsigned int vc_disp_ctrl : 1; /* Display chars < 32? */
  65. unsigned int vc_toggle_meta : 1; /* Toggle high bit? */
  66. unsigned int vc_decscnm : 1; /* Screen Mode */
  67. unsigned int vc_decom : 1; /* Origin Mode */
  68. unsigned int vc_decawm : 1; /* Autowrap Mode */
  69. unsigned int vc_deccm : 1; /* Cursor Visible */
  70. unsigned int vc_decim : 1; /* Insert Mode */
  71. unsigned int vc_deccolm : 1; /* 80/132 Column Mode */
  72. /* attribute flags */
  73. unsigned int vc_intensity : 2; /* 0=half-bright, 1=normal, 2=bold */
  74. unsigned int vc_italic:1;
  75. unsigned int vc_underline : 1;
  76. unsigned int vc_blink : 1;
  77. unsigned int vc_reverse : 1;
  78. unsigned int vc_s_intensity : 2; /* saved rendition */
  79. unsigned int vc_s_italic:1;
  80. unsigned int vc_s_underline : 1;
  81. unsigned int vc_s_blink : 1;
  82. unsigned int vc_s_reverse : 1;
  83. /* misc */
  84. unsigned int vc_ques : 1;
  85. unsigned int vc_need_wrap : 1;
  86. unsigned int vc_can_do_color : 1;
  87. unsigned int vc_report_mouse : 2;
  88. unsigned int vc_kmalloced : 1;
  89. unsigned char vc_utf : 1; /* Unicode UTF-8 encoding */
  90. unsigned char vc_utf_count;
  91. int vc_utf_char;
  92. unsigned int vc_tab_stop[8]; /* Tab stops. 256 columns. */
  93. unsigned char vc_palette[16*3]; /* Colour palette for VGA+ */
  94. unsigned short * vc_translate;
  95. unsigned char vc_G0_charset;
  96. unsigned char vc_G1_charset;
  97. unsigned char vc_saved_G0;
  98. unsigned char vc_saved_G1;
  99. unsigned int vc_resize_user; /* resize request from user */
  100. unsigned int vc_bell_pitch; /* Console bell pitch */
  101. unsigned int vc_bell_duration; /* Console bell duration */
  102. struct vc_data **vc_display_fg; /* [!] Ptr to var holding fg console for this display */
  103. unsigned long vc_uni_pagedir;
  104. unsigned long *vc_uni_pagedir_loc; /* [!] Location of uni_pagedir variable for this console */
  105. /* additional information is in vt_kern.h */
  106. };
  107. struct vc {
  108. struct vc_data *d;
  109. struct work_struct SAK_work;
  110. /* might add scrmem, vt_struct, kbd at some time,
  111. to have everything in one place - the disadvantage
  112. would be that vc_cons etc can no longer be static */
  113. };
  114. extern struct vc vc_cons [MAX_NR_CONSOLES];
  115. extern void vc_SAK(struct work_struct *work);
  116. #define CUR_DEF 0
  117. #define CUR_NONE 1
  118. #define CUR_UNDERLINE 2
  119. #define CUR_LOWER_THIRD 3
  120. #define CUR_LOWER_HALF 4
  121. #define CUR_TWO_THIRDS 5
  122. #define CUR_BLOCK 6
  123. #define CUR_HWMASK 0x0f
  124. #define CUR_SWMASK 0xfff0
  125. #define CUR_DEFAULT CUR_UNDERLINE
  126. #define CON_IS_VISIBLE(conp) (*conp->vc_display_fg == conp)
  127. #endif /* _LINUX_CONSOLE_STRUCT_H */