1*61429b49SMark Johnston /*- 2*61429b49SMark Johnston * SPDX-License-Identifier: BSD-2-Clause 3*61429b49SMark Johnston * 4*61429b49SMark Johnston * Copyright (c) 2015 Tycho Nightingale <tycho.nightingale@pluribusnetworks.com> 5*61429b49SMark Johnston * All rights reserved. 6*61429b49SMark Johnston * 7*61429b49SMark Johnston * Redistribution and use in source and binary forms, with or without 8*61429b49SMark Johnston * modification, are permitted provided that the following conditions 9*61429b49SMark Johnston * are met: 10*61429b49SMark Johnston * 1. Redistributions of source code must retain the above copyright 11*61429b49SMark Johnston * notice, this list of conditions and the following disclaimer. 12*61429b49SMark Johnston * 2. Redistributions in binary form must reproduce the above copyright 13*61429b49SMark Johnston * notice, this list of conditions and the following disclaimer in the 14*61429b49SMark Johnston * documentation and/or other materials provided with the distribution. 15*61429b49SMark Johnston * 16*61429b49SMark Johnston * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND 17*61429b49SMark Johnston * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18*61429b49SMark Johnston * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19*61429b49SMark Johnston * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20*61429b49SMark Johnston * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21*61429b49SMark Johnston * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22*61429b49SMark Johnston * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23*61429b49SMark Johnston * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24*61429b49SMark Johnston * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25*61429b49SMark Johnston * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26*61429b49SMark Johnston * SUCH DAMAGE. 27*61429b49SMark Johnston */ 28*61429b49SMark Johnston 29*61429b49SMark Johnston #ifndef _VGA_H_ 30*61429b49SMark Johnston #define _VGA_H_ 31*61429b49SMark Johnston 32*61429b49SMark Johnston #define VGA_IOPORT_START 0x3c0 33*61429b49SMark Johnston #define VGA_IOPORT_END 0x3df 34*61429b49SMark Johnston 35*61429b49SMark Johnston /* General registers */ 36*61429b49SMark Johnston #define GEN_INPUT_STS0_PORT 0x3c2 37*61429b49SMark Johnston #define GEN_FEATURE_CTRL_PORT 0x3ca 38*61429b49SMark Johnston #define GEN_MISC_OUTPUT_PORT 0x3cc 39*61429b49SMark Johnston #define GEN_INPUT_STS1_MONO_PORT 0x3ba 40*61429b49SMark Johnston #define GEN_INPUT_STS1_COLOR_PORT 0x3da 41*61429b49SMark Johnston #define GEN_IS1_VR 0x08 /* Vertical retrace */ 42*61429b49SMark Johnston #define GEN_IS1_DE 0x01 /* Display enable not */ 43*61429b49SMark Johnston 44*61429b49SMark Johnston /* Attribute controller registers. */ 45*61429b49SMark Johnston #define ATC_IDX_PORT 0x3c0 46*61429b49SMark Johnston #define ATC_DATA_PORT 0x3c1 47*61429b49SMark Johnston 48*61429b49SMark Johnston #define ATC_IDX_MASK 0x1f 49*61429b49SMark Johnston #define ATC_PALETTE0 0 50*61429b49SMark Johnston #define ATC_PALETTE15 15 51*61429b49SMark Johnston #define ATC_MODE_CONTROL 16 52*61429b49SMark Johnston #define ATC_MC_IPS 0x80 /* Internal palette size */ 53*61429b49SMark Johnston #define ATC_MC_GA 0x01 /* Graphics/alphanumeric */ 54*61429b49SMark Johnston #define ATC_OVERSCAN_COLOR 17 55*61429b49SMark Johnston #define ATC_COLOR_PLANE_ENABLE 18 56*61429b49SMark Johnston #define ATC_HORIZ_PIXEL_PANNING 19 57*61429b49SMark Johnston #define ATC_COLOR_SELECT 20 58*61429b49SMark Johnston #define ATC_CS_C67 0x0c /* Color select bits 6+7 */ 59*61429b49SMark Johnston #define ATC_CS_C45 0x03 /* Color select bits 4+5 */ 60*61429b49SMark Johnston 61*61429b49SMark Johnston /* Sequencer registers. */ 62*61429b49SMark Johnston #define SEQ_IDX_PORT 0x3c4 63*61429b49SMark Johnston #define SEQ_DATA_PORT 0x3c5 64*61429b49SMark Johnston 65*61429b49SMark Johnston #define SEQ_RESET 0 66*61429b49SMark Johnston #define SEQ_RESET_ASYNC 0x1 67*61429b49SMark Johnston #define SEQ_RESET_SYNC 0x2 68*61429b49SMark Johnston #define SEQ_CLOCKING_MODE 1 69*61429b49SMark Johnston #define SEQ_CM_SO 0x20 /* Screen off */ 70*61429b49SMark Johnston #define SEQ_CM_89 0x01 /* 8/9 dot clock */ 71*61429b49SMark Johnston #define SEQ_MAP_MASK 2 72*61429b49SMark Johnston #define SEQ_CHAR_MAP_SELECT 3 73*61429b49SMark Johnston #define SEQ_CMS_SAH 0x20 /* Char map A bit 2 */ 74*61429b49SMark Johnston #define SEQ_CMS_SAH_SHIFT 5 75*61429b49SMark Johnston #define SEQ_CMS_SA 0x0c /* Char map A bits 0+1 */ 76*61429b49SMark Johnston #define SEQ_CMS_SA_SHIFT 2 77*61429b49SMark Johnston #define SEQ_CMS_SBH 0x10 /* Char map B bit 2 */ 78*61429b49SMark Johnston #define SEQ_CMS_SBH_SHIFT 4 79*61429b49SMark Johnston #define SEQ_CMS_SB 0x03 /* Char map B bits 0+1 */ 80*61429b49SMark Johnston #define SEQ_CMS_SB_SHIFT 0 81*61429b49SMark Johnston #define SEQ_MEMORY_MODE 4 82*61429b49SMark Johnston #define SEQ_MM_C4 0x08 /* Chain 4 */ 83*61429b49SMark Johnston #define SEQ_MM_OE 0x04 /* Odd/even */ 84*61429b49SMark Johnston #define SEQ_MM_EM 0x02 /* Extended memory */ 85*61429b49SMark Johnston 86*61429b49SMark Johnston /* Graphics controller registers. */ 87*61429b49SMark Johnston #define GC_IDX_PORT 0x3ce 88*61429b49SMark Johnston #define GC_DATA_PORT 0x3cf 89*61429b49SMark Johnston 90*61429b49SMark Johnston #define GC_SET_RESET 0 91*61429b49SMark Johnston #define GC_ENABLE_SET_RESET 1 92*61429b49SMark Johnston #define GC_COLOR_COMPARE 2 93*61429b49SMark Johnston #define GC_DATA_ROTATE 3 94*61429b49SMark Johnston #define GC_READ_MAP_SELECT 4 95*61429b49SMark Johnston #define GC_MODE 5 96*61429b49SMark Johnston #define GC_MODE_OE 0x10 /* Odd/even */ 97*61429b49SMark Johnston #define GC_MODE_C4 0x04 /* Chain 4 */ 98*61429b49SMark Johnston 99*61429b49SMark Johnston #define GC_MISCELLANEOUS 6 100*61429b49SMark Johnston #define GC_MISC_GM 0x01 /* Graphics/alphanumeric */ 101*61429b49SMark Johnston #define GC_MISC_MM 0x0c /* memory map */ 102*61429b49SMark Johnston #define GC_MISC_MM_SHIFT 2 103*61429b49SMark Johnston #define GC_COLOR_DONT_CARE 7 104*61429b49SMark Johnston #define GC_BIT_MASK 8 105*61429b49SMark Johnston 106*61429b49SMark Johnston /* CRT controller registers. */ 107*61429b49SMark Johnston #define CRTC_IDX_MONO_PORT 0x3b4 108*61429b49SMark Johnston #define CRTC_DATA_MONO_PORT 0x3b5 109*61429b49SMark Johnston #define CRTC_IDX_COLOR_PORT 0x3d4 110*61429b49SMark Johnston #define CRTC_DATA_COLOR_PORT 0x3d5 111*61429b49SMark Johnston 112*61429b49SMark Johnston #define CRTC_HORIZ_TOTAL 0 113*61429b49SMark Johnston #define CRTC_HORIZ_DISP_END 1 114*61429b49SMark Johnston #define CRTC_START_HORIZ_BLANK 2 115*61429b49SMark Johnston #define CRTC_END_HORIZ_BLANK 3 116*61429b49SMark Johnston #define CRTC_START_HORIZ_RETRACE 4 117*61429b49SMark Johnston #define CRTC_END_HORIZ_RETRACE 5 118*61429b49SMark Johnston #define CRTC_VERT_TOTAL 6 119*61429b49SMark Johnston #define CRTC_OVERFLOW 7 120*61429b49SMark Johnston #define CRTC_OF_VRS9 0x80 /* VRS bit 9 */ 121*61429b49SMark Johnston #define CRTC_OF_VRS9_SHIFT 7 122*61429b49SMark Johnston #define CRTC_OF_VDE9 0x40 /* VDE bit 9 */ 123*61429b49SMark Johnston #define CRTC_OF_VDE9_SHIFT 6 124*61429b49SMark Johnston #define CRTC_OF_VRS8 0x04 /* VRS bit 8 */ 125*61429b49SMark Johnston #define CRTC_OF_VRS8_SHIFT 2 126*61429b49SMark Johnston #define CRTC_OF_VDE8 0x02 /* VDE bit 8 */ 127*61429b49SMark Johnston #define CRTC_OF_VDE8_SHIFT 1 128*61429b49SMark Johnston #define CRTC_PRESET_ROW_SCAN 8 129*61429b49SMark Johnston #define CRTC_MAX_SCAN_LINE 9 130*61429b49SMark Johnston #define CRTC_MSL_MSL 0x1f 131*61429b49SMark Johnston #define CRTC_CURSOR_START 10 132*61429b49SMark Johnston #define CRTC_CS_CO 0x20 /* Cursor off */ 133*61429b49SMark Johnston #define CRTC_CS_CS 0x1f /* Cursor start */ 134*61429b49SMark Johnston #define CRTC_CURSOR_END 11 135*61429b49SMark Johnston #define CRTC_CE_CE 0x1f /* Cursor end */ 136*61429b49SMark Johnston #define CRTC_START_ADDR_HIGH 12 137*61429b49SMark Johnston #define CRTC_START_ADDR_LOW 13 138*61429b49SMark Johnston #define CRTC_CURSOR_LOC_HIGH 14 139*61429b49SMark Johnston #define CRTC_CURSOR_LOC_LOW 15 140*61429b49SMark Johnston #define CRTC_VERT_RETRACE_START 16 141*61429b49SMark Johnston #define CRTC_VERT_RETRACE_END 17 142*61429b49SMark Johnston #define CRTC_VRE_MASK 0xf 143*61429b49SMark Johnston #define CRTC_VERT_DISP_END 18 144*61429b49SMark Johnston #define CRTC_OFFSET 19 145*61429b49SMark Johnston #define CRTC_UNDERLINE_LOC 20 146*61429b49SMark Johnston #define CRTC_START_VERT_BLANK 21 147*61429b49SMark Johnston #define CRTC_END_VERT_BLANK 22 148*61429b49SMark Johnston #define CRTC_MODE_CONTROL 23 149*61429b49SMark Johnston #define CRTC_MC_TE 0x80 /* Timing enable */ 150*61429b49SMark Johnston #define CRTC_LINE_COMPARE 24 151*61429b49SMark Johnston 152*61429b49SMark Johnston /* DAC registers */ 153*61429b49SMark Johnston #define DAC_MASK 0x3c6 154*61429b49SMark Johnston #define DAC_IDX_RD_PORT 0x3c7 155*61429b49SMark Johnston #define DAC_IDX_WR_PORT 0x3c8 156*61429b49SMark Johnston #define DAC_DATA_PORT 0x3c9 157*61429b49SMark Johnston 158*61429b49SMark Johnston struct bhyvegc; 159*61429b49SMark Johnston void *vga_init(int io_only); 160*61429b49SMark Johnston void vga_render(struct bhyvegc *gc, void *arg); 161*61429b49SMark Johnston 162*61429b49SMark Johnston #endif /* _VGA_H_ */ 163