1a401c53aSAleksandr Rybalko /*- 2a401c53aSAleksandr Rybalko * Copyright (c) 2005 Marcel Moolenaar 3a401c53aSAleksandr Rybalko * All rights reserved. 4a401c53aSAleksandr Rybalko * 5a401c53aSAleksandr Rybalko * Copyright (c) 2009 The FreeBSD Foundation 6a401c53aSAleksandr Rybalko * All rights reserved. 7a401c53aSAleksandr Rybalko * 8a401c53aSAleksandr Rybalko * Portions of this software were developed by Ed Schouten 9a401c53aSAleksandr Rybalko * under sponsorship from the FreeBSD Foundation. 10a401c53aSAleksandr Rybalko * 11a401c53aSAleksandr Rybalko * Redistribution and use in source and binary forms, with or without 12a401c53aSAleksandr Rybalko * modification, are permitted provided that the following conditions 13a401c53aSAleksandr Rybalko * are met: 14a401c53aSAleksandr Rybalko * 1. Redistributions of source code must retain the above copyright 15a401c53aSAleksandr Rybalko * notice, this list of conditions and the following disclaimer. 16a401c53aSAleksandr Rybalko * 2. Redistributions in binary form must reproduce the above copyright 17a401c53aSAleksandr Rybalko * notice, this list of conditions and the following disclaimer in the 18a401c53aSAleksandr Rybalko * documentation and/or other materials provided with the distribution. 19a401c53aSAleksandr Rybalko * 20a401c53aSAleksandr Rybalko * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 21a401c53aSAleksandr Rybalko * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22a401c53aSAleksandr Rybalko * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23a401c53aSAleksandr Rybalko * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 24a401c53aSAleksandr Rybalko * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25a401c53aSAleksandr Rybalko * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26a401c53aSAleksandr Rybalko * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27a401c53aSAleksandr Rybalko * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28a401c53aSAleksandr Rybalko * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29a401c53aSAleksandr Rybalko * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30a401c53aSAleksandr Rybalko * SUCH DAMAGE. 31a401c53aSAleksandr Rybalko */ 32a401c53aSAleksandr Rybalko 33a401c53aSAleksandr Rybalko #include <sys/cdefs.h> 34a401c53aSAleksandr Rybalko __FBSDID("$FreeBSD$"); 35a401c53aSAleksandr Rybalko 36a401c53aSAleksandr Rybalko #include <sys/param.h> 37a401c53aSAleksandr Rybalko #include <sys/kernel.h> 38a401c53aSAleksandr Rybalko #include <sys/systm.h> 39a401c53aSAleksandr Rybalko 40a401c53aSAleksandr Rybalko #include <dev/vt/vt.h> 41a401c53aSAleksandr Rybalko #include <dev/vt/hw/vga/vt_vga_reg.h> 42a401c53aSAleksandr Rybalko 43a401c53aSAleksandr Rybalko #include <machine/bus.h> 44a401c53aSAleksandr Rybalko 45a401c53aSAleksandr Rybalko #if defined(__amd64__) || defined(__i386__) 46a401c53aSAleksandr Rybalko #include <vm/vm.h> 47a401c53aSAleksandr Rybalko #include <vm/pmap.h> 48a401c53aSAleksandr Rybalko #include <machine/pmap.h> 49a401c53aSAleksandr Rybalko #include <machine/vmparam.h> 50a401c53aSAleksandr Rybalko #endif /* __amd64__ || __i386__ */ 51a401c53aSAleksandr Rybalko 52a401c53aSAleksandr Rybalko struct vga_softc { 53a401c53aSAleksandr Rybalko bus_space_tag_t vga_fb_tag; 54a401c53aSAleksandr Rybalko bus_space_handle_t vga_fb_handle; 55a401c53aSAleksandr Rybalko bus_space_tag_t vga_reg_tag; 56a401c53aSAleksandr Rybalko bus_space_handle_t vga_reg_handle; 57a401c53aSAleksandr Rybalko int vga_curcolor; 58a401c53aSAleksandr Rybalko }; 59a401c53aSAleksandr Rybalko 60a401c53aSAleksandr Rybalko /* Convenience macros. */ 61a401c53aSAleksandr Rybalko #define MEM_READ1(sc, ofs) \ 62a401c53aSAleksandr Rybalko bus_space_read_1(sc->vga_fb_tag, sc->vga_fb_handle, ofs) 63a401c53aSAleksandr Rybalko #define MEM_WRITE1(sc, ofs, val) \ 64a401c53aSAleksandr Rybalko bus_space_write_1(sc->vga_fb_tag, sc->vga_fb_handle, ofs, val) 65a401c53aSAleksandr Rybalko #define REG_READ1(sc, reg) \ 66a401c53aSAleksandr Rybalko bus_space_read_1(sc->vga_reg_tag, sc->vga_reg_handle, reg) 67a401c53aSAleksandr Rybalko #define REG_WRITE1(sc, reg, val) \ 68a401c53aSAleksandr Rybalko bus_space_write_1(sc->vga_reg_tag, sc->vga_reg_handle, reg, val) 69a401c53aSAleksandr Rybalko 70a401c53aSAleksandr Rybalko #define VT_VGA_WIDTH 640 71a401c53aSAleksandr Rybalko #define VT_VGA_HEIGHT 480 72a401c53aSAleksandr Rybalko #define VT_VGA_MEMSIZE (VT_VGA_WIDTH * VT_VGA_HEIGHT / 8) 73a401c53aSAleksandr Rybalko 74a401c53aSAleksandr Rybalko static vd_probe_t vga_probe; 75a401c53aSAleksandr Rybalko static vd_init_t vga_init; 76a401c53aSAleksandr Rybalko static vd_blank_t vga_blank; 77a401c53aSAleksandr Rybalko static vd_bitbltchr_t vga_bitbltchr; 78a401c53aSAleksandr Rybalko static vd_maskbitbltchr_t vga_maskbitbltchr; 79a401c53aSAleksandr Rybalko static vd_drawrect_t vga_drawrect; 80a401c53aSAleksandr Rybalko static vd_setpixel_t vga_setpixel; 81a401c53aSAleksandr Rybalko static vd_putchar_t vga_putchar; 82a401c53aSAleksandr Rybalko static vd_postswitch_t vga_postswitch; 83a401c53aSAleksandr Rybalko 84a401c53aSAleksandr Rybalko static const struct vt_driver vt_vga_driver = { 85a401c53aSAleksandr Rybalko .vd_name = "vga", 86a401c53aSAleksandr Rybalko .vd_probe = vga_probe, 87a401c53aSAleksandr Rybalko .vd_init = vga_init, 88a401c53aSAleksandr Rybalko .vd_blank = vga_blank, 89a401c53aSAleksandr Rybalko .vd_bitbltchr = vga_bitbltchr, 90*34cb8c9fSAleksandr Rybalko .vd_maskbitbltchr = vga_bitbltchr, 91a401c53aSAleksandr Rybalko .vd_drawrect = vga_drawrect, 92a401c53aSAleksandr Rybalko .vd_setpixel = vga_setpixel, 93a401c53aSAleksandr Rybalko .vd_putchar = vga_putchar, 94a401c53aSAleksandr Rybalko .vd_postswitch = vga_postswitch, 95a401c53aSAleksandr Rybalko .vd_priority = VD_PRIORITY_GENERIC, 96a401c53aSAleksandr Rybalko }; 97a401c53aSAleksandr Rybalko 98a401c53aSAleksandr Rybalko /* 99a401c53aSAleksandr Rybalko * Driver supports both text mode and graphics mode. Make sure the 100a401c53aSAleksandr Rybalko * buffer is always big enough to support both. 101a401c53aSAleksandr Rybalko */ 102a401c53aSAleksandr Rybalko static struct vga_softc vga_conssoftc; 103a401c53aSAleksandr Rybalko VT_DRIVER_DECLARE(vt_vga, vt_vga_driver); 104a401c53aSAleksandr Rybalko 105a401c53aSAleksandr Rybalko static inline void 106a401c53aSAleksandr Rybalko vga_setcolor(struct vt_device *vd, term_color_t color) 107a401c53aSAleksandr Rybalko { 108a401c53aSAleksandr Rybalko struct vga_softc *sc = vd->vd_softc; 109a401c53aSAleksandr Rybalko 110a401c53aSAleksandr Rybalko if (sc->vga_curcolor != color) { 111a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_ADDRESS, VGA_GC_SET_RESET); 112a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_DATA, color); 113a401c53aSAleksandr Rybalko sc->vga_curcolor = color; 114a401c53aSAleksandr Rybalko } 115a401c53aSAleksandr Rybalko } 116a401c53aSAleksandr Rybalko 117a401c53aSAleksandr Rybalko static void 118a401c53aSAleksandr Rybalko vga_blank(struct vt_device *vd, term_color_t color) 119a401c53aSAleksandr Rybalko { 120a401c53aSAleksandr Rybalko struct vga_softc *sc = vd->vd_softc; 121a401c53aSAleksandr Rybalko u_int ofs; 122a401c53aSAleksandr Rybalko 123a401c53aSAleksandr Rybalko vga_setcolor(vd, color); 124a401c53aSAleksandr Rybalko for (ofs = 0; ofs < VT_VGA_MEMSIZE; ofs++) 125a401c53aSAleksandr Rybalko MEM_WRITE1(sc, ofs, 0xff); 126a401c53aSAleksandr Rybalko } 127a401c53aSAleksandr Rybalko 128a401c53aSAleksandr Rybalko static inline void 129a401c53aSAleksandr Rybalko vga_bitblt_put(struct vt_device *vd, u_long dst, term_color_t color, 130a401c53aSAleksandr Rybalko uint8_t v) 131a401c53aSAleksandr Rybalko { 132a401c53aSAleksandr Rybalko struct vga_softc *sc = vd->vd_softc; 133a401c53aSAleksandr Rybalko 134a401c53aSAleksandr Rybalko /* Skip empty writes, in order to avoid palette changes. */ 135a401c53aSAleksandr Rybalko if (v != 0x00) { 136a401c53aSAleksandr Rybalko vga_setcolor(vd, color); 137a401c53aSAleksandr Rybalko /* 138a401c53aSAleksandr Rybalko * When this MEM_READ1() gets disabled, all sorts of 139a401c53aSAleksandr Rybalko * artifacts occur. This is because this read loads the 140a401c53aSAleksandr Rybalko * set of 8 pixels that are about to be changed. There 141a401c53aSAleksandr Rybalko * is one scenario where we can avoid the read, namely 142a401c53aSAleksandr Rybalko * if all pixels are about to be overwritten anyway. 143a401c53aSAleksandr Rybalko */ 144a401c53aSAleksandr Rybalko if (v != 0xff) 145a401c53aSAleksandr Rybalko MEM_READ1(sc, dst); 146a401c53aSAleksandr Rybalko MEM_WRITE1(sc, dst, v); 147a401c53aSAleksandr Rybalko } 148a401c53aSAleksandr Rybalko } 149a401c53aSAleksandr Rybalko 150a401c53aSAleksandr Rybalko static void 151a401c53aSAleksandr Rybalko vga_setpixel(struct vt_device *vd, int x, int y, term_color_t color) 152a401c53aSAleksandr Rybalko { 153a401c53aSAleksandr Rybalko 154a401c53aSAleksandr Rybalko vga_bitblt_put(vd, (y * VT_VGA_WIDTH / 8) + (x / 8), color, 155a401c53aSAleksandr Rybalko 0x80 >> (x % 8)); 156a401c53aSAleksandr Rybalko } 157a401c53aSAleksandr Rybalko 158a401c53aSAleksandr Rybalko static void 159a401c53aSAleksandr Rybalko vga_drawrect(struct vt_device *vd, int x1, int y1, int x2, int y2, int fill, 160a401c53aSAleksandr Rybalko term_color_t color) 161a401c53aSAleksandr Rybalko { 162a401c53aSAleksandr Rybalko int x, y; 163a401c53aSAleksandr Rybalko 164a401c53aSAleksandr Rybalko for (y = y1; y <= y2; y++) { 165a401c53aSAleksandr Rybalko if (fill || (y == y1) || (y == y2)) { 166a401c53aSAleksandr Rybalko for (x = x1; x <= x2; x++) 167a401c53aSAleksandr Rybalko vga_setpixel(vd, x, y, color); 168a401c53aSAleksandr Rybalko } else { 169a401c53aSAleksandr Rybalko vga_setpixel(vd, x1, y, color); 170a401c53aSAleksandr Rybalko vga_setpixel(vd, x2, y, color); 171a401c53aSAleksandr Rybalko } 172a401c53aSAleksandr Rybalko } 173a401c53aSAleksandr Rybalko } 174a401c53aSAleksandr Rybalko 175*34cb8c9fSAleksandr Rybalko /* 176*34cb8c9fSAleksandr Rybalko * Shift bitmap of one row of the glyph. 177*34cb8c9fSAleksandr Rybalko * a - array of bytes with src bitmap and result storage. 178*34cb8c9fSAleksandr Rybalko * m - resulting background color bitmask. 179*34cb8c9fSAleksandr Rybalko * size - number of bytes per glyph row (+ one byte to store shift overflow). 180*34cb8c9fSAleksandr Rybalko * shift - offset for target bitmap. 181*34cb8c9fSAleksandr Rybalko */ 182*34cb8c9fSAleksandr Rybalko 183*34cb8c9fSAleksandr Rybalko static void 184*34cb8c9fSAleksandr Rybalko vga_shift_u8array(uint8_t *a, uint8_t *m, int size, int shift) 185a401c53aSAleksandr Rybalko { 186*34cb8c9fSAleksandr Rybalko int i; 187a401c53aSAleksandr Rybalko 188*34cb8c9fSAleksandr Rybalko for (i = (size - 1); i > 0; i--) { 189*34cb8c9fSAleksandr Rybalko a[i] = (a[i] >> shift) | (a[i-1] << (7 - shift)); 190*34cb8c9fSAleksandr Rybalko m[i] = ~a[i]; 191a401c53aSAleksandr Rybalko } 192*34cb8c9fSAleksandr Rybalko a[0] = (a[0] >> shift); 193*34cb8c9fSAleksandr Rybalko m[0] = ~a[0] & (0xff >> shift); 194*34cb8c9fSAleksandr Rybalko m[size - 1] = ~a[size - 1] & (0xff << (7 - shift)); 195a401c53aSAleksandr Rybalko } 196a401c53aSAleksandr Rybalko 197*34cb8c9fSAleksandr Rybalko /* XXX: fix gaps on mouse track when character size is not rounded to 8. */ 198a401c53aSAleksandr Rybalko static void 199a401c53aSAleksandr Rybalko vga_bitbltchr(struct vt_device *vd, const uint8_t *src, const uint8_t *mask, 200a401c53aSAleksandr Rybalko int bpl, vt_axis_t top, vt_axis_t left, unsigned int width, 201a401c53aSAleksandr Rybalko unsigned int height, term_color_t fg, term_color_t bg) 202a401c53aSAleksandr Rybalko { 203*34cb8c9fSAleksandr Rybalko uint8_t aa[64], ma[64], *r; 204*34cb8c9fSAleksandr Rybalko int dst, shift, sz, x, y; 205*34cb8c9fSAleksandr Rybalko struct vga_softc *sc; 206a401c53aSAleksandr Rybalko 207*34cb8c9fSAleksandr Rybalko if ((left + width) > VT_VGA_WIDTH) 208*34cb8c9fSAleksandr Rybalko return; 209*34cb8c9fSAleksandr Rybalko if ((top + height) > VT_VGA_HEIGHT) 210a401c53aSAleksandr Rybalko return; 211a401c53aSAleksandr Rybalko 212*34cb8c9fSAleksandr Rybalko sc = vd->vd_softc; 213a401c53aSAleksandr Rybalko 214*34cb8c9fSAleksandr Rybalko sz = (width + 7) / 8; 215a401c53aSAleksandr Rybalko shift = left % 8; 216a401c53aSAleksandr Rybalko 217*34cb8c9fSAleksandr Rybalko dst = (VT_VGA_WIDTH * top + left) / 8; 218a401c53aSAleksandr Rybalko 219*34cb8c9fSAleksandr Rybalko for (y = 0; y < height; y++) { 220*34cb8c9fSAleksandr Rybalko r = (uint8_t *)src + (y * sz); 221*34cb8c9fSAleksandr Rybalko memcpy(aa, r, sz); 222*34cb8c9fSAleksandr Rybalko aa[sz] = 0; 223*34cb8c9fSAleksandr Rybalko vga_shift_u8array(aa, ma, sz + 1, shift); 224*34cb8c9fSAleksandr Rybalko 225*34cb8c9fSAleksandr Rybalko vga_setcolor(vd, bg); 226*34cb8c9fSAleksandr Rybalko for (x = 0; x < (sz + 1); x ++) { 227*34cb8c9fSAleksandr Rybalko if (ma[x] == 0) 228*34cb8c9fSAleksandr Rybalko continue; 229*34cb8c9fSAleksandr Rybalko /* 230*34cb8c9fSAleksandr Rybalko * XXX Only mouse cursor can go out of screen. 231*34cb8c9fSAleksandr Rybalko * So for mouse it have to just return, but for regular 232*34cb8c9fSAleksandr Rybalko * characters it have to panic, to indicate error in 233*34cb8c9fSAleksandr Rybalko * size/coordinates calculations. 234*34cb8c9fSAleksandr Rybalko */ 235*34cb8c9fSAleksandr Rybalko if ((dst + x) >= (VT_VGA_WIDTH * VT_VGA_HEIGHT)) 236*34cb8c9fSAleksandr Rybalko return; 237*34cb8c9fSAleksandr Rybalko if (ma[x] != 0xff) 238*34cb8c9fSAleksandr Rybalko MEM_READ1(sc, dst + x); 239*34cb8c9fSAleksandr Rybalko MEM_WRITE1(sc, dst + x, ma[x]); 240*34cb8c9fSAleksandr Rybalko } 241*34cb8c9fSAleksandr Rybalko 242*34cb8c9fSAleksandr Rybalko vga_setcolor(vd, fg); 243*34cb8c9fSAleksandr Rybalko for (x = 0; x < (sz + 1); x ++) { 244*34cb8c9fSAleksandr Rybalko if (aa[x] == 0) 245*34cb8c9fSAleksandr Rybalko continue; 246*34cb8c9fSAleksandr Rybalko if (aa[x] != 0xff) 247*34cb8c9fSAleksandr Rybalko MEM_READ1(sc, dst + x); 248*34cb8c9fSAleksandr Rybalko MEM_WRITE1(sc, dst + x, aa[x]); 249*34cb8c9fSAleksandr Rybalko } 250*34cb8c9fSAleksandr Rybalko 251*34cb8c9fSAleksandr Rybalko dst += VT_VGA_WIDTH / 8; 252a401c53aSAleksandr Rybalko } 253a401c53aSAleksandr Rybalko } 254a401c53aSAleksandr Rybalko 255a401c53aSAleksandr Rybalko /* 256a401c53aSAleksandr Rybalko * Binary searchable table for Unicode to CP437 conversion. 257a401c53aSAleksandr Rybalko */ 258a401c53aSAleksandr Rybalko 259a401c53aSAleksandr Rybalko struct unicp437 { 260a401c53aSAleksandr Rybalko uint16_t unicode_base; 261a401c53aSAleksandr Rybalko uint8_t cp437_base; 262a401c53aSAleksandr Rybalko uint8_t length; 263a401c53aSAleksandr Rybalko }; 264a401c53aSAleksandr Rybalko 265a401c53aSAleksandr Rybalko static const struct unicp437 cp437table[] = { 266a401c53aSAleksandr Rybalko { 0x0020, 0x20, 0x5e }, { 0x00a0, 0x20, 0x00 }, 267a401c53aSAleksandr Rybalko { 0x00a1, 0xad, 0x00 }, { 0x00a2, 0x9b, 0x00 }, 268a401c53aSAleksandr Rybalko { 0x00a3, 0x9c, 0x00 }, { 0x00a5, 0x9d, 0x00 }, 269a401c53aSAleksandr Rybalko { 0x00a7, 0x15, 0x00 }, { 0x00aa, 0xa6, 0x00 }, 270a401c53aSAleksandr Rybalko { 0x00ab, 0xae, 0x00 }, { 0x00ac, 0xaa, 0x00 }, 271a401c53aSAleksandr Rybalko { 0x00b0, 0xf8, 0x00 }, { 0x00b1, 0xf1, 0x00 }, 272a401c53aSAleksandr Rybalko { 0x00b2, 0xfd, 0x00 }, { 0x00b5, 0xe6, 0x00 }, 273a401c53aSAleksandr Rybalko { 0x00b6, 0x14, 0x00 }, { 0x00b7, 0xfa, 0x00 }, 274a401c53aSAleksandr Rybalko { 0x00ba, 0xa7, 0x00 }, { 0x00bb, 0xaf, 0x00 }, 275a401c53aSAleksandr Rybalko { 0x00bc, 0xac, 0x00 }, { 0x00bd, 0xab, 0x00 }, 276a401c53aSAleksandr Rybalko { 0x00bf, 0xa8, 0x00 }, { 0x00c4, 0x8e, 0x01 }, 277a401c53aSAleksandr Rybalko { 0x00c6, 0x92, 0x00 }, { 0x00c7, 0x80, 0x00 }, 278a401c53aSAleksandr Rybalko { 0x00c9, 0x90, 0x00 }, { 0x00d1, 0xa5, 0x00 }, 279a401c53aSAleksandr Rybalko { 0x00d6, 0x99, 0x00 }, { 0x00dc, 0x9a, 0x00 }, 280a401c53aSAleksandr Rybalko { 0x00df, 0xe1, 0x00 }, { 0x00e0, 0x85, 0x00 }, 281a401c53aSAleksandr Rybalko { 0x00e1, 0xa0, 0x00 }, { 0x00e2, 0x83, 0x00 }, 282a401c53aSAleksandr Rybalko { 0x00e4, 0x84, 0x00 }, { 0x00e5, 0x86, 0x00 }, 283a401c53aSAleksandr Rybalko { 0x00e6, 0x91, 0x00 }, { 0x00e7, 0x87, 0x00 }, 284a401c53aSAleksandr Rybalko { 0x00e8, 0x8a, 0x00 }, { 0x00e9, 0x82, 0x00 }, 285a401c53aSAleksandr Rybalko { 0x00ea, 0x88, 0x01 }, { 0x00ec, 0x8d, 0x00 }, 286a401c53aSAleksandr Rybalko { 0x00ed, 0xa1, 0x00 }, { 0x00ee, 0x8c, 0x00 }, 287a401c53aSAleksandr Rybalko { 0x00ef, 0x8b, 0x00 }, { 0x00f0, 0xeb, 0x00 }, 288a401c53aSAleksandr Rybalko { 0x00f1, 0xa4, 0x00 }, { 0x00f2, 0x95, 0x00 }, 289a401c53aSAleksandr Rybalko { 0x00f3, 0xa2, 0x00 }, { 0x00f4, 0x93, 0x00 }, 290a401c53aSAleksandr Rybalko { 0x00f6, 0x94, 0x00 }, { 0x00f7, 0xf6, 0x00 }, 291a401c53aSAleksandr Rybalko { 0x00f8, 0xed, 0x00 }, { 0x00f9, 0x97, 0x00 }, 292a401c53aSAleksandr Rybalko { 0x00fa, 0xa3, 0x00 }, { 0x00fb, 0x96, 0x00 }, 293a401c53aSAleksandr Rybalko { 0x00fc, 0x81, 0x00 }, { 0x00ff, 0x98, 0x00 }, 294a401c53aSAleksandr Rybalko { 0x0192, 0x9f, 0x00 }, { 0x0393, 0xe2, 0x00 }, 295a401c53aSAleksandr Rybalko { 0x0398, 0xe9, 0x00 }, { 0x03a3, 0xe4, 0x00 }, 296a401c53aSAleksandr Rybalko { 0x03a6, 0xe8, 0x00 }, { 0x03a9, 0xea, 0x00 }, 297a401c53aSAleksandr Rybalko { 0x03b1, 0xe0, 0x01 }, { 0x03b4, 0xeb, 0x00 }, 298a401c53aSAleksandr Rybalko { 0x03b5, 0xee, 0x00 }, { 0x03bc, 0xe6, 0x00 }, 299a401c53aSAleksandr Rybalko { 0x03c0, 0xe3, 0x00 }, { 0x03c3, 0xe5, 0x00 }, 300a401c53aSAleksandr Rybalko { 0x03c4, 0xe7, 0x00 }, { 0x03c6, 0xed, 0x00 }, 301a401c53aSAleksandr Rybalko { 0x03d5, 0xed, 0x00 }, { 0x2010, 0x2d, 0x00 }, 302a401c53aSAleksandr Rybalko { 0x2014, 0x2d, 0x00 }, { 0x2018, 0x60, 0x00 }, 303a401c53aSAleksandr Rybalko { 0x2019, 0x27, 0x00 }, { 0x201c, 0x22, 0x00 }, 304a401c53aSAleksandr Rybalko { 0x201d, 0x22, 0x00 }, { 0x2022, 0x07, 0x00 }, 305a401c53aSAleksandr Rybalko { 0x203c, 0x13, 0x00 }, { 0x207f, 0xfc, 0x00 }, 306a401c53aSAleksandr Rybalko { 0x20a7, 0x9e, 0x00 }, { 0x20ac, 0xee, 0x00 }, 307a401c53aSAleksandr Rybalko { 0x2126, 0xea, 0x00 }, { 0x2190, 0x1b, 0x00 }, 308a401c53aSAleksandr Rybalko { 0x2191, 0x18, 0x00 }, { 0x2192, 0x1a, 0x00 }, 309a401c53aSAleksandr Rybalko { 0x2193, 0x19, 0x00 }, { 0x2194, 0x1d, 0x00 }, 310a401c53aSAleksandr Rybalko { 0x2195, 0x12, 0x00 }, { 0x21a8, 0x17, 0x00 }, 311a401c53aSAleksandr Rybalko { 0x2202, 0xeb, 0x00 }, { 0x2208, 0xee, 0x00 }, 312a401c53aSAleksandr Rybalko { 0x2211, 0xe4, 0x00 }, { 0x2212, 0x2d, 0x00 }, 313a401c53aSAleksandr Rybalko { 0x2219, 0xf9, 0x00 }, { 0x221a, 0xfb, 0x00 }, 314a401c53aSAleksandr Rybalko { 0x221e, 0xec, 0x00 }, { 0x221f, 0x1c, 0x00 }, 315a401c53aSAleksandr Rybalko { 0x2229, 0xef, 0x00 }, { 0x2248, 0xf7, 0x00 }, 316a401c53aSAleksandr Rybalko { 0x2261, 0xf0, 0x00 }, { 0x2264, 0xf3, 0x00 }, 317a401c53aSAleksandr Rybalko { 0x2265, 0xf2, 0x00 }, { 0x2302, 0x7f, 0x00 }, 318a401c53aSAleksandr Rybalko { 0x2310, 0xa9, 0x00 }, { 0x2320, 0xf4, 0x00 }, 319a401c53aSAleksandr Rybalko { 0x2321, 0xf5, 0x00 }, { 0x2500, 0xc4, 0x00 }, 320a401c53aSAleksandr Rybalko { 0x2502, 0xb3, 0x00 }, { 0x250c, 0xda, 0x00 }, 321a401c53aSAleksandr Rybalko { 0x2510, 0xbf, 0x00 }, { 0x2514, 0xc0, 0x00 }, 322a401c53aSAleksandr Rybalko { 0x2518, 0xd9, 0x00 }, { 0x251c, 0xc3, 0x00 }, 323a401c53aSAleksandr Rybalko { 0x2524, 0xb4, 0x00 }, { 0x252c, 0xc2, 0x00 }, 324a401c53aSAleksandr Rybalko { 0x2534, 0xc1, 0x00 }, { 0x253c, 0xc5, 0x00 }, 325a401c53aSAleksandr Rybalko { 0x2550, 0xcd, 0x00 }, { 0x2551, 0xba, 0x00 }, 326a401c53aSAleksandr Rybalko { 0x2552, 0xd5, 0x00 }, { 0x2553, 0xd6, 0x00 }, 327a401c53aSAleksandr Rybalko { 0x2554, 0xc9, 0x00 }, { 0x2555, 0xb8, 0x00 }, 328a401c53aSAleksandr Rybalko { 0x2556, 0xb7, 0x00 }, { 0x2557, 0xbb, 0x00 }, 329a401c53aSAleksandr Rybalko { 0x2558, 0xd4, 0x00 }, { 0x2559, 0xd3, 0x00 }, 330a401c53aSAleksandr Rybalko { 0x255a, 0xc8, 0x00 }, { 0x255b, 0xbe, 0x00 }, 331a401c53aSAleksandr Rybalko { 0x255c, 0xbd, 0x00 }, { 0x255d, 0xbc, 0x00 }, 332a401c53aSAleksandr Rybalko { 0x255e, 0xc6, 0x01 }, { 0x2560, 0xcc, 0x00 }, 333a401c53aSAleksandr Rybalko { 0x2561, 0xb5, 0x00 }, { 0x2562, 0xb6, 0x00 }, 334a401c53aSAleksandr Rybalko { 0x2563, 0xb9, 0x00 }, { 0x2564, 0xd1, 0x01 }, 335a401c53aSAleksandr Rybalko { 0x2566, 0xcb, 0x00 }, { 0x2567, 0xcf, 0x00 }, 336a401c53aSAleksandr Rybalko { 0x2568, 0xd0, 0x00 }, { 0x2569, 0xca, 0x00 }, 337a401c53aSAleksandr Rybalko { 0x256a, 0xd8, 0x00 }, { 0x256b, 0xd7, 0x00 }, 338a401c53aSAleksandr Rybalko { 0x256c, 0xce, 0x00 }, { 0x2580, 0xdf, 0x00 }, 339a401c53aSAleksandr Rybalko { 0x2584, 0xdc, 0x00 }, { 0x2588, 0xdb, 0x00 }, 340a401c53aSAleksandr Rybalko { 0x258c, 0xdd, 0x00 }, { 0x2590, 0xde, 0x00 }, 341a401c53aSAleksandr Rybalko { 0x2591, 0xb0, 0x02 }, { 0x25a0, 0xfe, 0x00 }, 342a401c53aSAleksandr Rybalko { 0x25ac, 0x16, 0x00 }, { 0x25b2, 0x1e, 0x00 }, 343a401c53aSAleksandr Rybalko { 0x25ba, 0x10, 0x00 }, { 0x25bc, 0x1f, 0x00 }, 344a401c53aSAleksandr Rybalko { 0x25c4, 0x11, 0x00 }, { 0x25cb, 0x09, 0x00 }, 345a401c53aSAleksandr Rybalko { 0x25d8, 0x08, 0x00 }, { 0x25d9, 0x0a, 0x00 }, 346a401c53aSAleksandr Rybalko { 0x263a, 0x01, 0x01 }, { 0x263c, 0x0f, 0x00 }, 347a401c53aSAleksandr Rybalko { 0x2640, 0x0c, 0x00 }, { 0x2642, 0x0b, 0x00 }, 348a401c53aSAleksandr Rybalko { 0x2660, 0x06, 0x00 }, { 0x2663, 0x05, 0x00 }, 349a401c53aSAleksandr Rybalko { 0x2665, 0x03, 0x01 }, { 0x266a, 0x0d, 0x00 }, 350a401c53aSAleksandr Rybalko { 0x266c, 0x0e, 0x00 }, 351a401c53aSAleksandr Rybalko }; 352a401c53aSAleksandr Rybalko 353a401c53aSAleksandr Rybalko static uint8_t 354a401c53aSAleksandr Rybalko vga_get_cp437(term_char_t c) 355a401c53aSAleksandr Rybalko { 356a401c53aSAleksandr Rybalko int min, mid, max; 357a401c53aSAleksandr Rybalko 358a401c53aSAleksandr Rybalko min = 0; 359a401c53aSAleksandr Rybalko max = (sizeof(cp437table) / sizeof(struct unicp437)) - 1; 360a401c53aSAleksandr Rybalko 361a401c53aSAleksandr Rybalko if (c < cp437table[0].unicode_base || 362a401c53aSAleksandr Rybalko c > cp437table[max].unicode_base + cp437table[max].length) 363a401c53aSAleksandr Rybalko return '?'; 364a401c53aSAleksandr Rybalko 365a401c53aSAleksandr Rybalko while (max >= min) { 366a401c53aSAleksandr Rybalko mid = (min + max) / 2; 367a401c53aSAleksandr Rybalko if (c < cp437table[mid].unicode_base) 368a401c53aSAleksandr Rybalko max = mid - 1; 369a401c53aSAleksandr Rybalko else if (c > cp437table[mid].unicode_base + 370a401c53aSAleksandr Rybalko cp437table[mid].length) 371a401c53aSAleksandr Rybalko min = mid + 1; 372a401c53aSAleksandr Rybalko else 373a401c53aSAleksandr Rybalko return (c - cp437table[mid].unicode_base + 374a401c53aSAleksandr Rybalko cp437table[mid].cp437_base); 375a401c53aSAleksandr Rybalko } 376a401c53aSAleksandr Rybalko 377a401c53aSAleksandr Rybalko return '?'; 378a401c53aSAleksandr Rybalko } 379a401c53aSAleksandr Rybalko 380a401c53aSAleksandr Rybalko static void 381a401c53aSAleksandr Rybalko vga_putchar(struct vt_device *vd, term_char_t c, 382a401c53aSAleksandr Rybalko vt_axis_t top, vt_axis_t left, term_color_t fg, term_color_t bg) 383a401c53aSAleksandr Rybalko { 384a401c53aSAleksandr Rybalko struct vga_softc *sc = vd->vd_softc; 385a401c53aSAleksandr Rybalko uint8_t ch, attr; 386a401c53aSAleksandr Rybalko 387a401c53aSAleksandr Rybalko /* 388a401c53aSAleksandr Rybalko * Convert character to CP437, which is the character set used 389a401c53aSAleksandr Rybalko * by the VGA hardware by default. 390a401c53aSAleksandr Rybalko */ 391a401c53aSAleksandr Rybalko ch = vga_get_cp437(c); 392a401c53aSAleksandr Rybalko 393a401c53aSAleksandr Rybalko /* 394a401c53aSAleksandr Rybalko * Convert colors to VGA attributes. 395a401c53aSAleksandr Rybalko */ 396a401c53aSAleksandr Rybalko attr = bg << 4 | fg; 397a401c53aSAleksandr Rybalko 398a401c53aSAleksandr Rybalko MEM_WRITE1(sc, 0x18000 + (top * 80 + left) * 2 + 0, ch); 399a401c53aSAleksandr Rybalko MEM_WRITE1(sc, 0x18000 + (top * 80 + left) * 2 + 1, attr); 400a401c53aSAleksandr Rybalko } 401a401c53aSAleksandr Rybalko 402a401c53aSAleksandr Rybalko static void 403a401c53aSAleksandr Rybalko vga_initialize_graphics(struct vt_device *vd) 404a401c53aSAleksandr Rybalko { 405a401c53aSAleksandr Rybalko struct vga_softc *sc = vd->vd_softc; 406a401c53aSAleksandr Rybalko 407a401c53aSAleksandr Rybalko /* Clock select. */ 408a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GEN_MISC_OUTPUT_W, VGA_GEN_MO_VSP | VGA_GEN_MO_HSP | 409a401c53aSAleksandr Rybalko VGA_GEN_MO_PB | VGA_GEN_MO_ER | VGA_GEN_MO_IOA); 410a401c53aSAleksandr Rybalko /* Set sequencer clocking and memory mode. */ 411a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_SEQ_ADDRESS, VGA_SEQ_CLOCKING_MODE); 412a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_SEQ_DATA, VGA_SEQ_CM_89); 413a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_SEQ_ADDRESS, VGA_SEQ_MEMORY_MODE); 414a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_SEQ_DATA, VGA_SEQ_MM_OE | VGA_SEQ_MM_EM); 415a401c53aSAleksandr Rybalko 416a401c53aSAleksandr Rybalko /* Set the graphics controller in graphics mode. */ 417a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_ADDRESS, VGA_GC_MISCELLANEOUS); 418a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_DATA, 0x04 + VGA_GC_MISC_GA); 419a401c53aSAleksandr Rybalko /* Program the CRT controller. */ 420a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_HORIZ_TOTAL); 421a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0x5f); /* 760 */ 422a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_HORIZ_DISP_END); 423a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0x4f); /* 640 - 8 */ 424a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_START_HORIZ_BLANK); 425a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0x50); /* 640 */ 426a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_END_HORIZ_BLANK); 427a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, VGA_CRTC_EHB_CR + 2); 428a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_START_HORIZ_RETRACE); 429a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0x54); /* 672 */ 430a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_END_HORIZ_RETRACE); 431a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, VGA_CRTC_EHR_EHB + 0); 432a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_VERT_TOTAL); 433a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0x0b); /* 523 */ 434a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_OVERFLOW); 435a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, VGA_CRTC_OF_VT9 | VGA_CRTC_OF_LC8 | 436a401c53aSAleksandr Rybalko VGA_CRTC_OF_VBS8 | VGA_CRTC_OF_VRS8 | VGA_CRTC_OF_VDE8); 437a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_MAX_SCAN_LINE); 438a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, VGA_CRTC_MSL_LC9); 439a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_VERT_RETRACE_START); 440a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0xea); /* 480 + 10 */ 441a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_VERT_RETRACE_END); 442a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0x0c); 443a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_VERT_DISPLAY_END); 444a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0xdf); /* 480 - 1*/ 445a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_OFFSET); 446a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0x28); 447a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_START_VERT_BLANK); 448a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0xe7); /* 480 + 7 */ 449a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_END_VERT_BLANK); 450a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0x04); 451a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_MODE_CONTROL); 452a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, VGA_CRTC_MC_WB | VGA_CRTC_MC_AW | 453a401c53aSAleksandr Rybalko VGA_CRTC_MC_SRS | VGA_CRTC_MC_CMS); 454a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_LINE_COMPARE); 455a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0xff); /* 480 + 31 */ 456a401c53aSAleksandr Rybalko 457a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GEN_FEATURE_CTRL_W, 0); 458a401c53aSAleksandr Rybalko 459a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_SEQ_ADDRESS, VGA_SEQ_MAP_MASK); 460a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_SEQ_DATA, VGA_SEQ_MM_EM3 | VGA_SEQ_MM_EM2 | 461a401c53aSAleksandr Rybalko VGA_SEQ_MM_EM1 | VGA_SEQ_MM_EM0); 462a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_SEQ_ADDRESS, VGA_SEQ_CHAR_MAP_SELECT); 463a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_SEQ_DATA, 0); 464a401c53aSAleksandr Rybalko 465a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_ADDRESS, VGA_GC_SET_RESET); 466a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_DATA, 0); 467a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_ADDRESS, VGA_GC_ENABLE_SET_RESET); 468a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_DATA, 0x0f); 469a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_ADDRESS, VGA_GC_COLOR_COMPARE); 470a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_DATA, 0); 471a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_ADDRESS, VGA_GC_DATA_ROTATE); 472a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_DATA, 0); 473a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_ADDRESS, VGA_GC_READ_MAP_SELECT); 474a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_DATA, 0); 475a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_ADDRESS, VGA_GC_MODE); 476a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_DATA, 0); 477a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_ADDRESS, VGA_GC_COLOR_DONT_CARE); 478a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_DATA, 0x0f); 479a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_ADDRESS, VGA_GC_BIT_MASK); 480a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_DATA, 0xff); 481a401c53aSAleksandr Rybalko } 482a401c53aSAleksandr Rybalko 483a401c53aSAleksandr Rybalko static void 484a401c53aSAleksandr Rybalko vga_initialize(struct vt_device *vd, int textmode) 485a401c53aSAleksandr Rybalko { 486a401c53aSAleksandr Rybalko struct vga_softc *sc = vd->vd_softc; 487a401c53aSAleksandr Rybalko uint8_t x; 488a401c53aSAleksandr Rybalko 489a401c53aSAleksandr Rybalko /* Make sure the VGA adapter is not in monochrome emulation mode. */ 490a401c53aSAleksandr Rybalko x = REG_READ1(sc, VGA_GEN_MISC_OUTPUT_R); 491a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GEN_MISC_OUTPUT_W, x | VGA_GEN_MO_IOA); 492a401c53aSAleksandr Rybalko 493a401c53aSAleksandr Rybalko /* Unprotect CRTC registers 0-7. */ 494a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_VERT_RETRACE_END); 495a401c53aSAleksandr Rybalko x = REG_READ1(sc, VGA_CRTC_DATA); 496a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, x & ~VGA_CRTC_VRE_PR); 497a401c53aSAleksandr Rybalko 498a401c53aSAleksandr Rybalko /* 499a401c53aSAleksandr Rybalko * Wait for the vertical retrace. 500a401c53aSAleksandr Rybalko * NOTE: this code reads the VGA_GEN_INPUT_STAT_1 register, which has 501a401c53aSAleksandr Rybalko * the side-effect of clearing the internal flip-flip of the attribute 502a401c53aSAleksandr Rybalko * controller's write register. This means that because this code is 503a401c53aSAleksandr Rybalko * here, we know for sure that the first write to the attribute 504a401c53aSAleksandr Rybalko * controller will be a write to the address register. Removing this 505a401c53aSAleksandr Rybalko * code therefore also removes that guarantee and appropriate measures 506a401c53aSAleksandr Rybalko * need to be taken. 507a401c53aSAleksandr Rybalko */ 508a401c53aSAleksandr Rybalko do { 509a401c53aSAleksandr Rybalko x = REG_READ1(sc, VGA_GEN_INPUT_STAT_1); 510a401c53aSAleksandr Rybalko x &= VGA_GEN_IS1_VR | VGA_GEN_IS1_DE; 511a401c53aSAleksandr Rybalko } while (x != (VGA_GEN_IS1_VR | VGA_GEN_IS1_DE)); 512a401c53aSAleksandr Rybalko 513a401c53aSAleksandr Rybalko /* Now, disable the sync. signals. */ 514a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_MODE_CONTROL); 515a401c53aSAleksandr Rybalko x = REG_READ1(sc, VGA_CRTC_DATA); 516a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, x & ~VGA_CRTC_MC_HR); 517a401c53aSAleksandr Rybalko 518a401c53aSAleksandr Rybalko /* Asynchronous sequencer reset. */ 519a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_SEQ_ADDRESS, VGA_SEQ_RESET); 520a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_SEQ_DATA, VGA_SEQ_RST_SR); 521a401c53aSAleksandr Rybalko 522a401c53aSAleksandr Rybalko if (!textmode) 523a401c53aSAleksandr Rybalko vga_initialize_graphics(vd); 524a401c53aSAleksandr Rybalko 525a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_PRESET_ROW_SCAN); 526a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0); 527a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_CURSOR_START); 528a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, VGA_CRTC_CS_COO); 529a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_CURSOR_END); 530a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0); 531a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_START_ADDR_HIGH); 532a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0); 533a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_START_ADDR_LOW); 534a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0); 535a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_CURSOR_LOC_HIGH); 536a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0); 537a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_CURSOR_LOC_LOW); 538a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, 0x59); 539a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_UNDERLINE_LOC); 540a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, VGA_CRTC_UL_UL); 541a401c53aSAleksandr Rybalko 542a401c53aSAleksandr Rybalko if (textmode) { 543a401c53aSAleksandr Rybalko /* Set the attribute controller to blink disable. */ 544a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_MODE_CONTROL); 545a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, 0); 546a401c53aSAleksandr Rybalko } else { 547a401c53aSAleksandr Rybalko /* Set the attribute controller in graphics mode. */ 548a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_MODE_CONTROL); 549a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_MC_GA); 550a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_HORIZ_PIXEL_PANNING); 551a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, 0); 552a401c53aSAleksandr Rybalko } 553a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(0)); 554a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, 0); 555a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(1)); 556a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_R); 557a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(2)); 558a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_G); 559a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(3)); 560a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_SG | VGA_AC_PAL_R); 561a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(4)); 562a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_B); 563a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(5)); 564a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_R | VGA_AC_PAL_B); 565a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(6)); 566a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_G | VGA_AC_PAL_B); 567a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(7)); 568a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_R | VGA_AC_PAL_G | VGA_AC_PAL_B); 569a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(8)); 570a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_SR | VGA_AC_PAL_SG | 571a401c53aSAleksandr Rybalko VGA_AC_PAL_SB); 572a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(9)); 573a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_SR | VGA_AC_PAL_SG | 574a401c53aSAleksandr Rybalko VGA_AC_PAL_SB | VGA_AC_PAL_R); 575a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(10)); 576a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_SR | VGA_AC_PAL_SG | 577a401c53aSAleksandr Rybalko VGA_AC_PAL_SB | VGA_AC_PAL_G); 578a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(11)); 579a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_SR | VGA_AC_PAL_SG | 580a401c53aSAleksandr Rybalko VGA_AC_PAL_SB | VGA_AC_PAL_R | VGA_AC_PAL_G); 581a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(12)); 582a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_SR | VGA_AC_PAL_SG | 583a401c53aSAleksandr Rybalko VGA_AC_PAL_SB | VGA_AC_PAL_B); 584a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(13)); 585a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_SR | VGA_AC_PAL_SG | 586a401c53aSAleksandr Rybalko VGA_AC_PAL_SB | VGA_AC_PAL_R | VGA_AC_PAL_B); 587a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(14)); 588a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_SR | VGA_AC_PAL_SG | 589a401c53aSAleksandr Rybalko VGA_AC_PAL_SB | VGA_AC_PAL_G | VGA_AC_PAL_B); 590a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PALETTE(15)); 591a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_PAL_SR | VGA_AC_PAL_SG | 592a401c53aSAleksandr Rybalko VGA_AC_PAL_SB | VGA_AC_PAL_R | VGA_AC_PAL_G | VGA_AC_PAL_B); 593a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_OVERSCAN_COLOR); 594a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, 0); 595a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_COLOR_PLANE_ENABLE); 596a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, 0x0f); 597a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, VGA_AC_COLOR_SELECT); 598a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_AC_WRITE, 0); 599a401c53aSAleksandr Rybalko 600a401c53aSAleksandr Rybalko if (!textmode) { 601a401c53aSAleksandr Rybalko u_int ofs; 602a401c53aSAleksandr Rybalko 603a401c53aSAleksandr Rybalko /* 604a401c53aSAleksandr Rybalko * Done. Clear the frame buffer. All bit planes are 605a401c53aSAleksandr Rybalko * enabled, so a single-paged loop should clear all 606a401c53aSAleksandr Rybalko * planes. 607a401c53aSAleksandr Rybalko */ 608a401c53aSAleksandr Rybalko for (ofs = 0; ofs < VT_VGA_MEMSIZE; ofs++) { 609a401c53aSAleksandr Rybalko MEM_READ1(sc, ofs); 610a401c53aSAleksandr Rybalko MEM_WRITE1(sc, ofs, 0); 611a401c53aSAleksandr Rybalko } 612a401c53aSAleksandr Rybalko } 613a401c53aSAleksandr Rybalko 614a401c53aSAleksandr Rybalko /* Re-enable the sequencer. */ 615a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_SEQ_ADDRESS, VGA_SEQ_RESET); 616a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_SEQ_DATA, VGA_SEQ_RST_SR | VGA_SEQ_RST_NAR); 617a401c53aSAleksandr Rybalko /* Re-enable the sync signals. */ 618a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_ADDRESS, VGA_CRTC_MODE_CONTROL); 619a401c53aSAleksandr Rybalko x = REG_READ1(sc, VGA_CRTC_DATA); 620a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_CRTC_DATA, x | VGA_CRTC_MC_HR); 621a401c53aSAleksandr Rybalko 622a401c53aSAleksandr Rybalko if (!textmode) { 623a401c53aSAleksandr Rybalko /* Switch to write mode 3, because we'll mainly do bitblt. */ 624a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_ADDRESS, VGA_GC_MODE); 625a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_DATA, 3); 626a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_ADDRESS, VGA_GC_ENABLE_SET_RESET); 627a401c53aSAleksandr Rybalko REG_WRITE1(sc, VGA_GC_DATA, 0x0f); 628a401c53aSAleksandr Rybalko } 629a401c53aSAleksandr Rybalko } 630a401c53aSAleksandr Rybalko 631a401c53aSAleksandr Rybalko static int 632a401c53aSAleksandr Rybalko vga_probe(struct vt_device *vd) 633a401c53aSAleksandr Rybalko { 634a401c53aSAleksandr Rybalko 635a401c53aSAleksandr Rybalko return (CN_INTERNAL); 636a401c53aSAleksandr Rybalko } 637a401c53aSAleksandr Rybalko 638a401c53aSAleksandr Rybalko static int 639a401c53aSAleksandr Rybalko vga_init(struct vt_device *vd) 640a401c53aSAleksandr Rybalko { 641a401c53aSAleksandr Rybalko struct vga_softc *sc; 642a401c53aSAleksandr Rybalko int textmode; 643a401c53aSAleksandr Rybalko 644a401c53aSAleksandr Rybalko if (vd->vd_softc == NULL) 645a401c53aSAleksandr Rybalko vd->vd_softc = (void *)&vga_conssoftc; 646a401c53aSAleksandr Rybalko sc = vd->vd_softc; 647a401c53aSAleksandr Rybalko textmode = 0; 648a401c53aSAleksandr Rybalko 649a401c53aSAleksandr Rybalko #if defined(__amd64__) || defined(__i386__) 650a401c53aSAleksandr Rybalko sc->vga_fb_tag = X86_BUS_SPACE_MEM; 651a401c53aSAleksandr Rybalko sc->vga_fb_handle = KERNBASE + VGA_MEM_BASE; 652a401c53aSAleksandr Rybalko sc->vga_reg_tag = X86_BUS_SPACE_IO; 653a401c53aSAleksandr Rybalko sc->vga_reg_handle = VGA_REG_BASE; 654a401c53aSAleksandr Rybalko #else 655a401c53aSAleksandr Rybalko # error "Architecture not yet supported!" 656a401c53aSAleksandr Rybalko #endif 657a401c53aSAleksandr Rybalko 658a401c53aSAleksandr Rybalko TUNABLE_INT_FETCH("hw.vga.textmode", &textmode); 659a401c53aSAleksandr Rybalko if (textmode) { 660a401c53aSAleksandr Rybalko vd->vd_flags |= VDF_TEXTMODE; 661a401c53aSAleksandr Rybalko vd->vd_width = 80; 662a401c53aSAleksandr Rybalko vd->vd_height = 25; 663a401c53aSAleksandr Rybalko } else { 664a401c53aSAleksandr Rybalko vd->vd_width = VT_VGA_WIDTH; 665a401c53aSAleksandr Rybalko vd->vd_height = VT_VGA_HEIGHT; 666a401c53aSAleksandr Rybalko } 667a401c53aSAleksandr Rybalko vga_initialize(vd, textmode); 668a401c53aSAleksandr Rybalko 669a401c53aSAleksandr Rybalko return (CN_INTERNAL); 670a401c53aSAleksandr Rybalko } 671a401c53aSAleksandr Rybalko 672a401c53aSAleksandr Rybalko static void 673a401c53aSAleksandr Rybalko vga_postswitch(struct vt_device *vd) 674a401c53aSAleksandr Rybalko { 675a401c53aSAleksandr Rybalko 676a401c53aSAleksandr Rybalko /* Reinit VGA mode, to restore view after app which change mode. */ 677a401c53aSAleksandr Rybalko vga_initialize(vd, (vd->vd_flags & VDF_TEXTMODE)); 678a401c53aSAleksandr Rybalko /* Ask vt(9) to update chars on visible area. */ 679a401c53aSAleksandr Rybalko vd->vd_flags |= VDF_INVALID; 680a401c53aSAleksandr Rybalko } 681