input.h 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371
  1. #ifndef _INPUT_H
  2. #define _INPUT_H
  3. /*
  4. * Copyright (c) 1999-2002 Vojtech Pavlik
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published by
  8. * the Free Software Foundation.
  9. */
  10. #ifdef __KERNEL__
  11. #include <linux/time.h>
  12. #include <linux/list.h>
  13. #else
  14. #include <sys/time.h>
  15. #include <sys/ioctl.h>
  16. #include <sys/types.h>
  17. #include <asm/types.h>
  18. #endif
  19. /*
  20. * The event structure itself
  21. */
  22. struct input_event {
  23. struct timeval time;
  24. __u16 type;
  25. __u16 code;
  26. __s32 value;
  27. };
  28. /*
  29. * Protocol version.
  30. */
  31. #define EV_VERSION 0x010000
  32. /*
  33. * IOCTLs (0x00 - 0x7f)
  34. */
  35. struct input_id {
  36. __u16 bustype;
  37. __u16 vendor;
  38. __u16 product;
  39. __u16 version;
  40. };
  41. struct input_absinfo {
  42. __s32 value;
  43. __s32 minimum;
  44. __s32 maximum;
  45. __s32 fuzz;
  46. __s32 flat;
  47. };
  48. #define EVIOCGVERSION _IOR('E', 0x01, int) /* get driver version */
  49. #define EVIOCGID _IOR('E', 0x02, struct input_id) /* get device ID */
  50. #define EVIOCGREP _IOR('E', 0x03, int[2]) /* get repeat settings */
  51. #define EVIOCSREP _IOW('E', 0x03, int[2]) /* set repeat settings */
  52. #define EVIOCGKEYCODE _IOR('E', 0x04, int[2]) /* get keycode */
  53. #define EVIOCSKEYCODE _IOW('E', 0x04, int[2]) /* set keycode */
  54. #define EVIOCGNAME(len) _IOC(_IOC_READ, 'E', 0x06, len) /* get device name */
  55. #define EVIOCGPHYS(len) _IOC(_IOC_READ, 'E', 0x07, len) /* get physical location */
  56. #define EVIOCGUNIQ(len) _IOC(_IOC_READ, 'E', 0x08, len) /* get unique identifier */
  57. #define EVIOCGKEY(len) _IOC(_IOC_READ, 'E', 0x18, len) /* get global keystate */
  58. #define EVIOCGLED(len) _IOC(_IOC_READ, 'E', 0x19, len) /* get all LEDs */
  59. #define EVIOCGSND(len) _IOC(_IOC_READ, 'E', 0x1a, len) /* get all sounds status */
  60. #define EVIOCGSW(len) _IOC(_IOC_READ, 'E', 0x1b, len) /* get all switch states */
  61. #define EVIOCGBIT(ev,len) _IOC(_IOC_READ, 'E', 0x20 + ev, len) /* get event bits */
  62. #define EVIOCGABS(abs) _IOR('E', 0x40 + abs, struct input_absinfo) /* get abs value/limits */
  63. #define EVIOCSABS(abs) _IOW('E', 0xc0 + abs, struct input_absinfo) /* set abs value/limits */
  64. #define EVIOCSFF _IOC(_IOC_WRITE, 'E', 0x80, sizeof(struct ff_effect)) /* send a force effect to a force feedback device */
  65. #define EVIOCRMFF _IOW('E', 0x81, int) /* Erase a force effect */
  66. #define EVIOCGEFFECTS _IOR('E', 0x84, int) /* Report number of effects playable at the same time */
  67. #define EVIOCGRAB _IOW('E', 0x90, int) /* Grab/Release device */
  68. /*
  69. * Event types
  70. */
  71. #define EV_SYN 0x00
  72. #define EV_KEY 0x01
  73. #define EV_REL 0x02
  74. #define EV_ABS 0x03
  75. #define EV_MSC 0x04
  76. #define EV_SW 0x05
  77. #define EV_LED 0x11
  78. #define EV_SND 0x12
  79. #define EV_REP 0x14
  80. #define EV_FF 0x15
  81. #define EV_PWR 0x16
  82. #define EV_FF_STATUS 0x17
  83. #define EV_MAX 0x1f
  84. #define EV_CNT (EV_MAX+1)
  85. /*
  86. * Synchronization events.
  87. */
  88. #define SYN_REPORT 0
  89. #define SYN_CONFIG 1
  90. /*
  91. * Keys and buttons
  92. *
  93. * Most of the keys/buttons are modeled after USB HUT 1.12
  94. * (see http://www.usb.org/developers/hidpage).
  95. * Abbreviations in the comments:
  96. * AC - Application Control
  97. * AL - Application Launch Button
  98. * SC - System Control
  99. */
  100. #define KEY_RESERVED 0
  101. #define KEY_ESC 1
  102. #define KEY_1 2
  103. #define KEY_2 3
  104. #define KEY_3 4
  105. #define KEY_4 5
  106. #define KEY_5 6
  107. #define KEY_6 7
  108. #define KEY_7 8
  109. #define KEY_8 9
  110. #define KEY_9 10
  111. #define KEY_0 11
  112. #define KEY_MINUS 12
  113. #define KEY_EQUAL 13
  114. #define KEY_BACKSPACE 14
  115. #define KEY_TAB 15
  116. #define KEY_Q 16
  117. #define KEY_W 17
  118. #define KEY_E 18
  119. #define KEY_R 19
  120. #define KEY_T 20
  121. #define KEY_Y 21
  122. #define KEY_U 22
  123. #define KEY_I 23
  124. #define KEY_O 24
  125. #define KEY_P 25
  126. #define KEY_LEFTBRACE 26
  127. #define KEY_RIGHTBRACE 27
  128. #define KEY_ENTER 28
  129. #define KEY_LEFTCTRL 29
  130. #define KEY_A 30
  131. #define KEY_S 31
  132. #define KEY_D 32
  133. #define KEY_F 33
  134. #define KEY_G 34
  135. #define KEY_H 35
  136. #define KEY_J 36
  137. #define KEY_K 37
  138. #define KEY_L 38
  139. #define KEY_SEMICOLON 39
  140. #define KEY_APOSTROPHE 40
  141. #define KEY_GRAVE 41
  142. #define KEY_LEFTSHIFT 42
  143. #define KEY_BACKSLASH 43
  144. #define KEY_Z 44
  145. #define KEY_X 45
  146. #define KEY_C 46
  147. #define KEY_V 47
  148. #define KEY_B 48
  149. #define KEY_N 49
  150. #define KEY_M 50
  151. #define KEY_COMMA 51
  152. #define KEY_DOT 52
  153. #define KEY_SLASH 53
  154. #define KEY_RIGHTSHIFT 54
  155. #define KEY_KPASTERISK 55
  156. #define KEY_LEFTALT 56
  157. #define KEY_SPACE 57
  158. #define KEY_CAPSLOCK 58
  159. #define KEY_F1 59
  160. #define KEY_F2 60
  161. #define KEY_F3 61
  162. #define KEY_F4 62
  163. #define KEY_F5 63
  164. #define KEY_F6 64
  165. #define KEY_F7 65
  166. #define KEY_F8 66
  167. #define KEY_F9 67
  168. #define KEY_F10 68
  169. #define KEY_NUMLOCK 69
  170. #define KEY_SCROLLLOCK 70
  171. #define KEY_KP7 71
  172. #define KEY_KP8 72
  173. #define KEY_KP9 73
  174. #define KEY_KPMINUS 74
  175. #define KEY_KP4 75
  176. #define KEY_KP5 76
  177. #define KEY_KP6 77
  178. #define KEY_KPPLUS 78
  179. #define KEY_KP1 79
  180. #define KEY_KP2 80
  181. #define KEY_KP3 81
  182. #define KEY_KP0 82
  183. #define KEY_KPDOT 83
  184. #define KEY_ZENKAKUHANKAKU 85
  185. #define KEY_102ND 86
  186. #define KEY_F11 87
  187. #define KEY_F12 88
  188. #define KEY_RO 89
  189. #define KEY_KATAKANA 90
  190. #define KEY_HIRAGANA 91
  191. #define KEY_HENKAN 92
  192. #define KEY_KATAKANAHIRAGANA 93
  193. #define KEY_MUHENKAN 94
  194. #define KEY_KPJPCOMMA 95
  195. #define KEY_KPENTER 96
  196. #define KEY_RIGHTCTRL 97
  197. #define KEY_KPSLASH 98
  198. #define KEY_SYSRQ 99
  199. #define KEY_RIGHTALT 100
  200. #define KEY_LINEFEED 101
  201. #define KEY_HOME 102
  202. #define KEY_UP 103
  203. #define KEY_PAGEUP 104
  204. #define KEY_LEFT 105
  205. #define KEY_RIGHT 106
  206. #define KEY_END 107
  207. #define KEY_DOWN 108
  208. #define KEY_PAGEDOWN 109
  209. #define KEY_INSERT 110
  210. #define KEY_DELETE 111
  211. #define KEY_MACRO 112
  212. #define KEY_MUTE 113
  213. #define KEY_VOLUMEDOWN 114
  214. #define KEY_VOLUMEUP 115
  215. #define KEY_POWER 116 /* SC System Power Down */
  216. #define KEY_KPEQUAL 117
  217. #define KEY_KPPLUSMINUS 118
  218. #define KEY_PAUSE 119
  219. #define KEY_KPCOMMA 121
  220. #define KEY_HANGEUL 122
  221. #define KEY_HANGUEL KEY_HANGEUL
  222. #define KEY_HANJA 123
  223. #define KEY_YEN 124
  224. #define KEY_LEFTMETA 125
  225. #define KEY_RIGHTMETA 126
  226. #define KEY_COMPOSE 127
  227. #define KEY_STOP 128 /* AC Stop */
  228. #define KEY_AGAIN 129
  229. #define KEY_PROPS 130 /* AC Properties */
  230. #define KEY_UNDO 131 /* AC Undo */
  231. #define KEY_FRONT 132
  232. #define KEY_COPY 133 /* AC Copy */
  233. #define KEY_OPEN 134 /* AC Open */
  234. #define KEY_PASTE 135 /* AC Paste */
  235. #define KEY_FIND 136 /* AC Search */
  236. #define KEY_CUT 137 /* AC Cut */
  237. #define KEY_HELP 138 /* AL Integrated Help Center */
  238. #define KEY_MENU 139 /* Menu (show menu) */
  239. #define KEY_CALC 140 /* AL Calculator */
  240. #define KEY_SETUP 141
  241. #define KEY_SLEEP 142 /* SC System Sleep */
  242. #define KEY_WAKEUP 143 /* System Wake Up */
  243. #define KEY_FILE 144 /* AL Local Machine Browser */
  244. #define KEY_SENDFILE 145
  245. #define KEY_DELETEFILE 146
  246. #define KEY_XFER 147
  247. #define KEY_PROG1 148
  248. #define KEY_PROG2 149
  249. #define KEY_WWW 150 /* AL Internet Browser */
  250. #define KEY_MSDOS 151
  251. #define KEY_COFFEE 152 /* AL Terminal Lock/Screensaver */
  252. #define KEY_SCREENLOCK KEY_COFFEE
  253. #define KEY_DIRECTION 153
  254. #define KEY_CYCLEWINDOWS 154
  255. #define KEY_MAIL 155
  256. #define KEY_BOOKMARKS 156 /* AC Bookmarks */
  257. #define KEY_COMPUTER 157
  258. #define KEY_BACK 158 /* AC Back */
  259. #define KEY_FORWARD 159 /* AC Forward */
  260. #define KEY_CLOSECD 160
  261. #define KEY_EJECTCD 161
  262. #define KEY_EJECTCLOSECD 162
  263. #define KEY_NEXTSONG 163
  264. #define KEY_PLAYPAUSE 164
  265. #define KEY_PREVIOUSSONG 165
  266. #define KEY_STOPCD 166
  267. #define KEY_RECORD 167
  268. #define KEY_REWIND 168
  269. #define KEY_PHONE 169 /* Media Select Telephone */
  270. #define KEY_ISO 170
  271. #define KEY_CONFIG 171 /* AL Consumer Control Configuration */
  272. #define KEY_HOMEPAGE 172 /* AC Home */
  273. #define KEY_REFRESH 173 /* AC Refresh */
  274. #define KEY_EXIT 174 /* AC Exit */
  275. #define KEY_MOVE 175
  276. #define KEY_EDIT 176
  277. #define KEY_SCROLLUP 177
  278. #define KEY_SCROLLDOWN 178
  279. #define KEY_KPLEFTPAREN 179
  280. #define KEY_KPRIGHTPAREN 180
  281. #define KEY_NEW 181 /* AC New */
  282. #define KEY_REDO 182 /* AC Redo/Repeat */
  283. #define KEY_F13 183
  284. #define KEY_F14 184
  285. #define KEY_F15 185
  286. #define KEY_F16 186
  287. #define KEY_F17 187
  288. #define KEY_F18 188
  289. #define KEY_F19 189
  290. #define KEY_F20 190
  291. #define KEY_F21 191
  292. #define KEY_F22 192
  293. #define KEY_F23 193
  294. #define KEY_F24 194
  295. #define KEY_PLAYCD 200
  296. #define KEY_PAUSECD 201
  297. #define KEY_PROG3 202
  298. #define KEY_PROG4 203
  299. #define KEY_SUSPEND 205
  300. #define KEY_CLOSE 206 /* AC Close */
  301. #define KEY_PLAY 207
  302. #define KEY_FASTFORWARD 208
  303. #define KEY_BASSBOOST 209
  304. #define KEY_PRINT 210 /* AC Print */
  305. #define KEY_HP 211
  306. #define KEY_CAMERA 212
  307. #define KEY_SOUND 213
  308. #define KEY_QUESTION 214
  309. #define KEY_EMAIL 215
  310. #define KEY_CHAT 216
  311. #define KEY_SEARCH 217
  312. #define KEY_CONNECT 218
  313. #define KEY_FINANCE 219 /* AL Checkbook/Finance */
  314. #define KEY_SPORT 220
  315. #define KEY_SHOP 221
  316. #define KEY_ALTERASE 222
  317. #define KEY_CANCEL 223 /* AC Cancel */
  318. #define KEY_BRIGHTNESSDOWN 224
  319. #define KEY_BRIGHTNESSUP 225
  320. #define KEY_MEDIA 226
  321. #define KEY_SWITCHVIDEOMODE 227 /* Cycle between available video
  322. outputs (Monitor/LCD/TV-out/etc) */
  323. #define KEY_KBDILLUMTOGGLE 228
  324. #define KEY_KBDILLUMDOWN 229
  325. #define KEY_KBDILLUMUP 230
  326. #define KEY_SEND 231 /* AC Send */
  327. #define KEY_REPLY 232 /* AC Reply */
  328. #define KEY_FORWARDMAIL 233 /* AC Forward Msg */
  329. #define KEY_SAVE 234 /* AC Save */
  330. #define KEY_DOCUMENTS 235
  331. #define KEY_BATTERY 236
  332. #define KEY_BLUETOOTH 237
  333. #define KEY_WLAN 238
  334. #define KEY_UWB 239
  335. #define KEY_UNKNOWN 240
  336. #define KEY_VIDEO_NEXT 241 /* drive next video source */
  337. #define KEY_VIDEO_PREV 242 /* drive previous video source */
  338. #define KEY_BRIGHTNESS_CYCLE 243 /* brightness up, after max is min */
  339. #define KEY_BRIGHTNESS_ZERO 244 /* brightness off, use ambient */
  340. #define KEY_DISPLAY_OFF 245 /* display device to off state */
  341. #define BTN_MISC 0x100
  342. #define BTN_0 0x100
  343. #define BTN_1 0x101
  344. #define BTN_2 0x102
  345. #define BTN_3 0x103
  346. #define BTN_4 0x104
  347. #define BTN_5 0x105
  348. #define BTN_6 0x106
  349. #define BTN_7 0x107
  350. #define BTN_8 0x108
  351. #define BTN_9 0x109
  352. #define BTN_MOUSE 0x110
  353. #define BTN_LEFT 0x110
  354. #define BTN_RIGHT 0x111
  355. #define BTN_MIDDLE 0x112
  356. #define BTN_SIDE 0x113
  357. #define BTN_EXTRA 0x114
  358. #define BTN_FORWARD 0x115
  359. #define BTN_BACK 0x116
  360. #define BTN_TASK 0x117
  361. #define BTN_JOYSTICK 0x120
  362. #define BTN_TRIGGER 0x120
  363. #define BTN_THUMB 0x121
  364. #define BTN_THUMB2 0x122
  365. #define BTN_TOP 0x123
  366. #define BTN_TOP2 0x124
  367. #define BTN_PINKIE 0x125
  368. #define BTN_BASE 0x126
  369. #define BTN_BASE2 0x127
  370. #define BTN_BASE3 0x128
  371. #define BTN_BASE4 0x129
  372. #define BTN_BASE5 0x12a
  373. #define BTN_BASE6 0x12b
  374. #define BTN_DEAD 0x12f
  375. #define BTN_GAMEPAD 0x130
  376. #define BTN_A 0x130
  377. #define BTN_B 0x131
  378. #define BTN_C 0x132
  379. #define BTN_X 0x133
  380. #define BTN_Y 0x134
  381. #define BTN_Z 0x135
  382. #define BTN_TL 0x136
  383. #define BTN_TR 0x137
  384. #define BTN_TL2 0x138
  385. #define BTN_TR2 0x139
  386. #define BTN_SELECT 0x13a
  387. #define BTN_START 0x13b
  388. #define BTN_MODE 0x13c
  389. #define BTN_THUMBL 0x13d
  390. #define BTN_THUMBR 0x13e
  391. #define BTN_DIGI 0x140
  392. #define BTN_TOOL_PEN 0x140
  393. #define BTN_TOOL_RUBBER 0x141
  394. #define BTN_TOOL_BRUSH 0x142
  395. #define BTN_TOOL_PENCIL 0x143
  396. #define BTN_TOOL_AIRBRUSH 0x144
  397. #define BTN_TOOL_FINGER 0x145
  398. #define BTN_TOOL_MOUSE 0x146
  399. #define BTN_TOOL_LENS 0x147
  400. #define BTN_TOUCH 0x14a
  401. #define BTN_STYLUS 0x14b
  402. #define BTN_STYLUS2 0x14c
  403. #define BTN_TOOL_DOUBLETAP 0x14d
  404. #define BTN_TOOL_TRIPLETAP 0x14e
  405. #define BTN_WHEEL 0x150
  406. #define BTN_GEAR_DOWN 0x150
  407. #define BTN_GEAR_UP 0x151
  408. #define KEY_OK 0x160
  409. #define KEY_SELECT 0x161
  410. #define KEY_GOTO 0x162
  411. #define KEY_CLEAR 0x163
  412. #define KEY_POWER2 0x164
  413. #define KEY_OPTION 0x165
  414. #define KEY_INFO 0x166 /* AL OEM Features/Tips/Tutorial */
  415. #define KEY_TIME 0x167
  416. #define KEY_VENDOR 0x168
  417. #define KEY_ARCHIVE 0x169
  418. #define KEY_PROGRAM 0x16a /* Media Select Program Guide */
  419. #define KEY_CHANNEL 0x16b
  420. #define KEY_FAVORITES 0x16c
  421. #define KEY_EPG 0x16d
  422. #define KEY_PVR 0x16e /* Media Select Home */
  423. #define KEY_MHP 0x16f
  424. #define KEY_LANGUAGE 0x170
  425. #define KEY_TITLE 0x171
  426. #define KEY_SUBTITLE 0x172
  427. #define KEY_ANGLE 0x173
  428. #define KEY_ZOOM 0x174
  429. #define KEY_MODE 0x175
  430. #define KEY_KEYBOARD 0x176
  431. #define KEY_SCREEN 0x177
  432. #define KEY_PC 0x178 /* Media Select Computer */
  433. #define KEY_TV 0x179 /* Media Select TV */
  434. #define KEY_TV2 0x17a /* Media Select Cable */
  435. #define KEY_VCR 0x17b /* Media Select VCR */
  436. #define KEY_VCR2 0x17c /* VCR Plus */
  437. #define KEY_SAT 0x17d /* Media Select Satellite */
  438. #define KEY_SAT2 0x17e
  439. #define KEY_CD 0x17f /* Media Select CD */
  440. #define KEY_TAPE 0x180 /* Media Select Tape */
  441. #define KEY_RADIO 0x181
  442. #define KEY_TUNER 0x182 /* Media Select Tuner */
  443. #define KEY_PLAYER 0x183
  444. #define KEY_TEXT 0x184
  445. #define KEY_DVD 0x185 /* Media Select DVD */
  446. #define KEY_AUX 0x186
  447. #define KEY_MP3 0x187
  448. #define KEY_AUDIO 0x188
  449. #define KEY_VIDEO 0x189
  450. #define KEY_DIRECTORY 0x18a
  451. #define KEY_LIST 0x18b
  452. #define KEY_MEMO 0x18c /* Media Select Messages */
  453. #define KEY_CALENDAR 0x18d
  454. #define KEY_RED 0x18e
  455. #define KEY_GREEN 0x18f
  456. #define KEY_YELLOW 0x190
  457. #define KEY_BLUE 0x191
  458. #define KEY_CHANNELUP 0x192 /* Channel Increment */
  459. #define KEY_CHANNELDOWN 0x193 /* Channel Decrement */
  460. #define KEY_FIRST 0x194
  461. #define KEY_LAST 0x195 /* Recall Last */
  462. #define KEY_AB 0x196
  463. #define KEY_NEXT 0x197
  464. #define KEY_RESTART 0x198
  465. #define KEY_SLOW 0x199
  466. #define KEY_SHUFFLE 0x19a
  467. #define KEY_BREAK 0x19b
  468. #define KEY_PREVIOUS 0x19c
  469. #define KEY_DIGITS 0x19d
  470. #define KEY_TEEN 0x19e
  471. #define KEY_TWEN 0x19f
  472. #define KEY_VIDEOPHONE 0x1a0 /* Media Select Video Phone */
  473. #define KEY_GAMES 0x1a1 /* Media Select Games */
  474. #define KEY_ZOOMIN 0x1a2 /* AC Zoom In */
  475. #define KEY_ZOOMOUT 0x1a3 /* AC Zoom Out */
  476. #define KEY_ZOOMRESET 0x1a4 /* AC Zoom */
  477. #define KEY_WORDPROCESSOR 0x1a5 /* AL Word Processor */
  478. #define KEY_EDITOR 0x1a6 /* AL Text Editor */
  479. #define KEY_SPREADSHEET 0x1a7 /* AL Spreadsheet */
  480. #define KEY_GRAPHICSEDITOR 0x1a8 /* AL Graphics Editor */
  481. #define KEY_PRESENTATION 0x1a9 /* AL Presentation App */
  482. #define KEY_DATABASE 0x1aa /* AL Database App */
  483. #define KEY_NEWS 0x1ab /* AL Newsreader */
  484. #define KEY_VOICEMAIL 0x1ac /* AL Voicemail */
  485. #define KEY_ADDRESSBOOK 0x1ad /* AL Contacts/Address Book */
  486. #define KEY_MESSENGER 0x1ae /* AL Instant Messaging */
  487. #define KEY_DISPLAYTOGGLE 0x1af /* Turn display (LCD) on and off */
  488. #define KEY_SPELLCHECK 0x1b0 /* AL Spell Check */
  489. #define KEY_LOGOFF 0x1b1 /* AL Logoff */
  490. #define KEY_DOLLAR 0x1b2
  491. #define KEY_EURO 0x1b3
  492. #define KEY_FRAMEBACK 0x1b4 /* Consumer - transport controls */
  493. #define KEY_FRAMEFORWARD 0x1b5
  494. #define KEY_CONTEXT_MENU 0x1b6 /* GenDesc - system context menu */
  495. #define KEY_DEL_EOL 0x1c0
  496. #define KEY_DEL_EOS 0x1c1
  497. #define KEY_INS_LINE 0x1c2
  498. #define KEY_DEL_LINE 0x1c3
  499. #define KEY_FN 0x1d0
  500. #define KEY_FN_ESC 0x1d1
  501. #define KEY_FN_F1 0x1d2
  502. #define KEY_FN_F2 0x1d3
  503. #define KEY_FN_F3 0x1d4
  504. #define KEY_FN_F4 0x1d5
  505. #define KEY_FN_F5 0x1d6
  506. #define KEY_FN_F6 0x1d7
  507. #define KEY_FN_F7 0x1d8
  508. #define KEY_FN_F8 0x1d9
  509. #define KEY_FN_F9 0x1da
  510. #define KEY_FN_F10 0x1db
  511. #define KEY_FN_F11 0x1dc
  512. #define KEY_FN_F12 0x1dd
  513. #define KEY_FN_1 0x1de
  514. #define KEY_FN_2 0x1df
  515. #define KEY_FN_D 0x1e0
  516. #define KEY_FN_E 0x1e1
  517. #define KEY_FN_F 0x1e2
  518. #define KEY_FN_S 0x1e3
  519. #define KEY_FN_B 0x1e4
  520. #define KEY_BRL_DOT1 0x1f1
  521. #define KEY_BRL_DOT2 0x1f2
  522. #define KEY_BRL_DOT3 0x1f3
  523. #define KEY_BRL_DOT4 0x1f4
  524. #define KEY_BRL_DOT5 0x1f5
  525. #define KEY_BRL_DOT6 0x1f6
  526. #define KEY_BRL_DOT7 0x1f7
  527. #define KEY_BRL_DOT8 0x1f8
  528. #define KEY_BRL_DOT9 0x1f9
  529. #define KEY_BRL_DOT10 0x1fa
  530. /* We avoid low common keys in module aliases so they don't get huge. */
  531. #define KEY_MIN_INTERESTING KEY_MUTE
  532. #define KEY_MAX 0x1ff
  533. #define KEY_CNT (KEY_MAX+1)
  534. /*
  535. * Relative axes
  536. */
  537. #define REL_X 0x00
  538. #define REL_Y 0x01
  539. #define REL_Z 0x02
  540. #define REL_RX 0x03
  541. #define REL_RY 0x04
  542. #define REL_RZ 0x05
  543. #define REL_HWHEEL 0x06
  544. #define REL_DIAL 0x07
  545. #define REL_WHEEL 0x08
  546. #define REL_MISC 0x09
  547. #define REL_MAX 0x0f
  548. #define REL_CNT (REL_MAX+1)
  549. /*
  550. * Absolute axes
  551. */
  552. #define ABS_X 0x00
  553. #define ABS_Y 0x01
  554. #define ABS_Z 0x02
  555. #define ABS_RX 0x03
  556. #define ABS_RY 0x04
  557. #define ABS_RZ 0x05
  558. #define ABS_THROTTLE 0x06
  559. #define ABS_RUDDER 0x07
  560. #define ABS_WHEEL 0x08
  561. #define ABS_GAS 0x09
  562. #define ABS_BRAKE 0x0a
  563. #define ABS_HAT0X 0x10
  564. #define ABS_HAT0Y 0x11
  565. #define ABS_HAT1X 0x12
  566. #define ABS_HAT1Y 0x13
  567. #define ABS_HAT2X 0x14
  568. #define ABS_HAT2Y 0x15
  569. #define ABS_HAT3X 0x16
  570. #define ABS_HAT3Y 0x17
  571. #define ABS_PRESSURE 0x18
  572. #define ABS_DISTANCE 0x19
  573. #define ABS_TILT_X 0x1a
  574. #define ABS_TILT_Y 0x1b
  575. #define ABS_TOOL_WIDTH 0x1c
  576. #define ABS_VOLUME 0x20
  577. #define ABS_MISC 0x28
  578. #define ABS_MAX 0x3f
  579. #define ABS_CNT (ABS_MAX+1)
  580. /*
  581. * Switch events
  582. */
  583. #define SW_LID 0x00 /* set = lid shut */
  584. #define SW_TABLET_MODE 0x01 /* set = tablet mode */
  585. #define SW_HEADPHONE_INSERT 0x02 /* set = inserted */
  586. #define SW_RADIO 0x03 /* set = radio enabled */
  587. #define SW_MAX 0x0f
  588. #define SW_CNT (SW_MAX+1)
  589. /*
  590. * Misc events
  591. */
  592. #define MSC_SERIAL 0x00
  593. #define MSC_PULSELED 0x01
  594. #define MSC_GESTURE 0x02
  595. #define MSC_RAW 0x03
  596. #define MSC_SCAN 0x04
  597. #define MSC_MAX 0x07
  598. #define MSC_CNT (MSC_MAX+1)
  599. /*
  600. * LEDs
  601. */
  602. #define LED_NUML 0x00
  603. #define LED_CAPSL 0x01
  604. #define LED_SCROLLL 0x02
  605. #define LED_COMPOSE 0x03
  606. #define LED_KANA 0x04
  607. #define LED_SLEEP 0x05
  608. #define LED_SUSPEND 0x06
  609. #define LED_MUTE 0x07
  610. #define LED_MISC 0x08
  611. #define LED_MAIL 0x09
  612. #define LED_CHARGING 0x0a
  613. #define LED_MAX 0x0f
  614. #define LED_CNT (LED_MAX+1)
  615. /*
  616. * Autorepeat values
  617. */
  618. #define REP_DELAY 0x00
  619. #define REP_PERIOD 0x01
  620. #define REP_MAX 0x01
  621. /*
  622. * Sounds
  623. */
  624. #define SND_CLICK 0x00
  625. #define SND_BELL 0x01
  626. #define SND_TONE 0x02
  627. #define SND_MAX 0x07
  628. #define SND_CNT (SND_MAX+1)
  629. /*
  630. * IDs.
  631. */
  632. #define ID_BUS 0
  633. #define ID_VENDOR 1
  634. #define ID_PRODUCT 2
  635. #define ID_VERSION 3
  636. #define BUS_PCI 0x01
  637. #define BUS_ISAPNP 0x02
  638. #define BUS_USB 0x03
  639. #define BUS_HIL 0x04
  640. #define BUS_BLUETOOTH 0x05
  641. #define BUS_VIRTUAL 0x06
  642. #define BUS_ISA 0x10
  643. #define BUS_I8042 0x11
  644. #define BUS_XTKBD 0x12
  645. #define BUS_RS232 0x13
  646. #define BUS_GAMEPORT 0x14
  647. #define BUS_PARPORT 0x15
  648. #define BUS_AMIGA 0x16
  649. #define BUS_ADB 0x17
  650. #define BUS_I2C 0x18
  651. #define BUS_HOST 0x19
  652. #define BUS_GSC 0x1A
  653. #define BUS_ATARI 0x1B
  654. /*
  655. * Values describing the status of a force-feedback effect
  656. */
  657. #define FF_STATUS_STOPPED 0x00
  658. #define FF_STATUS_PLAYING 0x01
  659. #define FF_STATUS_MAX 0x01
  660. /*
  661. * Structures used in ioctls to upload effects to a device
  662. * They are pieces of a bigger structure (called ff_effect)
  663. */
  664. /*
  665. * All duration values are expressed in ms. Values above 32767 ms (0x7fff)
  666. * should not be used and have unspecified results.
  667. */
  668. /**
  669. * struct ff_replay - defines scheduling of the force-feedback effect
  670. * @length: duration of the effect
  671. * @delay: delay before effect should start playing
  672. */
  673. struct ff_replay {
  674. __u16 length;
  675. __u16 delay;
  676. };
  677. /**
  678. * struct ff_trigger - defines what triggers the force-feedback effect
  679. * @button: number of the button triggering the effect
  680. * @interval: controls how soon the effect can be re-triggered
  681. */
  682. struct ff_trigger {
  683. __u16 button;
  684. __u16 interval;
  685. };
  686. /**
  687. * struct ff_envelope - generic force-feedback effect envelope
  688. * @attack_length: duration of the attack (ms)
  689. * @attack_level: level at the beginning of the attack
  690. * @fade_length: duration of fade (ms)
  691. * @fade_level: level at the end of fade
  692. *
  693. * The @attack_level and @fade_level are absolute values; when applying
  694. * envelope force-feedback core will convert to positive/negative
  695. * value based on polarity of the default level of the effect.
  696. * Valid range for the attack and fade levels is 0x0000 - 0x7fff
  697. */
  698. struct ff_envelope {
  699. __u16 attack_length;
  700. __u16 attack_level;
  701. __u16 fade_length;
  702. __u16 fade_level;
  703. };
  704. /**
  705. * struct ff_constant_effect - defines parameters of a constant force-feedback effect
  706. * @level: strength of the effect; may be negative
  707. * @envelope: envelope data
  708. */
  709. struct ff_constant_effect {
  710. __s16 level;
  711. struct ff_envelope envelope;
  712. };
  713. /**
  714. * struct ff_ramp_effect - defines parameters of a ramp force-feedback effect
  715. * @start_level: beginning strength of the effect; may be negative
  716. * @end_level: final strength of the effect; may be negative
  717. * @envelope: envelope data
  718. */
  719. struct ff_ramp_effect {
  720. __s16 start_level;
  721. __s16 end_level;
  722. struct ff_envelope envelope;
  723. };
  724. /**
  725. * struct ff_condition_effect - defines a spring or friction force-feedback effect
  726. * @right_saturation: maximum level when joystick moved all way to the right
  727. * @left_saturation: same for the left side
  728. * @right_coeff: controls how fast the force grows when the joystick moves
  729. * to the right
  730. * @left_coeff: same for the left side
  731. * @deadband: size of the dead zone, where no force is produced
  732. * @center: position of the dead zone
  733. */
  734. struct ff_condition_effect {
  735. __u16 right_saturation;
  736. __u16 left_saturation;
  737. __s16 right_coeff;
  738. __s16 left_coeff;
  739. __u16 deadband;
  740. __s16 center;
  741. };
  742. /**
  743. * struct ff_periodic_effect - defines parameters of a periodic force-feedback effect
  744. * @waveform: kind of the effect (wave)
  745. * @period: period of the wave (ms)
  746. * @magnitude: peak value
  747. * @offset: mean value of the wave (roughly)
  748. * @phase: 'horizontal' shift
  749. * @envelope: envelope data
  750. * @custom_len: number of samples (FF_CUSTOM only)
  751. * @custom_data: buffer of samples (FF_CUSTOM only)
  752. *
  753. * Known waveforms - FF_SQUARE, FF_TRIANGLE, FF_SINE, FF_SAW_UP,
  754. * FF_SAW_DOWN, FF_CUSTOM. The exact syntax FF_CUSTOM is undefined
  755. * for the time being as no driver supports it yet.
  756. *
  757. * Note: the data pointed by custom_data is copied by the driver.
  758. * You can therefore dispose of the memory after the upload/update.
  759. */
  760. struct ff_periodic_effect {
  761. __u16 waveform;
  762. __u16 period;
  763. __s16 magnitude;
  764. __s16 offset;
  765. __u16 phase;
  766. struct ff_envelope envelope;
  767. __u32 custom_len;
  768. __s16 *custom_data;
  769. };
  770. /**
  771. * struct ff_rumble_effect - defines parameters of a periodic force-feedback effect
  772. * @strong_magnitude: magnitude of the heavy motor
  773. * @weak_magnitude: magnitude of the light one
  774. *
  775. * Some rumble pads have two motors of different weight. Strong_magnitude
  776. * represents the magnitude of the vibration generated by the heavy one.
  777. */
  778. struct ff_rumble_effect {
  779. __u16 strong_magnitude;
  780. __u16 weak_magnitude;
  781. };
  782. /**
  783. * struct ff_effect - defines force feedback effect
  784. * @type: type of the effect (FF_CONSTANT, FF_PERIODIC, FF_RAMP, FF_SPRING,
  785. * FF_FRICTION, FF_DAMPER, FF_RUMBLE, FF_INERTIA, or FF_CUSTOM)
  786. * @id: an unique id assigned to an effect
  787. * @direction: direction of the effect
  788. * @trigger: trigger conditions (struct ff_trigger)
  789. * @replay: scheduling of the effect (struct ff_replay)
  790. * @u: effect-specific structure (one of ff_constant_effect, ff_ramp_effect,
  791. * ff_periodic_effect, ff_condition_effect, ff_rumble_effect) further
  792. * defining effect parameters
  793. *
  794. * This structure is sent through ioctl from the application to the driver.
  795. * To create a new effect application should set its @id to -1; the kernel
  796. * will return assigned @id which can later be used to update or delete
  797. * this effect.
  798. *
  799. * Direction of the effect is encoded as follows:
  800. * 0 deg -> 0x0000 (down)
  801. * 90 deg -> 0x4000 (left)
  802. * 180 deg -> 0x8000 (up)
  803. * 270 deg -> 0xC000 (right)
  804. */
  805. struct ff_effect {
  806. __u16 type;
  807. __s16 id;
  808. __u16 direction;
  809. struct ff_trigger trigger;
  810. struct ff_replay replay;
  811. union {
  812. struct ff_constant_effect constant;
  813. struct ff_ramp_effect ramp;
  814. struct ff_periodic_effect periodic;
  815. struct ff_condition_effect condition[2]; /* One for each axis */
  816. struct ff_rumble_effect rumble;
  817. } u;
  818. };
  819. /*
  820. * Force feedback effect types
  821. */
  822. #define FF_RUMBLE 0x50
  823. #define FF_PERIODIC 0x51
  824. #define FF_CONSTANT 0x52
  825. #define FF_SPRING 0x53
  826. #define FF_FRICTION 0x54
  827. #define FF_DAMPER 0x55
  828. #define FF_INERTIA 0x56
  829. #define FF_RAMP 0x57
  830. #define FF_EFFECT_MIN FF_RUMBLE
  831. #define FF_EFFECT_MAX FF_RAMP
  832. /*
  833. * Force feedback periodic effect types
  834. */
  835. #define FF_SQUARE 0x58
  836. #define FF_TRIANGLE 0x59
  837. #define FF_SINE 0x5a
  838. #define FF_SAW_UP 0x5b
  839. #define FF_SAW_DOWN 0x5c
  840. #define FF_CUSTOM 0x5d
  841. #define FF_WAVEFORM_MIN FF_SQUARE
  842. #define FF_WAVEFORM_MAX FF_CUSTOM
  843. /*
  844. * Set ff device properties
  845. */
  846. #define FF_GAIN 0x60
  847. #define FF_AUTOCENTER 0x61
  848. #define FF_MAX 0x7f
  849. #define FF_CNT (FF_MAX+1)
  850. #ifdef __KERNEL__
  851. /*
  852. * In-kernel definitions.
  853. */
  854. #include <linux/device.h>
  855. #include <linux/fs.h>
  856. #include <linux/timer.h>
  857. #include <linux/mod_devicetable.h>
  858. /**
  859. * struct input_dev - represents an input device
  860. * @name: name of the device
  861. * @phys: physical path to the device in the system hierarchy
  862. * @uniq: unique identification code for the device (if device has it)
  863. * @id: id of the device (struct input_id)
  864. * @evbit: bitmap of types of events supported by the device (EV_KEY,
  865. * EV_REL, etc.)
  866. * @keybit: bitmap of keys/buttons this device has
  867. * @relbit: bitmap of relative axes for the device
  868. * @absbit: bitmap of absolute axes for the device
  869. * @mscbit: bitmap of miscellaneous events supported by the device
  870. * @ledbit: bitmap of leds present on the device
  871. * @sndbit: bitmap of sound effects supported by the device
  872. * @ffbit: bitmap of force feedback effects supported by the device
  873. * @swbit: bitmap of switches present on the device
  874. * @keycodemax: size of keycode table
  875. * @keycodesize: size of elements in keycode table
  876. * @keycode: map of scancodes to keycodes for this device
  877. * @setkeycode: optional method to alter current keymap, used to implement
  878. * sparse keymaps. If not supplied default mechanism will be used
  879. * @getkeycode: optional method to retrieve current keymap. If not supplied
  880. * default mechanism will be used
  881. * @ff: force feedback structure associated with the device if device
  882. * supports force feedback effects
  883. * @repeat_key: stores key code of the last key pressed; used to implement
  884. * software autorepeat
  885. * @timer: timer for software autorepeat
  886. * @sync: set to 1 when there were no new events since last EV_SYNC
  887. * @abs: current values for reports from absolute axes
  888. * @rep: current values for autorepeat parameters (delay, rate)
  889. * @key: reflects current state of device's keys/buttons
  890. * @led: reflects current state of device's LEDs
  891. * @snd: reflects current state of sound effects
  892. * @sw: reflects current state of device's switches
  893. * @absmax: maximum values for events coming from absolute axes
  894. * @absmin: minimum values for events coming from absolute axes
  895. * @absfuzz: describes noisiness for axes
  896. * @absflat: size of the center flat position (used by joydev)
  897. * @open: this method is called when the very first user calls
  898. * input_open_device(). The driver must prepare the device
  899. * to start generating events (start polling thread,
  900. * request an IRQ, submit URB, etc.)
  901. * @close: this method is called when the very last user calls
  902. * input_close_device().
  903. * @flush: purges the device. Most commonly used to get rid of force
  904. * feedback effects loaded into the device when disconnecting
  905. * from it
  906. * @event: event handler for events sent _to_ the device, like EV_LED
  907. * or EV_SND. The device is expected to carry out the requested
  908. * action (turn on a LED, play sound, etc.) The call is protected
  909. * by @event_lock and must not sleep
  910. * @grab: input handle that currently has the device grabbed (via
  911. * EVIOCGRAB ioctl). When a handle grabs a device it becomes sole
  912. * recipient for all input events coming from the device
  913. * @event_lock: this spinlock is is taken when input core receives
  914. * and processes a new event for the device (in input_event()).
  915. * Code that accesses and/or modifies parameters of a device
  916. * (such as keymap or absmin, absmax, absfuzz, etc.) after device
  917. * has been registered with input core must take this lock.
  918. * @mutex: serializes calls to open(), close() and flush() methods
  919. * @users: stores number of users (input handlers) that opened this
  920. * device. It is used by input_open_device() and input_close_device()
  921. * to make sure that dev->open() is only called when the first
  922. * user opens device and dev->close() is called when the very
  923. * last user closes the device
  924. * @going_away: marks devices that are in a middle of unregistering and
  925. * causes input_open_device*() fail with -ENODEV.
  926. * @dev: driver model's view of this device
  927. * @cdev: union for struct device pointer
  928. * @h_list: list of input handles associated with the device. When
  929. * accessing the list dev->mutex must be held
  930. * @node: used to place the device onto input_dev_list
  931. */
  932. struct input_dev {
  933. /* private: */
  934. void *private; /* do not use */
  935. /* public: */
  936. const char *name;
  937. const char *phys;
  938. const char *uniq;
  939. struct input_id id;
  940. unsigned long evbit[BITS_TO_LONGS(EV_CNT)];
  941. unsigned long keybit[BITS_TO_LONGS(KEY_CNT)];
  942. unsigned long relbit[BITS_TO_LONGS(REL_CNT)];
  943. unsigned long absbit[BITS_TO_LONGS(ABS_CNT)];
  944. unsigned long mscbit[BITS_TO_LONGS(MSC_CNT)];
  945. unsigned long ledbit[BITS_TO_LONGS(LED_CNT)];
  946. unsigned long sndbit[BITS_TO_LONGS(SND_CNT)];
  947. unsigned long ffbit[BITS_TO_LONGS(FF_CNT)];
  948. unsigned long swbit[BITS_TO_LONGS(SW_CNT)];
  949. unsigned int keycodemax;
  950. unsigned int keycodesize;
  951. void *keycode;
  952. int (*setkeycode)(struct input_dev *dev, int scancode, int keycode);
  953. int (*getkeycode)(struct input_dev *dev, int scancode, int *keycode);
  954. struct ff_device *ff;
  955. unsigned int repeat_key;
  956. struct timer_list timer;
  957. int sync;
  958. int abs[ABS_MAX + 1];
  959. int rep[REP_MAX + 1];
  960. unsigned long key[BITS_TO_LONGS(KEY_CNT)];
  961. unsigned long led[BITS_TO_LONGS(LED_CNT)];
  962. unsigned long snd[BITS_TO_LONGS(SND_CNT)];
  963. unsigned long sw[BITS_TO_LONGS(SW_CNT)];
  964. int absmax[ABS_MAX + 1];
  965. int absmin[ABS_MAX + 1];
  966. int absfuzz[ABS_MAX + 1];
  967. int absflat[ABS_MAX + 1];
  968. int (*open)(struct input_dev *dev);
  969. void (*close)(struct input_dev *dev);
  970. int (*flush)(struct input_dev *dev, struct file *file);
  971. int (*event)(struct input_dev *dev, unsigned int type, unsigned int code, int value);
  972. struct input_handle *grab;
  973. spinlock_t event_lock;
  974. struct mutex mutex;
  975. unsigned int users;
  976. int going_away;
  977. struct device dev;
  978. union { /* temporarily so while we switching to struct device */
  979. struct device *dev;
  980. } cdev;
  981. struct list_head h_list;
  982. struct list_head node;
  983. };
  984. #define to_input_dev(d) container_of(d, struct input_dev, dev)
  985. /*
  986. * Verify that we are in sync with input_device_id mod_devicetable.h #defines
  987. */
  988. #if EV_MAX != INPUT_DEVICE_ID_EV_MAX
  989. #error "EV_MAX and INPUT_DEVICE_ID_EV_MAX do not match"
  990. #endif
  991. #if KEY_MIN_INTERESTING != INPUT_DEVICE_ID_KEY_MIN_INTERESTING
  992. #error "KEY_MIN_INTERESTING and INPUT_DEVICE_ID_KEY_MIN_INTERESTING do not match"
  993. #endif
  994. #if KEY_MAX != INPUT_DEVICE_ID_KEY_MAX
  995. #error "KEY_MAX and INPUT_DEVICE_ID_KEY_MAX do not match"
  996. #endif
  997. #if REL_MAX != INPUT_DEVICE_ID_REL_MAX
  998. #error "REL_MAX and INPUT_DEVICE_ID_REL_MAX do not match"
  999. #endif
  1000. #if ABS_MAX != INPUT_DEVICE_ID_ABS_MAX
  1001. #error "ABS_MAX and INPUT_DEVICE_ID_ABS_MAX do not match"
  1002. #endif
  1003. #if MSC_MAX != INPUT_DEVICE_ID_MSC_MAX
  1004. #error "MSC_MAX and INPUT_DEVICE_ID_MSC_MAX do not match"
  1005. #endif
  1006. #if LED_MAX != INPUT_DEVICE_ID_LED_MAX
  1007. #error "LED_MAX and INPUT_DEVICE_ID_LED_MAX do not match"
  1008. #endif
  1009. #if SND_MAX != INPUT_DEVICE_ID_SND_MAX
  1010. #error "SND_MAX and INPUT_DEVICE_ID_SND_MAX do not match"
  1011. #endif
  1012. #if FF_MAX != INPUT_DEVICE_ID_FF_MAX
  1013. #error "FF_MAX and INPUT_DEVICE_ID_FF_MAX do not match"
  1014. #endif
  1015. #if SW_MAX != INPUT_DEVICE_ID_SW_MAX
  1016. #error "SW_MAX and INPUT_DEVICE_ID_SW_MAX do not match"
  1017. #endif
  1018. #define INPUT_DEVICE_ID_MATCH_DEVICE \
  1019. (INPUT_DEVICE_ID_MATCH_BUS | INPUT_DEVICE_ID_MATCH_VENDOR | INPUT_DEVICE_ID_MATCH_PRODUCT)
  1020. #define INPUT_DEVICE_ID_MATCH_DEVICE_AND_VERSION \
  1021. (INPUT_DEVICE_ID_MATCH_DEVICE | INPUT_DEVICE_ID_MATCH_VERSION)
  1022. struct input_handle;
  1023. /**
  1024. * struct input_handler - implements one of interfaces for input devices
  1025. * @private: driver-specific data
  1026. * @event: event handler. This method is being called by input core with
  1027. * interrupts disabled and dev->event_lock spinlock held and so
  1028. * it may not sleep
  1029. * @connect: called when attaching a handler to an input device
  1030. * @disconnect: disconnects a handler from input device
  1031. * @start: starts handler for given handle. This function is called by
  1032. * input core right after connect() method and also when a process
  1033. * that "grabbed" a device releases it
  1034. * @fops: file operations this driver implements
  1035. * @minor: beginning of range of 32 minors for devices this driver
  1036. * can provide
  1037. * @name: name of the handler, to be shown in /proc/bus/input/handlers
  1038. * @id_table: pointer to a table of input_device_ids this driver can
  1039. * handle
  1040. * @blacklist: pointer to a table of input_device_ids this driver should
  1041. * ignore even if they match @id_table
  1042. * @h_list: list of input handles associated with the handler
  1043. * @node: for placing the driver onto input_handler_list
  1044. *
  1045. * Input handlers attach to input devices and create input handles. There
  1046. * are likely several handlers attached to any given input device at the
  1047. * same time. All of them will get their copy of input event generated by
  1048. * the device.
  1049. *
  1050. * Note that input core serializes calls to connect() and disconnect()
  1051. * methods.
  1052. */
  1053. struct input_handler {
  1054. void *private;
  1055. void (*event)(struct input_handle *handle, unsigned int type, unsigned int code, int value);
  1056. int (*connect)(struct input_handler *handler, struct input_dev *dev, const struct input_device_id *id);
  1057. void (*disconnect)(struct input_handle *handle);
  1058. void (*start)(struct input_handle *handle);
  1059. const struct file_operations *fops;
  1060. int minor;
  1061. const char *name;
  1062. const struct input_device_id *id_table;
  1063. const struct input_device_id *blacklist;
  1064. struct list_head h_list;
  1065. struct list_head node;
  1066. };
  1067. /**
  1068. * struct input_handle - links input device with an input handler
  1069. * @private: handler-specific data
  1070. * @open: counter showing whether the handle is 'open', i.e. should deliver
  1071. * events from its device
  1072. * @name: name given to the handle by handler that created it
  1073. * @dev: input device the handle is attached to
  1074. * @handler: handler that works with the device through this handle
  1075. * @d_node: used to put the handle on device's list of attached handles
  1076. * @h_node: used to put the handle on handler's list of handles from which
  1077. * it gets events
  1078. */
  1079. struct input_handle {
  1080. void *private;
  1081. int open;
  1082. const char *name;
  1083. struct input_dev *dev;
  1084. struct input_handler *handler;
  1085. struct list_head d_node;
  1086. struct list_head h_node;
  1087. };
  1088. #define to_dev(n) container_of(n, struct input_dev, node)
  1089. #define to_handler(n) container_of(n, struct input_handler, node)
  1090. #define to_handle(n) container_of(n, struct input_handle, d_node)
  1091. #define to_handle_h(n) container_of(n, struct input_handle, h_node)
  1092. struct input_dev *input_allocate_device(void);
  1093. void input_free_device(struct input_dev *dev);
  1094. static inline struct input_dev *input_get_device(struct input_dev *dev)
  1095. {
  1096. return to_input_dev(get_device(&dev->dev));
  1097. }
  1098. static inline void input_put_device(struct input_dev *dev)
  1099. {
  1100. put_device(&dev->dev);
  1101. }
  1102. static inline void *input_get_drvdata(struct input_dev *dev)
  1103. {
  1104. return dev->private;
  1105. }
  1106. static inline void input_set_drvdata(struct input_dev *dev, void *data)
  1107. {
  1108. dev->private = data;
  1109. }
  1110. int __must_check input_register_device(struct input_dev *);
  1111. void input_unregister_device(struct input_dev *);
  1112. int __must_check input_register_handler(struct input_handler *);
  1113. void input_unregister_handler(struct input_handler *);
  1114. int input_register_handle(struct input_handle *);
  1115. void input_unregister_handle(struct input_handle *);
  1116. int input_grab_device(struct input_handle *);
  1117. void input_release_device(struct input_handle *);
  1118. int input_open_device(struct input_handle *);
  1119. void input_close_device(struct input_handle *);
  1120. int input_flush_device(struct input_handle* handle, struct file* file);
  1121. void input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value);
  1122. void input_inject_event(struct input_handle *handle, unsigned int type, unsigned int code, int value);
  1123. static inline void input_report_key(struct input_dev *dev, unsigned int code, int value)
  1124. {
  1125. input_event(dev, EV_KEY, code, !!value);
  1126. }
  1127. static inline void input_report_rel(struct input_dev *dev, unsigned int code, int value)
  1128. {
  1129. input_event(dev, EV_REL, code, value);
  1130. }
  1131. static inline void input_report_abs(struct input_dev *dev, unsigned int code, int value)
  1132. {
  1133. input_event(dev, EV_ABS, code, value);
  1134. }
  1135. static inline void input_report_ff_status(struct input_dev *dev, unsigned int code, int value)
  1136. {
  1137. input_event(dev, EV_FF_STATUS, code, value);
  1138. }
  1139. static inline void input_report_switch(struct input_dev *dev, unsigned int code, int value)
  1140. {
  1141. input_event(dev, EV_SW, code, !!value);
  1142. }
  1143. static inline void input_sync(struct input_dev *dev)
  1144. {
  1145. input_event(dev, EV_SYN, SYN_REPORT, 0);
  1146. }
  1147. void input_set_capability(struct input_dev *dev, unsigned int type, unsigned int code);
  1148. static inline void input_set_abs_params(struct input_dev *dev, int axis, int min, int max, int fuzz, int flat)
  1149. {
  1150. dev->absmin[axis] = min;
  1151. dev->absmax[axis] = max;
  1152. dev->absfuzz[axis] = fuzz;
  1153. dev->absflat[axis] = flat;
  1154. dev->absbit[BIT_WORD(axis)] |= BIT_MASK(axis);
  1155. }
  1156. extern struct class input_class;
  1157. /**
  1158. * struct ff_device - force-feedback part of an input device
  1159. * @upload: Called to upload an new effect into device
  1160. * @erase: Called to erase an effect from device
  1161. * @playback: Called to request device to start playing specified effect
  1162. * @set_gain: Called to set specified gain
  1163. * @set_autocenter: Called to auto-center device
  1164. * @destroy: called by input core when parent input device is being
  1165. * destroyed
  1166. * @private: driver-specific data, will be freed automatically
  1167. * @ffbit: bitmap of force feedback capabilities truly supported by
  1168. * device (not emulated like ones in input_dev->ffbit)
  1169. * @mutex: mutex for serializing access to the device
  1170. * @max_effects: maximum number of effects supported by device
  1171. * @effects: pointer to an array of effects currently loaded into device
  1172. * @effect_owners: array of effect owners; when file handle owning
  1173. * an effect gets closed the effect is automatically erased
  1174. *
  1175. * Every force-feedback device must implement upload() and playback()
  1176. * methods; erase() is optional. set_gain() and set_autocenter() need
  1177. * only be implemented if driver sets up FF_GAIN and FF_AUTOCENTER
  1178. * bits.
  1179. */
  1180. struct ff_device {
  1181. int (*upload)(struct input_dev *dev, struct ff_effect *effect,
  1182. struct ff_effect *old);
  1183. int (*erase)(struct input_dev *dev, int effect_id);
  1184. int (*playback)(struct input_dev *dev, int effect_id, int value);
  1185. void (*set_gain)(struct input_dev *dev, u16 gain);
  1186. void (*set_autocenter)(struct input_dev *dev, u16 magnitude);
  1187. void (*destroy)(struct ff_device *);
  1188. void *private;
  1189. unsigned long ffbit[BITS_TO_LONGS(FF_CNT)];
  1190. struct mutex mutex;
  1191. int max_effects;
  1192. struct ff_effect *effects;
  1193. struct file *effect_owners[];
  1194. };
  1195. int input_ff_create(struct input_dev *dev, int max_effects);
  1196. void input_ff_destroy(struct input_dev *dev);
  1197. int input_ff_event(struct input_dev *dev, unsigned int type, unsigned int code, int value);
  1198. int input_ff_upload(struct input_dev *dev, struct ff_effect *effect, struct file *file);
  1199. int input_ff_erase(struct input_dev *dev, int effect_id, struct file *file);
  1200. int input_ff_create_memless(struct input_dev *dev, void *data,
  1201. int (*play_effect)(struct input_dev *, void *, struct ff_effect *));
  1202. #endif
  1203. #endif