17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*ae115bc7Smrj  * Common Development and Distribution License (the "License").
6*ae115bc7Smrj  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
217c478bd9Sstevel@tonic-gate /*
22*ae115bc7Smrj  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23*ae115bc7Smrj  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
26*ae115bc7Smrj #ifndef _BOOT_KEYBOARD_TABLE_H
27*ae115bc7Smrj #define	_BOOT_KEYBOARD_TABLE_H
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
307c478bd9Sstevel@tonic-gate 
317c478bd9Sstevel@tonic-gate /*
32*ae115bc7Smrj  * Structure of the keyboard table for the bootstrap simple
337c478bd9Sstevel@tonic-gate  * keyboard driver.
347c478bd9Sstevel@tonic-gate  */
357c478bd9Sstevel@tonic-gate 
367c478bd9Sstevel@tonic-gate #ifdef __cplusplus
377c478bd9Sstevel@tonic-gate extern "C" {
387c478bd9Sstevel@tonic-gate #endif
397c478bd9Sstevel@tonic-gate 
407c478bd9Sstevel@tonic-gate #define	KBTYPE_NORMAL	0x000	/* Normal keys, process mindlessly. */
417c478bd9Sstevel@tonic-gate #define	KBTYPE_ALPHA	0x100	/* Alpha.  If CapsLock is set, swap */
427c478bd9Sstevel@tonic-gate 				/* shifted and unshifted meanings. */
437c478bd9Sstevel@tonic-gate 				/* Set this on the unshifted character */
447c478bd9Sstevel@tonic-gate #define	KBTYPE_NUMPAD	0x200	/* Numeric/Arrow Pad.  If NumLock is set, */
457c478bd9Sstevel@tonic-gate 				/* swap shifted and unshifted meanings. */
467c478bd9Sstevel@tonic-gate 				/* Set this on the unshifted character. */
477c478bd9Sstevel@tonic-gate #define	KBTYPE_FUNC	0x300	/* Extended Function.  Send this code, */
487c478bd9Sstevel@tonic-gate 				/* prefixed with zero. */
497c478bd9Sstevel@tonic-gate #define	KBTYPE_SPEC	0x400	/* One-of-a-kind codes.  Self-explanatory. */
50*ae115bc7Smrj #define	KBTYPE_SPEC_NOP			(KBTYPE_SPEC | 0x00)
51*ae115bc7Smrj #define	KBTYPE_SPEC_UNDEF		(KBTYPE_SPEC | 0x01)
52*ae115bc7Smrj #define	KBTYPE_SPEC_LSHIFT		(KBTYPE_SPEC | 0x02)
53*ae115bc7Smrj #define	KBTYPE_SPEC_RSHIFT		(KBTYPE_SPEC | 0x03)
54*ae115bc7Smrj #define	KBTYPE_SPEC_CTRL		(KBTYPE_SPEC | 0x04)
55*ae115bc7Smrj #define	KBTYPE_SPEC_ALT			(KBTYPE_SPEC | 0x05)
56*ae115bc7Smrj #define	KBTYPE_SPEC_CAPS_LOCK		(KBTYPE_SPEC | 0x06)
57*ae115bc7Smrj #define	KBTYPE_SPEC_NUM_LOCK		(KBTYPE_SPEC | 0x07)
58*ae115bc7Smrj #define	KBTYPE_SPEC_SCROLL_LOCK		(KBTYPE_SPEC | 0x08)
59*ae115bc7Smrj #define	KBTYPE_SPEC_MAYBE_REBOOT	(KBTYPE_SPEC | 0x09)
607c478bd9Sstevel@tonic-gate 
617c478bd9Sstevel@tonic-gate struct keyboard_translate {
627c478bd9Sstevel@tonic-gate 	unsigned short normal;
637c478bd9Sstevel@tonic-gate 	unsigned short shifted;
647c478bd9Sstevel@tonic-gate 	unsigned short ctrled;
657c478bd9Sstevel@tonic-gate 	unsigned short alted;
667c478bd9Sstevel@tonic-gate };
677c478bd9Sstevel@tonic-gate 
687c478bd9Sstevel@tonic-gate extern struct keyboard_translate keyboard_translate[128];
697c478bd9Sstevel@tonic-gate 
707c478bd9Sstevel@tonic-gate #ifdef __cplusplus
717c478bd9Sstevel@tonic-gate }
727c478bd9Sstevel@tonic-gate #endif
737c478bd9Sstevel@tonic-gate 
74*ae115bc7Smrj #endif /* _BOOT_KEYBOARD_TABLE_H */
75