Home | History | Annotate | Line # | Download | only in common
dnkbd.c revision 1.12
      1  1.12    martin /*	$NetBSD: dnkbd.c,v 1.12 2008/04/28 20:23:19 martin Exp $	*/
      2   1.1   thorpej 
      3   1.1   thorpej /*-
      4   1.1   thorpej  * Copyright (c) 1997 The NetBSD Foundation, Inc.
      5   1.1   thorpej  * All rights reserved.
      6   1.1   thorpej  *
      7   1.1   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1   thorpej  * by Michael Smith and Jason R. Thorpe.
      9   1.1   thorpej  *
     10   1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     11   1.1   thorpej  * modification, are permitted provided that the following conditions
     12   1.1   thorpej  * are met:
     13   1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     14   1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     15   1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17   1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     18   1.1   thorpej  *
     19   1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.1   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.4       jtc  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.4       jtc  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1   thorpej  */
     31   1.1   thorpej 
     32   1.1   thorpej /*
     33   1.1   thorpej  * Apollo Domain keyboard routines for the standalone ITE.
     34   1.1   thorpej  */
     35   1.1   thorpej 
     36   1.1   thorpej #if defined(ITECONSOLE) && defined(DOMAIN_KEYBOARD)
     37   1.1   thorpej 
     38   1.1   thorpej #include <sys/param.h>
     39   1.1   thorpej 
     40   1.3   thorpej #include <hp300/dev/frodoreg.h>		/* for apci offsets */
     41  1.10   tsutsui #include <hp300/dev/intioreg.h>		/* for frodo offsets */
     42   1.1   thorpej 
     43   1.6   tsutsui #include <hp300/stand/common/dcareg.h>	/* for the register bit definitions */
     44   1.6   tsutsui #include <hp300/stand/common/apcireg.h>	/* for the apci registers */
     45   1.1   thorpej #include <hp300/stand/common/samachdep.h>
     46   1.1   thorpej #include <hp300/stand/common/kbdvar.h>
     47   1.1   thorpej 
     48   1.1   thorpej #ifndef SMALL
     49   1.1   thorpej 
     50   1.1   thorpej /*
     51   1.1   thorpej  * The Apollo keyboard is used in `cooked' mode as configured by the
     52   1.1   thorpej  * firmware; only one table is required.
     53   1.1   thorpej  *
     54   1.1   thorpej  * Note that if an entry in this table is set to 0, the key is passed
     55   1.1   thorpej  * through untranslated.  If the entry is 0xff, the key is ignored.
     56   1.1   thorpej  */
     57   1.1   thorpej u_char dnkbd_keymap[] = {
     58   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 07 */
     59   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0f */
     60   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 17 */
     61   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 1f */
     62   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 27 */
     63   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 2f */
     64   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 37 */
     65   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 3f */
     66   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 47 */
     67   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 4f */
     68   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 57 */
     69   1.1   thorpej 	0x00, 0x00, 0x00, '{',  0x00, '}',  0x00, 0x00, /* 5f */
     70   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 67 */
     71   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 6f */
     72   1.1   thorpej 	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 77 */
     73   1.1   thorpej 	0x00, 0x00, 0x00, '[',  0x00, ']',  0x00, 0x00, /* 7f */
     74   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 87 */
     75   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 8f */
     76   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 97 */
     77   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* 9f */
     78   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* a7 */
     79   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* af */
     80   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* b7 */
     81   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* bf */
     82   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* c7 */
     83   1.1   thorpej 	'\\', '|',  0x09, 0x0a, '/',  0xff, 0xff, 0xff, /* cf */
     84   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* d7 */
     85   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, '?',  0xff, 0x08, 0xff, /* df */
     86   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* e7 */
     87   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* ef */
     88   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* f7 */
     89   1.1   thorpej 	0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, /* ff */
     90   1.1   thorpej };
     91   1.1   thorpej 
     92   1.1   thorpej int	dnkbd_ignore;		/* for ignoring mouse packets */
     93   1.1   thorpej 
     94   1.1   thorpej int
     95   1.8   tsutsui dnkbd_getc(void)
     96   1.1   thorpej {
     97   1.3   thorpej 	struct apciregs *apci =
     98   1.3   thorpej 	    (struct apciregs *)IIOV(FRODO_BASE + FRODO_APCI_OFFSET(0));
     99   1.1   thorpej 	int c;
    100   1.1   thorpej 
    101   1.1   thorpej 	/* default to `no key' */
    102   1.1   thorpej 	c = 0;
    103   1.1   thorpej 
    104   1.1   thorpej 	/* Is data in the UART? */
    105   1.1   thorpej 	if (apci->ap_lsr & LSR_RXRDY) {
    106   1.1   thorpej 		/* Get the character. */
    107   1.1   thorpej 		c = apci->ap_data;
    108   1.1   thorpej 
    109   1.1   thorpej 		/* Ignoring mouse? */
    110   1.1   thorpej 		if (dnkbd_ignore) {
    111   1.1   thorpej 			dnkbd_ignore--;
    112   1.7   tsutsui 			return 0;
    113   1.1   thorpej 		}
    114   1.1   thorpej 
    115   1.1   thorpej 		/* Is this the start of a mouse packet? */
    116   1.1   thorpej 		if (c == 0xdf) {
    117   1.1   thorpej 			dnkbd_ignore = 3;	/* 3 bytes of junk */
    118   1.7   tsutsui 			return 0;
    119   1.1   thorpej 		}
    120   1.1   thorpej 
    121   1.1   thorpej 		/* It's a keyboard event. */
    122   1.1   thorpej 		switch (dnkbd_keymap[c]) {
    123   1.1   thorpej 		case 0x00:
    124   1.1   thorpej 			/* passthrough */
    125   1.1   thorpej 			break;
    126   1.1   thorpej 
    127   1.1   thorpej 		case 0xff:
    128   1.1   thorpej 			/* ignore */
    129   1.1   thorpej 			c = 0;
    130   1.1   thorpej 			break;
    131   1.1   thorpej 
    132   1.1   thorpej 		default:
    133   1.1   thorpej 			c = dnkbd_keymap[c];
    134   1.1   thorpej 			break;
    135   1.1   thorpej 		}
    136   1.1   thorpej 	}
    137   1.1   thorpej 
    138   1.7   tsutsui 	return c;
    139   1.1   thorpej }
    140   1.1   thorpej #endif /* SMALL */
    141   1.1   thorpej 
    142   1.1   thorpej void
    143   1.8   tsutsui dnkbd_nmi(void)
    144   1.1   thorpej {
    145   1.1   thorpej 
    146   1.1   thorpej 	/*
    147   1.1   thorpej 	 * XXX Should we do anything?  Can we even generate one?
    148   1.1   thorpej 	 */
    149   1.1   thorpej }
    150   1.1   thorpej 
    151   1.1   thorpej int
    152   1.8   tsutsui dnkbd_init(void)
    153   1.1   thorpej {
    154   1.2   thorpej 
    155   1.2   thorpej 	/*
    156   1.2   thorpej 	 * 400, 425, and 433 models can have a Domain keyboard.
    157   1.2   thorpej 	 */
    158   1.2   thorpej 	switch (machineid) {
    159   1.2   thorpej 	case HP_400:
    160   1.2   thorpej 	case HP_425:
    161   1.2   thorpej 	case HP_433:
    162   1.2   thorpej 		break;
    163   1.2   thorpej 	default:
    164   1.7   tsutsui 		return 0;
    165   1.2   thorpej 	}
    166   1.1   thorpej 
    167   1.1   thorpej 	/*
    168   1.1   thorpej 	 * Look for a Frodo utility chip.  If we find one, assume there
    169   1.1   thorpej 	 * is a Domain keyboard attached.
    170   1.1   thorpej 	 */
    171  1.11  christos 	if (badaddr((void *)IIOV(FRODO_BASE + FRODO_APCI_OFFSET(0))))
    172   1.7   tsutsui 		return 0;
    173   1.1   thorpej 
    174   1.1   thorpej 	/*
    175   1.1   thorpej 	 * XXX Any other initialization?  This appears to work ok.
    176   1.1   thorpej 	 */
    177   1.7   tsutsui 	return 1;
    178   1.1   thorpej }
    179   1.1   thorpej #endif /* ITECONSOLE && DOMAIN_KEYBOARD */
    180