Home | History | Annotate | Line # | Download | only in sun
kbdsun.c revision 1.3.10.1
      1  1.3.10.1  yamt /*	$NetBSD: kbdsun.c,v 1.3.10.1 2005/03/19 08:35:51 yamt Exp $	*/
      2       1.1   uwe /*	NetBSD: kbd.c,v 1.29 2001/11/13 06:54:32 lukem Exp	*/
      3       1.1   uwe 
      4       1.1   uwe /*
      5       1.1   uwe  * Copyright (c) 1992, 1993
      6       1.1   uwe  *	The Regents of the University of California.  All rights reserved.
      7       1.1   uwe  *
      8       1.1   uwe  * This software was developed by the Computer Systems Engineering group
      9       1.1   uwe  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
     10       1.1   uwe  * contributed to Berkeley.
     11       1.1   uwe  *
     12       1.1   uwe  * All advertising materials mentioning features or use of this software
     13       1.1   uwe  * must display the following acknowledgement:
     14       1.1   uwe  *	This product includes software developed by the University of
     15       1.1   uwe  *	California, Lawrence Berkeley Laboratory.
     16       1.1   uwe  *
     17       1.1   uwe  * Redistribution and use in source and binary forms, with or without
     18       1.1   uwe  * modification, are permitted provided that the following conditions
     19       1.1   uwe  * are met:
     20       1.1   uwe  * 1. Redistributions of source code must retain the above copyright
     21       1.1   uwe  *    notice, this list of conditions and the following disclaimer.
     22       1.1   uwe  * 2. Redistributions in binary form must reproduce the above copyright
     23       1.1   uwe  *    notice, this list of conditions and the following disclaimer in the
     24       1.1   uwe  *    documentation and/or other materials provided with the distribution.
     25       1.3   agc  * 3. Neither the name of the University nor the names of its contributors
     26       1.1   uwe  *    may be used to endorse or promote products derived from this software
     27       1.1   uwe  *    without specific prior written permission.
     28       1.1   uwe  *
     29       1.1   uwe  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     30       1.1   uwe  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     31       1.1   uwe  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     32       1.1   uwe  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     33       1.1   uwe  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     34       1.1   uwe  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     35       1.1   uwe  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     36       1.1   uwe  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     37       1.1   uwe  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     38       1.1   uwe  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     39       1.1   uwe  * SUCH DAMAGE.
     40       1.1   uwe  *
     41       1.1   uwe  *	@(#)kbd.c	8.2 (Berkeley) 10/30/93
     42       1.1   uwe  */
     43       1.1   uwe 
     44       1.1   uwe /*
     45       1.1   uwe  * /dev/kbd middle layer for sun keyboard off a serial line
     46       1.1   uwe  * This code is used by kbd_zs and sunkbd drivers (lower layer).
     47       1.1   uwe  */
     48       1.1   uwe 
     49       1.1   uwe #include <sys/cdefs.h>
     50  1.3.10.1  yamt __KERNEL_RCSID(0, "$NetBSD: kbdsun.c,v 1.3.10.1 2005/03/19 08:35:51 yamt Exp $");
     51       1.1   uwe 
     52       1.1   uwe #include <sys/param.h>
     53       1.1   uwe #include <sys/systm.h>
     54       1.1   uwe #include <sys/conf.h>
     55       1.1   uwe #include <sys/device.h>
     56       1.1   uwe #include <sys/ioctl.h>
     57       1.1   uwe #include <sys/kernel.h>
     58       1.1   uwe #include <sys/proc.h>
     59       1.1   uwe #include <sys/signal.h>
     60       1.1   uwe #include <sys/signalvar.h>
     61       1.1   uwe #include <sys/time.h>
     62       1.1   uwe #include <sys/syslog.h>
     63       1.1   uwe #include <sys/select.h>
     64       1.1   uwe #include <sys/poll.h>
     65       1.1   uwe #include <sys/file.h>
     66       1.1   uwe 
     67       1.2   uwe #include <dev/sun/kbd_reg.h>
     68       1.2   uwe #include <dev/sun/kbio.h>
     69       1.2   uwe #include <dev/sun/vuid_event.h>
     70       1.1   uwe #include <dev/sun/event_var.h>
     71       1.1   uwe #include <dev/sun/kbd_xlate.h>
     72       1.1   uwe 
     73       1.1   uwe #include <dev/sun/kbdvar.h>
     74       1.1   uwe #include <dev/sun/kbdsunvar.h>
     75       1.1   uwe 
     76       1.1   uwe 
     77       1.1   uwe /* callbacks for the upper /dev/kbd layer */
     78       1.1   uwe static int	kbd_sun_open(struct kbd_softc *);
     79       1.1   uwe static int	kbd_sun_close(struct kbd_softc *);
     80       1.1   uwe static int	kbd_sun_do_cmd(struct kbd_softc *, int, int);
     81       1.1   uwe static int	kbd_sun_set_leds(struct kbd_softc *, int, int);
     82       1.1   uwe 
     83       1.1   uwe static void	kbd_sun_set_leds1(struct kbd_softc *, int); /* aux */
     84       1.1   uwe 
     85       1.2   uwe const struct kbd_ops kbd_ops_sun = {
     86       1.1   uwe 	kbd_sun_open,
     87       1.1   uwe 	kbd_sun_close,
     88       1.1   uwe 	kbd_sun_do_cmd,
     89       1.1   uwe 	kbd_sun_set_leds
     90       1.1   uwe };
     91       1.1   uwe 
     92       1.1   uwe /* in user context, wait for keyboard output to finish */
     93       1.1   uwe static int 	kbd_sun_drain_tx(struct kbd_sun_softc *);
     94       1.1   uwe 
     95       1.1   uwe /* helper functions for kbd_sun_input */
     96       1.1   uwe static void	kbd_sun_was_reset(struct kbd_sun_softc *);
     97       1.1   uwe static void	kbd_sun_new_layout(struct kbd_sun_softc *);
     98       1.1   uwe 
     99       1.1   uwe 
    100       1.1   uwe /***********************************************************************
    101       1.1   uwe  *		      Callbacks for upper layer.
    102       1.1   uwe  */
    103       1.1   uwe 
    104       1.1   uwe /*
    105       1.1   uwe  * Initialization to be done at first open.
    106       1.1   uwe  * This is called from kbdopen() or kd_cc_open()
    107       1.1   uwe  * Called with user context.
    108       1.1   uwe  */
    109       1.1   uwe static int
    110       1.1   uwe kbd_sun_open(kbd)
    111       1.1   uwe 	struct kbd_softc *kbd;
    112       1.1   uwe {
    113       1.1   uwe 	struct kbd_sun_softc *k = (struct kbd_sun_softc *)kbd;
    114       1.1   uwe 	struct kbd_state *ks;
    115  1.3.10.1  yamt 	int error, ntries, s;
    116       1.1   uwe 
    117       1.1   uwe 	if (kbd == NULL)
    118       1.1   uwe 		return (ENXIO);
    119       1.1   uwe 
    120       1.1   uwe 	ks = &kbd->k_state;
    121       1.1   uwe 
    122       1.1   uwe 	/* tolerate extra calls. */
    123       1.1   uwe 	if (k->k_isopen)
    124       1.1   uwe 		return (0);
    125       1.1   uwe 
    126       1.1   uwe 	/* open internal device */
    127       1.1   uwe 	if (k->k_deviopen)
    128       1.1   uwe 		(*k->k_deviopen)((struct device *)k, FREAD|FWRITE);
    129       1.1   uwe 
    130       1.1   uwe 	s = spltty();
    131       1.1   uwe 
    132       1.1   uwe 	/* reset the keyboard and find out its type */
    133       1.1   uwe 	kbd_sun_output(k, KBD_CMD_RESET);
    134       1.1   uwe 	kbd_sun_start_tx(k);
    135       1.1   uwe 	kbd_sun_drain_tx(k);
    136       1.1   uwe 
    137  1.3.10.1  yamt 	/* the wakeup for this is in kbd_sun_was_reset(). */
    138  1.3.10.1  yamt 	for (ntries = 200; ntries; ntries--) {
    139  1.3.10.1  yamt 		error = tsleep((caddr_t)&ks->kbd_id, PZERO | PCATCH, devopn,
    140  1.3.10.1  yamt 				hz);
    141  1.3.10.1  yamt 		if (ks->kbd_id)
    142  1.3.10.1  yamt 			break;
    143  1.3.10.1  yamt 		DELAY(10000);
    144  1.3.10.1  yamt 	}
    145  1.3.10.1  yamt 
    146  1.3.10.1  yamt 	if (error == EWOULDBLOCK || ks->kbd_id == 0) { /* no response */
    147       1.1   uwe 		log(LOG_ERR, "%s: reset failed\n", kbd->k_dev.dv_xname);
    148       1.1   uwe 
    149       1.1   uwe 		/*
    150       1.1   uwe 		 * Allow the open anyway (to keep getty happy)
    151       1.1   uwe 		 * but assume the "least common denominator".
    152       1.1   uwe 		 */
    153       1.1   uwe 		error = 0;
    154       1.1   uwe 		ks->kbd_id = KB_SUN2;
    155       1.1   uwe 	}
    156       1.1   uwe 
    157       1.2   uwe 	/* earlier than type 4 does not know "layout" */
    158       1.2   uwe 	if (ks->kbd_id >= KB_SUN4) {
    159  1.3.10.1  yamt 		ks->kbd_layout = 0xff;
    160  1.3.10.1  yamt 
    161       1.2   uwe 		/* ask for the layout */
    162       1.2   uwe 		kbd_sun_output(k, KBD_CMD_GETLAYOUT);
    163       1.2   uwe 		kbd_sun_start_tx(k);
    164       1.2   uwe 		kbd_sun_drain_tx(k);
    165       1.1   uwe 
    166  1.3.10.1  yamt 		/* the wakeup for this is in kbd_sun_new_layout() */
    167  1.3.10.1  yamt 		for (ntries = 200; ntries; ntries--) {
    168  1.3.10.1  yamt 			error = tsleep((caddr_t)&ks->kbd_layout, PZERO | PCATCH,
    169  1.3.10.1  yamt 					devopn, hz);
    170  1.3.10.1  yamt 			if (ks->kbd_layout != 0xff || error)
    171  1.3.10.1  yamt 				break;
    172  1.3.10.1  yamt 			DELAY(10000);
    173  1.3.10.1  yamt 		}
    174  1.3.10.1  yamt 		if (error == EWOULDBLOCK || ks->kbd_layout == 0xff) {
    175       1.2   uwe 			log(LOG_ERR, "%s: no response to get_layout\n",
    176       1.2   uwe 			    kbd->k_dev.dv_xname);
    177       1.2   uwe 			error = 0;
    178       1.2   uwe 			ks->kbd_layout = 0; /* US layout */
    179       1.2   uwe 		}
    180       1.2   uwe 	}
    181       1.1   uwe 
    182       1.2   uwe 	/* initialize the table pointers for this type/layout */
    183       1.2   uwe 	kbd_xlate_init(ks);
    184       1.1   uwe 
    185       1.1   uwe 	splx(s);
    186       1.1   uwe 
    187       1.1   uwe 	if (error == 0)
    188       1.1   uwe 		k->k_isopen = 1;
    189       1.1   uwe 	return (error);
    190       1.1   uwe }
    191       1.1   uwe 
    192       1.1   uwe 
    193       1.1   uwe static int
    194       1.1   uwe kbd_sun_close(kbd)
    195       1.1   uwe 	struct kbd_softc *kbd;
    196       1.1   uwe {
    197       1.1   uwe 
    198       1.1   uwe 	return (0);		/* nothing to do so far */
    199       1.1   uwe }
    200       1.1   uwe 
    201       1.1   uwe 
    202       1.1   uwe /*
    203       1.1   uwe  * keyboard command ioctl
    204       1.1   uwe  * ``unimplemented commands are ignored'' (blech)
    205       1.1   uwe  * XXX: This is also exported to the fb driver (for bell).
    206       1.1   uwe  */
    207       1.1   uwe static int
    208       1.1   uwe kbd_sun_do_cmd(kbd, cmd, isioctl)
    209       1.1   uwe 	struct kbd_softc *kbd;
    210       1.1   uwe 	int cmd;
    211       1.1   uwe 	int isioctl;
    212       1.1   uwe {
    213       1.1   uwe 	struct kbd_sun_softc *k = (struct kbd_sun_softc *)kbd;
    214       1.1   uwe 	struct kbd_state *ks;
    215       1.1   uwe 	int error, s;
    216       1.1   uwe 
    217       1.1   uwe 	error = 0;
    218       1.1   uwe 	ks = &kbd->k_state;
    219       1.1   uwe 
    220       1.1   uwe 	switch (cmd) {
    221       1.1   uwe 
    222       1.1   uwe 	case KBD_CMD_BELL:
    223       1.1   uwe 	case KBD_CMD_NOBELL:
    224       1.1   uwe 		/* Supported by type 2, 3, and 4 keyboards */
    225       1.1   uwe 		break;
    226       1.1   uwe 
    227       1.1   uwe 	case KBD_CMD_CLICK:
    228       1.1   uwe 	case KBD_CMD_NOCLICK:
    229       1.1   uwe 		/* Unsupported by type 2 keyboards */
    230       1.1   uwe 		if (ks->kbd_id <= KB_SUN2)
    231       1.1   uwe 			return (0);
    232       1.1   uwe 		ks->kbd_click = (cmd == KBD_CMD_CLICK);
    233       1.1   uwe 		break;
    234       1.1   uwe 
    235       1.1   uwe 	default:
    236       1.1   uwe 		return (0);
    237       1.1   uwe 	}
    238       1.1   uwe 
    239       1.1   uwe 	s = spltty();
    240       1.1   uwe 
    241       1.1   uwe 	if (isioctl)
    242       1.1   uwe 		error = kbd_sun_drain_tx(k);
    243       1.1   uwe 
    244       1.1   uwe 	if (error == 0) {
    245       1.1   uwe 		kbd_sun_output(k, cmd);
    246       1.1   uwe 		kbd_sun_start_tx(k);
    247       1.1   uwe 	}
    248       1.1   uwe 
    249       1.1   uwe 	splx(s);
    250       1.1   uwe 
    251       1.1   uwe 	return (error);
    252       1.1   uwe }
    253       1.1   uwe 
    254       1.1   uwe 
    255       1.1   uwe /*
    256       1.1   uwe  * KIOCSLED.  Has user context.
    257       1.1   uwe  * Take care about spl and call kbd_sun_set_leds.
    258       1.1   uwe  */
    259       1.1   uwe static int
    260       1.1   uwe kbd_sun_set_leds(kbd, leds, isioctl)
    261       1.1   uwe 	struct kbd_softc *kbd;
    262       1.1   uwe 	int leds;
    263       1.1   uwe 	int isioctl;
    264       1.1   uwe {
    265       1.1   uwe 	struct kbd_sun_softc *k = (struct kbd_sun_softc *)kbd;
    266       1.1   uwe 
    267       1.1   uwe 	if (isioctl) {
    268       1.1   uwe 		int error, s;
    269       1.1   uwe 		s = spltty();
    270       1.1   uwe 		error = kbd_sun_drain_tx(k);
    271       1.1   uwe 		if (error == 0) {
    272       1.1   uwe 			kbd_sun_set_leds1(kbd, leds);
    273       1.1   uwe 		}
    274       1.1   uwe 		splx(s);
    275       1.1   uwe 		return (error);
    276       1.1   uwe 	}
    277       1.1   uwe 	else {
    278       1.1   uwe 		kbd_sun_set_leds1(kbd, leds);
    279       1.1   uwe 		return (0);
    280       1.1   uwe 	}
    281       1.1   uwe }
    282       1.1   uwe 
    283       1.1   uwe 
    284       1.1   uwe /*
    285       1.1   uwe  * Safe to call from intterupt handler.  Called at spltty()
    286       1.1   uwe  * by kbd_sun_iocsled and kbd_sun_input (via kbd_update_leds).
    287       1.1   uwe  */
    288       1.1   uwe static void
    289       1.1   uwe kbd_sun_set_leds1(kbd, new_leds)
    290       1.1   uwe 	struct kbd_softc *kbd;
    291       1.1   uwe 	int new_leds;
    292       1.1   uwe {
    293       1.1   uwe 	struct kbd_sun_softc *k = (struct kbd_sun_softc *)kbd;
    294       1.1   uwe 	struct kbd_state *ks = &kbd->k_state;
    295       1.1   uwe 
    296       1.1   uwe 	/* Don't send unless state changes. */
    297       1.1   uwe 	if (ks->kbd_leds == new_leds)
    298       1.1   uwe 		return;
    299       1.1   uwe 
    300       1.1   uwe 	ks->kbd_leds = new_leds;
    301       1.1   uwe 
    302       1.1   uwe 	/* Only type 4 and later has LEDs anyway. */
    303       1.1   uwe 	if (ks->kbd_id < KB_SUN4)
    304       1.1   uwe 		return;
    305       1.1   uwe 
    306       1.1   uwe 	kbd_sun_output(k, KBD_CMD_SETLED);
    307       1.1   uwe 	kbd_sun_output(k, new_leds);
    308       1.1   uwe 	kbd_sun_start_tx(k);
    309       1.1   uwe }
    310       1.1   uwe 
    311       1.1   uwe 
    312       1.1   uwe 
    313       1.1   uwe /***********************************************************************
    314       1.1   uwe  *	Methods for lower layer to call and related functions.
    315       1.1   uwe  */
    316       1.1   uwe 
    317       1.1   uwe /*
    318       1.1   uwe  * Enqueue some output for the keyboard
    319       1.1   uwe  * Called at spltty().
    320       1.1   uwe  */
    321       1.1   uwe void
    322       1.1   uwe kbd_sun_output(k, c)
    323       1.1   uwe 	struct kbd_sun_softc *k;
    324       1.1   uwe 	int c;	/* the data */
    325       1.1   uwe {
    326       1.1   uwe 	int put;
    327       1.1   uwe 
    328       1.1   uwe 	put = k->k_tbput;
    329       1.1   uwe 	k->k_tbuf[put] = (u_char)c;
    330       1.1   uwe 	put = (put + 1) & KBD_TX_RING_MASK;
    331       1.1   uwe 
    332       1.1   uwe 	/* Would overrun if increment makes (put == get) */
    333       1.1   uwe 	if (put == k->k_tbget) {
    334       1.1   uwe 		log(LOG_WARNING, "%s: output overrun\n",
    335       1.1   uwe 		    k->k_kbd.k_dev.dv_xname);
    336       1.1   uwe 	} else {
    337       1.1   uwe 		/* OK, really increment. */
    338       1.1   uwe 		k->k_tbput = put;
    339       1.1   uwe 	}
    340       1.1   uwe }
    341       1.1   uwe 
    342       1.1   uwe 
    343       1.1   uwe /*
    344       1.1   uwe  * In user context.  Called at spltty().
    345       1.1   uwe  * Wait for output to keyboard to finish.
    346       1.1   uwe  */
    347       1.1   uwe static int
    348       1.1   uwe kbd_sun_drain_tx(k)
    349       1.1   uwe 	struct kbd_sun_softc *k;
    350       1.1   uwe {
    351       1.1   uwe 	int error = 0;
    352       1.1   uwe 
    353       1.1   uwe 	while (k->k_txflags & K_TXBUSY && !error) {
    354       1.1   uwe 		k->k_txflags |= K_TXWANT;
    355       1.1   uwe 		error = tsleep((caddr_t)&k->k_txflags,
    356       1.1   uwe 			       PZERO | PCATCH, "kbdout", 0);
    357       1.1   uwe 	}
    358       1.1   uwe 
    359       1.1   uwe 	return (error);
    360       1.1   uwe }
    361       1.1   uwe 
    362       1.1   uwe /*
    363       1.1   uwe  * Start the sending data from the output queue
    364       1.1   uwe  * Called at spltty().
    365       1.1   uwe  */
    366       1.1   uwe void
    367       1.1   uwe kbd_sun_start_tx(k)
    368       1.1   uwe 	struct kbd_sun_softc *k;
    369       1.1   uwe {
    370       1.1   uwe 	int get;
    371       1.1   uwe 	u_char c;
    372       1.1   uwe 
    373       1.1   uwe 	if (k->k_txflags & K_TXBUSY)
    374       1.1   uwe 		return;
    375       1.1   uwe 
    376       1.1   uwe 	/* Is there anything to send? */
    377       1.1   uwe 	get = k->k_tbget;
    378       1.1   uwe 	if (get == k->k_tbput) {
    379       1.1   uwe 		/* Nothing to send.  Wake drain waiters. */
    380       1.1   uwe 		if (k->k_txflags & K_TXWANT) {
    381       1.1   uwe 			k->k_txflags &= ~K_TXWANT;
    382       1.1   uwe 			wakeup((caddr_t)&k->k_txflags);
    383       1.1   uwe 		}
    384       1.1   uwe 		return;
    385       1.1   uwe 	}
    386       1.1   uwe 
    387       1.1   uwe 	/* Have something to send. */
    388       1.1   uwe 	c = k->k_tbuf[get];
    389       1.1   uwe 	get = (get + 1) & KBD_TX_RING_MASK;
    390       1.1   uwe 	k->k_tbget = get;
    391       1.1   uwe 	k->k_txflags |= K_TXBUSY;
    392       1.1   uwe 
    393       1.1   uwe 	/* Pass data down to the underlying device. */
    394       1.1   uwe 	(*k->k_write_data)(k, c);
    395       1.1   uwe }
    396       1.1   uwe 
    397       1.1   uwe 
    398       1.1   uwe /*
    399       1.1   uwe  * Called by underlying driver's softint() routine on input,
    400       1.2   uwe  * which passes us the raw hardware make/break codes.
    401       1.1   uwe  * Called at spltty()
    402       1.1   uwe  */
    403  1.3.10.1  yamt int
    404       1.2   uwe kbd_sun_input(k, code)
    405       1.1   uwe 	struct kbd_sun_softc *k;
    406       1.2   uwe 	int code;
    407       1.1   uwe {
    408       1.1   uwe 	struct kbd_softc *kbd = (struct kbd_softc *)k;
    409       1.1   uwe 
    410       1.1   uwe 	/* XXX - Input errors already handled. */
    411       1.1   uwe 
    412       1.1   uwe 	/* Are we expecting special input? */
    413       1.1   uwe 	if (k->k_expect) {
    414       1.1   uwe 		if (k->k_expect & KBD_EXPECT_IDCODE) {
    415       1.1   uwe 			/* We read a KBD_RESET last time. */
    416       1.2   uwe 			kbd->k_state.kbd_id = code;
    417       1.1   uwe 			kbd_sun_was_reset(k);
    418       1.1   uwe 		}
    419       1.1   uwe 		if (k->k_expect & KBD_EXPECT_LAYOUT) {
    420       1.1   uwe 			/* We read a KBD_LAYOUT last time. */
    421       1.2   uwe 			kbd->k_state.kbd_layout = code;
    422       1.1   uwe 			kbd_sun_new_layout(k);
    423       1.1   uwe 		}
    424       1.1   uwe 		k->k_expect = 0;
    425  1.3.10.1  yamt 		return(0);
    426       1.1   uwe 	}
    427       1.1   uwe 
    428       1.1   uwe 	/* Is this one of the "special" input codes? */
    429       1.2   uwe 	if (KBD_SPECIAL(code)) {
    430       1.2   uwe 		switch (code) {
    431       1.1   uwe 		case KBD_RESET:
    432       1.1   uwe 			k->k_expect |= KBD_EXPECT_IDCODE;
    433       1.1   uwe 			/* Fake an "all-up" to resync. translation. */
    434       1.2   uwe 			code = KBD_IDLE;
    435       1.1   uwe 			break;
    436       1.1   uwe 
    437       1.1   uwe 		case KBD_LAYOUT:
    438       1.1   uwe 			k->k_expect |= KBD_EXPECT_LAYOUT;
    439  1.3.10.1  yamt 			return(0);
    440       1.1   uwe 
    441       1.1   uwe 		case KBD_ERROR:
    442       1.1   uwe 			log(LOG_WARNING, "%s: received error indicator\n",
    443       1.1   uwe 			    kbd->k_dev.dv_xname);
    444  1.3.10.1  yamt 			return(-1);
    445       1.1   uwe 
    446       1.1   uwe 		case KBD_IDLE:
    447       1.1   uwe 			/* Let this go to the translator. */
    448       1.1   uwe 			break;
    449       1.1   uwe 		}
    450       1.1   uwe 	}
    451       1.1   uwe 
    452       1.2   uwe 	kbd_input(kbd, code);
    453  1.3.10.1  yamt 	return(0);
    454       1.1   uwe }
    455       1.1   uwe 
    456       1.1   uwe 
    457       1.1   uwe /*
    458       1.1   uwe  * Called by kbd_sun_input to handle keyboard's response to reset.
    459       1.1   uwe  * Called at spltty().
    460       1.1   uwe  */
    461       1.1   uwe static void
    462       1.1   uwe kbd_sun_was_reset(k)
    463       1.1   uwe 	struct kbd_sun_softc *k;
    464       1.1   uwe {
    465       1.1   uwe 	struct kbd_state *ks = &k->k_kbd.k_state;
    466       1.1   uwe 
    467       1.1   uwe 	/*
    468       1.1   uwe 	 * On first identification, wake up anyone waiting for type
    469       1.1   uwe 	 * and set up the table pointers.
    470       1.1   uwe 	 */
    471       1.1   uwe 	wakeup((caddr_t)&ks->kbd_id);
    472       1.1   uwe 
    473       1.1   uwe 	/* Restore keyclick, if necessary */
    474       1.1   uwe 	switch (ks->kbd_id) {
    475       1.1   uwe 
    476       1.1   uwe 	case KB_SUN2:
    477       1.1   uwe 		/* Type 2 keyboards don't support keyclick */
    478       1.1   uwe 		break;
    479       1.1   uwe 
    480       1.1   uwe 	case KB_SUN3:
    481       1.1   uwe 		/* Type 3 keyboards come up with keyclick on */
    482       1.1   uwe 		if (!ks->kbd_click) {
    483       1.1   uwe 			/* turn off the click */
    484       1.1   uwe 			kbd_sun_output(k, KBD_CMD_NOCLICK);
    485       1.1   uwe 			kbd_sun_start_tx(k);
    486       1.1   uwe 		}
    487       1.1   uwe 		break;
    488       1.1   uwe 
    489       1.1   uwe 	case KB_SUN4:
    490       1.1   uwe 		/* Type 4 keyboards come up with keyclick off */
    491       1.1   uwe 		if (ks->kbd_click) {
    492       1.1   uwe 			/* turn on the click */
    493       1.1   uwe 			kbd_sun_output(k, KBD_CMD_CLICK);
    494       1.1   uwe 			kbd_sun_start_tx(k);
    495       1.1   uwe 		}
    496       1.1   uwe 		break;
    497  1.3.10.1  yamt 	default:
    498  1.3.10.1  yamt 		printf("%s: unknown keyboard type ID %u\n",
    499  1.3.10.1  yamt 			k->k_kbd.k_dev.dv_xname, (unsigned int)ks->kbd_id);
    500       1.1   uwe 	}
    501       1.1   uwe 
    502       1.1   uwe 	/* LEDs are off after reset. */
    503       1.1   uwe 	ks->kbd_leds = 0;
    504       1.1   uwe }
    505       1.1   uwe 
    506       1.1   uwe /*
    507       1.1   uwe  * Called by kbd_sun_input to handle response to layout request.
    508       1.1   uwe  * Called at spltty().
    509       1.1   uwe  */
    510       1.1   uwe static void
    511       1.1   uwe kbd_sun_new_layout(k)
    512       1.1   uwe 	struct kbd_sun_softc *k;
    513       1.1   uwe {
    514       1.1   uwe 	struct kbd_state *ks = &k->k_kbd.k_state;
    515       1.1   uwe 
    516       1.1   uwe 	/*
    517       1.1   uwe 	 * On first identification, wake up anyone waiting for type
    518       1.1   uwe 	 * and set up the table pointers.
    519       1.1   uwe 	 */
    520       1.1   uwe 	wakeup((caddr_t)&ks->kbd_layout);
    521       1.1   uwe 
    522       1.1   uwe 	/* XXX: switch decoding tables? */
    523       1.1   uwe }
    524