1320e7320Soki /* 2320e7320Soki * Copyright (c) 1992, 1993 3320e7320Soki * The Regents of the University of California. All rights reserved. 4320e7320Soki * 5320e7320Soki * This software was developed by the Computer Systems Engineering group 6320e7320Soki * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and 7320e7320Soki * contributed to Berkeley. 8320e7320Soki * 9320e7320Soki * All advertising materials mentioning features or use of this software 10320e7320Soki * must display the following acknowledgement: 11320e7320Soki * This product includes software developed by the University of 12320e7320Soki * California, Lawrence Berkeley Laboratory. 13320e7320Soki * 14320e7320Soki * Redistribution and use in source and binary forms, with or without 15320e7320Soki * modification, are permitted provided that the following conditions 16320e7320Soki * are met: 17320e7320Soki * 1. Redistributions of source code must retain the above copyright 18320e7320Soki * notice, this list of conditions and the following disclaimer. 19320e7320Soki * 2. Redistributions in binary form must reproduce the above copyright 20320e7320Soki * notice, this list of conditions and the following disclaimer in the 21320e7320Soki * documentation and/or other materials provided with the distribution. 22aad01611Sagc * 3. Neither the name of the University nor the names of its contributors 23320e7320Soki * may be used to endorse or promote products derived from this software 24320e7320Soki * without specific prior written permission. 25320e7320Soki * 26320e7320Soki * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 27320e7320Soki * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 28320e7320Soki * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 29320e7320Soki * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 30320e7320Soki * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 31320e7320Soki * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 32320e7320Soki * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 33320e7320Soki * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 34320e7320Soki * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 35320e7320Soki * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 36320e7320Soki * SUCH DAMAGE. 37320e7320Soki * 38320e7320Soki * @(#)kbd.h 8.1 (Berkeley) 6/11/93 39320e7320Soki * 40320e7320Soki * from: Header: kbd.h,v 1.5 92/11/26 01:15:33 torek Exp (LBL) 41*95e1ffb1Schristos * $NetBSD: kbd.h,v 1.4 2005/12/11 12:19:44 christos Exp $ 42320e7320Soki */ 43320e7320Soki 44320e7320Soki /* 45320e7320Soki * Keyboard `registers'. (This should be called kbd_reg.h but we need to 46320e7320Soki * be compatible.) 47320e7320Soki */ 48320e7320Soki 49320e7320Soki /* 50320e7320Soki * Control codes sent from type 2, 3, and 4 keyboards. 51320e7320Soki * 52320e7320Soki * Note that KBD_RESET is followed by a keyboard ID, while KBD_IDLE is not. 53320e7320Soki * KBD_IDLE does not take the place of any `up' transitions (it merely occurs 54320e7320Soki * after them). 55320e7320Soki */ 56320e7320Soki #define KBD_RESET 0xff /* keyboard `reset' response */ 57320e7320Soki #define KBD_IDLE 0x7f /* keyboard `all keys are up' code */ 58320e7320Soki 59320e7320Soki /* Keyboard IDs */ 60320e7320Soki #define KB_SUN2 2 /* type 2 keyboard */ 61320e7320Soki #define KB_SUN3 3 /* type 3 keyboard */ 62320e7320Soki #define KB_SUN4 4 /* type 4 keyboard */ 63320e7320Soki 64320e7320Soki /* Key codes are in 0x00..0x7e; KBD_UP is set if the key goes up */ 65320e7320Soki #define KBD_KEYMASK 0x7f /* keyboard key mask */ 66320e7320Soki #define KBD_UP 0x80 /* keyboard `up' transition */ 67320e7320Soki 68320e7320Soki /* Keyboard codes needed to recognize the L1-A sequence */ 69320e7320Soki #define KBD_L1 1 /* keyboard code for `L1' key */ 70320e7320Soki #define KBD_A 77 /* keyboard code for `A' key */ 71320e7320Soki 72320e7320Soki /* Control codes sent to the various keyboards */ 73320e7320Soki #define KBD_CMD_RESET 1 /* reset keyboard */ 74320e7320Soki #define KBD_CMD_BELL 2 /* turn bell on */ 75320e7320Soki #define KBD_CMD_NOBELL 3 /* turn bell off */ 76320e7320Soki #define KBD_CMD_CLICK 10 /* turn keyclick on */ 77320e7320Soki #define KBD_CMD_NOCLICK 11 /* turn keyclick off */ 78