kernel - Fix callout_stop/callout_reset rearm race
[dragonfly.git] / sys / sys / kbio.h
blob53d21d4484d04f2b6a494425c67294b34cdbd205
1 /*-
2 * $FreeBSD: src/sys/sys/kbio.h,v 1.5.2.1 2000/10/29 16:59:32 dwmalone Exp $
3 */
5 #ifndef _SYS_KBIO_H_
6 #define _SYS_KBIO_H_
8 #ifndef _SYS_TYPES_H_
9 #include <sys/types.h>
10 #endif
11 #ifndef _SYS_IOCCOM_H_
12 #include <sys/ioccom.h>
13 #endif
15 /* get/set keyboard I/O mode */
16 #define K_RAW 0 /* keyboard returns scancodes */
17 #define K_XLATE 1 /* keyboard returns ascii */
18 #define K_CODE 2 /* keyboard returns keycodes */
19 #define KDGKBMODE _IOR('K', 6, int)
20 #define KDSKBMODE _IO('K', 7 /*, int */)
22 /* make tone */
23 #define KDMKTONE _IO('K', 8 /*, int */)
25 /* see console.h for the definitions of the following ioctls */
26 #if 0 /* notdef */
27 #define KDGETMODE _IOR('K', 9, int)
28 #define KDSETMODE _IO('K', 10 /*, int */)
29 #define KDSBORDER _IO('K', 13 /*, int */)
30 #endif
32 /* get/set keyboard lock state */
33 #define CLKED 1 /* Caps locked */
34 #define NLKED 2 /* Num locked */
35 #define SLKED 4 /* Scroll locked */
36 #define ALKED 8 /* AltGr locked */
37 #define LOCK_MASK (CLKED | NLKED | SLKED | ALKED)
38 #define KDGKBSTATE _IOR('K', 19, int)
39 #define KDSKBSTATE _IO('K', 20 /*, int */)
41 /* enable/disable I/O access */
42 #define KDENABIO _IO('K', 60)
43 #define KDDISABIO _IO('K', 61)
45 /* make sound */
46 #define KIOCSOUND _IO('K', 63 /*, int */)
48 /* get keyboard model */
49 #define KB_OTHER 0 /* keyboard not known */
50 #define KB_84 1 /* 'old' 84 key AT-keyboard */
51 #define KB_101 2 /* MF-101 or MF-102 keyboard */
52 #define KDGKBTYPE _IOR('K', 64, int)
54 /* get/set keyboard LED state */
55 #define LED_CAP 1 /* Caps lock LED */
56 #define LED_NUM 2 /* Num lock LED */
57 #define LED_SCR 4 /* Scroll lock LED */
58 #define LED_MASK (LED_CAP | LED_NUM | LED_SCR)
59 #define KDGETLED _IOR('K', 65, int)
60 #define KDSETLED _IO('K', 66 /*, int */)
62 /* set keyboard repeat rate (obsolete, use KDSETREPEAT below) */
63 #define KDSETRAD _IO('K', 67 /*, int */)
65 /* see console.h for the definition of the following ioctl */
66 #if 0 /* notdef */
67 #define KDRASTER _IOW('K', 100, scr_size_t)
68 #endif
70 /* get keyboard information */
71 struct keyboard_info {
72 int kb_index; /* kbdio index# */
73 char kb_name[16]; /* driver name */
74 int kb_unit; /* unit# */
75 int kb_type; /* KB_84, KB_101, KB_OTHER,... */
76 int kb_config; /* device configuration flags */
77 int kb_flags; /* internal flags */
79 typedef struct keyboard_info keyboard_info_t;
80 #define KBADDKBD _IOW('K', 68, keyboard_info_t) /* add keyboard */
81 #define KBRELKBD _IOW('K', 69, keyboard_info_t) /* release keyboard */
82 #define KDGKBINFO _IOR('K', 101, keyboard_info_t)
84 /* set/get keyboard repeat rate (new interface) */
85 struct keyboard_repeat {
86 int kb_repeat[2];
88 typedef struct keyboard_repeat keyboard_repeat_t;
89 #define KDSETREPEAT _IOW('K', 102, keyboard_repeat_t)
90 #define KDGETREPEAT _IOR('K', 103, keyboard_repeat_t)
92 /* get/set key map/accent map/function key strings */
94 #define NUM_KEYS 256 /* number of keys in table */
95 #define NUM_STATES 8 /* states per key */
96 #define ALTGR_OFFSET 128 /* offset for altlock keys */
98 #define NUM_DEADKEYS 15 /* number of accent keys */
99 #define NUM_ACCENTCHARS 52 /* max number of accent chars */
101 #define NUM_FKEYS 96 /* max number of function keys */
102 #define MAXFK 16 /* max length of a function key str */
104 #ifndef _KEYMAP_DECLARED
105 #define _KEYMAP_DECLARED
107 struct keyent_t {
108 u_char map[NUM_STATES];
109 u_char spcl;
110 u_char flgs;
111 #define FLAG_LOCK_O 0
112 #define FLAG_LOCK_C 1
113 #define FLAG_LOCK_N 2
116 struct keymap {
117 u_short n_keys;
118 struct keyent_t key[NUM_KEYS];
120 typedef struct keymap keymap_t;
122 #ifdef _KERNEL
123 struct okeyent_t {
124 u_char map[NUM_STATES];
125 u_char spcl;
126 u_char flgs;
129 struct okeymap {
130 u_short n_keys;
131 struct okeyent_t key[NUM_KEYS];
133 typedef struct okeymap okeymap_t;
134 #endif /* _KERNEL */
136 #endif /* !_KEYMAP_DECLARED */
138 /* defines for "special" keys (spcl bit set in keymap) */
139 #define NOP 0x00 /* nothing (dead key) */
140 #define LSH 0x02 /* left shift key */
141 #define RSH 0x03 /* right shift key */
142 #define CLK 0x04 /* caps lock key */
143 #define NLK 0x05 /* num lock key */
144 #define SLK 0x06 /* scroll lock key */
145 #define LALT 0x07 /* left alt key */
146 #define BTAB 0x08 /* backwards tab */
147 #define LCTR 0x09 /* left control key */
148 #define NEXT 0x0a /* switch to next screen */
149 #define F_SCR 0x0b /* switch to first screen */
150 #define L_SCR 0x1a /* switch to last screen */
151 #define F_FN 0x1b /* first function key */
152 #define L_FN 0x7a /* last function key */
153 /* 0x7b-0x7f reserved do not use ! */
154 #define RCTR 0x80 /* right control key */
155 #define RALT 0x81 /* right alt (altgr) key */
156 #define ALK 0x82 /* alt lock key */
157 #define ASH 0x83 /* alt shift key */
158 #define META 0x84 /* meta key */
159 #define RBT 0x85 /* boot machine */
160 #define DBG 0x86 /* call debugger */
161 #define SUSP 0x87 /* suspend power (APM) */
162 #define SPSC 0x88 /* toggle splash/text screen */
164 #define F_ACC DGRA /* first accent key */
165 #define DGRA 0x89 /* grave */
166 #define DACU 0x8a /* acute */
167 #define DCIR 0x8b /* circumflex */
168 #define DTIL 0x8c /* tilde */
169 #define DMAC 0x8d /* macron */
170 #define DBRE 0x8e /* breve */
171 #define DDOT 0x8f /* dot */
172 #define DUML 0x90 /* umlaut/diaresis */
173 #define DDIA 0x90 /* diaresis */
174 #define DSLA 0x91 /* slash */
175 #define DRIN 0x92 /* ring */
176 #define DCED 0x93 /* cedilla */
177 #define DAPO 0x94 /* apostrophe */
178 #define DDAC 0x95 /* double acute */
179 #define DOGO 0x96 /* ogonek */
180 #define DCAR 0x97 /* caron */
181 #define L_ACC DCAR /* last accent key */
183 #define STBY 0x98 /* Go into standby mode (apm) */
184 #define PREV 0x99 /* switch to previous screen */
185 #define PNC 0x9a /* force system panic */
186 #define LSHA 0x9b /* left shift key / alt lock */
187 #define RSHA 0x9c /* right shift key / alt lock */
188 #define LCTRA 0x9d /* left ctrl key / alt lock */
189 #define RCTRA 0x9e /* right ctrl key / alt lock */
190 #define LALTA 0x9f /* left alt key / alt lock */
191 #define RALTA 0xa0 /* right alt key / alt lock */
192 #define HALT 0xa1 /* halt machine */
193 #define PDWN 0xa2 /* halt machine and power down */
194 #define PASTE 0xa3 /* paste from cut-paste buffer */
196 #define F(x) ((x)+F_FN-1)
197 #define S(x) ((x)+F_SCR-1)
198 #define ACC(x) ((x)+F_ACC)
200 struct acc_t {
201 u_char accchar;
202 u_char map[NUM_ACCENTCHARS][2];
205 struct accentmap {
206 u_short n_accs;
207 struct acc_t acc[NUM_DEADKEYS];
209 typedef struct accentmap accentmap_t;
211 struct keyarg {
212 u_short keynum;
213 struct keyent_t key;
215 typedef struct keyarg keyarg_t;
217 struct fkeytab {
218 u_char str[MAXFK];
219 u_char len;
221 typedef struct fkeytab fkeytab_t;
223 struct fkeyarg {
224 u_short keynum;
225 char keydef[MAXFK];
226 char flen;
228 typedef struct fkeyarg fkeyarg_t;
230 #define GETFKEY _IOWR('k', 0, fkeyarg_t)
231 #define SETFKEY _IOWR('k', 1, fkeyarg_t)
232 #if 0 /* see console.h */
233 #define GIO_SCRNMAP _IOR('k', 2, scrmap_t)
234 #define PIO_SCRNMAP _IOW('k', 3, scrmap_t)
235 #endif
236 #define GIO_KEYMAP _IOR('k', 6, keymap_t)
237 #define PIO_KEYMAP _IOW('k', 7, keymap_t)
238 #ifdef _KERNEL
239 #define OGIO_KEYMAP _IOR('k', 6, okeymap_t)
240 #define OPIO_KEYMAP _IOW('k', 7, okeymap_t)
241 #endif /* _KERNEL */
242 #define GIO_DEADKEYMAP _IOR('k', 8, accentmap_t)
243 #define PIO_DEADKEYMAP _IOW('k', 9, accentmap_t)
244 #define GIO_KEYMAPENT _IOWR('k', 10, keyarg_t)
245 #define PIO_KEYMAPENT _IOW('k', 11, keyarg_t)
247 /* flags set to the return value in the KD_XLATE mode */
249 #define NOKEY 0x100 /* no key pressed marker */
250 #define FKEY 0x200 /* function key marker */
251 #define MKEY 0x400 /* meta key marker (prepend ESC)*/
252 #define BKEY 0x800 /* backtab (ESC [ Z) */
254 #define SPCLKEY 0x8000 /* special key */
255 #define RELKEY 0x4000 /* key released */
256 #define ERRKEY 0x2000 /* error */
258 #define KEYCHAR(c) ((c) & 0x00ff)
259 #define KEYFLAGS(c) ((c) & ~0x00ff)
261 #endif /* !_SYS_KBIO_H_ */