1300829Sgrehan/*-
2300829Sgrehan * Copyright (c) 2015 Tycho Nightingale <tycho.nightingale@pluribusnetworks.com>
3300829Sgrehan * All rights reserved.
4300829Sgrehan *
5300829Sgrehan * Redistribution and use in source and binary forms, with or without
6300829Sgrehan * modification, are permitted provided that the following conditions
7300829Sgrehan * are met:
8300829Sgrehan * 1. Redistributions of source code must retain the above copyright
9300829Sgrehan *    notice, this list of conditions and the following disclaimer.
10300829Sgrehan * 2. Redistributions in binary form must reproduce the above copyright
11300829Sgrehan *    notice, this list of conditions and the following disclaimer in the
12300829Sgrehan *    documentation and/or other materials provided with the distribution.
13300829Sgrehan *
14300829Sgrehan * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
15300829Sgrehan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16300829Sgrehan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17300829Sgrehan * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18300829Sgrehan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19300829Sgrehan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20300829Sgrehan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21300829Sgrehan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22300829Sgrehan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23300829Sgrehan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24300829Sgrehan * SUCH DAMAGE.
25300829Sgrehan *
26300829Sgrehan * $FreeBSD: releng/11.0/usr.sbin/bhyve/vga.h 302408 2016-07-08 00:04:57Z gjb $
27300829Sgrehan */
28300829Sgrehan
29300829Sgrehan#ifndef _VGA_H_
30300829Sgrehan#define	_VGA_H_
31300829Sgrehan
32300829Sgrehan#define	VGA_IOPORT_START		0x3c0
33300829Sgrehan#define	VGA_IOPORT_END			0x3df
34300829Sgrehan
35300829Sgrehan/* General registers */
36300829Sgrehan#define	GEN_INPUT_STS0_PORT		0x3c2
37300829Sgrehan#define	GEN_FEATURE_CTRL_PORT		0x3ca
38300829Sgrehan#define	GEN_MISC_OUTPUT_PORT		0x3cc
39300829Sgrehan#define	GEN_INPUT_STS1_MONO_PORT	0x3ba
40300829Sgrehan#define	GEN_INPUT_STS1_COLOR_PORT	0x3da
41300829Sgrehan#define	 GEN_IS1_VR			0x08	/* Vertical retrace */
42300829Sgrehan#define	 GEN_IS1_DE			0x01	/* Display enable not */
43300829Sgrehan
44300829Sgrehan/* Attribute controller registers. */
45300829Sgrehan#define	ATC_IDX_PORT			0x3c0
46300829Sgrehan#define	ATC_DATA_PORT			0x3c1
47300829Sgrehan
48300829Sgrehan#define	ATC_IDX_MASK			0x1f
49300829Sgrehan#define	ATC_PALETTE0			0
50300829Sgrehan#define	ATC_PALETTE15			15
51300829Sgrehan#define	ATC_MODE_CONTROL		16
52300829Sgrehan#define	 ATC_MC_IPS			0x80	/* Internal palette size */
53300829Sgrehan#define	 ATC_MC_GA			0x01	/* Graphics/alphanumeric */
54300829Sgrehan#define	ATC_OVERSCAN_COLOR		17
55300829Sgrehan#define	ATC_COLOR_PLANE_ENABLE		18
56300829Sgrehan#define	ATC_HORIZ_PIXEL_PANNING		19
57300829Sgrehan#define	ATC_COLOR_SELECT		20
58300829Sgrehan#define	 ATC_CS_C67			0x0c	/* Color select bits 6+7 */
59300829Sgrehan#define	 ATC_CS_C45			0x03	/* Color select bits 4+5 */
60300829Sgrehan
61300829Sgrehan/* Sequencer registers. */
62300829Sgrehan#define	SEQ_IDX_PORT			0x3c4
63300829Sgrehan#define	SEQ_DATA_PORT			0x3c5
64300829Sgrehan
65300829Sgrehan#define	SEQ_RESET			0
66300829Sgrehan#define	SEQ_RESET_ASYNC			0x1
67300829Sgrehan#define	SEQ_RESET_SYNC			0x2
68300829Sgrehan#define	SEQ_CLOCKING_MODE		1
69300829Sgrehan#define	 SEQ_CM_SO			0x20	/* Screen off */
70300829Sgrehan#define	 SEQ_CM_89			0x01	/* 8/9 dot clock */
71300829Sgrehan#define	SEQ_MAP_MASK			2
72300829Sgrehan#define	SEQ_CHAR_MAP_SELECT		3
73300829Sgrehan#define	 SEQ_CMS_SAH			0x20	/* Char map A bit 2 */
74300829Sgrehan#define	 SEQ_CMS_SAH_SHIFT		5
75300829Sgrehan#define	 SEQ_CMS_SA			0x0c	/* Char map A bits 0+1 */
76300829Sgrehan#define	 SEQ_CMS_SA_SHIFT		2
77300829Sgrehan#define	 SEQ_CMS_SBH			0x10	/* Char map B bit 2 */
78300829Sgrehan#define	 SEQ_CMS_SBH_SHIFT		4
79300829Sgrehan#define	 SEQ_CMS_SB			0x03	/* Char map B bits 0+1 */
80300829Sgrehan#define	 SEQ_CMS_SB_SHIFT		0
81300829Sgrehan#define	SEQ_MEMORY_MODE			4
82300829Sgrehan#define	 SEQ_MM_C4			0x08	/* Chain 4 */
83300829Sgrehan#define	 SEQ_MM_OE			0x04	/* Odd/even */
84300829Sgrehan#define	 SEQ_MM_EM			0x02	/* Extended memory */
85300829Sgrehan
86300829Sgrehan/* Graphics controller registers. */
87300829Sgrehan#define	GC_IDX_PORT			0x3ce
88300829Sgrehan#define	GC_DATA_PORT			0x3cf
89300829Sgrehan
90300829Sgrehan#define	GC_SET_RESET			0
91300829Sgrehan#define	GC_ENABLE_SET_RESET		1
92300829Sgrehan#define	GC_COLOR_COMPARE		2
93300829Sgrehan#define	GC_DATA_ROTATE			3
94300829Sgrehan#define	GC_READ_MAP_SELECT		4
95300829Sgrehan#define	GC_MODE				5
96300829Sgrehan#define	 GC_MODE_OE			0x10	/* Odd/even */
97300829Sgrehan#define	 GC_MODE_C4			0x04	/* Chain 4 */
98300829Sgrehan
99300829Sgrehan#define	GC_MISCELLANEOUS		6
100300829Sgrehan#define	 GC_MISC_GM			0x01	/* Graphics/alphanumeric */
101300829Sgrehan#define	 GC_MISC_MM			0x0c	/* memory map */
102300829Sgrehan#define	 GC_MISC_MM_SHIFT	2
103300829Sgrehan#define	GC_COLOR_DONT_CARE		7
104300829Sgrehan#define	GC_BIT_MASK			8
105300829Sgrehan
106300829Sgrehan/* CRT controller registers. */
107300829Sgrehan#define	CRTC_IDX_MONO_PORT		0x3b4
108300829Sgrehan#define	CRTC_DATA_MONO_PORT		0x3b5
109300829Sgrehan#define	CRTC_IDX_COLOR_PORT		0x3d4
110300829Sgrehan#define	CRTC_DATA_COLOR_PORT		0x3d5
111300829Sgrehan
112300829Sgrehan#define	CRTC_HORIZ_TOTAL		0
113300829Sgrehan#define	CRTC_HORIZ_DISP_END		1
114300829Sgrehan#define	CRTC_START_HORIZ_BLANK		2
115300829Sgrehan#define	CRTC_END_HORIZ_BLANK		3
116300829Sgrehan#define	CRTC_START_HORIZ_RETRACE	4
117300829Sgrehan#define	CRTC_END_HORIZ_RETRACE		5
118300829Sgrehan#define	CRTC_VERT_TOTAL			6
119300829Sgrehan#define	CRTC_OVERFLOW			7
120300829Sgrehan#define	 CRTC_OF_VRS9			0x80	/* VRS bit 9 */
121300829Sgrehan#define	 CRTC_OF_VRS9_SHIFT		7
122300829Sgrehan#define	 CRTC_OF_VDE9			0x40	/* VDE bit 9 */
123300829Sgrehan#define	 CRTC_OF_VDE9_SHIFT		6
124300829Sgrehan#define	 CRTC_OF_VRS8			0x04	/* VRS bit 8 */
125300829Sgrehan#define	 CRTC_OF_VRS8_SHIFT		2
126300829Sgrehan#define	 CRTC_OF_VDE8			0x02	/* VDE bit 8 */
127300829Sgrehan#define	 CRTC_OF_VDE8_SHIFT		1
128300829Sgrehan#define	CRTC_PRESET_ROW_SCAN		8
129300829Sgrehan#define	CRTC_MAX_SCAN_LINE		9
130300829Sgrehan#define	 CRTC_MSL_MSL			0x1f
131300829Sgrehan#define	CRTC_CURSOR_START		10
132300829Sgrehan#define	 CRTC_CS_CO			0x20	/* Cursor off */
133300829Sgrehan#define	 CRTC_CS_CS			0x1f	/* Cursor start */
134300829Sgrehan#define	CRTC_CURSOR_END			11
135300829Sgrehan#define	 CRTC_CE_CE			0x1f	/* Cursor end */
136300829Sgrehan#define	CRTC_START_ADDR_HIGH		12
137300829Sgrehan#define	CRTC_START_ADDR_LOW		13
138300829Sgrehan#define	CRTC_CURSOR_LOC_HIGH		14
139300829Sgrehan#define	CRTC_CURSOR_LOC_LOW		15
140300829Sgrehan#define	CRTC_VERT_RETRACE_START		16
141300829Sgrehan#define	CRTC_VERT_RETRACE_END		17
142300829Sgrehan#define	 CRTC_VRE_MASK			0xf
143300829Sgrehan#define	CRTC_VERT_DISP_END		18
144300829Sgrehan#define	CRTC_OFFSET			19
145300829Sgrehan#define	CRTC_UNDERLINE_LOC		20
146300829Sgrehan#define	CRTC_START_VERT_BLANK		21
147300829Sgrehan#define	CRTC_END_VERT_BLANK		22
148300829Sgrehan#define	CRTC_MODE_CONTROL		23
149300829Sgrehan#define	 CRTC_MC_TE			0x80	/* Timing enable */
150300829Sgrehan#define	CRTC_LINE_COMPARE		24
151300829Sgrehan
152300829Sgrehan/* DAC registers */
153300829Sgrehan#define	DAC_MASK			0x3c6
154300829Sgrehan#define	DAC_IDX_RD_PORT			0x3c7
155300829Sgrehan#define	DAC_IDX_WR_PORT			0x3c8
156300829Sgrehan#define	DAC_DATA_PORT			0x3c9
157300829Sgrehan
158300829Sgrehanvoid	*vga_init(int io_only);
159300829Sgrehan
160300829Sgrehan#endif /* _VGA_H_ */
161