xref: /dragonfly/sys/dev/misc/syscons/syscons.c (revision af79c6e5)
1 /*-
2  * Copyright (c) 1992-1998 S�ren Schmidt
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer,
10  *    without modification, immediately at the beginning of the file.
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. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * $FreeBSD: src/sys/dev/syscons/syscons.c,v 1.336.2.15 2002/10/24 00:35:31 kbyanc Exp $
29  * $DragonFly: src/sys/dev/misc/syscons/syscons.c,v 1.7 2003/08/07 21:16:59 dillon Exp $
30  */
31 
32 #include "use_splash.h"
33 #include "opt_syscons.h"
34 #include "opt_ddb.h"
35 #ifdef __i386__
36 #include "use_apm.h"
37 #endif
38 
39 #include <sys/param.h>
40 #include <sys/systm.h>
41 #include <sys/eventhandler.h>
42 #include <sys/reboot.h>
43 #include <sys/conf.h>
44 #include <sys/proc.h>
45 #include <sys/signalvar.h>
46 #include <sys/sysctl.h>
47 #include <sys/tty.h>
48 #include <sys/kernel.h>
49 #include <sys/malloc.h>
50 #include <sys/cons.h>
51 #include <sys/random.h>
52 
53 #include <machine/clock.h>
54 #include <machine/console.h>
55 #include <machine/psl.h>
56 #include <machine/pc/display.h>
57 #ifdef __i386__
58 #include <machine/apm_bios.h>
59 #include <machine/frame.h>
60 #endif
61 
62 #include <dev/misc/kbd/kbdreg.h>
63 #include <dev/video/fb/fbreg.h>
64 #include <dev/video/fb/splashreg.h>
65 #include "syscons.h"
66 
67 #define COLD 0
68 #define WARM 1
69 
70 #define DEFAULT_BLANKTIME	(5*60)		/* 5 minutes */
71 #define MAX_BLANKTIME		(7*24*60*60)	/* 7 days!? */
72 
73 #define KEYCODE_BS		0x0e		/* "<-- Backspace" key, XXX */
74 
75 typedef struct default_attr {
76 	int		std_color;		/* normal hardware color */
77 	int		rev_color;		/* reverse hardware color */
78 } default_attr;
79 
80 static default_attr user_default = {
81     SC_NORM_ATTR,
82     SC_NORM_REV_ATTR,
83 };
84 
85 static default_attr kernel_default = {
86     SC_KERNEL_CONS_ATTR,
87     SC_KERNEL_CONS_REV_ATTR,
88 };
89 
90 static	int		sc_console_unit = -1;
91 static  scr_stat    	*sc_console;
92 static	struct tty	*sc_console_tty;
93 static	void		*kernel_console_ts;
94 
95 static  char        	init_done = COLD;
96 static  char		shutdown_in_progress = FALSE;
97 static	char		sc_malloc = FALSE;
98 
99 static	int		saver_mode = CONS_NO_SAVER; /* LKM/user saver */
100 static	int		run_scrn_saver = FALSE;	/* should run the saver? */
101 static	long        	scrn_blank_time = 0;    /* screen saver timeout value */
102 #if NSPLASH > 0
103 static	int     	scrn_blanked;		/* # of blanked screen */
104 static	int		sticky_splash = FALSE;
105 
106 static	void		none_saver(sc_softc_t *sc, int blank) { }
107 static	void		(*current_saver)(sc_softc_t *, int) = none_saver;
108 #endif
109 
110 #if !defined(SC_NO_FONT_LOADING) && defined(SC_DFLT_FONT)
111 #include "font.h"
112 #endif
113 
114 	d_ioctl_t	*sc_user_ioctl;
115 
116 static	bios_values_t	bios_value;
117 
118 static	int		enable_panic_key;
119 SYSCTL_INT(_machdep, OID_AUTO, enable_panic_key, CTLFLAG_RW, &enable_panic_key,
120 	   0, "");
121 
122 #define SC_CONSOLECTL	255
123 
124 #define VIRTUAL_TTY(sc, x) (SC_DEV((sc), (x)) != NULL ?	\
125 	SC_DEV((sc), (x))->si_tty : NULL)
126 #define ISTTYOPEN(tp)	((tp) && ((tp)->t_state & TS_ISOPEN))
127 
128 static	int		debugger;
129 
130 /* prototypes */
131 static int scvidprobe(int unit, int flags, int cons);
132 static int sckbdprobe(int unit, int flags, int cons);
133 static void scmeminit(void *arg);
134 static int scdevtounit(dev_t dev);
135 static kbd_callback_func_t sckbdevent;
136 static int scparam(struct tty *tp, struct termios *t);
137 static void scstart(struct tty *tp);
138 static void scinit(int unit, int flags);
139 #if __i386__
140 static void scterm(int unit, int flags);
141 #endif
142 static void scshutdown(void *arg, int howto);
143 static u_int scgetc(sc_softc_t *sc, u_int flags);
144 #define SCGETC_CN	1
145 #define SCGETC_NONBLOCK	2
146 static int sccngetch(int flags);
147 static void sccnupdate(scr_stat *scp);
148 static scr_stat *alloc_scp(sc_softc_t *sc, int vty);
149 static void init_scp(sc_softc_t *sc, int vty, scr_stat *scp);
150 static timeout_t scrn_timer;
151 static int and_region(int *s1, int *e1, int s2, int e2);
152 static void scrn_update(scr_stat *scp, int show_cursor);
153 
154 #if NSPLASH > 0
155 static int scsplash_callback(int event, void *arg);
156 static void scsplash_saver(sc_softc_t *sc, int show);
157 static int add_scrn_saver(void (*this_saver)(sc_softc_t *, int));
158 static int remove_scrn_saver(void (*this_saver)(sc_softc_t *, int));
159 static int set_scrn_saver_mode(scr_stat *scp, int mode, u_char *pal, int border);
160 static int restore_scrn_saver_mode(scr_stat *scp, int changemode);
161 static void stop_scrn_saver(sc_softc_t *sc, void (*saver)(sc_softc_t *, int));
162 static int wait_scrn_saver_stop(sc_softc_t *sc);
163 #define scsplash_stick(stick)		(sticky_splash = (stick))
164 #else /* !NSPLASH */
165 #define scsplash_stick(stick)
166 #endif /* NSPLASH */
167 
168 static int do_switch_scr(sc_softc_t *sc, int s);
169 static int vt_proc_alive(scr_stat *scp);
170 static int signal_vt_rel(scr_stat *scp);
171 static int signal_vt_acq(scr_stat *scp);
172 static int finish_vt_rel(scr_stat *scp, int release, int *s);
173 static int finish_vt_acq(scr_stat *scp);
174 static void exchange_scr(sc_softc_t *sc);
175 static void update_cursor_image(scr_stat *scp);
176 static int save_kbd_state(scr_stat *scp);
177 static int update_kbd_state(scr_stat *scp, int state, int mask);
178 static int update_kbd_leds(scr_stat *scp, int which);
179 static timeout_t blink_screen;
180 
181 #define	CDEV_MAJOR	12
182 
183 static cn_probe_t	sccnprobe;
184 static cn_init_t	sccninit;
185 static cn_getc_t	sccngetc;
186 static cn_checkc_t	sccncheckc;
187 static cn_putc_t	sccnputc;
188 static cn_dbctl_t	sccndbctl;
189 static cn_term_t	sccnterm;
190 
191 #if __alpha__
192 void sccnattach(void);
193 #endif
194 
195 CONS_DRIVER(sc, sccnprobe, sccninit, sccnterm, sccngetc, sccncheckc, sccnputc,
196 	    sccndbctl);
197 
198 static	d_open_t	scopen;
199 static	d_close_t	scclose;
200 static	d_read_t	scread;
201 static	d_ioctl_t	scioctl;
202 static	d_mmap_t	scmmap;
203 
204 static struct cdevsw sc_cdevsw = {
205 	/* name */	"sc",
206 	/* maj */	CDEV_MAJOR,
207 	/* flags */	D_TTY | D_KQFILTER,
208 	/* port */	NULL,
209 	/* autoq */	0,
210 
211 	/* open */	scopen,
212 	/* close */	scclose,
213 	/* read */	scread,
214 	/* write */	ttywrite,
215 	/* ioctl */	scioctl,
216 	/* poll */	ttypoll,
217 	/* mmap */	scmmap,
218 	/* strategy */	nostrategy,
219 	/* psize */	nopsize,
220 	/* dump */	nodump,
221 	/* kqfilter */	ttykqfilter
222 };
223 
224 int
225 sc_probe_unit(int unit, int flags)
226 {
227     if (!scvidprobe(unit, flags, FALSE)) {
228 	if (bootverbose)
229 	    printf("sc%d: no video adapter found.\n", unit);
230 	return ENXIO;
231     }
232 
233     /* syscons will be attached even when there is no keyboard */
234     sckbdprobe(unit, flags, FALSE);
235 
236     return 0;
237 }
238 
239 /* probe video adapters, return TRUE if found */
240 static int
241 scvidprobe(int unit, int flags, int cons)
242 {
243     /*
244      * Access the video adapter driver through the back door!
245      * Video adapter drivers need to be configured before syscons.
246      * However, when syscons is being probed as the low-level console,
247      * they have not been initialized yet.  We force them to initialize
248      * themselves here. XXX
249      */
250     vid_configure(cons ? VIO_PROBE_ONLY : 0);
251 
252     return (vid_find_adapter("*", unit) >= 0);
253 }
254 
255 /* probe the keyboard, return TRUE if found */
256 static int
257 sckbdprobe(int unit, int flags, int cons)
258 {
259     /* access the keyboard driver through the backdoor! */
260     kbd_configure(cons ? KB_CONF_PROBE_ONLY : 0);
261 
262     return (kbd_find_keyboard("*", unit) >= 0);
263 }
264 
265 static char
266 *adapter_name(video_adapter_t *adp)
267 {
268     static struct {
269 	int type;
270 	char *name[2];
271     } names[] = {
272 	{ KD_MONO,	{ "MDA",	"MDA" } },
273 	{ KD_HERCULES,	{ "Hercules",	"Hercules" } },
274 	{ KD_CGA,	{ "CGA",	"CGA" } },
275 	{ KD_EGA,	{ "EGA",	"EGA (mono)" } },
276 	{ KD_VGA,	{ "VGA",	"VGA (mono)" } },
277 	{ KD_PC98,	{ "PC-98x1",	"PC-98x1" } },
278 	{ KD_TGA,	{ "TGA",	"TGA" } },
279 	{ -1,		{ "Unknown",	"Unknown" } },
280     };
281     int i;
282 
283     for (i = 0; names[i].type != -1; ++i)
284 	if (names[i].type == adp->va_type)
285 	    break;
286     return names[i].name[(adp->va_flags & V_ADP_COLOR) ? 0 : 1];
287 }
288 
289 int
290 sc_attach_unit(int unit, int flags)
291 {
292     sc_softc_t *sc;
293     scr_stat *scp;
294 #ifdef SC_PIXEL_MODE
295     video_info_t info;
296 #endif
297     int vc;
298     dev_t dev;
299 
300     flags &= ~SC_KERNEL_CONSOLE;
301 
302     if (sc_console_unit == unit) {
303 	/*
304 	 * If this unit is being used as the system console, we need to
305 	 * adjust some variables and buffers before and after scinit().
306 	 */
307 	/* assert(sc_console != NULL) */
308 	flags |= SC_KERNEL_CONSOLE;
309 	scmeminit(NULL);
310 
311 	scinit(unit, flags);
312 
313 	if (sc_console->tsw->te_size > 0) {
314 	    /* assert(sc_console->ts != NULL); */
315 	    kernel_console_ts = sc_console->ts;
316 	    sc_console->ts = malloc(sc_console->tsw->te_size,
317 				    M_DEVBUF, M_WAITOK);
318 	    bcopy(kernel_console_ts, sc_console->ts, sc_console->tsw->te_size);
319     	    (*sc_console->tsw->te_default_attr)(sc_console,
320 						user_default.std_color,
321 						user_default.rev_color);
322 	}
323     } else {
324 	scinit(unit, flags);
325     }
326 
327     sc = sc_get_softc(unit, flags & SC_KERNEL_CONSOLE);
328     sc->config = flags;
329     scp = SC_STAT(sc->dev[0]);
330     if (sc_console == NULL)	/* sc_console_unit < 0 */
331 	sc_console = scp;
332 
333 #ifdef SC_PIXEL_MODE
334     if ((sc->config & SC_VESA800X600)
335 	&& ((*vidsw[sc->adapter]->get_info)(sc->adp, M_VESA_800x600, &info) == 0)) {
336 #if NSPLASH > 0
337 	if (sc->flags & SC_SPLASH_SCRN)
338 	    splash_term(sc->adp);
339 #endif
340 	sc_set_graphics_mode(scp, NULL, M_VESA_800x600);
341 	sc_set_pixel_mode(scp, NULL, COL, ROW, 16);
342 	sc->initial_mode = M_VESA_800x600;
343 #if NSPLASH > 0
344 	/* put up the splash again! */
345 	if (sc->flags & SC_SPLASH_SCRN)
346     	    splash_init(sc->adp, scsplash_callback, sc);
347 #endif
348     }
349 #endif /* SC_PIXEL_MODE */
350 
351     /* initialize cursor */
352     if (!ISGRAPHSC(scp))
353     	update_cursor_image(scp);
354 
355     /* get screen update going */
356     scrn_timer(sc);
357 
358     /* set up the keyboard */
359     kbd_ioctl(sc->kbd, KDSKBMODE, (caddr_t)&scp->kbd_mode);
360     update_kbd_state(scp, scp->status, LOCK_MASK);
361 
362     printf("sc%d: %s <%d virtual consoles, flags=0x%x>\n",
363 	   unit, adapter_name(sc->adp), sc->vtys, sc->config);
364     if (bootverbose) {
365 	printf("sc%d:", unit);
366     	if (sc->adapter >= 0)
367 	    printf(" fb%d", sc->adapter);
368 	if (sc->keyboard >= 0)
369 	    printf(", kbd%d", sc->keyboard);
370 	if (scp->tsw)
371 	    printf(", terminal emulator: %s (%s)",
372 		   scp->tsw->te_name, scp->tsw->te_desc);
373 	printf("\n");
374     }
375 
376     /* register a shutdown callback for the kernel console */
377     if (sc_console_unit == unit)
378 	EVENTHANDLER_REGISTER(shutdown_pre_sync, scshutdown,
379 			      (void *)(uintptr_t)unit, SHUTDOWN_PRI_DEFAULT);
380 
381     for (vc = 0; vc < sc->vtys; vc++) {
382 	dev = make_dev(&sc_cdevsw, vc + unit * MAXCONS,
383 	    UID_ROOT, GID_WHEEL, 0600, "ttyv%r", vc + unit * MAXCONS);
384 	sc->dev[vc] = dev;
385 	/*
386 	 * The first vty already has struct tty and scr_stat initialized
387 	 * in scinit().  The other vtys will have these structs when
388 	 * first opened.
389 	 */
390     }
391 
392     dev = make_dev(&sc_cdevsw, SC_CONSOLECTL,
393 		   UID_ROOT, GID_WHEEL, 0600, "consolectl");
394     dev->si_tty = sc_console_tty = ttymalloc(sc_console_tty);
395     SC_STAT(dev) = sc_console;
396 
397     return 0;
398 }
399 
400 static void
401 scmeminit(void *arg)
402 {
403     if (sc_malloc)
404 	return;
405     sc_malloc = TRUE;
406 
407     /*
408      * As soon as malloc() becomes functional, we had better allocate
409      * various buffers for the kernel console.
410      */
411 
412     if (sc_console_unit < 0)	/* sc_console == NULL */
413 	return;
414 
415     /* copy the temporary buffer to the final buffer */
416     sc_alloc_scr_buffer(sc_console, FALSE, FALSE);
417 
418 #ifndef SC_NO_CUTPASTE
419     sc_alloc_cut_buffer(sc_console, FALSE);
420 #endif
421 
422 #ifndef SC_NO_HISTORY
423     /* initialize history buffer & pointers */
424     sc_alloc_history_buffer(sc_console, 0, 0, FALSE);
425 #endif
426 }
427 
428 /* XXX */
429 SYSINIT(sc_mem, SI_SUB_KMEM, SI_ORDER_ANY, scmeminit, NULL);
430 
431 static int
432 scdevtounit(dev_t dev)
433 {
434     int vty = SC_VTY(dev);
435 
436     if (vty == SC_CONSOLECTL)
437 	return ((sc_console != NULL) ? sc_console->sc->unit : -1);
438     else if ((vty < 0) || (vty >= MAXCONS*sc_max_unit()))
439 	return -1;
440     else
441 	return vty/MAXCONS;
442 }
443 
444 int
445 scopen(dev_t dev, int flag, int mode, struct thread *td)
446 {
447     int unit = scdevtounit(dev);
448     sc_softc_t *sc;
449     struct tty *tp;
450     scr_stat *scp;
451     keyarg_t key;
452     int error;
453 
454     DPRINTF(5, ("scopen: dev:%d,%d, unit:%d, vty:%d\n",
455 		major(dev), minor(dev), unit, SC_VTY(dev)));
456 
457     sc = sc_get_softc(unit, (sc_console_unit == unit) ? SC_KERNEL_CONSOLE : 0);
458     if (sc == NULL)
459 	return ENXIO;
460 
461     tp = dev->si_tty = ttymalloc(dev->si_tty);
462     tp->t_oproc = scstart;
463     tp->t_param = scparam;
464     tp->t_stop = nottystop;
465     tp->t_dev = dev;
466     if (!ISTTYOPEN(tp)) {
467 	ttychars(tp);
468         /* Use the current setting of the <-- key as default VERASE. */
469         /* If the Delete key is preferable, an stty is necessary     */
470 	if (sc->kbd != NULL) {
471 	    key.keynum = KEYCODE_BS;
472 	    kbd_ioctl(sc->kbd, GIO_KEYMAPENT, (caddr_t)&key);
473             tp->t_cc[VERASE] = key.key.map[0];
474 	}
475 	tp->t_iflag = TTYDEF_IFLAG;
476 	tp->t_oflag = TTYDEF_OFLAG;
477 	tp->t_cflag = TTYDEF_CFLAG;
478 	tp->t_lflag = TTYDEF_LFLAG;
479 	tp->t_ispeed = tp->t_ospeed = TTYDEF_SPEED;
480 	scparam(tp, &tp->t_termios);
481 	(*linesw[tp->t_line].l_modem)(tp, 1);
482     }
483     else
484 	if (tp->t_state & TS_XCLUDE && suser(td))
485 	    return(EBUSY);
486 
487     error = (*linesw[tp->t_line].l_open)(dev, tp);
488 
489     scp = SC_STAT(dev);
490     if (scp == NULL) {
491 	scp = SC_STAT(dev) = alloc_scp(sc, SC_VTY(dev));
492 	if (ISGRAPHSC(scp))
493 	    sc_set_pixel_mode(scp, NULL, COL, ROW, 16);
494     }
495     if (!tp->t_winsize.ws_col && !tp->t_winsize.ws_row) {
496 	tp->t_winsize.ws_col = scp->xsize;
497 	tp->t_winsize.ws_row = scp->ysize;
498     }
499 
500     return error;
501 }
502 
503 int
504 scclose(dev_t dev, int flag, int mode, struct thread *td)
505 {
506     struct tty *tp = dev->si_tty;
507     scr_stat *scp;
508     int s;
509 
510     if (SC_VTY(dev) != SC_CONSOLECTL) {
511 	scp = SC_STAT(tp->t_dev);
512 	/* were we in the middle of the VT switching process? */
513 	DPRINTF(5, ("sc%d: scclose(), ", scp->sc->unit));
514 	s = spltty();
515 	if ((scp == scp->sc->cur_scp) && (scp->sc->unit == sc_console_unit))
516 	    cons_unavail = FALSE;
517 	if (finish_vt_rel(scp, TRUE, &s) == 0)	/* force release */
518 	    DPRINTF(5, ("reset WAIT_REL, "));
519 	if (finish_vt_acq(scp) == 0)		/* force acknowledge */
520 	    DPRINTF(5, ("reset WAIT_ACQ, "));
521 #if not_yet_done
522 	if (scp == &main_console) {
523 	    scp->pid = 0;
524 	    scp->proc = NULL;
525 	    scp->smode.mode = VT_AUTO;
526 	}
527 	else {
528 	    sc_vtb_destroy(&scp->vtb);
529 	    sc_vtb_destroy(&scp->scr);
530 	    sc_free_history_buffer(scp, scp->ysize);
531 	    SC_STAT(dev) = NULL;
532 	    free(scp, M_DEVBUF);
533 	}
534 #else
535 	scp->pid = 0;
536 	scp->proc = NULL;
537 	scp->smode.mode = VT_AUTO;
538 #endif
539 	scp->kbd_mode = K_XLATE;
540 	if (scp == scp->sc->cur_scp)
541 	    kbd_ioctl(scp->sc->kbd, KDSKBMODE, (caddr_t)&scp->kbd_mode);
542 	DPRINTF(5, ("done.\n"));
543     }
544     spltty();
545     (*linesw[tp->t_line].l_close)(tp, flag);
546     ttyclose(tp);
547     spl0();
548     return(0);
549 }
550 
551 int
552 scread(dev_t dev, struct uio *uio, int flag)
553 {
554     sc_touch_scrn_saver();
555     return ttyread(dev, uio, flag);
556 }
557 
558 static int
559 sckbdevent(keyboard_t *thiskbd, int event, void *arg)
560 {
561     sc_softc_t *sc;
562     struct tty *cur_tty;
563     int c;
564     size_t len;
565     u_char *cp;
566 
567     sc = (sc_softc_t *)arg;
568     /* assert(thiskbd == sc->kbd) */
569 
570     switch (event) {
571     case KBDIO_KEYINPUT:
572 	break;
573     case KBDIO_UNLOADING:
574 	sc->kbd = NULL;
575 	sc->keyboard = -1;
576 	kbd_release(thiskbd, (void *)&sc->keyboard);
577 	return 0;
578     default:
579 	return EINVAL;
580     }
581 
582     /*
583      * Loop while there is still input to get from the keyboard.
584      * I don't think this is nessesary, and it doesn't fix
585      * the Xaccel-2.1 keyboard hang, but it can't hurt.		XXX
586      */
587     while ((c = scgetc(sc, SCGETC_NONBLOCK)) != NOKEY) {
588 
589 	cur_tty = VIRTUAL_TTY(sc, sc->cur_scp->index);
590 	if (!ISTTYOPEN(cur_tty)) {
591 	    cur_tty = sc_console_tty;
592 	    if (!ISTTYOPEN(cur_tty))
593 		continue;
594 	}
595 
596 	if ((*sc->cur_scp->tsw->te_input)(sc->cur_scp, c, cur_tty))
597 	    continue;
598 
599 	switch (KEYFLAGS(c)) {
600 	case 0x0000: /* normal key */
601 	    (*linesw[cur_tty->t_line].l_rint)(KEYCHAR(c), cur_tty);
602 	    break;
603 	case FKEY:  /* function key, return string */
604 	    cp = kbd_get_fkeystr(thiskbd, KEYCHAR(c), &len);
605 	    if (cp != NULL) {
606 	    	while (len-- >  0)
607 		    (*linesw[cur_tty->t_line].l_rint)(*cp++, cur_tty);
608 	    }
609 	    break;
610 	case MKEY:  /* meta is active, prepend ESC */
611 	    (*linesw[cur_tty->t_line].l_rint)(0x1b, cur_tty);
612 	    (*linesw[cur_tty->t_line].l_rint)(KEYCHAR(c), cur_tty);
613 	    break;
614 	case BKEY:  /* backtab fixed sequence (esc [ Z) */
615 	    (*linesw[cur_tty->t_line].l_rint)(0x1b, cur_tty);
616 	    (*linesw[cur_tty->t_line].l_rint)('[', cur_tty);
617 	    (*linesw[cur_tty->t_line].l_rint)('Z', cur_tty);
618 	    break;
619 	}
620     }
621 
622     sc->cur_scp->status |= MOUSE_HIDDEN;
623 
624     return 0;
625 }
626 
627 static int
628 scparam(struct tty *tp, struct termios *t)
629 {
630     tp->t_ispeed = t->c_ispeed;
631     tp->t_ospeed = t->c_ospeed;
632     tp->t_cflag = t->c_cflag;
633     return 0;
634 }
635 
636 int
637 scioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct thread *td)
638 {
639     int error;
640     int i;
641     struct tty *tp;
642     sc_softc_t *sc;
643     scr_stat *scp;
644     int s;
645     struct proc *p = td->td_proc;
646 
647     KKASSERT(p);
648 
649     tp = dev->si_tty;
650 
651     /* If there is a user_ioctl function call that first */
652     if (sc_user_ioctl) {
653 	error = (*sc_user_ioctl)(dev, cmd, data, flag, td);
654 	if (error != ENOIOCTL)
655 	    return error;
656     }
657 
658     error = sc_vid_ioctl(tp, cmd, data, flag, td);
659     if (error != ENOIOCTL)
660 	return error;
661 
662 #ifndef SC_NO_HISTORY
663     error = sc_hist_ioctl(tp, cmd, data, flag, td);
664     if (error != ENOIOCTL)
665 	return error;
666 #endif
667 
668 #ifndef SC_NO_SYSMOUSE
669     error = sc_mouse_ioctl(tp, cmd, data, flag, td);
670     if (error != ENOIOCTL)
671 	return error;
672 #endif
673 
674     scp = SC_STAT(tp->t_dev);
675     /* assert(scp != NULL) */
676     /* scp is sc_console, if SC_VTY(dev) == SC_CONSOLECTL. */
677     sc = scp->sc;
678 
679     if (scp->tsw) {
680 	error = (*scp->tsw->te_ioctl)(scp, tp, cmd, data, flag, td);
681 	if (error != ENOIOCTL)
682 	    return error;
683     }
684 
685     switch (cmd) {  		/* process console hardware related ioctl's */
686 
687     case GIO_ATTR:      	/* get current attributes */
688 	/* this ioctl is not processed here, but in the terminal emulator */
689 	return ENOTTY;
690 
691     case GIO_COLOR:     	/* is this a color console ? */
692 	*(int *)data = (sc->adp->va_flags & V_ADP_COLOR) ? 1 : 0;
693 	return 0;
694 
695     case CONS_BLANKTIME:    	/* set screen saver timeout (0 = no saver) */
696 	if (*(int *)data < 0 || *(int *)data > MAX_BLANKTIME)
697             return EINVAL;
698 	s = spltty();
699 	scrn_blank_time = *(int *)data;
700 	run_scrn_saver = (scrn_blank_time != 0);
701 	splx(s);
702 	return 0;
703 
704     case CONS_CURSORTYPE:   	/* set cursor type blink/noblink */
705 	s = spltty();
706 	if (!ISGRAPHSC(sc->cur_scp))
707 	    sc_remove_cursor_image(sc->cur_scp);
708 	if ((*(int*)data) & 0x01)
709 	    sc->flags |= SC_BLINK_CURSOR;
710 	else
711 	    sc->flags &= ~SC_BLINK_CURSOR;
712 	if ((*(int*)data) & 0x02) {
713 	    sc->flags |= SC_CHAR_CURSOR;
714 	} else
715 	    sc->flags &= ~SC_CHAR_CURSOR;
716 	/*
717 	 * The cursor shape is global property; all virtual consoles
718 	 * are affected. Update the cursor in the current console...
719 	 */
720 	if (!ISGRAPHSC(sc->cur_scp)) {
721 	    sc_set_cursor_image(sc->cur_scp);
722 	    sc_draw_cursor_image(sc->cur_scp);
723 	}
724 	splx(s);
725 	return 0;
726 
727     case CONS_BELLTYPE: 	/* set bell type sound/visual */
728 	if ((*(int *)data) & 0x01)
729 	    sc->flags |= SC_VISUAL_BELL;
730 	else
731 	    sc->flags &= ~SC_VISUAL_BELL;
732 	if ((*(int *)data) & 0x02)
733 	    sc->flags |= SC_QUIET_BELL;
734 	else
735 	    sc->flags &= ~SC_QUIET_BELL;
736 	return 0;
737 
738     case CONS_GETINFO:  	/* get current (virtual) console info */
739     {
740 	vid_info_t *ptr = (vid_info_t*)data;
741 	if (ptr->size == sizeof(struct vid_info)) {
742 	    ptr->m_num = sc->cur_scp->index;
743 	    ptr->font_size = scp->font_size;
744 	    ptr->mv_col = scp->xpos;
745 	    ptr->mv_row = scp->ypos;
746 	    ptr->mv_csz = scp->xsize;
747 	    ptr->mv_rsz = scp->ysize;
748 	    /*
749 	     * The following fields are filled by the terminal emulator. XXX
750 	     *
751 	     * ptr->mv_norm.fore
752 	     * ptr->mv_norm.back
753 	     * ptr->mv_rev.fore
754 	     * ptr->mv_rev.back
755 	     */
756 	    ptr->mv_grfc.fore = 0;      /* not supported */
757 	    ptr->mv_grfc.back = 0;      /* not supported */
758 	    ptr->mv_ovscan = scp->border;
759 	    if (scp == sc->cur_scp)
760 		save_kbd_state(scp);
761 	    ptr->mk_keylock = scp->status & LOCK_MASK;
762 	    return 0;
763 	}
764 	return EINVAL;
765     }
766 
767     case CONS_GETVERS:  	/* get version number */
768 	*(int*)data = 0x200;    /* version 2.0 */
769 	return 0;
770 
771     case CONS_IDLE:		/* see if the screen has been idle */
772 	/*
773 	 * When the screen is in the GRAPHICS_MODE or UNKNOWN_MODE,
774 	 * the user process may have been writing something on the
775 	 * screen and syscons is not aware of it. Declare the screen
776 	 * is NOT idle if it is in one of these modes. But there is
777 	 * an exception to it; if a screen saver is running in the
778 	 * graphics mode in the current screen, we should say that the
779 	 * screen has been idle.
780 	 */
781 	*(int *)data = (sc->flags & SC_SCRN_IDLE)
782 		       && (!ISGRAPHSC(sc->cur_scp)
783 			   || (sc->cur_scp->status & SAVER_RUNNING));
784 	return 0;
785 
786     case CONS_SAVERMODE:	/* set saver mode */
787 	switch(*(int *)data) {
788 	case CONS_NO_SAVER:
789 	case CONS_USR_SAVER:
790 	    /* if a LKM screen saver is running, stop it first. */
791 	    scsplash_stick(FALSE);
792 	    saver_mode = *(int *)data;
793 	    s = spltty();
794 #if NSPLASH > 0
795 	    if ((error = wait_scrn_saver_stop(NULL))) {
796 		splx(s);
797 		return error;
798 	    }
799 #endif /* NSPLASH */
800 	    run_scrn_saver = TRUE;
801 	    if (saver_mode == CONS_USR_SAVER)
802 		scp->status |= SAVER_RUNNING;
803 	    else
804 		scp->status &= ~SAVER_RUNNING;
805 	    scsplash_stick(TRUE);
806 	    splx(s);
807 	    break;
808 	case CONS_LKM_SAVER:
809 	    s = spltty();
810 	    if ((saver_mode == CONS_USR_SAVER) && (scp->status & SAVER_RUNNING))
811 		scp->status &= ~SAVER_RUNNING;
812 	    saver_mode = *(int *)data;
813 	    splx(s);
814 	    break;
815 	default:
816 	    return EINVAL;
817 	}
818 	return 0;
819 
820     case CONS_SAVERSTART:	/* immediately start/stop the screen saver */
821 	/*
822 	 * Note that this ioctl does not guarantee the screen saver
823 	 * actually starts or stops. It merely attempts to do so...
824 	 */
825 	s = spltty();
826 	run_scrn_saver = (*(int *)data != 0);
827 	if (run_scrn_saver)
828 	    sc->scrn_time_stamp -= scrn_blank_time;
829 	splx(s);
830 	return 0;
831 
832     case CONS_SCRSHOT:		/* get a screen shot */
833     {
834 	scrshot_t *ptr = (scrshot_t*)data;
835 	s = spltty();
836 	if (ISGRAPHSC(scp)) {
837 	    splx(s);
838 	    return EOPNOTSUPP;
839 	}
840 	if (scp->xsize != ptr->xsize || scp->ysize != ptr->ysize) {
841 	    splx(s);
842 	    return EINVAL;
843 	}
844 	copyout ((void*)scp->vtb.vtb_buffer, ptr->buf,
845 		 ptr->xsize * ptr->ysize * sizeof(u_int16_t));
846 	splx(s);
847 	return 0;
848     }
849 
850     case VT_SETMODE:    	/* set screen switcher mode */
851     {
852 	struct vt_mode *mode;
853 
854 	mode = (struct vt_mode *)data;
855 	DPRINTF(5, ("sc%d: VT_SETMODE ", sc->unit));
856 	if (scp->smode.mode == VT_PROCESS) {
857     	    if (scp->proc == pfind(scp->pid) && scp->proc != p) {
858 		DPRINTF(5, ("error EPERM\n"));
859 		return EPERM;
860 	    }
861 	}
862 	s = spltty();
863 	if (mode->mode == VT_AUTO) {
864 	    scp->smode.mode = VT_AUTO;
865 	    scp->proc = NULL;
866 	    scp->pid = 0;
867 	    DPRINTF(5, ("VT_AUTO, "));
868 	    if ((scp == sc->cur_scp) && (sc->unit == sc_console_unit))
869 		cons_unavail = FALSE;
870 	    /* were we in the middle of the vty switching process? */
871 	    if (finish_vt_rel(scp, TRUE, &s) == 0)
872 		DPRINTF(5, ("reset WAIT_REL, "));
873 	    if (finish_vt_acq(scp) == 0)
874 		DPRINTF(5, ("reset WAIT_ACQ, "));
875 	} else {
876 	    if (!ISSIGVALID(mode->relsig) || !ISSIGVALID(mode->acqsig)
877 		|| !ISSIGVALID(mode->frsig)) {
878 		splx(s);
879 		DPRINTF(5, ("error EINVAL\n"));
880 		return EINVAL;
881 	    }
882 	    DPRINTF(5, ("VT_PROCESS %d, ", p->p_pid));
883 	    bcopy(data, &scp->smode, sizeof(struct vt_mode));
884 	    scp->proc = p;
885 	    scp->pid = scp->proc->p_pid;
886 	    if ((scp == sc->cur_scp) && (sc->unit == sc_console_unit))
887 		cons_unavail = TRUE;
888 	}
889 	splx(s);
890 	DPRINTF(5, ("\n"));
891 	return 0;
892     }
893 
894     case VT_GETMODE:    	/* get screen switcher mode */
895 	bcopy(&scp->smode, data, sizeof(struct vt_mode));
896 	return 0;
897 
898     case VT_RELDISP:    	/* screen switcher ioctl */
899 	s = spltty();
900 	/*
901 	 * This must be the current vty which is in the VT_PROCESS
902 	 * switching mode...
903 	 */
904 	if ((scp != sc->cur_scp) || (scp->smode.mode != VT_PROCESS)) {
905 	    splx(s);
906 	    return EINVAL;
907 	}
908 	/* ...and this process is controlling it. */
909 	if (scp->proc != p) {
910 	    splx(s);
911 	    return EPERM;
912 	}
913 	error = EINVAL;
914 	switch(*(int *)data) {
915 	case VT_FALSE:  	/* user refuses to release screen, abort */
916 	    if ((error = finish_vt_rel(scp, FALSE, &s)) == 0)
917 		DPRINTF(5, ("sc%d: VT_FALSE\n", sc->unit));
918 	    break;
919 	case VT_TRUE:   	/* user has released screen, go on */
920 	    if ((error = finish_vt_rel(scp, TRUE, &s)) == 0)
921 		DPRINTF(5, ("sc%d: VT_TRUE\n", sc->unit));
922 	    break;
923 	case VT_ACKACQ: 	/* acquire acknowledged, switch completed */
924 	    if ((error = finish_vt_acq(scp)) == 0)
925 		DPRINTF(5, ("sc%d: VT_ACKACQ\n", sc->unit));
926 	    break;
927 	default:
928 	    break;
929 	}
930 	splx(s);
931 	return error;
932 
933     case VT_OPENQRY:    	/* return free virtual console */
934 	for (i = sc->first_vty; i < sc->first_vty + sc->vtys; i++) {
935 	    tp = VIRTUAL_TTY(sc, i);
936 	    if (!ISTTYOPEN(tp)) {
937 		*(int *)data = i + 1;
938 		return 0;
939 	    }
940 	}
941 	return EINVAL;
942 
943     case VT_ACTIVATE:   	/* switch to screen *data */
944 	i = (*(int *)data == 0) ? scp->index : (*(int *)data - 1);
945 	s = spltty();
946 	sc_clean_up(sc->cur_scp);
947 	splx(s);
948 	return sc_switch_scr(sc, i);
949 
950     case VT_WAITACTIVE: 	/* wait for switch to occur */
951 	i = (*(int *)data == 0) ? scp->index : (*(int *)data - 1);
952 	if ((i < sc->first_vty) || (i >= sc->first_vty + sc->vtys))
953 	    return EINVAL;
954 	s = spltty();
955 	error = sc_clean_up(sc->cur_scp);
956 	splx(s);
957 	if (error)
958 	    return error;
959 	scp = SC_STAT(SC_DEV(sc, i));
960 	if (scp == scp->sc->cur_scp)
961 	    return 0;
962 	while ((error=tsleep((caddr_t)&scp->smode, PCATCH,
963 			     "waitvt", 0)) == ERESTART) ;
964 	return error;
965 
966     case VT_GETACTIVE:		/* get active vty # */
967 	*(int *)data = sc->cur_scp->index + 1;
968 	return 0;
969 
970     case VT_GETINDEX:		/* get this vty # */
971 	*(int *)data = scp->index + 1;
972 	return 0;
973 
974     case VT_LOCKSWITCH:		/* prevent vty switching */
975 	if ((*(int *)data) & 0x01)
976 	    sc->flags |= SC_SCRN_VTYLOCK;
977 	else
978 	    sc->flags &= ~SC_SCRN_VTYLOCK;
979 	return 0;
980 
981     case KDENABIO:      	/* allow io operations */
982 	error = suser(td);
983 	if (error != 0)
984 	    return error;
985 	if (securelevel > 0)
986 	    return EPERM;
987 #ifdef __i386__
988 	p->p_md.md_regs->tf_eflags |= PSL_IOPL;
989 #endif
990 	return 0;
991 
992     case KDDISABIO:     	/* disallow io operations (default) */
993 #ifdef __i386__
994 	p->p_md.md_regs->tf_eflags &= ~PSL_IOPL;
995 #endif
996 	return 0;
997 
998     case KDSKBSTATE:    	/* set keyboard state (locks) */
999 	if (*(int *)data & ~LOCK_MASK)
1000 	    return EINVAL;
1001 	scp->status &= ~LOCK_MASK;
1002 	scp->status |= *(int *)data;
1003 	if (scp == sc->cur_scp)
1004 	    update_kbd_state(scp, scp->status, LOCK_MASK);
1005 	return 0;
1006 
1007     case KDGKBSTATE:    	/* get keyboard state (locks) */
1008 	if (scp == sc->cur_scp)
1009 	    save_kbd_state(scp);
1010 	*(int *)data = scp->status & LOCK_MASK;
1011 	return 0;
1012 
1013     case KDGETREPEAT:      	/* get keyboard repeat & delay rates */
1014     case KDSETREPEAT:      	/* set keyboard repeat & delay rates (new) */
1015 	error = kbd_ioctl(sc->kbd, cmd, data);
1016 	if (error == ENOIOCTL)
1017 	    error = ENODEV;
1018 	return error;
1019 
1020     case KDSETRAD:      	/* set keyboard repeat & delay rates (old) */
1021 	if (*(int *)data & ~0x7f)
1022 	    return EINVAL;
1023 	error = kbd_ioctl(sc->kbd, cmd, data);
1024 	if (error == ENOIOCTL)
1025 	    error = ENODEV;
1026 	return error;
1027 
1028     case KDSKBMODE:     	/* set keyboard mode */
1029 	switch (*(int *)data) {
1030 	case K_XLATE:   	/* switch to XLT ascii mode */
1031 	case K_RAW: 		/* switch to RAW scancode mode */
1032 	case K_CODE: 		/* switch to CODE mode */
1033 	    scp->kbd_mode = *(int *)data;
1034 	    if (scp == sc->cur_scp)
1035 		kbd_ioctl(sc->kbd, cmd, data);
1036 	    return 0;
1037 	default:
1038 	    return EINVAL;
1039 	}
1040 	/* NOT REACHED */
1041 
1042     case KDGKBMODE:     	/* get keyboard mode */
1043 	*(int *)data = scp->kbd_mode;
1044 	return 0;
1045 
1046     case KDGKBINFO:
1047 	error = kbd_ioctl(sc->kbd, cmd, data);
1048 	if (error == ENOIOCTL)
1049 	    error = ENODEV;
1050 	return error;
1051 
1052     case KDMKTONE:      	/* sound the bell */
1053 	if (*(int*)data)
1054 	    sc_bell(scp, (*(int*)data)&0xffff,
1055 		    (((*(int*)data)>>16)&0xffff)*hz/1000);
1056 	else
1057 	    sc_bell(scp, scp->bell_pitch, scp->bell_duration);
1058 	return 0;
1059 
1060     case KIOCSOUND:     	/* make tone (*data) hz */
1061 	if (scp == sc->cur_scp) {
1062 	    if (*(int *)data)
1063 		return sc_tone(*(int *)data);
1064 	    else
1065 		return sc_tone(0);
1066 	}
1067 	return 0;
1068 
1069     case KDGKBTYPE:     	/* get keyboard type */
1070 	error = kbd_ioctl(sc->kbd, cmd, data);
1071 	if (error == ENOIOCTL) {
1072 	    /* always return something? XXX */
1073 	    *(int *)data = 0;
1074 	}
1075 	return 0;
1076 
1077     case KDSETLED:      	/* set keyboard LED status */
1078 	if (*(int *)data & ~LED_MASK)	/* FIXME: LOCK_MASK? */
1079 	    return EINVAL;
1080 	scp->status &= ~LED_MASK;
1081 	scp->status |= *(int *)data;
1082 	if (scp == sc->cur_scp)
1083 	    update_kbd_leds(scp, scp->status);
1084 	return 0;
1085 
1086     case KDGETLED:      	/* get keyboard LED status */
1087 	if (scp == sc->cur_scp)
1088 	    save_kbd_state(scp);
1089 	*(int *)data = scp->status & LED_MASK;
1090 	return 0;
1091 
1092     case CONS_SETKBD: 		/* set the new keyboard */
1093 	{
1094 	    keyboard_t *newkbd;
1095 
1096 	    s = spltty();
1097 	    newkbd = kbd_get_keyboard(*(int *)data);
1098 	    if (newkbd == NULL) {
1099 		splx(s);
1100 		return EINVAL;
1101 	    }
1102 	    error = 0;
1103 	    if (sc->kbd != newkbd) {
1104 		i = kbd_allocate(newkbd->kb_name, newkbd->kb_unit,
1105 				 (void *)&sc->keyboard, sckbdevent, sc);
1106 		/* i == newkbd->kb_index */
1107 		if (i >= 0) {
1108 		    if (sc->kbd != NULL) {
1109 			save_kbd_state(sc->cur_scp);
1110 			kbd_release(sc->kbd, (void *)&sc->keyboard);
1111 		    }
1112 		    sc->kbd = kbd_get_keyboard(i); /* sc->kbd == newkbd */
1113 		    sc->keyboard = i;
1114 		    kbd_ioctl(sc->kbd, KDSKBMODE,
1115 			      (caddr_t)&sc->cur_scp->kbd_mode);
1116 		    update_kbd_state(sc->cur_scp, sc->cur_scp->status,
1117 				     LOCK_MASK);
1118 		} else {
1119 		    error = EPERM;	/* XXX */
1120 		}
1121 	    }
1122 	    splx(s);
1123 	    return error;
1124 	}
1125 
1126     case CONS_RELKBD: 		/* release the current keyboard */
1127 	s = spltty();
1128 	error = 0;
1129 	if (sc->kbd != NULL) {
1130 	    save_kbd_state(sc->cur_scp);
1131 	    error = kbd_release(sc->kbd, (void *)&sc->keyboard);
1132 	    if (error == 0) {
1133 		sc->kbd = NULL;
1134 		sc->keyboard = -1;
1135 	    }
1136 	}
1137 	splx(s);
1138 	return error;
1139 
1140     case CONS_GETTERM:		/* get the current terminal emulator info */
1141 	{
1142 	    sc_term_sw_t *sw;
1143 
1144 	    if (((term_info_t *)data)->ti_index == 0) {
1145 		sw = scp->tsw;
1146 	    } else {
1147 		sw = sc_term_match_by_number(((term_info_t *)data)->ti_index);
1148 	    }
1149 	    if (sw != NULL) {
1150 		strncpy(((term_info_t *)data)->ti_name, sw->te_name,
1151 			sizeof(((term_info_t *)data)->ti_name));
1152 		strncpy(((term_info_t *)data)->ti_desc, sw->te_desc,
1153 			sizeof(((term_info_t *)data)->ti_desc));
1154 		((term_info_t *)data)->ti_flags = 0;
1155 		return 0;
1156 	    } else {
1157 		((term_info_t *)data)->ti_name[0] = '\0';
1158 		((term_info_t *)data)->ti_desc[0] = '\0';
1159 		((term_info_t *)data)->ti_flags = 0;
1160 		return EINVAL;
1161 	    }
1162 	}
1163 
1164     case CONS_SETTERM:		/* set the current terminal emulator */
1165 	s = spltty();
1166 	error = sc_init_emulator(scp, ((term_info_t *)data)->ti_name);
1167 	/* FIXME: what if scp == sc_console! XXX */
1168 	splx(s);
1169 	return error;
1170 
1171     case GIO_SCRNMAP:   	/* get output translation table */
1172 	bcopy(&sc->scr_map, data, sizeof(sc->scr_map));
1173 	return 0;
1174 
1175     case PIO_SCRNMAP:   	/* set output translation table */
1176 	bcopy(data, &sc->scr_map, sizeof(sc->scr_map));
1177 	for (i=0; i<sizeof(sc->scr_map); i++) {
1178 	    sc->scr_rmap[sc->scr_map[i]] = i;
1179 	}
1180 	return 0;
1181 
1182     case GIO_KEYMAP:		/* get keyboard translation table */
1183     case PIO_KEYMAP:		/* set keyboard translation table */
1184     case GIO_DEADKEYMAP:	/* get accent key translation table */
1185     case PIO_DEADKEYMAP:	/* set accent key translation table */
1186     case GETFKEY:		/* get function key string */
1187     case SETFKEY:		/* set function key string */
1188 	error = kbd_ioctl(sc->kbd, cmd, data);
1189 	if (error == ENOIOCTL)
1190 	    error = ENODEV;
1191 	return error;
1192 
1193 #ifndef SC_NO_FONT_LOADING
1194 
1195     case PIO_FONT8x8:   	/* set 8x8 dot font */
1196 	if (!ISFONTAVAIL(sc->adp->va_flags))
1197 	    return ENXIO;
1198 	bcopy(data, sc->font_8, 8*256);
1199 	sc->fonts_loaded |= FONT_8;
1200 	/*
1201 	 * FONT KLUDGE
1202 	 * Always use the font page #0. XXX
1203 	 * Don't load if the current font size is not 8x8.
1204 	 */
1205 	if (ISTEXTSC(sc->cur_scp) && (sc->cur_scp->font_size < 14))
1206 	    sc_load_font(sc->cur_scp, 0, 8, sc->font_8, 0, 256);
1207 	return 0;
1208 
1209     case GIO_FONT8x8:   	/* get 8x8 dot font */
1210 	if (!ISFONTAVAIL(sc->adp->va_flags))
1211 	    return ENXIO;
1212 	if (sc->fonts_loaded & FONT_8) {
1213 	    bcopy(sc->font_8, data, 8*256);
1214 	    return 0;
1215 	}
1216 	else
1217 	    return ENXIO;
1218 
1219     case PIO_FONT8x14:  	/* set 8x14 dot font */
1220 	if (!ISFONTAVAIL(sc->adp->va_flags))
1221 	    return ENXIO;
1222 	bcopy(data, sc->font_14, 14*256);
1223 	sc->fonts_loaded |= FONT_14;
1224 	/*
1225 	 * FONT KLUDGE
1226 	 * Always use the font page #0. XXX
1227 	 * Don't load if the current font size is not 8x14.
1228 	 */
1229 	if (ISTEXTSC(sc->cur_scp)
1230 	    && (sc->cur_scp->font_size >= 14)
1231 	    && (sc->cur_scp->font_size < 16))
1232 	    sc_load_font(sc->cur_scp, 0, 14, sc->font_14, 0, 256);
1233 	return 0;
1234 
1235     case GIO_FONT8x14:  	/* get 8x14 dot font */
1236 	if (!ISFONTAVAIL(sc->adp->va_flags))
1237 	    return ENXIO;
1238 	if (sc->fonts_loaded & FONT_14) {
1239 	    bcopy(sc->font_14, data, 14*256);
1240 	    return 0;
1241 	}
1242 	else
1243 	    return ENXIO;
1244 
1245     case PIO_FONT8x16:  	/* set 8x16 dot font */
1246 	if (!ISFONTAVAIL(sc->adp->va_flags))
1247 	    return ENXIO;
1248 	bcopy(data, sc->font_16, 16*256);
1249 	sc->fonts_loaded |= FONT_16;
1250 	/*
1251 	 * FONT KLUDGE
1252 	 * Always use the font page #0. XXX
1253 	 * Don't load if the current font size is not 8x16.
1254 	 */
1255 	if (ISTEXTSC(sc->cur_scp) && (sc->cur_scp->font_size >= 16))
1256 	    sc_load_font(sc->cur_scp, 0, 16, sc->font_16, 0, 256);
1257 	return 0;
1258 
1259     case GIO_FONT8x16:  	/* get 8x16 dot font */
1260 	if (!ISFONTAVAIL(sc->adp->va_flags))
1261 	    return ENXIO;
1262 	if (sc->fonts_loaded & FONT_16) {
1263 	    bcopy(sc->font_16, data, 16*256);
1264 	    return 0;
1265 	}
1266 	else
1267 	    return ENXIO;
1268 
1269 #endif /* SC_NO_FONT_LOADING */
1270 
1271     default:
1272 	break;
1273     }
1274 
1275     error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag, td);
1276     if (error != ENOIOCTL)
1277 	return(error);
1278     error = ttioctl(tp, cmd, data, flag);
1279     if (error != ENOIOCTL)
1280 	return(error);
1281     return(ENOTTY);
1282 }
1283 
1284 static void
1285 scstart(struct tty *tp)
1286 {
1287     struct clist *rbp;
1288     int s, len;
1289     u_char buf[PCBURST];
1290     scr_stat *scp = SC_STAT(tp->t_dev);
1291 
1292     if (scp->status & SLKED || scp->sc->blink_in_progress)
1293 	return;
1294     s = spltty();
1295     if (!(tp->t_state & (TS_TIMEOUT | TS_BUSY | TS_TTSTOP))) {
1296 	tp->t_state |= TS_BUSY;
1297 	rbp = &tp->t_outq;
1298 	while (rbp->c_cc) {
1299 	    len = q_to_b(rbp, buf, PCBURST);
1300 	    splx(s);
1301 	    sc_puts(scp, buf, len);
1302 	    s = spltty();
1303 	}
1304 	tp->t_state &= ~TS_BUSY;
1305 	ttwwakeup(tp);
1306     }
1307     splx(s);
1308 }
1309 
1310 static void
1311 sccnprobe(struct consdev *cp)
1312 {
1313 #if __i386__
1314     int unit;
1315     int flags;
1316 
1317     cp->cn_pri = sc_get_cons_priority(&unit, &flags);
1318 
1319     /* a video card is always required */
1320     if (!scvidprobe(unit, flags, TRUE))
1321 	cp->cn_pri = CN_DEAD;
1322 
1323     /* syscons will become console even when there is no keyboard */
1324     sckbdprobe(unit, flags, TRUE);
1325 
1326     if (cp->cn_pri == CN_DEAD)
1327 	return;
1328 
1329     /* initialize required fields */
1330     cp->cn_dev = makedev(CDEV_MAJOR, SC_CONSOLECTL);
1331 #endif /* __i386__ */
1332 
1333 #if __alpha__
1334     /*
1335      * alpha use sccnattach() rather than cnprobe()/cninit()/cnterm()
1336      * interface to install the console.  Always return CN_DEAD from
1337      * here.
1338      */
1339     cp->cn_pri = CN_DEAD;
1340 #endif /* __alpha__ */
1341 }
1342 
1343 static void
1344 sccninit(struct consdev *cp)
1345 {
1346 #if __i386__
1347     int unit;
1348     int flags;
1349 
1350     sc_get_cons_priority(&unit, &flags);
1351     scinit(unit, flags | SC_KERNEL_CONSOLE);
1352     sc_console_unit = unit;
1353     sc_console = SC_STAT(sc_get_softc(unit, SC_KERNEL_CONSOLE)->dev[0]);
1354 #endif /* __i386__ */
1355 
1356 #if __alpha__
1357     /* SHOULDN'T REACH HERE */
1358 #endif /* __alpha__ */
1359 }
1360 
1361 static void
1362 sccnterm(struct consdev *cp)
1363 {
1364     /* we are not the kernel console any more, release everything */
1365 
1366     if (sc_console_unit < 0)
1367 	return;			/* shouldn't happen */
1368 
1369 #if __i386__
1370 #if 0 /* XXX */
1371     sc_clear_screen(sc_console);
1372     sccnupdate(sc_console);
1373 #endif
1374     scterm(sc_console_unit, SC_KERNEL_CONSOLE);
1375     sc_console_unit = -1;
1376     sc_console = NULL;
1377 #endif /* __i386__ */
1378 
1379 #if __alpha__
1380     /* do nothing XXX */
1381 #endif /* __alpha__ */
1382 }
1383 
1384 #ifdef __alpha__
1385 
1386 void
1387 sccnattach(void)
1388 {
1389     static struct consdev consdev;
1390     int unit;
1391     int flags;
1392 
1393     bcopy(&sc_consdev, &consdev, sizeof(sc_consdev));
1394     consdev.cn_pri = sc_get_cons_priority(&unit, &flags);
1395 
1396     /* a video card is always required */
1397     if (!scvidprobe(unit, flags, TRUE))
1398 	consdev.cn_pri = CN_DEAD;
1399 
1400     /* alpha doesn't allow the console being without a keyboard... Why? */
1401     if (!sckbdprobe(unit, flags, TRUE))
1402 	consdev.cn_pri = CN_DEAD;
1403 
1404     if (consdev.cn_pri == CN_DEAD)
1405 	return;
1406 
1407     scinit(unit, flags | SC_KERNEL_CONSOLE);
1408     sc_console_unit = unit;
1409     sc_console = SC_STAT(sc_get_softc(unit, SC_KERNEL_CONSOLE)->dev[0]);
1410     consdev.cn_dev = makedev(CDEV_MAJOR, 0);
1411     cn_tab = &consdev;
1412 }
1413 
1414 #endif /* __alpha__ */
1415 
1416 static void
1417 sccnputc(dev_t dev, int c)
1418 {
1419     u_char buf[1];
1420     scr_stat *scp = sc_console;
1421     void *save;
1422 #ifndef SC_NO_HISTORY
1423     struct tty *tp;
1424 #endif /* !SC_NO_HISTORY */
1425     int s;
1426 
1427     /* assert(sc_console != NULL) */
1428 
1429 #ifndef SC_NO_HISTORY
1430     if (scp == scp->sc->cur_scp && scp->status & SLKED) {
1431 	scp->status &= ~SLKED;
1432 	update_kbd_state(scp, scp->status, SLKED);
1433 	if (scp->status & BUFFER_SAVED) {
1434 	    if (!sc_hist_restore(scp))
1435 		sc_remove_cutmarking(scp);
1436 	    scp->status &= ~BUFFER_SAVED;
1437 	    scp->status |= CURSOR_ENABLED;
1438 	    sc_draw_cursor_image(scp);
1439 	}
1440 	tp = VIRTUAL_TTY(scp->sc, scp->index);
1441 	if (ISTTYOPEN(tp))
1442 	    scstart(tp);
1443     }
1444 #endif /* !SC_NO_HISTORY */
1445 
1446     save = scp->ts;
1447     if (kernel_console_ts != NULL)
1448 	scp->ts = kernel_console_ts;
1449     buf[0] = c;
1450     sc_puts(scp, buf, 1);
1451     scp->ts = save;
1452 
1453     s = spltty();	/* block sckbdevent and scrn_timer */
1454     sccnupdate(scp);
1455     splx(s);
1456 }
1457 
1458 static int
1459 sccngetc(dev_t dev)
1460 {
1461     return sccngetch(0);
1462 }
1463 
1464 static int
1465 sccncheckc(dev_t dev)
1466 {
1467     return sccngetch(SCGETC_NONBLOCK);
1468 }
1469 
1470 static void
1471 sccndbctl(dev_t dev, int on)
1472 {
1473     /* assert(sc_console_unit >= 0) */
1474     /* try to switch to the kernel console screen */
1475     if (on && debugger == 0) {
1476 	/*
1477 	 * TRY to make sure the screen saver is stopped,
1478 	 * and the screen is updated before switching to
1479 	 * the vty0.
1480 	 */
1481 	scrn_timer(NULL);
1482 	if (!cold
1483 	    && sc_console->sc->cur_scp->smode.mode == VT_AUTO
1484 	    && sc_console->smode.mode == VT_AUTO) {
1485 	    sc_console->sc->cur_scp->status |= MOUSE_HIDDEN;
1486 	    sc_switch_scr(sc_console->sc, sc_console->index);
1487 	}
1488     }
1489     if (on)
1490 	++debugger;
1491     else
1492 	--debugger;
1493 }
1494 
1495 static int
1496 sccngetch(int flags)
1497 {
1498     static struct fkeytab fkey;
1499     static int fkeycp;
1500     scr_stat *scp;
1501     u_char *p;
1502     int cur_mode;
1503     int s = spltty();	/* block sckbdevent and scrn_timer while we poll */
1504     int c;
1505 
1506     /* assert(sc_console != NULL) */
1507 
1508     /*
1509      * Stop the screen saver and update the screen if necessary.
1510      * What if we have been running in the screen saver code... XXX
1511      */
1512     sc_touch_scrn_saver();
1513     scp = sc_console->sc->cur_scp;	/* XXX */
1514     sccnupdate(scp);
1515 
1516     if (fkeycp < fkey.len) {
1517 	splx(s);
1518 	return fkey.str[fkeycp++];
1519     }
1520 
1521     if (scp->sc->kbd == NULL) {
1522 	splx(s);
1523 	return -1;
1524     }
1525 
1526     /*
1527      * Make sure the keyboard is accessible even when the kbd device
1528      * driver is disabled.
1529      */
1530     kbd_enable(scp->sc->kbd);
1531 
1532     /* we shall always use the keyboard in the XLATE mode here */
1533     cur_mode = scp->kbd_mode;
1534     scp->kbd_mode = K_XLATE;
1535     kbd_ioctl(scp->sc->kbd, KDSKBMODE, (caddr_t)&scp->kbd_mode);
1536 
1537     kbd_poll(scp->sc->kbd, TRUE);
1538     c = scgetc(scp->sc, SCGETC_CN | flags);
1539     kbd_poll(scp->sc->kbd, FALSE);
1540 
1541     scp->kbd_mode = cur_mode;
1542     kbd_ioctl(scp->sc->kbd, KDSKBMODE, (caddr_t)&scp->kbd_mode);
1543     kbd_disable(scp->sc->kbd);
1544     splx(s);
1545 
1546     switch (KEYFLAGS(c)) {
1547     case 0:	/* normal char */
1548 	return KEYCHAR(c);
1549     case FKEY:	/* function key */
1550 	p = kbd_get_fkeystr(scp->sc->kbd, KEYCHAR(c), (size_t *)&fkeycp);
1551 	fkey.len = fkeycp;
1552 	if ((p != NULL) && (fkey.len > 0)) {
1553 	    bcopy(p, fkey.str, fkey.len);
1554 	    fkeycp = 1;
1555 	    return fkey.str[0];
1556 	}
1557 	return c;	/* XXX */
1558     case NOKEY:
1559     case ERRKEY:
1560     default:
1561 	return -1;
1562     }
1563     /* NOT REACHED */
1564 }
1565 
1566 static void
1567 sccnupdate(scr_stat *scp)
1568 {
1569     /* this is a cut-down version of scrn_timer()... */
1570 
1571     if (scp->sc->font_loading_in_progress || scp->sc->videoio_in_progress)
1572 	return;
1573 
1574     if (debugger > 0 || panicstr || shutdown_in_progress) {
1575 	sc_touch_scrn_saver();
1576     } else if (scp != scp->sc->cur_scp) {
1577 	return;
1578     }
1579 
1580     if (!run_scrn_saver)
1581 	scp->sc->flags &= ~SC_SCRN_IDLE;
1582 #if NSPLASH > 0
1583     if ((saver_mode != CONS_LKM_SAVER) || !(scp->sc->flags & SC_SCRN_IDLE))
1584 	if (scp->sc->flags & SC_SCRN_BLANKED)
1585             stop_scrn_saver(scp->sc, current_saver);
1586 #endif /* NSPLASH */
1587 
1588     if (scp != scp->sc->cur_scp || scp->sc->blink_in_progress
1589 	|| scp->sc->switch_in_progress)
1590 	return;
1591     /*
1592      * FIXME: unlike scrn_timer(), we call scrn_update() from here even
1593      * when write_in_progress is non-zero.  XXX
1594      */
1595 
1596     if (!ISGRAPHSC(scp) && !(scp->sc->flags & SC_SCRN_BLANKED))
1597 	scrn_update(scp, TRUE);
1598 }
1599 
1600 static void
1601 scrn_timer(void *arg)
1602 {
1603     static int kbd_interval = 0;
1604     struct timeval tv;
1605     sc_softc_t *sc;
1606     scr_stat *scp;
1607     int again;
1608     int s;
1609 
1610     again = (arg != NULL);
1611     if (arg != NULL)
1612 	sc = (sc_softc_t *)arg;
1613     else if (sc_console != NULL)
1614 	sc = sc_console->sc;
1615     else
1616 	return;
1617 
1618     /* don't do anything when we are performing some I/O operations */
1619     if (sc->font_loading_in_progress || sc->videoio_in_progress) {
1620 	if (again)
1621 	    timeout(scrn_timer, sc, hz / 10);
1622 	return;
1623     }
1624     s = spltty();
1625 
1626     if ((sc->kbd == NULL) && (sc->config & SC_AUTODETECT_KBD)) {
1627 	/* try to allocate a keyboard automatically */
1628 	if (++kbd_interval >= 25) {
1629 	    sc->keyboard = kbd_allocate("*", -1, (void *)&sc->keyboard,
1630 					sckbdevent, sc);
1631 	    if (sc->keyboard >= 0) {
1632 		sc->kbd = kbd_get_keyboard(sc->keyboard);
1633 		kbd_ioctl(sc->kbd, KDSKBMODE,
1634 			  (caddr_t)&sc->cur_scp->kbd_mode);
1635 		update_kbd_state(sc->cur_scp, sc->cur_scp->status,
1636 				 LOCK_MASK);
1637 	    }
1638 	    kbd_interval = 0;
1639 	}
1640     }
1641 
1642     /* find the vty to update */
1643     scp = sc->cur_scp;
1644 
1645     /* should we stop the screen saver? */
1646     getmicrouptime(&tv);
1647     if (debugger > 0 || panicstr || shutdown_in_progress)
1648 	sc_touch_scrn_saver();
1649     if (run_scrn_saver) {
1650 	if (tv.tv_sec > sc->scrn_time_stamp + scrn_blank_time)
1651 	    sc->flags |= SC_SCRN_IDLE;
1652 	else
1653 	    sc->flags &= ~SC_SCRN_IDLE;
1654     } else {
1655 	sc->scrn_time_stamp = tv.tv_sec;
1656 	sc->flags &= ~SC_SCRN_IDLE;
1657 	if (scrn_blank_time > 0)
1658 	    run_scrn_saver = TRUE;
1659     }
1660 #if NSPLASH > 0
1661     if ((saver_mode != CONS_LKM_SAVER) || !(sc->flags & SC_SCRN_IDLE))
1662 	if (sc->flags & SC_SCRN_BLANKED)
1663             stop_scrn_saver(sc, current_saver);
1664 #endif /* NSPLASH */
1665 
1666     /* should we just return ? */
1667     if (sc->blink_in_progress || sc->switch_in_progress
1668 	|| sc->write_in_progress) {
1669 	if (again)
1670 	    timeout(scrn_timer, sc, hz / 10);
1671 	splx(s);
1672 	return;
1673     }
1674 
1675     /* Update the screen */
1676     scp = sc->cur_scp;		/* cur_scp may have changed... */
1677     if (!ISGRAPHSC(scp) && !(sc->flags & SC_SCRN_BLANKED))
1678 	scrn_update(scp, TRUE);
1679 
1680 #if NSPLASH > 0
1681     /* should we activate the screen saver? */
1682     if ((saver_mode == CONS_LKM_SAVER) && (sc->flags & SC_SCRN_IDLE))
1683 	if (!ISGRAPHSC(scp) || (sc->flags & SC_SCRN_BLANKED))
1684 	    (*current_saver)(sc, TRUE);
1685 #endif /* NSPLASH */
1686 
1687     if (again)
1688 	timeout(scrn_timer, sc, hz / 25);
1689     splx(s);
1690 }
1691 
1692 static int
1693 and_region(int *s1, int *e1, int s2, int e2)
1694 {
1695     if (*e1 < s2 || e2 < *s1)
1696 	return FALSE;
1697     *s1 = imax(*s1, s2);
1698     *e1 = imin(*e1, e2);
1699     return TRUE;
1700 }
1701 
1702 static void
1703 scrn_update(scr_stat *scp, int show_cursor)
1704 {
1705     int start;
1706     int end;
1707     int s;
1708     int e;
1709 
1710     /* assert(scp == scp->sc->cur_scp) */
1711 
1712     ++scp->sc->videoio_in_progress;
1713 
1714 #ifndef SC_NO_CUTPASTE
1715     /* remove the previous mouse pointer image if necessary */
1716     if (scp->status & MOUSE_VISIBLE) {
1717 	s = scp->mouse_pos;
1718 	e = scp->mouse_pos + scp->xsize + 1;
1719 	if ((scp->status & (MOUSE_MOVED | MOUSE_HIDDEN))
1720 	    || and_region(&s, &e, scp->start, scp->end)
1721 	    || ((scp->status & CURSOR_ENABLED) &&
1722 		(scp->cursor_pos != scp->cursor_oldpos) &&
1723 		(and_region(&s, &e, scp->cursor_pos, scp->cursor_pos)
1724 		 || and_region(&s, &e, scp->cursor_oldpos, scp->cursor_oldpos)))) {
1725 	    sc_remove_mouse_image(scp);
1726 	    if (scp->end >= scp->xsize*scp->ysize)
1727 		scp->end = scp->xsize*scp->ysize - 1;
1728 	}
1729     }
1730 #endif /* !SC_NO_CUTPASTE */
1731 
1732 #if 1
1733     /* debug: XXX */
1734     if (scp->end >= scp->xsize*scp->ysize) {
1735 	printf("scrn_update(): scp->end %d > size_of_screen!!\n", scp->end);
1736 	scp->end = scp->xsize*scp->ysize - 1;
1737     }
1738     if (scp->start < 0) {
1739 	printf("scrn_update(): scp->start %d < 0\n", scp->start);
1740 	scp->start = 0;
1741     }
1742 #endif
1743 
1744     /* update screen image */
1745     if (scp->start <= scp->end)  {
1746 	if (scp->mouse_cut_end >= 0) {
1747 	    /* there is a marked region for cut & paste */
1748 	    if (scp->mouse_cut_start <= scp->mouse_cut_end) {
1749 		start = scp->mouse_cut_start;
1750 		end = scp->mouse_cut_end;
1751 	    } else {
1752 		start = scp->mouse_cut_end;
1753 		end = scp->mouse_cut_start - 1;
1754 	    }
1755 	    s = start;
1756 	    e = end;
1757 	    /* does the cut-mark region overlap with the update region? */
1758 	    if (and_region(&s, &e, scp->start, scp->end)) {
1759 		(*scp->rndr->draw)(scp, s, e - s + 1, TRUE);
1760 		s = 0;
1761 		e = start - 1;
1762 		if (and_region(&s, &e, scp->start, scp->end))
1763 		    (*scp->rndr->draw)(scp, s, e - s + 1, FALSE);
1764 		s = end + 1;
1765 		e = scp->xsize*scp->ysize - 1;
1766 		if (and_region(&s, &e, scp->start, scp->end))
1767 		    (*scp->rndr->draw)(scp, s, e - s + 1, FALSE);
1768 	    } else {
1769 		(*scp->rndr->draw)(scp, scp->start,
1770 				   scp->end - scp->start + 1, FALSE);
1771 	    }
1772 	} else {
1773 	    (*scp->rndr->draw)(scp, scp->start,
1774 			       scp->end - scp->start + 1, FALSE);
1775 	}
1776     }
1777 
1778     /* we are not to show the cursor and the mouse pointer... */
1779     if (!show_cursor) {
1780         scp->end = 0;
1781         scp->start = scp->xsize*scp->ysize - 1;
1782 	--scp->sc->videoio_in_progress;
1783 	return;
1784     }
1785 
1786     /* update cursor image */
1787     if (scp->status & CURSOR_ENABLED) {
1788 	s = scp->start;
1789 	e = scp->end;
1790         /* did cursor move since last time ? */
1791         if (scp->cursor_pos != scp->cursor_oldpos) {
1792             /* do we need to remove old cursor image ? */
1793             if (!and_region(&s, &e, scp->cursor_oldpos, scp->cursor_oldpos))
1794                 sc_remove_cursor_image(scp);
1795             sc_draw_cursor_image(scp);
1796         } else {
1797             if (and_region(&s, &e, scp->cursor_pos, scp->cursor_pos))
1798 		/* cursor didn't move, but has been overwritten */
1799 		sc_draw_cursor_image(scp);
1800 	    else if (scp->sc->flags & SC_BLINK_CURSOR)
1801 		/* if it's a blinking cursor, update it */
1802 		(*scp->rndr->blink_cursor)(scp, scp->cursor_pos,
1803 					   sc_inside_cutmark(scp,
1804 					       scp->cursor_pos));
1805         }
1806     }
1807 
1808 #ifndef SC_NO_CUTPASTE
1809     /* update "pseudo" mouse pointer image */
1810     if (scp->sc->flags & SC_MOUSE_ENABLED) {
1811 	if (!(scp->status & (MOUSE_VISIBLE | MOUSE_HIDDEN))) {
1812 	    scp->status &= ~MOUSE_MOVED;
1813 	    sc_draw_mouse_image(scp);
1814 	}
1815     }
1816 #endif /* SC_NO_CUTPASTE */
1817 
1818     scp->end = 0;
1819     scp->start = scp->xsize*scp->ysize - 1;
1820 
1821     --scp->sc->videoio_in_progress;
1822 }
1823 
1824 #if NSPLASH > 0
1825 static int
1826 scsplash_callback(int event, void *arg)
1827 {
1828     sc_softc_t *sc;
1829     int error;
1830 
1831     sc = (sc_softc_t *)arg;
1832 
1833     switch (event) {
1834     case SPLASH_INIT:
1835 	if (add_scrn_saver(scsplash_saver) == 0) {
1836 	    sc->flags &= ~SC_SAVER_FAILED;
1837 	    run_scrn_saver = TRUE;
1838 	    if (cold && !(boothowto & (RB_VERBOSE | RB_CONFIG))) {
1839 		scsplash_stick(TRUE);
1840 		(*current_saver)(sc, TRUE);
1841 	    }
1842 	}
1843 	return 0;
1844 
1845     case SPLASH_TERM:
1846 	if (current_saver == scsplash_saver) {
1847 	    scsplash_stick(FALSE);
1848 	    error = remove_scrn_saver(scsplash_saver);
1849 	    if (error)
1850 		return error;
1851 	}
1852 	return 0;
1853 
1854     default:
1855 	return EINVAL;
1856     }
1857 }
1858 
1859 static void
1860 scsplash_saver(sc_softc_t *sc, int show)
1861 {
1862     static int busy = FALSE;
1863     scr_stat *scp;
1864 
1865     if (busy)
1866 	return;
1867     busy = TRUE;
1868 
1869     scp = sc->cur_scp;
1870     if (show) {
1871 	if (!(sc->flags & SC_SAVER_FAILED)) {
1872 	    if (!(sc->flags & SC_SCRN_BLANKED))
1873 		set_scrn_saver_mode(scp, -1, NULL, 0);
1874 	    switch (splash(sc->adp, TRUE)) {
1875 	    case 0:		/* succeeded */
1876 		break;
1877 	    case EAGAIN:	/* try later */
1878 		restore_scrn_saver_mode(scp, FALSE);
1879 		sc_touch_scrn_saver();		/* XXX */
1880 		break;
1881 	    default:
1882 		sc->flags |= SC_SAVER_FAILED;
1883 		scsplash_stick(FALSE);
1884 		restore_scrn_saver_mode(scp, TRUE);
1885 		printf("scsplash_saver(): failed to put up the image\n");
1886 		break;
1887 	    }
1888 	}
1889     } else if (!sticky_splash) {
1890 	if ((sc->flags & SC_SCRN_BLANKED) && (splash(sc->adp, FALSE) == 0))
1891 	    restore_scrn_saver_mode(scp, TRUE);
1892     }
1893     busy = FALSE;
1894 }
1895 
1896 static int
1897 add_scrn_saver(void (*this_saver)(sc_softc_t *, int))
1898 {
1899 #if 0
1900     int error;
1901 
1902     if (current_saver != none_saver) {
1903 	error = remove_scrn_saver(current_saver);
1904 	if (error)
1905 	    return error;
1906     }
1907 #endif
1908     if (current_saver != none_saver)
1909 	return EBUSY;
1910 
1911     run_scrn_saver = FALSE;
1912     saver_mode = CONS_LKM_SAVER;
1913     current_saver = this_saver;
1914     return 0;
1915 }
1916 
1917 static int
1918 remove_scrn_saver(void (*this_saver)(sc_softc_t *, int))
1919 {
1920     if (current_saver != this_saver)
1921 	return EINVAL;
1922 
1923 #if 0
1924     /*
1925      * In order to prevent `current_saver' from being called by
1926      * the timeout routine `scrn_timer()' while we manipulate
1927      * the saver list, we shall set `current_saver' to `none_saver'
1928      * before stopping the current saver, rather than blocking by `splXX()'.
1929      */
1930     current_saver = none_saver;
1931     if (scrn_blanked)
1932         stop_scrn_saver(this_saver);
1933 #endif
1934 
1935     /* unblank all blanked screens */
1936     wait_scrn_saver_stop(NULL);
1937     if (scrn_blanked)
1938 	return EBUSY;
1939 
1940     current_saver = none_saver;
1941     return 0;
1942 }
1943 
1944 static int
1945 set_scrn_saver_mode(scr_stat *scp, int mode, u_char *pal, int border)
1946 {
1947     int s;
1948 
1949     /* assert(scp == scp->sc->cur_scp) */
1950     s = spltty();
1951     if (!ISGRAPHSC(scp))
1952 	sc_remove_cursor_image(scp);
1953     scp->splash_save_mode = scp->mode;
1954     scp->splash_save_status = scp->status & (GRAPHICS_MODE | PIXEL_MODE);
1955     scp->status &= ~(GRAPHICS_MODE | PIXEL_MODE);
1956     scp->status |= (UNKNOWN_MODE | SAVER_RUNNING);
1957     scp->sc->flags |= SC_SCRN_BLANKED;
1958     ++scrn_blanked;
1959     splx(s);
1960     if (mode < 0)
1961 	return 0;
1962     scp->mode = mode;
1963     if (set_mode(scp) == 0) {
1964 	if (scp->sc->adp->va_info.vi_flags & V_INFO_GRAPHICS)
1965 	    scp->status |= GRAPHICS_MODE;
1966 #ifndef SC_NO_PALETTE_LOADING
1967 	if (pal != NULL)
1968 	    load_palette(scp->sc->adp, pal);
1969 #endif
1970 	sc_set_border(scp, border);
1971 	return 0;
1972     } else {
1973 	s = spltty();
1974 	scp->mode = scp->splash_save_mode;
1975 	scp->status &= ~(UNKNOWN_MODE | SAVER_RUNNING);
1976 	scp->status |= scp->splash_save_status;
1977 	splx(s);
1978 	return 1;
1979     }
1980 }
1981 
1982 static int
1983 restore_scrn_saver_mode(scr_stat *scp, int changemode)
1984 {
1985     int mode;
1986     int status;
1987     int s;
1988 
1989     /* assert(scp == scp->sc->cur_scp) */
1990     s = spltty();
1991     mode = scp->mode;
1992     status = scp->status;
1993     scp->mode = scp->splash_save_mode;
1994     scp->status &= ~(UNKNOWN_MODE | SAVER_RUNNING);
1995     scp->status |= scp->splash_save_status;
1996     scp->sc->flags &= ~SC_SCRN_BLANKED;
1997     if (!changemode) {
1998 	if (!ISGRAPHSC(scp))
1999 	    sc_draw_cursor_image(scp);
2000 	--scrn_blanked;
2001 	splx(s);
2002 	return 0;
2003     }
2004     if (set_mode(scp) == 0) {
2005 #ifndef SC_NO_PALETTE_LOADING
2006 	load_palette(scp->sc->adp, scp->sc->palette);
2007 #endif
2008 	--scrn_blanked;
2009 	splx(s);
2010 	return 0;
2011     } else {
2012 	scp->mode = mode;
2013 	scp->status = status;
2014 	splx(s);
2015 	return 1;
2016     }
2017 }
2018 
2019 static void
2020 stop_scrn_saver(sc_softc_t *sc, void (*saver)(sc_softc_t *, int))
2021 {
2022     (*saver)(sc, FALSE);
2023     run_scrn_saver = FALSE;
2024     /* the screen saver may have chosen not to stop after all... */
2025     if (sc->flags & SC_SCRN_BLANKED)
2026 	return;
2027 
2028     mark_all(sc->cur_scp);
2029     if (sc->delayed_next_scr)
2030 	sc_switch_scr(sc, sc->delayed_next_scr - 1);
2031     wakeup((caddr_t)&scrn_blanked);
2032 }
2033 
2034 static int
2035 wait_scrn_saver_stop(sc_softc_t *sc)
2036 {
2037     int error = 0;
2038 
2039     while (scrn_blanked > 0) {
2040 	run_scrn_saver = FALSE;
2041 	if (sc && !(sc->flags & SC_SCRN_BLANKED)) {
2042 	    error = 0;
2043 	    break;
2044 	}
2045 	error = tsleep((caddr_t)&scrn_blanked, PCATCH, "scrsav", 0);
2046 	if ((error != 0) && (error != ERESTART))
2047 	    break;
2048     }
2049     run_scrn_saver = FALSE;
2050     return error;
2051 }
2052 #endif /* NSPLASH */
2053 
2054 void
2055 sc_touch_scrn_saver(void)
2056 {
2057     scsplash_stick(FALSE);
2058     run_scrn_saver = FALSE;
2059 }
2060 
2061 int
2062 sc_switch_scr(sc_softc_t *sc, u_int next_scr)
2063 {
2064     scr_stat *cur_scp;
2065     struct tty *tp;
2066     int s;
2067 
2068     DPRINTF(5, ("sc0: sc_switch_scr() %d ", next_scr + 1));
2069 
2070     /* prevent switch if previously requested */
2071     if (sc->flags & SC_SCRN_VTYLOCK) {
2072 	    sc_bell(sc->cur_scp, sc->cur_scp->bell_pitch,
2073 		sc->cur_scp->bell_duration);
2074 	    return EPERM;
2075     }
2076 
2077     /* delay switch if the screen is blanked or being updated */
2078     if ((sc->flags & SC_SCRN_BLANKED) || sc->write_in_progress
2079 	|| sc->blink_in_progress || sc->videoio_in_progress) {
2080 	sc->delayed_next_scr = next_scr + 1;
2081 	sc_touch_scrn_saver();
2082 	DPRINTF(5, ("switch delayed\n"));
2083 	return 0;
2084     }
2085 
2086     s = spltty();
2087     cur_scp = sc->cur_scp;
2088 
2089     /* we are in the middle of the vty switching process... */
2090     if (sc->switch_in_progress
2091 	&& (cur_scp->smode.mode == VT_PROCESS)
2092 	&& cur_scp->proc) {
2093 	if (cur_scp->proc != pfind(cur_scp->pid)) {
2094 	    /*
2095 	     * The controlling process has died!!.  Do some clean up.
2096 	     * NOTE:`cur_scp->proc' and `cur_scp->smode.mode'
2097 	     * are not reset here yet; they will be cleared later.
2098 	     */
2099 	    DPRINTF(5, ("cur_scp controlling process %d died, ",
2100 	       cur_scp->pid));
2101 	    if (cur_scp->status & SWITCH_WAIT_REL) {
2102 		/*
2103 		 * Force the previous switch to finish, but return now
2104 		 * with error.
2105 		 */
2106 		DPRINTF(5, ("reset WAIT_REL, "));
2107 		finish_vt_rel(cur_scp, TRUE, &s);
2108 		splx(s);
2109 		DPRINTF(5, ("finishing previous switch\n"));
2110 		return EINVAL;
2111 	    } else if (cur_scp->status & SWITCH_WAIT_ACQ) {
2112 		/* let's assume screen switch has been completed. */
2113 		DPRINTF(5, ("reset WAIT_ACQ, "));
2114 		finish_vt_acq(cur_scp);
2115 	    } else {
2116 		/*
2117 	 	 * We are in between screen release and acquisition, and
2118 		 * reached here via scgetc() or scrn_timer() which has
2119 		 * interrupted exchange_scr(). Don't do anything stupid.
2120 		 */
2121 		DPRINTF(5, ("waiting nothing, "));
2122 	    }
2123 	} else {
2124 	    /*
2125 	     * The controlling process is alive, but not responding...
2126 	     * It is either buggy or it may be just taking time.
2127 	     * The following code is a gross kludge to cope with this
2128 	     * problem for which there is no clean solution. XXX
2129 	     */
2130 	    if (cur_scp->status & SWITCH_WAIT_REL) {
2131 		switch (sc->switch_in_progress++) {
2132 		case 1:
2133 		    break;
2134 		case 2:
2135 		    DPRINTF(5, ("sending relsig again, "));
2136 		    signal_vt_rel(cur_scp);
2137 		    break;
2138 		case 3:
2139 		    break;
2140 		case 4:
2141 		default:
2142 		    /*
2143 		     * Act as if the controlling program returned
2144 		     * VT_FALSE.
2145 		     */
2146 		    DPRINTF(5, ("force reset WAIT_REL, "));
2147 		    finish_vt_rel(cur_scp, FALSE, &s);
2148 		    splx(s);
2149 		    DPRINTF(5, ("act as if VT_FALSE was seen\n"));
2150 		    return EINVAL;
2151 		}
2152 	    } else if (cur_scp->status & SWITCH_WAIT_ACQ) {
2153 		switch (sc->switch_in_progress++) {
2154 		case 1:
2155 		    break;
2156 		case 2:
2157 		    DPRINTF(5, ("sending acqsig again, "));
2158 		    signal_vt_acq(cur_scp);
2159 		    break;
2160 		case 3:
2161 		    break;
2162 		case 4:
2163 		default:
2164 		     /* clear the flag and finish the previous switch */
2165 		    DPRINTF(5, ("force reset WAIT_ACQ, "));
2166 		    finish_vt_acq(cur_scp);
2167 		    break;
2168 		}
2169 	    }
2170 	}
2171     }
2172 
2173     /*
2174      * Return error if an invalid argument is given, or vty switch
2175      * is still in progress.
2176      */
2177     if ((next_scr < sc->first_vty) || (next_scr >= sc->first_vty + sc->vtys)
2178 	|| sc->switch_in_progress) {
2179 	splx(s);
2180 	sc_bell(cur_scp, bios_value.bell_pitch, BELL_DURATION);
2181 	DPRINTF(5, ("error 1\n"));
2182 	return EINVAL;
2183     }
2184 
2185     /*
2186      * Don't allow switching away from the graphics mode vty
2187      * if the switch mode is VT_AUTO, unless the next vty is the same
2188      * as the current or the current vty has been closed (but showing).
2189      */
2190     tp = VIRTUAL_TTY(sc, cur_scp->index);
2191     if ((cur_scp->index != next_scr)
2192 	&& ISTTYOPEN(tp)
2193 	&& (cur_scp->smode.mode == VT_AUTO)
2194 	&& ISGRAPHSC(cur_scp)) {
2195 	splx(s);
2196 	sc_bell(cur_scp, bios_value.bell_pitch, BELL_DURATION);
2197 	DPRINTF(5, ("error, graphics mode\n"));
2198 	return EINVAL;
2199     }
2200 
2201     /*
2202      * Is the wanted vty open? Don't allow switching to a closed vty.
2203      * If we are in DDB, don't switch to a vty in the VT_PROCESS mode.
2204      * Note that we always allow the user to switch to the kernel
2205      * console even if it is closed.
2206      */
2207     if ((sc_console == NULL) || (next_scr != sc_console->index)) {
2208 	tp = VIRTUAL_TTY(sc, next_scr);
2209 	if (!ISTTYOPEN(tp)) {
2210 	    splx(s);
2211 	    sc_bell(cur_scp, bios_value.bell_pitch, BELL_DURATION);
2212 	    DPRINTF(5, ("error 2, requested vty isn't open!\n"));
2213 	    return EINVAL;
2214 	}
2215 	if ((debugger > 0) && (SC_STAT(tp->t_dev)->smode.mode == VT_PROCESS)) {
2216 	    splx(s);
2217 	    DPRINTF(5, ("error 3, requested vty is in the VT_PROCESS mode\n"));
2218 	    return EINVAL;
2219 	}
2220     }
2221 
2222     /* this is the start of vty switching process... */
2223     ++sc->switch_in_progress;
2224     sc->delayed_next_scr = 0;
2225     sc->old_scp = cur_scp;
2226     sc->new_scp = SC_STAT(SC_DEV(sc, next_scr));
2227     if (sc->new_scp == sc->old_scp) {
2228 	sc->switch_in_progress = 0;
2229 	wakeup((caddr_t)&sc->new_scp->smode);
2230 	splx(s);
2231 	DPRINTF(5, ("switch done (new == old)\n"));
2232 	return 0;
2233     }
2234 
2235     /* has controlling process died? */
2236     vt_proc_alive(sc->old_scp);
2237     vt_proc_alive(sc->new_scp);
2238 
2239     /* wait for the controlling process to release the screen, if necessary */
2240     if (signal_vt_rel(sc->old_scp)) {
2241 	splx(s);
2242 	return 0;
2243     }
2244 
2245     /* go set up the new vty screen */
2246     splx(s);
2247     exchange_scr(sc);
2248     s = spltty();
2249 
2250     /* wake up processes waiting for this vty */
2251     wakeup((caddr_t)&sc->cur_scp->smode);
2252 
2253     /* wait for the controlling process to acknowledge, if necessary */
2254     if (signal_vt_acq(sc->cur_scp)) {
2255 	splx(s);
2256 	return 0;
2257     }
2258 
2259     sc->switch_in_progress = 0;
2260     if (sc->unit == sc_console_unit)
2261 	cons_unavail = FALSE;
2262     splx(s);
2263     DPRINTF(5, ("switch done\n"));
2264 
2265     return 0;
2266 }
2267 
2268 static int
2269 do_switch_scr(sc_softc_t *sc, int s)
2270 {
2271     vt_proc_alive(sc->new_scp);
2272 
2273     splx(s);
2274     exchange_scr(sc);
2275     s = spltty();
2276     /* sc->cur_scp == sc->new_scp */
2277     wakeup((caddr_t)&sc->cur_scp->smode);
2278 
2279     /* wait for the controlling process to acknowledge, if necessary */
2280     if (!signal_vt_acq(sc->cur_scp)) {
2281 	sc->switch_in_progress = 0;
2282 	if (sc->unit == sc_console_unit)
2283 	    cons_unavail = FALSE;
2284     }
2285 
2286     return s;
2287 }
2288 
2289 static int
2290 vt_proc_alive(scr_stat *scp)
2291 {
2292     if (scp->proc) {
2293 	if (scp->proc == pfind(scp->pid))
2294 	    return TRUE;
2295 	scp->proc = NULL;
2296 	scp->smode.mode = VT_AUTO;
2297 	DPRINTF(5, ("vt controlling process %d died\n", scp->pid));
2298     }
2299     return FALSE;
2300 }
2301 
2302 static int
2303 signal_vt_rel(scr_stat *scp)
2304 {
2305     if (scp->smode.mode != VT_PROCESS)
2306 	return FALSE;
2307     scp->status |= SWITCH_WAIT_REL;
2308     psignal(scp->proc, scp->smode.relsig);
2309     DPRINTF(5, ("sending relsig to %d\n", scp->pid));
2310     return TRUE;
2311 }
2312 
2313 static int
2314 signal_vt_acq(scr_stat *scp)
2315 {
2316     if (scp->smode.mode != VT_PROCESS)
2317 	return FALSE;
2318     if (scp->sc->unit == sc_console_unit)
2319 	cons_unavail = TRUE;
2320     scp->status |= SWITCH_WAIT_ACQ;
2321     psignal(scp->proc, scp->smode.acqsig);
2322     DPRINTF(5, ("sending acqsig to %d\n", scp->pid));
2323     return TRUE;
2324 }
2325 
2326 static int
2327 finish_vt_rel(scr_stat *scp, int release, int *s)
2328 {
2329     if (scp == scp->sc->old_scp && scp->status & SWITCH_WAIT_REL) {
2330 	scp->status &= ~SWITCH_WAIT_REL;
2331 	if (release)
2332 	    *s = do_switch_scr(scp->sc, *s);
2333 	else
2334 	    scp->sc->switch_in_progress = 0;
2335 	return 0;
2336     }
2337     return EINVAL;
2338 }
2339 
2340 static int
2341 finish_vt_acq(scr_stat *scp)
2342 {
2343     if (scp == scp->sc->new_scp && scp->status & SWITCH_WAIT_ACQ) {
2344 	scp->status &= ~SWITCH_WAIT_ACQ;
2345 	scp->sc->switch_in_progress = 0;
2346 	return 0;
2347     }
2348     return EINVAL;
2349 }
2350 
2351 static void
2352 exchange_scr(sc_softc_t *sc)
2353 {
2354     scr_stat *scp;
2355 
2356     /* save the current state of video and keyboard */
2357     sc_move_cursor(sc->old_scp, sc->old_scp->xpos, sc->old_scp->ypos);
2358     if (!ISGRAPHSC(sc->old_scp))
2359 	sc_remove_cursor_image(sc->old_scp);
2360     if (sc->old_scp->kbd_mode == K_XLATE)
2361 	save_kbd_state(sc->old_scp);
2362 
2363     /* set up the video for the new screen */
2364     scp = sc->cur_scp = sc->new_scp;
2365     if (sc->old_scp->mode != scp->mode || ISUNKNOWNSC(sc->old_scp))
2366 	set_mode(scp);
2367     else
2368 	sc_vtb_init(&scp->scr, VTB_FRAMEBUFFER, scp->xsize, scp->ysize,
2369 		    (void *)sc->adp->va_window, FALSE);
2370     scp->status |= MOUSE_HIDDEN;
2371     sc_move_cursor(scp, scp->xpos, scp->ypos);
2372     if (!ISGRAPHSC(scp))
2373 	sc_set_cursor_image(scp);
2374 #ifndef SC_NO_PALETTE_LOADING
2375     if (ISGRAPHSC(sc->old_scp))
2376 	load_palette(sc->adp, sc->palette);
2377 #endif
2378     sc_set_border(scp, scp->border);
2379 
2380     /* set up the keyboard for the new screen */
2381     if (sc->old_scp->kbd_mode != scp->kbd_mode)
2382 	kbd_ioctl(sc->kbd, KDSKBMODE, (caddr_t)&scp->kbd_mode);
2383     update_kbd_state(scp, scp->status, LOCK_MASK);
2384 
2385     mark_all(scp);
2386 }
2387 
2388 void
2389 sc_puts(scr_stat *scp, u_char *buf, int len)
2390 {
2391 #if NSPLASH > 0
2392     /* make screensaver happy */
2393     if (!sticky_splash && scp == scp->sc->cur_scp)
2394 	run_scrn_saver = FALSE;
2395 #endif
2396 
2397     if (scp->tsw)
2398 	(*scp->tsw->te_puts)(scp, buf, len);
2399 
2400     if (scp->sc->delayed_next_scr)
2401 	sc_switch_scr(scp->sc, scp->sc->delayed_next_scr - 1);
2402 }
2403 
2404 void
2405 sc_draw_cursor_image(scr_stat *scp)
2406 {
2407     /* assert(scp == scp->sc->cur_scp); */
2408     ++scp->sc->videoio_in_progress;
2409     (*scp->rndr->draw_cursor)(scp, scp->cursor_pos,
2410 			      scp->sc->flags & SC_BLINK_CURSOR, TRUE,
2411 			      sc_inside_cutmark(scp, scp->cursor_pos));
2412     scp->cursor_oldpos = scp->cursor_pos;
2413     --scp->sc->videoio_in_progress;
2414 }
2415 
2416 void
2417 sc_remove_cursor_image(scr_stat *scp)
2418 {
2419     /* assert(scp == scp->sc->cur_scp); */
2420     ++scp->sc->videoio_in_progress;
2421     (*scp->rndr->draw_cursor)(scp, scp->cursor_oldpos,
2422 			      scp->sc->flags & SC_BLINK_CURSOR, FALSE,
2423 			      sc_inside_cutmark(scp, scp->cursor_oldpos));
2424     --scp->sc->videoio_in_progress;
2425 }
2426 
2427 static void
2428 update_cursor_image(scr_stat *scp)
2429 {
2430     int blink;
2431 
2432     if (scp->sc->flags & SC_CHAR_CURSOR) {
2433 	scp->cursor_base = imax(0, scp->sc->cursor_base);
2434 	scp->cursor_height = imin(scp->sc->cursor_height, scp->font_size);
2435     } else {
2436 	scp->cursor_base = 0;
2437 	scp->cursor_height = scp->font_size;
2438     }
2439     blink = scp->sc->flags & SC_BLINK_CURSOR;
2440 
2441     /* assert(scp == scp->sc->cur_scp); */
2442     ++scp->sc->videoio_in_progress;
2443     (*scp->rndr->draw_cursor)(scp, scp->cursor_oldpos, blink, FALSE,
2444 			      sc_inside_cutmark(scp, scp->cursor_pos));
2445     (*scp->rndr->set_cursor)(scp, scp->cursor_base, scp->cursor_height, blink);
2446     (*scp->rndr->draw_cursor)(scp, scp->cursor_pos, blink, TRUE,
2447 			      sc_inside_cutmark(scp, scp->cursor_pos));
2448     --scp->sc->videoio_in_progress;
2449 }
2450 
2451 void
2452 sc_set_cursor_image(scr_stat *scp)
2453 {
2454     if (scp->sc->flags & SC_CHAR_CURSOR) {
2455 	scp->cursor_base = imax(0, scp->sc->cursor_base);
2456 	scp->cursor_height = imin(scp->sc->cursor_height, scp->font_size);
2457     } else {
2458 	scp->cursor_base = 0;
2459 	scp->cursor_height = scp->font_size;
2460     }
2461 
2462     /* assert(scp == scp->sc->cur_scp); */
2463     ++scp->sc->videoio_in_progress;
2464     (*scp->rndr->set_cursor)(scp, scp->cursor_base, scp->cursor_height,
2465 			     scp->sc->flags & SC_BLINK_CURSOR);
2466     --scp->sc->videoio_in_progress;
2467 }
2468 
2469 static void
2470 scinit(int unit, int flags)
2471 {
2472     /*
2473      * When syscons is being initialized as the kernel console, malloc()
2474      * is not yet functional, because various kernel structures has not been
2475      * fully initialized yet.  Therefore, we need to declare the following
2476      * static buffers for the console.  This is less than ideal,
2477      * but is necessry evil for the time being.  XXX
2478      */
2479     static scr_stat main_console;
2480     static dev_t main_devs[MAXCONS];
2481     static struct tty main_tty;
2482     static u_short sc_buffer[ROW*COL];	/* XXX */
2483 #ifndef SC_NO_FONT_LOADING
2484     static u_char font_8[256*8];
2485     static u_char font_14[256*14];
2486     static u_char font_16[256*16];
2487 #endif
2488 
2489     sc_softc_t *sc;
2490     scr_stat *scp;
2491     video_adapter_t *adp;
2492     int col;
2493     int row;
2494     int i;
2495 
2496     /* one time initialization */
2497     if (init_done == COLD)
2498 	sc_get_bios_values(&bios_value);
2499     init_done = WARM;
2500 
2501     /*
2502      * Allocate resources.  Even if we are being called for the second
2503      * time, we must allocate them again, because they might have
2504      * disappeared...
2505      */
2506     sc = sc_get_softc(unit, flags & SC_KERNEL_CONSOLE);
2507     adp = NULL;
2508     if (sc->adapter >= 0) {
2509 	vid_release(sc->adp, (void *)&sc->adapter);
2510 	adp = sc->adp;
2511 	sc->adp = NULL;
2512     }
2513     if (sc->keyboard >= 0) {
2514 	DPRINTF(5, ("sc%d: releasing kbd%d\n", unit, sc->keyboard));
2515 	i = kbd_release(sc->kbd, (void *)&sc->keyboard);
2516 	DPRINTF(5, ("sc%d: kbd_release returned %d\n", unit, i));
2517 	if (sc->kbd != NULL) {
2518 	    DPRINTF(5, ("sc%d: kbd != NULL!, index:%d, unit:%d, flags:0x%x\n",
2519 		unit, sc->kbd->kb_index, sc->kbd->kb_unit, sc->kbd->kb_flags));
2520 	}
2521 	sc->kbd = NULL;
2522     }
2523     sc->adapter = vid_allocate("*", unit, (void *)&sc->adapter);
2524     sc->adp = vid_get_adapter(sc->adapter);
2525     /* assert((sc->adapter >= 0) && (sc->adp != NULL)) */
2526     sc->keyboard = kbd_allocate("*", unit, (void *)&sc->keyboard,
2527 				sckbdevent, sc);
2528     DPRINTF(1, ("sc%d: keyboard %d\n", unit, sc->keyboard));
2529     sc->kbd = kbd_get_keyboard(sc->keyboard);
2530     if (sc->kbd != NULL) {
2531 	DPRINTF(1, ("sc%d: kbd index:%d, unit:%d, flags:0x%x\n",
2532 		unit, sc->kbd->kb_index, sc->kbd->kb_unit, sc->kbd->kb_flags));
2533     }
2534 
2535     if (!(sc->flags & SC_INIT_DONE) || (adp != sc->adp)) {
2536 
2537 	sc->initial_mode = sc->adp->va_initial_mode;
2538 
2539 #ifndef SC_NO_FONT_LOADING
2540 	if (flags & SC_KERNEL_CONSOLE) {
2541 	    sc->font_8 = font_8;
2542 	    sc->font_14 = font_14;
2543 	    sc->font_16 = font_16;
2544 	} else if (sc->font_8 == NULL) {
2545 	    /* assert(sc_malloc) */
2546 	    sc->font_8 = malloc(sizeof(font_8), M_DEVBUF, M_WAITOK);
2547 	    sc->font_14 = malloc(sizeof(font_14), M_DEVBUF, M_WAITOK);
2548 	    sc->font_16 = malloc(sizeof(font_16), M_DEVBUF, M_WAITOK);
2549 	}
2550 #endif
2551 
2552 	/* extract the hardware cursor location and hide the cursor for now */
2553 	(*vidsw[sc->adapter]->read_hw_cursor)(sc->adp, &col, &row);
2554 	(*vidsw[sc->adapter]->set_hw_cursor)(sc->adp, -1, -1);
2555 
2556 	/* set up the first console */
2557 	sc->first_vty = unit*MAXCONS;
2558 	sc->vtys = MAXCONS;		/* XXX: should be configurable */
2559 	if (flags & SC_KERNEL_CONSOLE) {
2560 	    sc->dev = main_devs;
2561 	    sc->dev[0] = makedev(CDEV_MAJOR, unit*MAXCONS);
2562 	    sc->dev[0]->si_tty = &main_tty;
2563 	    ttyregister(&main_tty);
2564 	    scp = &main_console;
2565 	    init_scp(sc, sc->first_vty, scp);
2566 	    sc_vtb_init(&scp->vtb, VTB_MEMORY, scp->xsize, scp->ysize,
2567 			(void *)sc_buffer, FALSE);
2568 	    if (sc_init_emulator(scp, SC_DFLT_TERM))
2569 		sc_init_emulator(scp, "*");
2570 	    (*scp->tsw->te_default_attr)(scp,
2571 					 kernel_default.std_color,
2572 					 kernel_default.rev_color);
2573 	} else {
2574 	    /* assert(sc_malloc) */
2575 	    sc->dev = malloc(sizeof(dev_t)*sc->vtys, M_DEVBUF, M_WAITOK);
2576 	    bzero(sc->dev, sizeof(dev_t)*sc->vtys);
2577 	    sc->dev[0] = makedev(CDEV_MAJOR, unit*MAXCONS);
2578 	    sc->dev[0]->si_tty = ttymalloc(sc->dev[0]->si_tty);
2579 	    scp = alloc_scp(sc, sc->first_vty);
2580 	}
2581 	SC_STAT(sc->dev[0]) = scp;
2582 	sc->cur_scp = scp;
2583 
2584 	/* copy screen to temporary buffer */
2585 	sc_vtb_init(&scp->scr, VTB_FRAMEBUFFER, scp->xsize, scp->ysize,
2586 		    (void *)scp->sc->adp->va_window, FALSE);
2587 	if (ISTEXTSC(scp))
2588 	    sc_vtb_copy(&scp->scr, 0, &scp->vtb, 0, scp->xsize*scp->ysize);
2589 
2590 	/* move cursors to the initial positions */
2591 	if (col >= scp->xsize)
2592 	    col = 0;
2593 	if (row >= scp->ysize)
2594 	    row = scp->ysize - 1;
2595 	scp->xpos = col;
2596 	scp->ypos = row;
2597 	scp->cursor_pos = scp->cursor_oldpos = row*scp->xsize + col;
2598 	if (bios_value.cursor_end < scp->font_size)
2599 	    sc->cursor_base = scp->font_size - bios_value.cursor_end - 1;
2600 	else
2601 	    sc->cursor_base = 0;
2602 	i = bios_value.cursor_end - bios_value.cursor_start + 1;
2603 	sc->cursor_height = imin(i, scp->font_size);
2604 #ifndef SC_NO_SYSMOUSE
2605 	sc_mouse_move(scp, scp->xpixel/2, scp->ypixel/2);
2606 #endif
2607 	if (!ISGRAPHSC(scp)) {
2608     	    sc_set_cursor_image(scp);
2609     	    sc_draw_cursor_image(scp);
2610 	}
2611 
2612 	/* save font and palette */
2613 #ifndef SC_NO_FONT_LOADING
2614 	sc->fonts_loaded = 0;
2615 	if (ISFONTAVAIL(sc->adp->va_flags)) {
2616 #ifdef SC_DFLT_FONT
2617 	    bcopy(dflt_font_8, sc->font_8, sizeof(dflt_font_8));
2618 	    bcopy(dflt_font_14, sc->font_14, sizeof(dflt_font_14));
2619 	    bcopy(dflt_font_16, sc->font_16, sizeof(dflt_font_16));
2620 	    sc->fonts_loaded = FONT_16 | FONT_14 | FONT_8;
2621 	    if (scp->font_size < 14) {
2622 		sc_load_font(scp, 0, 8, sc->font_8, 0, 256);
2623 	    } else if (scp->font_size >= 16) {
2624 		sc_load_font(scp, 0, 16, sc->font_16, 0, 256);
2625 	    } else {
2626 		sc_load_font(scp, 0, 14, sc->font_14, 0, 256);
2627 	    }
2628 #else /* !SC_DFLT_FONT */
2629 	    if (scp->font_size < 14) {
2630 		sc_save_font(scp, 0, 8, sc->font_8, 0, 256);
2631 		sc->fonts_loaded = FONT_8;
2632 	    } else if (scp->font_size >= 16) {
2633 		sc_save_font(scp, 0, 16, sc->font_16, 0, 256);
2634 		sc->fonts_loaded = FONT_16;
2635 	    } else {
2636 		sc_save_font(scp, 0, 14, sc->font_14, 0, 256);
2637 		sc->fonts_loaded = FONT_14;
2638 	    }
2639 #endif /* SC_DFLT_FONT */
2640 	    /* FONT KLUDGE: always use the font page #0. XXX */
2641 	    sc_show_font(scp, 0);
2642 	}
2643 #endif /* !SC_NO_FONT_LOADING */
2644 
2645 #ifndef SC_NO_PALETTE_LOADING
2646 	save_palette(sc->adp, sc->palette);
2647 #endif
2648 
2649 #if NSPLASH > 0
2650 	if (!(sc->flags & SC_SPLASH_SCRN) && (flags & SC_KERNEL_CONSOLE)) {
2651 	    /* we are ready to put up the splash image! */
2652 	    splash_init(sc->adp, scsplash_callback, sc);
2653 	    sc->flags |= SC_SPLASH_SCRN;
2654 	}
2655 #endif /* NSPLASH */
2656     }
2657 
2658     /* the rest is not necessary, if we have done it once */
2659     if (sc->flags & SC_INIT_DONE)
2660 	return;
2661 
2662     /* initialize mapscrn arrays to a one to one map */
2663     for (i = 0; i < sizeof(sc->scr_map); i++)
2664 	sc->scr_map[i] = sc->scr_rmap[i] = i;
2665 
2666     sc->flags |= SC_INIT_DONE;
2667 }
2668 
2669 #if __i386__
2670 static void
2671 scterm(int unit, int flags)
2672 {
2673     sc_softc_t *sc;
2674     scr_stat *scp;
2675 
2676     sc = sc_get_softc(unit, flags & SC_KERNEL_CONSOLE);
2677     if (sc == NULL)
2678 	return;			/* shouldn't happen */
2679 
2680 #if NSPLASH > 0
2681     /* this console is no longer available for the splash screen */
2682     if (sc->flags & SC_SPLASH_SCRN) {
2683 	splash_term(sc->adp);
2684 	sc->flags &= ~SC_SPLASH_SCRN;
2685     }
2686 #endif /* NSPLASH */
2687 
2688 #if 0 /* XXX */
2689     /* move the hardware cursor to the upper-left corner */
2690     (*vidsw[sc->adapter]->set_hw_cursor)(sc->adp, 0, 0);
2691 #endif
2692 
2693     /* release the keyboard and the video card */
2694     if (sc->keyboard >= 0)
2695 	kbd_release(sc->kbd, &sc->keyboard);
2696     if (sc->adapter >= 0)
2697 	vid_release(sc->adp, &sc->adapter);
2698 
2699     /* stop the terminal emulator, if any */
2700     scp = SC_STAT(sc->dev[0]);
2701     if (scp->tsw)
2702 	(*scp->tsw->te_term)(scp, &scp->ts);
2703     if (scp->ts != NULL)
2704 	free(scp->ts, M_DEVBUF);
2705 
2706     /* clear the structure */
2707     if (!(flags & SC_KERNEL_CONSOLE)) {
2708 	/* XXX: We need delete_dev() for this */
2709 	free(sc->dev, M_DEVBUF);
2710 #if 0
2711 	/* XXX: We need a ttyunregister for this */
2712 	free(sc->tty, M_DEVBUF);
2713 #endif
2714 #ifndef SC_NO_FONT_LOADING
2715 	free(sc->font_8, M_DEVBUF);
2716 	free(sc->font_14, M_DEVBUF);
2717 	free(sc->font_16, M_DEVBUF);
2718 #endif
2719 	/* XXX vtb, history */
2720     }
2721     bzero(sc, sizeof(*sc));
2722     sc->keyboard = -1;
2723     sc->adapter = -1;
2724 }
2725 #endif
2726 
2727 static void
2728 scshutdown(void *arg, int howto)
2729 {
2730     /* assert(sc_console != NULL) */
2731 
2732     sc_touch_scrn_saver();
2733     if (!cold && sc_console
2734 	&& sc_console->sc->cur_scp->smode.mode == VT_AUTO
2735 	&& sc_console->smode.mode == VT_AUTO)
2736 	sc_switch_scr(sc_console->sc, sc_console->index);
2737     shutdown_in_progress = TRUE;
2738 }
2739 
2740 int
2741 sc_clean_up(scr_stat *scp)
2742 {
2743 #if NSPLASH > 0
2744     int error;
2745 #endif /* NSPLASH */
2746 
2747     if (scp->sc->flags & SC_SCRN_BLANKED) {
2748 	sc_touch_scrn_saver();
2749 #if NSPLASH > 0
2750 	if ((error = wait_scrn_saver_stop(scp->sc)))
2751 	    return error;
2752 #endif /* NSPLASH */
2753     }
2754     scp->status |= MOUSE_HIDDEN;
2755     sc_remove_mouse_image(scp);
2756     sc_remove_cutmarking(scp);
2757     return 0;
2758 }
2759 
2760 void
2761 sc_alloc_scr_buffer(scr_stat *scp, int wait, int discard)
2762 {
2763     sc_vtb_t new;
2764     sc_vtb_t old;
2765 
2766     old = scp->vtb;
2767     sc_vtb_init(&new, VTB_MEMORY, scp->xsize, scp->ysize, NULL, wait);
2768     if (!discard && (old.vtb_flags & VTB_VALID)) {
2769 	/* retain the current cursor position and buffer contants */
2770 	scp->cursor_oldpos = scp->cursor_pos;
2771 	/*
2772 	 * This works only if the old buffer has the same size as or larger
2773 	 * than the new one. XXX
2774 	 */
2775 	sc_vtb_copy(&old, 0, &new, 0, scp->xsize*scp->ysize);
2776 	scp->vtb = new;
2777     } else {
2778 	scp->vtb = new;
2779 	sc_vtb_destroy(&old);
2780     }
2781 
2782 #ifndef SC_NO_SYSMOUSE
2783     /* move the mouse cursor at the center of the screen */
2784     sc_mouse_move(scp, scp->xpixel / 2, scp->ypixel / 2);
2785 #endif
2786 }
2787 
2788 static scr_stat
2789 *alloc_scp(sc_softc_t *sc, int vty)
2790 {
2791     scr_stat *scp;
2792 
2793     /* assert(sc_malloc) */
2794 
2795     scp = (scr_stat *)malloc(sizeof(scr_stat), M_DEVBUF, M_WAITOK);
2796     init_scp(sc, vty, scp);
2797 
2798     sc_alloc_scr_buffer(scp, TRUE, TRUE);
2799     if (sc_init_emulator(scp, SC_DFLT_TERM))
2800 	sc_init_emulator(scp, "*");
2801 
2802 #ifndef SC_NO_CUTPASTE
2803     sc_alloc_cut_buffer(scp, TRUE);
2804 #endif
2805 
2806 #ifndef SC_NO_HISTORY
2807     sc_alloc_history_buffer(scp, 0, 0, TRUE);
2808 #endif
2809 
2810     return scp;
2811 }
2812 
2813 static void
2814 init_scp(sc_softc_t *sc, int vty, scr_stat *scp)
2815 {
2816     video_info_t info;
2817 
2818     bzero(scp, sizeof(*scp));
2819 
2820     scp->index = vty;
2821     scp->sc = sc;
2822     scp->status = 0;
2823     scp->mode = sc->initial_mode;
2824     (*vidsw[sc->adapter]->get_info)(sc->adp, scp->mode, &info);
2825     if (info.vi_flags & V_INFO_GRAPHICS) {
2826 	scp->status |= GRAPHICS_MODE;
2827 	scp->xpixel = info.vi_width;
2828 	scp->ypixel = info.vi_height;
2829 	scp->xsize = info.vi_width/8;
2830 	scp->ysize = info.vi_height/info.vi_cheight;
2831 	scp->font_size = 0;
2832 	scp->font = NULL;
2833     } else {
2834 	scp->xsize = info.vi_width;
2835 	scp->ysize = info.vi_height;
2836 	scp->xpixel = scp->xsize*8;
2837 	scp->ypixel = scp->ysize*info.vi_cheight;
2838 	if (info.vi_cheight < 14) {
2839 	    scp->font_size = 8;
2840 #ifndef SC_NO_FONT_LOADING
2841 	    scp->font = sc->font_8;
2842 #else
2843 	    scp->font = NULL;
2844 #endif
2845 	} else if (info.vi_cheight >= 16) {
2846 	    scp->font_size = 16;
2847 #ifndef SC_NO_FONT_LOADING
2848 	    scp->font = sc->font_16;
2849 #else
2850 	    scp->font = NULL;
2851 #endif
2852 	} else {
2853 	    scp->font_size = 14;
2854 #ifndef SC_NO_FONT_LOADING
2855 	    scp->font = sc->font_14;
2856 #else
2857 	    scp->font = NULL;
2858 #endif
2859 	}
2860     }
2861     sc_vtb_init(&scp->vtb, VTB_MEMORY, 0, 0, NULL, FALSE);
2862     sc_vtb_init(&scp->scr, VTB_FRAMEBUFFER, 0, 0, NULL, FALSE);
2863     scp->xoff = scp->yoff = 0;
2864     scp->xpos = scp->ypos = 0;
2865     scp->start = scp->xsize * scp->ysize - 1;
2866     scp->end = 0;
2867     scp->tsw = NULL;
2868     scp->ts = NULL;
2869     scp->rndr = NULL;
2870     scp->border = BG_BLACK;
2871     scp->cursor_base = sc->cursor_base;
2872     scp->cursor_height = imin(sc->cursor_height, scp->font_size);
2873     scp->mouse_cut_start = scp->xsize*scp->ysize;
2874     scp->mouse_cut_end = -1;
2875     scp->mouse_signal = 0;
2876     scp->mouse_pid = 0;
2877     scp->mouse_proc = NULL;
2878     scp->kbd_mode = K_XLATE;
2879     scp->bell_pitch = bios_value.bell_pitch;
2880     scp->bell_duration = BELL_DURATION;
2881     scp->status |= (bios_value.shift_state & NLKED);
2882     scp->status |= CURSOR_ENABLED | MOUSE_HIDDEN;
2883     scp->pid = 0;
2884     scp->proc = NULL;
2885     scp->smode.mode = VT_AUTO;
2886     scp->history = NULL;
2887     scp->history_pos = 0;
2888     scp->history_size = 0;
2889 }
2890 
2891 int
2892 sc_init_emulator(scr_stat *scp, char *name)
2893 {
2894     sc_term_sw_t *sw;
2895     sc_rndr_sw_t *rndr;
2896     void *p;
2897     int error;
2898 
2899     if (name == NULL)	/* if no name is given, use the current emulator */
2900 	sw = scp->tsw;
2901     else		/* ...otherwise find the named emulator */
2902 	sw = sc_term_match(name);
2903     if (sw == NULL)
2904 	return EINVAL;
2905 
2906     rndr = NULL;
2907     if (strcmp(sw->te_renderer, "*") != 0) {
2908 	rndr = sc_render_match(scp, sw->te_renderer,
2909 			       scp->status & (GRAPHICS_MODE | PIXEL_MODE));
2910     }
2911     if (rndr == NULL) {
2912 	rndr = sc_render_match(scp, scp->sc->adp->va_name,
2913 			       scp->status & (GRAPHICS_MODE | PIXEL_MODE));
2914 	if (rndr == NULL)
2915 	    return ENODEV;
2916     }
2917 
2918     if (sw == scp->tsw) {
2919 	error = (*sw->te_init)(scp, &scp->ts, SC_TE_WARM_INIT);
2920 	scp->rndr = rndr;
2921 	sc_clear_screen(scp);
2922 	/* assert(error == 0); */
2923 	return error;
2924     }
2925 
2926     if (sc_malloc && (sw->te_size > 0))
2927 	p = malloc(sw->te_size, M_DEVBUF, M_NOWAIT);
2928     else
2929 	p = NULL;
2930     error = (*sw->te_init)(scp, &p, SC_TE_COLD_INIT);
2931     if (error)
2932 	return error;
2933 
2934     if (scp->tsw)
2935 	(*scp->tsw->te_term)(scp, &scp->ts);
2936     if (scp->ts != NULL)
2937 	free(scp->ts, M_DEVBUF);
2938     scp->tsw = sw;
2939     scp->ts = p;
2940     scp->rndr = rndr;
2941 
2942     /* XXX */
2943     (*sw->te_default_attr)(scp, user_default.std_color, user_default.rev_color);
2944     sc_clear_screen(scp);
2945 
2946     return 0;
2947 }
2948 
2949 /*
2950  * scgetc(flags) - get character from keyboard.
2951  * If flags & SCGETC_CN, then avoid harmful side effects.
2952  * If flags & SCGETC_NONBLOCK, then wait until a key is pressed, else
2953  * return NOKEY if there is nothing there.
2954  */
2955 static u_int
2956 scgetc(sc_softc_t *sc, u_int flags)
2957 {
2958     scr_stat *scp;
2959 #ifndef SC_NO_HISTORY
2960     struct tty *tp;
2961 #endif
2962     u_int c;
2963     int this_scr;
2964     int f;
2965     int i;
2966 
2967     if (sc->kbd == NULL)
2968 	return NOKEY;
2969 
2970 next_code:
2971 #if 1
2972     /* I don't like this, but... XXX */
2973     if (flags & SCGETC_CN)
2974 	sccnupdate(sc->cur_scp);
2975 #endif
2976     scp = sc->cur_scp;
2977     /* first see if there is something in the keyboard port */
2978     for (;;) {
2979 	c = kbd_read_char(sc->kbd, !(flags & SCGETC_NONBLOCK));
2980 	if (c == ERRKEY) {
2981 	    if (!(flags & SCGETC_CN))
2982 		sc_bell(scp, bios_value.bell_pitch, BELL_DURATION);
2983 	} else if (c == NOKEY)
2984 	    return c;
2985 	else
2986 	    break;
2987     }
2988 
2989     /* make screensaver happy */
2990     if (!(c & RELKEY))
2991 	sc_touch_scrn_saver();
2992 
2993 #ifdef __i386__
2994     if (!(flags & SCGETC_CN))
2995 	/* do the /dev/random device a favour */
2996 	add_keyboard_randomness(c);
2997 #endif
2998 
2999     if (scp->kbd_mode != K_XLATE)
3000 	return KEYCHAR(c);
3001 
3002     /* if scroll-lock pressed allow history browsing */
3003     if (!ISGRAPHSC(scp) && scp->history && scp->status & SLKED) {
3004 
3005 	scp->status &= ~CURSOR_ENABLED;
3006 	sc_remove_cursor_image(scp);
3007 
3008 #ifndef SC_NO_HISTORY
3009 	if (!(scp->status & BUFFER_SAVED)) {
3010 	    scp->status |= BUFFER_SAVED;
3011 	    sc_hist_save(scp);
3012 	}
3013 	switch (c) {
3014 	/* FIXME: key codes */
3015 	case SPCLKEY | FKEY | F(49):  /* home key */
3016 	    sc_remove_cutmarking(scp);
3017 	    sc_hist_home(scp);
3018 	    goto next_code;
3019 
3020 	case SPCLKEY | FKEY | F(57):  /* end key */
3021 	    sc_remove_cutmarking(scp);
3022 	    sc_hist_end(scp);
3023 	    goto next_code;
3024 
3025 	case SPCLKEY | FKEY | F(50):  /* up arrow key */
3026 	    sc_remove_cutmarking(scp);
3027 	    if (sc_hist_up_line(scp))
3028 		if (!(flags & SCGETC_CN))
3029 		    sc_bell(scp, bios_value.bell_pitch, BELL_DURATION);
3030 	    goto next_code;
3031 
3032 	case SPCLKEY | FKEY | F(58):  /* down arrow key */
3033 	    sc_remove_cutmarking(scp);
3034 	    if (sc_hist_down_line(scp))
3035 		if (!(flags & SCGETC_CN))
3036 		    sc_bell(scp, bios_value.bell_pitch, BELL_DURATION);
3037 	    goto next_code;
3038 
3039 	case SPCLKEY | FKEY | F(51):  /* page up key */
3040 	    sc_remove_cutmarking(scp);
3041 	    for (i=0; i<scp->ysize; i++)
3042 	    if (sc_hist_up_line(scp)) {
3043 		if (!(flags & SCGETC_CN))
3044 		    sc_bell(scp, bios_value.bell_pitch, BELL_DURATION);
3045 		break;
3046 	    }
3047 	    goto next_code;
3048 
3049 	case SPCLKEY | FKEY | F(59):  /* page down key */
3050 	    sc_remove_cutmarking(scp);
3051 	    for (i=0; i<scp->ysize; i++)
3052 	    if (sc_hist_down_line(scp)) {
3053 		if (!(flags & SCGETC_CN))
3054 		    sc_bell(scp, bios_value.bell_pitch, BELL_DURATION);
3055 		break;
3056 	    }
3057 	    goto next_code;
3058 	}
3059 #endif /* SC_NO_HISTORY */
3060     }
3061 
3062     /*
3063      * Process and consume special keys here.  Return a plain char code
3064      * or a char code with the META flag or a function key code.
3065      */
3066     if (c & RELKEY) {
3067 	/* key released */
3068 	/* goto next_code */
3069     } else {
3070 	/* key pressed */
3071 	if (c & SPCLKEY) {
3072 	    c &= ~SPCLKEY;
3073 	    switch (KEYCHAR(c)) {
3074 	    /* LOCKING KEYS */
3075 	    case NLK: case CLK: case ALK:
3076 		break;
3077 	    case SLK:
3078 		kbd_ioctl(sc->kbd, KDGKBSTATE, (caddr_t)&f);
3079 		if (f & SLKED) {
3080 		    scp->status |= SLKED;
3081 		} else {
3082 		    if (scp->status & SLKED) {
3083 			scp->status &= ~SLKED;
3084 #ifndef SC_NO_HISTORY
3085 			if (scp->status & BUFFER_SAVED) {
3086 			    if (!sc_hist_restore(scp))
3087 				sc_remove_cutmarking(scp);
3088 			    scp->status &= ~BUFFER_SAVED;
3089 			    scp->status |= CURSOR_ENABLED;
3090 			    sc_draw_cursor_image(scp);
3091 			}
3092 			tp = VIRTUAL_TTY(sc, scp->index);
3093 			if (ISTTYOPEN(tp))
3094 			    scstart(tp);
3095 #endif
3096 		    }
3097 		}
3098 		break;
3099 
3100 	    /* NON-LOCKING KEYS */
3101 	    case NOP:
3102 	    case LSH:  case RSH:  case LCTR: case RCTR:
3103 	    case LALT: case RALT: case ASH:  case META:
3104 		break;
3105 
3106 	    case BTAB:
3107 		if (!(sc->flags & SC_SCRN_BLANKED))
3108 		    return c;
3109 		break;
3110 
3111 	    case SPSC:
3112 #if NSPLASH > 0
3113 		/* force activatation/deactivation of the screen saver */
3114 		if (!(sc->flags & SC_SCRN_BLANKED)) {
3115 		    run_scrn_saver = TRUE;
3116 		    sc->scrn_time_stamp -= scrn_blank_time;
3117 		}
3118 		if (cold) {
3119 		    /*
3120 		     * While devices are being probed, the screen saver need
3121 		     * to be invoked explictly. XXX
3122 		     */
3123 		    if (sc->flags & SC_SCRN_BLANKED) {
3124 			scsplash_stick(FALSE);
3125 			stop_scrn_saver(sc, current_saver);
3126 		    } else {
3127 			if (!ISGRAPHSC(scp)) {
3128 			    scsplash_stick(TRUE);
3129 			    (*current_saver)(sc, TRUE);
3130 			}
3131 		    }
3132 		}
3133 #endif /* NSPLASH */
3134 		break;
3135 
3136 	    case RBT:
3137 #ifndef SC_DISABLE_REBOOT
3138 		shutdown_nice(0);
3139 #endif
3140 		break;
3141 
3142 	    case HALT:
3143 #ifndef SC_DISABLE_REBOOT
3144 		shutdown_nice(RB_HALT);
3145 #endif
3146 		break;
3147 
3148 	    case PDWN:
3149 #ifndef SC_DISABLE_REBOOT
3150 		shutdown_nice(RB_HALT|RB_POWEROFF);
3151 #endif
3152 		break;
3153 
3154 #if NAPM > 0
3155 	    case SUSP:
3156 		apm_suspend(PMST_SUSPEND);
3157 		break;
3158 	    case STBY:
3159 		apm_suspend(PMST_STANDBY);
3160 		break;
3161 #else
3162 	    case SUSP:
3163 	    case STBY:
3164 		break;
3165 #endif
3166 
3167 	    case DBG:
3168 #ifndef SC_DISABLE_DDBKEY
3169 #ifdef DDB
3170 		Debugger("manual escape to debugger");
3171 #else
3172 		printf("No debugger in kernel\n");
3173 #endif
3174 #else /* SC_DISABLE_DDBKEY */
3175 		/* do nothing */
3176 #endif /* SC_DISABLE_DDBKEY */
3177 		break;
3178 
3179 	    case PNC:
3180 		if (enable_panic_key)
3181 			panic("Forced by the panic key");
3182 		break;
3183 
3184 	    case NEXT:
3185 		this_scr = scp->index;
3186 		for (i = (this_scr - sc->first_vty + 1)%sc->vtys;
3187 			sc->first_vty + i != this_scr;
3188 			i = (i + 1)%sc->vtys) {
3189 		    struct tty *tp = VIRTUAL_TTY(sc, sc->first_vty + i);
3190 		    if (ISTTYOPEN(tp)) {
3191 			sc_switch_scr(scp->sc, sc->first_vty + i);
3192 			break;
3193 		    }
3194 		}
3195 		break;
3196 
3197 	    case PREV:
3198 		this_scr = scp->index;
3199 		for (i = (this_scr - sc->first_vty + sc->vtys - 1)%sc->vtys;
3200 			sc->first_vty + i != this_scr;
3201 			i = (i + sc->vtys - 1)%sc->vtys) {
3202 		    struct tty *tp = VIRTUAL_TTY(sc, sc->first_vty + i);
3203 		    if (ISTTYOPEN(tp)) {
3204 			sc_switch_scr(scp->sc, sc->first_vty + i);
3205 			break;
3206 		    }
3207 		}
3208 		break;
3209 
3210 	    default:
3211 		if (KEYCHAR(c) >= F_SCR && KEYCHAR(c) <= L_SCR) {
3212 		    sc_switch_scr(scp->sc, sc->first_vty + KEYCHAR(c) - F_SCR);
3213 		    break;
3214 		}
3215 		/* assert(c & FKEY) */
3216 		if (!(sc->flags & SC_SCRN_BLANKED))
3217 		    return c;
3218 		break;
3219 	    }
3220 	    /* goto next_code */
3221 	} else {
3222 	    /* regular keys (maybe MKEY is set) */
3223 	    if (!(sc->flags & SC_SCRN_BLANKED))
3224 		return c;
3225 	}
3226     }
3227 
3228     goto next_code;
3229 }
3230 
3231 int
3232 scmmap(dev_t dev, vm_offset_t offset, int nprot)
3233 {
3234     scr_stat *scp;
3235 
3236     scp = SC_STAT(dev);
3237     if (scp != scp->sc->cur_scp)
3238 	return -1;
3239     return (*vidsw[scp->sc->adapter]->mmap)(scp->sc->adp, offset, nprot);
3240 }
3241 
3242 static int
3243 save_kbd_state(scr_stat *scp)
3244 {
3245     int state;
3246     int error;
3247 
3248     error = kbd_ioctl(scp->sc->kbd, KDGKBSTATE, (caddr_t)&state);
3249     if (error == ENOIOCTL)
3250 	error = ENODEV;
3251     if (error == 0) {
3252 	scp->status &= ~LOCK_MASK;
3253 	scp->status |= state;
3254     }
3255     return error;
3256 }
3257 
3258 static int
3259 update_kbd_state(scr_stat *scp, int new_bits, int mask)
3260 {
3261     int state;
3262     int error;
3263 
3264     if (mask != LOCK_MASK) {
3265 	error = kbd_ioctl(scp->sc->kbd, KDGKBSTATE, (caddr_t)&state);
3266 	if (error == ENOIOCTL)
3267 	    error = ENODEV;
3268 	if (error)
3269 	    return error;
3270 	state &= ~mask;
3271 	state |= new_bits & mask;
3272     } else {
3273 	state = new_bits & LOCK_MASK;
3274     }
3275     error = kbd_ioctl(scp->sc->kbd, KDSKBSTATE, (caddr_t)&state);
3276     if (error == ENOIOCTL)
3277 	error = ENODEV;
3278     return error;
3279 }
3280 
3281 static int
3282 update_kbd_leds(scr_stat *scp, int which)
3283 {
3284     int error;
3285 
3286     which &= LOCK_MASK;
3287     error = kbd_ioctl(scp->sc->kbd, KDSETLED, (caddr_t)&which);
3288     if (error == ENOIOCTL)
3289 	error = ENODEV;
3290     return error;
3291 }
3292 
3293 int
3294 set_mode(scr_stat *scp)
3295 {
3296     video_info_t info;
3297 
3298     /* reject unsupported mode */
3299     if ((*vidsw[scp->sc->adapter]->get_info)(scp->sc->adp, scp->mode, &info))
3300 	return 1;
3301 
3302     /* if this vty is not currently showing, do nothing */
3303     if (scp != scp->sc->cur_scp)
3304 	return 0;
3305 
3306     /* setup video hardware for the given mode */
3307     (*vidsw[scp->sc->adapter]->set_mode)(scp->sc->adp, scp->mode);
3308     sc_vtb_init(&scp->scr, VTB_FRAMEBUFFER, scp->xsize, scp->ysize,
3309 		(void *)scp->sc->adp->va_window, FALSE);
3310 
3311 #ifndef SC_NO_FONT_LOADING
3312     /* load appropriate font */
3313     if (!(scp->status & GRAPHICS_MODE)) {
3314 	if (!(scp->status & PIXEL_MODE) && ISFONTAVAIL(scp->sc->adp->va_flags)) {
3315 	    if (scp->font_size < 14) {
3316 		if (scp->sc->fonts_loaded & FONT_8)
3317 		    sc_load_font(scp, 0, 8, scp->sc->font_8, 0, 256);
3318 	    } else if (scp->font_size >= 16) {
3319 		if (scp->sc->fonts_loaded & FONT_16)
3320 		    sc_load_font(scp, 0, 16, scp->sc->font_16, 0, 256);
3321 	    } else {
3322 		if (scp->sc->fonts_loaded & FONT_14)
3323 		    sc_load_font(scp, 0, 14, scp->sc->font_14, 0, 256);
3324 	    }
3325 	    /*
3326 	     * FONT KLUDGE:
3327 	     * This is an interim kludge to display correct font.
3328 	     * Always use the font page #0 on the video plane 2.
3329 	     * Somehow we cannot show the font in other font pages on
3330 	     * some video cards... XXX
3331 	     */
3332 	    sc_show_font(scp, 0);
3333 	}
3334 	mark_all(scp);
3335     }
3336 #endif /* !SC_NO_FONT_LOADING */
3337 
3338     sc_set_border(scp, scp->border);
3339     sc_set_cursor_image(scp);
3340 
3341     return 0;
3342 }
3343 
3344 void
3345 sc_set_border(scr_stat *scp, int color)
3346 {
3347     ++scp->sc->videoio_in_progress;
3348     (*scp->rndr->draw_border)(scp, color);
3349     --scp->sc->videoio_in_progress;
3350 }
3351 
3352 #ifndef SC_NO_FONT_LOADING
3353 void
3354 sc_load_font(scr_stat *scp, int page, int size, u_char *buf,
3355 	     int base, int count)
3356 {
3357     sc_softc_t *sc;
3358 
3359     sc = scp->sc;
3360     sc->font_loading_in_progress = TRUE;
3361     (*vidsw[sc->adapter]->load_font)(sc->adp, page, size, buf, base, count);
3362     sc->font_loading_in_progress = FALSE;
3363 }
3364 
3365 void
3366 sc_save_font(scr_stat *scp, int page, int size, u_char *buf,
3367 	     int base, int count)
3368 {
3369     sc_softc_t *sc;
3370 
3371     sc = scp->sc;
3372     sc->font_loading_in_progress = TRUE;
3373     (*vidsw[sc->adapter]->save_font)(sc->adp, page, size, buf, base, count);
3374     sc->font_loading_in_progress = FALSE;
3375 }
3376 
3377 void
3378 sc_show_font(scr_stat *scp, int page)
3379 {
3380     (*vidsw[scp->sc->adapter]->show_font)(scp->sc->adp, page);
3381 }
3382 #endif /* !SC_NO_FONT_LOADING */
3383 
3384 void
3385 sc_paste(scr_stat *scp, u_char *p, int count)
3386 {
3387     struct tty *tp;
3388     u_char *rmap;
3389 
3390     if (scp->status & MOUSE_VISIBLE) {
3391 	tp = VIRTUAL_TTY(scp->sc, scp->sc->cur_scp->index);
3392 	if (!ISTTYOPEN(tp))
3393 	    return;
3394 	rmap = scp->sc->scr_rmap;
3395 	for (; count > 0; --count)
3396 	    (*linesw[tp->t_line].l_rint)(rmap[*p++], tp);
3397     }
3398 }
3399 
3400 void
3401 sc_bell(scr_stat *scp, int pitch, int duration)
3402 {
3403     if (cold || shutdown_in_progress)
3404 	return;
3405 
3406     if (scp != scp->sc->cur_scp && (scp->sc->flags & SC_QUIET_BELL))
3407 	return;
3408 
3409     if (scp->sc->flags & SC_VISUAL_BELL) {
3410 	if (scp->sc->blink_in_progress)
3411 	    return;
3412 	scp->sc->blink_in_progress = 3;
3413 	if (scp != scp->sc->cur_scp)
3414 	    scp->sc->blink_in_progress += 2;
3415 	blink_screen(scp->sc->cur_scp);
3416     } else {
3417 	if (scp != scp->sc->cur_scp)
3418 	    pitch *= 2;
3419 	sysbeep(pitch, duration);
3420     }
3421 }
3422 
3423 static void
3424 blink_screen(void *arg)
3425 {
3426     scr_stat *scp = arg;
3427     struct tty *tp;
3428 
3429     if (ISGRAPHSC(scp) || (scp->sc->blink_in_progress <= 1)) {
3430 	scp->sc->blink_in_progress = 0;
3431     	mark_all(scp);
3432 	tp = VIRTUAL_TTY(scp->sc, scp->index);
3433 	if (ISTTYOPEN(tp))
3434 	    scstart(tp);
3435 	if (scp->sc->delayed_next_scr)
3436 	    sc_switch_scr(scp->sc, scp->sc->delayed_next_scr - 1);
3437     }
3438     else {
3439 	(*scp->rndr->draw)(scp, 0, scp->xsize*scp->ysize,
3440 			   scp->sc->blink_in_progress & 1);
3441 	scp->sc->blink_in_progress--;
3442 	timeout(blink_screen, scp, hz / 10);
3443     }
3444 }
3445