fbcon.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. /*
  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 frame buffer device */
  24. u_short inverse; /* != 0 text black on white as default */
  25. /* Filled in by the low-level console driver */
  26. u_char *fontdata;
  27. int userfont; /* != 0 if fontdata kmalloc()ed */
  28. u_short scrollmode; /* Scroll Method */
  29. short yscroll; /* Hardware scrolling */
  30. int vrows; /* number of virtual rows */
  31. int cursor_shape;
  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. 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,
  58. struct display *p, int mode, int softback_lines, int fg, int bg);
  59. struct timer_list cursor_timer; /* Cursor timer */
  60. struct fb_cursor cursor_state;
  61. int currcon; /* Current VC. */
  62. int cursor_flash;
  63. int cursor_reset;
  64. int blank_state;
  65. int graphics;
  66. int flags;
  67. char *cursor_data;
  68. };
  69. /*
  70. * Attribute Decoding
  71. */
  72. /* Color */
  73. #define attr_fgcol(fgshift,s) \
  74. (((s) >> (fgshift)) & 0x0f)
  75. #define attr_bgcol(bgshift,s) \
  76. (((s) >> (bgshift)) & 0x0f)
  77. #define attr_bgcol_ec(bgshift,vc) \
  78. ((vc) ? (((vc)->vc_video_erase_char >> (bgshift)) & 0x0f) : 0)
  79. #define attr_fgcol_ec(fgshift,vc) \
  80. ((vc) ? (((vc)->vc_video_erase_char >> (fgshift)) & 0x0f) : 0)
  81. /* Monochrome */
  82. #define attr_bold(s) \
  83. ((s) & 0x200)
  84. #define attr_reverse(s) \
  85. ((s) & 0x800)
  86. #define attr_underline(s) \
  87. ((s) & 0x400)
  88. #define attr_blink(s) \
  89. ((s) & 0x8000)
  90. /* Font */
  91. #define REFCOUNT(fd) (((int *)(fd))[-1])
  92. #define FNTSIZE(fd) (((int *)(fd))[-2])
  93. #define FNTCHARCNT(fd) (((int *)(fd))[-3])
  94. #define FNTSUM(fd) (((int *)(fd))[-4])
  95. #define FONT_EXTRA_WORDS 4
  96. /*
  97. * Scroll Method
  98. */
  99. /* There are several methods fbcon can use to move text around the screen:
  100. *
  101. * Operation Pan Wrap
  102. *---------------------------------------------
  103. * SCROLL_MOVE copyarea No No
  104. * SCROLL_PAN_MOVE copyarea Yes No
  105. * SCROLL_WRAP_MOVE copyarea No Yes
  106. * SCROLL_REDRAW imageblit No No
  107. * SCROLL_PAN_REDRAW imageblit Yes No
  108. * SCROLL_WRAP_REDRAW imageblit No Yes
  109. *
  110. * (SCROLL_WRAP_REDRAW is not implemented yet)
  111. *
  112. * In general, fbcon will choose the best scrolling
  113. * method based on the rule below:
  114. *
  115. * Pan/Wrap > accel imageblit > accel copyarea >
  116. * soft imageblit > (soft copyarea)
  117. *
  118. * Exception to the rule: Pan + accel copyarea is
  119. * preferred over Pan + accel imageblit.
  120. *
  121. * The above is typical for PCI/AGP cards. Unless
  122. * overridden, fbcon will never use soft copyarea.
  123. *
  124. * If you need to override the above rule, set the
  125. * appropriate flags in fb_info->flags. For example,
  126. * to prefer copyarea over imageblit, set
  127. * FBINFO_READS_FAST.
  128. *
  129. * Other notes:
  130. * + use the hardware engine to move the text
  131. * (hw-accelerated copyarea() and fillrect())
  132. * + use hardware-supported panning on a large virtual screen
  133. * + amifb can not only pan, but also wrap the display by N lines
  134. * (i.e. visible line i = physical line (i+N) % yres).
  135. * + read what's already rendered on the screen and
  136. * write it in a different place (this is cfb_copyarea())
  137. * + re-render the text to the screen
  138. *
  139. * Whether to use wrapping or panning can only be figured out at
  140. * runtime (when we know whether our font height is a multiple
  141. * of the pan/wrap step)
  142. *
  143. */
  144. #define SCROLL_MOVE 0x001
  145. #define SCROLL_PAN_MOVE 0x002
  146. #define SCROLL_WRAP_MOVE 0x003
  147. #define SCROLL_REDRAW 0x004
  148. #define SCROLL_PAN_REDRAW 0x005
  149. #ifdef CONFIG_FB_TILEBLITTING
  150. extern void fbcon_set_tileops(struct vc_data *vc, struct fb_info *info,
  151. struct display *p, struct fbcon_ops *ops);
  152. #endif
  153. extern void fbcon_set_bitops(struct fbcon_ops *ops);
  154. #endif /* _VIDEO_FBCON_H */