fbcon-cfb4.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/video/cfb4.c -- Low level frame buffer operations for 4 bpp
  3.  *   packed pixels
  4.  *
  5.  * Created 26 Dec 1997 by Michael Schmitz
  6.  * Based on the old macfb.c 4bpp code by Alan Cox
  7.  *
  8.  *  This file is subject to the terms and conditions of the GNU General Public
  9.  *  License.  See the file COPYING in the main directory of this archive for
  10.  *  more details.
  11.  */
  12. #include <linux/module.h>
  13. #include <linux/tty.h>
  14. #include <linux/console.h>
  15. #include <linux/string.h>
  16. #include <linux/fb.h>
  17. #include <video/fbcon.h>
  18. #include <video/fbcon-cfb4.h>
  19.     /*
  20.      *  4 bpp packed pixels
  21.      */
  22.     /*
  23.      *  IFF the font is even pixel aligned (that is to say each
  24.      *  character start is a byte start in the pixel pairs). That
  25.      *  avoids us having to mask bytes and means we won't be here
  26.      *  all week. On a MacII that matters _lots_
  27.      */
  28. static u16 nibbletab_cfb4[] = {
  29. #if defined(__BIG_ENDIAN)
  30.     0x0000,0x000f,0x00f0,0x00ff,
  31.     0x0f00,0x0f0f,0x0ff0,0x0fff,
  32.     0xf000,0xf00f,0xf0f0,0xf0ff,
  33.     0xff00,0xff0f,0xfff0,0xffff
  34. #elif defined(__LITTLE_ENDIAN)
  35.     0x0000,0xf000,0x0f00,0xff00,
  36.     0x00f0,0xf0f0,0x0ff0,0xfff0,
  37.     0x000f,0xf00f,0x0f0f,0xff0f,
  38.     0x00ff,0xf0ff,0x0fff,0xffff
  39. #else
  40. #error FIXME: No endianness??
  41. #endif
  42. };
  43. void fbcon_cfb4_setup(struct display *p)
  44. {
  45.     p->next_line = p->line_length ? p->line_length : p->var.xres_virtual>>1;
  46.     p->next_plane = 0;
  47. }
  48. void fbcon_cfb4_bmove(struct display *p, int sy, int sx, int dy, int dx,
  49.       int height, int width)
  50. {
  51. int bytes = p->next_line, linesize = bytes * fontheight(p), rows;
  52. u8 *src,*dst;
  53. if (sx == 0 && dx == 0 && width * 4 == bytes) {
  54. fb_memmove(p->screen_base + dy * linesize,
  55.   p->screen_base + sy * linesize,
  56.   height * linesize);
  57. }
  58. else {
  59. if (dy < sy || (dy == sy && dx < sx)) {
  60. src = p->screen_base + sy * linesize + sx * 4;
  61. dst = p->screen_base + dy * linesize + dx * 4;
  62. for (rows = height * fontheight(p) ; rows-- ;) {
  63. fb_memmove(dst, src, width * 4);
  64. src += bytes;
  65. dst += bytes;
  66. }
  67. }
  68. else {
  69. src = p->screen_base + (sy+height) * linesize + sx * 4
  70. - bytes;
  71. dst = p->screen_base + (dy+height) * linesize + dx * 4
  72. - bytes;
  73. for (rows = height * fontheight(p) ; rows-- ;) {
  74. fb_memmove(dst, src, width * 4);
  75. src -= bytes;
  76. dst -= bytes;
  77. }
  78. }
  79. }
  80. }
  81. void fbcon_cfb4_clear(struct vc_data *conp, struct display *p, int sy, int sx,
  82.       int height, int width)
  83. {
  84. u8 *dest0,*dest;
  85. int bytes=p->next_line,lines=height * fontheight(p), rows, i;
  86. u32 bgx;
  87. /* if(p->screen_base!=0xFDD00020)
  88. mac_boom(1);*/
  89. dest = p->screen_base + sy * fontheight(p) * bytes + sx * 4;
  90. bgx=attr_bgcol_ec(p,conp);
  91. bgx |= (bgx << 4); /* expand the colour to 32bits */
  92. bgx |= (bgx << 8);
  93. bgx |= (bgx << 16);
  94. if (sx == 0 && width * 4 == bytes) {
  95. for (i = 0 ; i < lines * width ; i++) {
  96. fb_writel (bgx, dest);
  97. dest+=4;
  98. }
  99. } else {
  100. dest0=dest;
  101. for (rows = lines; rows-- ; dest0 += bytes) {
  102. dest=dest0;
  103. for (i = 0 ; i < width ; i++) {
  104. /* memset ?? */
  105. fb_writel (bgx, dest);
  106. dest+=4;
  107. }
  108. }
  109. }
  110. }
  111. void fbcon_cfb4_putc(struct vc_data *conp, struct display *p, int c, int yy,
  112.      int xx)
  113. {
  114. u8 *dest,*cdat;
  115. int bytes=p->next_line,rows;
  116. u32 eorx,fgx,bgx;
  117. dest = p->screen_base + yy * fontheight(p) * bytes + xx * 4;
  118. cdat = p->fontdata + (c & p->charmask) * fontheight(p);
  119. fgx=attr_fgcol(p,c);
  120. bgx=attr_bgcol(p,c);
  121. fgx |= (fgx << 4);
  122. fgx |= (fgx << 8);
  123. bgx |= (bgx << 4);
  124. bgx |= (bgx << 8);
  125. eorx = fgx ^ bgx;
  126. for (rows = fontheight(p) ; rows-- ; dest += bytes) {
  127. fb_writew((nibbletab_cfb4[*cdat >> 4] & eorx) ^ bgx, dest+0);
  128. fb_writew((nibbletab_cfb4[*cdat++ & 0xf] & eorx) ^ bgx, dest+2);
  129. }
  130. }
  131. void fbcon_cfb4_putcs(struct vc_data *conp, struct display *p, 
  132.       const unsigned short *s, int count, int yy, int xx)
  133. {
  134. u8 *cdat, *dest, *dest0;
  135. u16 c;
  136. int rows,bytes=p->next_line;
  137. u32 eorx, fgx, bgx;
  138. dest0 = p->screen_base + yy * fontheight(p) * bytes + xx * 4;
  139. c = scr_readw(s);
  140. fgx = attr_fgcol(p, c);
  141. bgx = attr_bgcol(p, c);
  142. fgx |= (fgx << 4);
  143. fgx |= (fgx << 8);
  144. fgx |= (fgx << 16);
  145. bgx |= (bgx << 4);
  146. bgx |= (bgx << 8);
  147. bgx |= (bgx << 16);
  148. eorx = fgx ^ bgx;
  149. while (count--) {
  150. c = scr_readw(s++) & p->charmask;
  151. cdat = p->fontdata + c * fontheight(p);
  152. for (rows = fontheight(p), dest = dest0; rows-- ; dest += bytes) {
  153. fb_writew((nibbletab_cfb4[*cdat >> 4] & eorx) ^ bgx, dest+0);
  154. fb_writew((nibbletab_cfb4[*cdat++ & 0xf] & eorx) ^ bgx, dest+2);
  155. }
  156. dest0+=4;
  157. }
  158. }
  159. void fbcon_cfb4_revc(struct display *p, int xx, int yy)
  160. {
  161. u8 *dest;
  162. int bytes=p->next_line, rows;
  163. dest = p->screen_base + yy * fontheight(p) * bytes + xx * 4;
  164. for (rows = fontheight(p) ; rows-- ; dest += bytes) {
  165. fb_writel(fb_readl(dest+0) ^ 0xffffffff, dest+0);
  166. }
  167. }
  168.     /*
  169.      *  `switch' for the low level operations
  170.      */
  171. struct display_switch fbcon_cfb4 = {
  172.     setup: fbcon_cfb4_setup,
  173.     bmove: fbcon_cfb4_bmove,
  174.     clear: fbcon_cfb4_clear,
  175.     putc: fbcon_cfb4_putc,
  176.     putcs: fbcon_cfb4_putcs,
  177.     revc: fbcon_cfb4_revc,
  178.     fontwidthmask: FONTWIDTH(8)
  179. };
  180. #ifdef MODULE
  181. MODULE_LICENSE("GPL");
  182. int init_module(void)
  183. {
  184.     return 0;
  185. }
  186. void cleanup_module(void)
  187. {}
  188. #endif /* MODULE */
  189.     /*
  190.      *  Visible symbols for modules
  191.      */
  192. EXPORT_SYMBOL(fbcon_cfb4);
  193. EXPORT_SYMBOL(fbcon_cfb4_setup);
  194. EXPORT_SYMBOL(fbcon_cfb4_bmove);
  195. EXPORT_SYMBOL(fbcon_cfb4_clear);
  196. EXPORT_SYMBOL(fbcon_cfb4_putc);
  197. EXPORT_SYMBOL(fbcon_cfb4_putcs);
  198. EXPORT_SYMBOL(fbcon_cfb4_revc);