xref: /utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/input.h (revision 53ee8cc121a030b8d368113ac3e966b4705770ef)
1 #ifndef _INPUT_H
2 #define _INPUT_H
3 
4 /*
5  * Copyright (c) 1999-2002 Vojtech Pavlik
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License version 2 as published by
9  * the Free Software Foundation.
10  */
11 
12 #include <sys/time.h>
13 #include <sys/ioctl.h>
14 #include <sys/types.h>
15 #include <asm/types.h>
16 
17 /*
18  * The event structure itself
19  */
20 
21 struct input_event {
22 	struct timeval time;
23 	__u16 type;
24 	__u16 code;
25 	__s32 value;
26 };
27 
28 /*
29  * Protocol version.
30  */
31 
32 #define EV_VERSION		0x010000
33 
34 /*
35  * IOCTLs (0x00 - 0x7f)
36  */
37 
38 struct input_id {
39 	__u16 bustype;
40 	__u16 vendor;
41 	__u16 product;
42 	__u16 version;
43 };
44 
45 struct input_absinfo {
46 	__s32 value;
47 	__s32 minimum;
48 	__s32 maximum;
49 	__s32 fuzz;
50 	__s32 flat;
51 };
52 
53 #define EVIOCGVERSION		_IOR('E', 0x01, int)			/* get driver version */
54 #define EVIOCGID		_IOR('E', 0x02, struct input_id)	/* get device ID */
55 #define EVIOCGREP		_IOR('E', 0x03, int[2])			/* get repeat settings */
56 #define EVIOCSREP		_IOW('E', 0x03, int[2])			/* set repeat settings */
57 #define EVIOCGKEYCODE		_IOR('E', 0x04, int[2])			/* get keycode */
58 #define EVIOCSKEYCODE		_IOW('E', 0x04, int[2])			/* set keycode */
59 
60 #define EVIOCGNAME(len)		_IOC(_IOC_READ, 'E', 0x06, len)		/* get device name */
61 #define EVIOCGPHYS(len)		_IOC(_IOC_READ, 'E', 0x07, len)		/* get physical location */
62 #define EVIOCGUNIQ(len)		_IOC(_IOC_READ, 'E', 0x08, len)		/* get unique identifier */
63 
64 #define EVIOCGKEY(len)		_IOC(_IOC_READ, 'E', 0x18, len)		/* get global keystate */
65 #define EVIOCGLED(len)		_IOC(_IOC_READ, 'E', 0x19, len)		/* get all LEDs */
66 #define EVIOCGSND(len)		_IOC(_IOC_READ, 'E', 0x1a, len)		/* get all sounds status */
67 #define EVIOCGSW(len)		_IOC(_IOC_READ, 'E', 0x1b, len)		/* get all switch states */
68 
69 #define EVIOCGBIT(ev,len)	_IOC(_IOC_READ, 'E', 0x20 + ev, len)	/* get event bits */
70 #define EVIOCGABS(abs)		_IOR('E', 0x40 + abs, struct input_absinfo)		/* get abs value/limits */
71 #define EVIOCSABS(abs)		_IOW('E', 0xc0 + abs, struct input_absinfo)		/* set abs value/limits */
72 
73 #define EVIOCSFF		_IOC(_IOC_WRITE, 'E', 0x80, sizeof(struct ff_effect))	/* send a force effect to a force feedback device */
74 #define EVIOCRMFF		_IOW('E', 0x81, int)			/* Erase a force effect */
75 #define EVIOCGEFFECTS		_IOR('E', 0x84, int)			/* Report number of effects playable at the same time */
76 
77 #define EVIOCGRAB		_IOW('E', 0x90, int)			/* Grab/Release device */
78 
79 /*
80  * Event types
81  */
82 
83 #define EV_SYN			0x00
84 #define EV_KEY			0x01
85 #define EV_REL			0x02
86 #define EV_ABS			0x03
87 #define EV_MSC			0x04
88 #define EV_SW			0x05
89 #define EV_LED			0x11
90 #define EV_SND			0x12
91 #define EV_REP			0x14
92 #define EV_FF			0x15
93 #define EV_PWR			0x16
94 #define EV_FF_STATUS		0x17
95 #define EV_MAX			0x1f
96 #define EV_CNT			(EV_MAX+1)
97 
98 /*
99  * Synchronization events.
100  */
101 
102 #define SYN_REPORT		0
103 #define SYN_CONFIG		1
104 
105 /*
106  * Keys and buttons
107  *
108  * Most of the keys/buttons are modeled after USB HUT 1.12
109  * (see http://www.usb.org/developers/hidpage).
110  * Abbreviations in the comments:
111  * AC - Application Control
112  * AL - Application Launch Button
113  * SC - System Control
114  */
115 
116 #define KEY_RESERVED		0
117 #define KEY_ESC			1
118 #define KEY_1			2
119 #define KEY_2			3
120 #define KEY_3			4
121 #define KEY_4			5
122 #define KEY_5			6
123 #define KEY_6			7
124 #define KEY_7			8
125 #define KEY_8			9
126 #define KEY_9			10
127 #define KEY_0			11
128 #define KEY_MINUS		12
129 #define KEY_EQUAL		13
130 #define KEY_BACKSPACE		14
131 #define KEY_TAB			15
132 #define KEY_Q			16
133 #define KEY_W			17
134 #define KEY_E			18
135 #define KEY_R			19
136 #define KEY_T			20
137 #define KEY_Y			21
138 #define KEY_U			22
139 #define KEY_I			23
140 #define KEY_O			24
141 #define KEY_P			25
142 #define KEY_LEFTBRACE		26
143 #define KEY_RIGHTBRACE		27
144 #define KEY_ENTER		28
145 #define KEY_LEFTCTRL		29
146 #define KEY_A			30
147 #define KEY_S			31
148 #define KEY_D			32
149 #define KEY_F			33
150 #define KEY_G			34
151 #define KEY_H			35
152 #define KEY_J			36
153 #define KEY_K			37
154 #define KEY_L			38
155 #define KEY_SEMICOLON		39
156 #define KEY_APOSTROPHE		40
157 #define KEY_GRAVE		41
158 #define KEY_LEFTSHIFT		42
159 #define KEY_BACKSLASH		43
160 #define KEY_Z			44
161 #define KEY_X			45
162 #define KEY_C			46
163 #define KEY_V			47
164 #define KEY_B			48
165 #define KEY_N			49
166 #define KEY_M			50
167 #define KEY_COMMA		51
168 #define KEY_DOT			52
169 #define KEY_SLASH		53
170 #define KEY_RIGHTSHIFT		54
171 #define KEY_KPASTERISK		55
172 #define KEY_LEFTALT		56
173 #define KEY_SPACE		57
174 #define KEY_CAPSLOCK		58
175 #define KEY_F1			59
176 #define KEY_F2			60
177 #define KEY_F3			61
178 #define KEY_F4			62
179 #define KEY_F5			63
180 #define KEY_F6			64
181 #define KEY_F7			65
182 #define KEY_F8			66
183 #define KEY_F9			67
184 #define KEY_F10			68
185 #define KEY_NUMLOCK		69
186 #define KEY_SCROLLLOCK		70
187 #define KEY_KP7			71
188 #define KEY_KP8			72
189 #define KEY_KP9			73
190 #define KEY_KPMINUS		74
191 #define KEY_KP4			75
192 #define KEY_KP5			76
193 #define KEY_KP6			77
194 #define KEY_KPPLUS		78
195 #define KEY_KP1			79
196 #define KEY_KP2			80
197 #define KEY_KP3			81
198 #define KEY_KP0			82
199 #define KEY_KPDOT		83
200 
201 #define KEY_ZENKAKUHANKAKU	85
202 #define KEY_102ND		86
203 #define KEY_F11			87
204 #define KEY_F12			88
205 #define KEY_RO			89
206 #define KEY_KATAKANA		90
207 #define KEY_HIRAGANA		91
208 #define KEY_HENKAN		92
209 #define KEY_KATAKANAHIRAGANA	93
210 #define KEY_MUHENKAN		94
211 #define KEY_KPJPCOMMA		95
212 #define KEY_KPENTER		96
213 #define KEY_RIGHTCTRL		97
214 #define KEY_KPSLASH		98
215 #define KEY_SYSRQ		99
216 #define KEY_RIGHTALT		100
217 #define KEY_LINEFEED		101
218 #define KEY_HOME		102
219 #define KEY_UP			103
220 #define KEY_PAGEUP		104
221 #define KEY_LEFT		105
222 #define KEY_RIGHT		106
223 #define KEY_END			107
224 #define KEY_DOWN		108
225 #define KEY_PAGEDOWN		109
226 #define KEY_INSERT		110
227 #define KEY_DELETE		111
228 #define KEY_MACRO		112
229 #define KEY_MUTE		113
230 #define KEY_VOLUMEDOWN		114
231 #define KEY_VOLUMEUP		115
232 #define KEY_POWER		116	/* SC System Power Down */
233 #define KEY_KPEQUAL		117
234 #define KEY_KPPLUSMINUS		118
235 #define KEY_PAUSE		119
236 
237 #define KEY_KPCOMMA		121
238 #define KEY_HANGEUL		122
239 #define KEY_HANGUEL		KEY_HANGEUL
240 #define KEY_HANJA		123
241 #define KEY_YEN			124
242 #define KEY_LEFTMETA		125
243 #define KEY_RIGHTMETA		126
244 #define KEY_COMPOSE		127
245 
246 #define KEY_STOP		128	/* AC Stop */
247 #define KEY_AGAIN		129
248 #define KEY_PROPS		130	/* AC Properties */
249 #define KEY_UNDO		131	/* AC Undo */
250 #define KEY_FRONT		132
251 #define KEY_COPY		133	/* AC Copy */
252 #define KEY_OPEN		134	/* AC Open */
253 #define KEY_PASTE		135	/* AC Paste */
254 #define KEY_FIND		136	/* AC Search */
255 #define KEY_CUT			137	/* AC Cut */
256 #define KEY_HELP		138	/* AL Integrated Help Center */
257 #define KEY_MENU		139	/* Menu (show menu) */
258 #define KEY_CALC		140	/* AL Calculator */
259 #define KEY_SETUP		141
260 #define KEY_SLEEP		142	/* SC System Sleep */
261 #define KEY_WAKEUP		143	/* System Wake Up */
262 #define KEY_FILE		144	/* AL Local Machine Browser */
263 #define KEY_SENDFILE		145
264 #define KEY_DELETEFILE		146
265 #define KEY_XFER		147
266 #define KEY_PROG1		148
267 #define KEY_PROG2		149
268 #define KEY_WWW			150	/* AL Internet Browser */
269 #define KEY_MSDOS		151
270 #define KEY_COFFEE		152	/* AL Terminal Lock/Screensaver */
271 #define KEY_SCREENLOCK		KEY_COFFEE
272 #define KEY_DIRECTION		153
273 #define KEY_CYCLEWINDOWS	154
274 #define KEY_MAIL		155
275 #define KEY_BOOKMARKS		156	/* AC Bookmarks */
276 #define KEY_COMPUTER		157
277 #define KEY_BACK		158	/* AC Back */
278 #define KEY_FORWARD		159	/* AC Forward */
279 #define KEY_CLOSECD		160
280 #define KEY_EJECTCD		161
281 #define KEY_EJECTCLOSECD	162
282 #define KEY_NEXTSONG		163
283 #define KEY_PLAYPAUSE		164
284 #define KEY_PREVIOUSSONG	165
285 #define KEY_STOPCD		166
286 #define KEY_RECORD		167
287 #define KEY_REWIND		168
288 #define KEY_PHONE		169	/* Media Select Telephone */
289 #define KEY_ISO			170
290 #define KEY_CONFIG		171	/* AL Consumer Control Configuration */
291 #define KEY_HOMEPAGE		172	/* AC Home */
292 #define KEY_REFRESH		173	/* AC Refresh */
293 #define KEY_EXIT		174	/* AC Exit */
294 #define KEY_MOVE		175
295 #define KEY_EDIT		176
296 #define KEY_SCROLLUP		177
297 #define KEY_SCROLLDOWN		178
298 #define KEY_KPLEFTPAREN		179
299 #define KEY_KPRIGHTPAREN	180
300 #define KEY_NEW			181	/* AC New */
301 #define KEY_REDO		182	/* AC Redo/Repeat */
302 
303 #define KEY_F13			183
304 #define KEY_F14			184
305 #define KEY_F15			185
306 #define KEY_F16			186
307 #define KEY_F17			187
308 #define KEY_F18			188
309 #define KEY_F19			189
310 #define KEY_F20			190
311 #define KEY_F21			191
312 #define KEY_F22			192
313 #define KEY_F23			193
314 #define KEY_F24			194
315 
316 #define KEY_PLAYCD		200
317 #define KEY_PAUSECD		201
318 #define KEY_PROG3		202
319 #define KEY_PROG4		203
320 #define KEY_SUSPEND		205
321 #define KEY_CLOSE		206	/* AC Close */
322 #define KEY_PLAY		207
323 #define KEY_FASTFORWARD		208
324 #define KEY_BASSBOOST		209
325 #define KEY_PRINT		210	/* AC Print */
326 #define KEY_HP			211
327 #define KEY_CAMERA		212
328 #define KEY_SOUND		213
329 #define KEY_QUESTION		214
330 #define KEY_EMAIL		215
331 #define KEY_CHAT		216
332 #define KEY_SEARCH		217
333 #define KEY_CONNECT		218
334 #define KEY_FINANCE		219	/* AL Checkbook/Finance */
335 #define KEY_SPORT		220
336 #define KEY_SHOP		221
337 #define KEY_ALTERASE		222
338 #define KEY_CANCEL		223	/* AC Cancel */
339 #define KEY_BRIGHTNESSDOWN	224
340 #define KEY_BRIGHTNESSUP	225
341 #define KEY_MEDIA		226
342 
343 #define KEY_SWITCHVIDEOMODE	227	/* Cycle between available video
344 					   outputs (Monitor/LCD/TV-out/etc) */
345 #define KEY_KBDILLUMTOGGLE	228
346 #define KEY_KBDILLUMDOWN	229
347 #define KEY_KBDILLUMUP		230
348 
349 #define KEY_SEND		231	/* AC Send */
350 #define KEY_REPLY		232	/* AC Reply */
351 #define KEY_FORWARDMAIL		233	/* AC Forward Msg */
352 #define KEY_SAVE		234	/* AC Save */
353 #define KEY_DOCUMENTS		235
354 
355 #define KEY_BATTERY		236
356 
357 #define KEY_BLUETOOTH		237
358 #define KEY_WLAN		238
359 #define KEY_UWB			239
360 
361 #define KEY_UNKNOWN		240
362 
363 #define KEY_VIDEO_NEXT		241	/* drive next video source */
364 #define KEY_VIDEO_PREV		242	/* drive previous video source */
365 #define KEY_BRIGHTNESS_CYCLE	243	/* brightness up, after max is min */
366 #define KEY_BRIGHTNESS_ZERO	244	/* brightness off, use ambient */
367 #define KEY_DISPLAY_OFF		245	/* display device to off state */
368 
369 #define KEY_WIMAX		246
370 
371 #define BTN_MISC		0x100
372 #define BTN_0			0x100
373 #define BTN_1			0x101
374 #define BTN_2			0x102
375 #define BTN_3			0x103
376 #define BTN_4			0x104
377 #define BTN_5			0x105
378 #define BTN_6			0x106
379 #define BTN_7			0x107
380 #define BTN_8			0x108
381 #define BTN_9			0x109
382 
383 #define BTN_MOUSE		0x110
384 #define BTN_LEFT		0x110
385 #define BTN_RIGHT		0x111
386 #define BTN_MIDDLE		0x112
387 #define BTN_SIDE		0x113
388 #define BTN_EXTRA		0x114
389 #define BTN_FORWARD		0x115
390 #define BTN_BACK		0x116
391 #define BTN_TASK		0x117
392 
393 #define BTN_JOYSTICK		0x120
394 #define BTN_TRIGGER		0x120
395 #define BTN_THUMB		0x121
396 #define BTN_THUMB2		0x122
397 #define BTN_TOP			0x123
398 #define BTN_TOP2		0x124
399 #define BTN_PINKIE		0x125
400 #define BTN_BASE		0x126
401 #define BTN_BASE2		0x127
402 #define BTN_BASE3		0x128
403 #define BTN_BASE4		0x129
404 #define BTN_BASE5		0x12a
405 #define BTN_BASE6		0x12b
406 #define BTN_DEAD		0x12f
407 
408 #define BTN_GAMEPAD		0x130
409 #define BTN_A			0x130
410 #define BTN_B			0x131
411 #define BTN_C			0x132
412 #define BTN_X			0x133
413 #define BTN_Y			0x134
414 #define BTN_Z			0x135
415 #define BTN_TL			0x136
416 #define BTN_TR			0x137
417 #define BTN_TL2			0x138
418 #define BTN_TR2			0x139
419 #define BTN_SELECT		0x13a
420 #define BTN_START		0x13b
421 #define BTN_MODE		0x13c
422 #define BTN_THUMBL		0x13d
423 #define BTN_THUMBR		0x13e
424 
425 #define BTN_DIGI		0x140
426 #define BTN_TOOL_PEN		0x140
427 #define BTN_TOOL_RUBBER		0x141
428 #define BTN_TOOL_BRUSH		0x142
429 #define BTN_TOOL_PENCIL		0x143
430 #define BTN_TOOL_AIRBRUSH	0x144
431 #define BTN_TOOL_FINGER		0x145
432 #define BTN_TOOL_MOUSE		0x146
433 #define BTN_TOOL_LENS		0x147
434 #define BTN_TOUCH		0x14a
435 #define BTN_STYLUS		0x14b
436 #define BTN_STYLUS2		0x14c
437 #define BTN_TOOL_DOUBLETAP	0x14d
438 #define BTN_TOOL_TRIPLETAP	0x14e
439 
440 #define BTN_WHEEL		0x150
441 #define BTN_GEAR_DOWN		0x150
442 #define BTN_GEAR_UP		0x151
443 
444 #define KEY_OK			0x160
445 #define KEY_SELECT		0x161
446 #define KEY_GOTO		0x162
447 #define KEY_CLEAR		0x163
448 #define KEY_POWER2		0x164
449 #define KEY_OPTION		0x165
450 #define KEY_INFO		0x166	/* AL OEM Features/Tips/Tutorial */
451 #define KEY_TIME		0x167
452 #define KEY_VENDOR		0x168
453 #define KEY_ARCHIVE		0x169
454 #define KEY_PROGRAM		0x16a	/* Media Select Program Guide */
455 #define KEY_CHANNEL		0x16b
456 #define KEY_FAVORITES		0x16c
457 #define KEY_EPG			0x16d
458 #define KEY_PVR			0x16e	/* Media Select Home */
459 #define KEY_MHP			0x16f
460 #define KEY_LANGUAGE		0x170
461 #define KEY_TITLE		0x171
462 #define KEY_SUBTITLE		0x172
463 #define KEY_ANGLE		0x173
464 #define KEY_ZOOM		0x174
465 #define KEY_MODE		0x175
466 #define KEY_KEYBOARD		0x176
467 #define KEY_SCREEN		0x177
468 #define KEY_PC			0x178	/* Media Select Computer */
469 #define KEY_TV			0x179	/* Media Select TV */
470 #define KEY_TV2			0x17a	/* Media Select Cable */
471 #define KEY_VCR			0x17b	/* Media Select VCR */
472 #define KEY_VCR2		0x17c	/* VCR Plus */
473 #define KEY_SAT			0x17d	/* Media Select Satellite */
474 #define KEY_SAT2		0x17e
475 #define KEY_CD			0x17f	/* Media Select CD */
476 #define KEY_TAPE		0x180	/* Media Select Tape */
477 #define KEY_RADIO		0x181
478 #define KEY_TUNER		0x182	/* Media Select Tuner */
479 #define KEY_PLAYER		0x183
480 #define KEY_TEXT		0x184
481 #define KEY_DVD			0x185	/* Media Select DVD */
482 #define KEY_AUX			0x186
483 #define KEY_MP3			0x187
484 #define KEY_AUDIO		0x188
485 #define KEY_VIDEO		0x189
486 #define KEY_DIRECTORY		0x18a
487 #define KEY_LIST		0x18b
488 #define KEY_MEMO		0x18c	/* Media Select Messages */
489 #define KEY_CALENDAR		0x18d
490 #define KEY_RED			0x18e
491 #define KEY_GREEN		0x18f
492 #define KEY_YELLOW		0x190
493 #define KEY_BLUE		0x191
494 #define KEY_CHANNELUP		0x192	/* Channel Increment */
495 #define KEY_CHANNELDOWN		0x193	/* Channel Decrement */
496 #define KEY_FIRST		0x194
497 #define KEY_LAST		0x195	/* Recall Last */
498 #define KEY_AB			0x196
499 #define KEY_NEXT		0x197
500 #define KEY_RESTART		0x198
501 #define KEY_SLOW		0x199
502 #define KEY_SHUFFLE		0x19a
503 #define KEY_BREAK		0x19b
504 #define KEY_PREVIOUS		0x19c
505 #define KEY_DIGITS		0x19d
506 #define KEY_TEEN		0x19e
507 #define KEY_TWEN		0x19f
508 #define KEY_VIDEOPHONE		0x1a0	/* Media Select Video Phone */
509 #define KEY_GAMES		0x1a1	/* Media Select Games */
510 #define KEY_ZOOMIN		0x1a2	/* AC Zoom In */
511 #define KEY_ZOOMOUT		0x1a3	/* AC Zoom Out */
512 #define KEY_ZOOMRESET		0x1a4	/* AC Zoom */
513 #define KEY_WORDPROCESSOR	0x1a5	/* AL Word Processor */
514 #define KEY_EDITOR		0x1a6	/* AL Text Editor */
515 #define KEY_SPREADSHEET		0x1a7	/* AL Spreadsheet */
516 #define KEY_GRAPHICSEDITOR	0x1a8	/* AL Graphics Editor */
517 #define KEY_PRESENTATION	0x1a9	/* AL Presentation App */
518 #define KEY_DATABASE		0x1aa	/* AL Database App */
519 #define KEY_NEWS		0x1ab	/* AL Newsreader */
520 #define KEY_VOICEMAIL		0x1ac	/* AL Voicemail */
521 #define KEY_ADDRESSBOOK		0x1ad	/* AL Contacts/Address Book */
522 #define KEY_MESSENGER		0x1ae	/* AL Instant Messaging */
523 #define KEY_DISPLAYTOGGLE	0x1af	/* Turn display (LCD) on and off */
524 #define KEY_SPELLCHECK		0x1b0   /* AL Spell Check */
525 #define KEY_LOGOFF		0x1b1   /* AL Logoff */
526 
527 #define KEY_DOLLAR		0x1b2
528 #define KEY_EURO		0x1b3
529 
530 #define KEY_FRAMEBACK		0x1b4	/* Consumer - transport controls */
531 #define KEY_FRAMEFORWARD	0x1b5
532 #define KEY_CONTEXT_MENU	0x1b6	/* GenDesc - system context menu */
533 #define KEY_MEDIA_REPEAT	0x1b7	/* Consumer - transport control */
534 
535 #define KEY_DEL_EOL		0x1c0
536 #define KEY_DEL_EOS		0x1c1
537 #define KEY_INS_LINE		0x1c2
538 #define KEY_DEL_LINE		0x1c3
539 
540 #define KEY_FN			0x1d0
541 #define KEY_FN_ESC		0x1d1
542 #define KEY_FN_F1		0x1d2
543 #define KEY_FN_F2		0x1d3
544 #define KEY_FN_F3		0x1d4
545 #define KEY_FN_F4		0x1d5
546 #define KEY_FN_F5		0x1d6
547 #define KEY_FN_F6		0x1d7
548 #define KEY_FN_F7		0x1d8
549 #define KEY_FN_F8		0x1d9
550 #define KEY_FN_F9		0x1da
551 #define KEY_FN_F10		0x1db
552 #define KEY_FN_F11		0x1dc
553 #define KEY_FN_F12		0x1dd
554 #define KEY_FN_1		0x1de
555 #define KEY_FN_2		0x1df
556 #define KEY_FN_D		0x1e0
557 #define KEY_FN_E		0x1e1
558 #define KEY_FN_F		0x1e2
559 #define KEY_FN_S		0x1e3
560 #define KEY_FN_B		0x1e4
561 
562 #define KEY_BRL_DOT1		0x1f1
563 #define KEY_BRL_DOT2		0x1f2
564 #define KEY_BRL_DOT3		0x1f3
565 #define KEY_BRL_DOT4		0x1f4
566 #define KEY_BRL_DOT5		0x1f5
567 #define KEY_BRL_DOT6		0x1f6
568 #define KEY_BRL_DOT7		0x1f7
569 #define KEY_BRL_DOT8		0x1f8
570 #define KEY_BRL_DOT9		0x1f9
571 #define KEY_BRL_DOT10		0x1fa
572 
573 /* We avoid low common keys in module aliases so they don't get huge. */
574 #define KEY_MIN_INTERESTING	KEY_MUTE
575 #define KEY_MAX			0x1ff
576 #define KEY_CNT			(KEY_MAX+1)
577 
578 /*
579  * Relative axes
580  */
581 
582 #define REL_X			0x00
583 #define REL_Y			0x01
584 #define REL_Z			0x02
585 #define REL_RX			0x03
586 #define REL_RY			0x04
587 #define REL_RZ			0x05
588 #define REL_HWHEEL		0x06
589 #define REL_DIAL		0x07
590 #define REL_WHEEL		0x08
591 #define REL_MISC		0x09
592 #define REL_MAX			0x0f
593 #define REL_CNT			(REL_MAX+1)
594 
595 /*
596  * Absolute axes
597  */
598 
599 #define ABS_X			0x00
600 #define ABS_Y			0x01
601 #define ABS_Z			0x02
602 #define ABS_RX			0x03
603 #define ABS_RY			0x04
604 #define ABS_RZ			0x05
605 #define ABS_THROTTLE		0x06
606 #define ABS_RUDDER		0x07
607 #define ABS_WHEEL		0x08
608 #define ABS_GAS			0x09
609 #define ABS_BRAKE		0x0a
610 #define ABS_HAT0X		0x10
611 #define ABS_HAT0Y		0x11
612 #define ABS_HAT1X		0x12
613 #define ABS_HAT1Y		0x13
614 #define ABS_HAT2X		0x14
615 #define ABS_HAT2Y		0x15
616 #define ABS_HAT3X		0x16
617 #define ABS_HAT3Y		0x17
618 #define ABS_PRESSURE		0x18
619 #define ABS_DISTANCE		0x19
620 #define ABS_TILT_X		0x1a
621 #define ABS_TILT_Y		0x1b
622 #define ABS_TOOL_WIDTH		0x1c
623 #define ABS_VOLUME		0x20
624 #define ABS_MISC		0x28
625 #define ABS_MAX			0x3f
626 #define ABS_CNT			(ABS_MAX+1)
627 
628 /*
629  * Switch events
630  */
631 
632 #define SW_LID			0x00  /* set = lid shut */
633 #define SW_TABLET_MODE		0x01  /* set = tablet mode */
634 #define SW_HEADPHONE_INSERT	0x02  /* set = inserted */
635 #define SW_RFKILL_ALL		0x03  /* rfkill master switch, type "any"
636 					 set = radio enabled */
637 #define SW_RADIO		SW_RFKILL_ALL	/* deprecated */
638 #define SW_MAX			0x0f
639 #define SW_CNT			(SW_MAX+1)
640 
641 /*
642  * Misc events
643  */
644 
645 #define MSC_SERIAL		0x00
646 #define MSC_PULSELED		0x01
647 #define MSC_GESTURE		0x02
648 #define MSC_RAW			0x03
649 #define MSC_SCAN		0x04
650 #define MSC_MAX			0x07
651 #define MSC_CNT			(MSC_MAX+1)
652 
653 /*
654  * LEDs
655  */
656 
657 #define LED_NUML		0x00
658 #define LED_CAPSL		0x01
659 #define LED_SCROLLL		0x02
660 #define LED_COMPOSE		0x03
661 #define LED_KANA		0x04
662 #define LED_SLEEP		0x05
663 #define LED_SUSPEND		0x06
664 #define LED_MUTE		0x07
665 #define LED_MISC		0x08
666 #define LED_MAIL		0x09
667 #define LED_CHARGING		0x0a
668 #define LED_MAX			0x0f
669 #define LED_CNT			(LED_MAX+1)
670 
671 /*
672  * Autorepeat values
673  */
674 
675 #define REP_DELAY		0x00
676 #define REP_PERIOD		0x01
677 #define REP_MAX			0x01
678 
679 /*
680  * Sounds
681  */
682 
683 #define SND_CLICK		0x00
684 #define SND_BELL		0x01
685 #define SND_TONE		0x02
686 #define SND_MAX			0x07
687 #define SND_CNT			(SND_MAX+1)
688 
689 /*
690  * IDs.
691  */
692 
693 #define ID_BUS			0
694 #define ID_VENDOR		1
695 #define ID_PRODUCT		2
696 #define ID_VERSION		3
697 
698 #define BUS_PCI			0x01
699 #define BUS_ISAPNP		0x02
700 #define BUS_USB			0x03
701 #define BUS_HIL			0x04
702 #define BUS_BLUETOOTH		0x05
703 #define BUS_VIRTUAL		0x06
704 
705 #define BUS_ISA			0x10
706 #define BUS_I8042		0x11
707 #define BUS_XTKBD		0x12
708 #define BUS_RS232		0x13
709 #define BUS_GAMEPORT		0x14
710 #define BUS_PARPORT		0x15
711 #define BUS_AMIGA		0x16
712 #define BUS_ADB			0x17
713 #define BUS_I2C			0x18
714 #define BUS_HOST		0x19
715 #define BUS_GSC			0x1A
716 #define BUS_ATARI		0x1B
717 
718 /*
719  * Values describing the status of a force-feedback effect
720  */
721 #define FF_STATUS_STOPPED	0x00
722 #define FF_STATUS_PLAYING	0x01
723 #define FF_STATUS_MAX		0x01
724 
725 /*
726  * Structures used in ioctls to upload effects to a device
727  * They are pieces of a bigger structure (called ff_effect)
728  */
729 
730 /*
731  * All duration values are expressed in ms. Values above 32767 ms (0x7fff)
732  * should not be used and have unspecified results.
733  */
734 
735 /**
736  * struct ff_replay - defines scheduling of the force-feedback effect
737  * @length: duration of the effect
738  * @delay: delay before effect should start playing
739  */
740 struct ff_replay {
741 	__u16 length;
742 	__u16 delay;
743 };
744 
745 /**
746  * struct ff_trigger - defines what triggers the force-feedback effect
747  * @button: number of the button triggering the effect
748  * @interval: controls how soon the effect can be re-triggered
749  */
750 struct ff_trigger {
751 	__u16 button;
752 	__u16 interval;
753 };
754 
755 /**
756  * struct ff_envelope - generic force-feedback effect envelope
757  * @attack_length: duration of the attack (ms)
758  * @attack_level: level at the beginning of the attack
759  * @fade_length: duration of fade (ms)
760  * @fade_level: level at the end of fade
761  *
762  * The @attack_level and @fade_level are absolute values; when applying
763  * envelope force-feedback core will convert to positive/negative
764  * value based on polarity of the default level of the effect.
765  * Valid range for the attack and fade levels is 0x0000 - 0x7fff
766  */
767 struct ff_envelope {
768 	__u16 attack_length;
769 	__u16 attack_level;
770 	__u16 fade_length;
771 	__u16 fade_level;
772 };
773 
774 /**
775  * struct ff_constant_effect - defines parameters of a constant force-feedback effect
776  * @level: strength of the effect; may be negative
777  * @envelope: envelope data
778  */
779 struct ff_constant_effect {
780 	__s16 level;
781 	struct ff_envelope envelope;
782 };
783 
784 /**
785  * struct ff_ramp_effect - defines parameters of a ramp force-feedback effect
786  * @start_level: beginning strength of the effect; may be negative
787  * @end_level: final strength of the effect; may be negative
788  * @envelope: envelope data
789  */
790 struct ff_ramp_effect {
791 	__s16 start_level;
792 	__s16 end_level;
793 	struct ff_envelope envelope;
794 };
795 
796 /**
797  * struct ff_condition_effect - defines a spring or friction force-feedback effect
798  * @right_saturation: maximum level when joystick moved all way to the right
799  * @left_saturation: same for the left side
800  * @right_coeff: controls how fast the force grows when the joystick moves
801  *	to the right
802  * @left_coeff: same for the left side
803  * @deadband: size of the dead zone, where no force is produced
804  * @center: position of the dead zone
805  */
806 struct ff_condition_effect {
807 	__u16 right_saturation;
808 	__u16 left_saturation;
809 
810 	__s16 right_coeff;
811 	__s16 left_coeff;
812 
813 	__u16 deadband;
814 	__s16 center;
815 };
816 
817 /**
818  * struct ff_periodic_effect - defines parameters of a periodic force-feedback effect
819  * @waveform: kind of the effect (wave)
820  * @period: period of the wave (ms)
821  * @magnitude: peak value
822  * @offset: mean value of the wave (roughly)
823  * @phase: 'horizontal' shift
824  * @envelope: envelope data
825  * @custom_len: number of samples (FF_CUSTOM only)
826  * @custom_data: buffer of samples (FF_CUSTOM only)
827  *
828  * Known waveforms - FF_SQUARE, FF_TRIANGLE, FF_SINE, FF_SAW_UP,
829  * FF_SAW_DOWN, FF_CUSTOM. The exact syntax FF_CUSTOM is undefined
830  * for the time being as no driver supports it yet.
831  *
832  * Note: the data pointed by custom_data is copied by the driver.
833  * You can therefore dispose of the memory after the upload/update.
834  */
835 struct ff_periodic_effect {
836 	__u16 waveform;
837 	__u16 period;
838 	__s16 magnitude;
839 	__s16 offset;
840 	__u16 phase;
841 
842 	struct ff_envelope envelope;
843 
844 	__u32 custom_len;
845 	__s16 *custom_data;
846 };
847 
848 /**
849  * struct ff_rumble_effect - defines parameters of a periodic force-feedback effect
850  * @strong_magnitude: magnitude of the heavy motor
851  * @weak_magnitude: magnitude of the light one
852  *
853  * Some rumble pads have two motors of different weight. Strong_magnitude
854  * represents the magnitude of the vibration generated by the heavy one.
855  */
856 struct ff_rumble_effect {
857 	__u16 strong_magnitude;
858 	__u16 weak_magnitude;
859 };
860 
861 /**
862  * struct ff_effect - defines force feedback effect
863  * @type: type of the effect (FF_CONSTANT, FF_PERIODIC, FF_RAMP, FF_SPRING,
864  *	FF_FRICTION, FF_DAMPER, FF_RUMBLE, FF_INERTIA, or FF_CUSTOM)
865  * @id: an unique id assigned to an effect
866  * @direction: direction of the effect
867  * @trigger: trigger conditions (struct ff_trigger)
868  * @replay: scheduling of the effect (struct ff_replay)
869  * @u: effect-specific structure (one of ff_constant_effect, ff_ramp_effect,
870  *	ff_periodic_effect, ff_condition_effect, ff_rumble_effect) further
871  *	defining effect parameters
872  *
873  * This structure is sent through ioctl from the application to the driver.
874  * To create a new effect application should set its @id to -1; the kernel
875  * will return assigned @id which can later be used to update or delete
876  * this effect.
877  *
878  * Direction of the effect is encoded as follows:
879  *	0 deg -> 0x0000 (down)
880  *	90 deg -> 0x4000 (left)
881  *	180 deg -> 0x8000 (up)
882  *	270 deg -> 0xC000 (right)
883  */
884 struct ff_effect {
885 	__u16 type;
886 	__s16 id;
887 	__u16 direction;
888 	struct ff_trigger trigger;
889 	struct ff_replay replay;
890 
891 	union {
892 		struct ff_constant_effect constant;
893 		struct ff_ramp_effect ramp;
894 		struct ff_periodic_effect periodic;
895 		struct ff_condition_effect condition[2]; /* One for each axis */
896 		struct ff_rumble_effect rumble;
897 	} u;
898 };
899 
900 /*
901  * Force feedback effect types
902  */
903 
904 #define FF_RUMBLE	0x50
905 #define FF_PERIODIC	0x51
906 #define FF_CONSTANT	0x52
907 #define FF_SPRING	0x53
908 #define FF_FRICTION	0x54
909 #define FF_DAMPER	0x55
910 #define FF_INERTIA	0x56
911 #define FF_RAMP		0x57
912 
913 #define FF_EFFECT_MIN	FF_RUMBLE
914 #define FF_EFFECT_MAX	FF_RAMP
915 
916 /*
917  * Force feedback periodic effect types
918  */
919 
920 #define FF_SQUARE	0x58
921 #define FF_TRIANGLE	0x59
922 #define FF_SINE		0x5a
923 #define FF_SAW_UP	0x5b
924 #define FF_SAW_DOWN	0x5c
925 #define FF_CUSTOM	0x5d
926 
927 #define FF_WAVEFORM_MIN	FF_SQUARE
928 #define FF_WAVEFORM_MAX	FF_CUSTOM
929 
930 /*
931  * Set ff device properties
932  */
933 
934 #define FF_GAIN		0x60
935 #define FF_AUTOCENTER	0x61
936 
937 #define FF_MAX		0x7f
938 #define FF_CNT		(FF_MAX+1)
939 
940 #endif
941