fbcon.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. /*
  2. * linux/drivers/video/console/fbcon.h -- Low level frame buffer based console driver
  3. *
  4. * Copyright (C) 1997 Geert Uytterhoeven
  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. #ifndef _VIDEO_FBCON_H
  11. #define _VIDEO_FBCON_H
  12. #include <linux/types.h>
  13. #include <linux/vt_buffer.h>
  14. #include <linux/vt_kern.h>
  15. #include <asm/io.h>
  16. #define FBCON_FLAGS_INIT 1
  17. #define FBCON_FLAGS_CURSOR_TIMER 2
  18. /*
  19. * This is the interface between the low-level console driver and the
  20. * low-level frame buffer device
  21. */
  22. struct display {
  23. /* Filled in by the low-level console driver */
  24. const u_char *fontdata;
  25. int userfont; /* != 0 if fontdata kmalloc()ed */
  26. u_short scrollmode; /* Scroll Method */
  27. u_short inverse; /* != 0 text black on white as default */
  28. short yscroll; /* Hardware scrolling */
  29. int vrows; /* number of virtual rows */
  30. int cursor_shape;
  31. int con_rotate;
  32. u32 xres_virtual;
  33. u32 yres_virtual;
  34. u32 height;
  35. u32 width;
  36. u32 bits_per_pixel;
  37. u32 grayscale;
  38. u32 nonstd;
  39. u32 accel_flags;
  40. u32 rotate;
  41. struct fb_bitfield red;
  42. struct fb_bitfield green;
  43. struct fb_bitfield blue;
  44. struct fb_bitfield transp;
  45. const struct fb_videomode *mode;
  46. };
  47. struct fbcon_ops {
  48. void (*bmove)(struct vc_data *vc, struct fb_info *info, int sy,
  49. int sx, int dy, int dx, int height, int width);
  50. void (*clear)(struct vc_data *vc, struct fb_info *info, int sy,
  51. int sx, int height, int width);
  52. void (*putcs)(struct vc_data *vc, struct fb_info *info,
  53. const unsigned short *s, int count, int yy, int xx,
  54. int fg, int bg);
  55. void (*clear_margins)(struct vc_data *vc, struct fb_info *info,
  56. int bottom_only);
  57. void (*cursor)(struct vc_data *vc, struct fb_info *info, int mode,
  58. int softback_lines, int fg, int bg);
  59. int (*update_start)(struct fb_info *info);
  60. int (*rotate_font)(struct fb_info *info, struct vc_data *vc);
  61. struct fb_var_screeninfo var; /* copy of the current fb_var_screeninfo */
  62. struct timer_list cursor_timer; /* Cursor timer */
  63. struct fb_cursor cursor_state;
  64. struct display *p;
  65. int currcon; /* Current VC. */
  66. int cur_blink_jiffies;
  67. int cursor_flash;
  68. int cursor_reset;
  69. int blank_state;
  70. int graphics;
  71. int save_graphics; /* for debug enter/leave */
  72. int flags;
  73. int rotate;
  74. int cur_rotate;
  75. char *cursor_data;
  76. u8 *fontbuffer;
  77. u8 *fontdata;
  78. u8 *cursor_src;
  79. u32 cursor_size;
  80. u32 fd_size;
  81. };
  82. /*
  83. * Attribute Decoding
  84. */
  85. /* Color */
  86. #define attr_fgcol(fgshift,s) \
  87. (((s) >> (fgshift)) & 0x0f)
  88. #define attr_bgcol(bgshift,s) \
  89. (((s) >> (bgshift)) & 0x0f)
  90. /* Monochrome */
  91. #define attr_bold(s) \
  92. ((s) & 0x200)
  93. #define attr_reverse(s) \
  94. ((s) & 0x800)
  95. #define attr_underline(s) \
  96. ((s) & 0x400)
  97. #define attr_blink(s) \
  98. ((s) & 0x8000)
  99. static inline int mono_col(const struct fb_info *info)
  100. {
  101. __u32 max_len;
  102. max_len = max(info->var.green.length, info->var.red.length);
  103. max_len = max(info->var.blue.length, max_len);
  104. return (~(0xfff << max_len)) & 0xff;
  105. }
  106. static inline int attr_col_ec(int shift, struct vc_data *vc,
  107. struct fb_info *info, int is_fg)
  108. {
  109. int is_mono01;
  110. int col;
  111. int fg;
  112. int bg;
  113. if (!vc)
  114. return 0;
  115. if (vc->vc_can_do_color)
  116. return is_fg ? attr_fgcol(shift,vc->vc_video_erase_char)
  117. : attr_bgcol(shift,vc->vc_video_erase_char);
  118. if (!info)
  119. return 0;
  120. col = mono_col(info);
  121. is_mono01 = info->fix.visual == FB_VISUAL_MONO01;
  122. if (attr_reverse(vc->vc_video_erase_char)) {
  123. fg = is_mono01 ? col : 0;
  124. bg = is_mono01 ? 0 : col;
  125. }
  126. else {
  127. fg = is_mono01 ? 0 : col;
  128. bg = is_mono01 ? col : 0;
  129. }
  130. return is_fg ? fg : bg;
  131. }
  132. #define attr_bgcol_ec(bgshift, vc, info) attr_col_ec(bgshift, vc, info, 0)
  133. #define attr_fgcol_ec(fgshift, vc, info) attr_col_ec(fgshift, vc, info, 1)
  134. /* Font */
  135. #define REFCOUNT(fd) (((int *)(fd))[-1])
  136. #define FNTSIZE(fd) (((int *)(fd))[-2])
  137. #define FNTCHARCNT(fd) (((int *)(fd))[-3])
  138. #define FNTSUM(fd) (((int *)(fd))[-4])
  139. #define FONT_EXTRA_WORDS 4
  140. /*
  141. * Scroll Method
  142. */
  143. /* There are several methods fbcon can use to move text around the screen:
  144. *
  145. * Operation Pan Wrap
  146. *---------------------------------------------
  147. * SCROLL_MOVE copyarea No No
  148. * SCROLL_PAN_MOVE copyarea Yes No
  149. * SCROLL_WRAP_MOVE copyarea No Yes
  150. * SCROLL_REDRAW imageblit No No
  151. * SCROLL_PAN_REDRAW imageblit Yes No
  152. * SCROLL_WRAP_REDRAW imageblit No Yes
  153. *
  154. * (SCROLL_WRAP_REDRAW is not implemented yet)
  155. *
  156. * In general, fbcon will choose the best scrolling
  157. * method based on the rule below:
  158. *
  159. * Pan/Wrap > accel imageblit > accel copyarea >
  160. * soft imageblit > (soft copyarea)
  161. *
  162. * Exception to the rule: Pan + accel copyarea is
  163. * preferred over Pan + accel imageblit.
  164. *
  165. * The above is typical for PCI/AGP cards. Unless
  166. * overridden, fbcon will never use soft copyarea.
  167. *
  168. * If you need to override the above rule, set the
  169. * appropriate flags in fb_info->flags. For example,
  170. * to prefer copyarea over imageblit, set
  171. * FBINFO_READS_FAST.
  172. *
  173. * Other notes:
  174. * + use the hardware engine to move the text
  175. * (hw-accelerated copyarea() and fillrect())
  176. * + use hardware-supported panning on a large virtual screen
  177. * + amifb can not only pan, but also wrap the display by N lines
  178. * (i.e. visible line i = physical line (i+N) % yres).
  179. * + read what's already rendered on the screen and
  180. * write it in a different place (this is cfb_copyarea())
  181. * + re-render the text to the screen
  182. *
  183. * Whether to use wrapping or panning can only be figured out at
  184. * runtime (when we know whether our font height is a multiple
  185. * of the pan/wrap step)
  186. *
  187. */
  188. #define SCROLL_MOVE 0x001
  189. #define SCROLL_PAN_MOVE 0x002
  190. #define SCROLL_WRAP_MOVE 0x003
  191. #define SCROLL_REDRAW 0x004
  192. #define SCROLL_PAN_REDRAW 0x005
  193. #ifdef CONFIG_FB_TILEBLITTING
  194. extern void fbcon_set_tileops(struct vc_data *vc, struct fb_info *info);
  195. #endif
  196. extern void fbcon_set_bitops(struct fbcon_ops *ops);
  197. extern int soft_cursor(struct fb_info *info, struct fb_cursor *cursor);
  198. #define FBCON_ATTRIBUTE_UNDERLINE 1
  199. #define FBCON_ATTRIBUTE_REVERSE 2
  200. #define FBCON_ATTRIBUTE_BOLD 4
  201. static inline int real_y(struct display *p, int ypos)
  202. {
  203. int rows = p->vrows;
  204. ypos += p->yscroll;
  205. return ypos < rows ? ypos : ypos - rows;
  206. }
  207. static inline int get_attribute(struct fb_info *info, u16 c)
  208. {
  209. int attribute = 0;
  210. if (fb_get_color_depth(&info->var, &info->fix) == 1) {
  211. if (attr_underline(c))
  212. attribute |= FBCON_ATTRIBUTE_UNDERLINE;
  213. if (attr_reverse(c))
  214. attribute |= FBCON_ATTRIBUTE_REVERSE;
  215. if (attr_bold(c))
  216. attribute |= FBCON_ATTRIBUTE_BOLD;
  217. }
  218. return attribute;
  219. }
  220. #define FBCON_SWAP(i,r,v) ({ \
  221. typeof(r) _r = (r); \
  222. typeof(v) _v = (v); \
  223. (void) (&_r == &_v); \
  224. (i == FB_ROTATE_UR || i == FB_ROTATE_UD) ? _r : _v; })
  225. #ifdef CONFIG_FRAMEBUFFER_CONSOLE_ROTATION
  226. extern void fbcon_set_rotate(struct fbcon_ops *ops);
  227. #else
  228. #define fbcon_set_rotate(x) do {} while(0)
  229. #endif /* CONFIG_FRAMEBUFFER_CONSOLE_ROTATION */
  230. #endif /* _VIDEO_FBCON_H */