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