vga_raster.c revision 1.4 1 1.4 junyoung /* $NetBSD: vga_raster.c,v 1.4 2002/11/04 08:05:53 junyoung Exp $ */
2 1.1 junyoung
3 1.1 junyoung /*
4 1.1 junyoung * Copyright (c) 2001, 2002 Bang Jun-Young
5 1.1 junyoung * All rights reserved.
6 1.1 junyoung *
7 1.1 junyoung * Redistribution and use in source and binary forms, with or without
8 1.1 junyoung * modification, are permitted provided that the following conditions
9 1.1 junyoung * are met:
10 1.1 junyoung * 1. Redistributions of source code must retain the above copyright
11 1.1 junyoung * notice, this list of conditions and the following disclaimer.
12 1.1 junyoung * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 junyoung * notice, this list of conditions and the following disclaimer in the
14 1.1 junyoung * documentation and/or other materials provided with the distribution.
15 1.1 junyoung * 3. The name of the author may not be used to endorse or promote products
16 1.4 junyoung * derived from this software without specific prior written permission.
17 1.1 junyoung *
18 1.1 junyoung * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 1.1 junyoung * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 1.1 junyoung * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 1.1 junyoung * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 1.1 junyoung * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 1.1 junyoung * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 1.1 junyoung * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 1.1 junyoung * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 1.1 junyoung * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 1.1 junyoung * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 1.1 junyoung */
29 1.1 junyoung
30 1.1 junyoung /*
31 1.1 junyoung * Copyright (c) 1995, 1996 Carnegie-Mellon University.
32 1.1 junyoung * All rights reserved.
33 1.1 junyoung *
34 1.1 junyoung * Author: Chris G. Demetriou
35 1.1 junyoung *
36 1.1 junyoung * Permission to use, copy, modify and distribute this software and
37 1.1 junyoung * its documentation is hereby granted, provided that both the copyright
38 1.1 junyoung * notice and this permission notice appear in all copies of the
39 1.1 junyoung * software, derivative works or modified versions, and any portions
40 1.1 junyoung * thereof, and that both notices appear in supporting documentation.
41 1.1 junyoung *
42 1.1 junyoung * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
43 1.1 junyoung * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
44 1.1 junyoung * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
45 1.1 junyoung *
46 1.1 junyoung * Carnegie Mellon requests users of this software to return to
47 1.1 junyoung *
48 1.1 junyoung * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
49 1.1 junyoung * School of Computer Science
50 1.1 junyoung * Carnegie Mellon University
51 1.1 junyoung * Pittsburgh PA 15213-3890
52 1.1 junyoung *
53 1.1 junyoung * any improvements or extensions that they make and grant Carnegie the
54 1.1 junyoung * rights to redistribute these changes.
55 1.1 junyoung */
56 1.1 junyoung
57 1.1 junyoung #include <sys/param.h>
58 1.1 junyoung #include <sys/systm.h>
59 1.1 junyoung #include <sys/callout.h>
60 1.1 junyoung #include <sys/kernel.h>
61 1.1 junyoung #include <sys/device.h>
62 1.1 junyoung #include <sys/malloc.h>
63 1.1 junyoung #include <sys/queue.h>
64 1.1 junyoung #include <machine/bus.h>
65 1.1 junyoung
66 1.1 junyoung #include <dev/ic/mc6845reg.h>
67 1.1 junyoung #include <dev/ic/pcdisplayvar.h>
68 1.1 junyoung #include <dev/ic/vgareg.h>
69 1.1 junyoung #include <dev/ic/vgavar.h>
70 1.1 junyoung #include <dev/ic/videomode.h>
71 1.1 junyoung
72 1.1 junyoung #include <dev/wscons/wsdisplayvar.h>
73 1.1 junyoung #include <dev/wscons/wsconsio.h>
74 1.1 junyoung #include <dev/wsfont/wsfont.h>
75 1.1 junyoung
76 1.1 junyoung #include <dev/ic/pcdisplay.h>
77 1.1 junyoung
78 1.1 junyoung u_int8_t builtinfont_data[256 * 16];
79 1.1 junyoung
80 1.1 junyoung struct wsdisplay_font builtinfont = {
81 1.1 junyoung "builtin", /* typeface name */
82 1.1 junyoung 0, /* firstchar */
83 1.1 junyoung 256, /* numchars */
84 1.1 junyoung WSDISPLAY_FONTENC_IBM, /* encoding */
85 1.1 junyoung 8, /* width */
86 1.1 junyoung 16, /* height */
87 1.1 junyoung 1, /* stride */
88 1.1 junyoung WSDISPLAY_FONTORDER_L2R, /* bit order */
89 1.1 junyoung WSDISPLAY_FONTORDER_L2R, /* byte order */
90 1.1 junyoung builtinfont_data /* data */
91 1.1 junyoung };
92 1.1 junyoung
93 1.1 junyoung struct vga_scrmem {
94 1.1 junyoung u_int16_t ch;
95 1.1 junyoung u_int8_t attr;
96 1.1 junyoung u_int8_t second; /* XXXBJY should be u_int8_t len; */
97 1.1 junyoung u_int8_t enc;
98 1.1 junyoung };
99 1.1 junyoung
100 1.3 junyoung #ifdef VGA_CONSOLE_SCREENTYPE
101 1.3 junyoung #define VGA_SCRMEM_SIZE (80 * 30)
102 1.3 junyoung #else
103 1.3 junyoung #define VGA_SCRMEM_SIZE (80 * 25)
104 1.3 junyoung #endif
105 1.3 junyoung
106 1.3 junyoung struct vga_scrmem boot_scrmem[VGA_SCRMEM_SIZE];
107 1.1 junyoung
108 1.1 junyoung struct vga_raster_font {
109 1.1 junyoung LIST_ENTRY(vga_raster_font) next;
110 1.1 junyoung struct wsdisplay_font *font;
111 1.1 junyoung };
112 1.1 junyoung
113 1.1 junyoung struct vgascreen {
114 1.1 junyoung LIST_ENTRY(vgascreen) next;
115 1.1 junyoung struct vga_config *cfg;
116 1.1 junyoung struct vga_handle *hdl;
117 1.1 junyoung const struct wsscreen_descr *type;
118 1.1 junyoung
119 1.1 junyoung int active;
120 1.1 junyoung struct vga_scrmem *mem;
121 1.1 junyoung int encoding;
122 1.1 junyoung
123 1.1 junyoung int dispoffset;
124 1.1 junyoung int mindispoffset;
125 1.1 junyoung int maxdispoffset;
126 1.1 junyoung
127 1.1 junyoung int cursoron; /* Is cursor displayed? */
128 1.1 junyoung int cursorcol; /* Current cursor column */
129 1.1 junyoung int cursorrow; /* Current cursor row */
130 1.1 junyoung struct vga_scrmem cursortmp;
131 1.1 junyoung int cursorstride;
132 1.1 junyoung
133 1.1 junyoung LIST_HEAD(, vga_raster_font) fontset;
134 1.1 junyoung };
135 1.1 junyoung
136 1.1 junyoung struct vga_moderegs {
137 1.1 junyoung u_int8_t miscout; /* Misc. output */
138 1.1 junyoung u_int8_t crtc[VGA_CRTC_NREGS]; /* CRTC controller */
139 1.1 junyoung u_int8_t atc[VGA_ATC_NREGS]; /* Attribute controller */
140 1.1 junyoung u_int8_t ts[VGA_TS_NREGS]; /* Time sequencer */
141 1.1 junyoung u_int8_t gdc[VGA_GDC_NREGS]; /* Graphics display controller */
142 1.1 junyoung };
143 1.1 junyoung
144 1.1 junyoung static int vgaconsole, vga_console_type, vga_console_attached;
145 1.1 junyoung static struct vgascreen vga_console_screen;
146 1.1 junyoung static struct vga_config vga_console_vc;
147 1.1 junyoung static struct vga_raster_font vga_console_fontset_ascii;
148 1.1 junyoung static struct videomode vga_console_modes[2] = {
149 1.1 junyoung /* 640x400 for 80x25, 80x40 and 80x50 modes */
150 1.1 junyoung {
151 1.1 junyoung 25175, 640, 664, 760, 800, 400, 409, 411, 450, 0
152 1.1 junyoung },
153 1.1 junyoung /* 640x480 for 80x30 mode */
154 1.1 junyoung {
155 1.1 junyoung 25175, 640, 664, 760, 800, 480, 491, 493, 525, 0
156 1.1 junyoung }
157 1.1 junyoung };
158 1.1 junyoung
159 1.1 junyoung static void vga_raster_init(struct vga_config *, bus_space_tag_t,
160 1.1 junyoung bus_space_tag_t);
161 1.1 junyoung static void vga_raster_init_screen(struct vga_config *, struct vgascreen *,
162 1.1 junyoung const struct wsscreen_descr *, int, long *);
163 1.1 junyoung static void vga_raster_setup_font(struct vga_config *, struct vgascreen *);
164 1.1 junyoung static void vga_setup_regs(struct videomode *, struct vga_moderegs *);
165 1.1 junyoung static void vga_set_mode(struct vga_handle *, struct vga_moderegs *);
166 1.1 junyoung static void vga_restore_screen(struct vgascreen *,
167 1.1 junyoung const struct wsscreen_descr *, struct vga_scrmem *);
168 1.1 junyoung static void vga_raster_cursor_init(struct vgascreen *, int);
169 1.1 junyoung static void _vga_raster_putchar(void *, int, int, u_int, long,
170 1.1 junyoung struct vga_raster_font *);
171 1.1 junyoung
172 1.1 junyoung static void vga_raster_cursor(void *, int, int, int);
173 1.1 junyoung static int vga_raster_mapchar(void *, int, u_int *);
174 1.1 junyoung static void vga_raster_putchar(void *, int, int, u_int, long);
175 1.1 junyoung static void vga_raster_copycols(void *, int, int, int, int);
176 1.1 junyoung static void vga_raster_erasecols(void *, int, int, int, long);
177 1.1 junyoung static void vga_raster_copyrows(void *, int, int, int);
178 1.1 junyoung static void vga_raster_eraserows(void *, int, int, long);
179 1.1 junyoung static int vga_raster_allocattr(void *, int, int, int, long *);
180 1.1 junyoung
181 1.1 junyoung const struct wsdisplay_emulops vga_raster_emulops = {
182 1.1 junyoung vga_raster_cursor,
183 1.1 junyoung vga_raster_mapchar,
184 1.1 junyoung vga_raster_putchar,
185 1.1 junyoung vga_raster_copycols,
186 1.1 junyoung vga_raster_erasecols,
187 1.1 junyoung vga_raster_copyrows,
188 1.1 junyoung vga_raster_eraserows,
189 1.1 junyoung vga_raster_allocattr,
190 1.1 junyoung };
191 1.1 junyoung
192 1.1 junyoung /*
193 1.1 junyoung * translate WS(=ANSI) color codes to standard pc ones
194 1.1 junyoung */
195 1.1 junyoung static const unsigned char fgansitopc[] = {
196 1.1 junyoung #ifdef __alpha__
197 1.1 junyoung /*
198 1.1 junyoung * XXX DEC HAS SWITCHED THE CODES FOR BLUE AND RED!!!
199 1.1 junyoung * XXX We should probably not bother with this
200 1.1 junyoung * XXX (reinitialize the palette registers).
201 1.1 junyoung */
202 1.1 junyoung FG_BLACK, FG_BLUE, FG_GREEN, FG_CYAN, FG_RED,
203 1.1 junyoung FG_MAGENTA, FG_BROWN, FG_LIGHTGREY
204 1.1 junyoung #else
205 1.1 junyoung FG_BLACK, FG_RED, FG_GREEN, FG_BROWN, FG_BLUE,
206 1.1 junyoung FG_MAGENTA, FG_CYAN, FG_LIGHTGREY
207 1.1 junyoung #endif
208 1.1 junyoung }, bgansitopc[] = {
209 1.1 junyoung #ifdef __alpha__
210 1.1 junyoung BG_BLACK, BG_BLUE, BG_GREEN, BG_CYAN, BG_RED,
211 1.1 junyoung BG_MAGENTA, BG_BROWN, BG_LIGHTGREY
212 1.1 junyoung #else
213 1.1 junyoung BG_BLACK, BG_RED, BG_GREEN, BG_BROWN, BG_BLUE,
214 1.1 junyoung BG_MAGENTA, BG_CYAN, BG_LIGHTGREY
215 1.1 junyoung #endif
216 1.1 junyoung };
217 1.1 junyoung
218 1.1 junyoung const struct wsscreen_descr vga_25lscreen = {
219 1.1 junyoung "80x25", 80, 25,
220 1.1 junyoung &vga_raster_emulops,
221 1.1 junyoung 8, 16,
222 1.1 junyoung WSSCREEN_WSCOLORS | WSSCREEN_HILIT | WSSCREEN_BLINK,
223 1.1 junyoung &vga_console_modes[0]
224 1.1 junyoung }, vga_25lscreen_mono = {
225 1.1 junyoung "80x25", 80, 25,
226 1.1 junyoung &vga_raster_emulops,
227 1.1 junyoung 8, 16,
228 1.1 junyoung WSSCREEN_HILIT | WSSCREEN_UNDERLINE | WSSCREEN_BLINK | WSSCREEN_REVERSE,
229 1.1 junyoung &vga_console_modes[0]
230 1.1 junyoung }, vga_30lscreen = {
231 1.1 junyoung "80x30", 80, 30,
232 1.1 junyoung &vga_raster_emulops,
233 1.1 junyoung 8, 16,
234 1.1 junyoung WSSCREEN_WSCOLORS | WSSCREEN_HILIT | WSSCREEN_BLINK,
235 1.1 junyoung &vga_console_modes[1]
236 1.1 junyoung }, vga_30lscreen_mono = {
237 1.1 junyoung "80x30", 80, 30,
238 1.1 junyoung &vga_raster_emulops,
239 1.1 junyoung 8, 16,
240 1.1 junyoung WSSCREEN_HILIT | WSSCREEN_UNDERLINE | WSSCREEN_BLINK | WSSCREEN_REVERSE,
241 1.1 junyoung &vga_console_modes[1]
242 1.1 junyoung }, vga_40lscreen = {
243 1.1 junyoung "80x40", 80, 40,
244 1.1 junyoung &vga_raster_emulops,
245 1.1 junyoung 8, 10,
246 1.1 junyoung WSSCREEN_WSCOLORS | WSSCREEN_HILIT | WSSCREEN_BLINK,
247 1.1 junyoung &vga_console_modes[0]
248 1.1 junyoung }, vga_40lscreen_mono = {
249 1.1 junyoung "80x40", 80, 40,
250 1.1 junyoung &vga_raster_emulops,
251 1.1 junyoung 8, 10,
252 1.1 junyoung WSSCREEN_HILIT | WSSCREEN_UNDERLINE | WSSCREEN_BLINK | WSSCREEN_REVERSE,
253 1.1 junyoung &vga_console_modes[0]
254 1.1 junyoung }, vga_50lscreen = {
255 1.1 junyoung "80x50", 80, 50,
256 1.1 junyoung &vga_raster_emulops,
257 1.1 junyoung 8, 8,
258 1.1 junyoung WSSCREEN_WSCOLORS | WSSCREEN_HILIT | WSSCREEN_BLINK,
259 1.1 junyoung &vga_console_modes[0]
260 1.1 junyoung }, vga_50lscreen_mono = {
261 1.1 junyoung "80x50", 80, 50,
262 1.1 junyoung &vga_raster_emulops,
263 1.1 junyoung 8, 8,
264 1.1 junyoung WSSCREEN_HILIT | WSSCREEN_UNDERLINE | WSSCREEN_BLINK | WSSCREEN_REVERSE,
265 1.1 junyoung &vga_console_modes[0]
266 1.1 junyoung };
267 1.1 junyoung
268 1.1 junyoung const struct wsscreen_descr *_vga_scrlist[] = {
269 1.1 junyoung &vga_25lscreen,
270 1.1 junyoung &vga_30lscreen,
271 1.1 junyoung &vga_40lscreen,
272 1.1 junyoung &vga_50lscreen,
273 1.1 junyoung }, *_vga_scrlist_mono[] = {
274 1.1 junyoung &vga_25lscreen_mono,
275 1.1 junyoung &vga_30lscreen_mono,
276 1.1 junyoung &vga_40lscreen_mono,
277 1.1 junyoung &vga_50lscreen_mono,
278 1.1 junyoung };
279 1.1 junyoung
280 1.1 junyoung const struct wsscreen_list vga_screenlist = {
281 1.1 junyoung sizeof(_vga_scrlist) / sizeof(struct wsscreen_descr *),
282 1.1 junyoung _vga_scrlist
283 1.1 junyoung }, vga_screenlist_mono = {
284 1.1 junyoung sizeof(_vga_scrlist_mono) / sizeof(struct wsscreen_descr *),
285 1.1 junyoung _vga_scrlist_mono
286 1.1 junyoung };
287 1.1 junyoung
288 1.1 junyoung static int vga_raster_ioctl(void *, u_long, caddr_t, int, struct proc *);
289 1.1 junyoung static paddr_t vga_raster_mmap(void *, off_t, int);
290 1.1 junyoung static int vga_raster_alloc_screen(void *, const struct wsscreen_descr *,
291 1.1 junyoung void **, int *, int *, long *);
292 1.1 junyoung static void vga_raster_free_screen(void *, void *);
293 1.1 junyoung static int vga_raster_show_screen(void *, void *, int,
294 1.1 junyoung void (*)(void *, int, int), void *);
295 1.1 junyoung static int vga_raster_load_font(void *, void *, struct wsdisplay_font *);
296 1.1 junyoung
297 1.1 junyoung static void vga_switch_screen(struct vga_config *);
298 1.1 junyoung static void vga_raster_setscreentype(struct vga_config *,
299 1.1 junyoung const struct wsscreen_descr *);
300 1.1 junyoung
301 1.1 junyoung const struct wsdisplay_accessops vga_raster_accessops = {
302 1.1 junyoung vga_raster_ioctl,
303 1.1 junyoung vga_raster_mmap,
304 1.1 junyoung vga_raster_alloc_screen,
305 1.1 junyoung vga_raster_free_screen,
306 1.1 junyoung vga_raster_show_screen,
307 1.1 junyoung vga_raster_load_font,
308 1.1 junyoung };
309 1.1 junyoung
310 1.1 junyoung int
311 1.1 junyoung vga_cnattach(bus_space_tag_t iot, bus_space_tag_t memt, int type, int check)
312 1.1 junyoung {
313 1.1 junyoung long defattr;
314 1.1 junyoung const struct wsscreen_descr *scr;
315 1.3 junyoung char *typestr;
316 1.1 junyoung
317 1.1 junyoung if (check && !vga_common_probe(iot, memt))
318 1.1 junyoung return (ENXIO);
319 1.1 junyoung
320 1.1 junyoung /* set up bus-independent VGA configuration */
321 1.1 junyoung vga_raster_init(&vga_console_vc, iot, memt);
322 1.1 junyoung #ifdef VGA_CONSOLE_SCREENTYPE
323 1.1 junyoung scr = wsdisplay_screentype_pick(vga_console_vc.hdl.vh_mono ?
324 1.1 junyoung &vga_screenlist_mono : &vga_screenlist, VGA_CONSOLE_SCREENTYPE);
325 1.1 junyoung if (!scr)
326 1.3 junyoung /* Invalid screen type, continue with the default mode. */
327 1.3 junyoung typestr = "80x25";
328 1.3 junyoung else if (scr->nrows > 30)
329 1.3 junyoung /* Unsupported screen type, try 80x30. */
330 1.3 junyoung typestr = "80x30";
331 1.3 junyoung scr = wsdisplay_screentype_pick(vga_console_vc.hdl.vh_mono ?
332 1.3 junyoung &vga_screenlist_mono : &vga_screenlist, typestr);
333 1.3 junyoung if (scr != vga_console_vc.currenttype)
334 1.1 junyoung vga_console_vc.currenttype = scr;
335 1.1 junyoung #else
336 1.1 junyoung scr = vga_console_vc.currenttype;
337 1.1 junyoung #endif
338 1.1 junyoung vga_raster_init_screen(&vga_console_vc, &vga_console_screen, scr, 1,
339 1.1 junyoung &defattr);
340 1.1 junyoung
341 1.1 junyoung vga_console_screen.active = 1;
342 1.1 junyoung vga_console_vc.active = &vga_console_screen;
343 1.1 junyoung
344 1.1 junyoung wsdisplay_cnattach(scr, &vga_console_screen,
345 1.1 junyoung vga_console_screen.cursorcol, vga_console_screen.cursorrow,
346 1.1 junyoung defattr);
347 1.1 junyoung
348 1.1 junyoung vgaconsole = 1;
349 1.1 junyoung vga_console_type = type;
350 1.1 junyoung return (0);
351 1.1 junyoung }
352 1.1 junyoung
353 1.1 junyoung void
354 1.1 junyoung vga_raster_init(struct vga_config *vc, bus_space_tag_t iot,
355 1.1 junyoung bus_space_tag_t memt)
356 1.1 junyoung {
357 1.1 junyoung struct vga_handle *vh = &vc->hdl;
358 1.1 junyoung u_int8_t mor;
359 1.1 junyoung struct vga_raster_font *vf;
360 1.1 junyoung
361 1.1 junyoung vh->vh_iot = iot;
362 1.1 junyoung vh->vh_memt = memt;
363 1.1 junyoung
364 1.1 junyoung if (bus_space_map(vh->vh_iot, 0x3c0, 0x10, 0, &vh->vh_ioh_vga))
365 1.1 junyoung panic("vga_raster_init: couldn't map vga io");
366 1.1 junyoung
367 1.1 junyoung /* read "misc output register" */
368 1.1 junyoung mor = bus_space_read_1(vh->vh_iot, vh->vh_ioh_vga, 0xc);
369 1.1 junyoung vh->vh_mono = !(mor & 1);
370 1.1 junyoung
371 1.1 junyoung if (bus_space_map(vh->vh_iot, (vh->vh_mono ? 0x3b0 : 0x3d0), 0x10, 0,
372 1.1 junyoung &vh->vh_ioh_6845))
373 1.1 junyoung panic("vga_raster_init: couldn't map 6845 io");
374 1.1 junyoung
375 1.1 junyoung if (bus_space_map(vh->vh_memt, 0xa0000, 0x20000, 0, &vh->vh_allmemh))
376 1.1 junyoung panic("vga_raster_init: couldn't map memory");
377 1.1 junyoung
378 1.1 junyoung if (bus_space_subregion(vh->vh_memt, vh->vh_allmemh, 0, 0x10000,
379 1.1 junyoung &vh->vh_memh))
380 1.1 junyoung panic("vga_raster_init: mem subrange failed");
381 1.1 junyoung
382 1.1 junyoung /* should only reserve the space (no need to map - save KVM) */
383 1.1 junyoung vc->vc_biostag = memt;
384 1.1 junyoung if (bus_space_map(vc->vc_biostag, 0xc0000, 0x8000, 0, &vc->vc_bioshdl))
385 1.1 junyoung vc->vc_biosmapped = 0;
386 1.1 junyoung else
387 1.1 junyoung vc->vc_biosmapped = 1;
388 1.1 junyoung
389 1.1 junyoung vc->nscreens = 0;
390 1.1 junyoung LIST_INIT(&vc->screens);
391 1.1 junyoung vc->active = NULL;
392 1.1 junyoung vc->currenttype = vh->vh_mono ? &vga_25lscreen_mono : &vga_25lscreen;
393 1.1 junyoung callout_init(&vc->vc_switch_callout);
394 1.1 junyoung
395 1.1 junyoung vc->nfonts = 1;
396 1.1 junyoung LIST_INIT(&vc->vc_fontlist);
397 1.1 junyoung vf = &vga_console_fontset_ascii;
398 1.1 junyoung vga_load_builtinfont(vh, builtinfont_data, 0, 256);
399 1.1 junyoung vf->font = &builtinfont;
400 1.1 junyoung LIST_INSERT_HEAD(&vc->vc_fontlist, vf, next);
401 1.1 junyoung }
402 1.1 junyoung
403 1.1 junyoung void
404 1.1 junyoung vga_raster_init_screen(struct vga_config *vc, struct vgascreen *scr,
405 1.1 junyoung const struct wsscreen_descr *type, int existing, long *attrp)
406 1.1 junyoung {
407 1.1 junyoung int cpos;
408 1.1 junyoung int res;
409 1.1 junyoung struct vga_handle *vh;
410 1.1 junyoung
411 1.1 junyoung scr->cfg = vc;
412 1.1 junyoung scr->hdl = &vc->hdl;
413 1.1 junyoung scr->type = type;
414 1.1 junyoung scr->mindispoffset = 0;
415 1.1 junyoung scr->maxdispoffset = 0x10000;
416 1.1 junyoung scr->encoding = WSDISPLAY_FONTENC_IBM;
417 1.1 junyoung vh = &vc->hdl;
418 1.1 junyoung
419 1.1 junyoung wsfont_init();
420 1.1 junyoung LIST_INIT(&scr->fontset);
421 1.1 junyoung vga_raster_setup_font(vc, scr);
422 1.1 junyoung
423 1.1 junyoung if (existing) {
424 1.3 junyoung int i;
425 1.3 junyoung
426 1.1 junyoung cpos = vga_6845_read(vh, cursorh) << 8;
427 1.1 junyoung cpos |= vga_6845_read(vh, cursorl);
428 1.1 junyoung
429 1.1 junyoung /* make sure we have a valid cursor position */
430 1.1 junyoung if (cpos < 0 || cpos >= type->nrows * type->ncols)
431 1.1 junyoung cpos = 0;
432 1.1 junyoung
433 1.1 junyoung scr->dispoffset = vga_6845_read(vh, startadrh) << 9;
434 1.1 junyoung scr->dispoffset |= vga_6845_read(vh, startadrl) << 1;
435 1.1 junyoung
436 1.1 junyoung /* make sure we have a valid memory offset */
437 1.1 junyoung if (scr->dispoffset < scr->mindispoffset ||
438 1.1 junyoung scr->dispoffset > scr->maxdispoffset)
439 1.1 junyoung scr->dispoffset = scr->mindispoffset;
440 1.1 junyoung
441 1.1 junyoung scr->mem = boot_scrmem;
442 1.1 junyoung scr->active = 1;
443 1.1 junyoung
444 1.3 junyoung /* Save the current screen to memory. XXXBJY assume 80x25 */
445 1.3 junyoung for (i = 0; i < 80 * 25; i++) {
446 1.3 junyoung scr->mem[i].ch = bus_space_read_1(vh->vh_memt,
447 1.3 junyoung vh->vh_allmemh, 0x18000 + i * 2);
448 1.3 junyoung scr->mem[i].attr = bus_space_read_1(vh->vh_memt,
449 1.3 junyoung vh->vh_allmemh, 0x18000 + i * 2 + 1);
450 1.3 junyoung scr->mem[i].enc = WSDISPLAY_FONTENC_IBM;
451 1.3 junyoung }
452 1.3 junyoung
453 1.2 junyoung vga_raster_setscreentype(vc, type);
454 1.1 junyoung
455 1.1 junyoung /* Clear the entire screen. */
456 1.1 junyoung vga_gdc_write(vh, mode, 0x02);
457 1.1 junyoung bus_space_set_region_4(vh->vh_memt, vh->vh_allmemh, 0, 0,
458 1.1 junyoung 0x4000);
459 1.1 junyoung
460 1.1 junyoung vga_restore_screen(scr, type, scr->mem);
461 1.1 junyoung
462 1.1 junyoung /* Delay to prevent the boot screen from being too
463 1.1 junyoung fast scrolled up. */
464 1.2 junyoung delay(1000000);
465 1.1 junyoung } else {
466 1.1 junyoung cpos = 0;
467 1.1 junyoung scr->dispoffset = scr->mindispoffset;
468 1.1 junyoung scr->mem = NULL;
469 1.1 junyoung scr->active = 0;
470 1.1 junyoung }
471 1.1 junyoung
472 1.1 junyoung scr->cursorrow = cpos / type->ncols;
473 1.1 junyoung scr->cursorcol = cpos % type->ncols;
474 1.1 junyoung vga_raster_cursor_init(scr, existing);
475 1.1 junyoung
476 1.1 junyoung #ifdef __alpha__
477 1.1 junyoung if (!vc->hdl.vh_mono)
478 1.1 junyoung /*
479 1.1 junyoung * DEC firmware uses a blue background.
480 1.1 junyoung */
481 1.1 junyoung res = vga_raster_allocattr(scr, WSCOL_WHITE, WSCOL_BLUE,
482 1.1 junyoung WSATTR_WSCOLORS, attrp);
483 1.1 junyoung else
484 1.1 junyoung #endif
485 1.1 junyoung res = vga_raster_allocattr(scr, 0, 0, 0, attrp);
486 1.1 junyoung #ifdef DIAGNOSTIC
487 1.1 junyoung if (res)
488 1.1 junyoung panic("vga_raster_init_screen: attribute botch");
489 1.1 junyoung #endif
490 1.1 junyoung
491 1.1 junyoung vc->nscreens++;
492 1.1 junyoung LIST_INSERT_HEAD(&vc->screens, scr, next);
493 1.1 junyoung }
494 1.1 junyoung
495 1.1 junyoung void
496 1.1 junyoung vga_common_attach(struct vga_softc *sc, bus_space_tag_t iot,
497 1.1 junyoung bus_space_tag_t memt, int type, int quirks, const struct vga_funcs *vf)
498 1.1 junyoung {
499 1.1 junyoung int console;
500 1.1 junyoung struct vga_config *vc;
501 1.1 junyoung struct wsemuldisplaydev_attach_args aa;
502 1.1 junyoung
503 1.1 junyoung console = vga_is_console(iot, type);
504 1.1 junyoung
505 1.1 junyoung if (console) {
506 1.1 junyoung vc = &vga_console_vc;
507 1.1 junyoung vga_console_attached = 1;
508 1.1 junyoung } else {
509 1.1 junyoung vc = malloc(sizeof(struct vga_config), M_DEVBUF,
510 1.1 junyoung M_WAITOK);
511 1.1 junyoung vga_raster_init(vc, iot, memt);
512 1.1 junyoung }
513 1.1 junyoung
514 1.1 junyoung vc->vc_type = type;
515 1.1 junyoung vc->vc_funcs = vf;
516 1.1 junyoung
517 1.1 junyoung sc->sc_vc = vc;
518 1.1 junyoung vc->softc = sc;
519 1.1 junyoung
520 1.1 junyoung aa.console = console;
521 1.1 junyoung aa.scrdata = (vc->hdl.vh_mono ? &vga_screenlist_mono : &vga_screenlist);
522 1.1 junyoung aa.accessops = &vga_raster_accessops;
523 1.1 junyoung aa.accesscookie = vc;
524 1.1 junyoung
525 1.1 junyoung config_found(&sc->sc_dev, &aa, wsemuldisplaydevprint);
526 1.1 junyoung }
527 1.1 junyoung
528 1.1 junyoung int
529 1.1 junyoung vga_is_console(bus_space_tag_t iot, int type)
530 1.1 junyoung {
531 1.1 junyoung if (vgaconsole &&
532 1.1 junyoung !vga_console_attached &&
533 1.1 junyoung iot == vga_console_vc.hdl.vh_iot &&
534 1.1 junyoung (vga_console_type == -1 || (type == vga_console_type)))
535 1.1 junyoung return (1);
536 1.1 junyoung return (0);
537 1.1 junyoung }
538 1.1 junyoung
539 1.1 junyoung #define VGA_TS_BLANK 0x20
540 1.1 junyoung
541 1.1 junyoung static int
542 1.1 junyoung vga_get_video(struct vga_config *vc)
543 1.1 junyoung {
544 1.1 junyoung return (vga_ts_read(&vc->hdl, mode) & VGA_TS_BLANK) == 0;
545 1.1 junyoung }
546 1.1 junyoung
547 1.1 junyoung static void
548 1.1 junyoung vga_set_video(struct vga_config *vc, int state)
549 1.1 junyoung {
550 1.1 junyoung int val;
551 1.1 junyoung
552 1.1 junyoung vga_ts_write(&vc->hdl, syncreset, 0x01);
553 1.1 junyoung if (state) { /* unblank screen */
554 1.1 junyoung val = vga_ts_read(&vc->hdl, mode);
555 1.1 junyoung vga_ts_write(&vc->hdl, mode, val & ~VGA_TS_BLANK);
556 1.1 junyoung #ifndef VGA_NO_VBLANK
557 1.1 junyoung val = vga_6845_read(&vc->hdl, mode);
558 1.1 junyoung vga_6845_write(&vc->hdl, mode, val | 0x80);
559 1.1 junyoung #endif
560 1.1 junyoung } else { /* blank screen */
561 1.1 junyoung val = vga_ts_read(&vc->hdl, mode);
562 1.1 junyoung vga_ts_write(&vc->hdl, mode, val | VGA_TS_BLANK);
563 1.1 junyoung #ifndef VGA_NO_VBLANK
564 1.1 junyoung val = vga_6845_read(&vc->hdl, mode);
565 1.1 junyoung vga_6845_write(&vc->hdl, mode, val & ~0x80);
566 1.1 junyoung #endif
567 1.1 junyoung }
568 1.1 junyoung vga_ts_write(&vc->hdl, syncreset, 0x03);
569 1.1 junyoung }
570 1.1 junyoung
571 1.1 junyoung int
572 1.1 junyoung vga_raster_ioctl(void *v, u_long cmd, caddr_t data, int flag, struct proc *p)
573 1.1 junyoung {
574 1.1 junyoung struct vga_config *vc = v;
575 1.1 junyoung const struct vga_funcs *vf = vc->vc_funcs;
576 1.1 junyoung
577 1.1 junyoung switch (cmd) {
578 1.1 junyoung case WSDISPLAYIO_GTYPE:
579 1.1 junyoung *(int *)data = vc->vc_type;
580 1.1 junyoung return 0;
581 1.1 junyoung
582 1.1 junyoung case WSDISPLAYIO_GINFO:
583 1.1 junyoung /* XXX should get detailed hardware information here */
584 1.1 junyoung return EPASSTHROUGH;
585 1.1 junyoung
586 1.1 junyoung case WSDISPLAYIO_GVIDEO:
587 1.1 junyoung #if 1
588 1.1 junyoung *(int *)data = (vga_get_video(vc) ? WSDISPLAYIO_VIDEO_ON :
589 1.1 junyoung WSDISPLAYIO_VIDEO_OFF);
590 1.1 junyoung return 0;
591 1.1 junyoung #endif
592 1.1 junyoung
593 1.1 junyoung case WSDISPLAYIO_SVIDEO:
594 1.1 junyoung #if 1
595 1.1 junyoung vga_set_video(vc, *(int *)data == WSDISPLAYIO_VIDEO_ON);
596 1.1 junyoung return 0;
597 1.1 junyoung #endif
598 1.1 junyoung
599 1.1 junyoung case WSDISPLAYIO_GETCMAP:
600 1.1 junyoung case WSDISPLAYIO_PUTCMAP:
601 1.1 junyoung case WSDISPLAYIO_GCURPOS:
602 1.1 junyoung case WSDISPLAYIO_SCURPOS:
603 1.1 junyoung case WSDISPLAYIO_GCURMAX:
604 1.1 junyoung case WSDISPLAYIO_GCURSOR:
605 1.1 junyoung case WSDISPLAYIO_SCURSOR:
606 1.1 junyoung /* NONE of these operations are by the generic VGA driver. */
607 1.1 junyoung return EPASSTHROUGH;
608 1.1 junyoung }
609 1.1 junyoung
610 1.1 junyoung if (vc->vc_funcs == NULL)
611 1.1 junyoung return (EPASSTHROUGH);
612 1.1 junyoung
613 1.1 junyoung if (vf->vf_ioctl == NULL)
614 1.1 junyoung return (EPASSTHROUGH);
615 1.1 junyoung
616 1.1 junyoung return ((*vf->vf_ioctl)(v, cmd, data, flag, p));
617 1.1 junyoung
618 1.1 junyoung }
619 1.1 junyoung
620 1.1 junyoung static paddr_t
621 1.1 junyoung vga_raster_mmap(void *v, off_t offset, int prot)
622 1.1 junyoung {
623 1.1 junyoung struct vga_config *vc = v;
624 1.1 junyoung const struct vga_funcs *vf = vc->vc_funcs;
625 1.1 junyoung
626 1.1 junyoung if (vc->vc_funcs == NULL)
627 1.1 junyoung return (-1);
628 1.1 junyoung
629 1.1 junyoung if (vf->vf_mmap == NULL)
630 1.1 junyoung return (-1);
631 1.1 junyoung
632 1.1 junyoung return ((*vf->vf_mmap)(v, offset, prot));
633 1.1 junyoung }
634 1.1 junyoung
635 1.1 junyoung int
636 1.1 junyoung vga_raster_alloc_screen(void *v, const struct wsscreen_descr *type,
637 1.1 junyoung void **cookiep, int *curxp, int *curyp, long *defattrp)
638 1.1 junyoung {
639 1.1 junyoung struct vga_config *vc = v;
640 1.1 junyoung struct vgascreen *scr;
641 1.1 junyoung
642 1.1 junyoung if (vc->nscreens == 1) {
643 1.1 junyoung vc->screens.lh_first->mem = boot_scrmem;
644 1.1 junyoung }
645 1.1 junyoung
646 1.1 junyoung scr = malloc(sizeof(struct vgascreen), M_DEVBUF, M_WAITOK);
647 1.1 junyoung vga_raster_init_screen(vc, scr, type, vc->nscreens == 0, defattrp);
648 1.1 junyoung
649 1.1 junyoung if (vc->nscreens == 1) {
650 1.1 junyoung scr->active = 1;
651 1.1 junyoung vc->active = scr;
652 1.1 junyoung vc->currenttype = type;
653 1.1 junyoung } else {
654 1.1 junyoung scr->mem = malloc(sizeof(struct vga_scrmem) *
655 1.1 junyoung type->ncols * type->nrows, M_DEVBUF, M_WAITOK);
656 1.1 junyoung vga_raster_eraserows(scr, 0, type->nrows, *defattrp);
657 1.1 junyoung }
658 1.1 junyoung
659 1.1 junyoung *cookiep = scr;
660 1.1 junyoung *curxp = scr->cursorcol;
661 1.1 junyoung *curyp = scr->cursorrow;
662 1.1 junyoung
663 1.1 junyoung return (0);
664 1.1 junyoung }
665 1.1 junyoung
666 1.1 junyoung void
667 1.1 junyoung vga_raster_free_screen(void *v, void *cookie)
668 1.1 junyoung {
669 1.1 junyoung struct vgascreen *vs = cookie;
670 1.1 junyoung struct vga_config *vc = vs->cfg;
671 1.1 junyoung
672 1.1 junyoung LIST_REMOVE(vs, next);
673 1.1 junyoung if (vs != &vga_console_screen)
674 1.1 junyoung free(vs, M_DEVBUF);
675 1.1 junyoung else
676 1.1 junyoung panic("vga_raster_free_screen: console");
677 1.1 junyoung
678 1.1 junyoung if (vc->active == vs)
679 1.1 junyoung vc->active = 0;
680 1.1 junyoung }
681 1.1 junyoung
682 1.1 junyoung int
683 1.1 junyoung vga_raster_show_screen(void *v, void *cookie, int waitok,
684 1.1 junyoung void (*cb)(void *, int, int), void *cbarg)
685 1.1 junyoung {
686 1.1 junyoung struct vgascreen *scr = cookie, *oldscr;
687 1.1 junyoung struct vga_config *vc = scr->cfg;
688 1.1 junyoung
689 1.1 junyoung oldscr = vc->active; /* can be NULL! */
690 1.1 junyoung if (scr == oldscr) {
691 1.1 junyoung return (0);
692 1.1 junyoung }
693 1.1 junyoung
694 1.1 junyoung vc->wantedscreen = cookie;
695 1.1 junyoung vc->switchcb = cb;
696 1.1 junyoung vc->switchcbarg = cbarg;
697 1.1 junyoung if (cb) {
698 1.1 junyoung callout_reset(&vc->vc_switch_callout, 0,
699 1.1 junyoung (void(*)(void *))vga_switch_screen, vc);
700 1.1 junyoung return (EAGAIN);
701 1.1 junyoung }
702 1.1 junyoung
703 1.1 junyoung vga_switch_screen(vc);
704 1.1 junyoung return (0);
705 1.1 junyoung }
706 1.1 junyoung
707 1.1 junyoung void
708 1.1 junyoung vga_switch_screen(struct vga_config *vc)
709 1.1 junyoung {
710 1.1 junyoung struct vgascreen *scr, *oldscr;
711 1.1 junyoung struct vga_handle *vh = &vc->hdl;
712 1.1 junyoung const struct wsscreen_descr *type;
713 1.1 junyoung
714 1.1 junyoung scr = vc->wantedscreen;
715 1.1 junyoung if (!scr) {
716 1.1 junyoung printf("vga_switch_screen: disappeared\n");
717 1.1 junyoung (*vc->switchcb)(vc->switchcbarg, EIO, 0);
718 1.1 junyoung return;
719 1.1 junyoung }
720 1.1 junyoung type = scr->type;
721 1.1 junyoung oldscr = vc->active; /* can be NULL! */
722 1.1 junyoung #ifdef DIAGNOSTIC
723 1.1 junyoung if (oldscr) {
724 1.1 junyoung if (!oldscr->active)
725 1.1 junyoung panic("vga_raster_show_screen: not active");
726 1.1 junyoung if (oldscr->type != vc->currenttype)
727 1.1 junyoung panic("vga_raster_show_screen: bad type");
728 1.1 junyoung }
729 1.1 junyoung #endif
730 1.1 junyoung if (scr == oldscr) {
731 1.1 junyoung return;
732 1.1 junyoung }
733 1.1 junyoung #ifdef DIAGNOSTIC
734 1.1 junyoung if (scr->active)
735 1.1 junyoung panic("vga_raster_show_screen: active");
736 1.1 junyoung #endif
737 1.1 junyoung
738 1.1 junyoung if (oldscr)
739 1.1 junyoung oldscr->active = 0;
740 1.1 junyoung
741 1.1 junyoung if (vc->currenttype != type) {
742 1.1 junyoung vga_raster_setscreentype(vc, type);
743 1.1 junyoung vc->currenttype = type;
744 1.1 junyoung }
745 1.1 junyoung
746 1.1 junyoung scr->dispoffset = scr->mindispoffset;
747 1.1 junyoung
748 1.1 junyoung if (!oldscr || (scr->dispoffset != oldscr->dispoffset)) {
749 1.1 junyoung vga_6845_write(vh, startadrh, scr->dispoffset >> 8);
750 1.1 junyoung vga_6845_write(vh, startadrl, scr->dispoffset);
751 1.1 junyoung }
752 1.1 junyoung
753 1.1 junyoung /* Clear the entire screen. */
754 1.1 junyoung vga_gdc_write(vh, mode, 0x02);
755 1.1 junyoung bus_space_set_region_4(vh->vh_memt, vh->vh_allmemh, 0, 0, 0x2000);
756 1.1 junyoung
757 1.1 junyoung scr->active = 1;
758 1.1 junyoung vga_restore_screen(scr, type, scr->mem);
759 1.1 junyoung
760 1.1 junyoung vc->active = scr;
761 1.1 junyoung
762 1.1 junyoung vga_raster_cursor(scr, scr->cursoron, scr->cursorrow, scr->cursorcol);
763 1.1 junyoung
764 1.1 junyoung vc->wantedscreen = 0;
765 1.1 junyoung if (vc->switchcb)
766 1.1 junyoung (*vc->switchcb)(vc->switchcbarg, 0, 0);
767 1.1 junyoung }
768 1.1 junyoung
769 1.1 junyoung static int
770 1.1 junyoung vga_raster_load_font(void *v, void *id, struct wsdisplay_font *data)
771 1.1 junyoung {
772 1.1 junyoung /* XXX */
773 1.1 junyoung
774 1.1 junyoung return (0);
775 1.1 junyoung }
776 1.1 junyoung
777 1.1 junyoung void
778 1.1 junyoung vga_raster_setup_font(struct vga_config *vc, struct vgascreen *scr)
779 1.1 junyoung {
780 1.1 junyoung struct vga_raster_font *vf;
781 1.1 junyoung struct wsdisplay_font *wf;
782 1.1 junyoung int cookie;
783 1.1 junyoung
784 1.1 junyoung LIST_FOREACH(vf, &vc->vc_fontlist, next) {
785 1.1 junyoung if (wsfont_matches(vf->font, 0, 0, scr->type->fontheight, 0)) {
786 1.1 junyoung LIST_INSERT_HEAD(&scr->fontset, vf, next);
787 1.1 junyoung return;
788 1.1 junyoung }
789 1.1 junyoung }
790 1.1 junyoung
791 1.1 junyoung cookie = wsfont_find(0, 0, scr->type->fontheight, 0,
792 1.1 junyoung WSDISPLAY_FONTORDER_L2R, 0);
793 1.1 junyoung if (cookie == -1)
794 1.1 junyoung return;
795 1.1 junyoung
796 1.1 junyoung if (wsfont_lock(cookie, &wf))
797 1.1 junyoung return;
798 1.1 junyoung
799 1.1 junyoung vf = malloc(sizeof(struct vga_raster_font), M_DEVBUF, M_NOWAIT);
800 1.1 junyoung if (!vf) {
801 1.1 junyoung wsfont_unlock(cookie);
802 1.1 junyoung return;
803 1.1 junyoung }
804 1.1 junyoung
805 1.1 junyoung vf->font = wf;
806 1.1 junyoung LIST_INSERT_HEAD(&scr->fontset, vf, next);
807 1.1 junyoung }
808 1.1 junyoung
809 1.1 junyoung void
810 1.1 junyoung vga_setup_regs(struct videomode *mode, struct vga_moderegs *regs)
811 1.1 junyoung {
812 1.1 junyoung int i;
813 1.1 junyoung int depth = 4; /* XXXBJY hardcoded for now */
814 1.1 junyoung int palette[16] = {
815 1.1 junyoung 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x14, 0x07,
816 1.1 junyoung 0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f
817 1.1 junyoung };
818 1.1 junyoung
819 1.1 junyoung /*
820 1.1 junyoung * Compute hsync and vsync polarity.
821 1.1 junyoung */
822 1.1 junyoung if ((mode->flags & (VID_PHSYNC | VID_NHSYNC))
823 1.1 junyoung && (mode->flags & (VID_PVSYNC | VID_NVSYNC))) {
824 1.1 junyoung regs->miscout = 0x23;
825 1.1 junyoung if (mode->flags & VID_NHSYNC)
826 1.1 junyoung regs->miscout |= 0x40;
827 1.1 junyoung if (mode->flags & VID_NVSYNC)
828 1.1 junyoung regs->miscout |= 0x80;
829 1.1 junyoung } else {
830 1.1 junyoung if (mode->flags & VID_DBLSCAN)
831 1.1 junyoung mode->vdisplay *= 2;
832 1.1 junyoung if (mode->vdisplay < 400)
833 1.1 junyoung regs->miscout = 0xa3;
834 1.1 junyoung if (mode->vdisplay < 480)
835 1.1 junyoung regs->miscout = 0x63;
836 1.1 junyoung if (mode->vdisplay < 768)
837 1.1 junyoung regs->miscout = 0xe3;
838 1.1 junyoung else
839 1.1 junyoung regs->miscout = 0x23;
840 1.1 junyoung }
841 1.1 junyoung
842 1.1 junyoung /*
843 1.1 junyoung * Time sequencer
844 1.1 junyoung */
845 1.1 junyoung if (depth == 4)
846 1.1 junyoung regs->ts[0] = 0x02;
847 1.1 junyoung else
848 1.1 junyoung regs->ts[0] = 0x00;
849 1.1 junyoung if (mode->flags & VID_CLKDIV2)
850 1.1 junyoung regs->ts[1] = 0x09;
851 1.1 junyoung else
852 1.1 junyoung regs->ts[1] = 0x01;
853 1.1 junyoung regs->ts[2] = 0x0f;
854 1.1 junyoung regs->ts[3] = 0x00;
855 1.1 junyoung if (depth < 8)
856 1.1 junyoung regs->ts[4] = 0x06;
857 1.1 junyoung else
858 1.1 junyoung regs->ts[4] = 0x0e;
859 1.1 junyoung
860 1.1 junyoung /*
861 1.1 junyoung * CRTC controller
862 1.1 junyoung */
863 1.1 junyoung regs->crtc[0] = (mode->htotal >> 3) - 5;
864 1.1 junyoung regs->crtc[1] = (mode->hdisplay >> 3) - 1;
865 1.1 junyoung regs->crtc[2] = (mode->hsync_start >> 3) - 1;
866 1.1 junyoung regs->crtc[3] = (((mode->hsync_end >> 3) - 1) & 0x1f) | 0x80;
867 1.1 junyoung regs->crtc[4] = mode->hsync_start >> 3;
868 1.1 junyoung regs->crtc[5] = ((((mode->hsync_end >> 3) - 1) & 0x20) << 2)
869 1.1 junyoung | (((mode->hsync_end >> 3)) & 0x1f);
870 1.1 junyoung regs->crtc[6] = (mode->vtotal - 2) & 0xff;
871 1.1 junyoung regs->crtc[7] = (((mode->vtotal - 2) & 0x100) >> 8)
872 1.1 junyoung | (((mode->vdisplay - 1) & 0x100) >> 7)
873 1.1 junyoung | ((mode->vsync_start & 0x100) >> 6)
874 1.1 junyoung | (((mode->vsync_start - 1) & 0x100) >> 5)
875 1.1 junyoung | 0x10
876 1.1 junyoung | (((mode->vtotal - 2) & 0x200) >> 4)
877 1.1 junyoung | (((mode->vdisplay - 1) & 0x200) >> 3)
878 1.1 junyoung | ((mode->vsync_start & 0x200) >> 2);
879 1.1 junyoung regs->crtc[8] = 0x00;
880 1.1 junyoung regs->crtc[9] = (((mode->vsync_start - 1) & 0x200) >> 4) | 0x40;
881 1.1 junyoung if (mode->flags & VID_DBLSCAN)
882 1.1 junyoung regs->crtc[9] |= 0x80;
883 1.1 junyoung regs->crtc[10] = 0x00;
884 1.1 junyoung regs->crtc[11] = 0x00;
885 1.1 junyoung regs->crtc[12] = 0x00;
886 1.1 junyoung regs->crtc[13] = 0x00;
887 1.1 junyoung regs->crtc[14] = 0x00;
888 1.1 junyoung regs->crtc[15] = 0x00;
889 1.1 junyoung regs->crtc[16] = mode->vsync_start & 0xff;
890 1.1 junyoung regs->crtc[17] = (mode->vsync_end & 0x0f) | 0x20;
891 1.1 junyoung regs->crtc[18] = (mode->vdisplay - 1) & 0xff;
892 1.1 junyoung regs->crtc[19] = mode->hdisplay >> 4; /* XXXBJY */
893 1.1 junyoung regs->crtc[20] = 0x00;
894 1.1 junyoung regs->crtc[21] = (mode->vsync_start - 1) & 0xff;
895 1.1 junyoung regs->crtc[22] = (mode->vsync_end - 1) & 0xff;
896 1.1 junyoung if (depth < 8)
897 1.1 junyoung regs->crtc[23] = 0xe3;
898 1.1 junyoung else
899 1.1 junyoung regs->crtc[23] = 0xc3;
900 1.1 junyoung regs->crtc[24] = 0xff;
901 1.1 junyoung
902 1.1 junyoung /*
903 1.1 junyoung * Graphics display controller
904 1.1 junyoung */
905 1.1 junyoung regs->gdc[0] = 0x00;
906 1.1 junyoung regs->gdc[1] = 0x00;
907 1.1 junyoung regs->gdc[2] = 0x00;
908 1.1 junyoung regs->gdc[3] = 0x00;
909 1.1 junyoung regs->gdc[4] = 0x00;
910 1.1 junyoung if (depth == 4)
911 1.1 junyoung regs->gdc[5] = 0x02;
912 1.1 junyoung else
913 1.1 junyoung regs->gdc[5] = 0x40;
914 1.1 junyoung regs->gdc[6] = 0x01;
915 1.1 junyoung regs->gdc[7] = 0x0f;
916 1.1 junyoung regs->gdc[8] = 0xff;
917 1.1 junyoung
918 1.1 junyoung /*
919 1.1 junyoung * Attribute controller
920 1.1 junyoung */
921 1.1 junyoung /* Set palette registers. */
922 1.1 junyoung for (i = 0; i < 16; i++)
923 1.1 junyoung regs->atc[i] = palette[i];
924 1.1 junyoung if (depth == 4)
925 1.1 junyoung regs->atc[16] = 0x01; /* XXXBJY was 0x81 in XFree86 */
926 1.1 junyoung else
927 1.1 junyoung regs->atc[16] = 0x41;
928 1.1 junyoung regs->atc[17] = 0x00; /* XXXBJY just a guess */
929 1.1 junyoung regs->atc[18] = 0x0f;
930 1.1 junyoung regs->atc[19] = 0x00;
931 1.1 junyoung regs->atc[20] = 0x00;
932 1.1 junyoung }
933 1.1 junyoung
934 1.1 junyoung void
935 1.1 junyoung vga_set_mode(struct vga_handle *vh, struct vga_moderegs *regs)
936 1.1 junyoung {
937 1.1 junyoung int i;
938 1.1 junyoung
939 1.1 junyoung /* Disable display. */
940 1.1 junyoung vga_ts_write(vh, mode, vga_ts_read(vh, mode) | 0x20);
941 1.1 junyoung
942 1.1 junyoung /* Write misc output register. */
943 1.1 junyoung bus_space_write_1(vh->vh_iot, vh->vh_ioh_vga, VGA_MISC_DATAW,
944 1.1 junyoung regs->miscout);
945 1.1 junyoung
946 1.1 junyoung /* Set synchronous reset. */
947 1.1 junyoung vga_ts_write(vh, syncreset, 0x01);
948 1.1 junyoung vga_ts_write(vh, mode, regs->ts[1] | 0x20);
949 1.1 junyoung for (i = 2; i < VGA_TS_NREGS; i++)
950 1.1 junyoung _vga_ts_write(vh, i, regs->ts[i]);
951 1.1 junyoung /* Clear synchronous reset. */
952 1.1 junyoung vga_ts_write(vh, syncreset, 0x03);
953 1.1 junyoung
954 1.1 junyoung /* Unprotect CRTC registers 0-7. */
955 1.1 junyoung _vga_crtc_write(vh, 17, _vga_crtc_read(vh, 17) & 0x7f);
956 1.1 junyoung /* Write CRTC registers. */
957 1.1 junyoung for (i = 0; i < VGA_CRTC_NREGS; i++)
958 1.1 junyoung _vga_crtc_write(vh, i, regs->crtc[i]);
959 1.1 junyoung
960 1.1 junyoung /* Write graphics display registers. */
961 1.1 junyoung for (i = 0; i < VGA_GDC_NREGS; i++)
962 1.1 junyoung _vga_gdc_write(vh, i, regs->gdc[i]);
963 1.1 junyoung
964 1.1 junyoung /* Write attribute controller registers. */
965 1.1 junyoung for (i = 0; i < VGA_ATC_NREGS; i++)
966 1.1 junyoung _vga_attr_write(vh, i, regs->atc[i]);
967 1.1 junyoung
968 1.1 junyoung /* Enable display. */
969 1.1 junyoung vga_ts_write(vh, mode, vga_ts_read(vh, mode) & 0xdf);
970 1.1 junyoung }
971 1.1 junyoung
972 1.1 junyoung void
973 1.1 junyoung vga_raster_cursor_init(struct vgascreen *scr, int existing)
974 1.1 junyoung {
975 1.1 junyoung struct vga_handle *vh = scr->hdl;
976 1.1 junyoung bus_space_tag_t memt;
977 1.1 junyoung bus_space_handle_t memh;
978 1.1 junyoung int off;
979 1.1 junyoung
980 1.1 junyoung if (existing) {
981 1.1 junyoung /*
982 1.1 junyoung * This is the first screen. At this point, scr->active is
983 1.1 junyoung * false, so we can't use vga_raster_cursor() to do this.
984 1.1 junyoung */
985 1.1 junyoung memt = vh->vh_memt;
986 1.1 junyoung memh = vh->vh_memh;
987 1.1 junyoung off = (scr->cursorrow * scr->type->ncols + scr->cursorcol) +
988 1.1 junyoung scr->dispoffset / 8;
989 1.1 junyoung
990 1.1 junyoung scr->cursortmp = scr->mem[off];
991 1.1 junyoung vga_raster_putchar(scr, scr->cursorrow, scr->cursorcol,
992 1.1 junyoung scr->cursortmp.ch, scr->cursortmp.attr ^ 0x77);
993 1.1 junyoung } else {
994 1.1 junyoung scr->cursortmp.ch = 0;
995 1.1 junyoung scr->cursortmp.attr = 0;
996 1.1 junyoung scr->cursortmp.second = 0;
997 1.1 junyoung scr->cursortmp.enc = WSDISPLAY_FONTENC_IBM;
998 1.1 junyoung }
999 1.1 junyoung
1000 1.1 junyoung scr->cursoron = 1;
1001 1.1 junyoung }
1002 1.1 junyoung
1003 1.1 junyoung void
1004 1.1 junyoung vga_raster_cursor(void *id, int on, int row, int col)
1005 1.1 junyoung {
1006 1.1 junyoung struct vgascreen *scr = id;
1007 1.1 junyoung int off, tmp;
1008 1.1 junyoung
1009 1.1 junyoung /* Remove old cursor image */
1010 1.1 junyoung if (scr->cursoron) {
1011 1.1 junyoung off = scr->cursorrow * scr->type->ncols + scr->cursorcol;
1012 1.1 junyoung if (scr->active) {
1013 1.1 junyoung tmp = scr->encoding;
1014 1.1 junyoung scr->encoding = scr->cursortmp.enc;
1015 1.1 junyoung if (scr->cursortmp.second)
1016 1.1 junyoung vga_raster_putchar(id, scr->cursorrow,
1017 1.1 junyoung scr->cursorcol - 1, scr->cursortmp.ch,
1018 1.1 junyoung scr->cursortmp.attr);
1019 1.1 junyoung else
1020 1.1 junyoung vga_raster_putchar(id, scr->cursorrow,
1021 1.1 junyoung scr->cursorcol, scr->cursortmp.ch,
1022 1.1 junyoung scr->cursortmp.attr);
1023 1.1 junyoung scr->encoding = tmp;
1024 1.1 junyoung }
1025 1.1 junyoung }
1026 1.1 junyoung
1027 1.1 junyoung scr->cursorrow = row;
1028 1.1 junyoung scr->cursorcol = col;
1029 1.1 junyoung
1030 1.1 junyoung if ((scr->cursoron = on) == 0)
1031 1.1 junyoung return;
1032 1.1 junyoung
1033 1.1 junyoung off = scr->cursorrow * scr->type->ncols + scr->cursorcol;
1034 1.1 junyoung scr->cursortmp = scr->mem[off];
1035 1.1 junyoung if (scr->active) {
1036 1.1 junyoung tmp = scr->encoding;
1037 1.1 junyoung scr->encoding = scr->cursortmp.enc;
1038 1.1 junyoung if (scr->cursortmp.second)
1039 1.1 junyoung vga_raster_putchar(id, scr->cursorrow,
1040 1.1 junyoung scr->cursorcol - 1, scr->cursortmp.ch,
1041 1.1 junyoung scr->cursortmp.attr ^ 0x77);
1042 1.1 junyoung else
1043 1.1 junyoung vga_raster_putchar(id, scr->cursorrow,
1044 1.1 junyoung scr->cursorcol, scr->cursortmp.ch,
1045 1.1 junyoung scr->cursortmp.attr ^ 0x77);
1046 1.1 junyoung scr->encoding = tmp;
1047 1.1 junyoung }
1048 1.1 junyoung }
1049 1.1 junyoung
1050 1.1 junyoung static int
1051 1.1 junyoung vga_raster_mapchar(void *id, int uni, u_int *index)
1052 1.1 junyoung {
1053 1.1 junyoung struct vgascreen *scr = id;
1054 1.1 junyoung
1055 1.1 junyoung if (scr->encoding == WSDISPLAY_FONTENC_IBM)
1056 1.1 junyoung return pcdisplay_mapchar(id, uni, index);
1057 1.1 junyoung else {
1058 1.1 junyoung *index = uni;
1059 1.1 junyoung return 5;
1060 1.1 junyoung }
1061 1.1 junyoung }
1062 1.1 junyoung
1063 1.1 junyoung void
1064 1.1 junyoung vga_raster_putchar(void *id, int row, int col, u_int c, long attr)
1065 1.1 junyoung {
1066 1.1 junyoung struct vgascreen *scr = id;
1067 1.1 junyoung int off;
1068 1.1 junyoung struct vga_raster_font *fs;
1069 1.1 junyoung u_int tmp_ch;
1070 1.1 junyoung
1071 1.1 junyoung off = row * scr->type->ncols + col;
1072 1.1 junyoung
1073 1.1 junyoung LIST_FOREACH(fs, &scr->fontset, next) {
1074 1.1 junyoung if ((scr->encoding == fs->font->encoding) &&
1075 1.1 junyoung (c >= fs->font->firstchar) &&
1076 1.1 junyoung (c < fs->font->firstchar + fs->font->numchars) &&
1077 1.1 junyoung (scr->type->fontheight == fs->font->fontheight)) {
1078 1.1 junyoung if (scr->active) {
1079 1.1 junyoung tmp_ch = c - fs->font->firstchar;
1080 1.1 junyoung _vga_raster_putchar(scr, row, col, tmp_ch,
1081 1.1 junyoung attr, fs);
1082 1.1 junyoung }
1083 1.1 junyoung
1084 1.1 junyoung scr->mem[off].ch = c;
1085 1.1 junyoung scr->mem[off].attr = attr;
1086 1.1 junyoung scr->mem[off].second = 0;
1087 1.1 junyoung scr->mem[off].enc = fs->font->encoding;
1088 1.1 junyoung
1089 1.1 junyoung if (fs->font->stride == 2) {
1090 1.1 junyoung scr->mem[off + 1].ch = c;
1091 1.1 junyoung scr->mem[off + 1].attr = attr;
1092 1.1 junyoung scr->mem[off + 1].second = 1;
1093 1.1 junyoung scr->mem[off + 1].enc = fs->font->encoding;
1094 1.1 junyoung }
1095 1.1 junyoung
1096 1.1 junyoung return;
1097 1.1 junyoung }
1098 1.1 junyoung }
1099 1.1 junyoung
1100 1.1 junyoung /*
1101 1.1 junyoung * No match found.
1102 1.1 junyoung */
1103 1.1 junyoung if (scr->active)
1104 1.1 junyoung /* Put a single width space character no matter what the
1105 1.1 junyoung actual width of the character is. */
1106 1.1 junyoung _vga_raster_putchar(scr, row, col, 0x20, attr,
1107 1.1 junyoung &vga_console_fontset_ascii);
1108 1.1 junyoung scr->mem[off].ch = c;
1109 1.1 junyoung scr->mem[off].attr = attr;
1110 1.1 junyoung scr->mem[off].second = 0;
1111 1.1 junyoung scr->mem[off].enc = WSDISPLAY_FONTENC_IBM;
1112 1.1 junyoung }
1113 1.1 junyoung
1114 1.1 junyoung static void
1115 1.1 junyoung _vga_raster_putchar(void *id, int row, int col, u_int c, long attr,
1116 1.1 junyoung struct vga_raster_font *fs)
1117 1.1 junyoung {
1118 1.1 junyoung struct vgascreen *scr = id;
1119 1.1 junyoung struct vga_handle *vh = scr->hdl;
1120 1.1 junyoung bus_space_tag_t memt = vh->vh_memt;
1121 1.1 junyoung bus_space_handle_t memh = vh->vh_memh;
1122 1.1 junyoung int i;
1123 1.1 junyoung int rasoff, rasoff2;
1124 1.1 junyoung int fheight = scr->type->fontheight;
1125 1.1 junyoung volatile u_int8_t dummy, pattern;
1126 1.1 junyoung u_int8_t fgcolor, bgcolor;
1127 1.1 junyoung
1128 1.1 junyoung rasoff = scr->dispoffset + row * scr->type->ncols * fheight + col;
1129 1.1 junyoung rasoff2 = rasoff;
1130 1.1 junyoung
1131 1.1 junyoung #if 0
1132 1.1 junyoung bgcolor = bgansitopc[attr >> 4];
1133 1.1 junyoung fgcolor = fgansitopc[attr & 0x0f];
1134 1.1 junyoung #else
1135 1.1 junyoung bgcolor = ((attr >> 4) & 0x0f);
1136 1.1 junyoung fgcolor = attr & 0x0f;
1137 1.1 junyoung #endif
1138 1.1 junyoung
1139 1.1 junyoung if (fs->font->stride == 1) {
1140 1.1 junyoung /* Paint background. */
1141 1.1 junyoung vga_gdc_write(vh, mode, 0x02);
1142 1.1 junyoung for (i = 0; i < fheight; i++) {
1143 1.1 junyoung bus_space_write_1(memt, memh, rasoff, bgcolor);
1144 1.1 junyoung rasoff += scr->type->ncols;
1145 1.1 junyoung }
1146 1.1 junyoung
1147 1.1 junyoung /* Draw a single width character. */
1148 1.1 junyoung vga_gdc_write(vh, mode, 0x03);
1149 1.1 junyoung vga_gdc_write(vh, setres, fgcolor);
1150 1.1 junyoung for (i = 0; i < fheight; i++) {
1151 1.1 junyoung pattern = ((u_int8_t *)fs->font->data)[c * fheight + i];
1152 1.1 junyoung /* When pattern is 0, skip output for speed-up. */
1153 1.1 junyoung if (pattern != 0) {
1154 1.1 junyoung dummy = bus_space_read_1(memt, memh, rasoff2);
1155 1.1 junyoung bus_space_write_1(memt, memh, rasoff2, pattern);
1156 1.1 junyoung }
1157 1.1 junyoung rasoff2 += scr->type->ncols;
1158 1.1 junyoung }
1159 1.1 junyoung } else if (fs->font->stride == 2) {
1160 1.1 junyoung /* Paint background. */
1161 1.1 junyoung vga_gdc_write(vh, mode, 0x02);
1162 1.1 junyoung for (i = 0; i < fheight; i++) {
1163 1.1 junyoung bus_space_write_1(memt, memh, rasoff, bgcolor);
1164 1.1 junyoung bus_space_write_1(memt, memh, rasoff + 1, bgcolor);
1165 1.1 junyoung rasoff += scr->type->ncols;
1166 1.1 junyoung }
1167 1.1 junyoung
1168 1.1 junyoung /* Draw a double width character. */
1169 1.1 junyoung vga_gdc_write(vh, mode, 0x03);
1170 1.1 junyoung vga_gdc_write(vh, setres, fgcolor);
1171 1.1 junyoung for (i = 0; i < fheight; i++) {
1172 1.1 junyoung pattern = ((u_int8_t *)fs->font->data)
1173 1.1 junyoung [(c * fheight + i) * 2];
1174 1.1 junyoung if (pattern != 0) {
1175 1.1 junyoung dummy = bus_space_read_1(memt, memh, rasoff2);
1176 1.1 junyoung bus_space_write_1(memt, memh, rasoff2, pattern);
1177 1.1 junyoung }
1178 1.1 junyoung pattern = ((u_int8_t *)fs->font->data)
1179 1.1 junyoung [(c * fheight + i) * 2 + 1];
1180 1.1 junyoung if (pattern != 0) {
1181 1.1 junyoung rasoff2++;
1182 1.1 junyoung dummy = bus_space_read_1(memt, memh, rasoff2);
1183 1.1 junyoung bus_space_write_1(memt, memh, rasoff2, pattern);
1184 1.1 junyoung rasoff2--;
1185 1.1 junyoung }
1186 1.1 junyoung rasoff2 += scr->type->ncols;
1187 1.1 junyoung }
1188 1.1 junyoung }
1189 1.1 junyoung }
1190 1.1 junyoung
1191 1.1 junyoung void
1192 1.1 junyoung vga_raster_copycols(void *id, int row, int srccol, int dstcol, int ncols)
1193 1.1 junyoung {
1194 1.1 junyoung struct vgascreen *scr = id;
1195 1.1 junyoung struct vga_handle *vh = scr->hdl;
1196 1.1 junyoung bus_space_tag_t memt = vh->vh_memt;
1197 1.1 junyoung bus_space_handle_t memh = vh->vh_memh;
1198 1.1 junyoung bus_size_t srcoff, dstoff;
1199 1.1 junyoung bus_size_t rassrcoff, rasdstoff;
1200 1.1 junyoung int i;
1201 1.1 junyoung int fheight = scr->type->fontheight;
1202 1.1 junyoung
1203 1.1 junyoung srcoff = row * scr->type->ncols + srccol;
1204 1.1 junyoung dstoff = row * scr->type->ncols + dstcol;
1205 1.1 junyoung rassrcoff = scr->dispoffset + row * scr->type->ncols * fheight + srccol;
1206 1.1 junyoung rasdstoff = scr->dispoffset + row * scr->type->ncols * fheight + dstcol;
1207 1.1 junyoung
1208 1.1 junyoung memcpy(&scr->mem[dstoff], &scr->mem[srcoff],
1209 1.1 junyoung ncols * sizeof(struct vga_scrmem));
1210 1.1 junyoung
1211 1.1 junyoung vga_gdc_write(vh, mode, 0x01);
1212 1.1 junyoung if (scr->active) {
1213 1.1 junyoung for (i = 0; i < fheight; i++) {
1214 1.1 junyoung bus_space_copy_region_1(memt, memh,
1215 1.1 junyoung rassrcoff + i * scr->type->ncols, memh,
1216 1.1 junyoung rasdstoff + i * scr->type->ncols, ncols);
1217 1.1 junyoung }
1218 1.1 junyoung }
1219 1.1 junyoung }
1220 1.1 junyoung
1221 1.1 junyoung void
1222 1.1 junyoung vga_raster_erasecols(void *id, int row, int startcol, int ncols, long fillattr)
1223 1.1 junyoung {
1224 1.1 junyoung struct vgascreen *scr = id;
1225 1.1 junyoung int i;
1226 1.1 junyoung
1227 1.1 junyoung if (scr->active == 0)
1228 1.1 junyoung return;
1229 1.1 junyoung
1230 1.1 junyoung for (i = startcol; i < startcol + ncols; i++)
1231 1.1 junyoung vga_raster_putchar(id, row, i, ' ', fillattr);
1232 1.1 junyoung }
1233 1.1 junyoung
1234 1.1 junyoung void
1235 1.1 junyoung vga_raster_copyrows(void *id, int srcrow, int dstrow, int nrows)
1236 1.1 junyoung {
1237 1.1 junyoung struct vgascreen *scr = id;
1238 1.1 junyoung struct vga_handle *vh = scr->hdl;
1239 1.1 junyoung bus_space_tag_t memt = vh->vh_memt;
1240 1.1 junyoung bus_space_handle_t memh = vh->vh_memh;
1241 1.1 junyoung int ncols;
1242 1.1 junyoung bus_size_t srcoff, dstoff;
1243 1.1 junyoung bus_size_t rassrcoff, rasdstoff;
1244 1.1 junyoung int fheight;
1245 1.1 junyoung
1246 1.1 junyoung ncols = scr->type->ncols;
1247 1.1 junyoung fheight = scr->type->fontheight;
1248 1.1 junyoung
1249 1.1 junyoung srcoff = srcrow * ncols;
1250 1.1 junyoung dstoff = dstrow * ncols;
1251 1.1 junyoung rassrcoff = srcoff * fheight;
1252 1.1 junyoung rasdstoff = dstoff * fheight;
1253 1.1 junyoung
1254 1.1 junyoung if (scr->active) {
1255 1.1 junyoung vga_gdc_write(vh, mode, 0x01);
1256 1.1 junyoung if (dstrow == 0 && (srcrow + nrows == scr->type->nrows)) {
1257 1.1 junyoung int cursoron = scr->cursoron;
1258 1.1 junyoung
1259 1.1 junyoung if (cursoron)
1260 1.1 junyoung /* Disable cursor. */
1261 1.1 junyoung vga_raster_cursor(scr, 0,
1262 1.1 junyoung scr->cursorrow, scr->cursorcol);
1263 1.1 junyoung
1264 1.1 junyoung /* scroll up whole screen */
1265 1.1 junyoung if ((scr->dispoffset + srcrow * ncols * fheight)
1266 1.1 junyoung <= scr->maxdispoffset)
1267 1.1 junyoung scr->dispoffset += srcrow * ncols * fheight;
1268 1.1 junyoung else {
1269 1.1 junyoung bus_space_copy_region_1(memt, memh,
1270 1.1 junyoung scr->dispoffset + rassrcoff,
1271 1.1 junyoung memh, scr->mindispoffset,
1272 1.1 junyoung nrows * ncols * fheight);
1273 1.1 junyoung scr->dispoffset = scr->mindispoffset;
1274 1.1 junyoung }
1275 1.1 junyoung vga_6845_write(vh, startadrh, scr->dispoffset >> 8);
1276 1.1 junyoung vga_6845_write(vh, startadrl, scr->dispoffset);
1277 1.1 junyoung
1278 1.1 junyoung if (cursoron)
1279 1.1 junyoung /* Enable cursor. */
1280 1.1 junyoung vga_raster_cursor(scr, 1, scr->cursorrow,
1281 1.1 junyoung scr->cursorcol);
1282 1.1 junyoung } else
1283 1.1 junyoung bus_space_copy_region_1(memt, memh,
1284 1.1 junyoung scr->dispoffset + rassrcoff, memh,
1285 1.1 junyoung scr->dispoffset + rasdstoff,
1286 1.1 junyoung nrows * ncols * fheight);
1287 1.1 junyoung }
1288 1.1 junyoung memcpy(&scr->mem[dstoff], &scr->mem[srcoff],
1289 1.1 junyoung nrows * ncols * sizeof(struct vga_scrmem));
1290 1.1 junyoung }
1291 1.1 junyoung
1292 1.1 junyoung void
1293 1.1 junyoung vga_raster_eraserows(void *id, int startrow, int nrows, long fillattr)
1294 1.1 junyoung {
1295 1.1 junyoung struct vgascreen *scr = id;
1296 1.1 junyoung struct vga_handle *vh = scr->hdl;
1297 1.1 junyoung bus_space_tag_t memt = vh->vh_memt;
1298 1.1 junyoung bus_space_handle_t memh = vh->vh_memh;
1299 1.1 junyoung bus_size_t off, count;
1300 1.1 junyoung bus_size_t rasoff, rascount;
1301 1.1 junyoung int i;
1302 1.1 junyoung
1303 1.1 junyoung off = startrow * scr->type->ncols;
1304 1.1 junyoung count = nrows * scr->type->ncols;
1305 1.1 junyoung rasoff = off * scr->type->fontheight;
1306 1.1 junyoung rascount = count * scr->type->fontheight;
1307 1.1 junyoung
1308 1.1 junyoung if (scr->active) {
1309 1.1 junyoung /* Paint background. */
1310 1.1 junyoung vga_gdc_write(vh, mode, 0x02);
1311 1.1 junyoung if (scr->type->ncols % 4 == 0)
1312 1.1 junyoung /* We can speed up I/O */
1313 1.1 junyoung for (i = rasoff; i < rasoff + rascount; i += 4)
1314 1.1 junyoung bus_space_write_4(memt, memh,
1315 1.1 junyoung scr->dispoffset + i, fillattr >> 4);
1316 1.1 junyoung else
1317 1.1 junyoung for (i = rasoff; i < rasoff + rascount; i += 2)
1318 1.1 junyoung bus_space_write_2(memt, memh,
1319 1.1 junyoung scr->dispoffset + i, fillattr >> 4);
1320 1.1 junyoung }
1321 1.1 junyoung for (i = 0; i < count; i++) {
1322 1.1 junyoung scr->mem[off + i].ch = ' ';
1323 1.1 junyoung scr->mem[off + i].attr = fillattr;
1324 1.1 junyoung scr->mem[off + i].second = 0;
1325 1.1 junyoung scr->mem[off + i].enc = WSDISPLAY_FONTENC_IBM;
1326 1.1 junyoung }
1327 1.1 junyoung }
1328 1.1 junyoung
1329 1.1 junyoung static int
1330 1.1 junyoung vga_raster_allocattr(void *id, int fg, int bg, int flags, long *attrp)
1331 1.1 junyoung {
1332 1.1 junyoung struct vgascreen *scr = id;
1333 1.1 junyoung struct vga_config *vc = scr->cfg;
1334 1.1 junyoung
1335 1.1 junyoung if (vc->hdl.vh_mono) {
1336 1.1 junyoung if (flags & WSATTR_WSCOLORS)
1337 1.1 junyoung return (EINVAL);
1338 1.1 junyoung if (flags & WSATTR_REVERSE)
1339 1.1 junyoung *attrp = 0x70;
1340 1.1 junyoung else
1341 1.1 junyoung *attrp = 0x07;
1342 1.1 junyoung if (flags & WSATTR_UNDERLINE)
1343 1.1 junyoung *attrp |= FG_UNDERLINE;
1344 1.1 junyoung if (flags & WSATTR_HILIT)
1345 1.1 junyoung *attrp |= FG_INTENSE;
1346 1.1 junyoung } else {
1347 1.1 junyoung if (flags & (WSATTR_UNDERLINE | WSATTR_REVERSE))
1348 1.1 junyoung return (EINVAL);
1349 1.1 junyoung if (flags & WSATTR_WSCOLORS)
1350 1.1 junyoung *attrp = fgansitopc[fg] | bgansitopc[bg];
1351 1.1 junyoung else
1352 1.1 junyoung *attrp = 7;
1353 1.1 junyoung if (flags & WSATTR_HILIT)
1354 1.1 junyoung *attrp += 8;
1355 1.1 junyoung }
1356 1.1 junyoung if (flags & WSATTR_BLINK)
1357 1.1 junyoung *attrp |= FG_BLINK;
1358 1.1 junyoung return (0);
1359 1.1 junyoung }
1360 1.1 junyoung
1361 1.1 junyoung void
1362 1.1 junyoung vga_restore_screen(struct vgascreen *scr,
1363 1.1 junyoung const struct wsscreen_descr *type, struct vga_scrmem *mem)
1364 1.1 junyoung {
1365 1.1 junyoung int i, j, off, tmp;
1366 1.1 junyoung
1367 1.1 junyoung tmp = scr->encoding;
1368 1.1 junyoung for (i = 0; i < type->nrows; i++) {
1369 1.1 junyoung for (j = 0; j < type->ncols; j++) {
1370 1.1 junyoung off = i * type->ncols + j;
1371 1.1 junyoung if (mem[off].second != 1) {
1372 1.1 junyoung scr->encoding = mem[off].enc;
1373 1.1 junyoung vga_raster_putchar(scr, i, j, mem[off].ch,
1374 1.1 junyoung mem[off].attr);
1375 1.1 junyoung }
1376 1.1 junyoung }
1377 1.1 junyoung }
1378 1.1 junyoung scr->encoding = tmp;
1379 1.1 junyoung }
1380 1.1 junyoung
1381 1.1 junyoung void
1382 1.1 junyoung vga_raster_setscreentype(struct vga_config *vc,
1383 1.1 junyoung const struct wsscreen_descr *type)
1384 1.1 junyoung {
1385 1.2 junyoung struct vga_handle *vh = &vc->hdl;
1386 1.1 junyoung struct vga_moderegs moderegs;
1387 1.1 junyoung
1388 1.2 junyoung vga_setup_regs((struct videomode *)type->modecookie, &moderegs);
1389 1.2 junyoung vga_set_mode(vh, &moderegs);
1390 1.1 junyoung }
1391