Import 2.3.18pre1
[davej-history.git] / drivers / video / fbcon-cfb2.c
blob5b339a4fa39d135ca8e1c89adcabcdde03afa386
1 /*
2 * linux/drivers/video/cfb2.c -- Low level frame buffer operations for 2 bpp
3 * packed pixels
5 * Created 26 Dec 1997 by Michael Schmitz
6 * Based on cfb4.c
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.
13 #include <linux/module.h>
14 #include <linux/tty.h>
15 #include <linux/console.h>
16 #include <linux/string.h>
17 #include <linux/fb.h>
19 #include <video/fbcon.h>
20 #include <video/fbcon-cfb2.h>
24 * 2 bpp packed pixels
28 * IFF the font is even pixel aligned (that is to say each
29 * character start is a byte start in the pixel pairs). That
30 * avoids us having to mask bytes and means we won't be here
31 * all week. On a MacII that matters _lots_
34 static u_char nibbletab_cfb2[]={
35 #if defined(__BIG_ENDIAN)
36 0x00,0x03,0x0c,0x0f,
37 0x30,0x33,0x3c,0x3f,
38 0xc0,0xc3,0xcc,0xcf,
39 0xf0,0xf3,0xfc,0xff
40 #elif defined(__LITTLE_ENDIAN)
41 0x00,0xc0,0x30,0xf0,
42 0x0c,0xcc,0x3c,0xfc,
43 0x03,0xc3,0x33,0xf3,
44 0x0f,0xcf,0x3f,0xff
45 #else
46 #error FIXME: No endianness??
47 #endif
51 void fbcon_cfb2_setup(struct display *p)
53 p->next_line = p->line_length ? p->line_length : p->var.xres_virtual>>2;
54 p->next_plane = 0;
57 void fbcon_cfb2_bmove(struct display *p, int sy, int sx, int dy, int dx,
58 int height, int width)
60 int bytes = p->next_line, linesize = bytes * fontheight(p), rows;
61 u8 *src,*dst;
63 if (sx == 0 && dx == 0 && width * 2 == bytes) {
64 mymemmove(p->screen_base + dy * linesize,
65 p->screen_base + sy * linesize,
66 height * linesize);
68 else {
69 if (dy < sy || (dy == sy && dx < sx)) {
70 src = p->screen_base + sy * linesize + sx * 2;
71 dst = p->screen_base + dy * linesize + dx * 2;
72 for (rows = height * fontheight(p) ; rows-- ;) {
73 mymemmove(dst, src, width * 2);
74 src += bytes;
75 dst += bytes;
78 else {
79 src = p->screen_base + (sy+height) * linesize + sx * 2
80 - bytes;
81 dst = p->screen_base + (dy+height) * linesize + dx * 2
82 - bytes;
83 for (rows = height * fontheight(p) ; rows-- ;) {
84 mymemmove(dst, src, width * 2);
85 src -= bytes;
86 dst -= bytes;
92 void fbcon_cfb2_clear(struct vc_data *conp, struct display *p, int sy, int sx,
93 int height, int width)
95 u8 *dest0,*dest;
96 int bytes=p->next_line,lines=height * fontheight(p), rows, i;
97 u32 bgx;
99 dest = p->screen_base + sy * fontheight(p) * bytes + sx * 2;
101 bgx=attr_bgcol_ec(p,conp);
102 bgx |= (bgx << 2); /* expand the colour to 16 bits */
103 bgx |= (bgx << 4);
104 bgx |= (bgx << 8);
106 if (sx == 0 && width * 2 == bytes) {
107 for (i = 0 ; i < lines * width ; i++) {
108 ((u16 *)dest)[0]=bgx;
109 dest+=2;
111 } else {
112 dest0=dest;
113 for (rows = lines; rows-- ; dest0 += bytes) {
114 dest=dest0;
115 for (i = 0 ; i < width ; i++) {
116 /* memset ?? */
117 ((u16 *)dest)[0]=bgx;
118 dest+=2;
124 void fbcon_cfb2_putc(struct vc_data *conp, struct display *p, int c, int yy,
125 int xx)
127 u8 *dest,*cdat;
128 int bytes=p->next_line,rows;
129 u32 eorx,fgx,bgx;
131 dest = p->screen_base + yy * fontheight(p) * bytes + xx * 2;
132 cdat = p->fontdata + (c & p->charmask) * fontheight(p);
134 fgx=3;/*attr_fgcol(p,c);*/
135 bgx=attr_bgcol(p,c);
136 fgx |= (fgx << 2); /* expand color to 8 bits */
137 fgx |= (fgx << 4);
138 bgx |= (bgx << 2);
139 bgx |= (bgx << 4);
140 eorx = fgx ^ bgx;
142 for (rows = fontheight(p) ; rows-- ; dest += bytes) {
143 ((u8 *)dest)[0]=
144 (nibbletab_cfb2[*cdat >> 4] & eorx) ^ bgx;
145 ((u8 *)dest)[1]=
146 (nibbletab_cfb2[*cdat++ & 0xf] & eorx) ^ bgx;
150 void fbcon_cfb2_putcs(struct vc_data *conp, struct display *p, const unsigned short *s,
151 int count, int yy, int xx)
153 u8 *cdat, *dest, *dest0;
154 u16 c;
155 int rows,bytes=p->next_line;
156 u32 eorx, fgx, bgx;
158 dest0 = p->screen_base + yy * fontheight(p) * bytes + xx * 2;
159 fgx=3/*attr_fgcol(p,scr_readw(s))*/;
160 bgx=attr_bgcol(p,scr_readw(s));
161 fgx |= (fgx << 2);
162 fgx |= (fgx << 4);
163 bgx |= (bgx << 2);
164 bgx |= (bgx << 4);
165 eorx = fgx ^ bgx;
166 while (count--) {
167 c = scr_readw(s++) & p->charmask;
168 cdat = p->fontdata + c * fontheight(p);
170 for (rows = fontheight(p), dest = dest0; rows-- ; dest += bytes) {
171 ((u8 *)dest)[0]=
172 (nibbletab_cfb2[*cdat >> 4] & eorx) ^ bgx;
173 ((u8 *)dest)[1]=
174 (nibbletab_cfb2[*cdat++ & 0xf] & eorx) ^ bgx;
176 dest0+=2;
180 void fbcon_cfb2_revc(struct display *p, int xx, int yy)
182 u8 *dest;
183 int bytes=p->next_line, rows;
185 dest = p->screen_base + yy * fontheight(p) * bytes + xx * 2;
186 for (rows = fontheight(p) ; rows-- ; dest += bytes) {
187 ((u16 *)dest)[0] ^= 0xffff;
193 * `switch' for the low level operations
196 struct display_switch fbcon_cfb2 = {
197 fbcon_cfb2_setup, fbcon_cfb2_bmove, fbcon_cfb2_clear, fbcon_cfb2_putc,
198 fbcon_cfb2_putcs, fbcon_cfb2_revc, NULL, NULL, NULL, FONTWIDTH(8)
202 #ifdef MODULE
203 int init_module(void)
205 return 0;
208 void cleanup_module(void)
210 #endif /* MODULE */
214 * Visible symbols for modules
217 EXPORT_SYMBOL(fbcon_cfb2);
218 EXPORT_SYMBOL(fbcon_cfb2_setup);
219 EXPORT_SYMBOL(fbcon_cfb2_bmove);
220 EXPORT_SYMBOL(fbcon_cfb2_clear);
221 EXPORT_SYMBOL(fbcon_cfb2_putc);
222 EXPORT_SYMBOL(fbcon_cfb2_putcs);
223 EXPORT_SYMBOL(fbcon_cfb2_revc);