Symbol: VGA_REG_BASE
stand/i386/libi386/vbe.c
268
atr = vga_get_atr(VGA_REG_BASE, VGA_AC_MODE_CONTROL);
stand/i386/libi386/vbe.c
271
vga_set_atr(VGA_REG_BASE, VGA_AC_MODE_CONTROL, atr);
stand/i386/libi386/vidconsole.c
1004
val = vga_get_atr(VGA_REG_BASE, VGA_AC_MODE_CONTROL);
stand/i386/libi386/vidconsole.c
1007
vga_set_atr(VGA_REG_BASE, VGA_AC_MODE_CONTROL, val);
stand/i386/libi386/vidconsole.c
129
msl = vga_get_crtc(VGA_REG_BASE, VGA_CRTC_MAX_SCAN_LINE) & 0x1f;
stand/i386/libi386/vidconsole.c
130
s = vga_get_crtc(VGA_REG_BASE, VGA_CRTC_CURSOR_START) & 0xC0;
stand/i386/libi386/vidconsole.c
131
e = vga_get_crtc(VGA_REG_BASE, VGA_CRTC_CURSOR_END);
stand/i386/libi386/vidconsole.c
135
vga_set_crtc(VGA_REG_BASE, VGA_CRTC_CURSOR_LOC_HIGH, addr >> 8);
stand/i386/libi386/vidconsole.c
136
vga_set_crtc(VGA_REG_BASE, VGA_CRTC_CURSOR_LOC_LOW,
stand/i386/libi386/vidconsole.c
142
vga_set_crtc(VGA_REG_BASE, VGA_CRTC_CURSOR_START, s);
stand/i386/libi386/vidconsole.c
143
vga_set_crtc(VGA_REG_BASE, VGA_CRTC_CURSOR_END, e);
stand/i386/libi386/vidconsole.c
151
addr = (vga_get_crtc(VGA_REG_BASE, VGA_CRTC_CURSOR_LOC_HIGH) << 8) +
stand/i386/libi386/vidconsole.c
152
vga_get_crtc(VGA_REG_BASE, VGA_CRTC_CURSOR_LOC_LOW);
stand/i386/libi386/vidconsole.c
800
vga_set_seq(VGA_REG_BASE, VGA_SEQ_RESET, VGA_SEQ_RST_NAR);
stand/i386/libi386/vidconsole.c
802
reg[0] = vga_get_seq(VGA_REG_BASE, VGA_SEQ_MAP_MASK);
stand/i386/libi386/vidconsole.c
803
reg[1] = vga_get_seq(VGA_REG_BASE, VGA_SEQ_CLOCKING_MODE);
stand/i386/libi386/vidconsole.c
804
reg[2] = vga_get_seq(VGA_REG_BASE, VGA_SEQ_MEMORY_MODE);
stand/i386/libi386/vidconsole.c
805
reg[3] = vga_get_grc(VGA_REG_BASE, VGA_GC_READ_MAP_SELECT);
stand/i386/libi386/vidconsole.c
806
reg[4] = vga_get_grc(VGA_REG_BASE, VGA_GC_MODE);
stand/i386/libi386/vidconsole.c
807
reg[5] = vga_get_grc(VGA_REG_BASE, VGA_GC_MISCELLANEOUS);
stand/i386/libi386/vidconsole.c
808
reg[6] = vga_get_atr(VGA_REG_BASE, VGA_AC_MODE_CONTROL);
stand/i386/libi386/vidconsole.c
811
vga_set_seq(VGA_REG_BASE, VGA_SEQ_CLOCKING_MODE,
stand/i386/libi386/vidconsole.c
818
vga_set_seq(VGA_REG_BASE, VGA_SEQ_MAP_MASK, VGA_SEQ_MM_EM2);
stand/i386/libi386/vidconsole.c
823
vga_set_seq(VGA_REG_BASE, VGA_SEQ_MEMORY_MODE, 0x07);
stand/i386/libi386/vidconsole.c
825
vga_set_seq(VGA_REG_BASE, VGA_SEQ_RESET,
stand/i386/libi386/vidconsole.c
831
vga_set_grc(VGA_REG_BASE, VGA_GC_READ_MAP_SELECT, 0x02);
stand/i386/libi386/vidconsole.c
836
vga_set_grc(VGA_REG_BASE, VGA_GC_MODE, 0x00);
stand/i386/libi386/vidconsole.c
841
vga_set_grc(VGA_REG_BASE, VGA_GC_MISCELLANEOUS, 0x00);
stand/i386/libi386/vidconsole.c
859
vga_set_atr(VGA_REG_BASE, VGA_AC_MODE_CONTROL, reg[6]);
stand/i386/libi386/vidconsole.c
862
vga_set_seq(VGA_REG_BASE, VGA_SEQ_RESET, VGA_SEQ_RST_NAR);
stand/i386/libi386/vidconsole.c
863
vga_set_seq(VGA_REG_BASE, VGA_SEQ_MAP_MASK, reg[0]);
stand/i386/libi386/vidconsole.c
864
vga_set_seq(VGA_REG_BASE, VGA_SEQ_MEMORY_MODE, reg[2]);
stand/i386/libi386/vidconsole.c
866
vga_set_seq(VGA_REG_BASE, VGA_SEQ_RESET,
stand/i386/libi386/vidconsole.c
870
vga_set_grc(VGA_REG_BASE, VGA_GC_READ_MAP_SELECT, reg[3]);
stand/i386/libi386/vidconsole.c
871
vga_set_grc(VGA_REG_BASE, VGA_GC_MODE, reg[4]);
stand/i386/libi386/vidconsole.c
872
vga_set_grc(VGA_REG_BASE, VGA_GC_MISCELLANEOUS, (reg[5] & 0x03) | 0x0c);
stand/i386/libi386/vidconsole.c
875
vga_set_seq(VGA_REG_BASE, VGA_SEQ_CLOCKING_MODE, reg[1] & 0xdf);
stand/i386/libi386/vidconsole.c
998
if (vga_get_reg(VGA_REG_BASE, VGA_GEN_MISC_OUTPUT_R) & VGA_GEN_MO_IOA)
sys/dev/vt/hw/vga/vt_vga.c
1314
bus_space_map(sc->vga_reg_tag, VGA_REG_BASE, VGA_REG_SIZE, 0,