Home | History | Annotate | Line # | Download | only in sun
kbd.c revision 1.31
      1  1.31   gehenna /*	$NetBSD: kbd.c,v 1.31 2002/09/06 13:18:43 gehenna Exp $	*/
      2   1.1       gwr 
      3   1.1       gwr /*
      4   1.1       gwr  * Copyright (c) 1992, 1993
      5   1.1       gwr  *	The Regents of the University of California.  All rights reserved.
      6   1.1       gwr  *
      7   1.1       gwr  * This software was developed by the Computer Systems Engineering group
      8   1.1       gwr  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
      9   1.1       gwr  * contributed to Berkeley.
     10   1.1       gwr  *
     11   1.1       gwr  * All advertising materials mentioning features or use of this software
     12   1.1       gwr  * must display the following acknowledgement:
     13   1.1       gwr  *	This product includes software developed by the University of
     14   1.1       gwr  *	California, Lawrence Berkeley Laboratory.
     15   1.1       gwr  *
     16   1.1       gwr  * Redistribution and use in source and binary forms, with or without
     17   1.1       gwr  * modification, are permitted provided that the following conditions
     18   1.1       gwr  * are met:
     19   1.1       gwr  * 1. Redistributions of source code must retain the above copyright
     20   1.1       gwr  *    notice, this list of conditions and the following disclaimer.
     21   1.1       gwr  * 2. Redistributions in binary form must reproduce the above copyright
     22   1.1       gwr  *    notice, this list of conditions and the following disclaimer in the
     23   1.1       gwr  *    documentation and/or other materials provided with the distribution.
     24   1.1       gwr  * 3. All advertising materials mentioning features or use of this software
     25   1.1       gwr  *    must display the following acknowledgement:
     26   1.1       gwr  *	This product includes software developed by the University of
     27   1.1       gwr  *	California, Berkeley and its contributors.
     28   1.1       gwr  * 4. Neither the name of the University nor the names of its contributors
     29   1.1       gwr  *    may be used to endorse or promote products derived from this software
     30   1.1       gwr  *    without specific prior written permission.
     31   1.1       gwr  *
     32   1.1       gwr  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     33   1.1       gwr  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     34   1.1       gwr  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     35   1.1       gwr  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     36   1.1       gwr  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     37   1.1       gwr  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     38   1.1       gwr  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     39   1.1       gwr  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     40   1.1       gwr  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     41   1.1       gwr  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     42   1.1       gwr  * SUCH DAMAGE.
     43   1.1       gwr  *
     44   1.1       gwr  *	@(#)kbd.c	8.2 (Berkeley) 10/30/93
     45   1.1       gwr  */
     46   1.1       gwr 
     47   1.1       gwr /*
     48   1.1       gwr  * Keyboard driver (/dev/kbd -- note that we do not have minor numbers
     49   1.1       gwr  * [yet?]).  Translates incoming bytes to ASCII or to `firm_events' and
     50   1.1       gwr  * passes them up to the appropriate reader.
     51   1.1       gwr  */
     52  1.29     lukem 
     53  1.29     lukem #include <sys/cdefs.h>
     54  1.31   gehenna __KERNEL_RCSID(0, "$NetBSD: kbd.c,v 1.31 2002/09/06 13:18:43 gehenna Exp $");
     55   1.1       gwr 
     56  1.27       eeh #include "opt_ddb.h"
     57  1.27       eeh 
     58   1.1       gwr /*
     59   1.1       gwr  * This is the "slave" driver that will be attached to
     60   1.1       gwr  * the "zsc" driver for a Sun keyboard.
     61   1.1       gwr  */
     62   1.1       gwr 
     63   1.1       gwr #include <sys/param.h>
     64   1.1       gwr #include <sys/systm.h>
     65  1.13       gwr #include <sys/conf.h>
     66   1.1       gwr #include <sys/device.h>
     67   1.1       gwr #include <sys/ioctl.h>
     68  1.13       gwr #include <sys/kernel.h>
     69  1.13       gwr #include <sys/proc.h>
     70  1.13       gwr #include <sys/signal.h>
     71  1.13       gwr #include <sys/signalvar.h>
     72   1.1       gwr #include <sys/time.h>
     73   1.1       gwr #include <sys/syslog.h>
     74   1.9       mrg #include <sys/select.h>
     75   1.9       mrg #include <sys/poll.h>
     76  1.27       eeh #include <sys/file.h>
     77   1.1       gwr 
     78   1.1       gwr #include <dev/ic/z8530reg.h>
     79   1.1       gwr #include <machine/z8530var.h>
     80   1.1       gwr #include <machine/vuid_event.h>
     81   1.1       gwr #include <machine/kbd.h>
     82   1.1       gwr #include <machine/kbio.h>
     83  1.22       mrg #include <dev/sun/event_var.h>
     84  1.22       mrg #include <dev/sun/kbd_xlate.h>
     85  1.22       mrg #include <dev/sun/kbdvar.h>
     86   1.1       gwr 
     87  1.14       jtk #include "locators.h"
     88   1.1       gwr 
     89   1.1       gwr /*
     90   1.1       gwr  * Ideas:
     91   1.1       gwr  * /dev/kbd is not a tty (plain device)
     92   1.1       gwr  */
     93   1.1       gwr 
     94   1.1       gwr /* Prototypes */
     95  1.24        pk static void	kbd_new_layout __P((struct kbd_softc *));
     96  1.24        pk static void	kbd_repeat __P((void *));
     97  1.24        pk static void	kbd_set_leds __P((struct kbd_softc *, int));
     98  1.24        pk static void	kbd_update_leds __P((struct kbd_softc *));
     99  1.24        pk static void	kbd_was_reset __P((struct kbd_softc *));
    100  1.24        pk static int 	kbd_drain_tx __P((struct kbd_softc *));
    101  1.24        pk static int	kbd_iopen __P((struct kbd_softc *));
    102  1.24        pk static int	kbd_iclose __P((struct kbd_softc *));
    103   1.1       gwr 
    104  1.31   gehenna extern struct cfdriver kbd_cd;
    105   1.1       gwr 
    106  1.31   gehenna dev_type_open(kbdopen);
    107  1.31   gehenna dev_type_close(kbdclose);
    108  1.31   gehenna dev_type_read(kbdread);
    109  1.31   gehenna dev_type_ioctl(kbdioctl);
    110  1.31   gehenna dev_type_poll(kbdpoll);
    111  1.31   gehenna 
    112  1.31   gehenna const struct cdevsw kbd_cdevsw = {
    113  1.31   gehenna 	kbdopen, kbdclose, kbdread, nowrite, kbdioctl,
    114  1.31   gehenna 	nostop, notty, kbdpoll, nommap,
    115  1.31   gehenna };
    116   1.1       gwr 
    117   1.1       gwr /****************************************************************
    118   1.1       gwr  *  Entry points for /dev/kbd
    119   1.1       gwr  *  (open,close,read,write,...)
    120   1.1       gwr  ****************************************************************/
    121   1.1       gwr 
    122   1.1       gwr /*
    123   1.1       gwr  * Open:
    124   1.1       gwr  * Check exclusion, open actual device (_iopen),
    125   1.1       gwr  * setup event channel, clear ASCII repeat stuff.
    126   1.1       gwr  */
    127   1.1       gwr int
    128   1.1       gwr kbdopen(dev, flags, mode, p)
    129   1.1       gwr 	dev_t dev;
    130   1.1       gwr 	int flags, mode;
    131   1.1       gwr 	struct proc *p;
    132   1.1       gwr {
    133   1.1       gwr 	struct kbd_softc *k;
    134  1.13       gwr 	int error, unit;
    135   1.1       gwr 
    136   1.1       gwr 	unit = minor(dev);
    137   1.5   thorpej 	if (unit >= kbd_cd.cd_ndevs)
    138   1.1       gwr 		return (ENXIO);
    139   1.5   thorpej 	k = kbd_cd.cd_devs[unit];
    140   1.1       gwr 	if (k == NULL)
    141   1.1       gwr 		return (ENXIO);
    142   1.1       gwr 
    143   1.1       gwr 	/* Exclusive open required for /dev/kbd */
    144   1.1       gwr 	if (k->k_events.ev_io)
    145   1.1       gwr 		return (EBUSY);
    146   1.1       gwr 	k->k_events.ev_io = p;
    147   1.1       gwr 
    148  1.24        pk 	if ((error = kbd_iopen(k)) != 0) {
    149   1.1       gwr 		k->k_events.ev_io = NULL;
    150   1.1       gwr 		return (error);
    151   1.1       gwr 	}
    152   1.1       gwr 	ev_init(&k->k_events);
    153  1.27       eeh 	k->k_evmode = 0;	/* XXX: OK? */
    154   1.1       gwr 
    155   1.1       gwr 	if (k->k_repeating) {
    156   1.1       gwr 		k->k_repeating = 0;
    157  1.25   thorpej 		callout_stop(&k->k_repeat_ch);
    158   1.1       gwr 	}
    159   1.1       gwr 
    160   1.1       gwr 	return (0);
    161   1.1       gwr }
    162   1.1       gwr 
    163   1.1       gwr /*
    164   1.1       gwr  * Close:
    165   1.1       gwr  * Turn off event mode, dump the queue, and close the keyboard
    166   1.1       gwr  * unless it is supplying console input.
    167   1.1       gwr  */
    168   1.1       gwr int
    169   1.1       gwr kbdclose(dev, flags, mode, p)
    170   1.1       gwr 	dev_t dev;
    171   1.1       gwr 	int flags, mode;
    172   1.1       gwr 	struct proc *p;
    173   1.1       gwr {
    174   1.1       gwr 	struct kbd_softc *k;
    175   1.1       gwr 
    176   1.5   thorpej 	k = kbd_cd.cd_devs[minor(dev)];
    177   1.1       gwr 	k->k_evmode = 0;
    178   1.1       gwr 	ev_fini(&k->k_events);
    179   1.1       gwr 	k->k_events.ev_io = NULL;
    180   1.1       gwr 	return (0);
    181   1.1       gwr }
    182   1.1       gwr 
    183   1.1       gwr int
    184   1.1       gwr kbdread(dev, uio, flags)
    185   1.1       gwr 	dev_t dev;
    186   1.1       gwr 	struct uio *uio;
    187   1.1       gwr 	int flags;
    188   1.1       gwr {
    189   1.1       gwr 	struct kbd_softc *k;
    190   1.1       gwr 
    191   1.5   thorpej 	k = kbd_cd.cd_devs[minor(dev)];
    192   1.1       gwr 	return (ev_read(&k->k_events, uio, flags));
    193   1.1       gwr }
    194   1.1       gwr 
    195   1.1       gwr int
    196   1.9       mrg kbdpoll(dev, events, p)
    197   1.1       gwr 	dev_t dev;
    198   1.9       mrg 	int events;
    199   1.1       gwr 	struct proc *p;
    200   1.1       gwr {
    201   1.1       gwr 	struct kbd_softc *k;
    202   1.1       gwr 
    203   1.5   thorpej 	k = kbd_cd.cd_devs[minor(dev)];
    204   1.9       mrg 	return (ev_poll(&k->k_events, events, p));
    205   1.1       gwr }
    206   1.1       gwr 
    207   1.1       gwr 
    208   1.1       gwr static int kbd_iockeymap __P((struct kbd_state *ks,
    209   1.1       gwr 	u_long cmd, struct kiockeymap *kio));
    210   1.1       gwr 
    211  1.18       gwr static int kbd_iocsled(struct kbd_softc *k, char *data);
    212   1.7       gwr 
    213   1.7       gwr #ifdef	KIOCGETKEY
    214   1.7       gwr static int kbd_oldkeymap __P((struct kbd_state *ks,
    215   1.7       gwr 	u_long cmd, struct okiockey *okio));
    216   1.7       gwr #endif
    217   1.7       gwr 
    218   1.1       gwr int
    219   1.1       gwr kbdioctl(dev, cmd, data, flag, p)
    220   1.1       gwr 	dev_t dev;
    221   1.1       gwr 	u_long cmd;
    222  1.23        pk 	caddr_t data;
    223   1.1       gwr 	int flag;
    224   1.1       gwr 	struct proc *p;
    225   1.1       gwr {
    226   1.1       gwr 	struct kbd_softc *k;
    227   1.1       gwr 	struct kbd_state *ks;
    228   1.1       gwr 	int error = 0;
    229   1.1       gwr 
    230   1.5   thorpej 	k = kbd_cd.cd_devs[minor(dev)];
    231   1.1       gwr 	ks = &k->k_state;
    232   1.1       gwr 
    233   1.1       gwr 	switch (cmd) {
    234   1.1       gwr 
    235   1.1       gwr 	case KIOCTRANS: 	/* Set translation mode */
    236   1.1       gwr 		/* We only support "raw" mode on /dev/kbd */
    237  1.16       gwr 		if (*(int *)data != TR_UNTRANS_EVENT)
    238   1.1       gwr 			error = EINVAL;
    239   1.1       gwr 		break;
    240   1.1       gwr 
    241   1.1       gwr 	case KIOCGTRANS:	/* Get translation mode */
    242   1.1       gwr 		/* We only support "raw" mode on /dev/kbd */
    243  1.16       gwr 		*(int *)data = TR_UNTRANS_EVENT;
    244   1.1       gwr 		break;
    245   1.1       gwr 
    246   1.1       gwr #ifdef	KIOCGETKEY
    247   1.1       gwr 	case KIOCGETKEY:	/* Get keymap entry (old format) */
    248   1.1       gwr 		error = kbd_oldkeymap(ks, cmd, (struct okiockey *)data);
    249   1.1       gwr 		break;
    250  1.28       mrg #endif	/* KIOCGETKEY */
    251   1.1       gwr 
    252   1.1       gwr 	case KIOCSKEY:  	/* Set keymap entry */
    253   1.1       gwr 		/* fallthrough */
    254   1.1       gwr 	case KIOCGKEY:  	/* Get keymap entry */
    255   1.1       gwr 		error = kbd_iockeymap(ks, cmd, (struct kiockeymap *)data);
    256   1.1       gwr 		break;
    257   1.1       gwr 
    258   1.1       gwr 	case KIOCCMD:	/* Send a command to the keyboard */
    259  1.16       gwr 		error = kbd_docmd(*(int *)data, 1);
    260   1.1       gwr 		break;
    261   1.1       gwr 
    262   1.1       gwr 	case KIOCTYPE:	/* Get keyboard type */
    263  1.16       gwr 		*(int *)data = ks->kbd_id;
    264   1.1       gwr 		break;
    265   1.1       gwr 
    266   1.1       gwr 	case KIOCSDIRECT:	/* where to send input */
    267  1.16       gwr 		k->k_evmode = *(int *)data;
    268   1.1       gwr 		break;
    269   1.1       gwr 
    270   1.1       gwr 	case KIOCLAYOUT:	/* Get keyboard layout */
    271  1.16       gwr 		*(int *)data = ks->kbd_layout;
    272   1.1       gwr 		break;
    273   1.1       gwr 
    274   1.1       gwr 	case KIOCSLED:
    275  1.18       gwr 		error = kbd_iocsled(k, (char *)data);
    276   1.1       gwr 		break;
    277   1.1       gwr 
    278   1.1       gwr 	case KIOCGLED:
    279   1.1       gwr 		*(char *)data = ks->kbd_leds;
    280   1.1       gwr 		break;
    281   1.1       gwr 
    282   1.1       gwr 	case FIONBIO:		/* we will remove this someday (soon???) */
    283   1.1       gwr 		break;
    284   1.1       gwr 
    285   1.1       gwr 	case FIOASYNC:
    286   1.1       gwr 		k->k_events.ev_async = *(int *)data != 0;
    287   1.1       gwr 		break;
    288   1.1       gwr 
    289   1.1       gwr 	case TIOCSPGRP:
    290  1.16       gwr 		if (*(int *)data != k->k_events.ev_io->p_pgid)
    291   1.1       gwr 			error = EPERM;
    292   1.1       gwr 		break;
    293   1.1       gwr 
    294  1.16       gwr 	default:
    295  1.16       gwr 		error = ENOTTY;
    296  1.16       gwr 		break;
    297   1.1       gwr 	}
    298   1.1       gwr 
    299   1.1       gwr 	return (error);
    300   1.1       gwr }
    301   1.1       gwr 
    302   1.1       gwr /****************************************************************
    303   1.1       gwr  * ioctl helpers
    304   1.1       gwr  ****************************************************************/
    305   1.1       gwr 
    306   1.1       gwr /*
    307   1.1       gwr  * Get/Set keymap entry
    308   1.1       gwr  */
    309   1.7       gwr static int
    310   1.1       gwr kbd_iockeymap(ks, cmd, kio)
    311   1.1       gwr 	struct kbd_state *ks;
    312   1.1       gwr 	u_long cmd;
    313   1.1       gwr 	struct kiockeymap *kio;
    314   1.1       gwr {
    315  1.13       gwr 	u_short *km;
    316   1.1       gwr 	u_int station;
    317   1.1       gwr 
    318   1.1       gwr 	switch (kio->kio_tablemask) {
    319   1.1       gwr 	case KIOC_NOMASK:
    320   1.1       gwr 		km = ks->kbd_k.k_normal;
    321   1.1       gwr 		break;
    322   1.1       gwr 	case KIOC_SHIFTMASK:
    323   1.1       gwr 		km = ks->kbd_k.k_shifted;
    324   1.1       gwr 		break;
    325   1.1       gwr 	case KIOC_CTRLMASK:
    326   1.1       gwr 		km = ks->kbd_k.k_control;
    327   1.1       gwr 		break;
    328   1.1       gwr 	case KIOC_UPMASK:
    329   1.1       gwr 		km = ks->kbd_k.k_release;
    330   1.1       gwr 		break;
    331   1.1       gwr 	default:
    332   1.1       gwr 		/* Silently ignore unsupported masks */
    333   1.1       gwr 		return (0);
    334   1.1       gwr 	}
    335   1.1       gwr 
    336   1.1       gwr 	/* Range-check the table position. */
    337   1.1       gwr 	station = kio->kio_station;
    338   1.1       gwr 	if (station >= KEYMAP_SIZE)
    339   1.1       gwr 		return (EINVAL);
    340   1.1       gwr 
    341   1.1       gwr 	switch (cmd) {
    342   1.1       gwr 
    343   1.1       gwr 	case KIOCGKEY:	/* Get keymap entry */
    344  1.13       gwr 		kio->kio_entry = km[station];
    345   1.1       gwr 		break;
    346   1.1       gwr 
    347   1.1       gwr 	case KIOCSKEY:	/* Set keymap entry */
    348  1.13       gwr 		km[station] = kio->kio_entry;
    349   1.1       gwr 		break;
    350   1.1       gwr 
    351   1.1       gwr 	default:
    352   1.1       gwr 		return(ENOTTY);
    353   1.1       gwr 	}
    354   1.1       gwr 	return (0);
    355   1.1       gwr }
    356   1.1       gwr 
    357   1.1       gwr #ifdef	KIOCGETKEY
    358   1.1       gwr /*
    359   1.1       gwr  * Get/Set keymap entry,
    360   1.1       gwr  * old format (compatibility)
    361   1.1       gwr  */
    362   1.1       gwr int
    363   1.1       gwr kbd_oldkeymap(ks, cmd, kio)
    364   1.1       gwr 	struct kbd_state *ks;
    365   1.1       gwr 	u_long cmd;
    366   1.1       gwr 	struct okiockey *kio;
    367   1.1       gwr {
    368   1.1       gwr 	int error = 0;
    369   1.1       gwr 
    370   1.1       gwr 	switch (cmd) {
    371   1.1       gwr 
    372   1.1       gwr 	case KIOCGETKEY:
    373   1.1       gwr 		if (kio->kio_station == 118) {
    374   1.1       gwr 			/*
    375   1.1       gwr 			 * This is X11 asking if a type 3 keyboard is
    376   1.1       gwr 			 * really a type 3 keyboard.  Say yes, it is,
    377   1.1       gwr 			 * by reporting key station 118 as a "hole".
    378   1.1       gwr 			 * Note old (SunOS 3.5) definition of HOLE!
    379   1.1       gwr 			 */
    380   1.1       gwr 			kio->kio_entry = 0xA2;
    381   1.1       gwr 			break;
    382   1.1       gwr 		}
    383   1.1       gwr 		/* fall through */
    384   1.1       gwr 
    385   1.1       gwr 	default:
    386   1.1       gwr 		error = ENOTTY;
    387   1.1       gwr 		break;
    388   1.1       gwr 	}
    389   1.1       gwr 
    390   1.1       gwr 	return (error);
    391   1.1       gwr }
    392   1.1       gwr #endif	/* KIOCGETKEY */
    393   1.1       gwr 
    394   1.7       gwr 
    395   1.7       gwr /*
    396   1.7       gwr  * keyboard command ioctl
    397   1.7       gwr  * ``unimplemented commands are ignored'' (blech)
    398  1.15       gwr  * This is also export to the fb driver.
    399   1.7       gwr  */
    400  1.15       gwr int
    401  1.15       gwr kbd_docmd(cmd, isuser)
    402  1.15       gwr 	int cmd;
    403  1.15       gwr 	int isuser;
    404  1.15       gwr {
    405   1.7       gwr 	struct kbd_softc *k;
    406  1.15       gwr 	struct kbd_state *ks;
    407  1.15       gwr 	int error, s;
    408  1.15       gwr 
    409  1.15       gwr 	error = 0;
    410  1.15       gwr 	k = kbd_cd.cd_devs[0];
    411  1.15       gwr 	ks = &k->k_state;
    412   1.7       gwr 
    413   1.7       gwr 	switch (cmd) {
    414   1.7       gwr 
    415   1.7       gwr 	case KBD_CMD_BELL:
    416   1.7       gwr 	case KBD_CMD_NOBELL:
    417   1.7       gwr 		/* Supported by type 2, 3, and 4 keyboards */
    418   1.7       gwr 		break;
    419   1.7       gwr 
    420   1.7       gwr 	case KBD_CMD_CLICK:
    421   1.7       gwr 	case KBD_CMD_NOCLICK:
    422   1.7       gwr 		/* Unsupported by type 2 keyboards */
    423   1.7       gwr 		if (ks->kbd_id <= KB_SUN2)
    424   1.7       gwr 			return (0);
    425   1.7       gwr 		ks->kbd_click = (cmd == KBD_CMD_CLICK);
    426   1.7       gwr 		break;
    427   1.7       gwr 
    428   1.7       gwr 	default:
    429   1.7       gwr 		return (0);
    430   1.7       gwr 	}
    431   1.7       gwr 
    432   1.7       gwr 	s = spltty();
    433   1.7       gwr 
    434  1.15       gwr 	if (isuser)
    435  1.15       gwr 		error = kbd_drain_tx(k);
    436  1.15       gwr 
    437   1.7       gwr 	if (error == 0) {
    438   1.7       gwr 		kbd_output(k, cmd);
    439   1.7       gwr 		kbd_start_tx(k);
    440   1.7       gwr 	}
    441   1.7       gwr 
    442   1.7       gwr 	splx(s);
    443   1.7       gwr 
    444   1.7       gwr 	return (error);
    445   1.7       gwr }
    446   1.7       gwr 
    447   1.7       gwr /*
    448   1.7       gwr  * Set LEDs ioctl.
    449   1.7       gwr  */
    450   1.7       gwr static int
    451   1.7       gwr kbd_iocsled(k, data)
    452   1.7       gwr 	struct kbd_softc *k;
    453  1.18       gwr 	char *data;
    454   1.7       gwr {
    455   1.7       gwr 	int leds, error, s;
    456   1.7       gwr 
    457   1.7       gwr 	leds = *data;
    458   1.7       gwr 
    459   1.7       gwr 	s = spltty();
    460   1.7       gwr 	error = kbd_drain_tx(k);
    461   1.7       gwr 	if (error == 0) {
    462   1.7       gwr 		kbd_set_leds(k, leds);
    463   1.7       gwr 	}
    464   1.7       gwr 	splx(s);
    465   1.7       gwr 
    466   1.7       gwr 	return (error);
    467   1.7       gwr }
    468   1.7       gwr 
    469   1.7       gwr 
    470   1.1       gwr /****************************************************************
    471   1.1       gwr  * middle layers:
    472   1.1       gwr  *  - keysym to ASCII sequence
    473   1.1       gwr  *  - raw key codes to keysym
    474   1.1       gwr  ****************************************************************/
    475   1.1       gwr 
    476  1.13       gwr static void kbd_input_string __P((struct kbd_softc *, char *));
    477  1.13       gwr static void kbd_input_funckey __P((struct kbd_softc *, int));
    478  1.17       gwr static int  kbd_input_keysym __P((struct kbd_softc *, int));
    479   1.1       gwr 
    480   1.1       gwr /*
    481   1.1       gwr  * Initialization done by either kdcninit or kbd_iopen
    482   1.1       gwr  */
    483   1.1       gwr void
    484   1.1       gwr kbd_xlate_init(ks)
    485   1.1       gwr 	struct kbd_state *ks;
    486   1.1       gwr {
    487   1.1       gwr 	struct keyboard *ktbls;
    488   1.1       gwr 	int id;
    489   1.1       gwr 
    490   1.1       gwr 	id = ks->kbd_id;
    491   1.1       gwr 	if (id < KBD_MIN_TYPE)
    492   1.1       gwr 		id = KBD_MIN_TYPE;
    493   1.1       gwr 	if (id > kbd_max_type)
    494   1.1       gwr 		id = kbd_max_type;
    495   1.1       gwr 	ktbls = keyboards[id];
    496   1.1       gwr 
    497   1.1       gwr 	ks->kbd_k = *ktbls; 	/* struct assignment */
    498   1.1       gwr 	ks->kbd_modbits = 0;
    499   1.1       gwr }
    500   1.1       gwr 
    501   1.1       gwr /*
    502   1.1       gwr  * Turn keyboard up/down codes into a KEYSYM.
    503   1.1       gwr  * Note that the "kd" driver uses this too!
    504   1.1       gwr  */
    505   1.1       gwr int
    506   1.1       gwr kbd_code_to_keysym(ks, c)
    507  1.23        pk 	struct kbd_state *ks;
    508  1.23        pk 	int c;
    509   1.1       gwr {
    510  1.13       gwr 	u_short *km;
    511   1.1       gwr 	int keysym;
    512   1.1       gwr 
    513   1.1       gwr 	/*
    514   1.1       gwr 	 * Get keymap pointer.  One of these:
    515   1.1       gwr 	 * release, control, shifted, normal, ...
    516   1.1       gwr 	 */
    517   1.1       gwr 	if (KEY_UP(c))
    518   1.1       gwr 		km = ks->kbd_k.k_release;
    519   1.4       gwr 	else if (ks->kbd_modbits & KBMOD_CTRL_MASK)
    520   1.4       gwr 		km = ks->kbd_k.k_control;
    521   1.4       gwr 	else if (ks->kbd_modbits & KBMOD_SHIFT_MASK)
    522   1.4       gwr 		km = ks->kbd_k.k_shifted;
    523   1.4       gwr 	else
    524   1.4       gwr 		km = ks->kbd_k.k_normal;
    525   1.4       gwr 
    526   1.1       gwr 	if (km == NULL) {
    527   1.1       gwr 		/*
    528   1.1       gwr 		 * Do not know how to translate yet.
    529   1.1       gwr 		 * We will find out when a RESET comes along.
    530   1.1       gwr 		 */
    531   1.4       gwr 		return (KEYSYM_NOP);
    532   1.4       gwr 	}
    533  1.13       gwr 	keysym = km[KEY_CODE(c)];
    534   1.4       gwr 
    535   1.4       gwr 	/*
    536   1.4       gwr 	 * Post-processing for Caps-lock
    537   1.4       gwr 	 */
    538   1.4       gwr 	if ((ks->kbd_modbits & (1 << KBMOD_CAPSLOCK)) &&
    539   1.4       gwr 		(KEYSYM_CLASS(keysym) == KEYSYM_ASCII) )
    540   1.4       gwr 	{
    541   1.4       gwr 		if (('a' <= keysym) && (keysym <= 'z'))
    542   1.4       gwr 			keysym -= ('a' - 'A');
    543   1.4       gwr 	}
    544   1.4       gwr 
    545   1.4       gwr 	/*
    546  1.17       gwr 	 * Post-processing for Num-lock.  All "function"
    547  1.17       gwr 	 * keysyms get indirected through another table.
    548  1.17       gwr 	 * (XXX: Only if numlock on.  Want off also!)
    549   1.4       gwr 	 */
    550   1.4       gwr 	if ((ks->kbd_modbits & (1 << KBMOD_NUMLOCK)) &&
    551   1.4       gwr 		(KEYSYM_CLASS(keysym) == KEYSYM_FUNC) )
    552   1.4       gwr 	{
    553   1.4       gwr 		keysym = kbd_numlock_map[keysym & 0x3F];
    554   1.4       gwr 	}
    555   1.1       gwr 
    556   1.1       gwr 	return (keysym);
    557   1.1       gwr }
    558   1.1       gwr 
    559   1.1       gwr void
    560   1.1       gwr kbd_input_string(k, str)
    561   1.1       gwr 	struct kbd_softc *k;
    562   1.1       gwr 	char *str;
    563   1.1       gwr {
    564  1.22       mrg 
    565   1.1       gwr 	while (*str) {
    566  1.23        pk 		(*k->k_cc->cc_upstream)(*str);
    567   1.1       gwr 		str++;
    568   1.1       gwr 	}
    569   1.1       gwr }
    570   1.1       gwr 
    571   1.1       gwr void
    572   1.1       gwr kbd_input_funckey(k, keysym)
    573   1.1       gwr 	struct kbd_softc *k;
    574  1.23        pk 	int keysym;
    575   1.1       gwr {
    576  1.23        pk 	int n;
    577   1.1       gwr 	char str[12];
    578   1.1       gwr 
    579   1.1       gwr 	/*
    580   1.1       gwr 	 * Format the F-key sequence and send as a string.
    581   1.1       gwr 	 * XXX: Ugly compatibility mappings.
    582   1.1       gwr 	 */
    583   1.1       gwr 	n = 0xC0 + (keysym & 0x3F);
    584  1.11  christos 	sprintf(str, "\033[%dz", n);
    585   1.1       gwr 	kbd_input_string(k, str);
    586   1.1       gwr }
    587   1.1       gwr 
    588   1.1       gwr /*
    589   1.1       gwr  * This is called by kbd_input_raw() or by kb_repeat()
    590   1.7       gwr  * to deliver ASCII input.  Called at spltty().
    591  1.17       gwr  *
    592  1.17       gwr  * Return zero on success, else the keysym that we
    593  1.17       gwr  * could not handle (so the caller may complain).
    594   1.1       gwr  */
    595  1.17       gwr int
    596   1.1       gwr kbd_input_keysym(k, keysym)
    597   1.1       gwr 	struct kbd_softc *k;
    598  1.23        pk 	int keysym;
    599   1.1       gwr {
    600   1.1       gwr 	struct kbd_state *ks = &k->k_state;
    601  1.23        pk 	int data;
    602  1.30        pk 
    603  1.30        pk 	/* Check if a recipient has been configured */
    604  1.30        pk 	if (k->k_cc == NULL)
    605  1.30        pk 		return (0);
    606   1.1       gwr 
    607   1.4       gwr 	switch (KEYSYM_CLASS(keysym)) {
    608   1.1       gwr 
    609   1.1       gwr 	case KEYSYM_ASCII:
    610   1.1       gwr 		data = KEYSYM_DATA(keysym);
    611   1.1       gwr 		if (ks->kbd_modbits & KBMOD_META_MASK)
    612   1.1       gwr 			data |= 0x80;
    613  1.23        pk 		(*k->k_cc->cc_upstream)(data);
    614   1.1       gwr 		break;
    615   1.1       gwr 
    616   1.1       gwr 	case KEYSYM_STRING:
    617   1.1       gwr 		data = keysym & 0xF;
    618   1.1       gwr 		kbd_input_string(k, kbd_stringtab[data]);
    619   1.1       gwr 		break;
    620   1.1       gwr 
    621   1.1       gwr 	case KEYSYM_FUNC:
    622   1.1       gwr 		kbd_input_funckey(k, keysym);
    623   1.1       gwr 		break;
    624   1.1       gwr 
    625   1.1       gwr 	case KEYSYM_CLRMOD:
    626   1.1       gwr 		data = 1 << (keysym & 0x1F);
    627   1.1       gwr 		ks->kbd_modbits &= ~data;
    628   1.1       gwr 		break;
    629   1.1       gwr 
    630   1.1       gwr 	case KEYSYM_SETMOD:
    631   1.1       gwr 		data = 1 << (keysym & 0x1F);
    632   1.1       gwr 		ks->kbd_modbits |= data;
    633   1.1       gwr 		break;
    634   1.1       gwr 
    635   1.1       gwr 	case KEYSYM_INVMOD:
    636   1.1       gwr 		data = 1 << (keysym & 0x1F);
    637   1.1       gwr 		ks->kbd_modbits ^= data;
    638   1.4       gwr 		kbd_update_leds(k);
    639   1.1       gwr 		break;
    640   1.1       gwr 
    641   1.1       gwr 	case KEYSYM_ALL_UP:
    642   1.1       gwr 		ks->kbd_modbits &= ~0xFFFF;
    643   1.1       gwr 		break;
    644   1.1       gwr 
    645   1.1       gwr 	case KEYSYM_SPECIAL:
    646   1.1       gwr 		if (keysym == KEYSYM_NOP)
    647   1.1       gwr 			break;
    648   1.1       gwr 		/* fall through */
    649   1.1       gwr 	default:
    650  1.17       gwr 		/* We could not handle it. */
    651  1.17       gwr 		return (keysym);
    652   1.1       gwr 	}
    653  1.17       gwr 	return (0);
    654   1.1       gwr }
    655   1.1       gwr 
    656   1.1       gwr /*
    657   1.1       gwr  * This is the autorepeat timeout function.
    658   1.7       gwr  * Called at splsoftclock().
    659   1.1       gwr  */
    660  1.13       gwr static void
    661  1.22       mrg kbd_repeat(arg)
    662  1.22       mrg 	void *arg;
    663   1.1       gwr {
    664   1.1       gwr 	struct kbd_softc *k = (struct kbd_softc *)arg;
    665   1.7       gwr 	int s = spltty();
    666   1.1       gwr 
    667   1.1       gwr 	if (k->k_repeating && k->k_repeatsym >= 0) {
    668  1.17       gwr 		(void)kbd_input_keysym(k, k->k_repeatsym);
    669  1.25   thorpej 		callout_reset(&k->k_repeat_ch, k->k_repeat_step,
    670  1.25   thorpej 		    kbd_repeat, k);
    671   1.1       gwr 	}
    672   1.7       gwr 	splx(s);
    673   1.1       gwr }
    674   1.1       gwr 
    675   1.1       gwr /*
    676   1.1       gwr  * Called by our kbd_softint() routine on input,
    677   1.1       gwr  * which passes the raw hardware scan codes.
    678   1.7       gwr  * Called at spltty()
    679   1.1       gwr  */
    680   1.1       gwr void
    681   1.1       gwr kbd_input_raw(k, c)
    682   1.1       gwr 	struct kbd_softc *k;
    683  1.23        pk 	int c;
    684   1.1       gwr {
    685   1.1       gwr 	struct kbd_state *ks = &k->k_state;
    686   1.1       gwr 	struct firm_event *fe;
    687   1.1       gwr 	int put, keysym;
    688   1.1       gwr 
    689   1.1       gwr 	/* XXX - Input errors already handled. */
    690   1.1       gwr 
    691   1.1       gwr 	/* Are we expecting special input? */
    692   1.1       gwr 	if (ks->kbd_expect) {
    693   1.1       gwr 		if (ks->kbd_expect & KBD_EXPECT_IDCODE) {
    694   1.1       gwr 			/* We read a KBD_RESET last time. */
    695   1.1       gwr 			ks->kbd_id = c;
    696   1.1       gwr 			kbd_was_reset(k);
    697   1.1       gwr 		}
    698   1.1       gwr 		if (ks->kbd_expect & KBD_EXPECT_LAYOUT) {
    699   1.1       gwr 			/* We read a KBD_LAYOUT last time. */
    700   1.1       gwr 			ks->kbd_layout = c;
    701   1.1       gwr 			kbd_new_layout(k);
    702   1.1       gwr 		}
    703   1.1       gwr 		ks->kbd_expect = 0;
    704   1.1       gwr 		return;
    705   1.1       gwr 	}
    706   1.1       gwr 
    707   1.1       gwr 	/* Is this one of the "special" input codes? */
    708   1.1       gwr 	if (KBD_SPECIAL(c)) {
    709   1.1       gwr 		switch (c) {
    710   1.1       gwr 		case KBD_RESET:
    711   1.1       gwr 			ks->kbd_expect |= KBD_EXPECT_IDCODE;
    712   1.1       gwr 			/* Fake an "all-up" to resync. translation. */
    713   1.1       gwr 			c = KBD_IDLE;
    714   1.1       gwr 			break;
    715   1.1       gwr 
    716   1.1       gwr 		case KBD_LAYOUT:
    717   1.1       gwr 			ks->kbd_expect |= KBD_EXPECT_LAYOUT;
    718   1.1       gwr 			return;
    719   1.1       gwr 
    720   1.1       gwr 		case KBD_ERROR:
    721   1.1       gwr 			log(LOG_WARNING, "%s: received error indicator\n",
    722   1.1       gwr 				k->k_dev.dv_xname);
    723   1.1       gwr 			return;
    724   1.1       gwr 
    725   1.1       gwr 		case KBD_IDLE:
    726   1.1       gwr 			/* Let this go to the translator. */
    727   1.1       gwr 			break;
    728   1.1       gwr 		}
    729   1.1       gwr 	}
    730   1.1       gwr 
    731   1.1       gwr 	/*
    732   1.1       gwr 	 * If /dev/kbd is not connected in event mode,
    733   1.1       gwr 	 * translate and send upstream (to console).
    734   1.1       gwr 	 */
    735  1.27       eeh 	if (!k->k_evmode) {
    736   1.1       gwr 
    737   1.1       gwr 		/* Any input stops auto-repeat (i.e. key release). */
    738   1.1       gwr 		if (k->k_repeating) {
    739   1.1       gwr 			k->k_repeating = 0;
    740  1.25   thorpej 			callout_stop(&k->k_repeat_ch);
    741   1.1       gwr 		}
    742   1.1       gwr 
    743   1.1       gwr 		/* Translate this code to a keysym */
    744   1.1       gwr 		keysym = kbd_code_to_keysym(ks, c);
    745   1.1       gwr 
    746   1.1       gwr 		/* Pass up to the next layer. */
    747  1.17       gwr 		if (kbd_input_keysym(k, keysym)) {
    748  1.17       gwr 			log(LOG_WARNING, "%s: code=0x%x with mod=0x%x"
    749  1.17       gwr 				" produced unexpected keysym 0x%x\n",
    750  1.17       gwr 				k->k_dev.dv_xname, c,
    751  1.17       gwr 				ks->kbd_modbits, keysym);
    752  1.17       gwr 			/* No point in auto-repeat here. */
    753  1.17       gwr 			return;
    754  1.17       gwr 		}
    755   1.1       gwr 
    756   1.1       gwr 		/* Does this symbol get auto-repeat? */
    757   1.1       gwr 		if (KEYSYM_NOREPEAT(keysym))
    758   1.1       gwr 			return;
    759   1.1       gwr 
    760   1.1       gwr 		/* Setup for auto-repeat after initial delay. */
    761   1.1       gwr 		k->k_repeating = 1;
    762   1.1       gwr 		k->k_repeatsym = keysym;
    763  1.26   hannken 		callout_reset(&k->k_repeat_ch, k->k_repeat_start,
    764  1.25   thorpej 		    kbd_repeat, k);
    765   1.1       gwr 		return;
    766   1.1       gwr 	}
    767   1.1       gwr 
    768   1.1       gwr 	/*
    769   1.1       gwr 	 * IDLEs confuse the MIT X11R4 server badly, so we must drop them.
    770   1.1       gwr 	 * This is bad as it means the server will not automatically resync
    771   1.1       gwr 	 * on all-up IDLEs, but I did not drop them before, and the server
    772   1.1       gwr 	 * goes crazy when it comes time to blank the screen....
    773   1.1       gwr 	 */
    774   1.1       gwr 	if (c == KBD_IDLE)
    775   1.1       gwr 		return;
    776   1.1       gwr 
    777   1.1       gwr 	/*
    778   1.1       gwr 	 * Keyboard is generating events.  Turn this keystroke into an
    779   1.1       gwr 	 * event and put it in the queue.  If the queue is full, the
    780   1.1       gwr 	 * keystroke is lost (sorry!).
    781   1.1       gwr 	 */
    782   1.1       gwr 	put = k->k_events.ev_put;
    783   1.1       gwr 	fe = &k->k_events.ev_q[put];
    784   1.1       gwr 	put = (put + 1) % EV_QSIZE;
    785   1.1       gwr 	if (put == k->k_events.ev_get) {
    786   1.1       gwr 		log(LOG_WARNING, "%s: event queue overflow\n",
    787   1.1       gwr 			k->k_dev.dv_xname); /* ??? */
    788   1.1       gwr 		return;
    789   1.1       gwr 	}
    790   1.1       gwr 	fe->id = KEY_CODE(c);
    791   1.1       gwr 	fe->value = KEY_UP(c) ? VKEY_UP : VKEY_DOWN;
    792   1.1       gwr 	fe->time = time;
    793   1.1       gwr 	k->k_events.ev_put = put;
    794   1.1       gwr 	EV_WAKEUP(&k->k_events);
    795   1.1       gwr }
    796   1.1       gwr 
    797  1.24        pk /****************************************************************/
    798  1.24        pk 
    799  1.24        pk /*
    800  1.24        pk  * Open/close routines called upon opening /dev/console
    801  1.24        pk  * if we serve console input.
    802  1.24        pk  */
    803  1.24        pk int
    804  1.24        pk kbd_cc_open(cc)
    805  1.24        pk 	struct cons_channel *cc;
    806  1.24        pk {
    807  1.24        pk 	struct kbd_softc *k = (struct kbd_softc *)cc->cc_dev;
    808  1.24        pk 	return (kbd_iopen(k));
    809  1.24        pk }
    810  1.24        pk 
    811  1.24        pk int
    812  1.24        pk kbd_cc_close(cc)
    813  1.24        pk 	struct cons_channel *cc;
    814  1.24        pk {
    815  1.24        pk 	struct kbd_softc *k = (struct kbd_softc *)cc->cc_dev;
    816  1.24        pk 	return (kbd_iclose(k));
    817  1.24        pk }
    818   1.1       gwr 
    819   1.1       gwr /*
    820   1.1       gwr  * Initialization to be done at first open.
    821  1.24        pk  * This is called from kbdopen() or kd_cc_open()
    822   1.7       gwr  * Called with user context.
    823   1.1       gwr  */
    824   1.1       gwr int
    825  1.24        pk kbd_iopen(k)
    826  1.24        pk 	struct kbd_softc *k;
    827   1.1       gwr {
    828   1.1       gwr 	struct kbd_state *ks;
    829   1.1       gwr 	int error, s;
    830   1.1       gwr 
    831   1.1       gwr 	if (k == NULL)
    832   1.1       gwr 		return (ENXIO);
    833  1.23        pk 
    834   1.1       gwr 	ks = &k->k_state;
    835   1.1       gwr 
    836   1.1       gwr 	/* Tolerate extra calls. */
    837   1.1       gwr 	if (k->k_isopen)
    838  1.23        pk 		return (0);
    839   1.1       gwr 
    840  1.27       eeh 	/* Open internal device */
    841  1.27       eeh 	if (k->k_deviopen)
    842  1.27       eeh 		(*k->k_deviopen)((struct device *)k, FREAD|FWRITE);
    843  1.27       eeh 
    844   1.1       gwr 	s = spltty();
    845   1.1       gwr 
    846   1.1       gwr 	/* Reset the keyboard and find out its type. */
    847   1.1       gwr 	kbd_output(k, KBD_CMD_RESET);
    848   1.1       gwr 	kbd_start_tx(k);
    849   1.1       gwr 	kbd_drain_tx(k);
    850   1.1       gwr 	/* The wakeup for this is in kbd_was_reset(). */
    851   1.1       gwr 	error = tsleep((caddr_t)&ks->kbd_id,
    852   1.1       gwr 				   PZERO | PCATCH, devopn, hz);
    853   1.1       gwr 	if (error == EWOULDBLOCK) { 	/* no response */
    854   1.1       gwr 		error = 0;
    855   1.1       gwr 		log(LOG_ERR, "%s: reset failed\n",
    856   1.1       gwr 			k->k_dev.dv_xname);
    857   1.1       gwr 		/*
    858   1.1       gwr 		 * Allow the open anyway (to keep getty happy)
    859   1.1       gwr 		 * but assume the "least common denominator".
    860   1.1       gwr 		 */
    861   1.1       gwr 		ks->kbd_id = KB_SUN2;
    862   1.1       gwr 	}
    863   1.1       gwr 
    864  1.17       gwr 	/* Initialize the table pointers for this type. */
    865  1.17       gwr 	kbd_xlate_init(ks);
    866  1.17       gwr 
    867   1.1       gwr 	/* Earlier than type 4 does not know "layout". */
    868   1.1       gwr 	if (ks->kbd_id < KB_SUN4)
    869   1.1       gwr 		goto out;
    870   1.1       gwr 
    871   1.1       gwr 	/* Ask for the layout. */
    872   1.1       gwr 	kbd_output(k, KBD_CMD_GETLAYOUT);
    873   1.1       gwr 	kbd_start_tx(k);
    874   1.1       gwr 	kbd_drain_tx(k);
    875   1.1       gwr 	/* The wakeup for this is in kbd_new_layout(). */
    876   1.1       gwr 	error = tsleep((caddr_t)&ks->kbd_layout,
    877   1.1       gwr 				   PZERO | PCATCH, devopn, hz);
    878   1.1       gwr 	if (error == EWOULDBLOCK) { 	/* no response */
    879   1.1       gwr 		error = 0;
    880   1.1       gwr 		log(LOG_ERR, "%s: no response to get_layout\n",
    881   1.1       gwr 			k->k_dev.dv_xname);
    882   1.1       gwr 		ks->kbd_layout = 0;
    883   1.1       gwr 	}
    884   1.1       gwr 
    885   1.1       gwr out:
    886   1.1       gwr 	splx(s);
    887   1.1       gwr 
    888   1.1       gwr 	if (error == 0)
    889   1.1       gwr 		k->k_isopen = 1;
    890   1.1       gwr 
    891  1.23        pk 	return (error);
    892  1.23        pk }
    893  1.23        pk 
    894  1.23        pk int
    895  1.24        pk kbd_iclose(k)
    896  1.24        pk 	struct kbd_softc *k;
    897  1.23        pk {
    898  1.23        pk 	/* For now: */ return (0);
    899   1.1       gwr }
    900   1.1       gwr 
    901   1.7       gwr /*
    902   1.7       gwr  * Called by kbd_input_raw, at spltty()
    903   1.7       gwr  */
    904  1.13       gwr static void
    905   1.1       gwr kbd_was_reset(k)
    906   1.1       gwr 	struct kbd_softc *k;
    907   1.1       gwr {
    908   1.1       gwr 	struct kbd_state *ks = &k->k_state;
    909   1.1       gwr 
    910   1.1       gwr 	/*
    911   1.1       gwr 	 * On first identification, wake up anyone waiting for type
    912   1.1       gwr 	 * and set up the table pointers.
    913   1.1       gwr 	 */
    914   1.1       gwr 	wakeup((caddr_t)&ks->kbd_id);
    915   1.1       gwr 
    916   1.1       gwr 	/* Restore keyclick, if necessary */
    917   1.1       gwr 	switch (ks->kbd_id) {
    918   1.1       gwr 
    919   1.1       gwr 	case KB_SUN2:
    920   1.1       gwr 		/* Type 2 keyboards don't support keyclick */
    921   1.1       gwr 		break;
    922   1.1       gwr 
    923   1.1       gwr 	case KB_SUN3:
    924   1.1       gwr 		/* Type 3 keyboards come up with keyclick on */
    925   1.7       gwr 		if (!ks->kbd_click) {
    926   1.7       gwr 			/* turn off the click */
    927   1.7       gwr 			kbd_output(k, KBD_CMD_NOCLICK);
    928   1.7       gwr 			kbd_start_tx(k);
    929   1.7       gwr 		}
    930   1.1       gwr 		break;
    931   1.1       gwr 
    932   1.1       gwr 	case KB_SUN4:
    933   1.1       gwr 		/* Type 4 keyboards come up with keyclick off */
    934   1.7       gwr 		if (ks->kbd_click) {
    935   1.7       gwr 			/* turn on the click */
    936   1.7       gwr 			kbd_output(k, KBD_CMD_CLICK);
    937   1.7       gwr 			kbd_start_tx(k);
    938   1.7       gwr 		}
    939   1.1       gwr 		break;
    940   1.1       gwr 	}
    941   1.1       gwr 
    942   1.1       gwr 	/* LEDs are off after reset. */
    943   1.1       gwr 	ks->kbd_leds = 0;
    944   1.1       gwr }
    945   1.1       gwr 
    946   1.7       gwr /*
    947   1.7       gwr  * Called by kbd_input_raw, at spltty()
    948   1.7       gwr  */
    949  1.13       gwr static void
    950   1.1       gwr kbd_new_layout(k)
    951   1.1       gwr 	struct kbd_softc *k;
    952   1.1       gwr {
    953   1.1       gwr 	struct kbd_state *ks = &k->k_state;
    954   1.1       gwr 
    955   1.1       gwr 	/*
    956   1.1       gwr 	 * On first identification, wake up anyone waiting for type
    957   1.1       gwr 	 * and set up the table pointers.
    958   1.1       gwr 	 */
    959   1.1       gwr 	wakeup((caddr_t)&ks->kbd_layout);
    960   1.1       gwr 
    961   1.1       gwr 	/* XXX: switch decoding tables? */
    962   1.1       gwr }
    963   1.1       gwr 
    964   1.1       gwr 
    965   1.1       gwr /*
    966   1.1       gwr  * Wait for output to finish.
    967   1.7       gwr  * Called at spltty().  Has user context.
    968   1.1       gwr  */
    969  1.13       gwr static int
    970   1.1       gwr kbd_drain_tx(k)
    971   1.1       gwr 	struct kbd_softc *k;
    972   1.1       gwr {
    973   1.7       gwr 	int error;
    974   1.1       gwr 
    975   1.1       gwr 	error = 0;
    976   1.7       gwr 
    977  1.27       eeh 	while (k->k_txflags & K_TXBUSY && !error) {
    978   1.1       gwr 		k->k_txflags |= K_TXWANT;
    979   1.1       gwr 		error = tsleep((caddr_t)&k->k_txflags,
    980   1.1       gwr 					   PZERO | PCATCH, "kbdout", 0);
    981   1.1       gwr 	}
    982   1.7       gwr 
    983   1.1       gwr 	return (error);
    984   1.1       gwr }
    985   1.1       gwr 
    986   1.1       gwr /*
    987   1.7       gwr  * Enqueue some output for the keyboard
    988   1.7       gwr  * Called at spltty().
    989   1.1       gwr  */
    990  1.22       mrg void
    991   1.1       gwr kbd_output(k, c)
    992   1.1       gwr 	struct kbd_softc *k;
    993   1.1       gwr 	int c;	/* the data */
    994   1.1       gwr {
    995   1.7       gwr 	int put;
    996   1.1       gwr 
    997   1.1       gwr 	put = k->k_tbput;
    998   1.1       gwr 	k->k_tbuf[put] = (u_char)c;
    999   1.1       gwr 	put = (put + 1) & KBD_TX_RING_MASK;
   1000   1.1       gwr 
   1001   1.1       gwr 	/* Would overrun if increment makes (put==get). */
   1002   1.1       gwr 	if (put == k->k_tbget) {
   1003   1.1       gwr 		log(LOG_WARNING, "%s: output overrun\n",
   1004   1.1       gwr             k->k_dev.dv_xname);
   1005   1.1       gwr 	} else {
   1006   1.1       gwr 		/* OK, really increment. */
   1007   1.1       gwr 		k->k_tbput = put;
   1008   1.1       gwr 	}
   1009   1.1       gwr }
   1010   1.1       gwr 
   1011   1.7       gwr /*
   1012   1.7       gwr  * Start the sending data from the output queue
   1013   1.7       gwr  * Called at spltty().
   1014   1.7       gwr  */
   1015  1.22       mrg void
   1016   1.1       gwr kbd_start_tx(k)
   1017  1.22       mrg 	struct kbd_softc *k;
   1018   1.1       gwr {
   1019  1.22       mrg 	int get;
   1020   1.1       gwr 	u_char c;
   1021   1.1       gwr 
   1022   1.1       gwr 	if (k->k_txflags & K_TXBUSY)
   1023   1.7       gwr 		return;
   1024   1.1       gwr 
   1025   1.1       gwr 	/* Is there anything to send? */
   1026   1.1       gwr 	get = k->k_tbget;
   1027   1.1       gwr 	if (get == k->k_tbput) {
   1028   1.1       gwr 		/* Nothing to send.  Wake drain waiters. */
   1029   1.1       gwr 		if (k->k_txflags & K_TXWANT) {
   1030   1.1       gwr 			k->k_txflags &= ~K_TXWANT;
   1031   1.1       gwr 			wakeup((caddr_t)&k->k_txflags);
   1032   1.1       gwr 		}
   1033   1.7       gwr 		return;
   1034   1.1       gwr 	}
   1035   1.1       gwr 
   1036   1.1       gwr 	/* Have something to send. */
   1037   1.1       gwr 	c = k->k_tbuf[get];
   1038   1.1       gwr 	get = (get + 1) & KBD_TX_RING_MASK;
   1039   1.1       gwr 	k->k_tbget = get;
   1040   1.1       gwr 	k->k_txflags |= K_TXBUSY;
   1041   1.1       gwr 
   1042  1.22       mrg 	k->k_write_data(k, c);
   1043   1.1       gwr }
   1044   1.1       gwr 
   1045   1.7       gwr /*
   1046   1.7       gwr  * Called at spltty by:
   1047   1.7       gwr  * kbd_update_leds, kbd_iocsled
   1048   1.7       gwr  */
   1049  1.13       gwr static void
   1050   1.4       gwr kbd_set_leds(k, new_leds)
   1051   1.1       gwr 	struct kbd_softc *k;
   1052   1.4       gwr 	int new_leds;
   1053   1.1       gwr {
   1054   1.1       gwr 	struct kbd_state *ks = &k->k_state;
   1055   1.1       gwr 
   1056   1.1       gwr 	/* Don't send unless state changes. */
   1057   1.1       gwr 	if (ks->kbd_leds == new_leds)
   1058   1.7       gwr 		return;
   1059   1.7       gwr 
   1060   1.1       gwr 	ks->kbd_leds = new_leds;
   1061   1.1       gwr 
   1062   1.1       gwr 	/* Only type 4 and later has LEDs anyway. */
   1063  1.19   mycroft 	if (ks->kbd_id < KB_SUN4)
   1064   1.7       gwr 		return;
   1065   1.1       gwr 
   1066   1.1       gwr 	kbd_output(k, KBD_CMD_SETLED);
   1067   1.1       gwr 	kbd_output(k, new_leds);
   1068   1.1       gwr 	kbd_start_tx(k);
   1069   1.4       gwr }
   1070   1.4       gwr 
   1071   1.7       gwr /*
   1072   1.7       gwr  * Called at spltty by:
   1073   1.7       gwr  * kbd_input_keysym
   1074   1.7       gwr  */
   1075  1.13       gwr static void
   1076   1.4       gwr kbd_update_leds(k)
   1077   1.4       gwr     struct kbd_softc *k;
   1078   1.4       gwr {
   1079  1.17       gwr 	struct kbd_state *ks = &k->k_state;
   1080  1.23        pk 	char leds;
   1081   1.4       gwr 
   1082   1.4       gwr 	leds = ks->kbd_leds;
   1083   1.4       gwr 	leds &= ~(LED_CAPS_LOCK|LED_NUM_LOCK);
   1084   1.4       gwr 
   1085   1.4       gwr 	if (ks->kbd_modbits & (1 << KBMOD_CAPSLOCK))
   1086   1.4       gwr 		leds |= LED_CAPS_LOCK;
   1087   1.4       gwr 	if (ks->kbd_modbits & (1 << KBMOD_NUMLOCK))
   1088   1.4       gwr 		leds |= LED_NUM_LOCK;
   1089   1.4       gwr 
   1090   1.4       gwr 	kbd_set_leds(k, leds);
   1091   1.1       gwr }
   1092