Home | History | Annotate | Line # | Download | only in dev
kbd.c revision 1.18.16.1
      1  1.18.16.1   thorpej /*	$NetBSD: kbd.c,v 1.18.16.1 2001/09/09 19:12:35 thorpej Exp $	*/
      2        1.1       leo 
      3        1.1       leo /*
      4        1.1       leo  * Copyright (c) 1995 Leo Weppelman
      5        1.1       leo  * Copyright (c) 1982, 1986, 1990 The Regents of the University of California.
      6        1.1       leo  * All rights reserved.
      7        1.1       leo  *
      8        1.1       leo  * Redistribution and use in source and binary forms, with or without
      9        1.1       leo  * modification, are permitted provided that the following conditions
     10        1.1       leo  * are met:
     11        1.1       leo  * 1. Redistributions of source code must retain the above copyright
     12        1.1       leo  *    notice, this list of conditions and the following disclaimer.
     13        1.1       leo  * 2. Redistributions in binary form must reproduce the above copyright
     14        1.1       leo  *    notice, this list of conditions and the following disclaimer in the
     15        1.1       leo  *    documentation and/or other materials provided with the distribution.
     16        1.1       leo  * 3. All advertising materials mentioning features or use of this software
     17        1.1       leo  *    must display the following acknowledgement:
     18        1.1       leo  *	This product includes software developed by the University of
     19        1.1       leo  *	California, Berkeley and its contributors.
     20        1.1       leo  * 4. Neither the name of the University nor the names of its contributors
     21        1.1       leo  *    may be used to endorse or promote products derived from this software
     22        1.1       leo  *    without specific prior written permission.
     23        1.1       leo  *
     24        1.1       leo  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25        1.1       leo  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26        1.1       leo  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27        1.1       leo  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28        1.1       leo  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29        1.1       leo  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30        1.1       leo  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31        1.1       leo  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32        1.1       leo  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33        1.1       leo  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34        1.1       leo  * SUCH DAMAGE.
     35        1.1       leo  */
     36        1.1       leo 
     37        1.1       leo #include <sys/param.h>
     38        1.1       leo #include <sys/systm.h>
     39        1.1       leo #include <sys/device.h>
     40        1.1       leo #include <sys/ioctl.h>
     41        1.1       leo #include <sys/tty.h>
     42        1.1       leo #include <sys/proc.h>
     43        1.1       leo #include <sys/conf.h>
     44        1.1       leo #include <sys/file.h>
     45        1.1       leo #include <sys/kernel.h>
     46        1.9       leo #include <sys/signalvar.h>
     47        1.1       leo #include <sys/syslog.h>
     48        1.1       leo #include <dev/cons.h>
     49        1.1       leo #include <machine/cpu.h>
     50        1.1       leo #include <machine/iomap.h>
     51        1.1       leo #include <machine/mfp.h>
     52        1.1       leo #include <machine/acia.h>
     53        1.1       leo #include <atari/dev/itevar.h>
     54        1.1       leo #include <atari/dev/event_var.h>
     55        1.1       leo #include <atari/dev/vuid_event.h>
     56        1.9       leo #include <atari/dev/ym2149reg.h>
     57        1.9       leo #include <atari/dev/kbdreg.h>
     58        1.9       leo #include <atari/dev/kbdvar.h>
     59       1.15       leo #include <atari/dev/kbdmap.h>
     60        1.9       leo #include <atari/dev/msvar.h>
     61        1.1       leo 
     62        1.5       leo #include "mouse.h"
     63        1.5       leo 
     64       1.15       leo u_char			kbd_modifier;	/* Modifier mask		*/
     65       1.15       leo 
     66        1.1       leo static u_char		kbd_ring[KBD_RING_SIZE];
     67        1.1       leo static volatile u_int	kbd_rbput = 0;	/* 'put' index			*/
     68        1.1       leo static u_int		kbd_rbget = 0;	/* 'get' index			*/
     69        1.1       leo static u_char		kbd_soft  = 0;	/* 1: Softint has been scheduled*/
     70        1.1       leo 
     71        1.1       leo static struct kbd_softc kbd_softc;
     72        1.1       leo 
     73        1.6       leo /* {b,c}devsw[] function prototypes */
     74  1.18.16.1   thorpej cdev_decl(kbd);
     75        1.6       leo 
     76        1.6       leo /* Interrupt handler */
     77        1.6       leo void	kbdintr __P((int));
     78        1.6       leo 
     79       1.10       leo static void kbdsoft __P((void *, void *));
     80        1.1       leo static void kbdattach __P((struct device *, struct device *, void *));
     81       1.14       leo static int  kbdmatch __P((struct device *, struct cfdata *, void *));
     82       1.15       leo static int  kbd_do_modifier __P((u_char));
     83        1.4       leo static int  kbd_write_poll __P((u_char *, int));
     84        1.3       leo static void kbd_pkg_start __P((struct kbd_softc *, u_char));
     85        1.1       leo 
     86        1.7   thorpej struct cfattach kbd_ca = {
     87        1.7   thorpej 	sizeof(struct device), kbdmatch, kbdattach
     88        1.7   thorpej };
     89        1.9       leo 
     90        1.1       leo /*ARGSUSED*/
     91        1.1       leo static	int
     92       1.14       leo kbdmatch(pdp, cfp, auxp)
     93       1.14       leo struct	device	*pdp;
     94       1.14       leo struct	cfdata	*cfp;
     95       1.14       leo void		*auxp;
     96        1.1       leo {
     97        1.3       leo 	if (!strcmp((char *)auxp, "kbd"))
     98        1.3       leo 		return (1);
     99        1.3       leo 	return (0);
    100        1.1       leo }
    101        1.1       leo 
    102        1.1       leo /*ARGSUSED*/
    103        1.1       leo static void
    104        1.1       leo kbdattach(pdp, dp, auxp)
    105        1.1       leo struct	device *pdp, *dp;
    106        1.1       leo void	*auxp;
    107        1.1       leo {
    108        1.3       leo 	int	timeout;
    109        1.4       leo 	u_char	kbd_rst[]  = { 0x80, 0x01 };
    110        1.4       leo 	u_char	kbd_icmd[] = { 0x12, 0x15 };
    111        1.3       leo 
    112        1.3       leo 	/*
    113        1.3       leo 	 * Disable keyboard interrupts from MFP
    114        1.3       leo 	 */
    115        1.3       leo 	MFP->mf_ierb &= ~IB_AINT;
    116        1.3       leo 
    117        1.3       leo 	/*
    118        1.3       leo 	 * Reset ACIA and intialize to:
    119        1.3       leo 	 *    divide by 16, 8 data, 1 stop, no parity, enable RX interrupts
    120        1.3       leo 	 */
    121        1.3       leo 	KBD->ac_cs = A_RESET;
    122        1.3       leo 	delay(100);	/* XXX: enough? */
    123        1.3       leo 	KBD->ac_cs = kbd_softc.k_soft_cs = KBD_INIT | A_RXINT;
    124        1.3       leo 
    125        1.3       leo 	/*
    126        1.3       leo 	 * Clear error conditions
    127        1.3       leo 	 */
    128        1.3       leo 	while (KBD->ac_cs & (A_IRQ|A_RXRDY))
    129        1.3       leo 		timeout = KBD->ac_da;
    130        1.3       leo 
    131        1.3       leo 	/*
    132        1.3       leo 	 * Now send the reset string, and read+ignore it's response
    133        1.3       leo 	 */
    134        1.4       leo 	if (!kbd_write_poll(kbd_rst, 2))
    135       1.12  christos 		printf("kbd: error cannot reset keyboard\n");
    136        1.3       leo 	for (timeout = 1000; timeout > 0; timeout--) {
    137        1.3       leo 		if (KBD->ac_cs & (A_IRQ|A_RXRDY)) {
    138        1.3       leo 			timeout = KBD->ac_da;
    139        1.3       leo 			timeout = 100;
    140        1.3       leo 		}
    141        1.3       leo 		delay(100);
    142        1.3       leo 	}
    143        1.4       leo 	/*
    144        1.4       leo 	 * Send init command: disable mice & joysticks
    145        1.4       leo 	 */
    146        1.4       leo 	kbd_write_poll(kbd_icmd, sizeof(kbd_icmd));
    147        1.3       leo 
    148       1.12  christos 	printf("\n");
    149        1.1       leo }
    150        1.1       leo 
    151        1.1       leo void
    152        1.1       leo kbdenable()
    153        1.1       leo {
    154        1.3       leo 	int	s, code;
    155        1.1       leo 
    156        1.1       leo 	s = spltty();
    157        1.3       leo 
    158        1.1       leo 	/*
    159        1.3       leo 	 * Clear error conditions...
    160        1.1       leo 	 */
    161        1.3       leo 	while (KBD->ac_cs & (A_IRQ|A_RXRDY))
    162        1.3       leo 		code = KBD->ac_da;
    163        1.1       leo 	/*
    164        1.1       leo 	 * Enable interrupts from MFP
    165        1.1       leo 	 */
    166       1.18       leo 	MFP->mf_iprb  = (u_int8_t)~IB_AINT;
    167        1.1       leo 	MFP->mf_ierb |= IB_AINT;
    168        1.1       leo 	MFP->mf_imrb |= IB_AINT;
    169        1.1       leo 
    170        1.1       leo 	kbd_softc.k_event_mode   = 0;
    171        1.1       leo 	kbd_softc.k_events.ev_io = 0;
    172        1.3       leo 	kbd_softc.k_pkg_size     = 0;
    173        1.1       leo 	splx(s);
    174        1.1       leo }
    175        1.1       leo 
    176        1.1       leo int kbdopen(dev_t dev, int flags, int mode, struct proc *p)
    177        1.1       leo {
    178        1.3       leo 	if (kbd_softc.k_events.ev_io)
    179        1.1       leo 		return EBUSY;
    180        1.1       leo 
    181        1.1       leo 	kbd_softc.k_events.ev_io = p;
    182        1.1       leo 	ev_init(&kbd_softc.k_events);
    183        1.1       leo 	return (0);
    184        1.1       leo }
    185        1.1       leo 
    186        1.1       leo int
    187        1.1       leo kbdclose(dev_t dev, int flags, int mode, struct proc *p)
    188        1.1       leo {
    189        1.1       leo 	/* Turn off event mode, dump the queue */
    190        1.1       leo 	kbd_softc.k_event_mode = 0;
    191        1.1       leo 	ev_fini(&kbd_softc.k_events);
    192        1.1       leo 	kbd_softc.k_events.ev_io = NULL;
    193        1.1       leo 	return (0);
    194        1.1       leo }
    195        1.1       leo 
    196        1.1       leo int
    197        1.1       leo kbdread(dev_t dev, struct uio *uio, int flags)
    198        1.1       leo {
    199        1.1       leo 	return ev_read(&kbd_softc.k_events, uio, flags);
    200        1.1       leo }
    201        1.1       leo 
    202        1.1       leo int
    203        1.1       leo kbdioctl(dev_t dev,u_long cmd,register caddr_t data,int flag,struct proc *p)
    204        1.1       leo {
    205        1.1       leo 	register struct kbd_softc *k = &kbd_softc;
    206       1.16       leo 	struct kbdbell	*kb;
    207        1.1       leo 
    208        1.1       leo 	switch (cmd) {
    209        1.1       leo 		case KIOCTRANS:
    210        1.3       leo 			if (*(int *)data == TR_UNTRANS_EVENT)
    211        1.1       leo 				return 0;
    212        1.1       leo 			break;
    213        1.1       leo 
    214        1.1       leo 		case KIOCGTRANS:
    215        1.1       leo 			/*
    216        1.1       leo 			 * Get translation mode
    217        1.1       leo 			 */
    218        1.1       leo 			*(int *)data = TR_UNTRANS_EVENT;
    219        1.1       leo 			return 0;
    220        1.1       leo 
    221        1.1       leo 		case KIOCSDIRECT:
    222        1.1       leo 			k->k_event_mode = *(int *)data;
    223        1.1       leo 			return 0;
    224       1.16       leo 
    225       1.16       leo 		case KIOCRINGBELL:
    226       1.16       leo 			kb = (struct kbdbell *)data;
    227       1.16       leo 			if (kb)
    228       1.16       leo 				kbd_bell_sparms(kb->volume, kb->pitch,
    229       1.16       leo 							kb->duration);
    230       1.16       leo 			kbdbell();
    231       1.16       leo 			return 0;
    232        1.1       leo 
    233        1.1       leo 		case FIONBIO:	/* we will remove this someday (soon???) */
    234        1.1       leo 			return 0;
    235        1.1       leo 
    236        1.1       leo 		case FIOASYNC:
    237        1.1       leo 			k->k_events.ev_async = *(int *)data != 0;
    238        1.1       leo 				return 0;
    239        1.1       leo 
    240        1.1       leo 		case TIOCSPGRP:
    241        1.3       leo 			if (*(int *)data != k->k_events.ev_io->p_pgid)
    242        1.1       leo 				return EPERM;
    243        1.1       leo 			return 0;
    244        1.1       leo 
    245        1.1       leo 		default:
    246        1.1       leo 			return ENOTTY;
    247        1.1       leo 	}
    248        1.1       leo 
    249        1.1       leo 	/*
    250        1.1       leo 	 * We identified the ioctl, but we do not handle it.
    251        1.1       leo 	 */
    252        1.1       leo 	return EOPNOTSUPP;		/* misuse, but what the heck */
    253        1.1       leo }
    254        1.1       leo 
    255        1.1       leo int
    256       1.13       leo kbdpoll (dev_t dev, int events, struct proc *p)
    257        1.1       leo {
    258       1.13       leo   return ev_poll (&kbd_softc.k_events, events, p);
    259  1.18.16.1   thorpej }
    260  1.18.16.1   thorpej 
    261  1.18.16.1   thorpej int
    262  1.18.16.1   thorpej kbdkqfilter(dev_t dev, struct knote *kn)
    263  1.18.16.1   thorpej {
    264  1.18.16.1   thorpej 
    265  1.18.16.1   thorpej 	return (ev_kqfilter(&kbd_softc.k_events, kn));
    266        1.1       leo }
    267        1.1       leo 
    268        1.1       leo /*
    269        1.3       leo  * Keyboard interrupt handler called straight from MFP at spl6.
    270        1.1       leo  */
    271        1.6       leo void
    272        1.1       leo kbdintr(sr)
    273        1.1       leo int sr;	/* sr at time of interrupt	*/
    274        1.1       leo {
    275        1.1       leo 	int	code;
    276        1.3       leo 	int	got_char = 0;
    277        1.1       leo 
    278        1.1       leo 	/*
    279        1.1       leo 	 * There may be multiple keys available. Read them all.
    280        1.1       leo 	 */
    281        1.3       leo 	while (KBD->ac_cs & (A_RXRDY|A_OE|A_PE)) {
    282        1.3       leo 		got_char = 1;
    283        1.3       leo 		if (KBD->ac_cs & (A_OE|A_PE)) {
    284        1.3       leo 			code = KBD->ac_da;	/* Silently ignore errors */
    285        1.1       leo 			continue;
    286        1.1       leo 		}
    287        1.1       leo 		kbd_ring[kbd_rbput++ & KBD_RING_MASK] = KBD->ac_da;
    288        1.1       leo 	}
    289        1.3       leo 
    290        1.3       leo 	/*
    291        1.3       leo 	 * If characters are waiting for transmit, send them.
    292        1.3       leo 	 */
    293        1.3       leo 	if ((kbd_softc.k_soft_cs & A_TXINT) && (KBD->ac_cs & A_TXRDY)) {
    294        1.3       leo 		if (kbd_softc.k_sendp != NULL)
    295        1.3       leo 			KBD->ac_da = *kbd_softc.k_sendp++;
    296        1.3       leo 		if (--kbd_softc.k_send_cnt <= 0) {
    297        1.3       leo 			/*
    298        1.3       leo 			 * The total package has been transmitted,
    299        1.3       leo 			 * wakeup anyone waiting for it.
    300        1.3       leo 			 */
    301        1.3       leo 			KBD->ac_cs = (kbd_softc.k_soft_cs &= ~A_TXINT);
    302        1.3       leo 			kbd_softc.k_sendp    = NULL;
    303        1.3       leo 			kbd_softc.k_send_cnt = 0;
    304        1.3       leo 			wakeup((caddr_t)&kbd_softc.k_send_cnt);
    305        1.3       leo 		}
    306        1.3       leo 	}
    307        1.3       leo 
    308        1.3       leo 	/*
    309        1.3       leo 	 * Activate software-level to handle possible input.
    310        1.3       leo 	 */
    311        1.3       leo 	if (got_char) {
    312        1.3       leo 		if (!BASEPRI(sr)) {
    313        1.3       leo 			if (!kbd_soft++)
    314        1.3       leo 				add_sicallback(kbdsoft, 0, 0);
    315        1.3       leo 		} else {
    316        1.3       leo 			spl1();
    317       1.10       leo 			kbdsoft(NULL, NULL);
    318        1.3       leo 		}
    319        1.1       leo 	}
    320        1.1       leo }
    321        1.1       leo 
    322        1.1       leo /*
    323        1.1       leo  * Keyboard soft interrupt handler
    324        1.1       leo  */
    325        1.1       leo void
    326       1.10       leo kbdsoft(junk1, junk2)
    327       1.10       leo void	*junk1, *junk2;
    328        1.1       leo {
    329        1.1       leo 	int			s;
    330        1.1       leo 	u_char			code;
    331        1.1       leo 	struct kbd_softc	*k = &kbd_softc;
    332        1.1       leo 	struct firm_event	*fe;
    333        1.1       leo 	int			put;
    334        1.1       leo 	int			n, get;
    335        1.1       leo 
    336        1.1       leo 	kbd_soft = 0;
    337        1.1       leo 	get      = kbd_rbget;
    338        1.1       leo 
    339        1.3       leo 	for (;;) {
    340        1.1       leo 		n = kbd_rbput;
    341        1.3       leo 		if (get == n) /* We're done	*/
    342        1.1       leo 			break;
    343        1.1       leo 		n -= get;
    344        1.3       leo 		if (n > KBD_RING_SIZE) { /* Ring buffer overflow	*/
    345        1.1       leo 			get += n - KBD_RING_SIZE;
    346        1.1       leo 			n    = KBD_RING_SIZE;
    347        1.1       leo 		}
    348        1.3       leo 		while (--n >= 0) {
    349        1.1       leo 			code = kbd_ring[get++ & KBD_RING_MASK];
    350        1.1       leo 
    351        1.1       leo 			/*
    352        1.3       leo 			 * If collecting a package, stuff it in and
    353        1.3       leo 			 * continue.
    354        1.3       leo 			 */
    355        1.3       leo 			if (k->k_pkg_size && (k->k_pkg_idx < k->k_pkg_size)) {
    356        1.9       leo 			    k->k_package[k->k_pkg_idx++] = code;
    357        1.9       leo 			    if (k->k_pkg_idx == k->k_pkg_size) {
    358        1.9       leo 				/*
    359        1.9       leo 				 * Package is complete.
    360        1.9       leo 				 */
    361        1.9       leo 				switch(k->k_pkg_type) {
    362        1.5       leo #if NMOUSE > 0
    363        1.9       leo 				    case KBD_AMS_PKG:
    364        1.9       leo 				    case KBD_RMS_PKG:
    365        1.9       leo 				    case KBD_JOY1_PKG:
    366        1.9       leo 			 		mouse_soft((REL_MOUSE *)k->k_package,
    367        1.9       leo 						k->k_pkg_size, k->k_pkg_type);
    368        1.5       leo #endif /* NMOUSE */
    369        1.3       leo 				}
    370        1.9       leo 				k->k_pkg_size = 0;
    371        1.9       leo 			    }
    372        1.9       leo 			    continue;
    373        1.3       leo 			}
    374        1.3       leo 			/*
    375        1.3       leo 			 * If this is a package header, init pkg. handling.
    376        1.3       leo 			 */
    377       1.15       leo 			if (!KBD_IS_KEY(code)) {
    378        1.3       leo 				kbd_pkg_start(k, code);
    379        1.3       leo 				continue;
    380        1.3       leo 			}
    381       1.15       leo 			if (kbd_do_modifier(code) && !k->k_event_mode)
    382       1.15       leo 				continue;
    383       1.15       leo 
    384        1.3       leo 			/*
    385        1.1       leo 			 * if not in event mode, deliver straight to ite to
    386        1.1       leo 			 * process key stroke
    387        1.1       leo 			 */
    388        1.3       leo 			if (!k->k_event_mode) {
    389        1.1       leo 				/* Gets to spltty() by itself	*/
    390        1.1       leo 				ite_filter(code, ITEFILT_TTY);
    391        1.1       leo 				continue;
    392        1.1       leo 			}
    393        1.1       leo 
    394        1.1       leo 			/*
    395        1.1       leo 			 * Keyboard is generating events.  Turn this keystroke
    396        1.1       leo 			 * into an event and put it in the queue.  If the queue
    397        1.1       leo 			 * is full, the keystroke is lost (sorry!).
    398        1.1       leo 			 */
    399        1.1       leo 			s = spltty();
    400        1.1       leo 			put = k->k_events.ev_put;
    401        1.1       leo 			fe  = &k->k_events.ev_q[put];
    402        1.1       leo 			put = (put + 1) % EV_QSIZE;
    403        1.3       leo 			if (put == k->k_events.ev_get) {
    404        1.1       leo 				log(LOG_WARNING,
    405        1.1       leo 					"keyboard event queue overflow\n");
    406        1.1       leo 				splx(s);
    407        1.1       leo 				continue;
    408        1.1       leo 			}
    409       1.15       leo 			fe->id    = KBD_SCANCODE(code);
    410       1.15       leo 			fe->value = KBD_RELEASED(code) ? VKEY_UP : VKEY_DOWN;
    411       1.15       leo 			fe->time  = time;
    412        1.1       leo 			k->k_events.ev_put = put;
    413        1.1       leo 			EV_WAKEUP(&k->k_events);
    414        1.1       leo 			splx(s);
    415        1.1       leo 		}
    416        1.1       leo 		kbd_rbget = get;
    417        1.1       leo 	}
    418        1.1       leo }
    419        1.1       leo 
    420       1.16       leo static	u_char sound[] = {
    421        1.1       leo 	0xA8,0x01,0xA9,0x01,0xAA,0x01,0x00,
    422        1.1       leo 	0xF8,0x10,0x10,0x10,0x00,0x20,0x03
    423        1.1       leo };
    424        1.1       leo 
    425        1.6       leo void
    426        1.1       leo kbdbell()
    427        1.1       leo {
    428        1.3       leo 	register int	i, sps;
    429        1.1       leo 
    430        1.9       leo 	sps = splhigh();
    431        1.3       leo 	for (i = 0; i < sizeof(sound); i++) {
    432        1.8       leo 		YM2149->sd_selr = i;
    433        1.8       leo 		YM2149->sd_wdat = sound[i];
    434        1.3       leo 	}
    435        1.3       leo 	splx(sps);
    436       1.16       leo }
    437       1.16       leo 
    438       1.16       leo 
    439       1.16       leo /*
    440       1.16       leo  * Set the parameters of the 'default' beep.
    441       1.16       leo  */
    442       1.16       leo 
    443       1.16       leo #define KBDBELLCLOCK	125000	/* 2MHz / 16 */
    444       1.16       leo #define KBDBELLDURATION	128	/* 256 / 2MHz */
    445       1.16       leo 
    446       1.16       leo void
    447       1.16       leo kbd_bell_gparms(volume, pitch, duration)
    448       1.16       leo 	u_int	*volume, *pitch, *duration;
    449       1.16       leo {
    450       1.16       leo 	u_int	tmp;
    451       1.16       leo 
    452       1.16       leo 	tmp = sound[11] | (sound[12] << 8);
    453       1.16       leo 	*duration = (tmp * KBDBELLDURATION) / 1000;
    454       1.16       leo 
    455       1.16       leo 	tmp = sound[0] | (sound[1] << 8);
    456       1.16       leo 	*pitch = KBDBELLCLOCK / tmp;
    457       1.16       leo 
    458       1.16       leo 	*volume = 0;
    459       1.16       leo }
    460       1.16       leo 
    461       1.16       leo void
    462       1.16       leo kbd_bell_sparms(volume, pitch, duration)
    463       1.16       leo 	u_int	volume, pitch, duration;
    464       1.16       leo {
    465       1.16       leo 	u_int	f, t;
    466       1.16       leo 
    467       1.16       leo 	f = pitch > 10 ? pitch : 10;	/* minimum pitch */
    468       1.16       leo 	if (f > 20000)
    469       1.16       leo 		f = 20000;		/* maximum pitch */
    470       1.16       leo 
    471       1.16       leo 	f = KBDBELLCLOCK / f;
    472       1.16       leo 
    473       1.16       leo 	t = (duration * 1000) / KBDBELLDURATION;
    474       1.16       leo 
    475       1.16       leo 	sound[ 0] = f & 0xff;
    476       1.16       leo 	sound[ 1] = (f >> 8) & 0xf;
    477       1.16       leo 	f -= 1;
    478       1.16       leo 	sound[ 2] = f & 0xff;
    479       1.16       leo 	sound[ 3] = (f >> 8) & 0xf;
    480       1.16       leo 	f += 2;
    481       1.16       leo 	sound[ 4] = f & 0xff;
    482       1.16       leo 	sound[ 5] = (f >> 8) & 0xf;
    483       1.16       leo 
    484       1.16       leo 	sound[11] = t & 0xff;
    485       1.16       leo 	sound[12] = (t >> 8) & 0xff;
    486       1.16       leo 
    487       1.16       leo 	sound[13] = 0x03;
    488        1.1       leo }
    489        1.1       leo 
    490        1.1       leo int
    491        1.1       leo kbdgetcn()
    492        1.1       leo {
    493        1.1       leo 	u_char	code;
    494        1.4       leo 	int	s = spltty();
    495        1.4       leo 	int	ints_active;
    496        1.1       leo 
    497        1.4       leo 	ints_active = 0;
    498        1.4       leo 	if (MFP->mf_imrb & IB_AINT) {
    499        1.4       leo 		ints_active   = 1;
    500        1.4       leo 		MFP->mf_imrb &= ~IB_AINT;
    501        1.4       leo 	}
    502        1.3       leo 	for (;;) {
    503        1.4       leo 		while (!((KBD->ac_cs & (A_IRQ|A_RXRDY)) == (A_IRQ|A_RXRDY)))
    504        1.3       leo 			;	/* Wait for key	*/
    505        1.3       leo 		if (KBD->ac_cs & (A_OE|A_PE)) {
    506        1.3       leo 			code = KBD->ac_da;	/* Silently ignore errors */
    507        1.3       leo 			continue;
    508        1.3       leo 		}
    509       1.15       leo 		code = KBD->ac_da;
    510       1.15       leo 		if (!kbd_do_modifier(code))
    511       1.15       leo 			break;
    512        1.3       leo 	}
    513        1.1       leo 
    514        1.4       leo 	if (ints_active) {
    515       1.18       leo 		MFP->mf_iprb  = (u_int8_t)~IB_AINT;
    516        1.4       leo 		MFP->mf_imrb |=  IB_AINT;
    517        1.4       leo 	}
    518        1.1       leo 
    519        1.1       leo 	splx (s);
    520        1.1       leo 	return code;
    521        1.3       leo }
    522        1.3       leo 
    523        1.3       leo /*
    524        1.3       leo  * Write a command to the keyboard in 'polled' mode.
    525        1.3       leo  */
    526        1.3       leo static int
    527        1.4       leo kbd_write_poll(cmd, len)
    528        1.3       leo u_char	*cmd;
    529        1.3       leo int	len;
    530        1.3       leo {
    531        1.3       leo 	int	timeout;
    532        1.3       leo 
    533        1.3       leo 	while (len-- > 0) {
    534        1.3       leo 		KBD->ac_da = *cmd++;
    535        1.3       leo 		for (timeout = 100; !(KBD->ac_cs & A_TXRDY); timeout--)
    536        1.3       leo 			delay(10);
    537        1.3       leo 		if (!(KBD->ac_cs & A_TXRDY))
    538        1.3       leo 			return (0);
    539        1.3       leo 	}
    540        1.3       leo 	return (1);
    541        1.3       leo }
    542        1.3       leo 
    543        1.3       leo /*
    544        1.3       leo  * Write a command to the keyboard. Return when command is send.
    545        1.3       leo  */
    546        1.4       leo void
    547        1.3       leo kbd_write(cmd, len)
    548        1.3       leo u_char	*cmd;
    549        1.3       leo int	len;
    550        1.3       leo {
    551        1.3       leo 	struct kbd_softc	*k = &kbd_softc;
    552        1.3       leo 	int			sps;
    553        1.3       leo 
    554        1.3       leo 	/*
    555        1.3       leo 	 * Get to splhigh, 'real' interrupts arrive at spl6!
    556        1.3       leo 	 */
    557        1.3       leo 	sps = splhigh();
    558        1.3       leo 
    559        1.3       leo 	/*
    560        1.3       leo 	 * Make sure any privious write has ended...
    561        1.3       leo 	 */
    562        1.3       leo 	while (k->k_sendp != NULL)
    563        1.3       leo 		tsleep((caddr_t)&k->k_sendp, TTOPRI, "kbd_write1", 0);
    564        1.3       leo 
    565        1.3       leo 	/*
    566        1.3       leo 	 * If the KBD-acia is not currently busy, send the first
    567        1.3       leo 	 * character now.
    568        1.3       leo 	 */
    569        1.3       leo 	KBD->ac_cs = (k->k_soft_cs |= A_TXINT);
    570        1.3       leo 	if (KBD->ac_cs & A_TXRDY) {
    571        1.3       leo 		KBD->ac_da = *cmd++;
    572        1.3       leo 		len--;
    573        1.3       leo 	}
    574        1.3       leo 
    575        1.3       leo 	/*
    576        1.3       leo 	 * If we're not yet done, wait until all characters are send.
    577        1.3       leo 	 */
    578        1.3       leo 	if (len > 0) {
    579        1.3       leo 		k->k_sendp    = cmd;
    580        1.3       leo 		k->k_send_cnt = len;
    581        1.3       leo 		tsleep((caddr_t)&k->k_send_cnt, TTOPRI, "kbd_write2", 0);
    582        1.3       leo 	}
    583        1.3       leo 	splx(sps);
    584        1.3       leo 
    585        1.3       leo 	/*
    586        1.3       leo 	 * Wakeup all procs waiting for us.
    587        1.3       leo 	 */
    588        1.3       leo 	wakeup((caddr_t)&k->k_sendp);
    589        1.3       leo }
    590        1.3       leo 
    591        1.3       leo /*
    592        1.3       leo  * Setup softc-fields to assemble a keyboard package.
    593        1.3       leo  */
    594        1.3       leo static void
    595        1.3       leo kbd_pkg_start(kp, msg_start)
    596        1.3       leo struct kbd_softc *kp;
    597        1.3       leo u_char		 msg_start;
    598        1.3       leo {
    599        1.3       leo 	kp->k_pkg_idx    = 1;
    600        1.3       leo 	kp->k_package[0] = msg_start;
    601        1.3       leo 	switch (msg_start) {
    602        1.3       leo 		case 0xf6:
    603        1.9       leo 			kp->k_pkg_type = KBD_MEM_PKG;
    604        1.3       leo 			kp->k_pkg_size = 8;
    605        1.3       leo 			break;
    606        1.3       leo 		case 0xf7:
    607        1.9       leo 			kp->k_pkg_type = KBD_AMS_PKG;
    608        1.3       leo 			kp->k_pkg_size = 6;
    609        1.3       leo 			break;
    610        1.3       leo 		case 0xf8:
    611        1.3       leo 		case 0xf9:
    612        1.3       leo 		case 0xfa:
    613        1.3       leo 		case 0xfb:
    614        1.9       leo 			kp->k_pkg_type = KBD_RMS_PKG;
    615        1.3       leo 			kp->k_pkg_size = 3;
    616        1.3       leo 			break;
    617        1.3       leo 		case 0xfc:
    618        1.9       leo 			kp->k_pkg_type = KBD_CLK_PKG;
    619        1.3       leo 			kp->k_pkg_size = 7;
    620        1.3       leo 			break;
    621        1.3       leo 		case 0xfe:
    622        1.9       leo 			kp->k_pkg_type = KBD_JOY0_PKG;
    623        1.9       leo 			kp->k_pkg_size = 2;
    624        1.9       leo 			break;
    625        1.3       leo 		case 0xff:
    626        1.9       leo 			kp->k_pkg_type = KBD_JOY1_PKG;
    627        1.3       leo 			kp->k_pkg_size = 2;
    628        1.3       leo 			break;
    629        1.3       leo 		default:
    630       1.12  christos 			printf("kbd: Unknown packet 0x%x\n", msg_start);
    631        1.3       leo 			break;
    632        1.3       leo 	}
    633        1.1       leo }
    634       1.15       leo 
    635       1.15       leo /*
    636       1.15       leo  * Modifier processing
    637       1.15       leo  */
    638       1.15       leo static int
    639       1.15       leo kbd_do_modifier(code)
    640       1.15       leo u_char	code;
    641       1.15       leo {
    642       1.15       leo 	u_char	up, mask;
    643       1.15       leo 
    644       1.15       leo 	up   = KBD_RELEASED(code);
    645       1.15       leo 	mask = 0;
    646       1.15       leo 
    647       1.15       leo 	switch(KBD_SCANCODE(code)) {
    648       1.15       leo 		case KBD_LEFT_SHIFT:
    649       1.15       leo 			mask = KBD_MOD_LSHIFT;
    650       1.15       leo 			break;
    651       1.15       leo 		case KBD_RIGHT_SHIFT:
    652       1.15       leo 			mask = KBD_MOD_RSHIFT;
    653       1.15       leo 			break;
    654       1.15       leo 		case KBD_CTRL:
    655       1.15       leo 			mask = KBD_MOD_CTRL;
    656       1.15       leo 			break;
    657       1.15       leo 		case KBD_ALT:
    658       1.15       leo 			mask = KBD_MOD_ALT;
    659       1.15       leo 			break;
    660       1.15       leo 		case KBD_CAPS_LOCK:
    661       1.15       leo 			/* CAPSLOCK is a toggle */
    662       1.15       leo 			if(!up)
    663       1.15       leo 				kbd_modifier ^= KBD_MOD_CAPS;
    664       1.15       leo 			return 1;
    665       1.15       leo 	}
    666       1.15       leo 	if(mask) {
    667       1.15       leo 		if(up)
    668       1.15       leo 			kbd_modifier &= ~mask;
    669       1.15       leo 		else
    670       1.15       leo 			kbd_modifier |= mask;
    671       1.15       leo 		return 1;
    672       1.15       leo 	}
    673       1.15       leo 	return 0;
    674       1.15       leo }
    675