summaryrefslogtreecommitdiff
path: root/sys/dev/wscons/wsdisplay.c
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2000-05-16 23:49:13 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2000-05-16 23:49:13 +0000
commita0654a2deddb43b17d7b134a1ee1b01fb7510fb7 (patch)
tree5e5855c85cbcdef6a8f655e834f9d94f2f82998b /sys/dev/wscons/wsdisplay.c
parent4003f5f7165c81c13d6491fc69628ef45a48b5c2 (diff)
import newer wscons source from netbsd.
art@ said it will make his life easier in alpha rhands@ said it is not used in powerpc for now bjc@ said that it would make vax port easier mickey@ said other platforms can use it, and it's faster
Diffstat (limited to 'sys/dev/wscons/wsdisplay.c')
-rw-r--r--sys/dev/wscons/wsdisplay.c1785
1 files changed, 1785 insertions, 0 deletions
diff --git a/sys/dev/wscons/wsdisplay.c b/sys/dev/wscons/wsdisplay.c
new file mode 100644
index 00000000000..5744d991ed8
--- /dev/null
+++ b/sys/dev/wscons/wsdisplay.c
@@ -0,0 +1,1785 @@
+/* $OpenBSD: wsdisplay.c,v 1.1 2000/05/16 23:49:11 mickey Exp $ */
+/* $NetBSD: wsdisplay.c,v 1.36 2000/03/23 07:01:47 thorpej Exp $ */
+
+/*
+ * Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by Christopher G. Demetriou
+ * for the NetBSD Project.
+ * 4. The name of the author may not be used to endorse or promote products
+ * derived from this software without specific prior written permission
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+
+#include <sys/param.h>
+#include <sys/conf.h>
+#include <sys/device.h>
+#include <sys/ioctl.h>
+#include <sys/kernel.h>
+#include <sys/proc.h>
+#include <sys/malloc.h>
+#include <sys/syslog.h>
+#include <sys/systm.h>
+#include <sys/tty.h>
+#include <sys/signalvar.h>
+#include <sys/errno.h>
+#include <sys/fcntl.h>
+#include <sys/vnode.h>
+
+#include <dev/wscons/wsconsio.h>
+#include <dev/wscons/wsdisplayvar.h>
+#include <dev/wscons/wsksymvar.h>
+#include <dev/wscons/wsksymdef.h>
+#include <dev/wscons/wsemulvar.h>
+#include <dev/wscons/wscons_callbacks.h>
+#include <dev/cons.h>
+
+#include "wskbd.h"
+#include "wsmux.h"
+
+#if NWSKBD > 0
+#include <dev/wscons/wseventvar.h>
+#include <dev/wscons/wsmuxvar.h>
+#endif
+
+struct wsscreen_internal {
+ const struct wsdisplay_emulops *emulops;
+ void *emulcookie;
+
+ const struct wsscreen_descr *scrdata;
+
+ const struct wsemul_ops *wsemul;
+ void *wsemulcookie;
+};
+
+struct wsscreen {
+ struct wsscreen_internal *scr_dconf;
+
+ struct tty *scr_tty;
+ int scr_hold_screen; /* hold tty output */
+
+ int scr_flags;
+#define SCR_OPEN 1 /* is it open? */
+#define SCR_WAITACTIVE 2 /* someone waiting on activation */
+#define SCR_GRAPHICS 4 /* graphics mode, no text (emulation) output */
+ const struct wscons_syncops *scr_syncops;
+ void *scr_synccookie;
+
+#ifdef WSDISPLAY_COMPAT_RAWKBD
+ int scr_rawkbd;
+#endif
+
+ struct wsdisplay_softc *sc;
+};
+
+struct wsscreen *wsscreen_attach __P((struct wsdisplay_softc *, int,
+ const char *,
+ const struct wsscreen_descr *, void *,
+ int, int, long));
+void wsscreen_detach __P((struct wsscreen *));
+static const struct wsscreen_descr *
+wsdisplay_screentype_pick __P((const struct wsscreen_list *, const char *));
+int wsdisplay_addscreen __P((struct wsdisplay_softc *, int, const char *, const char *));
+static void wsdisplay_shutdownhook __P((void *));
+static void wsdisplay_addscreen_print __P((struct wsdisplay_softc *, int, int));
+static void wsdisplay_closescreen __P((struct wsdisplay_softc *,
+ struct wsscreen *));
+int wsdisplay_delscreen __P((struct wsdisplay_softc *, int, int));
+
+#define WSDISPLAY_MAXSCREEN 8
+
+struct wsdisplay_softc {
+ struct device sc_dv;
+
+ const struct wsdisplay_accessops *sc_accessops;
+ void *sc_accesscookie;
+
+ const struct wsscreen_list *sc_scrdata;
+
+ struct wsscreen *sc_scr[WSDISPLAY_MAXSCREEN];
+ int sc_focusidx;
+ struct wsscreen *sc_focus;
+
+ int sc_isconsole;
+
+ int sc_flags;
+#define SC_SWITCHPENDING 1
+ int sc_screenwanted, sc_oldscreen; /* valid with SC_SWITCHPENDING */
+
+#if NWSKBD > 0
+ struct wsmux_softc *sc_muxdv;
+#ifdef WSDISPLAY_COMPAT_RAWKBD
+ int sc_rawkbd;
+#endif
+#endif /* NWSKBD > 0 */
+};
+
+extern struct cfdriver wsdisplay_cd;
+
+/* Autoconfiguration definitions. */
+static int wsdisplay_emul_match __P((struct device *, struct cfdata *,
+ void *));
+static void wsdisplay_emul_attach __P((struct device *, struct device *,
+ void *));
+static int wsdisplay_noemul_match __P((struct device *, struct cfdata *,
+ void *));
+static void wsdisplay_noemul_attach __P((struct device *, struct device *,
+ void *));
+
+struct cfdriver wsdisplay_cd = {
+ NULL, "wsdisplay", DV_TTY
+};
+
+struct cfattach wsdisplay_emul_ca = {
+ sizeof (struct wsdisplay_softc),
+ (cfmatch_t)wsdisplay_emul_match,
+ wsdisplay_emul_attach,
+};
+
+struct cfattach wsdisplay_noemul_ca = {
+ sizeof (struct wsdisplay_softc),
+ (cfmatch_t)wsdisplay_noemul_match,
+ wsdisplay_noemul_attach,
+};
+
+/* Exported tty- and cdevsw-related functions. */
+cdev_decl(wsdisplay);
+
+static void wsdisplaystart __P((struct tty *));
+static int wsdisplayparam __P((struct tty *, struct termios *));
+
+
+/* Internal macros, functions, and variables. */
+#define SET(t, f) (t) |= (f)
+#define CLR(t, f) (t) &= ~(f)
+#define ISSET(t, f) ((t) & (f))
+
+#define WSDISPLAYUNIT(dev) (minor(dev) >> 8)
+#define WSDISPLAYSCREEN(dev) (minor(dev) & 0xff)
+#define ISWSDISPLAYCTL(dev) (WSDISPLAYSCREEN(dev) == 255)
+#define WSDISPLAYMINOR(unit, screen) (((unit) << 8) | (screen))
+
+#define WSSCREEN_HAS_EMULATOR(scr) ((scr)->scr_dconf->wsemul != NULL)
+#define WSSCREEN_HAS_TTY(scr) ((scr)->scr_tty != NULL)
+
+static void wsdisplay_common_attach __P((struct wsdisplay_softc *sc,
+ int console, const struct wsscreen_list *,
+ const struct wsdisplay_accessops *accessops,
+ void *accesscookie));
+
+#ifdef WSDISPLAY_COMPAT_RAWKBD
+int wsdisplay_update_rawkbd __P((struct wsdisplay_softc *,
+ struct wsscreen *));
+#endif
+
+static int wsdisplay_console_initted;
+static struct wsdisplay_softc *wsdisplay_console_device;
+static struct wsscreen_internal wsdisplay_console_conf;
+
+static int wsdisplay_getc_dummy __P((dev_t));
+static void wsdisplay_pollc __P((dev_t, int));
+
+static int wsdisplay_cons_pollmode;
+static void (*wsdisplay_cons_kbd_pollc) __P((dev_t, int));
+
+static struct consdev wsdisplay_cons = {
+ NULL, NULL, wsdisplay_getc_dummy, wsdisplay_cnputc,
+ wsdisplay_pollc, NODEV, CN_NORMAL
+};
+
+#ifndef WSDISPLAY_DEFAULTSCREENS
+# define WSDISPLAY_DEFAULTSCREENS 0
+#endif
+int wsdisplay_defaultscreens = WSDISPLAY_DEFAULTSCREENS;
+
+int wsdisplay_switch1 __P((void *, int, int));
+int wsdisplay_switch2 __P((void *, int, int));
+int wsdisplay_switch3 __P((void *, int, int));
+
+int wsdisplay_clearonclose;
+
+struct wsscreen *
+wsscreen_attach(sc, console, emul, type, cookie, ccol, crow, defattr)
+ struct wsdisplay_softc *sc;
+ int console;
+ const char *emul;
+ const struct wsscreen_descr *type;
+ void *cookie;
+ int ccol, crow;
+ long defattr;
+{
+ struct wsscreen_internal *dconf;
+ struct wsscreen *scr;
+
+ scr = malloc(sizeof(struct wsscreen), M_DEVBUF, M_WAITOK);
+ if (!scr)
+ return (NULL);
+
+ if (console) {
+ dconf = &wsdisplay_console_conf;
+ /*
+ * If there's an emulation, tell it about the callback argument.
+ * The other stuff is already there.
+ */
+ if (dconf->wsemul != NULL)
+ (*dconf->wsemul->attach)(1, 0, 0, 0, 0, scr, 0);
+ } else { /* not console */
+ dconf = malloc(sizeof(struct wsscreen_internal),
+ M_DEVBUF, M_NOWAIT);
+ dconf->emulops = type->textops;
+ dconf->emulcookie = cookie;
+ if (dconf->emulops) {
+ dconf->wsemul = wsemul_pick(emul);
+ if (dconf->wsemul == NULL) {
+ free(dconf, M_DEVBUF);
+ free(scr, M_DEVBUF);
+ return (NULL);
+ }
+ dconf->wsemulcookie =
+ (*dconf->wsemul->attach)(0, type, cookie,
+ ccol, crow, scr, defattr);
+ } else
+ dconf->wsemul = NULL;
+ dconf->scrdata = type;
+ }
+
+ scr->scr_dconf = dconf;
+
+ scr->scr_tty = ttymalloc();
+ tty_attach(scr->scr_tty);
+ scr->scr_hold_screen = 0;
+ if (WSSCREEN_HAS_EMULATOR(scr))
+ scr->scr_flags = 0;
+ else
+ scr->scr_flags = SCR_GRAPHICS;
+
+ scr->scr_syncops = 0;
+ scr->sc = sc;
+#ifdef WSDISPLAY_COMPAT_RAWKBD
+ scr->scr_rawkbd = 0;
+#endif
+ return (scr);
+}
+
+void
+wsscreen_detach(scr)
+ struct wsscreen *scr;
+{
+ int ccol, crow; /* XXX */
+
+ if (WSSCREEN_HAS_TTY(scr)) {
+ tty_detach(scr->scr_tty);
+ ttyfree(scr->scr_tty);
+ }
+ if (WSSCREEN_HAS_EMULATOR(scr))
+ (*scr->scr_dconf->wsemul->detach)(scr->scr_dconf->wsemulcookie,
+ &ccol, &crow);
+ free(scr->scr_dconf, M_DEVBUF);
+ free(scr, M_DEVBUF);
+}
+
+static const struct wsscreen_descr *
+wsdisplay_screentype_pick(scrdata, name)
+ const struct wsscreen_list *scrdata;
+ const char *name;
+{
+ int i;
+ const struct wsscreen_descr *scr;
+
+ KASSERT(scrdata->nscreens > 0);
+
+ if (name == NULL)
+ return (scrdata->screens[0]);
+
+ for (i = 0; i < scrdata->nscreens; i++) {
+ scr = scrdata->screens[i];
+ if (!strcmp(name, scr->name))
+ return (scr);
+ }
+
+ return (0);
+}
+
+/*
+ * print info about attached screen
+ */
+static void
+wsdisplay_addscreen_print(sc, idx, count)
+ struct wsdisplay_softc *sc;
+ int idx, count;
+{
+ printf("%s: screen %d", sc->sc_dv.dv_xname, idx);
+ if (count > 1)
+ printf("-%d", idx + (count-1));
+ printf(" added (%s", sc->sc_scr[idx]->scr_dconf->scrdata->name);
+ if (WSSCREEN_HAS_EMULATOR(sc->sc_scr[idx])) {
+ printf(", %s emulation",
+ sc->sc_scr[idx]->scr_dconf->wsemul->name);
+ }
+ printf(")\n");
+}
+
+int
+wsdisplay_addscreen(sc, idx, screentype, emul)
+ struct wsdisplay_softc *sc;
+ int idx;
+ const char *screentype, *emul;
+{
+ const struct wsscreen_descr *scrdesc;
+ int error;
+ void *cookie;
+ int ccol, crow;
+ long defattr;
+ struct wsscreen *scr;
+ int s;
+
+ if (idx < 0 || idx >= WSDISPLAY_MAXSCREEN)
+ return (EINVAL);
+ if (sc->sc_scr[idx] != NULL)
+ return (EBUSY);
+
+ scrdesc = wsdisplay_screentype_pick(sc->sc_scrdata, screentype);
+ if (!scrdesc)
+ return (ENXIO);
+ error = (*sc->sc_accessops->alloc_screen)(sc->sc_accesscookie,
+ scrdesc, &cookie, &ccol, &crow, &defattr);
+ if (error)
+ return (error);
+
+ scr = wsscreen_attach(sc, 0, emul, scrdesc,
+ cookie, ccol, crow, defattr);
+ if (scr == NULL) {
+ (*sc->sc_accessops->free_screen)(sc->sc_accesscookie,
+ cookie);
+ return (ENXIO);
+ }
+
+ sc->sc_scr[idx] = scr;
+
+ /* if no screen has focus yet, activate the first we get */
+ s = spltty();
+ if (!sc->sc_focus) {
+ (*sc->sc_accessops->show_screen)(sc->sc_accesscookie,
+ scr->scr_dconf->emulcookie,
+ 0, 0, 0);
+ sc->sc_focusidx = idx;
+ sc->sc_focus = scr;
+ }
+ splx(s);
+ return (0);
+}
+
+static void
+wsdisplay_closescreen(sc, scr)
+ struct wsdisplay_softc *sc;
+ struct wsscreen *scr;
+{
+ int maj, mn, idx;
+
+ /* hangup */
+ if (WSSCREEN_HAS_TTY(scr)) {
+ struct tty *tp = scr->scr_tty;
+ (*linesw[tp->t_line].l_modem)(tp, 0);
+ }
+
+ /* locate the major number */
+ for (maj = 0; maj < nchrdev; maj++)
+ if (cdevsw[maj].d_open == wsdisplayopen)
+ break;
+ /* locate the screen index */
+ for (idx = 0; idx < WSDISPLAY_MAXSCREEN; idx++)
+ if (scr == sc->sc_scr[idx])
+ break;
+#ifdef DIAGNOSTIC
+ if (idx == WSDISPLAY_MAXSCREEN)
+ panic("wsdisplay_forceclose: bad screen");
+#endif
+
+ /* nuke the vnodes */
+ mn = WSDISPLAYMINOR(sc->sc_dv.dv_unit, idx);
+ vdevgone(maj, mn, mn, VCHR);
+}
+
+int
+wsdisplay_delscreen(sc, idx, flags)
+ struct wsdisplay_softc *sc;
+ int idx, flags;
+{
+ struct wsscreen *scr;
+ int s;
+ void *cookie;
+
+ if (idx < 0 || idx >= WSDISPLAY_MAXSCREEN)
+ return (EINVAL);
+ scr = sc->sc_scr[idx];
+ if (!scr)
+ return (ENXIO);
+
+ if (scr->scr_dconf == &wsdisplay_console_conf ||
+ scr->scr_syncops ||
+ ((scr->scr_flags & SCR_OPEN) && !(flags & WSDISPLAY_DELSCR_FORCE)))
+ return(EBUSY);
+
+ wsdisplay_closescreen(sc, scr);
+
+ /*
+ * delete pointers, so neither device entries
+ * nor keyboard input can reference it anymore
+ */
+ s = spltty();
+ if (sc->sc_focus == scr) {
+ sc->sc_focus = 0;
+#ifdef WSDISPLAY_COMPAT_RAWKBD
+ wsdisplay_update_rawkbd(sc, 0);
+#endif
+ }
+ sc->sc_scr[idx] = 0;
+ splx(s);
+
+ /*
+ * Wake up processes waiting for the screen to
+ * be activated. Sleepers must check whether
+ * the screen still exists.
+ */
+ if (scr->scr_flags & SCR_WAITACTIVE)
+ wakeup(scr);
+
+ /* save a reference to the graphics screen */
+ cookie = scr->scr_dconf->emulcookie;
+
+ wsscreen_detach(scr);
+
+ (*sc->sc_accessops->free_screen)(sc->sc_accesscookie,
+ cookie);
+
+ printf("%s: screen %d deleted\n", sc->sc_dv.dv_xname, idx);
+ return (0);
+}
+
+/*
+ * Autoconfiguration functions.
+ */
+int
+wsdisplay_emul_match(parent, match, aux)
+ struct device *parent;
+ struct cfdata *match;
+ void *aux;
+{
+ struct wsemuldisplaydev_attach_args *ap = aux;
+
+ if (match->wsemuldisplaydevcf_console !=
+ WSEMULDISPLAYDEVCF_CONSOLE_UNK) {
+ /*
+ * If console-ness of device specified, either match
+ * exactly (at high priority), or fail.
+ */
+ if (match->wsemuldisplaydevcf_console != 0 &&
+ ap->console != 0)
+ return (10);
+ else
+ return (0);
+ }
+
+ /* If console-ness unspecified, it wins. */
+ return (1);
+}
+
+void
+wsdisplay_emul_attach(parent, self, aux)
+ struct device *parent, *self;
+ void *aux;
+{
+ struct wsdisplay_softc *sc = (struct wsdisplay_softc *)self;
+ struct wsemuldisplaydev_attach_args *ap = aux;
+
+ wsdisplay_common_attach(sc, ap->console, ap->scrdata,
+ ap->accessops, ap->accesscookie);
+
+ if (ap->console) {
+ int maj;
+
+ /* locate the major number */
+ for (maj = 0; maj < nchrdev; maj++)
+ if (cdevsw[maj].d_open == wsdisplayopen)
+ break;
+
+ cn_tab->cn_dev = makedev(maj, WSDISPLAYMINOR(self->dv_unit, 0));
+ }
+}
+
+/* Print function (for parent devices). */
+int
+wsemuldisplaydevprint(aux, pnp)
+ void *aux;
+ const char *pnp;
+{
+#if 0 /* -Wunused */
+ struct wsemuldisplaydev_attach_args *ap = aux;
+#endif
+
+ if (pnp)
+ printf("wsdisplay at %s", pnp);
+#if 0 /* don't bother; it's ugly */
+ printf(" console %d", ap->console);
+#endif
+
+ return (UNCONF);
+}
+
+int
+wsdisplay_noemul_match(parent, match, aux)
+ struct device *parent;
+ struct cfdata *match;
+ void *aux;
+{
+#if 0 /* -Wunused */
+ struct wsdisplaydev_attach_args *ap = aux;
+#endif
+
+ /* Always match. */
+ return (1);
+}
+
+void
+wsdisplay_noemul_attach(parent, self, aux)
+ struct device *parent, *self;
+ void *aux;
+{
+ struct wsdisplay_softc *sc = (struct wsdisplay_softc *)self;
+ struct wsdisplaydev_attach_args *ap = aux;
+
+ wsdisplay_common_attach(sc, 0, NULL, ap->accessops, ap->accesscookie);
+}
+
+/* Print function (for parent devices). */
+int
+wsdisplaydevprint(aux, pnp)
+ void *aux;
+ const char *pnp;
+{
+#if 0 /* -Wunused */
+ struct wsdisplaydev_attach_args *ap = aux;
+#endif
+
+ if (pnp)
+ printf("wsdisplay at %s", pnp);
+
+ return (UNCONF);
+}
+
+static void
+wsdisplay_common_attach(sc, console, scrdata, accessops, accesscookie)
+ struct wsdisplay_softc *sc;
+ int console;
+ const struct wsscreen_list *scrdata;
+ const struct wsdisplay_accessops *accessops;
+ void *accesscookie;
+{
+ static int hookset;
+ int i, start=0;
+#if NWSKBD > 0
+ struct device *dv;
+
+ sc->sc_muxdv = wsmux_create("dmux", sc->sc_dv.dv_unit);
+ if (!sc->sc_muxdv)
+ panic("wsdisplay_common_attach: no memory\n");
+ sc->sc_muxdv->sc_displaydv = &sc->sc_dv;
+#endif
+
+ sc->sc_isconsole = console;
+
+ if (console) {
+ KASSERT(wsdisplay_console_initted);
+ KASSERT(wsdisplay_console_device == NULL);
+
+ sc->sc_scr[0] = wsscreen_attach(sc, 1, 0, 0, 0, 0, 0, 0);
+ wsdisplay_console_device = sc;
+
+ printf(": console (%s, %s emulation)",
+ wsdisplay_console_conf.scrdata->name,
+ wsdisplay_console_conf.wsemul->name);
+
+#if NWSKBD > 0
+ if ((dv = wskbd_set_console_display(&sc->sc_dv, sc->sc_muxdv)))
+ printf(", using %s", dv->dv_xname);
+#endif
+
+ sc->sc_focusidx = 0;
+ sc->sc_focus = sc->sc_scr[0];
+ start = 1;
+ }
+ printf("\n");
+
+ sc->sc_accessops = accessops;
+ sc->sc_accesscookie = accesscookie;
+ sc->sc_scrdata = scrdata;
+
+ /*
+ * Set up a number of virtual screens if wanted. The
+ * WSDISPLAYIO_ADDSCREEN ioctl is more flexible, so this code
+ * is for special cases like installation kernels.
+ */
+ for (i = start; i < wsdisplay_defaultscreens; i++) {
+ if (wsdisplay_addscreen(sc, i, 0, 0))
+ break;
+}
+
+ if (i > start)
+ wsdisplay_addscreen_print(sc, start, i-start);
+
+ if (hookset == 0)
+ shutdownhook_establish(wsdisplay_shutdownhook, NULL);
+ hookset = 1;
+}
+
+void
+wsdisplay_cnattach(type, cookie, ccol, crow, defattr)
+ const struct wsscreen_descr *type;
+ void *cookie;
+ int ccol, crow;
+ long defattr;
+{
+ const struct wsemul_ops *wsemul;
+
+ KASSERT(!wsdisplay_console_initted);
+ KASSERT(type->nrows > 0);
+ KASSERT(type->ncols > 0);
+ KASSERT(crow < type->nrows);
+ KASSERT(ccol < type->ncols);
+
+ wsdisplay_console_conf.emulops = type->textops;
+ wsdisplay_console_conf.emulcookie = cookie;
+ wsdisplay_console_conf.scrdata = type;
+
+ wsemul = wsemul_pick(0); /* default */
+ wsdisplay_console_conf.wsemul = wsemul;
+ wsdisplay_console_conf.wsemulcookie = (*wsemul->cnattach)(type, cookie,
+ ccol, crow,
+ defattr);
+
+ cn_tab = &wsdisplay_cons;
+
+ wsdisplay_console_initted = 1;
+}
+
+/*
+ * Tty and cdevsw functions.
+ */
+int
+wsdisplayopen(dev, flag, mode, p)
+ dev_t dev;
+ int flag, mode;
+ struct proc *p;
+{
+ struct wsdisplay_softc *sc;
+ struct tty *tp;
+ int unit, newopen, error;
+ struct wsscreen *scr;
+
+ unit = WSDISPLAYUNIT(dev);
+ if (unit >= wsdisplay_cd.cd_ndevs || /* make sure it was attached */
+ (sc = wsdisplay_cd.cd_devs[unit]) == NULL)
+ return (ENXIO);
+
+ if (ISWSDISPLAYCTL(dev))
+ return (0);
+
+ if (WSDISPLAYSCREEN(dev) >= WSDISPLAY_MAXSCREEN)
+ return (ENXIO);
+ scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
+ if (!scr)
+ return (ENXIO);
+
+ if (WSSCREEN_HAS_TTY(scr)) {
+ tp = scr->scr_tty;
+ tp->t_oproc = wsdisplaystart;
+ tp->t_param = wsdisplayparam;
+ tp->t_dev = dev;
+ newopen = (tp->t_state & TS_ISOPEN) == 0;
+ if (newopen) {
+ ttychars(tp);
+ tp->t_iflag = TTYDEF_IFLAG;
+ tp->t_oflag = TTYDEF_OFLAG;
+ tp->t_cflag = TTYDEF_CFLAG;
+ tp->t_lflag = TTYDEF_LFLAG;
+ tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
+ wsdisplayparam(tp, &tp->t_termios);
+ ttsetwater(tp);
+ } else if ((tp->t_state & TS_XCLUDE) != 0 &&
+ p->p_ucred->cr_uid != 0)
+ return EBUSY;
+ tp->t_state |= TS_CARR_ON;
+
+ error = ((*linesw[tp->t_line].l_open)(dev, tp));
+ if (error)
+ return (error);
+
+ if (newopen && WSSCREEN_HAS_EMULATOR(scr)) {
+ /* set window sizes as appropriate, and reset
+ the emulation */
+ tp->t_winsize.ws_row = scr->scr_dconf->scrdata->nrows;
+ tp->t_winsize.ws_col = scr->scr_dconf->scrdata->ncols;
+
+ /* wsdisplay_set_emulation() */
+ }
+ }
+
+ scr->scr_flags |= SCR_OPEN;
+ return (0);
+}
+
+int
+wsdisplayclose(dev, flag, mode, p)
+ dev_t dev;
+ int flag, mode;
+ struct proc *p;
+{
+ struct wsdisplay_softc *sc;
+ struct tty *tp;
+ int unit;
+ struct wsscreen *scr;
+
+ unit = WSDISPLAYUNIT(dev);
+ sc = wsdisplay_cd.cd_devs[unit];
+
+ if (ISWSDISPLAYCTL(dev))
+ return (0);
+
+ scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
+
+ if (WSSCREEN_HAS_TTY(scr)) {
+ if (scr->scr_hold_screen) {
+ int s;
+
+ /* XXX RESET KEYBOARD LEDS, etc. */
+ s = spltty(); /* avoid conflict with keyboard */
+ wsdisplay_kbdholdscreen((struct device *)sc, 0);
+ splx(s);
+ }
+ tp = scr->scr_tty;
+ (*linesw[tp->t_line].l_close)(tp, flag);
+ ttyclose(tp);
+ }
+
+ if (scr->scr_syncops)
+ (*scr->scr_syncops->destroy)(scr->scr_synccookie);
+
+ if (WSSCREEN_HAS_EMULATOR(scr)) {
+ scr->scr_flags &= ~SCR_GRAPHICS;
+ (*scr->scr_dconf->wsemul->reset)(scr->scr_dconf->wsemulcookie,
+ WSEMUL_RESET);
+ if (wsdisplay_clearonclose)
+ (*scr->scr_dconf->wsemul->reset)
+ (scr->scr_dconf->wsemulcookie,
+ WSEMUL_CLEARSCREEN);
+ }
+
+#ifdef WSDISPLAY_COMPAT_RAWKBD
+ if (scr->scr_rawkbd) {
+ int kbmode = WSKBD_TRANSLATED;
+ (void) wsdisplay_internal_ioctl(sc, scr, WSKBDIO_SETMODE,
+ (caddr_t)&kbmode, 0, p);
+ }
+#endif
+
+ scr->scr_flags &= ~SCR_OPEN;
+
+ return (0);
+}
+
+int
+wsdisplayread(dev, uio, flag)
+ dev_t dev;
+ struct uio *uio;
+ int flag;
+{
+ struct wsdisplay_softc *sc;
+ struct tty *tp;
+ int unit;
+ struct wsscreen *scr;
+
+ unit = WSDISPLAYUNIT(dev);
+ sc = wsdisplay_cd.cd_devs[unit];
+
+ if (ISWSDISPLAYCTL(dev))
+ return (0);
+
+ scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
+
+ if (!WSSCREEN_HAS_TTY(scr))
+ return (ENODEV);
+
+ tp = scr->scr_tty;
+ return ((*linesw[tp->t_line].l_read)(tp, uio, flag));
+}
+
+int
+wsdisplaywrite(dev, uio, flag)
+ dev_t dev;
+ struct uio *uio;
+ int flag;
+{
+ struct wsdisplay_softc *sc;
+ struct tty *tp;
+ int unit;
+ struct wsscreen *scr;
+
+ unit = WSDISPLAYUNIT(dev);
+ sc = wsdisplay_cd.cd_devs[unit];
+
+ if (ISWSDISPLAYCTL(dev))
+ return (0);
+
+ scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
+
+ if (!WSSCREEN_HAS_TTY(scr))
+ return (ENODEV);
+
+ tp = scr->scr_tty;
+ return ((*linesw[tp->t_line].l_write)(tp, uio, flag));
+}
+
+struct tty *
+wsdisplaytty(dev)
+ dev_t dev;
+{
+ struct wsdisplay_softc *sc;
+ int unit;
+ struct wsscreen *scr;
+
+ unit = WSDISPLAYUNIT(dev);
+ sc = wsdisplay_cd.cd_devs[unit];
+
+ if (ISWSDISPLAYCTL(dev))
+ panic("wsdisplaytty() on ctl device");
+
+ scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
+
+ return (scr->scr_tty);
+}
+
+int
+wsdisplayioctl(dev, cmd, data, flag, p)
+ dev_t dev;
+ u_long cmd;
+ caddr_t data;
+ int flag;
+ struct proc *p;
+{
+ struct wsdisplay_softc *sc;
+ struct tty *tp;
+ int unit, error;
+ struct wsscreen *scr;
+
+ unit = WSDISPLAYUNIT(dev);
+ sc = wsdisplay_cd.cd_devs[unit];
+
+#ifdef WSDISPLAY_COMPAT_USL
+ error = wsdisplay_usl_ioctl1(sc, cmd, data, flag, p);
+ if (error >= 0)
+ return (error);
+#endif
+
+ if (ISWSDISPLAYCTL(dev))
+ return (wsdisplay_cfg_ioctl(sc, cmd, data, flag, p));
+
+ scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
+
+ if (WSSCREEN_HAS_TTY(scr)) {
+ tp = scr->scr_tty;
+
+/* printf("disc\n"); */
+ /* do the line discipline ioctls first */
+ error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag, p);
+ if (error >= 0)
+ return (error);
+
+/* printf("tty\n"); */
+ /* then the tty ioctls */
+ error = ttioctl(tp, cmd, data, flag, p);
+ if (error >= 0)
+ return (error);
+ }
+
+#ifdef WSDISPLAY_COMPAT_USL
+ error = wsdisplay_usl_ioctl2(sc, scr, cmd, data, flag, p);
+ if (error >= 0)
+ return (error);
+#endif
+
+ error = wsdisplay_internal_ioctl(sc, scr, cmd, data, flag, p);
+ return (error != -1 ? error : ENOTTY);
+}
+
+int
+wsdisplay_internal_ioctl(sc, scr, cmd, data, flag, p)
+ struct wsdisplay_softc *sc;
+ struct wsscreen *scr;
+ u_long cmd;
+ caddr_t data;
+ int flag;
+ struct proc *p;
+{
+ int error;
+ char namebuf[16];
+ struct wsdisplay_font fd;
+
+#if NWSKBD > 0
+#ifdef WSDISPLAY_COMPAT_RAWKBD
+ switch (cmd) {
+ case WSKBDIO_SETMODE:
+ scr->scr_rawkbd = (*(int *)data == WSKBD_RAW);
+ return (wsdisplay_update_rawkbd(sc, scr));
+ case WSKBDIO_GETMODE:
+ *(int *)data = (scr->scr_rawkbd ?
+ WSKBD_RAW : WSKBD_TRANSLATED);
+ return (0);
+ }
+#endif
+ error = wsmux_displayioctl(&sc->sc_muxdv->sc_dv, cmd, data, flag, p);
+ if (error >= 0)
+ return (error);
+#endif /* NWSKBD > 0 */
+
+ switch (cmd) {
+ case WSDISPLAYIO_GMODE:
+ *(u_int *)data = (scr->scr_flags & SCR_GRAPHICS ?
+ WSDISPLAYIO_MODE_MAPPED :
+ WSDISPLAYIO_MODE_EMUL);
+ return (0);
+
+ case WSDISPLAYIO_SMODE:
+#define d (*(int *)data)
+ if (d != WSDISPLAYIO_MODE_EMUL &&
+ d != WSDISPLAYIO_MODE_MAPPED)
+ return (EINVAL);
+
+ if (WSSCREEN_HAS_EMULATOR(scr)) {
+ scr->scr_flags &= ~SCR_GRAPHICS;
+ if (d == WSDISPLAYIO_MODE_MAPPED)
+ scr->scr_flags |= SCR_GRAPHICS;
+ } else if (d == WSDISPLAYIO_MODE_EMUL)
+ return (EINVAL);
+ return (0);
+#undef d
+
+ case WSDISPLAYIO_USEFONT:
+#define d ((struct wsdisplay_usefontdata *)data)
+ if (!sc->sc_accessops->load_font)
+ return (EINVAL);
+ if (d->name) {
+ error = copyinstr(d->name, namebuf, sizeof(namebuf), 0);
+ if (error)
+ return (error);
+ fd.name = namebuf;
+ } else
+ fd.name = 0;
+ fd.data = 0;
+ error = (*sc->sc_accessops->load_font)(sc->sc_accesscookie,
+ scr->scr_dconf->emulcookie, &fd);
+ if (!error && WSSCREEN_HAS_EMULATOR(scr))
+ (*scr->scr_dconf->wsemul->reset)
+ (scr->scr_dconf->wsemulcookie, WSEMUL_SYNCFONT);
+ return (error);
+#undef d
+ }
+
+ /* check ioctls for display */
+ return ((*sc->sc_accessops->ioctl)(sc->sc_accesscookie, cmd, data,
+ flag, p));
+}
+
+int
+wsdisplay_cfg_ioctl(sc, cmd, data, flag, p)
+ struct wsdisplay_softc *sc;
+ u_long cmd;
+ caddr_t data;
+ int flag;
+ struct proc *p;
+{
+ int error;
+ char *type, typebuf[16], *emul, emulbuf[16];
+ void *buf;
+#if defined(COMPAT_14) && NWSKBD > 0
+ struct wsmux_device wsmuxdata;
+#endif
+
+ switch (cmd) {
+ case WSDISPLAYIO_ADDSCREEN:
+#define d ((struct wsdisplay_addscreendata *)data)
+ if (d->screentype) {
+ error = copyinstr(d->screentype, typebuf,
+ sizeof(typebuf), 0);
+ if (error)
+ return (error);
+ type = typebuf;
+ } else
+ type = 0;
+ if (d->emul) {
+ error = copyinstr(d->emul, emulbuf, sizeof(emulbuf), 0);
+ if (error)
+ return (error);
+ emul = emulbuf;
+ } else
+ emul = 0;
+
+ if ((error = wsdisplay_addscreen(sc, d->idx, type, emul)) == 0)
+ wsdisplay_addscreen_print(sc, d->idx, 0);
+ return (error);
+#undef d
+ case WSDISPLAYIO_DELSCREEN:
+#define d ((struct wsdisplay_delscreendata *)data)
+ return (wsdisplay_delscreen(sc, d->idx, d->flags));
+#undef d
+ case WSDISPLAYIO_LDFONT:
+#define d ((struct wsdisplay_font *)data)
+ if (!sc->sc_accessops->load_font)
+ return (EINVAL);
+ if (d->name) {
+ error = copyinstr(d->name, typebuf, sizeof(typebuf), 0);
+ if (error)
+ return (error);
+ d->name = typebuf;
+ } else
+ d->name = "loaded"; /* ??? */
+ buf = malloc(d->fontheight * d->stride * d->numchars,
+ M_DEVBUF, M_WAITOK);
+ error = copyin(d->data, buf,
+ d->fontheight * d->stride * d->numchars);
+ if (error) {
+ free(buf, M_DEVBUF);
+ return (error);
+ }
+ d->data = buf;
+ error =
+ (*sc->sc_accessops->load_font)(sc->sc_accesscookie, 0, d);
+ free(buf, M_DEVBUF);
+#undef d
+ return (error);
+
+#if NWSKBD > 0
+#ifdef COMPAT_14
+ case _O_WSDISPLAYIO_SETKEYBOARD:
+#define d ((struct wsdisplay_kbddata *)data)
+ switch (d->op) {
+ case _O_WSDISPLAY_KBD_ADD:
+ if (d->idx == -1) {
+ d->idx = wskbd_pickfree();
+ if (d->idx == -1)
+ return (ENXIO);
+ }
+ wsmuxdata.type = WSMUX_KBD;
+ wsmuxdata.idx = d->idx;
+ return (wsmuxdoioctl(&sc->sc_muxdv->sc_dv,
+ WSMUX_ADD_DEVICE,
+ (caddr_t)&wsmuxdata, flag, p));
+ case _O_WSDISPLAY_KBD_DEL:
+ wsmuxdata.type = WSMUX_KBD;
+ wsmuxdata.idx = d->idx;
+ return (wsmuxdoioctl(&sc->sc_muxdv->sc_dv,
+ WSMUX_REMOVE_DEVICE,
+ (caddr_t)&wsmuxdata, flag, p));
+ default:
+ return (EINVAL);
+ }
+#undef d
+#endif
+
+ case WSMUX_ADD_DEVICE:
+#define d ((struct wsmux_device *)data)
+ if (d->idx == -1 && d->type == WSMUX_KBD)
+ d->idx = wskbd_pickfree();
+#undef d
+ /* fall into */
+ case WSMUX_INJECTEVENT:
+ case WSMUX_REMOVE_DEVICE:
+ case WSMUX_LIST_DEVICES:
+ return (wsmuxdoioctl(&sc->sc_muxdv->sc_dv, cmd, data, flag,p));
+#endif /* NWSKBD > 0 */
+
+ }
+ return (EINVAL);
+}
+
+int
+wsdisplaymmap(dev, offset, prot)
+ dev_t dev;
+ int offset; /* XXX */
+ int prot;
+{
+ struct wsdisplay_softc *sc = wsdisplay_cd.cd_devs[WSDISPLAYUNIT(dev)];
+ struct wsscreen *scr;
+
+ if (ISWSDISPLAYCTL(dev))
+ return (-1);
+
+ scr = sc->sc_scr[WSDISPLAYSCREEN(dev)];
+
+ if (!(scr->scr_flags & SCR_GRAPHICS))
+ return (-1);
+
+ /* pass mmap to display */
+ return ((*sc->sc_accessops->mmap)(sc->sc_accesscookie, offset, prot));
+}
+
+void
+wsdisplaystart(tp)
+ struct tty *tp;
+{
+ struct wsdisplay_softc *sc;
+ struct wsscreen *scr;
+ int s, n;
+ u_char *buf;
+
+ s = spltty();
+ if (tp->t_state & (TS_TIMEOUT | TS_BUSY | TS_TTSTOP)) {
+ splx(s);
+ return;
+ }
+ sc = wsdisplay_cd.cd_devs[WSDISPLAYUNIT(tp->t_dev)];
+ scr = sc->sc_scr[WSDISPLAYSCREEN(tp->t_dev)];
+ if (scr->scr_hold_screen) {
+ tp->t_state |= TS_TIMEOUT;
+ splx(s);
+ return;
+ }
+ tp->t_state |= TS_BUSY;
+ splx(s);
+
+ /*
+ * Drain output from ring buffer.
+ * The output will normally be in one contiguous chunk, but when the
+ * ring wraps, it will be in two pieces.. one at the end of the ring,
+ * the other at the start. For performance, rather than loop here,
+ * we output one chunk, see if there's another one, and if so, output
+ * it too.
+ */
+
+ n = ndqb(&tp->t_outq, 0);
+ buf = tp->t_outq.c_cf;
+
+ if (!(scr->scr_flags & SCR_GRAPHICS)) {
+ KASSERT(WSSCREEN_HAS_EMULATOR(scr));
+ (*scr->scr_dconf->wsemul->output)(scr->scr_dconf->wsemulcookie,
+ buf, n, 0);
+ }
+ ndflush(&tp->t_outq, n);
+
+ if ((n = ndqb(&tp->t_outq, 0)) > 0) {
+ buf = tp->t_outq.c_cf;
+
+ if (!(scr->scr_flags & SCR_GRAPHICS)) {
+ KASSERT(WSSCREEN_HAS_EMULATOR(scr));
+ (*scr->scr_dconf->wsemul->output)(scr->scr_dconf->wsemulcookie,
+ buf, n, 0);
+ }
+ ndflush(&tp->t_outq, n);
+ }
+
+ s = spltty();
+ tp->t_state &= ~TS_BUSY;
+ /* Come back if there's more to do */
+ if (tp->t_outq.c_cc) {
+ tp->t_state |= TS_TIMEOUT;
+ timeout(ttrstrt, tp, (hz > 128) ? (hz / 128) : 1);
+ }
+ if (tp->t_outq.c_cc <= tp->t_lowat) {
+ if (tp->t_state&TS_ASLEEP) {
+ tp->t_state &= ~TS_ASLEEP;
+ wakeup((caddr_t)&tp->t_outq);
+ }
+ selwakeup(&tp->t_wsel);
+ }
+ splx(s);
+}
+
+int
+wsdisplaystop(tp, flag)
+ struct tty *tp;
+ int flag;
+{
+ int s;
+
+ s = spltty();
+ if (ISSET(tp->t_state, TS_BUSY))
+ if (!ISSET(tp->t_state, TS_TTSTOP))
+ SET(tp->t_state, TS_FLUSH);
+ splx(s);
+ return 0;
+}
+
+/* Set line parameters. */
+int
+wsdisplayparam(tp, t)
+ struct tty *tp;
+ struct termios *t;
+{
+
+ tp->t_ispeed = t->c_ispeed;
+ tp->t_ospeed = t->c_ospeed;
+ tp->t_cflag = t->c_cflag;
+ return 0;
+}
+
+/*
+ * Callbacks for the emulation code.
+ */
+void
+wsdisplay_emulbell(v)
+ void *v;
+{
+ struct wsscreen *scr = v;
+
+ if (scr == NULL) /* console, before real attach */
+ return;
+
+ if (scr->scr_flags & SCR_GRAPHICS) /* can this happen? */
+ return;
+
+ (void) wsdisplay_internal_ioctl(scr->sc, scr, WSKBDIO_BELL, NULL,
+ FWRITE, NULL);
+}
+
+void
+wsdisplay_emulinput(v, data, count)
+ void *v;
+ const u_char *data;
+ u_int count;
+{
+ struct wsscreen *scr = v;
+ struct tty *tp;
+
+ if (v == NULL) /* console, before real attach */
+ return;
+
+ if (scr->scr_flags & SCR_GRAPHICS) /* XXX can't happen */
+ return;
+ if (!WSSCREEN_HAS_TTY(scr))
+ return;
+
+ tp = scr->scr_tty;
+ while (count-- > 0)
+ (*linesw[tp->t_line].l_rint)(*data++, tp);
+};
+
+/*
+ * Calls from the keyboard interface.
+ */
+void
+wsdisplay_kbdinput(dev, ks)
+ struct device *dev;
+ keysym_t ks;
+{
+ struct wsdisplay_softc *sc = (struct wsdisplay_softc *)dev;
+ struct wsscreen *scr;
+ char *dp;
+ int count;
+ struct tty *tp;
+
+ KASSERT(sc != NULL);
+
+ scr = sc->sc_focus;
+
+ if (!scr || !WSSCREEN_HAS_TTY(scr))
+ return;
+
+ tp = scr->scr_tty;
+
+ if (KS_GROUP(ks) == KS_GROUP_Ascii)
+ (*linesw[tp->t_line].l_rint)(KS_VALUE(ks), tp);
+ else if (WSSCREEN_HAS_EMULATOR(scr)) {
+ count = (*scr->scr_dconf->wsemul->translate)
+ (scr->scr_dconf->wsemulcookie, ks, &dp);
+ while (count-- > 0)
+ (*linesw[tp->t_line].l_rint)(*dp++, tp);
+ }
+}
+
+#ifdef WSDISPLAY_COMPAT_RAWKBD
+int
+wsdisplay_update_rawkbd(sc, scr)
+ struct wsdisplay_softc *sc;
+ struct wsscreen *scr;
+{
+ int s, raw, data, error;
+ s = spltty();
+
+ raw = (scr ? scr->scr_rawkbd : 0);
+
+ if (scr != sc->sc_focus ||
+ sc->sc_rawkbd == raw) {
+ splx(s);
+ return (0);
+ }
+
+ data = raw ? WSKBD_RAW : WSKBD_TRANSLATED;
+ error = wsmux_displayioctl(&sc->sc_muxdv->sc_dv, WSKBDIO_SETMODE,
+ (caddr_t)&data, 0, 0);
+ if (!error)
+ sc->sc_rawkbd = raw;
+ splx(s);
+ return (error);
+}
+#endif
+
+int
+wsdisplay_switch3(arg, error, waitok)
+ void *arg;
+ int error, waitok;
+{
+ struct wsdisplay_softc *sc = arg;
+ int no;
+ struct wsscreen *scr;
+
+ if (!(sc->sc_flags & SC_SWITCHPENDING)) {
+ printf("wsdisplay_switch3: not switching\n");
+ return (EINVAL);
+ }
+
+ no = sc->sc_screenwanted;
+ if (no < 0 || no >= WSDISPLAY_MAXSCREEN)
+ panic("wsdisplay_switch3: invalid screen %d", no);
+ scr = sc->sc_scr[no];
+ if (!scr) {
+ printf("wsdisplay_switch3: screen %d disappeared\n", no);
+ error = ENXIO;
+ }
+
+ if (error) {
+ /* try to recover, avoid recursion */
+
+ if (sc->sc_oldscreen == -1) {
+ printf("wsdisplay_switch3: giving up\n");
+ sc->sc_focus = 0;
+#ifdef WSDISPLAY_COMPAT_RAWKBD
+ wsdisplay_update_rawkbd(sc, 0);
+#endif
+ sc->sc_flags &= ~SC_SWITCHPENDING;
+ return (error);
+ }
+
+ sc->sc_screenwanted = sc->sc_oldscreen;
+ sc->sc_oldscreen = -1;
+ return (wsdisplay_switch1(arg, 0, waitok));
+ }
+
+ sc->sc_flags &= ~SC_SWITCHPENDING;
+
+ if (!error && (scr->scr_flags & SCR_WAITACTIVE))
+ wakeup(scr);
+ return (error);
+}
+
+int
+wsdisplay_switch2(arg, error, waitok)
+ void *arg;
+ int error, waitok;
+{
+ struct wsdisplay_softc *sc = arg;
+ int no;
+ struct wsscreen *scr;
+
+ if (!(sc->sc_flags & SC_SWITCHPENDING)) {
+ printf("wsdisplay_switch2: not switching\n");
+ return (EINVAL);
+ }
+
+ no = sc->sc_screenwanted;
+ if (no < 0 || no >= WSDISPLAY_MAXSCREEN)
+ panic("wsdisplay_switch2: invalid screen %d", no);
+ scr = sc->sc_scr[no];
+ if (!scr) {
+ printf("wsdisplay_switch2: screen %d disappeared\n", no);
+ error = ENXIO;
+ }
+
+ if (error) {
+ /* try to recover, avoid recursion */
+
+ if (sc->sc_oldscreen == -1) {
+ printf("wsdisplay_switch2: giving up\n");
+ sc->sc_focus = 0;
+ sc->sc_flags &= ~SC_SWITCHPENDING;
+ return (error);
+ }
+
+ sc->sc_screenwanted = sc->sc_oldscreen;
+ sc->sc_oldscreen = -1;
+ return (wsdisplay_switch1(arg, 0, waitok));
+ }
+
+ sc->sc_focusidx = no;
+ sc->sc_focus = scr;
+
+#ifdef WSDISPLAY_COMPAT_RAWKBD
+ (void) wsdisplay_update_rawkbd(sc, scr);
+#endif
+ /* keyboard map??? */
+
+#define wsswitch_cb3 ((void (*) __P((void *, int, int)))wsdisplay_switch3)
+ if (scr->scr_syncops) {
+ error = (*scr->scr_syncops->attach)(scr->scr_synccookie, waitok,
+ sc->sc_isconsole && wsdisplay_cons_pollmode ? 0 : wsswitch_cb3, sc);
+ if (error == EAGAIN) {
+ /* switch will be done asynchronously */
+ return (0);
+ }
+ }
+
+ return (wsdisplay_switch3(sc, error, waitok));
+}
+
+int
+wsdisplay_switch1(arg, error, waitok)
+ void *arg;
+ int error, waitok;
+{
+ struct wsdisplay_softc *sc = arg;
+ int no;
+ struct wsscreen *scr;
+
+ if (!(sc->sc_flags & SC_SWITCHPENDING)) {
+ printf("wsdisplay_switch1: not switching\n");
+ return (EINVAL);
+ }
+
+ no = sc->sc_screenwanted;
+ if (no < 0 || no >= WSDISPLAY_MAXSCREEN)
+ panic("wsdisplay_switch1: invalid screen %d", no);
+ scr = sc->sc_scr[no];
+ if (!scr) {
+ printf("wsdisplay_switch1: screen %d disappeared\n", no);
+ error = ENXIO;
+ }
+
+ if (error) {
+ sc->sc_flags &= ~SC_SWITCHPENDING;
+ return (error);
+ }
+
+#define wsswitch_cb2 ((void (*) __P((void *, int, int)))wsdisplay_switch2)
+ error = (*sc->sc_accessops->show_screen)(sc->sc_accesscookie,
+ scr->scr_dconf->emulcookie,
+ waitok,
+ sc->sc_isconsole && wsdisplay_cons_pollmode ? 0 : wsswitch_cb2, sc);
+ if (error == EAGAIN) {
+ /* switch will be done asynchronously */
+ return (0);
+}
+
+ return (wsdisplay_switch2(sc, error, waitok));
+}
+
+int
+wsdisplay_switch(dev, no, waitok)
+ struct device *dev;
+ int no, waitok;
+{
+ struct wsdisplay_softc *sc = (struct wsdisplay_softc *)dev;
+ int s, res = 0;
+ struct wsscreen *scr;
+
+ if (no < 0 || no >= WSDISPLAY_MAXSCREEN || !sc->sc_scr[no])
+ return (ENXIO);
+
+ s = spltty();
+
+ if (sc->sc_focus && no == sc->sc_focusidx) {
+ splx(s);
+ return (0);
+ }
+
+ if (sc->sc_flags & SC_SWITCHPENDING) {
+ splx(s);
+ return (EBUSY);
+ }
+
+ sc->sc_flags |= SC_SWITCHPENDING;
+ sc->sc_screenwanted = no;
+
+ splx(s);
+
+ scr = sc->sc_focus;
+ if (!scr) {
+ sc->sc_oldscreen = -1;
+ return (wsdisplay_switch1(sc, 0, waitok));
+ } else
+ sc->sc_oldscreen = sc->sc_focusidx;
+
+#define wsswitch_cb1 ((void (*) __P((void *, int, int)))wsdisplay_switch1)
+ if (scr->scr_syncops) {
+ res = (*scr->scr_syncops->detach)(scr->scr_synccookie, waitok,
+ sc->sc_isconsole && wsdisplay_cons_pollmode ? 0 : wsswitch_cb1, sc);
+ if (res == EAGAIN) {
+ /* switch will be done asynchronously */
+ return (0);
+ }
+ } else if (scr->scr_flags & SCR_GRAPHICS) {
+ /* no way to save state */
+ res = EBUSY;
+ }
+
+ return (wsdisplay_switch1(sc, res, waitok));
+}
+
+void
+wsdisplay_reset(dev, op)
+ struct device *dev;
+ enum wsdisplay_resetops op;
+{
+ struct wsdisplay_softc *sc = (struct wsdisplay_softc *)dev;
+ struct wsscreen *scr;
+
+ KASSERT(sc != NULL);
+ scr = sc->sc_focus;
+
+ if (!scr)
+ return;
+
+ switch (op) {
+ case WSDISPLAY_RESETEMUL:
+ if (!WSSCREEN_HAS_EMULATOR(scr))
+ break;
+ (*scr->scr_dconf->wsemul->reset)(scr->scr_dconf->wsemulcookie,
+ WSEMUL_RESET);
+ break;
+ case WSDISPLAY_RESETCLOSE:
+ wsdisplay_closescreen(sc, scr);
+ break;
+ }
+}
+
+/*
+ * Interface for (external) VT switch / process synchronization code
+ */
+int
+wsscreen_attach_sync(scr, ops, cookie)
+ struct wsscreen *scr;
+ const struct wscons_syncops *ops;
+ void *cookie;
+{
+ if (scr->scr_syncops) {
+ /*
+ * The screen is already claimed.
+ * Check if the owner is still alive.
+ */
+ if ((*scr->scr_syncops->check)(scr->scr_synccookie))
+ return (EBUSY);
+ }
+ scr->scr_syncops = ops;
+ scr->scr_synccookie = cookie;
+ return (0);
+}
+
+int
+wsscreen_detach_sync(scr)
+ struct wsscreen *scr;
+{
+ if (!scr->scr_syncops)
+ return (EINVAL);
+ scr->scr_syncops = 0;
+ return (0);
+}
+
+int
+wsscreen_lookup_sync(scr, ops, cookiep)
+ struct wsscreen *scr;
+ const struct wscons_syncops *ops; /* used as ID */
+ void **cookiep;
+{
+ if (!scr->scr_syncops || ops != scr->scr_syncops)
+ return (EINVAL);
+ *cookiep = scr->scr_synccookie;
+ return (0);
+}
+
+/*
+ * Interface to virtual screen stuff
+ */
+int
+wsdisplay_maxscreenidx(sc)
+ struct wsdisplay_softc *sc;
+{
+ return (WSDISPLAY_MAXSCREEN - 1);
+}
+
+int
+wsdisplay_screenstate(sc, idx)
+ struct wsdisplay_softc *sc;
+ int idx;
+{
+ if (idx >= WSDISPLAY_MAXSCREEN)
+ return (EINVAL);
+ if (!sc->sc_scr[idx])
+ return (ENXIO);
+ return ((sc->sc_scr[idx]->scr_flags & SCR_OPEN) ? EBUSY : 0);
+}
+
+int
+wsdisplay_getactivescreen(sc)
+ struct wsdisplay_softc *sc;
+{
+ return (sc->sc_focusidx);
+}
+
+int
+wsscreen_switchwait(sc, no)
+ struct wsdisplay_softc *sc;
+ int no;
+{
+ struct wsscreen *scr;
+ int s, res = 0;
+
+ if (no < 0 || no >= WSDISPLAY_MAXSCREEN)
+ return (ENXIO);
+ scr = sc->sc_scr[no];
+ if (!scr)
+ return (ENXIO);
+
+ s = spltty();
+ if (scr != sc->sc_focus) {
+ scr->scr_flags |= SCR_WAITACTIVE;
+ res = tsleep(scr, PCATCH, "wswait", 0);
+ if (scr != sc->sc_scr[no])
+ res = ENXIO; /* disappeared in the meantime */
+ else
+ scr->scr_flags &= ~SCR_WAITACTIVE;
+ }
+ splx(s);
+ return (res);
+}
+
+void
+wsdisplay_kbdholdscreen(dev, hold)
+ struct device *dev;
+ int hold;
+{
+ struct wsdisplay_softc *sc = (struct wsdisplay_softc *)dev;
+ struct wsscreen *scr;
+
+ scr = sc->sc_focus;
+
+ if (hold)
+ scr->scr_hold_screen = 1;
+ else {
+ scr->scr_hold_screen = 0;
+ timeout(ttrstrt, scr->scr_tty, 0); /* "immediate" */
+ }
+}
+
+#if NWSKBD > 0
+struct device *
+wsdisplay_set_console_kbd(kbddv)
+ struct device *kbddv;
+{
+ if (!wsdisplay_console_device)
+ return (0);
+ if (wskbd_add_mux(kbddv->dv_unit, wsdisplay_console_device->sc_muxdv))
+ return (0);
+ return (&wsdisplay_console_device->sc_dv);
+}
+#endif /* NWSKBD > 0 */
+
+/*
+ * Console interface.
+ */
+void
+wsdisplay_cnputc(dev, i)
+ dev_t dev;
+ int i;
+{
+ struct wsscreen_internal *dc;
+ char c = i;
+
+ if (!wsdisplay_console_initted)
+ return;
+
+ if (wsdisplay_console_device != NULL &&
+ (wsdisplay_console_device->sc_scr[0]->scr_flags & SCR_GRAPHICS))
+ return;
+
+ dc = &wsdisplay_console_conf;
+ (*dc->wsemul->output)(dc->wsemulcookie, &c, 1, 1);
+}
+
+static int
+wsdisplay_getc_dummy(dev)
+ dev_t dev;
+{
+ /* panic? */
+ return (0);
+}
+
+static void
+wsdisplay_pollc(dev, on)
+ dev_t dev;
+ int on;
+{
+
+ wsdisplay_cons_pollmode = on;
+
+ if (wsdisplay_cons_kbd_pollc)
+ (*wsdisplay_cons_kbd_pollc)(dev, on);
+}
+
+void
+wsdisplay_set_cons_kbd(get, poll, bell)
+ int (*get) __P((dev_t));
+ void (*poll) __P((dev_t, int));
+ void (*bell) __P((dev_t, u_int, u_int, u_int));
+{
+ wsdisplay_cons.cn_getc = get;
+ /* wsdisplay_cons.cn_bell = bell; XXX */
+ wsdisplay_cons_kbd_pollc = poll;
+}
+
+void
+wsdisplay_unset_cons_kbd()
+{
+ wsdisplay_cons.cn_getc = wsdisplay_getc_dummy;
+ /* wsdisplay_cons.cn_bell = NULL; XXX */
+ wsdisplay_cons_kbd_pollc = NULL;
+}
+
+/*
+ * Switch the console display to it's first screen.
+ */
+void
+wsdisplay_switchtoconsole()
+{
+ if (wsdisplay_console_device != NULL)
+ wsdisplay_switch((struct device *)wsdisplay_console_device,
+ 0, 0);
+}
+
+/*
+ * Switch the console at shutdown.
+ */
+static void
+wsdisplay_shutdownhook(arg)
+ void *arg;
+{
+ wsdisplay_switchtoconsole();
+}