Home | History | Annotate | Line # | Download | only in wscons
wsdisplay.c revision 1.51.2.1
      1 /* $NetBSD: wsdisplay.c,v 1.51.2.1 2001/07/10 14:02:21 lukem Exp $ */
      2 
      3 /*
      4  * Copyright (c) 1996, 1997 Christopher G. Demetriou.  All rights reserved.
      5  *
      6  * Redistribution and use in source and binary forms, with or without
      7  * modification, are permitted provided that the following conditions
      8  * are met:
      9  * 1. Redistributions of source code must retain the above copyright
     10  *    notice, this list of conditions and the following disclaimer.
     11  * 2. Redistributions in binary form must reproduce the above copyright
     12  *    notice, this list of conditions and the following disclaimer in the
     13  *    documentation and/or other materials provided with the distribution.
     14  * 3. All advertising materials mentioning features or use of this software
     15  *    must display the following acknowledgement:
     16  *      This product includes software developed by Christopher G. Demetriou
     17  *	for the NetBSD Project.
     18  * 4. The name of the author may not be used to endorse or promote products
     19  *    derived from this software without specific prior written permission
     20  *
     21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  */
     32 
     33 #include <sys/cdefs.h>
     34 __KERNEL_RCSID(0, "$NetBSD: wsdisplay.c,v 1.51.2.1 2001/07/10 14:02:21 lukem Exp $");
     35 
     36 #include <sys/param.h>
     37 #include <sys/conf.h>
     38 #include <sys/device.h>
     39 #include <sys/ioctl.h>
     40 #include <sys/kernel.h>
     41 #include <sys/proc.h>
     42 #include <sys/malloc.h>
     43 #include <sys/syslog.h>
     44 #include <sys/systm.h>
     45 #include <sys/tty.h>
     46 #include <sys/signalvar.h>
     47 #include <sys/errno.h>
     48 #include <sys/fcntl.h>
     49 #include <sys/vnode.h>
     50 
     51 #include <dev/wscons/wsconsio.h>
     52 #include <dev/wscons/wsdisplayvar.h>
     53 #include <dev/wscons/wsksymvar.h>
     54 #include <dev/wscons/wsksymdef.h>
     55 #include <dev/wscons/wsemulvar.h>
     56 #include <dev/wscons/wscons_callbacks.h>
     57 #include <dev/cons.h>
     58 
     59 #include "opt_wsdisplay_compat.h"
     60 #include "opt_compat_netbsd.h"
     61 #include "wskbd.h"
     62 #include "wsmux.h"
     63 
     64 #if NWSKBD > 0
     65 #include <dev/wscons/wseventvar.h>
     66 #include <dev/wscons/wsmuxvar.h>
     67 #endif
     68 
     69 struct wsscreen_internal {
     70 	const struct wsdisplay_emulops *emulops;
     71 	void	*emulcookie;
     72 
     73 	const struct wsscreen_descr *scrdata;
     74 
     75 	const struct wsemul_ops *wsemul;
     76 	void	*wsemulcookie;
     77 };
     78 
     79 struct wsscreen {
     80 	struct wsscreen_internal *scr_dconf;
     81 
     82 	struct tty *scr_tty;
     83 	int	scr_hold_screen;		/* hold tty output */
     84 
     85 	int scr_flags;
     86 #define SCR_OPEN 1		/* is it open? */
     87 #define SCR_WAITACTIVE 2	/* someone waiting on activation */
     88 #define SCR_GRAPHICS 4		/* graphics mode, no text (emulation) output */
     89 	const struct wscons_syncops *scr_syncops;
     90 	void *scr_synccookie;
     91 
     92 #ifdef WSDISPLAY_COMPAT_RAWKBD
     93 	int scr_rawkbd;
     94 #endif
     95 
     96 	struct wsdisplay_softc *sc;
     97 };
     98 
     99 struct wsscreen *wsscreen_attach __P((struct wsdisplay_softc *, int,
    100 				      const char *,
    101 				      const struct wsscreen_descr *, void *,
    102 				      int, int, long));
    103 void wsscreen_detach __P((struct wsscreen *));
    104 int wsdisplay_addscreen __P((struct wsdisplay_softc *, int, const char *, const char *));
    105 static void wsdisplay_shutdownhook __P((void *));
    106 static void wsdisplay_addscreen_print __P((struct wsdisplay_softc *, int, int));
    107 static void wsdisplay_closescreen __P((struct wsdisplay_softc *,
    108 				       struct wsscreen *));
    109 int wsdisplay_delscreen __P((struct wsdisplay_softc *, int, int));
    110 
    111 #define WSDISPLAY_MAXSCREEN 8
    112 
    113 struct wsdisplay_softc {
    114 	struct device sc_dv;
    115 
    116 	const struct wsdisplay_accessops *sc_accessops;
    117 	void	*sc_accesscookie;
    118 
    119 	const struct wsscreen_list *sc_scrdata;
    120 
    121 	struct wsscreen *sc_scr[WSDISPLAY_MAXSCREEN];
    122 	int sc_focusidx;	/* available only if sc_focus isn't null */
    123 	struct wsscreen *sc_focus;
    124 
    125 	int	sc_isconsole;
    126 
    127 	int sc_flags;
    128 #define SC_SWITCHPENDING 1
    129 	int sc_screenwanted, sc_oldscreen; /* valid with SC_SWITCHPENDING */
    130 
    131 #if NWSKBD > 0
    132 	struct wsmux_softc *sc_muxdv;
    133 #ifdef WSDISPLAY_COMPAT_RAWKBD
    134 	int sc_rawkbd;
    135 #endif
    136 #endif /* NWSKBD > 0 */
    137 };
    138 
    139 extern struct cfdriver wsdisplay_cd;
    140 
    141 /* Autoconfiguration definitions. */
    142 static int wsdisplay_emul_match __P((struct device *, struct cfdata *,
    143 	    void *));
    144 static void wsdisplay_emul_attach __P((struct device *, struct device *,
    145 	    void *));
    146 static int wsdisplay_noemul_match __P((struct device *, struct cfdata *,
    147 	    void *));
    148 static void wsdisplay_noemul_attach __P((struct device *, struct device *,
    149 	    void *));
    150 
    151 struct cfattach wsdisplay_emul_ca = {
    152 	sizeof (struct wsdisplay_softc),
    153 	wsdisplay_emul_match,
    154 	wsdisplay_emul_attach,
    155 };
    156 
    157 struct cfattach wsdisplay_noemul_ca = {
    158 	sizeof (struct wsdisplay_softc),
    159 	wsdisplay_noemul_match,
    160 	wsdisplay_noemul_attach,
    161 };
    162 
    163 /* Exported tty- and cdevsw-related functions. */
    164 cdev_decl(wsdisplay);
    165 
    166 static void wsdisplaystart __P((struct tty *));
    167 static int wsdisplayparam __P((struct tty *, struct termios *));
    168 
    169 
    170 /* Internal macros, functions, and variables. */
    171 #define	SET(t, f)	(t) |= (f)
    172 #define	CLR(t, f)	(t) &= ~(f)
    173 #define	ISSET(t, f)	((t) & (f))
    174 
    175 #define	WSDISPLAYUNIT(dev)	(minor(dev) >> 8)
    176 #define	WSDISPLAYSCREEN(dev)	(minor(dev) & 0xff)
    177 #define ISWSDISPLAYCTL(dev)	(WSDISPLAYSCREEN(dev) == 255)
    178 #define WSDISPLAYMINOR(unit, screen)	(((unit) << 8) | (screen))
    179 
    180 #define	WSSCREEN_HAS_EMULATOR(scr)	((scr)->scr_dconf->wsemul != NULL)
    181 #define	WSSCREEN_HAS_TTY(scr)	((scr)->scr_tty != NULL)
    182 
    183 static void wsdisplay_common_attach __P((struct wsdisplay_softc *sc,
    184 	    int console, const struct wsscreen_list *,
    185 	    const struct wsdisplay_accessops *accessops,
    186 	    void *accesscookie));
    187 
    188 #ifdef WSDISPLAY_COMPAT_RAWKBD
    189 int wsdisplay_update_rawkbd __P((struct wsdisplay_softc *,
    190 				 struct wsscreen *));
    191 #endif
    192 
    193 static int wsdisplay_console_initted;
    194 static struct wsdisplay_softc *wsdisplay_console_device;
    195 static struct wsscreen_internal wsdisplay_console_conf;
    196 
    197 static int wsdisplay_getc_dummy __P((dev_t));
    198 static void wsdisplay_pollc __P((dev_t, int));
    199 
    200 static int wsdisplay_cons_pollmode;
    201 static void (*wsdisplay_cons_kbd_pollc) __P((dev_t, int));
    202 
    203 static struct consdev wsdisplay_cons = {
    204 	NULL, NULL, wsdisplay_getc_dummy, wsdisplay_cnputc,
    205 	wsdisplay_pollc, NULL, NODEV, CN_NORMAL
    206 };
    207 
    208 #ifndef WSDISPLAY_DEFAULTSCREENS
    209 # define WSDISPLAY_DEFAULTSCREENS	0
    210 #endif
    211 int wsdisplay_defaultscreens = WSDISPLAY_DEFAULTSCREENS;
    212 
    213 int wsdisplay_switch1 __P((void *, int, int));
    214 int wsdisplay_switch2 __P((void *, int, int));
    215 int wsdisplay_switch3 __P((void *, int, int));
    216 
    217 int wsdisplay_clearonclose;
    218 
    219 struct wsscreen *
    220 wsscreen_attach(sc, console, emul, type, cookie, ccol, crow, defattr)
    221 	struct wsdisplay_softc *sc;
    222 	int console;
    223 	const char *emul;
    224 	const struct wsscreen_descr *type;
    225 	void *cookie;
    226 	int ccol, crow;
    227 	long defattr;
    228 {
    229 	struct wsscreen_internal *dconf;
    230 	struct wsscreen *scr;
    231 
    232 	scr = malloc(sizeof(struct wsscreen), M_DEVBUF, M_WAITOK);
    233 	if (!scr)
    234 		return (NULL);
    235 
    236 	if (console) {
    237 		dconf = &wsdisplay_console_conf;
    238 		/*
    239 		 * If there's an emulation, tell it about the callback argument.
    240 		 * The other stuff is already there.
    241 		 */
    242 		if (dconf->wsemul != NULL)
    243 			(*dconf->wsemul->attach)(1, 0, 0, 0, 0, scr, 0);
    244 	} else { /* not console */
    245 		dconf = malloc(sizeof(struct wsscreen_internal),
    246 			       M_DEVBUF, M_NOWAIT);
    247 		dconf->emulops = type->textops;
    248 		dconf->emulcookie = cookie;
    249 		if (dconf->emulops) {
    250 			dconf->wsemul = wsemul_pick(emul);
    251 			if (dconf->wsemul == NULL) {
    252 				free(dconf, M_DEVBUF);
    253 				free(scr, M_DEVBUF);
    254 				return (NULL);
    255 			}
    256 			dconf->wsemulcookie =
    257 			  (*dconf->wsemul->attach)(0, type, cookie,
    258 						   ccol, crow, scr, defattr);
    259 		} else
    260 			dconf->wsemul = NULL;
    261 		dconf->scrdata = type;
    262 	}
    263 
    264 	scr->scr_dconf = dconf;
    265 
    266 	scr->scr_tty = ttymalloc();
    267 	tty_attach(scr->scr_tty);
    268 	scr->scr_hold_screen = 0;
    269 	if (WSSCREEN_HAS_EMULATOR(scr))
    270 		scr->scr_flags = 0;
    271 	else
    272 		scr->scr_flags = SCR_GRAPHICS;
    273 
    274 	scr->scr_syncops = 0;
    275 	scr->sc = sc;
    276 #ifdef WSDISPLAY_COMPAT_RAWKBD
    277 	scr->scr_rawkbd = 0;
    278 #endif
    279 	return (scr);
    280 }
    281 
    282 void
    283 wsscreen_detach(scr)
    284 	struct wsscreen *scr;
    285 {
    286 	int ccol, crow; /* XXX */
    287 
    288 	if (WSSCREEN_HAS_TTY(scr)) {
    289 		tty_detach(scr->scr_tty);
    290 		ttyfree(scr->scr_tty);
    291 	}
    292 	if (WSSCREEN_HAS_EMULATOR(scr))
    293 		(*scr->scr_dconf->wsemul->detach)(scr->scr_dconf->wsemulcookie,
    294 						  &ccol, &crow);
    295 	free(scr->scr_dconf, M_DEVBUF);
    296 	free(scr, M_DEVBUF);
    297 }
    298 
    299 const struct wsscreen_descr *
    300 wsdisplay_screentype_pick(scrdata, name)
    301 	const struct wsscreen_list *scrdata;
    302 	const char *name;
    303 {
    304 	int i;
    305 	const struct wsscreen_descr *scr;
    306 
    307 	KASSERT(scrdata->nscreens > 0);
    308 
    309 	if (name == NULL)
    310 		return (scrdata->screens[0]);
    311 
    312 	for (i = 0; i < scrdata->nscreens; i++) {
    313 		scr = scrdata->screens[i];
    314 		if (!strcmp(name, scr->name))
    315 			return (scr);
    316 	}
    317 
    318 	return (0);
    319 }
    320 
    321 /*
    322  * print info about attached screen
    323  */
    324 static void
    325 wsdisplay_addscreen_print(sc, idx, count)
    326 	struct wsdisplay_softc *sc;
    327 	int idx, count;
    328 {
    329 	printf("%s: screen %d", sc->sc_dv.dv_xname, idx);
    330 	if (count > 1)
    331 		printf("-%d", idx + (count-1));
    332 	printf(" added (%s", sc->sc_scr[idx]->scr_dconf->scrdata->name);
    333 	if (WSSCREEN_HAS_EMULATOR(sc->sc_scr[idx])) {
    334 		printf(", %s emulation",
    335 			sc->sc_scr[idx]->scr_dconf->wsemul->name);
    336 	}
    337 	printf(")\n");
    338 }
    339 
    340 int
    341 wsdisplay_addscreen(sc, idx, screentype, emul)
    342 	struct wsdisplay_softc *sc;
    343 	int idx;
    344 	const char *screentype, *emul;
    345 {
    346 	const struct wsscreen_descr *scrdesc;
    347 	int error;
    348 	void *cookie;
    349 	int ccol, crow;
    350 	long defattr;
    351 	struct wsscreen *scr;
    352 	int s;
    353 
    354 	if (idx < 0 || idx >= WSDISPLAY_MAXSCREEN)
    355 		return (EINVAL);
    356 	if (sc->sc_scr[idx] != NULL)
    357 		return (EBUSY);
    358 
    359 	scrdesc = wsdisplay_screentype_pick(sc->sc_scrdata, screentype);
    360 	if (!scrdesc)
    361 		return (ENXIO);
    362 	error = (*sc->sc_accessops->alloc_screen)(sc->sc_accesscookie,
    363 			scrdesc, &cookie, &ccol, &crow, &defattr);
    364 	if (error)
    365 		return (error);
    366 
    367 	scr = wsscreen_attach(sc, 0, emul, scrdesc,
    368 			      cookie, ccol, crow, defattr);
    369 	if (scr == NULL) {
    370 		(*sc->sc_accessops->free_screen)(sc->sc_accesscookie,
    371 						 cookie);
    372 		return (ENXIO);
    373 	}
    374 
    375 	sc->sc_scr[idx] = scr;
    376 
    377 	/* if no screen has focus yet, activate the first we get */
    378 	s = spltty();
    379 	if (!sc->sc_focus) {
    380 		(*sc->sc_accessops->show_screen)(sc->sc_accesscookie,
    381 						 scr->scr_dconf->emulcookie,
    382 						 0, 0, 0);
    383 		sc->sc_focusidx = idx;
    384 		sc->sc_focus = scr;
    385 	}
    386 	splx(s);
    387 	return (0);
    388 }
    389 
    390 static void
    391 wsdisplay_closescreen(sc, scr)
    392 	struct wsdisplay_softc *sc;
    393 	struct wsscreen *scr;
    394 {
    395 	int maj, mn, idx;
    396 
    397 	/* hangup */
    398 	if (WSSCREEN_HAS_TTY(scr)) {
    399 		struct tty *tp = scr->scr_tty;
    400 		(*tp->t_linesw->l_modem)(tp, 0);
    401 	}
    402 
    403 	/* locate the major number */
    404 	for (maj = 0; maj < nchrdev; maj++)
    405 		if (cdevsw[maj].d_open == wsdisplayopen)
    406 			break;
    407 	/* locate the screen index */
    408 	for (idx = 0; idx < WSDISPLAY_MAXSCREEN; idx++)
    409 		if (scr == sc->sc_scr[idx])
    410 			break;
    411 #ifdef DIAGNOSTIC
    412 	if (idx == WSDISPLAY_MAXSCREEN)
    413 		panic("wsdisplay_forceclose: bad screen");
    414 #endif
    415 
    416 	/* nuke the vnodes */
    417 	mn = WSDISPLAYMINOR(sc->sc_dv.dv_unit, idx);
    418 	vdevgone(maj, mn, mn, VCHR);
    419 }
    420 
    421 int
    422 wsdisplay_delscreen(sc, idx, flags)
    423 	struct wsdisplay_softc *sc;
    424 	int idx, flags;
    425 {
    426 	struct wsscreen *scr;
    427 	int s;
    428 	void *cookie;
    429 
    430 	if (idx < 0 || idx >= WSDISPLAY_MAXSCREEN)
    431 		return (EINVAL);
    432 	scr = sc->sc_scr[idx];
    433 	if (!scr)
    434 		return (ENXIO);
    435 
    436 	if (scr->scr_dconf == &wsdisplay_console_conf ||
    437 	    scr->scr_syncops ||
    438 	    ((scr->scr_flags & SCR_OPEN) && !(flags & WSDISPLAY_DELSCR_FORCE)))
    439 		return(EBUSY);
    440 
    441 	wsdisplay_closescreen(sc, scr);
    442 
    443 	/*
    444 	 * delete pointers, so neither device entries
    445 	 * nor keyboard input can reference it anymore
    446 	 */
    447 	s = spltty();
    448 	if (sc->sc_focus == scr) {
    449 		sc->sc_focus = 0;
    450 #ifdef WSDISPLAY_COMPAT_RAWKBD
    451 		wsdisplay_update_rawkbd(sc, 0);
    452 #endif
    453 	}
    454 	sc->sc_scr[idx] = 0;
    455 	splx(s);
    456 
    457 	/*
    458 	 * Wake up processes waiting for the screen to
    459 	 * be activated. Sleepers must check whether
    460 	 * the screen still exists.
    461 	 */
    462 	if (scr->scr_flags & SCR_WAITACTIVE)
    463 		wakeup(scr);
    464 
    465 	/* save a reference to the graphics screen */
    466 	cookie = scr->scr_dconf->emulcookie;
    467 
    468 	wsscreen_detach(scr);
    469 
    470 	(*sc->sc_accessops->free_screen)(sc->sc_accesscookie,
    471 					 cookie);
    472 
    473 	printf("%s: screen %d deleted\n", sc->sc_dv.dv_xname, idx);
    474 	return (0);
    475 }
    476 
    477 /*
    478  * Autoconfiguration functions.
    479  */
    480 int
    481 wsdisplay_emul_match(parent, match, aux)
    482 	struct device *parent;
    483 	struct cfdata *match;
    484 	void *aux;
    485 {
    486 	struct wsemuldisplaydev_attach_args *ap = aux;
    487 
    488 	if (match->wsemuldisplaydevcf_console !=
    489 	    WSEMULDISPLAYDEVCF_CONSOLE_UNK) {
    490 		/*
    491 		 * If console-ness of device specified, either match
    492 		 * exactly (at high priority), or fail.
    493 		 */
    494 		if (match->wsemuldisplaydevcf_console != 0 &&
    495 		    ap->console != 0)
    496 			return (10);
    497 		else
    498 			return (0);
    499 	}
    500 
    501 	/* If console-ness unspecified, it wins. */
    502 	return (1);
    503 }
    504 
    505 void
    506 wsdisplay_emul_attach(parent, self, aux)
    507 	struct device *parent, *self;
    508 	void *aux;
    509 {
    510 	struct wsdisplay_softc *sc = (struct wsdisplay_softc *)self;
    511 	struct wsemuldisplaydev_attach_args *ap = aux;
    512 
    513 	wsdisplay_common_attach(sc, ap->console, ap->scrdata,
    514 				ap->accessops, ap->accesscookie);
    515 
    516 	if (ap->console) {
    517 		int maj;
    518 
    519 		/* locate the major number */
    520 		for (maj = 0; maj < nchrdev; maj++)
    521 			if (cdevsw[maj].d_open == wsdisplayopen)
    522 				break;
    523 
    524 		cn_tab->cn_dev = makedev(maj, WSDISPLAYMINOR(self->dv_unit, 0));
    525 	}
    526 }
    527 
    528 /* Print function (for parent devices). */
    529 int
    530 wsemuldisplaydevprint(aux, pnp)
    531 	void *aux;
    532 	const char *pnp;
    533 {
    534 #if 0 /* -Wunused */
    535 	struct wsemuldisplaydev_attach_args *ap = aux;
    536 #endif
    537 
    538 	if (pnp)
    539 		printf("wsdisplay at %s", pnp);
    540 #if 0 /* don't bother; it's ugly */
    541 	printf(" console %d", ap->console);
    542 #endif
    543 
    544 	return (UNCONF);
    545 }
    546 
    547 int
    548 wsdisplay_noemul_match(parent, match, aux)
    549 	struct device *parent;
    550 	struct cfdata *match;
    551 	void *aux;
    552 {
    553 #if 0 /* -Wunused */
    554 	struct wsdisplaydev_attach_args *ap = aux;
    555 #endif
    556 
    557 	/* Always match. */
    558 	return (1);
    559 }
    560 
    561 void
    562 wsdisplay_noemul_attach(parent, self, aux)
    563 	struct device *parent, *self;
    564 	void *aux;
    565 {
    566 	struct wsdisplay_softc *sc = (struct wsdisplay_softc *)self;
    567 	struct wsdisplaydev_attach_args *ap = aux;
    568 
    569 	wsdisplay_common_attach(sc, 0, NULL, ap->accessops, ap->accesscookie);
    570 }
    571 
    572 /* Print function (for parent devices). */
    573 int
    574 wsdisplaydevprint(aux, pnp)
    575 	void *aux;
    576 	const char *pnp;
    577 {
    578 #if 0 /* -Wunused */
    579 	struct wsdisplaydev_attach_args *ap = aux;
    580 #endif
    581 
    582 	if (pnp)
    583 		printf("wsdisplay at %s", pnp);
    584 
    585 	return (UNCONF);
    586 }
    587 
    588 static void
    589 wsdisplay_common_attach(sc, console, scrdata, accessops, accesscookie)
    590 	struct wsdisplay_softc *sc;
    591 	int console;
    592 	const struct wsscreen_list *scrdata;
    593 	const struct wsdisplay_accessops *accessops;
    594 	void *accesscookie;
    595 {
    596 	static int hookset;
    597 	int i, start=0;
    598 #if NWSKBD > 0
    599 	struct device *dv;
    600 
    601 	sc->sc_muxdv = wsmux_create("dmux", sc->sc_dv.dv_unit);
    602 	if (!sc->sc_muxdv)
    603 		panic("wsdisplay_common_attach: no memory\n");
    604 	sc->sc_muxdv->sc_displaydv = &sc->sc_dv;
    605 #endif
    606 
    607 	sc->sc_isconsole = console;
    608 
    609 	if (console) {
    610 		KASSERT(wsdisplay_console_initted);
    611 		KASSERT(wsdisplay_console_device == NULL);
    612 
    613 		sc->sc_scr[0] = wsscreen_attach(sc, 1, 0, 0, 0, 0, 0, 0);
    614 		wsdisplay_console_device = sc;
    615 
    616 		printf(": console (%s, %s emulation)",
    617 		       wsdisplay_console_conf.scrdata->name,
    618 		       wsdisplay_console_conf.wsemul->name);
    619 
    620 #if NWSKBD > 0
    621 		if ((dv = wskbd_set_console_display(&sc->sc_dv, sc->sc_muxdv)))
    622 			printf(", using %s", dv->dv_xname);
    623 #endif
    624 
    625 		sc->sc_focusidx = 0;
    626 		sc->sc_focus = sc->sc_scr[0];
    627 		start = 1;
    628 	}
    629 	printf("\n");
    630 
    631 	sc->sc_accessops = accessops;
    632 	sc->sc_accesscookie = accesscookie;
    633 	sc->sc_scrdata = scrdata;
    634 
    635 	/*
    636 	 * Set up a number of virtual screens if wanted. The
    637 	 * WSDISPLAYIO_ADDSCREEN ioctl is more flexible, so this code
    638 	 * is for special cases like installation kernels.
    639 	 */
    640 	for (i = start; i < wsdisplay_defaultscreens; i++) {
    641 		if (wsdisplay_addscreen(sc, i, 0, 0))
    642 			break;
    643 	}
    644 
    645 	if (i > start)
    646 		wsdisplay_addscreen_print(sc, start, i-start);
    647 
    648 	if (hookset == 0)
    649 		shutdownhook_establish(wsdisplay_shutdownhook, NULL);
    650 	hookset = 1;
    651 }
    652 
    653 void
    654 wsdisplay_cnattach(type, cookie, ccol, crow, defattr)
    655 	const struct wsscreen_descr *type;
    656 	void *cookie;
    657 	int ccol, crow;
    658 	long defattr;
    659 {
    660 	const struct wsemul_ops *wsemul;
    661 
    662 	KASSERT(!wsdisplay_console_initted);
    663 	KASSERT(type->nrows > 0);
    664 	KASSERT(type->ncols > 0);
    665 	KASSERT(crow < type->nrows);
    666 	KASSERT(ccol < type->ncols);
    667 
    668 	wsdisplay_console_conf.emulops = type->textops;
    669 	wsdisplay_console_conf.emulcookie = cookie;
    670 	wsdisplay_console_conf.scrdata = type;
    671 
    672 	wsemul = wsemul_pick(0); /* default */
    673 	wsdisplay_console_conf.wsemul = wsemul;
    674 	wsdisplay_console_conf.wsemulcookie = (*wsemul->cnattach)(type, cookie,
    675 								  ccol, crow,
    676 								  defattr);
    677 
    678 	cn_tab = &wsdisplay_cons;
    679 	wsdisplay_console_initted = 1;
    680 }
    681 
    682 /*
    683  * Tty and cdevsw functions.
    684  */
    685 int
    686 wsdisplayopen(dev, flag, mode, p)
    687 	dev_t dev;
    688 	int flag, mode;
    689 	struct proc *p;
    690 {
    691 	struct wsdisplay_softc *sc;
    692 	struct tty *tp;
    693 	int newopen, error;
    694 	struct wsscreen *scr;
    695 
    696 	sc = device_lookup(&wsdisplay_cd, WSDISPLAYUNIT(dev));
    697 	if (sc == NULL)			/* make sure it was attached */
    698 		return (ENXIO);
    699 
    700 	if (ISWSDISPLAYCTL(dev))
    701 		return (0);
    702 
    703 	if (WSDISPLAYSCREEN(dev) >= WSDISPLAY_MAXSCREEN)
    704 		return (ENXIO);
    705 	scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
    706 	if (!scr)
    707 		return (ENXIO);
    708 
    709 	if (WSSCREEN_HAS_TTY(scr)) {
    710 		tp = scr->scr_tty;
    711 		tp->t_oproc = wsdisplaystart;
    712 		tp->t_param = wsdisplayparam;
    713 		tp->t_dev = dev;
    714 		newopen = (tp->t_state & TS_ISOPEN) == 0;
    715 		if (newopen) {
    716 			ttychars(tp);
    717 			tp->t_iflag = TTYDEF_IFLAG;
    718 			tp->t_oflag = TTYDEF_OFLAG;
    719 			tp->t_cflag = TTYDEF_CFLAG;
    720 			tp->t_lflag = TTYDEF_LFLAG;
    721 			tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
    722 			wsdisplayparam(tp, &tp->t_termios);
    723 			ttsetwater(tp);
    724 		} else if ((tp->t_state & TS_XCLUDE) != 0 &&
    725 			   p->p_ucred->cr_uid != 0)
    726 			return EBUSY;
    727 		tp->t_state |= TS_CARR_ON;
    728 
    729 		error = ((*tp->t_linesw->l_open)(dev, tp));
    730 		if (error)
    731 			return (error);
    732 
    733 		if (newopen && WSSCREEN_HAS_EMULATOR(scr)) {
    734 			/* set window sizes as appropriate, and reset
    735 			 the emulation */
    736 			tp->t_winsize.ws_row = scr->scr_dconf->scrdata->nrows;
    737 			tp->t_winsize.ws_col = scr->scr_dconf->scrdata->ncols;
    738 
    739 			/* wsdisplay_set_emulation() */
    740 		}
    741 	}
    742 
    743 	scr->scr_flags |= SCR_OPEN;
    744 	return (0);
    745 }
    746 
    747 int
    748 wsdisplayclose(dev, flag, mode, p)
    749 	dev_t dev;
    750 	int flag, mode;
    751 	struct proc *p;
    752 {
    753 	struct wsdisplay_softc *sc;
    754 	struct tty *tp;
    755 	struct wsscreen *scr;
    756 
    757 	sc = device_lookup(&wsdisplay_cd, WSDISPLAYUNIT(dev));
    758 
    759 	if (ISWSDISPLAYCTL(dev))
    760 		return (0);
    761 
    762 	scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
    763 
    764 	if (WSSCREEN_HAS_TTY(scr)) {
    765 		if (scr->scr_hold_screen) {
    766 			int s;
    767 
    768 			/* XXX RESET KEYBOARD LEDS, etc. */
    769 			s = spltty();	/* avoid conflict with keyboard */
    770 			wsdisplay_kbdholdscreen((struct device *)sc, 0);
    771 			splx(s);
    772 		}
    773 		tp = scr->scr_tty;
    774 		(*tp->t_linesw->l_close)(tp, flag);
    775 		ttyclose(tp);
    776 	}
    777 
    778 	if (scr->scr_syncops)
    779 		(*scr->scr_syncops->destroy)(scr->scr_synccookie);
    780 
    781 	if (WSSCREEN_HAS_EMULATOR(scr)) {
    782 		scr->scr_flags &= ~SCR_GRAPHICS;
    783 		(*scr->scr_dconf->wsemul->reset)(scr->scr_dconf->wsemulcookie,
    784 						 WSEMUL_RESET);
    785 		if (wsdisplay_clearonclose)
    786 			(*scr->scr_dconf->wsemul->reset)
    787 				(scr->scr_dconf->wsemulcookie,
    788 				 WSEMUL_CLEARSCREEN);
    789 	}
    790 
    791 #ifdef WSDISPLAY_COMPAT_RAWKBD
    792 	if (scr->scr_rawkbd) {
    793 		int kbmode = WSKBD_TRANSLATED;
    794 		(void) wsdisplay_internal_ioctl(sc, scr, WSKBDIO_SETMODE,
    795 						(caddr_t)&kbmode, 0, p);
    796 	}
    797 #endif
    798 
    799 	scr->scr_flags &= ~SCR_OPEN;
    800 
    801 	return (0);
    802 }
    803 
    804 int
    805 wsdisplayread(dev, uio, flag)
    806 	dev_t dev;
    807 	struct uio *uio;
    808 	int flag;
    809 {
    810 	struct wsdisplay_softc *sc;
    811 	struct tty *tp;
    812 	struct wsscreen *scr;
    813 
    814 	sc = device_lookup(&wsdisplay_cd, WSDISPLAYUNIT(dev));
    815 
    816 	if (ISWSDISPLAYCTL(dev))
    817 		return (0);
    818 
    819 	scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
    820 
    821 	if (!WSSCREEN_HAS_TTY(scr))
    822 		return (ENODEV);
    823 
    824 	tp = scr->scr_tty;
    825 	return ((*tp->t_linesw->l_read)(tp, uio, flag));
    826 }
    827 
    828 int
    829 wsdisplaywrite(dev, uio, flag)
    830 	dev_t dev;
    831 	struct uio *uio;
    832 	int flag;
    833 {
    834 	struct wsdisplay_softc *sc;
    835 	struct tty *tp;
    836 	struct wsscreen *scr;
    837 
    838 	sc = device_lookup(&wsdisplay_cd, WSDISPLAYUNIT(dev));
    839 
    840 	if (ISWSDISPLAYCTL(dev))
    841 		return (0);
    842 
    843 	scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
    844 
    845 	if (!WSSCREEN_HAS_TTY(scr))
    846 		return (ENODEV);
    847 
    848 	tp = scr->scr_tty;
    849 	return ((*tp->t_linesw->l_write)(tp, uio, flag));
    850 }
    851 
    852 int
    853 wsdisplaypoll(dev, events, p)
    854 	dev_t dev;
    855 	int events;
    856 	struct proc *p;
    857 {
    858 	struct wsdisplay_softc *sc;
    859 	struct tty *tp;
    860 	struct wsscreen *scr;
    861 
    862 	sc = device_lookup(&wsdisplay_cd, WSDISPLAYUNIT(dev));
    863 
    864 	if (ISWSDISPLAYCTL(dev))
    865 		return (0);
    866 
    867 	scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
    868 
    869 	if (!WSSCREEN_HAS_TTY(scr))
    870 		return (ENODEV);
    871 
    872 	tp = scr->scr_tty;
    873 	return ((*tp->t_linesw->l_poll)(tp, events, p));
    874 }
    875 
    876 int
    877 wsdisplaykqfilter(dev, kn)
    878 	dev_t dev;
    879 	struct knote *kn;
    880 {
    881 	struct wsdisplay_softc *sc =
    882 	    device_lookup(&wsdisplay_cd, WSDISPLAYUNIT(dev));
    883 	struct wsscreen *scr;
    884 
    885 	if (ISWSDISPLAYCTL(dev))
    886 		return (0);
    887 
    888 	scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
    889 
    890 	if (WSSCREEN_HAS_TTY(scr))
    891 		return (ttykqfilter(dev, kn));
    892 	else
    893 		return (0);
    894 }
    895 
    896 struct tty *
    897 wsdisplaytty(dev)
    898 	dev_t dev;
    899 {
    900 	struct wsdisplay_softc *sc;
    901 	struct wsscreen *scr;
    902 
    903 	sc = device_lookup(&wsdisplay_cd, WSDISPLAYUNIT(dev));
    904 
    905 	if (ISWSDISPLAYCTL(dev))
    906 		panic("wsdisplaytty() on ctl device");
    907 
    908 	scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
    909 
    910 	return (scr->scr_tty);
    911 }
    912 
    913 int
    914 wsdisplayioctl(dev, cmd, data, flag, p)
    915 	dev_t dev;
    916 	u_long cmd;
    917 	caddr_t data;
    918 	int flag;
    919 	struct proc *p;
    920 {
    921 	struct wsdisplay_softc *sc;
    922 	struct tty *tp;
    923 	int error;
    924 	struct wsscreen *scr;
    925 
    926 	sc = device_lookup(&wsdisplay_cd, WSDISPLAYUNIT(dev));
    927 
    928 #ifdef WSDISPLAY_COMPAT_USL
    929 	error = wsdisplay_usl_ioctl1(sc, cmd, data, flag, p);
    930 	if (error >= 0)
    931 		return (error);
    932 #endif
    933 
    934 	if (ISWSDISPLAYCTL(dev))
    935 		return (wsdisplay_cfg_ioctl(sc, cmd, data, flag, p));
    936 
    937 	scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
    938 
    939 	if (WSSCREEN_HAS_TTY(scr)) {
    940 		tp = scr->scr_tty;
    941 
    942 /* printf("disc\n"); */
    943 		/* do the line discipline ioctls first */
    944 		error = (*tp->t_linesw->l_ioctl)(tp, cmd, data, flag, p);
    945 		if (error >= 0)
    946 			return (error);
    947 
    948 /* printf("tty\n"); */
    949 		/* then the tty ioctls */
    950 		error = ttioctl(tp, cmd, data, flag, p);
    951 		if (error >= 0)
    952 			return (error);
    953 	}
    954 
    955 #ifdef WSDISPLAY_COMPAT_USL
    956 	error = wsdisplay_usl_ioctl2(sc, scr, cmd, data, flag, p);
    957 	if (error >= 0)
    958 		return (error);
    959 #endif
    960 
    961 	error = wsdisplay_internal_ioctl(sc, scr, cmd, data, flag, p);
    962 	return (error != -1 ? error : ENOTTY);
    963 }
    964 
    965 int
    966 wsdisplay_param(dev, cmd, dp)
    967 	struct device *dev;
    968 	u_long cmd;
    969 	struct wsdisplay_param *dp;
    970 {
    971 	struct wsdisplay_softc *sc = (struct wsdisplay_softc *)dev;
    972 	return ((*sc->sc_accessops->ioctl)(sc->sc_accesscookie, cmd,
    973 					   (caddr_t)dp, 0, NULL));
    974 }
    975 
    976 int
    977 wsdisplay_internal_ioctl(sc, scr, cmd, data, flag, p)
    978 	struct wsdisplay_softc *sc;
    979 	struct wsscreen *scr;
    980 	u_long cmd;
    981 	caddr_t data;
    982 	int flag;
    983 	struct proc *p;
    984 {
    985 	int error;
    986 	char namebuf[16];
    987 	struct wsdisplay_font fd;
    988 
    989 #if NWSKBD > 0
    990 #ifdef WSDISPLAY_COMPAT_RAWKBD
    991 	switch (cmd) {
    992 	case WSKBDIO_SETMODE:
    993 		scr->scr_rawkbd = (*(int *)data == WSKBD_RAW);
    994 		return (wsdisplay_update_rawkbd(sc, scr));
    995 	case WSKBDIO_GETMODE:
    996 		*(int *)data = (scr->scr_rawkbd ?
    997 				WSKBD_RAW : WSKBD_TRANSLATED);
    998 		return (0);
    999 	}
   1000 #endif
   1001 	error = wsmux_displayioctl(&sc->sc_muxdv->sc_dv, cmd, data, flag, p);
   1002 	if (error >= 0)
   1003 		return (error);
   1004 #endif /* NWSKBD > 0 */
   1005 
   1006 	switch (cmd) {
   1007 	case WSDISPLAYIO_GMODE:
   1008 		*(u_int *)data = (scr->scr_flags & SCR_GRAPHICS ?
   1009 				  WSDISPLAYIO_MODE_MAPPED :
   1010 				  WSDISPLAYIO_MODE_EMUL);
   1011 		return (0);
   1012 
   1013 	case WSDISPLAYIO_SMODE:
   1014 #define d (*(int *)data)
   1015 		if (d != WSDISPLAYIO_MODE_EMUL &&
   1016 		    d != WSDISPLAYIO_MODE_MAPPED)
   1017 			return (EINVAL);
   1018 
   1019 	    if (WSSCREEN_HAS_EMULATOR(scr)) {
   1020 		    scr->scr_flags &= ~SCR_GRAPHICS;
   1021 		    if (d == WSDISPLAYIO_MODE_MAPPED)
   1022 			    scr->scr_flags |= SCR_GRAPHICS;
   1023 	    } else if (d == WSDISPLAYIO_MODE_EMUL)
   1024 		    return (EINVAL);
   1025 
   1026 	    (void)(*sc->sc_accessops->ioctl)(sc->sc_accesscookie, cmd, data,
   1027 		    flag, p);
   1028 
   1029 	    return (0);
   1030 #undef d
   1031 
   1032 	case WSDISPLAYIO_USEFONT:
   1033 #define d ((struct wsdisplay_usefontdata *)data)
   1034 		if (!sc->sc_accessops->load_font)
   1035 			return (EINVAL);
   1036 		if (d->name) {
   1037 			error = copyinstr(d->name, namebuf, sizeof(namebuf), 0);
   1038 			if (error)
   1039 				return (error);
   1040 			fd.name = namebuf;
   1041 		} else
   1042 			fd.name = 0;
   1043 		fd.data = 0;
   1044 		error = (*sc->sc_accessops->load_font)(sc->sc_accesscookie,
   1045 					scr->scr_dconf->emulcookie, &fd);
   1046 		if (!error && WSSCREEN_HAS_EMULATOR(scr))
   1047 			(*scr->scr_dconf->wsemul->reset)
   1048 				(scr->scr_dconf->wsemulcookie, WSEMUL_SYNCFONT);
   1049 		return (error);
   1050 #undef d
   1051 	}
   1052 
   1053 	/* check ioctls for display */
   1054 	return ((*sc->sc_accessops->ioctl)(sc->sc_accesscookie, cmd, data,
   1055 	    flag, p));
   1056 }
   1057 
   1058 int
   1059 wsdisplay_cfg_ioctl(sc, cmd, data, flag, p)
   1060 	struct wsdisplay_softc *sc;
   1061 	u_long cmd;
   1062 	caddr_t data;
   1063 	int flag;
   1064 	struct proc *p;
   1065 {
   1066 	int error;
   1067 	char *type, typebuf[16], *emul, emulbuf[16];
   1068 	void *buf;
   1069 #if defined(COMPAT_14) && NWSKBD > 0
   1070 	struct wsmux_device wsmuxdata;
   1071 #endif
   1072 
   1073 	switch (cmd) {
   1074 	case WSDISPLAYIO_ADDSCREEN:
   1075 #define d ((struct wsdisplay_addscreendata *)data)
   1076 		if (d->screentype) {
   1077 			error = copyinstr(d->screentype, typebuf,
   1078 					  sizeof(typebuf), 0);
   1079 			if (error)
   1080 				return (error);
   1081 			type = typebuf;
   1082 		} else
   1083 			type = 0;
   1084 		if (d->emul) {
   1085 			error = copyinstr(d->emul, emulbuf, sizeof(emulbuf),0);
   1086 			if (error)
   1087 				return (error);
   1088 			emul = emulbuf;
   1089 		} else
   1090 			emul = 0;
   1091 
   1092 		if ((error = wsdisplay_addscreen(sc, d->idx, type, emul)) == 0)
   1093 			wsdisplay_addscreen_print(sc, d->idx, 0);
   1094 		return (error);
   1095 #undef d
   1096 	case WSDISPLAYIO_DELSCREEN:
   1097 #define d ((struct wsdisplay_delscreendata *)data)
   1098 		return (wsdisplay_delscreen(sc, d->idx, d->flags));
   1099 #undef d
   1100 	case WSDISPLAYIO_LDFONT:
   1101 #define d ((struct wsdisplay_font *)data)
   1102 		if (!sc->sc_accessops->load_font)
   1103 			return (EINVAL);
   1104 		if (d->name) {
   1105 			error = copyinstr(d->name, typebuf, sizeof(typebuf), 0);
   1106 			if (error)
   1107 				return (error);
   1108 			d->name = typebuf;
   1109 		} else
   1110 			d->name = "loaded"; /* ??? */
   1111 		buf = malloc(d->fontheight * d->stride * d->numchars,
   1112 			     M_DEVBUF, M_WAITOK);
   1113 		error = copyin(d->data, buf,
   1114 			       d->fontheight * d->stride * d->numchars);
   1115 		if (error) {
   1116 			free(buf, M_DEVBUF);
   1117 			return (error);
   1118 		}
   1119 		d->data = buf;
   1120 		error =
   1121 		  (*sc->sc_accessops->load_font)(sc->sc_accesscookie, 0, d);
   1122 		free(buf, M_DEVBUF);
   1123 #undef d
   1124 		return (error);
   1125 
   1126 #if NWSKBD > 0
   1127 #ifdef COMPAT_14
   1128 	case _O_WSDISPLAYIO_SETKEYBOARD:
   1129 #define d ((struct wsdisplay_kbddata *)data)
   1130 		switch (d->op) {
   1131 		case _O_WSDISPLAY_KBD_ADD:
   1132 			if (d->idx == -1) {
   1133 				d->idx = wskbd_pickfree();
   1134 				if (d->idx == -1)
   1135 					return (ENXIO);
   1136 			}
   1137 			wsmuxdata.type = WSMUX_KBD;
   1138 			wsmuxdata.idx = d->idx;
   1139 			return (wsmuxdoioctl(&sc->sc_muxdv->sc_dv,
   1140 					     WSMUX_ADD_DEVICE,
   1141 					     (caddr_t)&wsmuxdata, flag, p));
   1142 		case _O_WSDISPLAY_KBD_DEL:
   1143 			wsmuxdata.type = WSMUX_KBD;
   1144 			wsmuxdata.idx = d->idx;
   1145 			return (wsmuxdoioctl(&sc->sc_muxdv->sc_dv,
   1146 					     WSMUX_REMOVE_DEVICE,
   1147 					     (caddr_t)&wsmuxdata, flag, p));
   1148 		default:
   1149 			return (EINVAL);
   1150 		}
   1151 #undef d
   1152 #endif
   1153 
   1154 	case WSMUX_ADD_DEVICE:
   1155 #define d ((struct wsmux_device *)data)
   1156 		if (d->idx == -1 && d->type == WSMUX_KBD)
   1157 			d->idx = wskbd_pickfree();
   1158 #undef d
   1159 		/* fall into */
   1160 	case WSMUX_INJECTEVENT:
   1161 	case WSMUX_REMOVE_DEVICE:
   1162 	case WSMUX_LIST_DEVICES:
   1163 		return (wsmuxdoioctl(&sc->sc_muxdv->sc_dv, cmd, data, flag,p));
   1164 #endif /* NWSKBD > 0 */
   1165 
   1166 	}
   1167 	return (EINVAL);
   1168 }
   1169 
   1170 paddr_t
   1171 wsdisplaymmap(dev, offset, prot)
   1172 	dev_t dev;
   1173 	off_t offset;
   1174 	int prot;
   1175 {
   1176 	struct wsdisplay_softc *sc =
   1177 	    device_lookup(&wsdisplay_cd, WSDISPLAYUNIT(dev));
   1178 	struct wsscreen *scr;
   1179 
   1180 	if (ISWSDISPLAYCTL(dev))
   1181 		return (-1);
   1182 
   1183 	scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
   1184 
   1185 	if (!(scr->scr_flags & SCR_GRAPHICS))
   1186 		return (-1);
   1187 
   1188 	/* pass mmap to display */
   1189 	return ((*sc->sc_accessops->mmap)(sc->sc_accesscookie, offset, prot));
   1190 }
   1191 
   1192 void
   1193 wsdisplaystart(tp)
   1194 	struct tty *tp;
   1195 {
   1196 	struct wsdisplay_softc *sc;
   1197 	struct wsscreen *scr;
   1198 	int s, n;
   1199 	u_char *buf;
   1200 
   1201 	s = spltty();
   1202 	if (tp->t_state & (TS_TIMEOUT | TS_BUSY | TS_TTSTOP)) {
   1203 		splx(s);
   1204 		return;
   1205 	}
   1206 	sc = device_lookup(&wsdisplay_cd, WSDISPLAYUNIT(tp->t_dev));
   1207 	scr = sc->sc_scr[WSDISPLAYSCREEN(tp->t_dev)];
   1208 	if (scr->scr_hold_screen) {
   1209 		tp->t_state |= TS_TIMEOUT;
   1210 		splx(s);
   1211 		return;
   1212 	}
   1213 	tp->t_state |= TS_BUSY;
   1214 	splx(s);
   1215 
   1216 	/*
   1217 	 * Drain output from ring buffer.
   1218 	 * The output will normally be in one contiguous chunk, but when the
   1219 	 * ring wraps, it will be in two pieces.. one at the end of the ring,
   1220 	 * the other at the start.  For performance, rather than loop here,
   1221 	 * we output one chunk, see if there's another one, and if so, output
   1222 	 * it too.
   1223 	 */
   1224 
   1225 	n = ndqb(&tp->t_outq, 0);
   1226 	buf = tp->t_outq.c_cf;
   1227 
   1228 	if (!(scr->scr_flags & SCR_GRAPHICS)) {
   1229 		KASSERT(WSSCREEN_HAS_EMULATOR(scr));
   1230 		(*scr->scr_dconf->wsemul->output)(scr->scr_dconf->wsemulcookie,
   1231 						  buf, n, 0);
   1232 	}
   1233 	ndflush(&tp->t_outq, n);
   1234 
   1235 	if ((n = ndqb(&tp->t_outq, 0)) > 0) {
   1236 		buf = tp->t_outq.c_cf;
   1237 
   1238 		if (!(scr->scr_flags & SCR_GRAPHICS)) {
   1239 			KASSERT(WSSCREEN_HAS_EMULATOR(scr));
   1240 			(*scr->scr_dconf->wsemul->output)(scr->scr_dconf->wsemulcookie,
   1241 							  buf, n, 0);
   1242 		}
   1243 		ndflush(&tp->t_outq, n);
   1244 	}
   1245 
   1246 	s = spltty();
   1247 	tp->t_state &= ~TS_BUSY;
   1248 	/* Come back if there's more to do */
   1249 	if (tp->t_outq.c_cc) {
   1250 		tp->t_state |= TS_TIMEOUT;
   1251 		callout_reset(&tp->t_rstrt_ch, (hz > 128) ? (hz / 128) : 1,
   1252 		    ttrstrt, tp);
   1253 	}
   1254 	if (tp->t_outq.c_cc <= tp->t_lowat) {
   1255 		if (tp->t_state&TS_ASLEEP) {
   1256 			tp->t_state &= ~TS_ASLEEP;
   1257 			wakeup((caddr_t)&tp->t_outq);
   1258 		}
   1259 		selwakeup(&tp->t_wsel);
   1260 	}
   1261 	splx(s);
   1262 }
   1263 
   1264 void
   1265 wsdisplaystop(tp, flag)
   1266 	struct tty *tp;
   1267 	int flag;
   1268 {
   1269 	int s;
   1270 
   1271 	s = spltty();
   1272 	if (ISSET(tp->t_state, TS_BUSY))
   1273 		if (!ISSET(tp->t_state, TS_TTSTOP))
   1274 			SET(tp->t_state, TS_FLUSH);
   1275 	splx(s);
   1276 }
   1277 
   1278 /* Set line parameters. */
   1279 int
   1280 wsdisplayparam(tp, t)
   1281 	struct tty *tp;
   1282 	struct termios *t;
   1283 {
   1284 
   1285 	tp->t_ispeed = t->c_ispeed;
   1286 	tp->t_ospeed = t->c_ospeed;
   1287 	tp->t_cflag = t->c_cflag;
   1288 	return 0;
   1289 }
   1290 
   1291 /*
   1292  * Callbacks for the emulation code.
   1293  */
   1294 void
   1295 wsdisplay_emulbell(v)
   1296 	void *v;
   1297 {
   1298 	struct wsscreen *scr = v;
   1299 
   1300 	if (scr == NULL)		/* console, before real attach */
   1301 		return;
   1302 
   1303 	if (scr->scr_flags & SCR_GRAPHICS) /* can this happen? */
   1304 		return;
   1305 
   1306 	(void) wsdisplay_internal_ioctl(scr->sc, scr, WSKBDIO_BELL, NULL,
   1307 					FWRITE, NULL);
   1308 }
   1309 
   1310 void
   1311 wsdisplay_emulinput(v, data, count)
   1312 	void *v;
   1313 	const u_char *data;
   1314 	u_int count;
   1315 {
   1316 	struct wsscreen *scr = v;
   1317 	struct tty *tp;
   1318 
   1319 	if (v == NULL)			/* console, before real attach */
   1320 		return;
   1321 
   1322 	if (scr->scr_flags & SCR_GRAPHICS) /* XXX can't happen */
   1323 		return;
   1324 	if (!WSSCREEN_HAS_TTY(scr))
   1325 		return;
   1326 
   1327 	tp = scr->scr_tty;
   1328 	while (count-- > 0)
   1329 		(*tp->t_linesw->l_rint)(*data++, tp);
   1330 };
   1331 
   1332 /*
   1333  * Calls from the keyboard interface.
   1334  */
   1335 void
   1336 wsdisplay_kbdinput(dev, ks)
   1337 	struct device *dev;
   1338 	keysym_t ks;
   1339 {
   1340 	struct wsdisplay_softc *sc = (struct wsdisplay_softc *)dev;
   1341 	struct wsscreen *scr;
   1342 	char *dp;
   1343 	int count;
   1344 	struct tty *tp;
   1345 
   1346 	KASSERT(sc != NULL);
   1347 
   1348 	scr = sc->sc_focus;
   1349 
   1350 	if (!scr || !WSSCREEN_HAS_TTY(scr))
   1351 		return;
   1352 
   1353 	tp = scr->scr_tty;
   1354 
   1355 	if (KS_GROUP(ks) == KS_GROUP_Ascii)
   1356 		(*tp->t_linesw->l_rint)(KS_VALUE(ks), tp);
   1357 	else if (WSSCREEN_HAS_EMULATOR(scr)) {
   1358 		count = (*scr->scr_dconf->wsemul->translate)
   1359 		    (scr->scr_dconf->wsemulcookie, ks, &dp);
   1360 		while (count-- > 0)
   1361 			(*tp->t_linesw->l_rint)(*dp++, tp);
   1362 	}
   1363 }
   1364 
   1365 #ifdef WSDISPLAY_COMPAT_RAWKBD
   1366 int
   1367 wsdisplay_update_rawkbd(sc, scr)
   1368 	struct wsdisplay_softc *sc;
   1369 	struct wsscreen *scr;
   1370 {
   1371 	int s, raw, data, error;
   1372 	s = spltty();
   1373 
   1374 	raw = (scr ? scr->scr_rawkbd : 0);
   1375 
   1376 	if (scr != sc->sc_focus ||
   1377 	    sc->sc_rawkbd == raw) {
   1378 		splx(s);
   1379 		return (0);
   1380 	}
   1381 
   1382 	data = raw ? WSKBD_RAW : WSKBD_TRANSLATED;
   1383 	error = wsmux_displayioctl(&sc->sc_muxdv->sc_dv, WSKBDIO_SETMODE,
   1384 				   (caddr_t)&data, 0, 0);
   1385 	if (!error)
   1386 		sc->sc_rawkbd = raw;
   1387 	splx(s);
   1388 	return (error);
   1389 }
   1390 #endif
   1391 
   1392 int
   1393 wsdisplay_switch3(arg, error, waitok)
   1394 	void *arg;
   1395 	int error, waitok;
   1396 {
   1397 	struct wsdisplay_softc *sc = arg;
   1398 	int no;
   1399 	struct wsscreen *scr;
   1400 
   1401 	if (!(sc->sc_flags & SC_SWITCHPENDING)) {
   1402 		printf("wsdisplay_switch3: not switching\n");
   1403 		return (EINVAL);
   1404 	}
   1405 
   1406 	no = sc->sc_screenwanted;
   1407 	if (no < 0 || no >= WSDISPLAY_MAXSCREEN)
   1408 		panic("wsdisplay_switch3: invalid screen %d", no);
   1409 	scr = sc->sc_scr[no];
   1410 	if (!scr) {
   1411 		printf("wsdisplay_switch3: screen %d disappeared\n", no);
   1412 		error = ENXIO;
   1413 	}
   1414 
   1415 	if (error) {
   1416 		/* try to recover, avoid recursion */
   1417 
   1418 		if (sc->sc_oldscreen == WSDISPLAY_NULLSCREEN) {
   1419 			printf("wsdisplay_switch3: giving up\n");
   1420 			sc->sc_focus = 0;
   1421 #ifdef WSDISPLAY_COMPAT_RAWKBD
   1422 			wsdisplay_update_rawkbd(sc, 0);
   1423 #endif
   1424 			sc->sc_flags &= ~SC_SWITCHPENDING;
   1425 			return (error);
   1426 		}
   1427 
   1428 		sc->sc_screenwanted = sc->sc_oldscreen;
   1429 		sc->sc_oldscreen = WSDISPLAY_NULLSCREEN;
   1430 		return (wsdisplay_switch1(arg, 0, waitok));
   1431 	}
   1432 
   1433 	sc->sc_flags &= ~SC_SWITCHPENDING;
   1434 
   1435 	if (!error && (scr->scr_flags & SCR_WAITACTIVE))
   1436 		wakeup(scr);
   1437 	return (error);
   1438 }
   1439 
   1440 int
   1441 wsdisplay_switch2(arg, error, waitok)
   1442 	void *arg;
   1443 	int error, waitok;
   1444 {
   1445 	struct wsdisplay_softc *sc = arg;
   1446 	int no;
   1447 	struct wsscreen *scr;
   1448 
   1449 	if (!(sc->sc_flags & SC_SWITCHPENDING)) {
   1450 		printf("wsdisplay_switch2: not switching\n");
   1451 		return (EINVAL);
   1452 	}
   1453 
   1454 	no = sc->sc_screenwanted;
   1455 	if (no < 0 || no >= WSDISPLAY_MAXSCREEN)
   1456 		panic("wsdisplay_switch2: invalid screen %d", no);
   1457 	scr = sc->sc_scr[no];
   1458 	if (!scr) {
   1459 		printf("wsdisplay_switch2: screen %d disappeared\n", no);
   1460 		error = ENXIO;
   1461 	}
   1462 
   1463 	if (error) {
   1464 		/* try to recover, avoid recursion */
   1465 
   1466 		if (sc->sc_oldscreen == WSDISPLAY_NULLSCREEN) {
   1467 			printf("wsdisplay_switch2: giving up\n");
   1468 			sc->sc_focus = 0;
   1469 			sc->sc_flags &= ~SC_SWITCHPENDING;
   1470 			return (error);
   1471 		}
   1472 
   1473 		sc->sc_screenwanted = sc->sc_oldscreen;
   1474 		sc->sc_oldscreen = WSDISPLAY_NULLSCREEN;
   1475 		return (wsdisplay_switch1(arg, 0, waitok));
   1476 	}
   1477 
   1478 	sc->sc_focusidx = no;
   1479 	sc->sc_focus = scr;
   1480 
   1481 #ifdef WSDISPLAY_COMPAT_RAWKBD
   1482 	(void) wsdisplay_update_rawkbd(sc, scr);
   1483 #endif
   1484 	/* keyboard map??? */
   1485 
   1486 #define wsswitch_cb3 ((void (*) __P((void *, int, int)))wsdisplay_switch3)
   1487 	if (scr->scr_syncops) {
   1488 		error = (*scr->scr_syncops->attach)(scr->scr_synccookie, waitok,
   1489 	  sc->sc_isconsole && wsdisplay_cons_pollmode ? 0 : wsswitch_cb3, sc);
   1490 		if (error == EAGAIN) {
   1491 			/* switch will be done asynchronously */
   1492 			return (0);
   1493 		}
   1494 	}
   1495 
   1496 	return (wsdisplay_switch3(sc, error, waitok));
   1497 }
   1498 
   1499 int
   1500 wsdisplay_switch1(arg, error, waitok)
   1501 	void *arg;
   1502 	int error, waitok;
   1503 {
   1504 	struct wsdisplay_softc *sc = arg;
   1505 	int no;
   1506 	struct wsscreen *scr;
   1507 
   1508 	if (!(sc->sc_flags & SC_SWITCHPENDING)) {
   1509 		printf("wsdisplay_switch1: not switching\n");
   1510 		return (EINVAL);
   1511 	}
   1512 
   1513 	no = sc->sc_screenwanted;
   1514 	if (no == WSDISPLAY_NULLSCREEN) {
   1515 		sc->sc_flags &= ~SC_SWITCHPENDING;
   1516 		if (!error) {
   1517 			sc->sc_focus = 0;
   1518 		}
   1519 		wakeup(sc);
   1520 		return (error);
   1521 	}
   1522 	if (no < 0 || no >= WSDISPLAY_MAXSCREEN)
   1523 		panic("wsdisplay_switch1: invalid screen %d", no);
   1524 	scr = sc->sc_scr[no];
   1525 	if (!scr) {
   1526 		printf("wsdisplay_switch1: screen %d disappeared\n", no);
   1527 		error = ENXIO;
   1528 	}
   1529 
   1530 	if (error) {
   1531 		sc->sc_flags &= ~SC_SWITCHPENDING;
   1532 		return (error);
   1533 	}
   1534 
   1535 #define wsswitch_cb2 ((void (*) __P((void *, int, int)))wsdisplay_switch2)
   1536 	error = (*sc->sc_accessops->show_screen)(sc->sc_accesscookie,
   1537 						 scr->scr_dconf->emulcookie,
   1538 						 waitok,
   1539 	  sc->sc_isconsole && wsdisplay_cons_pollmode ? 0 : wsswitch_cb2, sc);
   1540 	if (error == EAGAIN) {
   1541 		/* switch will be done asynchronously */
   1542 		return (0);
   1543 	}
   1544 
   1545 	return (wsdisplay_switch2(sc, error, waitok));
   1546 }
   1547 
   1548 int
   1549 wsdisplay_switch(dev, no, waitok)
   1550 	struct device *dev;
   1551 	int no, waitok;
   1552 {
   1553 	struct wsdisplay_softc *sc = (struct wsdisplay_softc *)dev;
   1554 	int s, res = 0;
   1555 	struct wsscreen *scr;
   1556 
   1557 	if (no != WSDISPLAY_NULLSCREEN &&
   1558 	    (no < 0 || no >= WSDISPLAY_MAXSCREEN || !sc->sc_scr[no]))
   1559 		return (ENXIO);
   1560 
   1561 	s = spltty();
   1562 
   1563 	if ((sc->sc_focus && no == sc->sc_focusidx) ||
   1564 	    (sc->sc_focus == NULL && no == WSDISPLAY_NULLSCREEN)) {
   1565 		splx(s);
   1566 		return (0);
   1567 	}
   1568 
   1569 	if (sc->sc_flags & SC_SWITCHPENDING) {
   1570 		splx(s);
   1571 		return (EBUSY);
   1572 	}
   1573 
   1574 	sc->sc_flags |= SC_SWITCHPENDING;
   1575 	sc->sc_screenwanted = no;
   1576 
   1577 	splx(s);
   1578 
   1579 	scr = sc->sc_focus;
   1580 	if (!scr) {
   1581 		sc->sc_oldscreen = WSDISPLAY_NULLSCREEN;
   1582 		return (wsdisplay_switch1(sc, 0, waitok));
   1583 	} else
   1584 		sc->sc_oldscreen = sc->sc_focusidx;
   1585 
   1586 #define wsswitch_cb1 ((void (*) __P((void *, int, int)))wsdisplay_switch1)
   1587 	if (scr->scr_syncops) {
   1588 		res = (*scr->scr_syncops->detach)(scr->scr_synccookie, waitok,
   1589 	  sc->sc_isconsole && wsdisplay_cons_pollmode ? 0 : wsswitch_cb1, sc);
   1590 		if (res == EAGAIN) {
   1591 			/* switch will be done asynchronously */
   1592 			return (0);
   1593 		}
   1594 	} else if (scr->scr_flags & SCR_GRAPHICS) {
   1595 		/* no way to save state */
   1596 		res = EBUSY;
   1597 	}
   1598 
   1599 	return (wsdisplay_switch1(sc, res, waitok));
   1600 }
   1601 
   1602 void
   1603 wsdisplay_reset(dev, op)
   1604 	struct device *dev;
   1605 	enum wsdisplay_resetops op;
   1606 {
   1607 	struct wsdisplay_softc *sc = (struct wsdisplay_softc *)dev;
   1608 	struct wsscreen *scr;
   1609 
   1610 	KASSERT(sc != NULL);
   1611 	scr = sc->sc_focus;
   1612 
   1613 	if (!scr)
   1614 		return;
   1615 
   1616 	switch (op) {
   1617 	case WSDISPLAY_RESETEMUL:
   1618 		if (!WSSCREEN_HAS_EMULATOR(scr))
   1619 			break;
   1620 		(*scr->scr_dconf->wsemul->reset)(scr->scr_dconf->wsemulcookie,
   1621 						 WSEMUL_RESET);
   1622 		break;
   1623 	case WSDISPLAY_RESETCLOSE:
   1624 		wsdisplay_closescreen(sc, scr);
   1625 		break;
   1626 	}
   1627 }
   1628 
   1629 /*
   1630  * Interface for (external) VT switch / process synchronization code
   1631  */
   1632 int
   1633 wsscreen_attach_sync(scr, ops, cookie)
   1634 	struct wsscreen *scr;
   1635 	const struct wscons_syncops *ops;
   1636 	void *cookie;
   1637 {
   1638 	if (scr->scr_syncops) {
   1639 		/*
   1640 		 * The screen is already claimed.
   1641 		 * Check if the owner is still alive.
   1642 		 */
   1643 		if ((*scr->scr_syncops->check)(scr->scr_synccookie))
   1644 			return (EBUSY);
   1645 	}
   1646 	scr->scr_syncops = ops;
   1647 	scr->scr_synccookie = cookie;
   1648 	return (0);
   1649 }
   1650 
   1651 int
   1652 wsscreen_detach_sync(scr)
   1653 	struct wsscreen *scr;
   1654 {
   1655 	if (!scr->scr_syncops)
   1656 		return (EINVAL);
   1657 	scr->scr_syncops = 0;
   1658 	return (0);
   1659 }
   1660 
   1661 int
   1662 wsscreen_lookup_sync(scr, ops, cookiep)
   1663 	struct wsscreen *scr;
   1664 	const struct wscons_syncops *ops; /* used as ID */
   1665 	void **cookiep;
   1666 {
   1667 	if (!scr->scr_syncops || ops != scr->scr_syncops)
   1668 		return (EINVAL);
   1669 	*cookiep = scr->scr_synccookie;
   1670 	return (0);
   1671 }
   1672 
   1673 /*
   1674  * Interface to virtual screen stuff
   1675  */
   1676 int
   1677 wsdisplay_maxscreenidx(sc)
   1678 	struct wsdisplay_softc *sc;
   1679 {
   1680 	return (WSDISPLAY_MAXSCREEN - 1);
   1681 }
   1682 
   1683 int
   1684 wsdisplay_screenstate(sc, idx)
   1685 	struct wsdisplay_softc *sc;
   1686 	int idx;
   1687 {
   1688 	if (idx < 0 || idx >= WSDISPLAY_MAXSCREEN)
   1689 		return (EINVAL);
   1690 	if (!sc->sc_scr[idx])
   1691 		return (ENXIO);
   1692 	return ((sc->sc_scr[idx]->scr_flags & SCR_OPEN) ? EBUSY : 0);
   1693 }
   1694 
   1695 int
   1696 wsdisplay_getactivescreen(sc)
   1697 	struct wsdisplay_softc *sc;
   1698 {
   1699 	return (sc->sc_focus ? sc->sc_focusidx : WSDISPLAY_NULLSCREEN);
   1700 }
   1701 
   1702 int
   1703 wsscreen_switchwait(sc, no)
   1704 	struct wsdisplay_softc *sc;
   1705 	int no;
   1706 {
   1707 	struct wsscreen *scr;
   1708 	int s, res = 0;
   1709 
   1710 	if (no == WSDISPLAY_NULLSCREEN) {
   1711 		s = spltty();
   1712 		while (sc->sc_focus && res == 0) {
   1713 			res = tsleep(sc, PCATCH, "wswait", 0);
   1714 		}
   1715 		splx(s);
   1716 		return (res);
   1717 	}
   1718 
   1719 	if (no < 0 || no >= WSDISPLAY_MAXSCREEN)
   1720 		return (ENXIO);
   1721 	scr = sc->sc_scr[no];
   1722 	if (!scr)
   1723 		return (ENXIO);
   1724 
   1725 	s = spltty();
   1726 	if (scr != sc->sc_focus) {
   1727 		scr->scr_flags |= SCR_WAITACTIVE;
   1728 		res = tsleep(scr, PCATCH, "wswait", 0);
   1729 		if (scr != sc->sc_scr[no])
   1730 			res = ENXIO; /* disappeared in the meantime */
   1731 		else
   1732 			scr->scr_flags &= ~SCR_WAITACTIVE;
   1733 	}
   1734 	splx(s);
   1735 	return (res);
   1736 }
   1737 
   1738 void
   1739 wsdisplay_kbdholdscreen(dev, hold)
   1740 	struct device *dev;
   1741 	int hold;
   1742 {
   1743 	struct wsdisplay_softc *sc = (struct wsdisplay_softc *)dev;
   1744 	struct wsscreen *scr;
   1745 
   1746 	scr = sc->sc_focus;
   1747 
   1748 	if (hold)
   1749 		scr->scr_hold_screen = 1;
   1750 	else {
   1751 		scr->scr_hold_screen = 0;
   1752 		callout_reset(&scr->scr_tty->t_rstrt_ch, 0,
   1753 		    ttrstrt, scr->scr_tty);		/* "immediate" */
   1754 	}
   1755 }
   1756 
   1757 #if NWSKBD > 0
   1758 struct device *
   1759 wsdisplay_set_console_kbd(kbddv)
   1760 	struct device *kbddv;
   1761 {
   1762 	if (!wsdisplay_console_device)
   1763 		return (0);
   1764 	if (wskbd_add_mux(kbddv->dv_unit, wsdisplay_console_device->sc_muxdv))
   1765 		return (0);
   1766 	return (&wsdisplay_console_device->sc_dv);
   1767 }
   1768 #endif /* NWSKBD > 0 */
   1769 
   1770 /*
   1771  * Console interface.
   1772  */
   1773 void
   1774 wsdisplay_cnputc(dev, i)
   1775 	dev_t dev;
   1776 	int i;
   1777 {
   1778 	struct wsscreen_internal *dc;
   1779 	char c = i;
   1780 
   1781 	if (!wsdisplay_console_initted)
   1782 		return;
   1783 
   1784 	if (wsdisplay_console_device != NULL &&
   1785 	    (wsdisplay_console_device->sc_scr[0]->scr_flags & SCR_GRAPHICS))
   1786 		return;
   1787 
   1788 	dc = &wsdisplay_console_conf;
   1789 	(*dc->wsemul->output)(dc->wsemulcookie, &c, 1, 1);
   1790 }
   1791 
   1792 static int
   1793 wsdisplay_getc_dummy(dev)
   1794 	dev_t dev;
   1795 {
   1796 	/* panic? */
   1797 	return (0);
   1798 }
   1799 
   1800 static void
   1801 wsdisplay_pollc(dev, on)
   1802 	dev_t dev;
   1803 	int on;
   1804 {
   1805 
   1806 	wsdisplay_cons_pollmode = on;
   1807 
   1808 	/* notify to fb drivers */
   1809 	if (wsdisplay_console_device != NULL &&
   1810 	    wsdisplay_console_device->sc_accessops->pollc != NULL)
   1811 		(*wsdisplay_console_device->sc_accessops->pollc)
   1812 			(wsdisplay_console_device->sc_accesscookie, on);
   1813 
   1814 	/* notify to kbd drivers */
   1815 	if (wsdisplay_cons_kbd_pollc)
   1816 		(*wsdisplay_cons_kbd_pollc)(NODEV, on);
   1817 }
   1818 
   1819 void
   1820 wsdisplay_set_cons_kbd(get, poll, bell)
   1821 	int (*get) __P((dev_t));
   1822 	void (*poll) __P((dev_t, int));
   1823 	void (*bell) __P((dev_t, u_int, u_int, u_int));
   1824 {
   1825 	wsdisplay_cons.cn_getc = get;
   1826 	wsdisplay_cons.cn_bell = bell;
   1827 	wsdisplay_cons_kbd_pollc = poll;
   1828 }
   1829 
   1830 void
   1831 wsdisplay_unset_cons_kbd()
   1832 {
   1833 	wsdisplay_cons.cn_getc = wsdisplay_getc_dummy;
   1834 	wsdisplay_cons.cn_bell = NULL;
   1835 	wsdisplay_cons_kbd_pollc = 0;
   1836 }
   1837 
   1838 /*
   1839  * Switch the console display to it's first screen.
   1840  */
   1841 void
   1842 wsdisplay_switchtoconsole()
   1843 {
   1844 	struct wsdisplay_softc *sc;
   1845 	struct wsscreen *scr;
   1846 
   1847 	if (wsdisplay_console_device != NULL) {
   1848 		sc = wsdisplay_console_device;
   1849 		scr = sc->sc_scr[0];
   1850 		(*sc->sc_accessops->show_screen)(sc->sc_accesscookie,
   1851 						 scr->scr_dconf->emulcookie,
   1852 						 0, NULL, NULL);
   1853 	}
   1854 }
   1855 
   1856 /*
   1857  * Switch the console at shutdown.
   1858  */
   1859 static void
   1860 wsdisplay_shutdownhook(arg)
   1861 	void *arg;
   1862 {
   1863 
   1864 	wsdisplay_switchtoconsole();
   1865 }
   1866