fbcon.h 6.4 KB

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