summaryrefslogtreecommitdiffstats
path: root/drivers/video/fbcon-cfb32.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-08-25 09:12:35 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-08-25 09:12:35 +0000
commitc7fc24dc4420057f103afe8fc64524ebc25c5d37 (patch)
tree3682407a599b8f9f03fc096298134cafba1c9b2f /drivers/video/fbcon-cfb32.c
parent1d793fade8b063fde3cf275bf1a5c2d381292cd9 (diff)
o Merge with Linux 2.1.116.
o New Newport console code. o New G364 console code.
Diffstat (limited to 'drivers/video/fbcon-cfb32.c')
-rw-r--r--drivers/video/fbcon-cfb32.c225
1 files changed, 168 insertions, 57 deletions
diff --git a/drivers/video/fbcon-cfb32.c b/drivers/video/fbcon-cfb32.c
index cedc04814..1a1c48bcf 100644
--- a/drivers/video/fbcon-cfb32.c
+++ b/drivers/video/fbcon-cfb32.c
@@ -9,6 +9,7 @@
* more details.
*/
+#include <linux/config.h>
#include <linux/module.h>
#include <linux/tty.h>
#include <linux/console.h>
@@ -37,23 +38,34 @@ void fbcon_cfb32_bmove(struct display *p, int sy, int sx, int dy, int dx,
int bytes = p->next_line, linesize = bytes * p->fontheight, rows;
u8 *src, *dst;
- if (sx == 0 && dx == 0 && width * 32 == bytes)
+ if (sx == 0 && dx == 0 && width * p->fontwidth * 4 == bytes) {
mymemmove(p->screen_base + dy * linesize,
p->screen_base + sy * linesize,
height * linesize);
- else if (dy < sy || (dy == sy && dx < sx)) {
- src = p->screen_base + sy * linesize + sx * 32;
- dst = p->screen_base + dy * linesize + dx * 32;
- for (rows = height * p->fontheight ; rows-- ;) {
- mymemmove(dst, src, width * 32);
+ return;
+ }
+ if (p->fontwidthlog) {
+ sx <<= p->fontwidthlog+2;
+ dx <<= p->fontwidthlog+2;
+ width <<= p->fontwidthlog+2;
+ } else {
+ sx *= p->fontwidth*4;
+ dx *= p->fontwidth*4;
+ width *= p->fontwidth*4;
+ }
+ if (dy < sy || (dy == sy && dx < sx)) {
+ src = p->screen_base + sy * linesize + sx;
+ dst = p->screen_base + dy * linesize + dx;
+ for (rows = height * p->fontheight; rows--;) {
+ mymemmove(dst, src, width);
src += bytes;
dst += bytes;
}
} else {
- src = p->screen_base + (sy+height) * linesize + sx * 32 - bytes;
- dst = p->screen_base + (dy+height) * linesize + dx * 32 - bytes;
- for (rows = height * p->fontheight ; rows-- ;) {
- mymemmove(dst, src, width * 32);
+ src = p->screen_base + (sy+height) * linesize + sx - bytes;
+ dst = p->screen_base + (dy+height) * linesize + dx - bytes;
+ for (rows = height * p->fontheight; rows--;) {
+ mymemmove(dst, src, width);
src -= bytes;
dst -= bytes;
}
@@ -67,36 +79,29 @@ void fbcon_cfb32_clear(struct vc_data *conp, struct display *p, int sy, int sx,
int bytes = p->next_line, lines = height * p->fontheight, rows, i;
u32 bgx;
- dest = p->screen_base + sy * p->fontheight * bytes + sx * 32;
+ dest = p->screen_base + sy * p->fontheight * bytes + sx * p->fontwidth * 4;
bgx = fbcon_cfb32_cmap[attr_bgcol_ec(p, conp)];
- if (sx == 0 && width * 32 == bytes)
- for (i = 0 ; i < lines * width ; i++) {
+ width *= p->fontwidth/4;
+ if (sx == 0 && width * 16 == bytes)
+ for (i = 0; i < lines * width; i++) {
((u32 *)dest)[0] = bgx;
((u32 *)dest)[1] = bgx;
((u32 *)dest)[2] = bgx;
((u32 *)dest)[3] = bgx;
- ((u32 *)dest)[4] = bgx;
- ((u32 *)dest)[5] = bgx;
- ((u32 *)dest)[6] = bgx;
- ((u32 *)dest)[7] = bgx;
- dest += 32;
+ dest += 16;
}
else {
dest0 = dest;
- for (rows = lines; rows-- ; dest0 += bytes) {
+ for (rows = lines; rows--; dest0 += bytes) {
dest = dest0;
- for (i = 0 ; i < width ; i++) {
+ for (i = 0; i < width; i++) {
((u32 *)dest)[0] = bgx;
((u32 *)dest)[1] = bgx;
((u32 *)dest)[2] = bgx;
((u32 *)dest)[3] = bgx;
- ((u32 *)dest)[4] = bgx;
- ((u32 *)dest)[5] = bgx;
- ((u32 *)dest)[6] = bgx;
- ((u32 *)dest)[7] = bgx;
- dest += 32;
+ dest += 16;
}
}
}
@@ -105,59 +110,108 @@ void fbcon_cfb32_clear(struct vc_data *conp, struct display *p, int sy, int sx,
void fbcon_cfb32_putc(struct vc_data *conp, struct display *p, int c, int yy,
int xx)
{
- u8 *dest, *cdat;
+ u8 *dest, *cdat, bits;
int bytes = p->next_line, rows;
u32 eorx, fgx, bgx;
- c &= 0xff;
-
- dest = p->screen_base + yy * p->fontheight * bytes + xx * 32;
- cdat = p->fontdata + c * p->fontheight;
-
- fgx = fbcon_cfb32_cmap[attr_fgcol(p, conp)];
- bgx = fbcon_cfb32_cmap[attr_bgcol(p, conp)];
+ dest = p->screen_base + yy * p->fontheight * bytes + xx * p->fontwidth * 4;
+#ifdef CONFIG_FBCON_FONTWIDTH8_ONLY
+ cdat = p->fontdata + (c & p->charmask) * p->fontheight;
+#else
+ if (p->fontwidth <= 8)
+ cdat = p->fontdata + (c & p->charmask) * p->fontheight;
+ else
+ cdat = p->fontdata + ((c & p->charmask) * p->fontheight << 1);
+#endif
+ fgx = fbcon_cfb32_cmap[attr_fgcol(p, c)];
+ bgx = fbcon_cfb32_cmap[attr_bgcol(p, c)];
eorx = fgx ^ bgx;
- for (rows = p->fontheight ; rows-- ; dest += bytes) {
- u8 bits = *cdat++;
+ for (rows = p->fontheight; rows--; dest += bytes) {
+ bits = *cdat++;
((u32 *)dest)[0] = (-(bits >> 7) & eorx) ^ bgx;
((u32 *)dest)[1] = (-(bits >> 6 & 1) & eorx) ^ bgx;
((u32 *)dest)[2] = (-(bits >> 5 & 1) & eorx) ^ bgx;
((u32 *)dest)[3] = (-(bits >> 4 & 1) & eorx) ^ bgx;
+#ifndef CONFIG_FBCON_FONTWIDTH8_ONLY
+ if (p->fontwidth < 8)
+ continue;
+#endif
((u32 *)dest)[4] = (-(bits >> 3 & 1) & eorx) ^ bgx;
((u32 *)dest)[5] = (-(bits >> 2 & 1) & eorx) ^ bgx;
((u32 *)dest)[6] = (-(bits >> 1 & 1) & eorx) ^ bgx;
((u32 *)dest)[7] = (-(bits & 1) & eorx) ^ bgx;
+#ifndef CONFIG_FBCON_FONTWIDTH8_ONLY
+ if (p->fontwidth < 12)
+ continue;
+ bits = *cdat++;
+ ((u32 *)dest)[8] = (-(bits >> 7) & eorx) ^ bgx;
+ ((u32 *)dest)[9] = (-(bits >> 6 & 1) & eorx) ^ bgx;
+ ((u32 *)dest)[10] = (-(bits >> 5 & 1) & eorx) ^ bgx;
+ ((u32 *)dest)[11] = (-(bits >> 4 & 1) & eorx) ^ bgx;
+ if (p->fontwidth < 16)
+ continue;
+ ((u32 *)dest)[12] = (-(bits >> 3 & 1) & eorx) ^ bgx;
+ ((u32 *)dest)[13] = (-(bits >> 2 & 1) & eorx) ^ bgx;
+ ((u32 *)dest)[14] = (-(bits >> 1 & 1) & eorx) ^ bgx;
+ ((u32 *)dest)[15] = (-(bits & 1) & eorx) ^ bgx;
+#endif
}
}
-void fbcon_cfb32_putcs(struct vc_data *conp, struct display *p, const char *s,
- int count, int yy, int xx)
+void fbcon_cfb32_putcs(struct vc_data *conp, struct display *p,
+ const unsigned short *s, int count, int yy, int xx)
{
- u8 *cdat, c, *dest, *dest0;
+ u8 *cdat, *dest, *dest0, bits;
+ u16 c;
int rows, bytes = p->next_line;
u32 eorx, fgx, bgx;
- dest0 = p->screen_base + yy * p->fontheight * bytes + xx * 32;
- fgx = fbcon_cfb32_cmap[attr_fgcol(p, conp)];
- bgx = fbcon_cfb32_cmap[attr_bgcol(p, conp)];
+ dest0 = p->screen_base + yy * p->fontheight * bytes + xx * p->fontwidth * 4;
+ fgx = fbcon_cfb32_cmap[attr_fgcol(p, *s)];
+ bgx = fbcon_cfb32_cmap[attr_bgcol(p, *s)];
eorx = fgx ^ bgx;
while (count--) {
- c = *s++;
+ c = *s++ & p->charmask;
+#ifdef CONFIG_FBCON_FONTWIDTH8_ONLY
cdat = p->fontdata + c * p->fontheight;
-
- for (rows = p->fontheight, dest = dest0; rows-- ; dest += bytes) {
- u8 bits = *cdat++;
+#else
+ if (p->fontwidth <= 8)
+ cdat = p->fontdata + c * p->fontheight;
+ else
+ cdat = p->fontdata + (c * p->fontheight << 1);
+#endif
+ for (rows = p->fontheight, dest = dest0; rows--; dest += bytes) {
+ bits = *cdat++;
((u32 *)dest)[0] = (-(bits >> 7) & eorx) ^ bgx;
((u32 *)dest)[1] = (-(bits >> 6 & 1) & eorx) ^ bgx;
((u32 *)dest)[2] = (-(bits >> 5 & 1) & eorx) ^ bgx;
((u32 *)dest)[3] = (-(bits >> 4 & 1) & eorx) ^ bgx;
+#ifndef CONFIG_FBCON_FONTWIDTH8_ONLY
+ if (p->fontwidth < 8)
+ continue;
+#endif
((u32 *)dest)[4] = (-(bits >> 3 & 1) & eorx) ^ bgx;
((u32 *)dest)[5] = (-(bits >> 2 & 1) & eorx) ^ bgx;
((u32 *)dest)[6] = (-(bits >> 1 & 1) & eorx) ^ bgx;
((u32 *)dest)[7] = (-(bits & 1) & eorx) ^ bgx;
+#ifndef CONFIG_FBCON_FONTWIDTH8_ONLY
+ if (p->fontwidth < 12)
+ continue;
+ bits = *cdat++;
+ ((u32 *)dest)[8] = (-(bits >> 7) & eorx) ^ bgx;
+ ((u32 *)dest)[9] = (-(bits >> 6 & 1) & eorx) ^ bgx;
+ ((u32 *)dest)[10] = (-(bits >> 5 & 1) & eorx) ^ bgx;
+ ((u32 *)dest)[11] = (-(bits >> 4 & 1) & eorx) ^ bgx;
+ if (p->fontwidth < 16)
+ continue;
+ ((u32 *)dest)[12] = (-(bits >> 3 & 1) & eorx) ^ bgx;
+ ((u32 *)dest)[13] = (-(bits >> 2 & 1) & eorx) ^ bgx;
+ ((u32 *)dest)[14] = (-(bits >> 1 & 1) & eorx) ^ bgx;
+ ((u32 *)dest)[15] = (-(bits & 1) & eorx) ^ bgx;
+#endif
}
- dest0 += 32;
+ dest0 += p->fontwidth*4;
}
}
@@ -166,16 +220,61 @@ void fbcon_cfb32_revc(struct display *p, int xx, int yy)
u8 *dest;
int bytes = p->next_line, rows;
- dest = p->screen_base + yy * p->fontheight * bytes + xx * 32;
- for (rows = p->fontheight ; rows-- ; dest += bytes) {
- ((u32 *)dest)[0] ^= 0xffffffff;
- ((u32 *)dest)[1] ^= 0xffffffff;
- ((u32 *)dest)[2] ^= 0xffffffff;
- ((u32 *)dest)[3] ^= 0xffffffff;
- ((u32 *)dest)[4] ^= 0xffffffff;
- ((u32 *)dest)[5] ^= 0xffffffff;
- ((u32 *)dest)[6] ^= 0xffffffff;
- ((u32 *)dest)[7] ^= 0xffffffff;
+ dest = p->screen_base + yy * p->fontheight * bytes + xx * p->fontwidth * 4;
+ for (rows = p->fontheight; rows--; dest += bytes) {
+#ifdef CONFIG_FBCON_FONTWIDTH8_ONLY
+ ((u32 *)dest)[4] ^= 0xffffffff; ((u32 *)dest)[5] ^= 0xffffffff;
+ ((u32 *)dest)[6] ^= 0xffffffff; ((u32 *)dest)[7] ^= 0xffffffff;
+ ((u32 *)dest)[0] ^= 0xffffffff; ((u32 *)dest)[1] ^= 0xffffffff;
+ ((u32 *)dest)[2] ^= 0xffffffff; ((u32 *)dest)[3] ^= 0xffffffff;
+#else
+ switch (p->fontwidth) {
+ case 16:
+ ((u32 *)dest)[12] ^= 0xffffffff; ((u32 *)dest)[13] ^= 0xffffffff;
+ ((u32 *)dest)[14] ^= 0xffffffff; ((u32 *)dest)[15] ^= 0xffffffff;
+ /* FALL THROUGH */
+ case 12:
+ ((u32 *)dest)[8] ^= 0xffffffff; ((u32 *)dest)[9] ^= 0xffffffff;
+ ((u32 *)dest)[10] ^= 0xffffffff; ((u32 *)dest)[11] ^= 0xffffffff;
+ /* FALL THROUGH */
+ case 8:
+ ((u32 *)dest)[4] ^= 0xffffffff; ((u32 *)dest)[5] ^= 0xffffffff;
+ ((u32 *)dest)[6] ^= 0xffffffff; ((u32 *)dest)[7] ^= 0xffffffff;
+ /* FALL THROUGH */
+ case 4:
+ ((u32 *)dest)[0] ^= 0xffffffff; ((u32 *)dest)[1] ^= 0xffffffff;
+ ((u32 *)dest)[2] ^= 0xffffffff; ((u32 *)dest)[3] ^= 0xffffffff;
+ /* FALL THROUGH */
+ }
+#endif
+ }
+}
+
+void fbcon_cfb32_clear_margins(struct vc_data *conp, struct display *p)
+{
+ u8 *dest0;
+ u32 *dest;
+ int bytes = p->next_line;
+ u32 bgx;
+ int i, j;
+
+ unsigned int right_start = conp->vc_cols*p->fontwidth;
+ unsigned int right_width = p->var.xres_virtual-right_start;
+ unsigned int bottom_start = conp->vc_rows*p->fontheight;
+ unsigned int bottom_width = p->var.yres_virtual-bottom_start;
+
+ bgx = fbcon_cfb32_cmap[attr_bgcol_ec(p, conp)];
+
+ if (right_width) {
+ dest0 = p->screen_base+right_start*4;
+ for (i = 0; i < bottom_start; i++, dest0 += bytes)
+ for (j = 0, dest = (u32 *)dest0; j < right_width; j++)
+ *dest++ = bgx;
+ }
+ if (bottom_width) {
+ dest = (u32 *)(p->screen_base+bottom_start*bytes);
+ for (i = 0; i < bytes*bottom_width/4; i++)
+ *dest++ = bgx;
}
}
@@ -186,10 +285,22 @@ void fbcon_cfb32_revc(struct display *p, int xx, int yy)
struct display_switch fbcon_cfb32 = {
fbcon_cfb32_setup, fbcon_cfb32_bmove, fbcon_cfb32_clear, fbcon_cfb32_putc,
- fbcon_cfb32_putcs, fbcon_cfb32_revc
+ fbcon_cfb32_putcs, fbcon_cfb32_revc, NULL, NULL, fbcon_cfb32_clear_margins,
+ FONTWIDTH(4)|FONTWIDTH(8)|FONTWIDTH(12)|FONTWIDTH(16)
};
+#ifdef MODULE
+int init_module(void)
+{
+ return 0;
+}
+
+void cleanup_module(void)
+{}
+#endif /* MODULE */
+
+
/*
* Visible symbols for modules
*/