vga.c revision 1.45 1 1.45 junyoung /* $NetBSD: vga.c,v 1.45 2001/12/13 08:31:39 junyoung Exp $ */
2 1.1 drochner
3 1.1 drochner /*
4 1.1 drochner * Copyright (c) 1995, 1996 Carnegie-Mellon University.
5 1.1 drochner * All rights reserved.
6 1.1 drochner *
7 1.1 drochner * Author: Chris G. Demetriou
8 1.1 drochner *
9 1.1 drochner * Permission to use, copy, modify and distribute this software and
10 1.1 drochner * its documentation is hereby granted, provided that both the copyright
11 1.1 drochner * notice and this permission notice appear in all copies of the
12 1.1 drochner * software, derivative works or modified versions, and any portions
13 1.1 drochner * thereof, and that both notices appear in supporting documentation.
14 1.1 drochner *
15 1.1 drochner * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
16 1.1 drochner * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
17 1.1 drochner * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
18 1.1 drochner *
19 1.1 drochner * Carnegie Mellon requests users of this software to return to
20 1.1 drochner *
21 1.1 drochner * Software Distribution Coordinator or Software.Distribution (at) CS.CMU.EDU
22 1.1 drochner * School of Computer Science
23 1.1 drochner * Carnegie Mellon University
24 1.1 drochner * Pittsburgh PA 15213-3890
25 1.1 drochner *
26 1.1 drochner * any improvements or extensions that they make and grant Carnegie the
27 1.1 drochner * rights to redistribute these changes.
28 1.1 drochner */
29 1.43 lukem
30 1.43 lukem #include <sys/cdefs.h>
31 1.45 junyoung __KERNEL_RCSID(0, "$NetBSD: vga.c,v 1.45 2001/12/13 08:31:39 junyoung Exp $");
32 1.1 drochner
33 1.1 drochner #include <sys/param.h>
34 1.1 drochner #include <sys/systm.h>
35 1.26 thorpej #include <sys/callout.h>
36 1.1 drochner #include <sys/kernel.h>
37 1.1 drochner #include <sys/device.h>
38 1.1 drochner #include <sys/malloc.h>
39 1.1 drochner #include <sys/queue.h>
40 1.1 drochner #include <machine/bus.h>
41 1.1 drochner
42 1.4 drochner #include <dev/ic/mc6845reg.h>
43 1.4 drochner #include <dev/ic/pcdisplayvar.h>
44 1.4 drochner #include <dev/ic/vgareg.h>
45 1.4 drochner #include <dev/ic/vgavar.h>
46 1.4 drochner
47 1.1 drochner #include <dev/wscons/wsdisplayvar.h>
48 1.1 drochner #include <dev/wscons/wsconsio.h>
49 1.14 drochner #include <dev/wscons/unicode.h>
50 1.37 drochner #include <dev/wsfont/wsfont.h>
51 1.1 drochner
52 1.3 drochner #include <dev/ic/pcdisplay.h>
53 1.1 drochner
54 1.16 drochner #include "opt_wsdisplay_compat.h" /* for WSCONS_SUPPORT_PCVTFONTS */
55 1.16 drochner
56 1.37 drochner static struct wsdisplay_font _vga_builtinfont = {
57 1.12 drochner "builtin",
58 1.37 drochner 0, 256,
59 1.12 drochner WSDISPLAY_FONTENC_IBM,
60 1.37 drochner 8, 16, 1,
61 1.37 drochner WSDISPLAY_FONTORDER_L2R, 0,
62 1.12 drochner 0
63 1.12 drochner };
64 1.12 drochner
65 1.37 drochner struct egavga_font {
66 1.37 drochner struct wsdisplay_font *wsfont;
67 1.37 drochner int cookie; /* wsfont handle */
68 1.37 drochner int slot; /* in adapter RAM */
69 1.37 drochner int usecount;
70 1.37 drochner TAILQ_ENTRY(egavga_font) next; /* LRU queue */
71 1.37 drochner };
72 1.37 drochner
73 1.37 drochner static struct egavga_font vga_builtinfont = {
74 1.37 drochner &_vga_builtinfont,
75 1.37 drochner 0, 0
76 1.37 drochner };
77 1.37 drochner
78 1.38 drochner #ifdef VGA_CONSOLE_SCREENTYPE
79 1.38 drochner static struct egavga_font vga_consolefont;
80 1.38 drochner #endif
81 1.38 drochner
82 1.1 drochner struct vgascreen {
83 1.4 drochner struct pcdisplayscreen pcs;
84 1.4 drochner
85 1.1 drochner LIST_ENTRY(vgascreen) next;
86 1.1 drochner
87 1.1 drochner struct vga_config *cfg;
88 1.1 drochner
89 1.1 drochner /* videostate */
90 1.37 drochner struct egavga_font *fontset1, *fontset2;
91 1.1 drochner /* font data */
92 1.1 drochner /* palette */
93 1.8 drochner
94 1.8 drochner int mindispoffset, maxdispoffset;
95 1.1 drochner };
96 1.1 drochner
97 1.1 drochner static int vgaconsole, vga_console_type, vga_console_attached;
98 1.1 drochner static struct vgascreen vga_console_screen;
99 1.1 drochner static struct vga_config vga_console_vc;
100 1.1 drochner
101 1.37 drochner struct egavga_font *egavga_getfont(struct vga_config *, struct vgascreen *,
102 1.37 drochner char *, int);
103 1.37 drochner void egavga_unreffont(struct vga_config *, struct egavga_font *);
104 1.37 drochner
105 1.45 junyoung int vga_selectfont(struct vga_config *, struct vgascreen *, char *, char *);
106 1.45 junyoung void vga_init_screen(struct vga_config *, struct vgascreen *,
107 1.45 junyoung const struct wsscreen_descr *, int, long *);
108 1.45 junyoung void vga_init(struct vga_config *, bus_space_tag_t, bus_space_tag_t);
109 1.45 junyoung static void vga_setfont(struct vga_config *, struct vgascreen *);
110 1.45 junyoung
111 1.45 junyoung static int vga_mapchar(void *, int, unsigned int *);
112 1.45 junyoung static int vga_alloc_attr(void *, int, int, int, long *);
113 1.45 junyoung static void vga_copyrows(void *, int, int, int);
114 1.1 drochner
115 1.1 drochner const struct wsdisplay_emulops vga_emulops = {
116 1.4 drochner pcdisplay_cursor,
117 1.12 drochner vga_mapchar,
118 1.6 drochner pcdisplay_putchar,
119 1.4 drochner pcdisplay_copycols,
120 1.4 drochner pcdisplay_erasecols,
121 1.8 drochner vga_copyrows,
122 1.4 drochner pcdisplay_eraserows,
123 1.3 drochner vga_alloc_attr
124 1.3 drochner };
125 1.3 drochner
126 1.3 drochner /*
127 1.3 drochner * translate WS(=ANSI) color codes to standard pc ones
128 1.3 drochner */
129 1.35 jdolecek static const unsigned char fgansitopc[] = {
130 1.3 drochner #ifdef __alpha__
131 1.3 drochner /*
132 1.3 drochner * XXX DEC HAS SWITCHED THE CODES FOR BLUE AND RED!!!
133 1.3 drochner * XXX We should probably not bother with this
134 1.3 drochner * XXX (reinitialize the palette registers).
135 1.3 drochner */
136 1.3 drochner FG_BLACK, FG_BLUE, FG_GREEN, FG_CYAN, FG_RED,
137 1.3 drochner FG_MAGENTA, FG_BROWN, FG_LIGHTGREY
138 1.3 drochner #else
139 1.3 drochner FG_BLACK, FG_RED, FG_GREEN, FG_BROWN, FG_BLUE,
140 1.3 drochner FG_MAGENTA, FG_CYAN, FG_LIGHTGREY
141 1.3 drochner #endif
142 1.3 drochner }, bgansitopc[] = {
143 1.3 drochner #ifdef __alpha__
144 1.3 drochner BG_BLACK, BG_BLUE, BG_GREEN, BG_CYAN, BG_RED,
145 1.3 drochner BG_MAGENTA, BG_BROWN, BG_LIGHTGREY
146 1.3 drochner #else
147 1.3 drochner BG_BLACK, BG_RED, BG_GREEN, BG_BROWN, BG_BLUE,
148 1.3 drochner BG_MAGENTA, BG_CYAN, BG_LIGHTGREY
149 1.3 drochner #endif
150 1.1 drochner };
151 1.1 drochner
152 1.33 lukem const struct wsscreen_descr vga_25lscreen = {
153 1.1 drochner "80x25", 80, 25,
154 1.1 drochner &vga_emulops,
155 1.3 drochner 8, 16,
156 1.3 drochner WSSCREEN_WSCOLORS | WSSCREEN_HILIT | WSSCREEN_BLINK
157 1.33 lukem }, vga_25lscreen_mono = {
158 1.3 drochner "80x25", 80, 25,
159 1.3 drochner &vga_emulops,
160 1.3 drochner 8, 16,
161 1.3 drochner WSSCREEN_HILIT | WSSCREEN_UNDERLINE | WSSCREEN_BLINK | WSSCREEN_REVERSE
162 1.33 lukem }, vga_25lscreen_bf = {
163 1.12 drochner "80x25bf", 80, 25,
164 1.12 drochner &vga_emulops,
165 1.12 drochner 8, 16,
166 1.12 drochner WSSCREEN_WSCOLORS | WSSCREEN_BLINK
167 1.17 drochner }, vga_40lscreen = {
168 1.17 drochner "80x40", 80, 40,
169 1.17 drochner &vga_emulops,
170 1.17 drochner 8, 10,
171 1.17 drochner WSSCREEN_WSCOLORS | WSSCREEN_HILIT | WSSCREEN_BLINK
172 1.17 drochner }, vga_40lscreen_mono = {
173 1.17 drochner "80x40", 80, 40,
174 1.17 drochner &vga_emulops,
175 1.17 drochner 8, 10,
176 1.17 drochner WSSCREEN_HILIT | WSSCREEN_UNDERLINE | WSSCREEN_BLINK | WSSCREEN_REVERSE
177 1.17 drochner }, vga_40lscreen_bf = {
178 1.17 drochner "80x40bf", 80, 40,
179 1.17 drochner &vga_emulops,
180 1.17 drochner 8, 10,
181 1.17 drochner WSSCREEN_WSCOLORS | WSSCREEN_BLINK
182 1.12 drochner }, vga_50lscreen = {
183 1.1 drochner "80x50", 80, 50,
184 1.1 drochner &vga_emulops,
185 1.3 drochner 8, 8,
186 1.3 drochner WSSCREEN_WSCOLORS | WSSCREEN_HILIT | WSSCREEN_BLINK
187 1.3 drochner }, vga_50lscreen_mono = {
188 1.3 drochner "80x50", 80, 50,
189 1.3 drochner &vga_emulops,
190 1.3 drochner 8, 8,
191 1.3 drochner WSSCREEN_HILIT | WSSCREEN_UNDERLINE | WSSCREEN_BLINK | WSSCREEN_REVERSE
192 1.12 drochner }, vga_50lscreen_bf = {
193 1.12 drochner "80x50bf", 80, 50,
194 1.12 drochner &vga_emulops,
195 1.12 drochner 8, 8,
196 1.12 drochner WSSCREEN_WSCOLORS | WSSCREEN_BLINK
197 1.30 drochner }, vga_24lscreen = {
198 1.30 drochner "80x24", 80, 24,
199 1.30 drochner &vga_emulops,
200 1.30 drochner 8, 16,
201 1.30 drochner WSSCREEN_WSCOLORS | WSSCREEN_HILIT | WSSCREEN_BLINK
202 1.30 drochner }, vga_24lscreen_mono = {
203 1.30 drochner "80x24", 80, 24,
204 1.30 drochner &vga_emulops,
205 1.30 drochner 8, 16,
206 1.30 drochner WSSCREEN_HILIT | WSSCREEN_UNDERLINE | WSSCREEN_BLINK | WSSCREEN_REVERSE
207 1.30 drochner }, vga_24lscreen_bf = {
208 1.30 drochner "80x24bf", 80, 24,
209 1.30 drochner &vga_emulops,
210 1.30 drochner 8, 16,
211 1.30 drochner WSSCREEN_WSCOLORS | WSSCREEN_BLINK
212 1.1 drochner };
213 1.1 drochner
214 1.12 drochner #define VGA_SCREEN_CANTWOFONTS(type) (!((type)->capabilities & WSSCREEN_HILIT))
215 1.12 drochner
216 1.2 drochner const struct wsscreen_descr *_vga_scrlist[] = {
217 1.33 lukem &vga_25lscreen,
218 1.33 lukem &vga_25lscreen_bf,
219 1.17 drochner &vga_40lscreen,
220 1.17 drochner &vga_40lscreen_bf,
221 1.1 drochner &vga_50lscreen,
222 1.12 drochner &vga_50lscreen_bf,
223 1.30 drochner &vga_24lscreen,
224 1.30 drochner &vga_24lscreen_bf,
225 1.1 drochner /* XXX other formats, graphics screen? */
226 1.3 drochner }, *_vga_scrlist_mono[] = {
227 1.33 lukem &vga_25lscreen_mono,
228 1.17 drochner &vga_40lscreen_mono,
229 1.3 drochner &vga_50lscreen_mono,
230 1.30 drochner &vga_24lscreen_mono,
231 1.3 drochner /* XXX other formats, graphics screen? */
232 1.1 drochner };
233 1.1 drochner
234 1.3 drochner const struct wsscreen_list vga_screenlist = {
235 1.3 drochner sizeof(_vga_scrlist) / sizeof(struct wsscreen_descr *),
236 1.3 drochner _vga_scrlist
237 1.3 drochner }, vga_screenlist_mono = {
238 1.3 drochner sizeof(_vga_scrlist_mono) / sizeof(struct wsscreen_descr *),
239 1.3 drochner _vga_scrlist_mono
240 1.1 drochner };
241 1.1 drochner
242 1.45 junyoung static int vga_ioctl(void *, u_long, caddr_t, int, struct proc *);
243 1.45 junyoung static paddr_t vga_mmap(void *, off_t, int);
244 1.45 junyoung static int vga_alloc_screen(void *, const struct wsscreen_descr *,
245 1.45 junyoung void **, int *, int *, long *);
246 1.45 junyoung static void vga_free_screen(void *, void *);
247 1.45 junyoung static int vga_show_screen(void *, void *, int,
248 1.45 junyoung void (*)(void *, int, int), void *);
249 1.45 junyoung static int vga_load_font(void *, void *, struct wsdisplay_font *);
250 1.1 drochner
251 1.45 junyoung void vga_doswitch(struct vga_config *);
252 1.22 drochner
253 1.1 drochner const struct wsdisplay_accessops vga_accessops = {
254 1.1 drochner vga_ioctl,
255 1.1 drochner vga_mmap,
256 1.1 drochner vga_alloc_screen,
257 1.1 drochner vga_free_screen,
258 1.1 drochner vga_show_screen,
259 1.1 drochner vga_load_font
260 1.1 drochner };
261 1.1 drochner
262 1.1 drochner /*
263 1.1 drochner * The following functions implement back-end configuration grabbing
264 1.1 drochner * and attachment.
265 1.1 drochner */
266 1.1 drochner int
267 1.45 junyoung vga_common_probe(bus_space_tag_t iot, bus_space_tag_t memt)
268 1.1 drochner {
269 1.1 drochner bus_space_handle_t ioh_vga, ioh_6845, memh;
270 1.4 drochner u_int8_t regval;
271 1.1 drochner u_int16_t vgadata;
272 1.1 drochner int gotio_vga, gotio_6845, gotmem, mono, rv;
273 1.1 drochner int dispoffset;
274 1.1 drochner
275 1.1 drochner gotio_vga = gotio_6845 = gotmem = rv = 0;
276 1.1 drochner
277 1.1 drochner if (bus_space_map(iot, 0x3c0, 0x10, 0, &ioh_vga))
278 1.1 drochner goto bad;
279 1.1 drochner gotio_vga = 1;
280 1.1 drochner
281 1.1 drochner /* read "misc output register" */
282 1.4 drochner regval = bus_space_read_1(iot, ioh_vga, 0xc);
283 1.4 drochner mono = !(regval & 1);
284 1.1 drochner
285 1.1 drochner if (bus_space_map(iot, (mono ? 0x3b0 : 0x3d0), 0x10, 0, &ioh_6845))
286 1.1 drochner goto bad;
287 1.1 drochner gotio_6845 = 1;
288 1.1 drochner
289 1.1 drochner if (bus_space_map(memt, 0xa0000, 0x20000, 0, &memh))
290 1.1 drochner goto bad;
291 1.1 drochner gotmem = 1;
292 1.1 drochner
293 1.1 drochner dispoffset = (mono ? 0x10000 : 0x18000);
294 1.1 drochner
295 1.1 drochner vgadata = bus_space_read_2(memt, memh, dispoffset);
296 1.1 drochner bus_space_write_2(memt, memh, dispoffset, 0xa55a);
297 1.4 drochner if (bus_space_read_2(memt, memh, dispoffset) != 0xa55a)
298 1.4 drochner goto bad;
299 1.1 drochner bus_space_write_2(memt, memh, dispoffset, vgadata);
300 1.1 drochner
301 1.4 drochner /*
302 1.4 drochner * check if this is really a VGA
303 1.4 drochner * (try to write "Color Select" register as XFree86 does)
304 1.4 drochner * XXX check before if at least EGA?
305 1.4 drochner */
306 1.4 drochner /* reset state */
307 1.4 drochner (void) bus_space_read_1(iot, ioh_6845, 10);
308 1.4 drochner bus_space_write_1(iot, ioh_vga, VGA_ATC_INDEX,
309 1.4 drochner 20 | 0x20); /* colselect | enable */
310 1.4 drochner regval = bus_space_read_1(iot, ioh_vga, VGA_ATC_DATAR);
311 1.4 drochner /* toggle the implemented bits */
312 1.4 drochner bus_space_write_1(iot, ioh_vga, VGA_ATC_DATAW, regval ^ 0x0f);
313 1.4 drochner bus_space_write_1(iot, ioh_vga, VGA_ATC_INDEX,
314 1.4 drochner 20 | 0x20);
315 1.4 drochner /* read back */
316 1.4 drochner if (bus_space_read_1(iot, ioh_vga, VGA_ATC_DATAR) != (regval ^ 0x0f))
317 1.4 drochner goto bad;
318 1.4 drochner /* restore contents */
319 1.4 drochner bus_space_write_1(iot, ioh_vga, VGA_ATC_DATAW, regval);
320 1.4 drochner
321 1.4 drochner rv = 1;
322 1.1 drochner bad:
323 1.1 drochner if (gotio_vga)
324 1.1 drochner bus_space_unmap(iot, ioh_vga, 0x10);
325 1.1 drochner if (gotio_6845)
326 1.1 drochner bus_space_unmap(iot, ioh_6845, 0x10);
327 1.1 drochner if (gotmem)
328 1.1 drochner bus_space_unmap(memt, memh, 0x20000);
329 1.1 drochner
330 1.1 drochner return (rv);
331 1.1 drochner }
332 1.1 drochner
333 1.12 drochner /*
334 1.15 drochner * We want at least ASCII 32..127 be present in the
335 1.15 drochner * first font slot.
336 1.12 drochner */
337 1.12 drochner #define vga_valid_primary_font(f) \
338 1.37 drochner (f->wsfont->encoding == WSDISPLAY_FONTENC_IBM || \
339 1.37 drochner f->wsfont->encoding == WSDISPLAY_FONTENC_ISO || \
340 1.37 drochner f->wsfont->encoding == WSDISPLAY_FONTENC_ISO7)
341 1.37 drochner
342 1.37 drochner struct egavga_font *
343 1.45 junyoung egavga_getfont(struct vga_config *vc, struct vgascreen *scr, char *name,
344 1.45 junyoung int primary)
345 1.37 drochner {
346 1.37 drochner struct egavga_font *f;
347 1.37 drochner int cookie;
348 1.37 drochner struct wsdisplay_font *wf;
349 1.37 drochner
350 1.37 drochner TAILQ_FOREACH(f, &vc->vc_fontlist, next) {
351 1.37 drochner if (wsfont_matches(f->wsfont, name,
352 1.37 drochner 8, scr->pcs.type->fontheight, 0) &&
353 1.37 drochner (!primary || vga_valid_primary_font(f))) {
354 1.37 drochner #ifdef VGAFONTDEBUG
355 1.37 drochner if (scr != &vga_console_screen || vga_console_attached)
356 1.37 drochner printf("vga_getfont: %s already present\n",
357 1.38 drochner name ? name : "<default>");
358 1.37 drochner #endif
359 1.37 drochner goto found;
360 1.37 drochner }
361 1.37 drochner }
362 1.37 drochner
363 1.37 drochner cookie = wsfont_find(name, 8, scr->pcs.type->fontheight, 0);
364 1.37 drochner /* XXX obey "primary" */
365 1.37 drochner if (cookie == -1) {
366 1.37 drochner #ifdef VGAFONTDEBUG
367 1.37 drochner if (scr != &vga_console_screen || vga_console_attached)
368 1.37 drochner printf("vga_getfont: %s not found\n", name);
369 1.37 drochner #endif
370 1.37 drochner return (0);
371 1.37 drochner }
372 1.37 drochner
373 1.37 drochner if (wsfont_lock(cookie, &wf, WSDISPLAY_FONTORDER_L2R, 0) < 0)
374 1.37 drochner return (0);
375 1.37 drochner
376 1.38 drochner #ifdef VGA_CONSOLE_SCREENTYPE
377 1.38 drochner if (scr == &vga_console_screen)
378 1.38 drochner f = &vga_consolefont;
379 1.38 drochner else
380 1.38 drochner #endif
381 1.37 drochner f = malloc(sizeof(struct egavga_font), M_DEVBUF, M_NOWAIT);
382 1.37 drochner if (!f) {
383 1.37 drochner wsfont_unlock(cookie);
384 1.37 drochner return (0);
385 1.37 drochner }
386 1.37 drochner f->wsfont = wf;
387 1.37 drochner f->cookie = cookie;
388 1.37 drochner f->slot = -1; /* not yet loaded */
389 1.37 drochner f->usecount = 0; /* incremented below */
390 1.37 drochner TAILQ_INSERT_TAIL(&vc->vc_fontlist, f, next);
391 1.37 drochner
392 1.37 drochner found:
393 1.37 drochner f->usecount++;
394 1.37 drochner #ifdef VGAFONTDEBUG
395 1.37 drochner if (scr != &vga_console_screen || vga_console_attached)
396 1.37 drochner printf("vga_getfont: usecount=%d\n", f->usecount);
397 1.37 drochner #endif
398 1.37 drochner return (f);
399 1.37 drochner }
400 1.37 drochner
401 1.37 drochner void
402 1.45 junyoung egavga_unreffont(struct vga_config *vc, struct egavga_font *f)
403 1.37 drochner {
404 1.37 drochner
405 1.37 drochner f->usecount--;
406 1.37 drochner #ifdef VGAFONTDEBUG
407 1.37 drochner printf("vga_unreffont: usecount=%d\n", f->usecount);
408 1.37 drochner #endif
409 1.38 drochner if (f->usecount == 0 && f != &vga_builtinfont) {
410 1.37 drochner TAILQ_REMOVE(&vc->vc_fontlist, f, next);
411 1.41 drochner if (f->slot != -1) {
412 1.41 drochner KASSERT(vc->vc_fonts[f->slot] == f);
413 1.41 drochner vc->vc_fonts[f->slot] = 0;
414 1.41 drochner }
415 1.37 drochner wsfont_unlock(f->cookie);
416 1.38 drochner #ifdef VGA_CONSOLE_SCREENTYPE
417 1.38 drochner if (f != &vga_consolefont)
418 1.38 drochner #endif
419 1.37 drochner free(f, M_DEVBUF);
420 1.37 drochner }
421 1.37 drochner }
422 1.12 drochner
423 1.12 drochner int
424 1.45 junyoung vga_selectfont(struct vga_config *vc, struct vgascreen *scr, char *name1,
425 1.45 junyoung char *name2)
426 1.12 drochner {
427 1.12 drochner const struct wsscreen_descr *type = scr->pcs.type;
428 1.37 drochner struct egavga_font *f1, *f2;
429 1.12 drochner
430 1.37 drochner f1 = egavga_getfont(vc, scr, name1, 1);
431 1.37 drochner if (!f1)
432 1.37 drochner return (ENXIO);
433 1.12 drochner
434 1.37 drochner if (VGA_SCREEN_CANTWOFONTS(type) && name2) {
435 1.37 drochner f2 = egavga_getfont(vc, scr, name2, 0);
436 1.37 drochner if (!f2) {
437 1.37 drochner egavga_unreffont(vc, f1);
438 1.37 drochner return (ENXIO);
439 1.12 drochner }
440 1.37 drochner } else
441 1.37 drochner f2 = 0;
442 1.12 drochner
443 1.12 drochner #ifdef VGAFONTDEBUG
444 1.37 drochner if (scr != &vga_console_screen || vga_console_attached) {
445 1.37 drochner printf("vga (%s): font1=%s (slot %d)", type->name,
446 1.37 drochner f1->wsfont->name, f1->slot);
447 1.37 drochner if (f2)
448 1.37 drochner printf(", font2=%s (slot %d)",
449 1.37 drochner f2->wsfont->name, f2->slot);
450 1.37 drochner printf("\n");
451 1.37 drochner }
452 1.12 drochner #endif
453 1.37 drochner if (scr->fontset1)
454 1.37 drochner egavga_unreffont(vc, scr->fontset1);
455 1.37 drochner scr->fontset1 = f1;
456 1.37 drochner if (scr->fontset2)
457 1.37 drochner egavga_unreffont(vc, scr->fontset2);
458 1.37 drochner scr->fontset2 = f2;
459 1.37 drochner return (0);
460 1.12 drochner }
461 1.12 drochner
462 1.1 drochner void
463 1.45 junyoung vga_init_screen(struct vga_config *vc, struct vgascreen *scr,
464 1.45 junyoung const struct wsscreen_descr *type, int existing, long *attrp)
465 1.1 drochner {
466 1.8 drochner int cpos;
467 1.3 drochner int res;
468 1.1 drochner
469 1.4 drochner scr->cfg = vc;
470 1.4 drochner scr->pcs.hdl = (struct pcdisplay_handle *)&vc->hdl;
471 1.4 drochner scr->pcs.type = type;
472 1.39 drochner scr->pcs.active = existing;
473 1.8 drochner scr->mindispoffset = 0;
474 1.8 drochner scr->maxdispoffset = 0x8000 - type->nrows * type->ncols * 2;
475 1.1 drochner
476 1.1 drochner if (existing) {
477 1.39 drochner vc->active = scr;
478 1.39 drochner
479 1.1 drochner cpos = vga_6845_read(&vc->hdl, cursorh) << 8;
480 1.1 drochner cpos |= vga_6845_read(&vc->hdl, cursorl);
481 1.1 drochner
482 1.1 drochner /* make sure we have a valid cursor position */
483 1.1 drochner if (cpos < 0 || cpos >= type->nrows * type->ncols)
484 1.1 drochner cpos = 0;
485 1.8 drochner
486 1.8 drochner scr->pcs.dispoffset = vga_6845_read(&vc->hdl, startadrh) << 9;
487 1.8 drochner scr->pcs.dispoffset |= vga_6845_read(&vc->hdl, startadrl) << 1;
488 1.8 drochner
489 1.8 drochner /* make sure we have a valid memory offset */
490 1.8 drochner if (scr->pcs.dispoffset < scr->mindispoffset ||
491 1.8 drochner scr->pcs.dispoffset > scr->maxdispoffset)
492 1.8 drochner scr->pcs.dispoffset = scr->mindispoffset;
493 1.40 drochner
494 1.40 drochner if (type != vc->currenttype) {
495 1.40 drochner vga_setscreentype(&vc->hdl, type);
496 1.40 drochner vc->currenttype = type;
497 1.40 drochner }
498 1.8 drochner } else {
499 1.8 drochner cpos = 0;
500 1.8 drochner scr->pcs.dispoffset = scr->mindispoffset;
501 1.1 drochner }
502 1.1 drochner
503 1.4 drochner scr->pcs.vc_crow = cpos / type->ncols;
504 1.4 drochner scr->pcs.vc_ccol = cpos % type->ncols;
505 1.25 ad pcdisplay_cursor_init(&scr->pcs, existing);
506 1.1 drochner
507 1.1 drochner #ifdef __alpha__
508 1.4 drochner if (!vc->hdl.vh_mono)
509 1.3 drochner /*
510 1.3 drochner * DEC firmware uses a blue background.
511 1.3 drochner */
512 1.3 drochner res = vga_alloc_attr(scr, WSCOL_WHITE, WSCOL_BLUE,
513 1.3 drochner WSATTR_WSCOLORS, attrp);
514 1.3 drochner else
515 1.3 drochner #endif
516 1.3 drochner res = vga_alloc_attr(scr, 0, 0, 0, attrp);
517 1.3 drochner #ifdef DIAGNOSTIC
518 1.3 drochner if (res)
519 1.3 drochner panic("vga_init_screen: attribute botch");
520 1.1 drochner #endif
521 1.1 drochner
522 1.4 drochner scr->pcs.mem = NULL;
523 1.15 drochner
524 1.37 drochner wsfont_init();
525 1.15 drochner scr->fontset1 = scr->fontset2 = 0;
526 1.12 drochner if (vga_selectfont(vc, scr, 0, 0)) {
527 1.12 drochner if (scr == &vga_console_screen)
528 1.12 drochner panic("vga_init_screen: no font");
529 1.12 drochner else
530 1.12 drochner printf("vga_init_screen: no font\n");
531 1.12 drochner }
532 1.40 drochner if (existing)
533 1.40 drochner vga_setfont(vc, scr);
534 1.15 drochner
535 1.1 drochner vc->nscreens++;
536 1.1 drochner LIST_INSERT_HEAD(&vc->screens, scr, next);
537 1.1 drochner }
538 1.1 drochner
539 1.1 drochner void
540 1.45 junyoung vga_init(struct vga_config *vc, bus_space_tag_t iot, bus_space_tag_t memt)
541 1.1 drochner {
542 1.1 drochner struct vga_handle *vh = &vc->hdl;
543 1.1 drochner u_int8_t mor;
544 1.12 drochner int i;
545 1.1 drochner
546 1.1 drochner vh->vh_iot = iot;
547 1.1 drochner vh->vh_memt = memt;
548 1.1 drochner
549 1.1 drochner if (bus_space_map(vh->vh_iot, 0x3c0, 0x10, 0, &vh->vh_ioh_vga))
550 1.1 drochner panic("vga_common_setup: couldn't map vga io");
551 1.1 drochner
552 1.1 drochner /* read "misc output register" */
553 1.1 drochner mor = bus_space_read_1(vh->vh_iot, vh->vh_ioh_vga, 0xc);
554 1.4 drochner vh->vh_mono = !(mor & 1);
555 1.1 drochner
556 1.4 drochner if (bus_space_map(vh->vh_iot, (vh->vh_mono ? 0x3b0 : 0x3d0), 0x10, 0,
557 1.1 drochner &vh->vh_ioh_6845))
558 1.1 drochner panic("vga_common_setup: couldn't map 6845 io");
559 1.1 drochner
560 1.1 drochner if (bus_space_map(vh->vh_memt, 0xa0000, 0x20000, 0, &vh->vh_allmemh))
561 1.1 drochner panic("vga_common_setup: couldn't map memory");
562 1.1 drochner
563 1.1 drochner if (bus_space_subregion(vh->vh_memt, vh->vh_allmemh,
564 1.4 drochner (vh->vh_mono ? 0x10000 : 0x18000), 0x8000,
565 1.1 drochner &vh->vh_memh))
566 1.1 drochner panic("vga_common_setup: mem subrange failed");
567 1.5 drochner
568 1.5 drochner /* should only reserve the space (no need to map - save KVM) */
569 1.5 drochner vc->vc_biostag = memt;
570 1.5 drochner if (bus_space_map(vc->vc_biostag, 0xc0000, 0x8000, 0,
571 1.5 drochner &vc->vc_bioshdl))
572 1.5 drochner vc->vc_biosmapped = 0;
573 1.5 drochner else
574 1.5 drochner vc->vc_biosmapped = 1;
575 1.1 drochner
576 1.1 drochner vc->nscreens = 0;
577 1.1 drochner LIST_INIT(&vc->screens);
578 1.1 drochner vc->active = NULL;
579 1.34 drochner vc->currenttype = vh->vh_mono ? &vga_25lscreen_mono : &vga_25lscreen;
580 1.26 thorpej callout_init(&vc->vc_switch_callout);
581 1.12 drochner
582 1.12 drochner vc->vc_fonts[0] = &vga_builtinfont;
583 1.23 drochner for (i = 1; i < 8; i++)
584 1.12 drochner vc->vc_fonts[i] = 0;
585 1.37 drochner TAILQ_INIT(&vc->vc_fontlist);
586 1.37 drochner TAILQ_INSERT_HEAD(&vc->vc_fontlist, &vga_builtinfont, next);
587 1.12 drochner
588 1.12 drochner vc->currentfontset1 = vc->currentfontset2 = 0;
589 1.1 drochner }
590 1.1 drochner
591 1.1 drochner void
592 1.45 junyoung vga_common_attach(struct vga_softc *sc, bus_space_tag_t iot,
593 1.45 junyoung bus_space_tag_t memt, int type, const struct vga_funcs *vf)
594 1.28 soda {
595 1.1 drochner int console;
596 1.1 drochner struct vga_config *vc;
597 1.1 drochner struct wsemuldisplaydev_attach_args aa;
598 1.1 drochner
599 1.1 drochner console = vga_is_console(iot, type);
600 1.1 drochner
601 1.1 drochner if (console) {
602 1.1 drochner vc = &vga_console_vc;
603 1.1 drochner vga_console_attached = 1;
604 1.1 drochner } else {
605 1.1 drochner vc = malloc(sizeof(struct vga_config), M_DEVBUF, M_WAITOK);
606 1.1 drochner vga_init(vc, iot, memt);
607 1.1 drochner }
608 1.1 drochner
609 1.42 thorpej vc->vc_type = type;
610 1.42 thorpej vc->vc_funcs = vf;
611 1.42 thorpej
612 1.42 thorpej sc->sc_vc = vc;
613 1.42 thorpej vc->softc = sc;
614 1.28 soda
615 1.1 drochner aa.console = console;
616 1.4 drochner aa.scrdata = (vc->hdl.vh_mono ? &vga_screenlist_mono : &vga_screenlist);
617 1.1 drochner aa.accessops = &vga_accessops;
618 1.1 drochner aa.accesscookie = vc;
619 1.1 drochner
620 1.42 thorpej config_found(&sc->sc_dev, &aa, wsemuldisplaydevprint);
621 1.1 drochner }
622 1.1 drochner
623 1.1 drochner int
624 1.45 junyoung vga_cnattach(bus_space_tag_t iot, bus_space_tag_t memt, int type, int check)
625 1.1 drochner {
626 1.3 drochner long defattr;
627 1.3 drochner const struct wsscreen_descr *scr;
628 1.3 drochner
629 1.1 drochner if (check && !vga_common_probe(iot, memt))
630 1.1 drochner return (ENXIO);
631 1.1 drochner
632 1.1 drochner /* set up bus-independent VGA configuration */
633 1.1 drochner vga_init(&vga_console_vc, iot, memt);
634 1.34 drochner #ifdef VGA_CONSOLE_SCREENTYPE
635 1.34 drochner scr = wsdisplay_screentype_pick(vga_console_vc.hdl.vh_mono ?
636 1.34 drochner &vga_screenlist_mono : &vga_screenlist, VGA_CONSOLE_SCREENTYPE);
637 1.34 drochner if (!scr)
638 1.34 drochner panic("vga_cnattach: invalid screen type");
639 1.34 drochner #else
640 1.11 drochner scr = vga_console_vc.currenttype;
641 1.34 drochner #endif
642 1.4 drochner vga_init_screen(&vga_console_vc, &vga_console_screen, scr, 1, &defattr);
643 1.1 drochner
644 1.3 drochner wsdisplay_cnattach(scr, &vga_console_screen,
645 1.4 drochner vga_console_screen.pcs.vc_ccol,
646 1.4 drochner vga_console_screen.pcs.vc_crow,
647 1.3 drochner defattr);
648 1.1 drochner
649 1.1 drochner vgaconsole = 1;
650 1.1 drochner vga_console_type = type;
651 1.1 drochner return (0);
652 1.1 drochner }
653 1.1 drochner
654 1.1 drochner int
655 1.45 junyoung vga_is_console(bus_space_tag_t iot, int type)
656 1.1 drochner {
657 1.1 drochner if (vgaconsole &&
658 1.1 drochner !vga_console_attached &&
659 1.1 drochner iot == vga_console_vc.hdl.vh_iot &&
660 1.1 drochner (vga_console_type == -1 || (type == vga_console_type)))
661 1.1 drochner return (1);
662 1.1 drochner return (0);
663 1.1 drochner }
664 1.1 drochner
665 1.1 drochner int
666 1.45 junyoung vga_ioctl(void *v, u_long cmd, caddr_t data, int flag, struct proc *p)
667 1.1 drochner {
668 1.1 drochner struct vga_config *vc = v;
669 1.42 thorpej const struct vga_funcs *vf = vc->vc_funcs;
670 1.1 drochner
671 1.1 drochner switch (cmd) {
672 1.1 drochner case WSDISPLAYIO_GTYPE:
673 1.1 drochner *(int *)data = vc->vc_type;
674 1.10 augustss return 0;
675 1.12 drochner
676 1.1 drochner case WSDISPLAYIO_GINFO:
677 1.42 thorpej /* XXX should get detailed hardware information here */
678 1.42 thorpej return ENOTTY;
679 1.42 thorpej
680 1.1 drochner case WSDISPLAYIO_GETCMAP:
681 1.1 drochner case WSDISPLAYIO_PUTCMAP:
682 1.1 drochner case WSDISPLAYIO_GVIDEO:
683 1.1 drochner case WSDISPLAYIO_SVIDEO:
684 1.1 drochner case WSDISPLAYIO_GCURPOS:
685 1.1 drochner case WSDISPLAYIO_SCURPOS:
686 1.1 drochner case WSDISPLAYIO_GCURMAX:
687 1.1 drochner case WSDISPLAYIO_GCURSOR:
688 1.1 drochner case WSDISPLAYIO_SCURSOR:
689 1.1 drochner /* NONE of these operations are by the generic VGA driver. */
690 1.1 drochner return ENOTTY;
691 1.1 drochner }
692 1.12 drochner
693 1.42 thorpej if (vc->vc_funcs == NULL)
694 1.42 thorpej return (-1);
695 1.42 thorpej
696 1.42 thorpej if (vf->vf_ioctl == NULL)
697 1.42 thorpej return (-1);
698 1.42 thorpej
699 1.42 thorpej return ((*vf->vf_ioctl)(v, cmd, data, flag, p));
700 1.1 drochner }
701 1.1 drochner
702 1.29 simonb static paddr_t
703 1.45 junyoung vga_mmap(void *v, off_t offset, int prot)
704 1.1 drochner {
705 1.42 thorpej struct vga_config *vc = v;
706 1.42 thorpej const struct vga_funcs *vf = vc->vc_funcs;
707 1.1 drochner
708 1.42 thorpej if (vc->vc_funcs == NULL)
709 1.42 thorpej return (-1);
710 1.28 soda
711 1.42 thorpej if (vf->vf_mmap == NULL)
712 1.42 thorpej return (-1);
713 1.32 thorpej
714 1.42 thorpej return ((*vf->vf_mmap)(v, offset, prot));
715 1.1 drochner }
716 1.1 drochner
717 1.1 drochner int
718 1.45 junyoung vga_alloc_screen(void *v, const struct wsscreen_descr *type, void **cookiep,
719 1.45 junyoung int *curxp, int *curyp, long *defattrp)
720 1.1 drochner {
721 1.1 drochner struct vga_config *vc = v;
722 1.1 drochner struct vgascreen *scr;
723 1.1 drochner
724 1.1 drochner if (vc->nscreens == 1) {
725 1.38 drochner struct vgascreen *scr1 = vc->screens.lh_first;
726 1.1 drochner /*
727 1.1 drochner * When allocating the second screen, get backing store
728 1.1 drochner * for the first one too.
729 1.1 drochner * XXX We could be more clever and use video RAM.
730 1.1 drochner */
731 1.38 drochner scr1->pcs.mem =
732 1.38 drochner malloc(scr1->pcs.type->ncols * scr1->pcs.type->nrows * 2,
733 1.38 drochner M_DEVBUF, M_WAITOK);
734 1.1 drochner }
735 1.1 drochner
736 1.1 drochner scr = malloc(sizeof(struct vgascreen), M_DEVBUF, M_WAITOK);
737 1.4 drochner vga_init_screen(vc, scr, type, vc->nscreens == 0, defattrp);
738 1.1 drochner
739 1.39 drochner if (vc->nscreens > 1) {
740 1.4 drochner scr->pcs.mem = malloc(type->ncols * type->nrows * 2,
741 1.4 drochner M_DEVBUF, M_WAITOK);
742 1.4 drochner pcdisplay_eraserows(&scr->pcs, 0, type->nrows, *defattrp);
743 1.1 drochner }
744 1.1 drochner
745 1.1 drochner *cookiep = scr;
746 1.4 drochner *curxp = scr->pcs.vc_ccol;
747 1.4 drochner *curyp = scr->pcs.vc_crow;
748 1.1 drochner
749 1.1 drochner return (0);
750 1.1 drochner }
751 1.1 drochner
752 1.1 drochner void
753 1.45 junyoung vga_free_screen(void *v, void *cookie)
754 1.1 drochner {
755 1.1 drochner struct vgascreen *vs = cookie;
756 1.11 drochner struct vga_config *vc = vs->cfg;
757 1.1 drochner
758 1.1 drochner LIST_REMOVE(vs, next);
759 1.38 drochner if (vs->fontset1)
760 1.38 drochner egavga_unreffont(vc, vs->fontset1);
761 1.38 drochner if (vs->fontset2)
762 1.38 drochner egavga_unreffont(vc, vs->fontset2);
763 1.38 drochner
764 1.1 drochner if (vs != &vga_console_screen)
765 1.1 drochner free(vs, M_DEVBUF);
766 1.1 drochner else
767 1.1 drochner panic("vga_free_screen: console");
768 1.11 drochner
769 1.11 drochner if (vc->active == vs)
770 1.11 drochner vc->active = 0;
771 1.1 drochner }
772 1.1 drochner
773 1.40 drochner static void vga_usefont(struct vga_config *, struct egavga_font *);
774 1.37 drochner
775 1.40 drochner static void
776 1.45 junyoung vga_usefont(struct vga_config *vc, struct egavga_font *f)
777 1.37 drochner {
778 1.37 drochner int slot;
779 1.37 drochner struct egavga_font *of;
780 1.37 drochner
781 1.37 drochner if (f->slot != -1)
782 1.37 drochner goto toend;
783 1.37 drochner
784 1.37 drochner for (slot = 0; slot < 8; slot++) {
785 1.37 drochner if (!vc->vc_fonts[slot])
786 1.37 drochner goto loadit;
787 1.37 drochner }
788 1.37 drochner
789 1.37 drochner /* have to kick out another one */
790 1.37 drochner TAILQ_FOREACH(of, &vc->vc_fontlist, next) {
791 1.37 drochner if (of->slot != -1) {
792 1.37 drochner if (of == &vga_builtinfont)
793 1.37 drochner continue; /* XXX for now */
794 1.37 drochner KASSERT(vc->vc_fonts[of->slot] == of);
795 1.37 drochner slot = of->slot;
796 1.37 drochner of->slot = -1;
797 1.37 drochner goto loadit;
798 1.37 drochner }
799 1.37 drochner }
800 1.37 drochner panic("vga_usefont");
801 1.37 drochner
802 1.37 drochner loadit:
803 1.37 drochner vga_loadchars(&vc->hdl, slot, 0, 256,
804 1.37 drochner f->wsfont->fontheight, f->wsfont->data);
805 1.37 drochner f->slot = slot;
806 1.37 drochner vc->vc_fonts[slot] = f;
807 1.37 drochner
808 1.37 drochner toend:
809 1.37 drochner TAILQ_REMOVE(&vc->vc_fontlist, f, next);
810 1.37 drochner TAILQ_INSERT_TAIL(&vc->vc_fontlist, f, next);
811 1.37 drochner }
812 1.37 drochner
813 1.12 drochner static void
814 1.45 junyoung vga_setfont(struct vga_config *vc, struct vgascreen *scr)
815 1.12 drochner {
816 1.12 drochner int fontslot1, fontslot2;
817 1.12 drochner
818 1.37 drochner if (scr->fontset1)
819 1.37 drochner vga_usefont(vc, scr->fontset1);
820 1.37 drochner if (scr->fontset2)
821 1.37 drochner vga_usefont(vc, scr->fontset2);
822 1.37 drochner
823 1.12 drochner fontslot1 = (scr->fontset1 ? scr->fontset1->slot : 0);
824 1.12 drochner fontslot2 = (scr->fontset2 ? scr->fontset2->slot : fontslot1);
825 1.12 drochner if (vc->currentfontset1 != fontslot1 ||
826 1.12 drochner vc->currentfontset2 != fontslot2) {
827 1.12 drochner vga_setfontset(&vc->hdl, fontslot1, fontslot2);
828 1.12 drochner vc->currentfontset1 = fontslot1;
829 1.12 drochner vc->currentfontset2 = fontslot2;
830 1.12 drochner }
831 1.12 drochner }
832 1.12 drochner
833 1.22 drochner int
834 1.45 junyoung vga_show_screen(void *v, void *cookie, int waitok,
835 1.45 junyoung void (*cb)(void *, int, int), void *cbarg)
836 1.1 drochner {
837 1.4 drochner struct vgascreen *scr = cookie, *oldscr;
838 1.1 drochner struct vga_config *vc = scr->cfg;
839 1.22 drochner
840 1.22 drochner oldscr = vc->active; /* can be NULL! */
841 1.22 drochner if (scr == oldscr) {
842 1.22 drochner return (0);
843 1.22 drochner }
844 1.22 drochner
845 1.22 drochner vc->wantedscreen = cookie;
846 1.22 drochner vc->switchcb = cb;
847 1.22 drochner vc->switchcbarg = cbarg;
848 1.22 drochner if (cb) {
849 1.26 thorpej callout_reset(&vc->vc_switch_callout, 0,
850 1.26 thorpej (void(*)(void *))vga_doswitch, vc);
851 1.22 drochner return (EAGAIN);
852 1.22 drochner }
853 1.22 drochner
854 1.22 drochner vga_doswitch(vc);
855 1.22 drochner return (0);
856 1.22 drochner }
857 1.22 drochner
858 1.22 drochner void
859 1.45 junyoung vga_doswitch(struct vga_config *vc)
860 1.22 drochner {
861 1.22 drochner struct vgascreen *scr, *oldscr;
862 1.1 drochner struct vga_handle *vh = &vc->hdl;
863 1.22 drochner const struct wsscreen_descr *type;
864 1.1 drochner
865 1.22 drochner scr = vc->wantedscreen;
866 1.22 drochner if (!scr) {
867 1.22 drochner printf("vga_doswitch: disappeared\n");
868 1.22 drochner (*vc->switchcb)(vc->switchcbarg, EIO, 0);
869 1.22 drochner return;
870 1.22 drochner }
871 1.22 drochner type = scr->pcs.type;
872 1.11 drochner oldscr = vc->active; /* can be NULL! */
873 1.4 drochner #ifdef DIAGNOSTIC
874 1.11 drochner if (oldscr) {
875 1.11 drochner if (!oldscr->pcs.active)
876 1.11 drochner panic("vga_show_screen: not active");
877 1.11 drochner if (oldscr->pcs.type != vc->currenttype)
878 1.11 drochner panic("vga_show_screen: bad type");
879 1.11 drochner }
880 1.4 drochner #endif
881 1.4 drochner if (scr == oldscr) {
882 1.1 drochner return;
883 1.4 drochner }
884 1.4 drochner #ifdef DIAGNOSTIC
885 1.4 drochner if (scr->pcs.active)
886 1.4 drochner panic("vga_show_screen: active");
887 1.4 drochner #endif
888 1.4 drochner
889 1.11 drochner if (oldscr) {
890 1.11 drochner const struct wsscreen_descr *oldtype = oldscr->pcs.type;
891 1.1 drochner
892 1.11 drochner oldscr->pcs.active = 0;
893 1.11 drochner bus_space_read_region_2(vh->vh_memt, vh->vh_memh,
894 1.11 drochner oldscr->pcs.dispoffset, oldscr->pcs.mem,
895 1.11 drochner oldtype->ncols * oldtype->nrows);
896 1.11 drochner }
897 1.1 drochner
898 1.11 drochner if (vc->currenttype != type) {
899 1.4 drochner vga_setscreentype(vh, type);
900 1.11 drochner vc->currenttype = type;
901 1.11 drochner }
902 1.12 drochner
903 1.12 drochner vga_setfont(vc, scr);
904 1.11 drochner /* XXX swich colours! */
905 1.1 drochner
906 1.8 drochner scr->pcs.dispoffset = scr->mindispoffset;
907 1.11 drochner if (!oldscr || (scr->pcs.dispoffset != oldscr->pcs.dispoffset)) {
908 1.8 drochner vga_6845_write(vh, startadrh, scr->pcs.dispoffset >> 9);
909 1.8 drochner vga_6845_write(vh, startadrl, scr->pcs.dispoffset >> 1);
910 1.8 drochner }
911 1.8 drochner
912 1.11 drochner bus_space_write_region_2(vh->vh_memt, vh->vh_memh,
913 1.11 drochner scr->pcs.dispoffset, scr->pcs.mem,
914 1.11 drochner type->ncols * type->nrows);
915 1.11 drochner scr->pcs.active = 1;
916 1.1 drochner
917 1.4 drochner vc->active = scr;
918 1.1 drochner
919 1.4 drochner pcdisplay_cursor(&scr->pcs, scr->pcs.cursoron,
920 1.4 drochner scr->pcs.vc_crow, scr->pcs.vc_ccol);
921 1.22 drochner
922 1.22 drochner vc->wantedscreen = 0;
923 1.22 drochner if (vc->switchcb)
924 1.22 drochner (*vc->switchcb)(vc->switchcbarg, 0, 0);
925 1.1 drochner }
926 1.1 drochner
927 1.1 drochner static int
928 1.45 junyoung vga_load_font(void *v, void *cookie, struct wsdisplay_font *data)
929 1.1 drochner {
930 1.12 drochner struct vga_config *vc = v;
931 1.1 drochner struct vgascreen *scr = cookie;
932 1.12 drochner char *name2;
933 1.37 drochner int res;
934 1.12 drochner
935 1.12 drochner if (scr) {
936 1.12 drochner name2 = strchr(data->name, ',');
937 1.12 drochner if (name2)
938 1.12 drochner *name2++ = '\0';
939 1.12 drochner res = vga_selectfont(vc, scr, data->name, name2);
940 1.12 drochner if (!res)
941 1.12 drochner vga_setfont(vc, scr);
942 1.12 drochner return (res);
943 1.12 drochner }
944 1.1 drochner
945 1.1 drochner return (0);
946 1.1 drochner }
947 1.1 drochner
948 1.3 drochner static int
949 1.45 junyoung vga_alloc_attr(void *id, int fg, int bg, int flags, long *attrp)
950 1.3 drochner {
951 1.3 drochner struct vgascreen *scr = id;
952 1.3 drochner struct vga_config *vc = scr->cfg;
953 1.3 drochner
954 1.4 drochner if (vc->hdl.vh_mono) {
955 1.3 drochner if (flags & WSATTR_WSCOLORS)
956 1.3 drochner return (EINVAL);
957 1.3 drochner if (flags & WSATTR_REVERSE)
958 1.3 drochner *attrp = 0x70;
959 1.3 drochner else
960 1.3 drochner *attrp = 0x07;
961 1.3 drochner if (flags & WSATTR_UNDERLINE)
962 1.3 drochner *attrp |= FG_UNDERLINE;
963 1.3 drochner if (flags & WSATTR_HILIT)
964 1.3 drochner *attrp |= FG_INTENSE;
965 1.3 drochner } else {
966 1.3 drochner if (flags & (WSATTR_UNDERLINE | WSATTR_REVERSE))
967 1.3 drochner return (EINVAL);
968 1.3 drochner if (flags & WSATTR_WSCOLORS)
969 1.3 drochner *attrp = fgansitopc[fg] | bgansitopc[bg];
970 1.3 drochner else
971 1.3 drochner *attrp = 7;
972 1.3 drochner if (flags & WSATTR_HILIT)
973 1.3 drochner *attrp += 8;
974 1.3 drochner }
975 1.3 drochner if (flags & WSATTR_BLINK)
976 1.3 drochner *attrp |= FG_BLINK;
977 1.3 drochner return (0);
978 1.8 drochner }
979 1.8 drochner
980 1.45 junyoung static void
981 1.45 junyoung vga_copyrows(void *id, int srcrow, int dstrow, int nrows)
982 1.8 drochner {
983 1.8 drochner struct vgascreen *scr = id;
984 1.8 drochner bus_space_tag_t memt = scr->pcs.hdl->ph_memt;
985 1.8 drochner bus_space_handle_t memh = scr->pcs.hdl->ph_memh;
986 1.8 drochner int ncols = scr->pcs.type->ncols;
987 1.8 drochner bus_size_t srcoff, dstoff;
988 1.8 drochner
989 1.8 drochner srcoff = srcrow * ncols + 0;
990 1.8 drochner dstoff = dstrow * ncols + 0;
991 1.8 drochner
992 1.8 drochner if (scr->pcs.active) {
993 1.8 drochner if (dstrow == 0 && (srcrow + nrows == scr->pcs.type->nrows)) {
994 1.18 ad #ifdef PCDISPLAY_SOFTCURSOR
995 1.20 ad int cursoron = scr->pcs.cursoron;
996 1.20 ad
997 1.21 mycroft if (cursoron)
998 1.21 mycroft pcdisplay_cursor(&scr->pcs, 0,
999 1.21 mycroft scr->pcs.vc_crow, scr->pcs.vc_ccol);
1000 1.18 ad #endif
1001 1.8 drochner /* scroll up whole screen */
1002 1.8 drochner if ((scr->pcs.dispoffset + srcrow * ncols * 2)
1003 1.8 drochner <= scr->maxdispoffset) {
1004 1.8 drochner scr->pcs.dispoffset += srcrow * ncols * 2;
1005 1.8 drochner } else {
1006 1.8 drochner bus_space_copy_region_2(memt, memh,
1007 1.8 drochner scr->pcs.dispoffset + srcoff * 2,
1008 1.8 drochner memh, scr->mindispoffset,
1009 1.8 drochner nrows * ncols);
1010 1.8 drochner scr->pcs.dispoffset = scr->mindispoffset;
1011 1.8 drochner }
1012 1.8 drochner vga_6845_write(&scr->cfg->hdl, startadrh,
1013 1.8 drochner scr->pcs.dispoffset >> 9);
1014 1.8 drochner vga_6845_write(&scr->cfg->hdl, startadrl,
1015 1.8 drochner scr->pcs.dispoffset >> 1);
1016 1.18 ad #ifdef PCDISPLAY_SOFTCURSOR
1017 1.21 mycroft if (cursoron)
1018 1.21 mycroft pcdisplay_cursor(&scr->pcs, 1,
1019 1.21 mycroft scr->pcs.vc_crow, scr->pcs.vc_ccol);
1020 1.18 ad #endif
1021 1.8 drochner } else {
1022 1.8 drochner bus_space_copy_region_2(memt, memh,
1023 1.8 drochner scr->pcs.dispoffset + srcoff * 2,
1024 1.8 drochner memh, scr->pcs.dispoffset + dstoff * 2,
1025 1.8 drochner nrows * ncols);
1026 1.8 drochner }
1027 1.8 drochner } else
1028 1.36 thorpej memcpy(&scr->pcs.mem[dstoff], &scr->pcs.mem[srcoff],
1029 1.8 drochner nrows * ncols * 2);
1030 1.12 drochner }
1031 1.12 drochner
1032 1.12 drochner #ifdef WSCONS_SUPPORT_PCVTFONTS
1033 1.12 drochner
1034 1.12 drochner #define NOTYET 0xffff
1035 1.35 jdolecek static const u_int16_t pcvt_unichars[0xa0] = {
1036 1.44 bjh21 /* 0 */ _e006U, /* N/L control */
1037 1.14 drochner NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET,
1038 1.12 drochner NOTYET,
1039 1.12 drochner 0x2409, /* SYMBOL FOR HORIZONTAL TABULATION */
1040 1.12 drochner 0x240a, /* SYMBOL FOR LINE FEED */
1041 1.12 drochner 0x240b, /* SYMBOL FOR VERTICAL TABULATION */
1042 1.12 drochner 0x240c, /* SYMBOL FOR FORM FEED */
1043 1.12 drochner 0x240d, /* SYMBOL FOR CARRIAGE RETURN */
1044 1.12 drochner NOTYET, NOTYET,
1045 1.14 drochner /* 1 */ NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET,
1046 1.12 drochner NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET,
1047 1.12 drochner /* 2 */ NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET,
1048 1.12 drochner NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET,
1049 1.14 drochner /* 3 */ NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET,
1050 1.12 drochner NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET, NOTYET,
1051 1.12 drochner /* 4 */ 0x03c1, /* GREEK SMALL LETTER RHO */
1052 1.12 drochner 0x03c8, /* GREEK SMALL LETTER PSI */
1053 1.12 drochner 0x2202, /* PARTIAL DIFFERENTIAL */
1054 1.12 drochner 0x03bb, /* GREEK SMALL LETTER LAMDA */
1055 1.12 drochner 0x03b9, /* GREEK SMALL LETTER IOTA */
1056 1.12 drochner 0x03b7, /* GREEK SMALL LETTER ETA */
1057 1.12 drochner 0x03b5, /* GREEK SMALL LETTER EPSILON */
1058 1.12 drochner 0x03c7, /* GREEK SMALL LETTER CHI */
1059 1.12 drochner 0x2228, /* LOGICAL OR */
1060 1.12 drochner 0x2227, /* LOGICAL AND */
1061 1.12 drochner 0x222a, /* UNION */
1062 1.12 drochner 0x2283, /* SUPERSET OF */
1063 1.12 drochner 0x2282, /* SUBSET OF */
1064 1.12 drochner 0x03a5, /* GREEK CAPITAL LETTER UPSILON */
1065 1.12 drochner 0x039e, /* GREEK CAPITAL LETTER XI */
1066 1.12 drochner 0x03a8, /* GREEK CAPITAL LETTER PSI */
1067 1.14 drochner /* 5 */ 0x03a0, /* GREEK CAPITAL LETTER PI */
1068 1.12 drochner 0x21d2, /* RIGHTWARDS DOUBLE ARROW */
1069 1.12 drochner 0x21d4, /* LEFT RIGHT DOUBLE ARROW */
1070 1.12 drochner 0x039b, /* GREEK CAPITAL LETTER LAMDA */
1071 1.12 drochner 0x0398, /* GREEK CAPITAL LETTER THETA */
1072 1.12 drochner 0x2243, /* ASYMPTOTICALLY EQUAL TO */
1073 1.12 drochner 0x2207, /* NABLA */
1074 1.12 drochner 0x2206, /* INCREMENT */
1075 1.12 drochner 0x221d, /* PROPORTIONAL TO */
1076 1.12 drochner 0x2234, /* THEREFORE */
1077 1.12 drochner 0x222b, /* INTEGRAL */
1078 1.12 drochner 0x2215, /* DIVISION SLASH */
1079 1.12 drochner 0x2216, /* SET MINUS */
1080 1.44 bjh21 _e00eU, /* angle? */
1081 1.44 bjh21 _e00dU, /* inverted angle? */
1082 1.44 bjh21 _e00bU, /* braceleftmid */
1083 1.44 bjh21 /* 6 */ _e00cU, /* bracerightmid */
1084 1.44 bjh21 _e007U, /* bracelefttp */
1085 1.44 bjh21 _e008U, /* braceleftbt */
1086 1.44 bjh21 _e009U, /* bracerighttp */
1087 1.44 bjh21 _e00aU, /* bracerightbt */
1088 1.12 drochner 0x221a, /* SQUARE ROOT */
1089 1.12 drochner 0x03c9, /* GREEK SMALL LETTER OMEGA */
1090 1.12 drochner 0x00a5, /* YEN SIGN */
1091 1.12 drochner 0x03be, /* GREEK SMALL LETTER XI */
1092 1.12 drochner 0x00fd, /* LATIN SMALL LETTER Y WITH ACUTE */
1093 1.12 drochner 0x00fe, /* LATIN SMALL LETTER THORN */
1094 1.12 drochner 0x00f0, /* LATIN SMALL LETTER ETH */
1095 1.12 drochner 0x00de, /* LATIN CAPITAL LETTER THORN */
1096 1.12 drochner 0x00dd, /* LATIN CAPITAL LETTER Y WITH ACUTE */
1097 1.12 drochner 0x00d7, /* MULTIPLICATION SIGN */
1098 1.12 drochner 0x00d0, /* LATIN CAPITAL LETTER ETH */
1099 1.14 drochner /* 7 */ 0x00be, /* VULGAR FRACTION THREE QUARTERS */
1100 1.12 drochner 0x00b8, /* CEDILLA */
1101 1.12 drochner 0x00b4, /* ACUTE ACCENT */
1102 1.12 drochner 0x00af, /* MACRON */
1103 1.12 drochner 0x00ae, /* REGISTERED SIGN */
1104 1.12 drochner 0x00ad, /* SOFT HYPHEN */
1105 1.12 drochner 0x00ac, /* NOT SIGN */
1106 1.12 drochner 0x00a8, /* DIAERESIS */
1107 1.12 drochner 0x2260, /* NOT EQUAL TO */
1108 1.44 bjh21 _e005U, /* scan 9 */
1109 1.44 bjh21 _e004U, /* scan 7 */
1110 1.44 bjh21 _e003U, /* scan 5 */
1111 1.44 bjh21 _e002U, /* scan 3 */
1112 1.44 bjh21 _e001U, /* scan 1 */
1113 1.12 drochner 0x03c5, /* GREEK SMALL LETTER UPSILON */
1114 1.12 drochner 0x00f8, /* LATIN SMALL LETTER O WITH STROKE */
1115 1.12 drochner /* 8 */ 0x0153, /* LATIN SMALL LIGATURE OE */
1116 1.12 drochner 0x00f5, /* LATIN SMALL LETTER O WITH TILDE !!!doc bug */
1117 1.12 drochner 0x00e3, /* LATIN SMALL LETTER A WITH TILDE */
1118 1.12 drochner 0x0178, /* LATIN CAPITAL LETTER Y WITH DIAERESIS */
1119 1.12 drochner 0x00db, /* LATIN CAPITAL LETTER U WITH CIRCUMFLEX */
1120 1.12 drochner 0x00da, /* LATIN CAPITAL LETTER U WITH ACUTE */
1121 1.12 drochner 0x00d9, /* LATIN CAPITAL LETTER U WITH GRAVE */
1122 1.12 drochner 0x00d8, /* LATIN CAPITAL LETTER O WITH STROKE */
1123 1.12 drochner 0x0152, /* LATIN CAPITAL LIGATURE OE */
1124 1.12 drochner 0x00d5, /* LATIN CAPITAL LETTER O WITH TILDE */
1125 1.12 drochner 0x00d4, /* LATIN CAPITAL LETTER O WITH CIRCUMFLEX */
1126 1.12 drochner 0x00d3, /* LATIN CAPITAL LETTER O WITH ACUTE */
1127 1.12 drochner 0x00d2, /* LATIN CAPITAL LETTER O WITH GRAVE */
1128 1.12 drochner 0x00cf, /* LATIN CAPITAL LETTER I WITH DIAERESIS */
1129 1.12 drochner 0x00ce, /* LATIN CAPITAL LETTER I WITH CIRCUMFLEX */
1130 1.12 drochner 0x00cd, /* LATIN CAPITAL LETTER I WITH ACUTE */
1131 1.14 drochner /* 9 */ 0x00cc, /* LATIN CAPITAL LETTER I WITH GRAVE */
1132 1.12 drochner 0x00cb, /* LATIN CAPITAL LETTER E WITH DIAERESIS */
1133 1.12 drochner 0x00ca, /* LATIN CAPITAL LETTER E WITH CIRCUMFLEX */
1134 1.12 drochner 0x00c8, /* LATIN CAPITAL LETTER E WITH GRAVE */
1135 1.12 drochner 0x00c3, /* LATIN CAPITAL LETTER A WITH TILDE */
1136 1.12 drochner 0x00c2, /* LATIN CAPITAL LETTER A WITH CIRCUMFLEX */
1137 1.12 drochner 0x00c1, /* LATIN CAPITAL LETTER A WITH ACUTE */
1138 1.12 drochner 0x00c0, /* LATIN CAPITAL LETTER A WITH GRAVE */
1139 1.12 drochner 0x00b9, /* SUPERSCRIPT ONE */
1140 1.12 drochner 0x00b7, /* MIDDLE DOT */
1141 1.12 drochner 0x03b6, /* GREEK SMALL LETTER ZETA */
1142 1.12 drochner 0x00b3, /* SUPERSCRIPT THREE */
1143 1.12 drochner 0x00a9, /* COPYRIGHT SIGN */
1144 1.12 drochner 0x00a4, /* CURRENCY SIGN */
1145 1.12 drochner 0x03ba, /* GREEK SMALL LETTER KAPPA */
1146 1.44 bjh21 _e000U /* mirrored question mark? */
1147 1.12 drochner };
1148 1.12 drochner
1149 1.45 junyoung static int vga_pcvt_mapchar(int, u_int *);
1150 1.12 drochner
1151 1.12 drochner static int
1152 1.45 junyoung vga_pcvt_mapchar(int uni, u_int *index)
1153 1.12 drochner {
1154 1.12 drochner int i;
1155 1.12 drochner
1156 1.12 drochner for (i = 0; i < 0xa0; i++) /* 0xa0..0xff are reserved */
1157 1.13 drochner if (uni == pcvt_unichars[i]) {
1158 1.13 drochner *index = i;
1159 1.13 drochner return (5);
1160 1.13 drochner }
1161 1.13 drochner *index = 0x99; /* middle dot */
1162 1.13 drochner return (0);
1163 1.12 drochner }
1164 1.12 drochner
1165 1.12 drochner #endif /* WSCONS_SUPPORT_PCVTFONTS */
1166 1.12 drochner
1167 1.34 drochner #ifdef WSCONS_SUPPORT_ISO7FONTS
1168 1.34 drochner
1169 1.34 drochner static int
1170 1.45 junyoung vga_iso7_mapchar(int uni, u_int *index)
1171 1.34 drochner {
1172 1.34 drochner
1173 1.34 drochner /*
1174 1.34 drochner * U+0384 (GREEK TONOS) to
1175 1.34 drochner * U+03ce (GREEK SMALL LETTER OMEGA WITH TONOS)
1176 1.34 drochner * map directly to the iso-9 font
1177 1.34 drochner */
1178 1.34 drochner if (uni >= 0x0384 && uni <= 0x03ce) {
1179 1.34 drochner /* U+0384 is at offset 0xb4 in the font */
1180 1.34 drochner *index = uni - 0x0384 + 0xb4;
1181 1.34 drochner return (5);
1182 1.34 drochner }
1183 1.34 drochner
1184 1.34 drochner /* XXX more chars in the iso-9 font */
1185 1.34 drochner
1186 1.34 drochner *index = 0xa4; /* shaded rectangle */
1187 1.34 drochner return (0);
1188 1.34 drochner }
1189 1.34 drochner
1190 1.34 drochner #endif /* WSCONS_SUPPORT_ISO7FONTS */
1191 1.34 drochner
1192 1.45 junyoung static int _vga_mapchar(void *, const struct egavga_font *, int, u_int *);
1193 1.12 drochner
1194 1.12 drochner static int
1195 1.45 junyoung _vga_mapchar(void *id, const struct egavga_font *font, int uni, u_int *index)
1196 1.12 drochner {
1197 1.12 drochner
1198 1.37 drochner switch (font->wsfont->encoding) {
1199 1.12 drochner case WSDISPLAY_FONTENC_ISO:
1200 1.13 drochner if (uni < 256) {
1201 1.13 drochner *index = uni;
1202 1.13 drochner return (5);
1203 1.13 drochner } else {
1204 1.13 drochner *index = ' ';
1205 1.13 drochner return (0);
1206 1.13 drochner }
1207 1.12 drochner break;
1208 1.12 drochner case WSDISPLAY_FONTENC_IBM:
1209 1.13 drochner return (pcdisplay_mapchar(id, uni, index));
1210 1.12 drochner #ifdef WSCONS_SUPPORT_PCVTFONTS
1211 1.12 drochner case WSDISPLAY_FONTENC_PCVT:
1212 1.13 drochner return (vga_pcvt_mapchar(uni, index));
1213 1.34 drochner #endif
1214 1.34 drochner #ifdef WSCONS_SUPPORT_ISO7FONTS
1215 1.34 drochner case WSDISPLAY_FONTENC_ISO7:
1216 1.34 drochner return (vga_iso7_mapchar(uni, index));
1217 1.12 drochner #endif
1218 1.13 drochner default:
1219 1.16 drochner #ifdef VGAFONTDEBUG
1220 1.37 drochner printf("_vga_mapchar: encoding=%d\n", font->wsfont->encoding);
1221 1.16 drochner #endif
1222 1.13 drochner *index = ' ';
1223 1.13 drochner return (0);
1224 1.12 drochner }
1225 1.12 drochner }
1226 1.12 drochner
1227 1.13 drochner static int
1228 1.45 junyoung vga_mapchar(void *id, int uni, u_int *index)
1229 1.12 drochner {
1230 1.12 drochner struct vgascreen *scr = id;
1231 1.45 junyoung u_int idx1, idx2;
1232 1.13 drochner int res1, res2;
1233 1.12 drochner
1234 1.13 drochner res1 = 0;
1235 1.13 drochner idx1 = ' '; /* space */
1236 1.13 drochner if (scr->fontset1)
1237 1.13 drochner res1 = _vga_mapchar(id, scr->fontset1, uni, &idx1);
1238 1.13 drochner res2 = -1;
1239 1.12 drochner if (scr->fontset2) {
1240 1.12 drochner KASSERT(VGA_SCREEN_CANTWOFONTS(scr->pcs.type));
1241 1.13 drochner res2 = _vga_mapchar(id, scr->fontset2, uni, &idx2);
1242 1.12 drochner }
1243 1.13 drochner if (res2 > res1) {
1244 1.14 drochner *index = idx2 | 0x0800; /* attribute bit 3 */
1245 1.14 drochner return (res2);
1246 1.13 drochner }
1247 1.13 drochner *index = idx1;
1248 1.13 drochner return (res1);
1249 1.1 drochner }
1250