]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/syscons/scvgarndr.c
Update our copy of DTS from the ones from Linux 4.14
[FreeBSD/FreeBSD.git] / sys / dev / syscons / scvgarndr.c
1 /*-
2  * Copyright (c) 1999 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to The DragonFly Project
6  * by Sascha Wildner <saw@online.de>
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer as
13  *    the first lines of this file unmodified.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  *
29  */
30
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33
34 #include "opt_syscons.h"
35 #include "opt_vga.h"
36
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/kernel.h>
40 #include <sys/module.h>
41 #include <sys/fbio.h>
42 #include <sys/consio.h>
43 #include <sys/sysctl.h>
44
45 #include <machine/bus.h>
46
47 #include <dev/fb/fbreg.h>
48 #include <dev/fb/vgareg.h>
49 #include <dev/syscons/syscons.h>
50
51 #include <isa/isareg.h>
52
53 #ifndef SC_RENDER_DEBUG
54 #define SC_RENDER_DEBUG         0
55 #endif
56
57 static vr_clear_t               vga_txtclear;
58 static vr_draw_border_t         vga_txtborder;
59 static vr_draw_t                vga_txtdraw;
60 static vr_set_cursor_t          vga_txtcursor_shape;
61 static vr_draw_cursor_t         vga_txtcursor;
62 static vr_blink_cursor_t        vga_txtblink;
63 #ifndef SC_NO_CUTPASTE
64 static vr_draw_mouse_t          vga_txtmouse;
65 #else
66 #define vga_txtmouse            (vr_draw_mouse_t *)vga_nop
67 #endif
68
69 #ifdef SC_PIXEL_MODE
70 static vr_init_t                vga_rndrinit;
71 static vr_clear_t               vga_pxlclear_direct;
72 static vr_clear_t               vga_pxlclear_planar;
73 static vr_draw_border_t         vga_pxlborder_direct;
74 static vr_draw_border_t         vga_pxlborder_planar;
75 static vr_draw_t                vga_vgadraw_direct;
76 static vr_draw_t                vga_vgadraw_planar;
77 static vr_set_cursor_t          vga_pxlcursor_shape;
78 static vr_draw_cursor_t         vga_pxlcursor_direct;
79 static vr_draw_cursor_t         vga_pxlcursor_planar;
80 static vr_blink_cursor_t        vga_pxlblink_direct;
81 static vr_blink_cursor_t        vga_pxlblink_planar;
82 #ifndef SC_NO_CUTPASTE
83 static vr_draw_mouse_t          vga_pxlmouse_direct;
84 static vr_draw_mouse_t          vga_pxlmouse_planar;
85 #else
86 #define vga_pxlmouse_direct     (vr_draw_mouse_t *)vga_nop
87 #define vga_pxlmouse_planar     (vr_draw_mouse_t *)vga_nop
88 #endif
89 #endif /* SC_PIXEL_MODE */
90
91 #ifndef SC_NO_MODE_CHANGE
92 static vr_draw_border_t         vga_grborder;
93 #endif
94
95 static void                     vga_nop(scr_stat *scp);
96
97 static sc_rndr_sw_t txtrndrsw = {
98         (vr_init_t *)vga_nop,
99         vga_txtclear,
100         vga_txtborder,
101         vga_txtdraw,    
102         vga_txtcursor_shape,
103         vga_txtcursor,
104         vga_txtblink,
105         (vr_set_mouse_t *)vga_nop,
106         vga_txtmouse,
107 };
108 RENDERER(mda, 0, txtrndrsw, vga_set);
109 RENDERER(cga, 0, txtrndrsw, vga_set);
110 RENDERER(ega, 0, txtrndrsw, vga_set);
111 RENDERER(vga, 0, txtrndrsw, vga_set);
112
113 #ifdef SC_PIXEL_MODE
114 static sc_rndr_sw_t vgarndrsw = {
115         vga_rndrinit,
116         (vr_clear_t *)vga_nop,
117         (vr_draw_border_t *)vga_nop,
118         (vr_draw_t *)vga_nop,
119         vga_pxlcursor_shape,
120         (vr_draw_cursor_t *)vga_nop,
121         (vr_blink_cursor_t *)vga_nop,
122         (vr_set_mouse_t *)vga_nop,
123         (vr_draw_mouse_t *)vga_nop,
124 };
125 RENDERER(ega, PIXEL_MODE, vgarndrsw, vga_set);
126 RENDERER(vga, PIXEL_MODE, vgarndrsw, vga_set);
127 #endif /* SC_PIXEL_MODE */
128
129 #ifndef SC_NO_MODE_CHANGE
130 static sc_rndr_sw_t grrndrsw = {
131         (vr_init_t *)vga_nop,
132         (vr_clear_t *)vga_nop,
133         vga_grborder,
134         (vr_draw_t *)vga_nop,
135         (vr_set_cursor_t *)vga_nop,
136         (vr_draw_cursor_t *)vga_nop,
137         (vr_blink_cursor_t *)vga_nop,
138         (vr_set_mouse_t *)vga_nop,
139         (vr_draw_mouse_t *)vga_nop,
140 };
141 RENDERER(cga, GRAPHICS_MODE, grrndrsw, vga_set);
142 RENDERER(ega, GRAPHICS_MODE, grrndrsw, vga_set);
143 RENDERER(vga, GRAPHICS_MODE, grrndrsw, vga_set);
144 #endif /* SC_NO_MODE_CHANGE */
145
146 RENDERER_MODULE(vga, vga_set);
147
148 #ifndef SC_NO_CUTPASTE
149 #if !defined(SC_ALT_MOUSE_IMAGE) || defined(SC_PIXEL_MODE)
150 struct mousedata {
151         u_short md_border[16];
152         u_short md_interior[16];
153         u_char  md_width;
154         u_char  md_height;
155         u_char  md_baspect;
156         u_char  md_iaspect;
157         const char *md_name;
158 };
159
160 static const struct mousedata mouse10x16_50 = { {
161         0xC000, 0xA000, 0x9000, 0x8800, 0x8400, 0x8200, 0x8100, 0x8200,
162         0x8400, 0x8400, 0x8400, 0x9200, 0xB200, 0xA900, 0xC900, 0x8600, }, {
163         0x0000, 0x4000, 0x6000, 0x7000, 0x7800, 0x7C00, 0x7E00, 0x7C00,
164         0x7800, 0x7800, 0x7800, 0x6C00, 0x4C00, 0x4600, 0x0600, 0x0000, },
165         10, 16, 49, 52, "mouse10x16_50",
166 };
167
168 static const struct mousedata mouse8x14_67 = { {
169         0xC000, 0xA000, 0x9000, 0x8800, 0x8400, 0x8200, 0x8100, 0x8700,
170         0x8400, 0x9200, 0xB200, 0xA900, 0xC900, 0x0600, 0x0000, 0x0000, }, {
171         0x0000, 0x4000, 0x6000, 0x7000, 0x7800, 0x7C00, 0x7E00, 0x7800,
172         0x7800, 0x6C00, 0x4C00, 0x4600, 0x0600, 0x0000, 0x0000, 0x0000, },
173         8, 14, 64, 65, "mouse8x14_67",
174 };
175
176 static const struct mousedata mouse8x13_75 = { {
177         0xC000, 0xA000, 0x9000, 0x8800, 0x8400, 0x8200, 0x8600, 0x8400,
178         0xB200, 0xD200, 0x0900, 0x0900, 0x0600, 0x0000, 0x0000, 0x0000, }, {
179         0x0000, 0x4000, 0x6000, 0x7000, 0x7800, 0x7C00, 0x7800, 0x7800,
180         0x4C00, 0x0C00, 0x0600, 0x0600, 0x0000, 0x0000, 0x0000, 0x0000, },
181         8, 13, 75, 80, "mouse8x13_75",
182 };
183
184 static const struct mousedata mouse10x16_75 = { {
185         0xC000, 0xA000, 0x9000, 0x8800, 0x8400, 0x8200, 0x8100, 0x8700,
186         0x8400, 0x9200, 0xB200, 0xC900, 0x0900, 0x0480, 0x0480, 0x0300, }, {
187         0x0000, 0x4000, 0x6000, 0x7000, 0x7800, 0x7C00, 0x7E00, 0x7800,
188         0x7800, 0x6C00, 0x4C00, 0x0600, 0x0600, 0x0300, 0x0300, 0x0000, },
189         10, 16, 72, 75, "mouse10x16_75",
190 };
191
192 static const struct mousedata mouse9x13_90 = { {
193         0xC000, 0xA000, 0x9000, 0x8800, 0x8400, 0x8200, 0x8100, 0x8780,
194         0x9200, 0xB200, 0xD900, 0x8900, 0x0600, 0x0000, 0x0000, 0x0000, }, {
195         0x0000, 0x4000, 0x6000, 0x7000, 0x7800, 0x7C00, 0x7E00, 0x7800,
196         0x6C00, 0x4C00, 0x0600, 0x0600, 0x0000, 0x0000, 0x0000, 0x0000, },
197         9, 13, 89, 89, "mouse9x13_90",
198 };
199
200 static const struct mousedata mouse10x16_90 = { {
201         0xC000, 0xA000, 0x9000, 0x8800, 0x8400, 0x8200, 0x8100, 0x8080,
202         0x8040, 0x83E0, 0x8200, 0x9900, 0xA900, 0xC480, 0x8480, 0x0300, }, {
203         0x0000, 0x4000, 0x6000, 0x7000, 0x7800, 0x7C00, 0x7E00, 0x7F00,
204         0x7F80, 0x7C00, 0x7C00, 0x6600, 0x4600, 0x0300, 0x0300, 0x0000, },
205         10, 16, 89, 89, "mouse10x16_90",
206 };
207
208 static const struct mousedata mouse9x13_100 = { {
209         0xC000, 0xA000, 0x9000, 0x8800, 0x8400, 0x8200, 0x8100, 0x8780,
210         0xB200, 0xD200, 0x8900, 0x0900, 0x0600, 0x0000, 0x0000, 0x0000, }, {
211         0x0000, 0x4000, 0x6000, 0x7000, 0x7800, 0x7C00, 0x7E00, 0x7800,
212         0x4C00, 0x0C00, 0x0600, 0x0600, 0x0000, 0x0000, 0x0000, 0x0000, },
213         9, 13, 106, 113, "mouse9x13_100",
214 };
215
216 static const struct mousedata mouse10x16_100 = { {
217         0xC000, 0xA000, 0x9000, 0x8800, 0x8400, 0x8200, 0x8100, 0x8080,
218         0x8040, 0x83C0, 0x9200, 0xA900, 0xC900, 0x0480, 0x0480, 0x0300, }, {
219         0x0000, 0x4000, 0x6000, 0x7000, 0x7800, 0x7C00, 0x7E00, 0x7F00,
220         0x7F80, 0x7C00, 0x6C00, 0x4600, 0x0600, 0x0300, 0x0300, 0x0000, },
221         10, 16, 96, 106, "mouse10x16_100",
222 };
223
224 static const struct mousedata mouse10x14_120 = { {
225         0xC000, 0xA000, 0x9000, 0x8800, 0x8400, 0x8200, 0x8100, 0x8080,
226         0x97C0, 0xB200, 0xF200, 0xC900, 0x8900, 0x0600, 0x0000, 0x0000, }, {
227         0x0000, 0x4000, 0x6000, 0x7000, 0x7800, 0x7C00, 0x7E00, 0x7F00,
228         0x6800, 0x4C00, 0x0C00, 0x0600, 0x0600, 0x0000, 0x0000, 0x0000, },
229         10, 14, 120, 124, "mouse10x14_120",
230 };
231
232 static const struct mousedata mouse10x16_120 = { {
233         0xC000, 0xA000, 0x9000, 0x8800, 0x8400, 0x8200, 0x8100, 0x8080,
234         0x97C0, 0xB200, 0xF200, 0xC900, 0x8900, 0x0480, 0x0480, 0x0300, }, {
235         0x0000, 0x4000, 0x6000, 0x7000, 0x7800, 0x7C00, 0x7E00, 0x7F00,
236         0x6800, 0x4C00, 0x0C00, 0x0600, 0x0600, 0x0300, 0x0300, 0x0000, },
237         10, 16, 120, 124, "mouse10x16_120",
238 };
239
240 static const struct mousedata mouse9x13_133 = { {
241         0xC000, 0xA000, 0x9000, 0x8800, 0x8400, 0x8200, 0x8100, 0x8080,
242         0x9780, 0xB200, 0xC900, 0x0900, 0x0600, 0x0000, 0x0000, 0x0000, }, {
243         0x0000, 0x4000, 0x6000, 0x7000, 0x7800, 0x7C00, 0x7E00, 0x7F00,
244         0x6800, 0x4C00, 0x0600, 0x0600, 0x0000, 0x0000, 0x0000, 0x0000, },
245         9, 13, 142, 124, "mouse9x13_133",
246 };
247
248 static const struct mousedata mouse10x16_133 = { {
249         0xC000, 0xA000, 0x9000, 0x8800, 0x8400, 0x8200, 0x8100, 0x8080,
250         0x8040, 0x93E0, 0xB200, 0xC900, 0x8900, 0x0480, 0x0480, 0x0300, }, {
251         0x0000, 0x4000, 0x6000, 0x7000, 0x7800, 0x7C00, 0x7E00, 0x7F00,
252         0x7F80, 0x6C00, 0x4C00, 0x0600, 0x0600, 0x0300, 0x0300, 0x0000, },
253         10, 16, 120, 133, "mouse10x16_133",
254 };
255
256 static const struct mousedata mouse14x10_240 = { {
257         0xF800, 0xCE00, 0xC380, 0xC0E0, 0xC038, 0xC1FC, 0xDCC0, 0xF660,
258         0xC330, 0x01E0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, }, {
259         0x0000, 0x3000, 0x3C00, 0x3F00, 0x3FC0, 0x3E00, 0x2300, 0x0180,
260         0x00C0, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, },
261         14, 10, 189, 189, "mouse14x10_240",
262 };
263
264 static const struct mousedata * const mouselarge[] = {
265         &mouse10x16_50,
266         &mouse8x14_67,
267         &mouse10x16_75,
268         &mouse10x16_90,
269         &mouse10x16_100,
270         &mouse10x16_120,
271         &mouse10x16_133,
272         &mouse14x10_240,
273 };
274
275 static const struct mousedata * const mousesmall[] = {
276         &mouse8x14_67,
277         &mouse8x13_75,
278         &mouse9x13_90,
279         &mouse9x13_100,
280         &mouse10x14_120,
281         &mouse9x13_133,
282         &mouse14x10_240,
283 };
284 #endif
285 #endif
286
287 #ifdef SC_PIXEL_MODE
288 #define GET_PIXEL(scp, pos, x, w)                                       \
289 ({                                                                      \
290         (scp)->sc->adp->va_window +                                     \
291             (x) * (scp)->xoff +                                         \
292             (scp)->yoff * (scp)->font_size * (w) +                      \
293             (x) * ((pos) % (scp)->xsize) +                              \
294             (scp)->font_size * (w) * ((pos) / (scp)->xsize);            \
295 })
296
297 #define DRAW_PIXEL(scp, pos, color) do {                                \
298         switch ((scp)->sc->adp->va_info.vi_depth) {                     \
299         case 32:                                                        \
300                 writel((pos), vga_palette32[color]);                    \
301                 break;                                                  \
302         case 24:                                                        \
303                 if (((pos) & 1) == 0) {                                 \
304                         writew((pos), vga_palette32[color]);            \
305                         writeb((pos) + 2, vga_palette32[color] >> 16);  \
306                 } else {                                                \
307                         writeb((pos), vga_palette32[color]);            \
308                         writew((pos) + 1, vga_palette32[color] >> 8);   \
309                 }                                                       \
310                 break;                                                  \
311         case 16:                                                        \
312                 if ((scp)->sc->adp->va_info.vi_pixel_fsizes[1] == 5)    \
313                         writew((pos), vga_palette15[color]);            \
314                 else                                                    \
315                         writew((pos), vga_palette16[color]);            \
316                 break;                                                  \
317         case 15:                                                        \
318                 writew((pos), vga_palette15[color]);                    \
319                 break;                                                  \
320         case 8:                                                         \
321                 writeb((pos), (uint8_t)(color));                        \
322         }                                                               \
323 } while (0)
324         
325 static uint32_t vga_palette32[16] = {
326         0x000000, 0x0000ad, 0x00ad00, 0x00adad,
327         0xad0000, 0xad00ad, 0xad5200, 0xadadad,
328         0x525252, 0x5252ff, 0x52ff52, 0x52ffff,
329         0xff5252, 0xff52ff, 0xffff52, 0xffffff
330 };
331
332 static uint16_t vga_palette16[16] = {
333         0x0000, 0x0016, 0x0560, 0x0576, 0xb000, 0xb016, 0xb2a0, 0xb576,
334         0x52aa, 0x52bf, 0x57ea, 0x57ff, 0xfaaa, 0xfabf, 0xffea, 0xffff
335 };
336
337 static uint16_t vga_palette15[16] = {
338         0x0000, 0x0016, 0x02c0, 0x02d6, 0x5800, 0x5816, 0x5940, 0x5ad6,
339         0x294a, 0x295f, 0x2bea, 0x2bff, 0x7d4a, 0x7d5f, 0x7fea, 0x7fff
340 };
341 #endif
342
343 static int vga_aspect_scale= 100;
344 SYSCTL_INT(_machdep, OID_AUTO, vga_aspect_scale, CTLFLAG_RW,
345     &vga_aspect_scale, 0, "Aspect scale ratio (3:4):actual times 100");
346
347 static u_short
348 vga_flipattr(u_short a, int blink)
349 {
350         if (blink)
351                 a = (a & 0x8800) | ((a & 0x7000) >> 4) |
352                     ((a & 0x0700) << 4);
353         else
354                 a = ((a & 0xf000) >> 4) | ((a & 0x0f00) << 4);
355         return (a);
356 }
357
358 static u_short
359 vga_cursorattr_adj(scr_stat *scp, u_short a, int blink)
360 {
361         int i;
362         u_short bg, bgmask, fg, newbg;
363
364         /*
365          * The cursor attribute is usually that of the underlying char
366          * with only the bg changed, to the first preferred color that
367          * differs from both the fg and bg.  If there is no such color,
368          * use reverse video.
369          */
370         bgmask = blink ? 0x7000 : 0xf000;
371         bg = a & bgmask;
372         fg = a & 0x0f00;
373         for (i = 0; i < nitems(scp->curs_attr.bg); i++) {
374                 newbg = (scp->curs_attr.bg[i] << 12) & bgmask;
375                 if (newbg != bg && newbg != (fg << 4))
376                         break;
377         }
378         if (i == nitems(scp->curs_attr.bg))
379                 return (vga_flipattr(a, blink));
380         return (fg | newbg | (blink ? a & 0x8000 : 0));
381 }
382
383 static void
384 vga_setmdp(scr_stat *scp)
385 {
386 #if !defined(SC_NO_CUTPASTE) && \
387    (!defined(SC_ALT_MOUSE_IMAGE) || defined(SC_PIXEL_MODE))
388         const struct mousedata *mdp;
389         const struct mousedata * const *mdpp;
390         int aspect, best_i, best_v, i, n, v, wb, wi, xpixel, ypixel;
391
392         xpixel = scp->xpixel;
393         ypixel = scp->ypixel;
394         if (scp->sc->adp->va_flags & V_ADP_CWIDTH9)
395                 xpixel = xpixel * 9 / 8;
396
397         /* If 16:9 +-1%, assume square pixels, else scale to 4:3 or full. */
398         aspect = xpixel * 900 / ypixel / 16;
399         if (aspect < 99 || aspect > 100)
400                 aspect = xpixel * 300 / ypixel / 4 * vga_aspect_scale / 100;
401
402         /*
403          * Use 10x16 cursors except even with 8x8 fonts except in ~200-
404          * line modes where pixels are very large and in text mode where
405          * even 13 pixels high is really 4 too many.  Clipping a 16-high
406          * cursor at 9-high gives a variable tail which looks better than
407          * a smaller cursor with a constant tail.
408          *
409          * XXX: the IS*SC() macros don't work when this is called at the
410          * end of a mode switch since UNKNOWN_SC is still set.
411          */
412         if (scp->font_size <= 8 &&
413             (ypixel < 300 || !(scp->status & PIXEL_MODE))) {
414                 mdpp = &mousesmall[0];
415                 n = nitems(mousesmall);
416         } else {
417                 mdpp = &mouselarge[0];
418                 n = nitems(mouselarge);
419         }
420         if (scp->status & PIXEL_MODE) {
421                 wb = 1024;
422                 wi = 256;
423         } else {
424                 wb = 256;
425                 wi = 1024;
426         }
427         best_i = 0;
428         best_v = 0x7fffffff;
429         for (i = 0; i < n; i++) {
430                 v = (wb * abs(mdpp[i]->md_baspect - aspect) +
431                      wi * abs(mdpp[i]->md_iaspect - aspect)) / aspect;
432                 if (best_v > v) {
433                         best_v = v;
434                         best_i = i;
435                 }
436         }
437         mdp = mdpp[best_i];
438         scp->mouse_data = mdp;
439 #endif /* !SC_NO_CUTPASTE && (!SC_ALT_MOUSE_IMAGE || SC_PIXEL_MODE) */
440 }
441
442 static void
443 vga_nop(scr_stat *scp)
444 {
445 }
446
447 /* text mode renderer */
448
449 static void
450 vga_txtclear(scr_stat *scp, int c, int attr)
451 {
452         sc_vtb_clear(&scp->scr, c, attr);
453 }
454
455 static void
456 vga_txtborder(scr_stat *scp, int color)
457 {
458         vidd_set_border(scp->sc->adp, color);
459 }
460
461 static void
462 vga_txtdraw(scr_stat *scp, int from, int count, int flip)
463 {
464         vm_offset_t p;
465         int c;
466         int a;
467
468         if (from + count > scp->xsize*scp->ysize)
469                 count = scp->xsize*scp->ysize - from;
470
471         if (flip) {
472                 for (p = sc_vtb_pointer(&scp->scr, from); count-- > 0; ++from) {
473                         c = sc_vtb_getc(&scp->vtb, from);
474                         a = sc_vtb_geta(&scp->vtb, from);
475                         a = vga_flipattr(a, TRUE);
476                         p = sc_vtb_putchar(&scp->scr, p, c, a);
477                 }
478         } else {
479                 sc_vtb_copy(&scp->vtb, from, &scp->scr, from, count);
480         }
481 }
482
483 static void 
484 vga_txtcursor_shape(scr_stat *scp, int base, int height, int blink)
485 {
486         vga_setmdp(scp);
487         if (base < 0 || base >= scp->font_size)
488                 return;
489         /* the caller may set height <= 0 in order to disable the cursor */
490         vidd_set_hw_cursor_shape(scp->sc->adp, base, height,
491             scp->font_size, blink);
492 }
493
494 static void
495 draw_txtcharcursor(scr_stat *scp, int at, u_short c, u_short a, int flip)
496 {
497         sc_softc_t *sc;
498
499         sc = scp->sc;
500
501 #ifndef SC_NO_FONT_LOADING
502         if (scp->curs_attr.flags & CONS_CHAR_CURSOR) {
503                 unsigned char *font;
504                 int h;
505                 int i;
506
507                 if (scp->font_size < 14) {
508                         font = sc->font_8;
509                         h = 8;
510                 } else if (scp->font_size >= 16) {
511                         font = sc->font_16;
512                         h = 16;
513                 } else {
514                         font = sc->font_14;
515                         h = 14;
516                 }
517                 if (scp->curs_attr.base >= h)
518                         return;
519                 if (flip)
520                         a = vga_flipattr(a, TRUE);
521                 /*
522                  * This clause handles partial-block cursors in text mode.
523                  * We want to change the attribute only under the partial
524                  * block, but in text mode we can only change full blocks.
525                  * Use reverse video instead.
526                  */
527                 bcopy(font + c*h, font + sc->cursor_char*h, h);
528                 font = font + sc->cursor_char*h;
529                 for (i = imax(h - scp->curs_attr.base - scp->curs_attr.height, 0);
530                         i < h - scp->curs_attr.base; ++i) {
531                         font[i] ^= 0xff;
532                 }
533                 /* XXX */
534                 vidd_load_font(sc->adp, 0, h, 8, font, sc->cursor_char, 1);
535                 sc_vtb_putc(&scp->scr, at, sc->cursor_char, a);
536         } else
537 #endif /* SC_NO_FONT_LOADING */
538         {
539                 if (flip)
540                         a = vga_flipattr(a, TRUE);
541                 a = vga_cursorattr_adj(scp, a, TRUE);
542                 sc_vtb_putc(&scp->scr, at, c, a);
543         }
544 }
545
546 static void
547 vga_txtcursor(scr_stat *scp, int at, int blink, int on, int flip)
548 {
549         video_adapter_t *adp;
550         int cursor_attr;
551
552         if (scp->curs_attr.height <= 0) /* the text cursor is disabled */
553                 return;
554
555         adp = scp->sc->adp;
556         if (blink) {
557                 scp->status |= VR_CURSOR_BLINK;
558                 if (on) {
559                         scp->status |= VR_CURSOR_ON;
560                         vidd_set_hw_cursor(adp, at%scp->xsize,
561                             at/scp->xsize);
562                 } else {
563                         if (scp->status & VR_CURSOR_ON)
564                                 vidd_set_hw_cursor(adp, -1, -1);
565                         scp->status &= ~VR_CURSOR_ON;
566                 }
567         } else {
568                 scp->status &= ~VR_CURSOR_BLINK;
569                 if (on) {
570                         scp->status |= VR_CURSOR_ON;
571                         draw_txtcharcursor(scp, at,
572                                            sc_vtb_getc(&scp->vtb, at),
573                                            sc_vtb_geta(&scp->vtb, at),
574                                            flip);
575                 } else {
576                         cursor_attr = sc_vtb_geta(&scp->vtb, at);
577                         if (flip)
578                                 cursor_attr = vga_flipattr(cursor_attr, TRUE);
579                         if (scp->status & VR_CURSOR_ON)
580                                 sc_vtb_putc(&scp->scr, at,
581                                             sc_vtb_getc(&scp->vtb, at),
582                                             cursor_attr);
583                         scp->status &= ~VR_CURSOR_ON;
584                 }
585         }
586 }
587
588 static void
589 vga_txtblink(scr_stat *scp, int at, int flip)
590 {
591 }
592
593 int sc_txtmouse_no_retrace_wait;
594
595 #ifndef SC_NO_CUTPASTE
596
597 static void
598 draw_txtmouse(scr_stat *scp, int x, int y)
599 {
600 #ifndef SC_ALT_MOUSE_IMAGE
601     if (ISMOUSEAVAIL(scp->sc->adp->va_flags)) {
602         const struct mousedata *mdp;
603         uint32_t border, interior;
604         u_char font_buf[128];
605         u_short cursor[32];
606         u_char c;
607         int pos;
608         int xoffset, yoffset;
609         int crtc_addr;
610         int i;
611
612         mdp = scp->mouse_data;
613
614         /* prepare mousepointer char's bitmaps */
615         pos = (y/scp->font_size - scp->yoff)*scp->xsize + x/8 - scp->xoff;
616         bcopy(scp->font + sc_vtb_getc(&scp->scr, pos)*scp->font_size,
617               &font_buf[0], scp->font_size);
618         bcopy(scp->font + sc_vtb_getc(&scp->scr, pos + 1)*scp->font_size,
619               &font_buf[32], scp->font_size);
620         bcopy(scp->font 
621                  + sc_vtb_getc(&scp->scr, pos + scp->xsize)*scp->font_size,
622               &font_buf[64], scp->font_size);
623         bcopy(scp->font
624                  + sc_vtb_getc(&scp->scr, pos + scp->xsize + 1)*scp->font_size,
625               &font_buf[96], scp->font_size);
626         for (i = 0; i < scp->font_size; ++i) {
627                 cursor[i] = font_buf[i]<<8 | font_buf[i+32];
628                 cursor[i + scp->font_size] = font_buf[i+64]<<8 | font_buf[i+96];
629         }
630
631         /* now and-or in the mousepointer image */
632         xoffset = x%8;
633         yoffset = y%scp->font_size;
634         for (i = 0; i < 16; ++i) {
635                 border = mdp->md_border[i] << 8; /* avoid right shifting out */
636                 interior = mdp->md_interior[i] << 8;
637                 border >>= xoffset;             /* normalize */
638                 interior >>= xoffset;
639                 if (scp->sc->adp->va_flags & V_ADP_CWIDTH9) {
640                         /* skip gaps between characters */
641                         border = (border & 0xff0000) |
642                                  (border & 0x007f80) << 1 |
643                                  (border & 0x00003f) << 2;
644                         interior = (interior & 0xff0000) |
645                                    (interior & 0x007f80) << 1 |
646                                    (interior & 0x00003f) << 2;
647                 }
648                 border >>= 8;                   /* back to normal position */
649                 interior >>= 8;
650                 cursor[i + yoffset] = (cursor[i + yoffset]  & ~border) |
651                                       interior;
652         }
653         for (i = 0; i < scp->font_size; ++i) {
654                 font_buf[i] = (cursor[i] & 0xff00) >> 8;
655                 font_buf[i + 32] = cursor[i] & 0xff;
656                 font_buf[i + 64] = (cursor[i + scp->font_size] & 0xff00) >> 8;
657                 font_buf[i + 96] = cursor[i + scp->font_size] & 0xff;
658         }
659
660 #if 1
661         /* wait for vertical retrace to avoid jitter on some videocards */
662         crtc_addr = scp->sc->adp->va_crtc_addr;
663         while (!sc_txtmouse_no_retrace_wait &&
664             !(inb(crtc_addr + 6) & 0x08))
665                 /* idle */ ;
666 #endif
667         c = scp->sc->mouse_char;
668         vidd_load_font(scp->sc->adp, 0, 32, 8, font_buf, c, 4); 
669
670         sc_vtb_putc(&scp->scr, pos, c, sc_vtb_geta(&scp->scr, pos));
671         /* FIXME: may be out of range! */
672         sc_vtb_putc(&scp->scr, pos + scp->xsize, c + 2,
673                     sc_vtb_geta(&scp->scr, pos + scp->xsize));
674         if (x < (scp->xsize - 1)*8) {
675                 sc_vtb_putc(&scp->scr, pos + 1, c + 1,
676                             sc_vtb_geta(&scp->scr, pos + 1));
677                 sc_vtb_putc(&scp->scr, pos + scp->xsize + 1, c + 3,
678                             sc_vtb_geta(&scp->scr, pos + scp->xsize + 1));
679         }
680     } else
681 #endif /* SC_ALT_MOUSE_IMAGE */
682     {
683         /* Red, magenta and brown are mapped to green to to keep it readable */
684         static const int col_conv[16] = {
685                 6, 6, 6, 6, 2, 2, 2, 6, 14, 14, 14, 14, 10, 10, 10, 14
686         };
687         int pos;
688         int color;
689         int a;
690
691         pos = (y/scp->font_size - scp->yoff)*scp->xsize + x/8 - scp->xoff;
692         a = sc_vtb_geta(&scp->scr, pos);
693         if (scp->sc->adp->va_flags & V_ADP_COLOR)
694                 color = (col_conv[(a & 0xf000) >> 12] << 12)
695                         | ((a & 0x0f00) | 0x0800);
696         else
697                 color = ((a & 0xf000) >> 4) | ((a & 0x0f00) << 4);
698         sc_vtb_putc(&scp->scr, pos, sc_vtb_getc(&scp->scr, pos), color);
699     }
700 }
701
702 static void
703 remove_txtmouse(scr_stat *scp, int x, int y)
704 {
705 }
706
707 static void 
708 vga_txtmouse(scr_stat *scp, int x, int y, int on)
709 {
710         if (on)
711                 draw_txtmouse(scp, x, y);
712         else
713                 remove_txtmouse(scp, x, y);
714 }
715
716 #endif /* SC_NO_CUTPASTE */
717
718 #ifdef SC_PIXEL_MODE
719
720 /* pixel (raster text) mode renderer */
721
722 static void
723 vga_rndrinit(scr_stat *scp)
724 {
725         if (scp->sc->adp->va_info.vi_mem_model == V_INFO_MM_PLANAR) {
726                 scp->rndr->clear = vga_pxlclear_planar;
727                 scp->rndr->draw_border = vga_pxlborder_planar;
728                 scp->rndr->draw = vga_vgadraw_planar;
729                 scp->rndr->draw_cursor = vga_pxlcursor_planar;
730                 scp->rndr->blink_cursor = vga_pxlblink_planar;
731                 scp->rndr->draw_mouse = vga_pxlmouse_planar;
732         } else
733         if (scp->sc->adp->va_info.vi_mem_model == V_INFO_MM_DIRECT ||
734             scp->sc->adp->va_info.vi_mem_model == V_INFO_MM_PACKED) {
735                 scp->rndr->clear = vga_pxlclear_direct;
736                 scp->rndr->draw_border = vga_pxlborder_direct;
737                 scp->rndr->draw = vga_vgadraw_direct;
738                 scp->rndr->draw_cursor = vga_pxlcursor_direct;
739                 scp->rndr->blink_cursor = vga_pxlblink_direct;
740                 scp->rndr->draw_mouse = vga_pxlmouse_direct;
741         }
742 }
743
744 static void
745 vga_pxlclear_direct(scr_stat *scp, int c, int attr)
746 {
747         vm_offset_t p;
748         int line_width;
749         int pixel_size;
750         int lines;
751         int i;
752
753         line_width = scp->sc->adp->va_line_width;
754         pixel_size = scp->sc->adp->va_info.vi_pixel_size;
755         lines = scp->ysize * scp->font_size; 
756         p = scp->sc->adp->va_window +
757             line_width * scp->yoff * scp->font_size +
758             scp->xoff * 8 * pixel_size;
759
760         for (i = 0; i < lines; ++i) {
761                 bzero_io((void *)p, scp->xsize * 8 * pixel_size);
762                 p += line_width;
763         }
764 }
765
766 static void
767 vga_pxlclear_planar(scr_stat *scp, int c, int attr)
768 {
769         vm_offset_t p;
770         int line_width;
771         int lines;
772         int i;
773
774         /* XXX: we are just filling the screen with the background color... */
775         outw(GDCIDX, 0x0005);           /* read mode 0, write mode 0 */
776         outw(GDCIDX, 0x0003);           /* data rotate/function select */
777         outw(GDCIDX, 0x0f01);           /* set/reset enable */
778         outw(GDCIDX, 0xff08);           /* bit mask */
779         outw(GDCIDX, ((attr & 0xf000) >> 4) | 0x00); /* set/reset */
780         line_width = scp->sc->adp->va_line_width;
781         lines = scp->ysize*scp->font_size; 
782         p = scp->sc->adp->va_window + line_width*scp->yoff*scp->font_size
783                 + scp->xoff;
784         for (i = 0; i < lines; ++i) {
785                 bzero_io((void *)p, scp->xsize);
786                 p += line_width;
787         }
788         outw(GDCIDX, 0x0000);           /* set/reset */
789         outw(GDCIDX, 0x0001);           /* set/reset enable */
790 }
791
792 static void
793 vga_pxlborder_direct(scr_stat *scp, int color)
794 {
795         vm_offset_t s;
796         vm_offset_t e;
797         vm_offset_t f;
798         int line_width;
799         int pixel_size;
800         int x;
801         int y;
802         int i;
803
804         line_width = scp->sc->adp->va_line_width;
805         pixel_size = scp->sc->adp->va_info.vi_pixel_size;
806
807         if (scp->yoff > 0) {
808                 s = scp->sc->adp->va_window;
809                 e = s + line_width * scp->yoff * scp->font_size;
810
811                 for (f = s; f < e; f += pixel_size)
812                         DRAW_PIXEL(scp, f, color);
813         }
814
815         y = (scp->yoff + scp->ysize) * scp->font_size;
816
817         if (scp->ypixel > y) {
818                 s = scp->sc->adp->va_window + line_width * y;
819                 e = s + line_width * (scp->ypixel - y);
820
821                 for (f = s; f < e; f += pixel_size)
822                         DRAW_PIXEL(scp, f, color);
823         }
824
825         y = scp->yoff * scp->font_size;
826         x = scp->xpixel / 8 - scp->xoff - scp->xsize;
827
828         for (i = 0; i < scp->ysize * scp->font_size; ++i) {
829                 if (scp->xoff > 0) {
830                         s = scp->sc->adp->va_window + line_width * (y + i);
831                         e = s + scp->xoff * 8 * pixel_size;
832
833                         for (f = s; f < e; f += pixel_size)
834                                 DRAW_PIXEL(scp, f, color);
835                 }
836
837                 if (x > 0) {
838                         s = scp->sc->adp->va_window + line_width * (y + i) +
839                             scp->xoff * 8 * pixel_size +
840                             scp->xsize * 8 * pixel_size;
841                         e = s + x * 8 * pixel_size;
842
843                         for (f = s; f < e; f += pixel_size)
844                                 DRAW_PIXEL(scp, f, color);
845                 }
846         }
847 }
848
849 static void
850 vga_pxlborder_planar(scr_stat *scp, int color)
851 {
852         vm_offset_t p;
853         int line_width;
854         int x;
855         int y;
856         int i;
857
858         vidd_set_border(scp->sc->adp, color);
859
860         outw(GDCIDX, 0x0005);           /* read mode 0, write mode 0 */
861         outw(GDCIDX, 0x0003);           /* data rotate/function select */
862         outw(GDCIDX, 0x0f01);           /* set/reset enable */
863         outw(GDCIDX, 0xff08);           /* bit mask */
864         outw(GDCIDX, (color << 8) | 0x00);      /* set/reset */
865         line_width = scp->sc->adp->va_line_width;
866         p = scp->sc->adp->va_window;
867         if (scp->yoff > 0)
868                 bzero_io((void *)p, line_width*scp->yoff*scp->font_size);
869         y = (scp->yoff + scp->ysize)*scp->font_size;
870         if (scp->ypixel > y)
871                 bzero_io((void *)(p + line_width*y), line_width*(scp->ypixel - y));
872         y = scp->yoff*scp->font_size;
873         x = scp->xpixel/8 - scp->xoff - scp->xsize;
874         for (i = 0; i < scp->ysize*scp->font_size; ++i) {
875                 if (scp->xoff > 0)
876                         bzero_io((void *)(p + line_width*(y + i)), scp->xoff);
877                 if (x > 0)
878                         bzero_io((void *)(p + line_width*(y + i)
879                                      + scp->xoff + scp->xsize), x);
880         }
881         outw(GDCIDX, 0x0000);           /* set/reset */
882         outw(GDCIDX, 0x0001);           /* set/reset enable */
883 }
884
885 static void
886 vga_vgadraw_direct(scr_stat *scp, int from, int count, int flip)
887 {
888         vm_offset_t d;
889         vm_offset_t e;
890         u_char *f;
891         u_short col1, col2, color;
892         int line_width, pixel_size;
893         int i, j, k;
894         int a;
895
896         line_width = scp->sc->adp->va_line_width;
897         pixel_size = scp->sc->adp->va_info.vi_pixel_size;
898
899         d = GET_PIXEL(scp, from, 8 * pixel_size, line_width);
900
901         if (from + count > scp->xsize * scp->ysize)
902                 count = scp->xsize * scp->ysize - from;
903
904         for (i = from; count-- > 0; ++i) {
905                 a = sc_vtb_geta(&scp->vtb, i);
906
907                 if (flip)
908                         a = vga_flipattr(a, FALSE);
909                 col1 = (a & 0x0f00) >> 8;
910                 col2 = (a & 0xf000) >> 12;
911
912                 e = d;
913                 f = &(scp->font[sc_vtb_getc(&scp->vtb, i) * scp->font_size]);
914
915                 for (j = 0; j < scp->font_size; ++j, ++f) {
916                         for (k = 0; k < 8; ++k) {
917                                 color = *f & (1 << (7 - k)) ? col1 : col2;
918                                 DRAW_PIXEL(scp, e + pixel_size * k, color);
919                         }
920
921                         e += line_width;
922                 }
923
924                 d += 8 * pixel_size;
925
926                 if ((i % scp->xsize) == scp->xsize - 1)
927                         d += scp->font_size * line_width -
928                             scp->xsize * 8 * pixel_size;
929         }
930 }
931
932 static void
933 vga_vgadraw_planar(scr_stat *scp, int from, int count, int flip)
934 {
935         vm_offset_t d;
936         vm_offset_t e;
937         u_char *f;
938         u_short bg, fg;
939         u_short col1, col2;
940         int line_width;
941         int i, j;
942         int a;
943         u_char c;
944
945         line_width = scp->sc->adp->va_line_width;
946
947         d = GET_PIXEL(scp, from, 1, line_width);
948
949         if (scp->sc->adp->va_type == KD_VGA) {
950                 outw(GDCIDX, 0x0305);   /* read mode 0, write mode 3 */
951                 outw(GDCIDX, 0xff08);   /* bit mask */
952         } else
953                 outw(GDCIDX, 0x0005);   /* read mode 0, write mode 0 */
954         outw(GDCIDX, 0x0003);           /* data rotate/function select */
955         outw(GDCIDX, 0x0f01);           /* set/reset enable */
956         fg = bg = -1;
957         if (from + count > scp->xsize*scp->ysize)
958                 count = scp->xsize*scp->ysize - from;
959         for (i = from; count-- > 0; ++i) {
960                 a = sc_vtb_geta(&scp->vtb, i);
961                 if (flip)
962                         a = vga_flipattr(a, FALSE);
963                 col1 = a & 0x0f00;
964                 col2 = (a & 0xf000) >> 4;
965                 /* set background color in EGA/VGA latch */
966                 if (bg != col2) {
967                         bg = col2;
968                         fg = -1;
969                         outw(GDCIDX, bg | 0x00); /* set/reset */
970                         if (scp->sc->adp->va_type != KD_VGA)
971                                 outw(GDCIDX, 0xff08); /* bit mask */
972                         writeb(d, 0xff);
973                         c = readb(d);           /* set bg color in the latch */
974                 }
975                 /* foreground color */
976                 if (fg != col1) {
977                         fg = col1;
978                         outw(GDCIDX, col1 | 0x00); /* set/reset */
979                 }
980                 e = d;
981                 f = &(scp->font[sc_vtb_getc(&scp->vtb, i)*scp->font_size]);
982                 for (j = 0; j < scp->font_size; ++j, ++f) {
983                         if (scp->sc->adp->va_type == KD_VGA)
984                                 writeb(e, *f);  
985                         else {
986                                 outw(GDCIDX, (*f << 8) | 0x08); /* bit mask */
987                                 writeb(e, 0);   
988                         }
989                         e += line_width;
990                 }
991                 ++d;
992                 if ((i % scp->xsize) == scp->xsize - 1)
993                         d += scp->font_size * line_width - scp->xsize;
994         }
995         if (scp->sc->adp->va_type == KD_VGA)
996                 outw(GDCIDX, 0x0005);   /* read mode 0, write mode 0 */
997         else
998                 outw(GDCIDX, 0xff08);   /* bit mask */
999         outw(GDCIDX, 0x0000);           /* set/reset */
1000         outw(GDCIDX, 0x0001);           /* set/reset enable */
1001 }
1002
1003 static void 
1004 vga_pxlcursor_shape(scr_stat *scp, int base, int height, int blink)
1005 {
1006         vga_setmdp(scp);
1007 }
1008
1009 static void 
1010 draw_pxlcursor_direct(scr_stat *scp, int at, int on, int flip)
1011 {
1012         vm_offset_t d;
1013         u_char *f;
1014         int line_width, pixel_size;
1015         int height;
1016         int col1, col2, color;
1017         int a;
1018         int i, j;
1019
1020         line_width = scp->sc->adp->va_line_width;
1021         pixel_size = scp->sc->adp->va_info.vi_pixel_size;
1022
1023         d = GET_PIXEL(scp, at, 8 * pixel_size, line_width) +
1024             (scp->font_size - scp->curs_attr.base - 1) * line_width;
1025
1026         a = sc_vtb_geta(&scp->vtb, at);
1027
1028         if (flip)
1029                 a = vga_flipattr(a, FALSE);
1030         if (on)
1031                 a = vga_cursorattr_adj(scp, a, FALSE);
1032         col1 = (a & 0x0f00) >> 8;
1033         col2 = a >> 12;
1034
1035         f = &(scp->font[sc_vtb_getc(&scp->vtb, at) * scp->font_size +
1036               scp->font_size - scp->curs_attr.base - 1]);
1037
1038         height = imin(scp->curs_attr.height, scp->font_size);
1039
1040         for (i = 0; i < height; ++i, --f) {
1041                 for (j = 0; j < 8; ++j) {
1042                         color = *f & (1 << (7 - j)) ? col1 : col2;
1043                         DRAW_PIXEL(scp, d + pixel_size * j, color);
1044                 }
1045
1046                 d -= line_width;
1047         }
1048 }
1049
1050 static void 
1051 draw_pxlcursor_planar(scr_stat *scp, int at, int on, int flip)
1052 {
1053         vm_offset_t d;
1054         u_char *f;
1055         int line_width;
1056         int height;
1057         int col;
1058         int a;
1059         int i;
1060         u_char c;
1061
1062         line_width = scp->sc->adp->va_line_width;
1063
1064         d = GET_PIXEL(scp, at, 1, line_width) +
1065             (scp->font_size - scp->curs_attr.base - 1) * line_width;
1066
1067         outw(GDCIDX, 0x0005);           /* read mode 0, write mode 0 */
1068         outw(GDCIDX, 0x0003);           /* data rotate/function select */
1069         outw(GDCIDX, 0x0f01);           /* set/reset enable */
1070         /* set background color in EGA/VGA latch */
1071         a = sc_vtb_geta(&scp->vtb, at);
1072         if (flip)
1073                 a = vga_flipattr(a, FALSE);
1074         if (on)
1075                 a = vga_cursorattr_adj(scp, a, FALSE);
1076         col = (a & 0xf000) >> 4;
1077         outw(GDCIDX, col | 0x00);       /* set/reset */
1078         outw(GDCIDX, 0xff08);           /* bit mask */
1079         writeb(d, 0);
1080         c = readb(d);                   /* set bg color in the latch */
1081         /* foreground color */
1082         col = a & 0x0f00;
1083         outw(GDCIDX, col | 0x00);       /* set/reset */
1084         f = &(scp->font[sc_vtb_getc(&scp->vtb, at)*scp->font_size
1085                 + scp->font_size - scp->curs_attr.base - 1]);
1086         height = imin(scp->curs_attr.height, scp->font_size);
1087         for (i = 0; i < height; ++i, --f) {
1088                 outw(GDCIDX, (*f << 8) | 0x08); /* bit mask */
1089                 writeb(d, 0);
1090                 d -= line_width;
1091         }
1092         outw(GDCIDX, 0x0000);           /* set/reset */
1093         outw(GDCIDX, 0x0001);           /* set/reset enable */
1094         outw(GDCIDX, 0xff08);           /* bit mask */
1095 }
1096
1097 static int pxlblinkrate = 0;
1098
1099 static void 
1100 vga_pxlcursor_direct(scr_stat *scp, int at, int blink, int on, int flip)
1101 {
1102         if (scp->curs_attr.height <= 0) /* the text cursor is disabled */
1103                 return;
1104
1105         if (on) {
1106                 if (!blink) {
1107                         scp->status |= VR_CURSOR_ON;
1108                         draw_pxlcursor_direct(scp, at, on, flip);
1109                 } else if (++pxlblinkrate & 4) {
1110                         pxlblinkrate = 0;
1111                         scp->status ^= VR_CURSOR_ON;
1112                         draw_pxlcursor_direct(scp, at,
1113                                               scp->status & VR_CURSOR_ON,
1114                                               flip);
1115                 }
1116         } else {
1117                 if (scp->status & VR_CURSOR_ON)
1118                         draw_pxlcursor_direct(scp, at, on, flip);
1119                 scp->status &= ~VR_CURSOR_ON;
1120         }
1121         if (blink)
1122                 scp->status |= VR_CURSOR_BLINK;
1123         else
1124                 scp->status &= ~VR_CURSOR_BLINK;
1125 }
1126
1127 static void 
1128 vga_pxlcursor_planar(scr_stat *scp, int at, int blink, int on, int flip)
1129 {
1130         if (scp->curs_attr.height <= 0) /* the text cursor is disabled */
1131                 return;
1132
1133         if (on) {
1134                 if (!blink) {
1135                         scp->status |= VR_CURSOR_ON;
1136                         draw_pxlcursor_planar(scp, at, on, flip);
1137                 } else if (++pxlblinkrate & 4) {
1138                         pxlblinkrate = 0;
1139                         scp->status ^= VR_CURSOR_ON;
1140                         draw_pxlcursor_planar(scp, at,
1141                                               scp->status & VR_CURSOR_ON,
1142                                               flip);
1143                 }
1144         } else {
1145                 if (scp->status & VR_CURSOR_ON)
1146                         draw_pxlcursor_planar(scp, at, on, flip);
1147                 scp->status &= ~VR_CURSOR_ON;
1148         }
1149         if (blink)
1150                 scp->status |= VR_CURSOR_BLINK;
1151         else
1152                 scp->status &= ~VR_CURSOR_BLINK;
1153 }
1154
1155 static void
1156 vga_pxlblink_direct(scr_stat *scp, int at, int flip)
1157 {
1158         if (!(scp->status & VR_CURSOR_BLINK))
1159                 return;
1160         if (!(++pxlblinkrate & 4))
1161                 return;
1162         pxlblinkrate = 0;
1163         scp->status ^= VR_CURSOR_ON;
1164         draw_pxlcursor_direct(scp, at, scp->status & VR_CURSOR_ON, flip);
1165 }
1166
1167 static void
1168 vga_pxlblink_planar(scr_stat *scp, int at, int flip)
1169 {
1170         if (!(scp->status & VR_CURSOR_BLINK))
1171                 return;
1172         if (!(++pxlblinkrate & 4))
1173                 return;
1174         pxlblinkrate = 0;
1175         scp->status ^= VR_CURSOR_ON;
1176         draw_pxlcursor_planar(scp, at, scp->status & VR_CURSOR_ON, flip);
1177 }
1178
1179 #ifndef SC_NO_CUTPASTE
1180
1181 static void
1182 draw_pxlmouse_planar(scr_stat *scp, int x, int y)
1183 {
1184         const struct mousedata *mdp;
1185         vm_offset_t p;
1186         int line_width;
1187         int xoff, yoff;
1188         int ymax;
1189         uint32_t m;
1190         int i, j, k;
1191         uint8_t m1;
1192
1193         mdp = scp->mouse_data;
1194         line_width = scp->sc->adp->va_line_width;
1195         xoff = (x - scp->xoff*8)%8;
1196         yoff = y - rounddown(y, line_width);
1197         ymax = imin(y + mdp->md_height, scp->ypixel);
1198
1199         if (scp->sc->adp->va_type == KD_VGA) {
1200                 outw(GDCIDX, 0x0305);   /* read mode 0, write mode 3 */
1201                 outw(GDCIDX, 0xff08);   /* bit mask */
1202         } else
1203                 outw(GDCIDX, 0x0005);   /* read mode 0, write mode 0 */
1204         outw(GDCIDX, 0x0003);           /* data rotate/function select */
1205         outw(GDCIDX, 0x0f01);           /* set/reset enable */
1206
1207         outw(GDCIDX, (scp->curs_attr.mouse_ba << 8) | 0x00); /* set/reset */
1208         p = scp->sc->adp->va_window + line_width*y + x/8;
1209         for (i = y, j = 0; i < ymax; ++i, ++j) {
1210                 m = mdp->md_border[j] << 8 >> xoff;
1211                 for (k = 0; k < 3; ++k) {
1212                         m1 = m >> (8 * (2 - k));
1213                         if (m1 != 0 && x + 8 * k < scp->xpixel) {
1214                                 readb(p + k);
1215                                 if (scp->sc->adp->va_type == KD_VGA)
1216                                         writeb(p + k, m1);
1217                                 else {
1218                                         /* bit mask: */
1219                                         outw(GDCIDX, (m1 << 8) | 0x08);
1220                                         writeb(p + k, 0);
1221                                 }
1222                         }
1223                 }
1224                 p += line_width;
1225         }
1226         outw(GDCIDX, (scp->curs_attr.mouse_ia << 8) | 0x00); /* set/reset */
1227         p = scp->sc->adp->va_window + line_width*y + x/8;
1228         for (i = y, j = 0; i < ymax; ++i, ++j) {
1229                 m = mdp->md_interior[j] << 8 >> xoff;
1230                 for (k = 0; k < 3; ++k) {
1231                         m1 = m >> (8 * (2 - k));
1232                         if (m1 != 0 && x + 8 * k < scp->xpixel) {
1233                                 readb(p + k);
1234                                 if (scp->sc->adp->va_type == KD_VGA)
1235                                         writeb(p + k, m1);
1236                                 else {
1237                                         /* bit mask: */
1238                                         outw(GDCIDX, (m1 << 8) | 0x08);
1239                                         writeb(p + k, 0);
1240                                 }
1241                         }
1242                 }
1243                 p += line_width;
1244         }
1245         if (scp->sc->adp->va_type == KD_VGA)
1246                 outw(GDCIDX, 0x0005);   /* read mode 0, write mode 0 */
1247         else
1248                 outw(GDCIDX, 0xff08);   /* bit mask */
1249         outw(GDCIDX, 0x0000);           /* set/reset */
1250         outw(GDCIDX, 0x0001);           /* set/reset enable */
1251 }
1252
1253 static void
1254 remove_pxlmouse_planar(scr_stat *scp, int x, int y)
1255 {
1256         const struct mousedata *mdp;
1257         vm_offset_t p;
1258         int bx, by, i, line_width, xend, xoff, yend, yoff;
1259
1260         mdp = scp->mouse_data;
1261
1262         /*
1263          * It is only necessary to remove the mouse image where it overlaps
1264          * the border.  Determine the overlap, and do nothing if it is empty.
1265          */
1266         bx = (scp->xoff + scp->xsize) * 8;
1267         by = (scp->yoff + scp->ysize) * scp->font_size;
1268         xend = imin(x + mdp->md_width, scp->xpixel);
1269         yend = imin(y + mdp->md_height, scp->ypixel);
1270         if (xend <= bx && yend <= by)
1271                 return;
1272
1273         /* Repaint the non-empty overlap. */
1274         line_width = scp->sc->adp->va_line_width;
1275         outw(GDCIDX, 0x0005);           /* read mode 0, write mode 0 */
1276         outw(GDCIDX, 0x0003);           /* data rotate/function select */
1277         outw(GDCIDX, 0x0f01);           /* set/reset enable */
1278         outw(GDCIDX, 0xff08);           /* bit mask */
1279         outw(GDCIDX, (scp->border << 8) | 0x00);        /* set/reset */
1280         for (i = x / 8, xoff = i * 8; xoff < xend; ++i, xoff += 8) {
1281                 yoff = (xoff >= bx) ? y : by;
1282                 p = scp->sc->adp->va_window + yoff * line_width + i;
1283                 for (; yoff < yend; ++yoff, p += line_width)
1284                         writeb(p, 0);
1285         }
1286         outw(GDCIDX, 0x0000);           /* set/reset */
1287         outw(GDCIDX, 0x0001);           /* set/reset enable */
1288 }
1289
1290 static void 
1291 vga_pxlmouse_direct(scr_stat *scp, int x, int y, int on)
1292 {
1293         const struct mousedata *mdp;
1294         vm_offset_t p;
1295         int line_width, pixel_size;
1296         int xend, yend;
1297         int i, j;
1298
1299         mdp = scp->mouse_data;
1300
1301         /*
1302          * Determine overlap with the border and then if removing, do nothing
1303          * if the overlap is empty.
1304          */
1305         xend = imin(x + mdp->md_width, scp->xpixel);
1306         yend = imin(y + mdp->md_height, scp->ypixel);
1307         if (!on && xend <= (scp->xoff + scp->xsize) * 8 &&
1308             yend <= (scp->yoff + scp->ysize) * scp->font_size)
1309                 return;
1310
1311         line_width = scp->sc->adp->va_line_width;
1312         pixel_size = scp->sc->adp->va_info.vi_pixel_size;
1313
1314         if (on)
1315                 goto do_on;
1316
1317         /* Repaint overlap with the border (mess up the corner a little). */
1318         p = scp->sc->adp->va_window + y * line_width + x * pixel_size;
1319         for (i = 0; i < yend - y; i++, p += line_width)
1320                 for (j = xend - x - 1; j >= 0; j--)
1321                         DRAW_PIXEL(scp, p + j * pixel_size, scp->border);
1322
1323         return;
1324
1325 do_on:
1326         p = scp->sc->adp->va_window + y * line_width + x * pixel_size;
1327         for (i = 0; i < yend - y; i++, p += line_width)
1328                 for (j = xend - x - 1; j >= 0; j--)
1329                         if (mdp->md_interior[i] & (1 << (15 - j)))
1330                                 DRAW_PIXEL(scp, p + j * pixel_size,
1331                                     scp->curs_attr.mouse_ia);
1332                         else if (mdp->md_border[i] & (1 << (15 - j)))
1333                                 DRAW_PIXEL(scp, p + j * pixel_size,
1334                                     scp->curs_attr.mouse_ba);
1335 }
1336
1337 static void 
1338 vga_pxlmouse_planar(scr_stat *scp, int x, int y, int on)
1339 {
1340         if (on)
1341                 draw_pxlmouse_planar(scp, x, y);
1342         else
1343                 remove_pxlmouse_planar(scp, x, y);
1344 }
1345
1346 #endif /* SC_NO_CUTPASTE */
1347 #endif /* SC_PIXEL_MODE */
1348
1349 #ifndef SC_NO_MODE_CHANGE
1350
1351 /* graphics mode renderer */
1352
1353 static void
1354 vga_grborder(scr_stat *scp, int color)
1355 {
1356         vidd_set_border(scp->sc->adp, color);
1357 }
1358
1359 #endif