Home | History | Annotate | Line # | Download | only in sun
kbd_zs.c revision 1.6.6.4
      1  1.6.6.4   nathanw /*	$NetBSD: kbd_zs.c,v 1.6.6.4 2002/01/08 00:31:59 nathanw Exp $	*/
      2      1.1       mrg 
      3      1.1       mrg /*
      4      1.1       mrg  * Copyright (c) 1992, 1993
      5      1.1       mrg  *	The Regents of the University of California.  All rights reserved.
      6      1.1       mrg  *
      7      1.1       mrg  * This software was developed by the Computer Systems Engineering group
      8      1.1       mrg  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
      9      1.1       mrg  * contributed to Berkeley.
     10      1.1       mrg  *
     11      1.1       mrg  * All advertising materials mentioning features or use of this software
     12      1.1       mrg  * must display the following acknowledgement:
     13      1.1       mrg  *	This product includes software developed by the University of
     14      1.1       mrg  *	California, Lawrence Berkeley Laboratory.
     15      1.1       mrg  *
     16      1.1       mrg  * Redistribution and use in source and binary forms, with or without
     17      1.1       mrg  * modification, are permitted provided that the following conditions
     18      1.1       mrg  * are met:
     19      1.1       mrg  * 1. Redistributions of source code must retain the above copyright
     20      1.1       mrg  *    notice, this list of conditions and the following disclaimer.
     21      1.1       mrg  * 2. Redistributions in binary form must reproduce the above copyright
     22      1.1       mrg  *    notice, this list of conditions and the following disclaimer in the
     23      1.1       mrg  *    documentation and/or other materials provided with the distribution.
     24      1.1       mrg  * 3. All advertising materials mentioning features or use of this software
     25      1.1       mrg  *    must display the following acknowledgement:
     26      1.1       mrg  *	This product includes software developed by the University of
     27      1.1       mrg  *	California, Berkeley and its contributors.
     28      1.1       mrg  * 4. Neither the name of the University nor the names of its contributors
     29      1.1       mrg  *    may be used to endorse or promote products derived from this software
     30      1.1       mrg  *    without specific prior written permission.
     31      1.1       mrg  *
     32      1.1       mrg  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     33      1.1       mrg  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     34      1.1       mrg  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     35      1.1       mrg  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     36      1.1       mrg  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     37      1.1       mrg  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     38      1.1       mrg  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     39      1.1       mrg  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     40      1.1       mrg  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     41      1.1       mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     42      1.1       mrg  * SUCH DAMAGE.
     43      1.1       mrg  *
     44      1.1       mrg  *	@(#)kbd.c	8.2 (Berkeley) 10/30/93
     45      1.1       mrg  */
     46      1.1       mrg 
     47      1.1       mrg /*
     48      1.1       mrg  * Keyboard driver (/dev/kbd -- note that we do not have minor numbers
     49      1.1       mrg  * [yet?]).  Translates incoming bytes to ASCII or to `firm_events' and
     50      1.1       mrg  * passes them up to the appropriate reader.
     51      1.1       mrg  */
     52      1.1       mrg 
     53      1.1       mrg /*
     54      1.1       mrg  * Zilog Z8530 Dual UART driver (keyboard interface)
     55      1.1       mrg  *
     56      1.1       mrg  * This is the 8530 portion of the driver that will be attached to
     57      1.1       mrg  * the "zsc" driver for a Sun keyboard.
     58      1.1       mrg  */
     59  1.6.6.3   nathanw 
     60  1.6.6.3   nathanw #include <sys/cdefs.h>
     61  1.6.6.4   nathanw __KERNEL_RCSID(0, "$NetBSD: kbd_zs.c,v 1.6.6.4 2002/01/08 00:31:59 nathanw Exp $");
     62      1.1       mrg 
     63      1.1       mrg #include <sys/param.h>
     64      1.1       mrg #include <sys/systm.h>
     65      1.1       mrg #include <sys/conf.h>
     66      1.1       mrg #include <sys/device.h>
     67      1.1       mrg #include <sys/kernel.h>
     68      1.2        pk #include <sys/malloc.h>
     69      1.1       mrg #include <sys/proc.h>
     70      1.1       mrg #include <sys/signal.h>
     71      1.1       mrg #include <sys/signalvar.h>
     72      1.1       mrg #include <sys/time.h>
     73      1.1       mrg #include <sys/select.h>
     74      1.1       mrg #include <sys/syslog.h>
     75      1.1       mrg 
     76      1.1       mrg #include <dev/ic/z8530reg.h>
     77      1.1       mrg #include <machine/z8530var.h>
     78      1.1       mrg #include <machine/vuid_event.h>
     79      1.1       mrg #include <machine/kbd.h>
     80      1.1       mrg #include <dev/sun/event_var.h>
     81      1.1       mrg #include <dev/sun/kbd_xlate.h>
     82      1.1       mrg #include <dev/sun/kbdvar.h>
     83      1.1       mrg 
     84      1.1       mrg /****************************************************************
     85      1.1       mrg  * Interface to the lower layer (zscc)
     86      1.1       mrg  ****************************************************************/
     87      1.1       mrg 
     88      1.1       mrg static void kbd_zs_rxint __P((struct zs_chanstate *));
     89      1.1       mrg static void kbd_zs_stint __P((struct zs_chanstate *, int));
     90      1.1       mrg static void kbd_zs_txint __P((struct zs_chanstate *));
     91      1.1       mrg static void kbd_zs_softint __P((struct zs_chanstate *));
     92      1.1       mrg 
     93      1.1       mrg struct zsops zsops_kbd = {
     94      1.1       mrg 	kbd_zs_rxint,	/* receive char available */
     95      1.1       mrg 	kbd_zs_stint,	/* external/status */
     96      1.1       mrg 	kbd_zs_txint,	/* xmit buffer empty */
     97      1.1       mrg 	kbd_zs_softint,	/* process software interrupt */
     98      1.1       mrg };
     99      1.1       mrg 
    100      1.1       mrg static int	kbd_zs_match(struct device *, struct cfdata *, void *);
    101      1.1       mrg static void	kbd_zs_attach(struct device *, struct device *, void *);
    102      1.1       mrg static void	kbd_zs_write_data __P((struct kbd_softc *, int));
    103      1.1       mrg 
    104      1.1       mrg struct cfattach kbd_zs_ca = {
    105      1.1       mrg 	sizeof(struct kbd_softc), kbd_zs_match, kbd_zs_attach
    106      1.1       mrg };
    107      1.1       mrg 
    108  1.6.6.2   nathanw /* Fall-back baud rate */
    109  1.6.6.4   nathanw int	kbd_zs_bps = KBD_DEFAULT_BPS;
    110  1.6.6.2   nathanw 
    111      1.1       mrg /*
    112      1.1       mrg  * kbd_zs_match: how is this zs channel configured?
    113      1.1       mrg  */
    114      1.1       mrg int
    115      1.1       mrg kbd_zs_match(parent, cf, aux)
    116      1.1       mrg 	struct device *parent;
    117      1.1       mrg 	struct cfdata *cf;
    118      1.1       mrg 	void   *aux;
    119      1.1       mrg {
    120      1.1       mrg 	struct zsc_attach_args *args = aux;
    121      1.1       mrg 
    122      1.1       mrg 	/* Exact match required for keyboard. */
    123      1.1       mrg 	if (cf->cf_loc[ZSCCF_CHANNEL] == args->channel)
    124      1.1       mrg 		return 2;
    125      1.1       mrg 
    126      1.1       mrg 	return 0;
    127      1.1       mrg }
    128      1.1       mrg 
    129      1.1       mrg void
    130      1.1       mrg kbd_zs_attach(parent, self, aux)
    131      1.1       mrg 	struct device *parent, *self;
    132      1.1       mrg 	void   *aux;
    133      1.1       mrg 
    134      1.1       mrg {
    135      1.1       mrg 	struct zsc_softc *zsc = (void *) parent;
    136      1.1       mrg 	struct kbd_softc *k = (void *) self;
    137      1.1       mrg 	struct zsc_attach_args *args = aux;
    138      1.1       mrg 	struct zs_chanstate *cs;
    139      1.1       mrg 	struct cfdata *cf;
    140      1.1       mrg 	int channel, kbd_unit;
    141      1.1       mrg 	int reset, s;
    142  1.6.6.2   nathanw 	int bps;
    143      1.1       mrg 
    144      1.1       mrg 	cf = k->k_dev.dv_cfdata;
    145      1.1       mrg 	kbd_unit = k->k_dev.dv_unit;
    146      1.1       mrg 	channel = args->channel;
    147      1.1       mrg 	cs = zsc->zsc_cs[channel];
    148      1.1       mrg 	cs->cs_private = k;
    149      1.1       mrg 	cs->cs_ops = &zsops_kbd;
    150      1.1       mrg 	k->k_cs = cs;
    151      1.1       mrg 	k->k_write_data = kbd_zs_write_data;
    152  1.6.6.2   nathanw 	if ((bps = cs->cs_defspeed) == 0)
    153  1.6.6.2   nathanw 		bps = kbd_zs_bps;
    154  1.6.6.2   nathanw 
    155  1.6.6.2   nathanw 	printf(": baud rate %d", bps);
    156      1.1       mrg 
    157      1.2        pk 	if ((args->hwflags & ZS_HWFLAG_CONSOLE_INPUT) != 0) {
    158      1.2        pk 		/*
    159      1.2        pk 		 * Hookup ourselves as the console input channel
    160      1.2        pk 		 */
    161      1.2        pk 		struct cons_channel *cc;
    162      1.2        pk 
    163      1.2        pk 		if ((cc = malloc(sizeof *cc, M_DEVBUF, M_NOWAIT)) == NULL)
    164      1.2        pk 			return;
    165      1.2        pk 
    166      1.2        pk 		cc->cc_dev = self;
    167      1.3        pk 		cc->cc_iopen = kbd_cc_open;
    168      1.3        pk 		cc->cc_iclose = kbd_cc_close;
    169      1.2        pk 		cc->cc_upstream = NULL;
    170      1.6       eeh 		cons_attach_input(cc, args->consdev);
    171      1.2        pk 		k->k_cc = cc;
    172      1.1       mrg 		k->k_isconsole = 1;
    173      1.2        pk 		printf(" (console input)");
    174      1.1       mrg 	}
    175      1.1       mrg 	printf("\n");
    176      1.4   thorpej 
    177      1.4   thorpej 	callout_init(&k->k_repeat_ch);
    178      1.1       mrg 
    179      1.1       mrg 	/* Initialize the speed, etc. */
    180      1.1       mrg 	s = splzs();
    181      1.1       mrg 	if (k->k_isconsole == 0) {
    182      1.1       mrg 		/* Not the console; may need reset. */
    183      1.1       mrg 		reset = (channel == 0) ?
    184      1.1       mrg 			ZSWR9_A_RESET : ZSWR9_B_RESET;
    185      1.1       mrg 		zs_write_reg(cs, 9, reset);
    186      1.1       mrg 	}
    187      1.1       mrg 	/* These are OK as set by zscc: WR3, WR4, WR5 */
    188      1.1       mrg 	/* We don't care about status interrupts. */
    189      1.1       mrg 	cs->cs_preg[1] = ZSWR1_RIE | ZSWR1_TIE;
    190  1.6.6.2   nathanw 	(void) zs_set_speed(cs, bps);
    191      1.1       mrg 	zs_loadchannelregs(cs);
    192      1.1       mrg 	splx(s);
    193      1.1       mrg 
    194      1.1       mrg 	/* Do this before any calls to kbd_rint(). */
    195      1.1       mrg 	kbd_xlate_init(&k->k_state);
    196      1.1       mrg 
    197      1.1       mrg 	/* XXX - Do this in open? */
    198      1.1       mrg 	k->k_repeat_start = hz/2;
    199      1.1       mrg 	k->k_repeat_step = hz/20;
    200      1.1       mrg 
    201      1.1       mrg 	/* Magic sequence. */
    202      1.1       mrg 	k->k_magic1 = KBD_L1;
    203      1.1       mrg 	k->k_magic2 = KBD_A;
    204      1.1       mrg }
    205      1.1       mrg 
    206      1.1       mrg /*
    207      1.1       mrg  * used by kbd_start_tx();
    208      1.1       mrg  */
    209      1.1       mrg void
    210      1.1       mrg kbd_zs_write_data(k, c)
    211      1.1       mrg 	struct kbd_softc *k;
    212      1.1       mrg 	int c;
    213      1.1       mrg {
    214      1.1       mrg 	int	s;
    215      1.1       mrg 
    216      1.1       mrg 	/* Need splzs to avoid interruption of the delay. */
    217      1.1       mrg 	s = splzs();
    218      1.1       mrg 	zs_write_data(k->k_cs, c);
    219      1.1       mrg 	splx(s);
    220      1.1       mrg }
    221      1.1       mrg 
    222      1.1       mrg static void
    223      1.1       mrg kbd_zs_rxint(cs)
    224      1.5  augustss 	struct zs_chanstate *cs;
    225      1.1       mrg {
    226      1.5  augustss 	struct kbd_softc *k;
    227      1.5  augustss 	int put, put_next;
    228      1.5  augustss 	u_char c, rr1;
    229      1.1       mrg 
    230      1.1       mrg 	k = cs->cs_private;
    231      1.1       mrg 	put = k->k_rbput;
    232      1.1       mrg 
    233      1.1       mrg 	/*
    234      1.1       mrg 	 * First read the status, because reading the received char
    235      1.1       mrg 	 * destroys the status of this char.
    236      1.1       mrg 	 */
    237      1.1       mrg 	rr1 = zs_read_reg(cs, 1);
    238      1.1       mrg 	c = zs_read_data(cs);
    239      1.1       mrg 
    240      1.1       mrg 	if (rr1 & (ZSRR1_FE | ZSRR1_DO | ZSRR1_PE)) {
    241      1.1       mrg 		/* Clear the receive error. */
    242      1.1       mrg 		zs_write_csr(cs, ZSWR0_RESET_ERRORS);
    243      1.1       mrg 	}
    244      1.1       mrg 
    245      1.1       mrg 	/*
    246      1.1       mrg 	 * Check NOW for a console abort sequence, so that we can
    247      1.1       mrg 	 * abort even when interrupts are locking up the machine.
    248      1.1       mrg 	 */
    249      1.1       mrg 	if (k->k_magic1_down) {
    250      1.1       mrg 		/* The last keycode was "MAGIC1" down. */
    251      1.1       mrg 		k->k_magic1_down = 0;
    252      1.1       mrg 		if (c == k->k_magic2) {
    253      1.1       mrg 			/* Magic "L1-A" sequence; enter debugger. */
    254      1.1       mrg 			if (k->k_isconsole) {
    255      1.1       mrg 				zs_abort(cs);
    256      1.1       mrg 				/* Debugger done.  Fake L1-up to finish it. */
    257      1.1       mrg 				c = k->k_magic1 | KBD_UP;
    258      1.1       mrg 			} else {
    259      1.1       mrg 				printf("kbd: magic sequence, but not console\n");
    260      1.1       mrg 			}
    261      1.1       mrg 		}
    262      1.1       mrg 	}
    263      1.1       mrg 	if (c == k->k_magic1) {
    264      1.1       mrg 		k->k_magic1_down = 1;
    265      1.1       mrg 	}
    266      1.1       mrg 
    267      1.1       mrg 	k->k_rbuf[put] = (c << 8) | rr1;
    268      1.1       mrg 	put_next = (put + 1) & KBD_RX_RING_MASK;
    269      1.1       mrg 
    270      1.1       mrg 	/* Would overrun if increment makes (put==get). */
    271      1.1       mrg 	if (put_next == k->k_rbget) {
    272      1.1       mrg 		k->k_intr_flags |= INTR_RX_OVERRUN;
    273      1.1       mrg 	} else {
    274      1.1       mrg 		/* OK, really increment. */
    275      1.1       mrg 		put = put_next;
    276      1.1       mrg 	}
    277      1.1       mrg 
    278      1.1       mrg 	/* Done reading. */
    279      1.1       mrg 	k->k_rbput = put;
    280      1.1       mrg 
    281      1.1       mrg 	/* Ask for softint() call. */
    282      1.1       mrg 	cs->cs_softreq = 1;
    283      1.1       mrg }
    284      1.1       mrg 
    285      1.1       mrg 
    286      1.1       mrg static void
    287      1.1       mrg kbd_zs_txint(cs)
    288      1.5  augustss 	struct zs_chanstate *cs;
    289      1.1       mrg {
    290      1.5  augustss 	struct kbd_softc *k;
    291      1.1       mrg 
    292      1.1       mrg 	k = cs->cs_private;
    293      1.1       mrg 	zs_write_csr(cs, ZSWR0_RESET_TXINT);
    294      1.1       mrg 	k->k_intr_flags |= INTR_TX_EMPTY;
    295      1.1       mrg 	/* Ask for softint() call. */
    296      1.1       mrg 	cs->cs_softreq = 1;
    297      1.1       mrg }
    298      1.1       mrg 
    299      1.1       mrg 
    300      1.1       mrg static void
    301      1.1       mrg kbd_zs_stint(cs, force)
    302      1.5  augustss 	struct zs_chanstate *cs;
    303      1.1       mrg 	int force;
    304      1.1       mrg {
    305      1.5  augustss 	struct kbd_softc *k;
    306      1.5  augustss 	int rr0;
    307      1.1       mrg 
    308      1.1       mrg 	k = cs->cs_private;
    309      1.1       mrg 
    310      1.1       mrg 	rr0 = zs_read_csr(cs);
    311      1.1       mrg 	zs_write_csr(cs, ZSWR0_RESET_STATUS);
    312      1.1       mrg 
    313      1.1       mrg #if 0
    314      1.1       mrg 	if (rr0 & ZSRR0_BREAK) {
    315      1.1       mrg 		/* Keyboard unplugged? */
    316      1.1       mrg 		zs_abort(cs);
    317      1.1       mrg 		return (0);
    318      1.1       mrg 	}
    319      1.1       mrg #endif
    320      1.1       mrg 
    321      1.1       mrg 	/*
    322      1.1       mrg 	 * We have to accumulate status line changes here.
    323      1.1       mrg 	 * Otherwise, if we get multiple status interrupts
    324      1.1       mrg 	 * before the softint runs, we could fail to notice
    325      1.1       mrg 	 * some status line changes in the softint routine.
    326      1.1       mrg 	 * Fix from Bill Studenmund, October 1996.
    327      1.1       mrg 	 */
    328      1.1       mrg 	cs->cs_rr0_delta |= (cs->cs_rr0 ^ rr0);
    329      1.1       mrg 	cs->cs_rr0 = rr0;
    330      1.1       mrg 	k->k_intr_flags |= INTR_ST_CHECK;
    331      1.1       mrg 
    332      1.1       mrg 	/* Ask for softint() call. */
    333      1.1       mrg 	cs->cs_softreq = 1;
    334      1.1       mrg }
    335      1.1       mrg 
    336      1.1       mrg /*
    337  1.6.6.1   nathanw  * Get input from the receive ring and pass it on.
    338      1.1       mrg  * Note: this is called at splsoftclock()
    339      1.1       mrg  */
    340      1.1       mrg static void
    341      1.1       mrg kbd_zs_softint(cs)
    342      1.1       mrg 	struct zs_chanstate *cs;
    343      1.1       mrg {
    344      1.5  augustss 	struct kbd_softc *k;
    345      1.5  augustss 	int get, c, s;
    346      1.1       mrg 	int intr_flags;
    347      1.5  augustss 	u_short ring_data;
    348      1.1       mrg 
    349      1.1       mrg 	k = cs->cs_private;
    350      1.1       mrg 
    351      1.1       mrg 	/* Atomically get and clear flags. */
    352      1.1       mrg 	s = splzs();
    353      1.1       mrg 	intr_flags = k->k_intr_flags;
    354      1.1       mrg 	k->k_intr_flags = 0;
    355      1.1       mrg 
    356      1.1       mrg 	/* Now lower to spltty for the rest. */
    357      1.1       mrg 	(void) spltty();
    358      1.1       mrg 
    359      1.1       mrg 	/*
    360      1.1       mrg 	 * Copy data from the receive ring to the event layer.
    361      1.1       mrg 	 */
    362      1.1       mrg 	get = k->k_rbget;
    363      1.1       mrg 	while (get != k->k_rbput) {
    364      1.1       mrg 		ring_data = k->k_rbuf[get];
    365      1.1       mrg 		get = (get + 1) & KBD_RX_RING_MASK;
    366      1.1       mrg 
    367      1.1       mrg 		/* low byte of ring_data is rr1 */
    368      1.1       mrg 		c = (ring_data >> 8) & 0xff;
    369      1.1       mrg 
    370      1.1       mrg 		if (ring_data & ZSRR1_DO)
    371      1.1       mrg 			intr_flags |= INTR_RX_OVERRUN;
    372      1.1       mrg 		if (ring_data & (ZSRR1_FE | ZSRR1_PE)) {
    373      1.1       mrg 			/*
    374      1.1       mrg 			 * After garbage, flush pending input, and
    375      1.1       mrg 			 * send a reset to resync key translation.
    376      1.1       mrg 			 */
    377      1.1       mrg 			log(LOG_ERR, "%s: input error (0x%x)\n",
    378      1.1       mrg 				k->k_dev.dv_xname, ring_data);
    379      1.1       mrg 			get = k->k_rbput; /* flush */
    380      1.1       mrg 			goto send_reset;
    381      1.1       mrg 		}
    382      1.1       mrg 
    383      1.1       mrg 		/* Pass this up to the "middle" layer. */
    384      1.1       mrg 		kbd_input_raw(k, c);
    385      1.1       mrg 	}
    386      1.1       mrg 	if (intr_flags & INTR_RX_OVERRUN) {
    387      1.1       mrg 		log(LOG_ERR, "%s: input overrun\n",
    388      1.1       mrg 		    k->k_dev.dv_xname);
    389      1.1       mrg 	send_reset:
    390      1.1       mrg 		/* Send a reset to resync translation. */
    391      1.1       mrg 		kbd_output(k, KBD_CMD_RESET);
    392      1.1       mrg 		kbd_start_tx(k);
    393      1.1       mrg 	}
    394      1.1       mrg 	k->k_rbget = get;
    395      1.1       mrg 
    396      1.1       mrg 	if (intr_flags & INTR_TX_EMPTY) {
    397      1.1       mrg 		/*
    398      1.1       mrg 		 * Transmit done.  Try to send more, or
    399      1.1       mrg 		 * clear busy and wakeup drain waiters.
    400      1.1       mrg 		 */
    401      1.1       mrg 		k->k_txflags &= ~K_TXBUSY;
    402      1.1       mrg 		kbd_start_tx(k);
    403      1.1       mrg 	}
    404      1.1       mrg 
    405      1.1       mrg 	if (intr_flags & INTR_ST_CHECK) {
    406      1.1       mrg 		/*
    407      1.1       mrg 		 * Status line change.  (Not expected.)
    408      1.1       mrg 		 */
    409      1.1       mrg 		log(LOG_ERR, "%s: status interrupt?\n",
    410      1.1       mrg 		    k->k_dev.dv_xname);
    411      1.1       mrg 		cs->cs_rr0_delta = 0;
    412      1.1       mrg 	}
    413      1.1       mrg 
    414      1.1       mrg 	splx(s);
    415      1.1       mrg }
    416