11.1Soki/* 21.1Soki * Copyright (c) 1992, 1993 31.1Soki * The Regents of the University of California. All rights reserved. 41.1Soki * 51.1Soki * This software was developed by the Computer Systems Engineering group 61.1Soki * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and 71.1Soki * contributed to Berkeley. 81.1Soki * 91.1Soki * All advertising materials mentioning features or use of this software 101.1Soki * must display the following acknowledgement: 111.1Soki * This product includes software developed by the University of 121.1Soki * California, Lawrence Berkeley Laboratory. 131.1Soki * 141.1Soki * Redistribution and use in source and binary forms, with or without 151.1Soki * modification, are permitted provided that the following conditions 161.1Soki * are met: 171.1Soki * 1. Redistributions of source code must retain the above copyright 181.1Soki * notice, this list of conditions and the following disclaimer. 191.1Soki * 2. Redistributions in binary form must reproduce the above copyright 201.1Soki * notice, this list of conditions and the following disclaimer in the 211.1Soki * documentation and/or other materials provided with the distribution. 221.3Sagc * 3. Neither the name of the University nor the names of its contributors 231.1Soki * may be used to endorse or promote products derived from this software 241.1Soki * without specific prior written permission. 251.1Soki * 261.1Soki * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 271.1Soki * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 281.1Soki * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 291.1Soki * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 301.1Soki * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 311.1Soki * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 321.1Soki * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 331.1Soki * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 341.1Soki * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 351.1Soki * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 361.1Soki * SUCH DAMAGE. 371.1Soki * 381.1Soki * @(#)kbd.h 8.1 (Berkeley) 6/11/93 391.1Soki * 401.2Slukem * from: Header: kbd.h,v 1.5 92/11/26 01:15:33 torek Exp (LBL) 411.4Schristos * $NetBSD: kbd.h,v 1.4 2005/12/11 12:19:44 christos Exp $ 421.1Soki */ 431.1Soki 441.1Soki/* 451.1Soki * Keyboard `registers'. (This should be called kbd_reg.h but we need to 461.1Soki * be compatible.) 471.1Soki */ 481.1Soki 491.1Soki/* 501.1Soki * Control codes sent from type 2, 3, and 4 keyboards. 511.1Soki * 521.1Soki * Note that KBD_RESET is followed by a keyboard ID, while KBD_IDLE is not. 531.1Soki * KBD_IDLE does not take the place of any `up' transitions (it merely occurs 541.1Soki * after them). 551.1Soki */ 561.1Soki#define KBD_RESET 0xff /* keyboard `reset' response */ 571.1Soki#define KBD_IDLE 0x7f /* keyboard `all keys are up' code */ 581.1Soki 591.1Soki/* Keyboard IDs */ 601.1Soki#define KB_SUN2 2 /* type 2 keyboard */ 611.1Soki#define KB_SUN3 3 /* type 3 keyboard */ 621.1Soki#define KB_SUN4 4 /* type 4 keyboard */ 631.1Soki 641.1Soki/* Key codes are in 0x00..0x7e; KBD_UP is set if the key goes up */ 651.1Soki#define KBD_KEYMASK 0x7f /* keyboard key mask */ 661.1Soki#define KBD_UP 0x80 /* keyboard `up' transition */ 671.1Soki 681.1Soki/* Keyboard codes needed to recognize the L1-A sequence */ 691.1Soki#define KBD_L1 1 /* keyboard code for `L1' key */ 701.1Soki#define KBD_A 77 /* keyboard code for `A' key */ 711.1Soki 721.1Soki/* Control codes sent to the various keyboards */ 731.1Soki#define KBD_CMD_RESET 1 /* reset keyboard */ 741.1Soki#define KBD_CMD_BELL 2 /* turn bell on */ 751.1Soki#define KBD_CMD_NOBELL 3 /* turn bell off */ 761.1Soki#define KBD_CMD_CLICK 10 /* turn keyclick on */ 771.1Soki#define KBD_CMD_NOCLICK 11 /* turn keyclick off */ 78