diff options
Diffstat (limited to 'common/usb_keycodes.h')
| -rw-r--r-- | common/usb_keycodes.h | 423 |
1 files changed, 423 insertions, 0 deletions
diff --git a/common/usb_keycodes.h b/common/usb_keycodes.h new file mode 100644 index 000000000..9b6cce153 --- /dev/null +++ b/common/usb_keycodes.h | |||
| @@ -0,0 +1,423 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2011 Jun Wako <wakojun@gmail.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | /* | ||
| 19 | * Key codes: HID Keyboard/Keypad Page(0x07) | ||
| 20 | * http://www.usb.org/developers/devclass_docs/Hut1_12.pdf | ||
| 21 | */ | ||
| 22 | #ifndef USB_KEYCODES_H | ||
| 23 | #define USB_KEYCODES_H | ||
| 24 | |||
| 25 | |||
| 26 | #define IS_ERROR(code) (KB_ROLL_OVER <= (code) && (code) <= KB_UNDEFINED) | ||
| 27 | #define IS_KEY(code) (KB_A <= (code) && (code) <= KB_EXSEL) | ||
| 28 | #define IS_MOD(code) (KB_LCTRL <= (code) && (code) <= KB_RGUI) | ||
| 29 | #define IS_FN(code) (KB_FN0 <= (code) && (code) <= KB_FN7) | ||
| 30 | #define IS_MOUSEKEY(code) (KB_MS_UP <= (code) && (code) <= KB_MS_WH_RIGHT) | ||
| 31 | #define IS_MOUSEKEY_MOVE(code) (KB_MS_UP <= (code) && (code) <= KB_MS_RIGHT) | ||
| 32 | #define IS_MOUSEKEY_BUTTON(code) (KB_MS_BTN1 <= (code) && (code) <= KB_MS_BTN5) | ||
| 33 | #define IS_MOUSEKEY_WHEEL(code) (KB_MS_WH_UP <= (code) && (code) <= KB_MS_WH_RIGHT) | ||
| 34 | |||
| 35 | #define MOD_BIT(code) (1<<((code) & 0x07)) | ||
| 36 | #define FN_BIT(code) (1<<((code) - KB_FN0)) | ||
| 37 | |||
| 38 | |||
| 39 | /* Short names */ | ||
| 40 | #define KB_LCTL KB_LCTRL | ||
| 41 | #define KB_RCTL KB_RCTRL | ||
| 42 | #define KB_LSFT KB_LSHIFT | ||
| 43 | #define KB_RSFT KB_RSHIFT | ||
| 44 | #define KB_ESC KB_ESCAPE | ||
| 45 | #define KB_BSPC KB_BSPACE | ||
| 46 | #define KB_ENT KB_ENTER | ||
| 47 | #define KB_DEL KB_DELETE | ||
| 48 | #define KB_INS KB_INSERT | ||
| 49 | #define KB_CAPS KB_CAPSLOCK | ||
| 50 | #define KB_RGHT KB_RIGHT | ||
| 51 | #define KB_PGDN KB_PGDOWN | ||
| 52 | #define KB_PSCR KB_PSCREEN | ||
| 53 | #define KB_SLCK KB_SCKLOCK | ||
| 54 | #define KB_PAUS KB_PAUSE | ||
| 55 | #define KB_BRK KB_PAUSE | ||
| 56 | #define KB_NLCK KB_NUMLOCK | ||
| 57 | #define KB_SPC KB_SPACE | ||
| 58 | #define KB_MINS KB_MINUS | ||
| 59 | #define KB_EQL KB_EQUAL | ||
| 60 | #define KB_GRV KB_GRAVE | ||
| 61 | #define KB_RBRC KB_RBRACKET | ||
| 62 | #define KB_LBRC KB_LBRACKET | ||
| 63 | #define KB_COMM KB_COMMA | ||
| 64 | #define KB_BSLS KB_BSLASH | ||
| 65 | #define KB_SLSH KB_SLASH | ||
| 66 | #define KB_SCLN KB_SCOLON | ||
| 67 | #define KB_QUOT KB_QUOTE | ||
| 68 | #define KB_APP KB_APPLICATION | ||
| 69 | #define KB_NUHS KB_NONUS_HASH | ||
| 70 | #define KB_NUBS KB_NONUS_BSLASH | ||
| 71 | #define KB_ERAS KB_ALT_ERASE, | ||
| 72 | #define KB_CLR KB_CLEAR | ||
| 73 | /* for Japanese */ | ||
| 74 | #define KB_ZKHK KB_GRAVE | ||
| 75 | #define KB_RO KB_INT1 | ||
| 76 | #define KB_KANA KB_INT2 | ||
| 77 | #define KB_JYEN KB_INT3 | ||
| 78 | #define KB_HENK KB_INT4 | ||
| 79 | #define KB_MHEN KB_INT5 | ||
| 80 | /* Keypad */ | ||
| 81 | #define KB_P1 KB_KP_1 | ||
| 82 | #define KB_P2 KB_KP_2 | ||
| 83 | #define KB_P3 KB_KP_3 | ||
| 84 | #define KB_P4 KB_KP_4 | ||
| 85 | #define KB_P5 KB_KP_5 | ||
| 86 | #define KB_P6 KB_KP_6 | ||
| 87 | #define KB_P7 KB_KP_7 | ||
| 88 | #define KB_P8 KB_KP_8 | ||
| 89 | #define KB_P9 KB_KP_9 | ||
| 90 | #define KB_P0 KB_KP_0 | ||
| 91 | #define KB_PDOT KB_KP_DOT | ||
| 92 | #define KB_PCMM KB_KP_COMMA | ||
| 93 | #define KB_PSLS KB_KP_SLASH | ||
| 94 | #define KB_PAST KB_KP_ASTERISK | ||
| 95 | #define KB_PMNS KB_KP_MINUS | ||
| 96 | #define KB_PPLS KB_KP_PLUS | ||
| 97 | #define KB_PEQL KB_KP_EQUAL | ||
| 98 | #define KB_PENT KB_KP_ENTER | ||
| 99 | /* Mousekey */ | ||
| 100 | #define KB_MS_U KB_MS_UP | ||
| 101 | #define KB_MS_D KB_MS_DOWN | ||
| 102 | #define KB_MS_L KB_MS_LEFT | ||
| 103 | #define KB_MS_R KB_MS_RIGHT | ||
| 104 | #define KB_BTN1 KB_MS_BTN1 | ||
| 105 | #define KB_BTN2 KB_MS_BTN2 | ||
| 106 | #define KB_BTN3 KB_MS_BTN3 | ||
| 107 | #define KB_BTN4 KB_MS_BTN4 | ||
| 108 | #define KB_BTN5 KB_MS_BTN5 | ||
| 109 | #define KB_WH_U KB_MS_WH_UP | ||
| 110 | #define KB_WH_D KB_MS_WH_DOWN | ||
| 111 | #define KB_WH_L KB_MS_WH_LEFT | ||
| 112 | #define KB_WH_R KB_MS_WH_RIGHT | ||
| 113 | /* Sytem Control & Consumer usage */ | ||
| 114 | #define KB_PWR KB_SYSTEM_POWER | ||
| 115 | #define KB_SLEP KB_SYSTEM_SLEEP | ||
| 116 | #define KB_WAKE KB_SYSTEM_WAKE | ||
| 117 | #define KB_MUTE KB_AUDIO_MUTE | ||
| 118 | #define KB_VOLU KB_AUDIO_VOL_UP | ||
| 119 | #define KB_VOLD KB_AUDIO_VOL_DOWN | ||
| 120 | #define KB_MNXT KB_MEDIA_NEXT_TRACK | ||
| 121 | #define KB_MPRV KB_MEDIA_PREV_TRACK | ||
| 122 | #define KB_MSTP KB_MEDIA_STOP | ||
| 123 | #define KB_MPLY KB_MEDIA_PLAY_PAUSE | ||
| 124 | #define KB_MSEL KB_MEDIA_SELECT | ||
| 125 | #define KB_MAIL KB_MAIL | ||
| 126 | #define KB_CALC KB_CALCULATOR | ||
| 127 | #define KB_MYCM KB_MY_COMPUTER | ||
| 128 | #define KB_WSCH KB_WWW_SEARCH | ||
| 129 | #define KB_WHOM KB_WWW_HOME | ||
| 130 | #define KB_WBAK KB_WWW_BACK | ||
| 131 | #define KB_WFWD KB_WWW_FORWARD | ||
| 132 | #define KB_WSTP KB_WWW_STOP | ||
| 133 | #define KB_WREF KB_WWW_REFRESH | ||
| 134 | #define KB_WFAV KB_WWW_FAVORITES | ||
| 135 | |||
| 136 | |||
| 137 | /* Special keycode */ | ||
| 138 | enum special_keycodes { | ||
| 139 | /* System Control */ | ||
| 140 | KB_SYSTEM_POWER = 0xB0, | ||
| 141 | KB_SYSTEM_SLEEP, | ||
| 142 | KB_SYSTEM_WAKE, | ||
| 143 | |||
| 144 | /* Consumer Page */ | ||
| 145 | KB_AUDIO_MUTE, | ||
| 146 | KB_AUDIO_VOL_UP, | ||
| 147 | KB_AUDIO_VOL_DOWN, | ||
| 148 | KB_MEDIA_NEXT_TRACK, | ||
| 149 | KB_MEDIA_PREV_TRACK, | ||
| 150 | KB_MEDIA_STOP, | ||
| 151 | KB_MEDIA_PLAY_PAUSE, | ||
| 152 | KB_MEDIA_SELECT, | ||
| 153 | KB_MAIL, | ||
| 154 | KB_CALCULATOR, | ||
| 155 | KB_MY_COMPUTER, | ||
| 156 | KB_WWW_SEARCH, | ||
| 157 | KB_WWW_HOME, | ||
| 158 | KB_WWW_BACK, /* 0xC0 */ | ||
| 159 | KB_WWW_FORWARD, | ||
| 160 | KB_WWW_STOP, | ||
| 161 | KB_WWW_REFRESH, | ||
| 162 | KB_WWW_FAVORITES, | ||
| 163 | |||
| 164 | /* reserve 0xE0-E7 for Modifiers */ | ||
| 165 | |||
| 166 | /* Layer Switching */ | ||
| 167 | KB_FN0 = 0xE8, | ||
| 168 | KB_FN1, | ||
| 169 | KB_FN2, | ||
| 170 | KB_FN3, | ||
| 171 | KB_FN4, | ||
| 172 | KB_FN5, | ||
| 173 | KB_FN6, | ||
| 174 | KB_FN7, | ||
| 175 | |||
| 176 | /* Mousekey */ | ||
| 177 | KB_MS_UP = 0xF0, | ||
| 178 | KB_MS_DOWN, | ||
| 179 | KB_MS_LEFT, | ||
| 180 | KB_MS_RIGHT, | ||
| 181 | KB_MS_BTN1, | ||
| 182 | KB_MS_BTN2, | ||
| 183 | KB_MS_BTN3, | ||
| 184 | KB_MS_BTN4, | ||
| 185 | KB_MS_BTN5, | ||
| 186 | /* Mousekey wheel */ | ||
| 187 | KB_MS_WH_UP, | ||
| 188 | KB_MS_WH_DOWN, | ||
| 189 | KB_MS_WH_LEFT, | ||
| 190 | KB_MS_WH_RIGHT, | ||
| 191 | }; | ||
| 192 | |||
| 193 | enum keycodes { | ||
| 194 | KB_NO = 0, | ||
| 195 | KB_ROLL_OVER, | ||
| 196 | KB_POST_FAIL, | ||
| 197 | KB_UNDEFINED, | ||
| 198 | KB_A, | ||
| 199 | KB_B, | ||
| 200 | KB_C, | ||
| 201 | KB_D, | ||
| 202 | KB_E, | ||
| 203 | KB_F, | ||
| 204 | KB_G, | ||
| 205 | KB_H, | ||
| 206 | KB_I, | ||
| 207 | KB_J, | ||
| 208 | KB_K, | ||
| 209 | KB_L, | ||
| 210 | KB_M, /* 0x10 */ | ||
| 211 | KB_N, | ||
| 212 | KB_O, | ||
| 213 | KB_P, | ||
| 214 | KB_Q, | ||
| 215 | KB_R, | ||
| 216 | KB_S, | ||
| 217 | KB_T, | ||
| 218 | KB_U, | ||
| 219 | KB_V, | ||
| 220 | KB_W, | ||
| 221 | KB_X, | ||
| 222 | KB_Y, | ||
| 223 | KB_Z, | ||
| 224 | KB_1, | ||
| 225 | KB_2, | ||
| 226 | KB_3, /* 0x20 */ | ||
| 227 | KB_4, | ||
| 228 | KB_5, | ||
| 229 | KB_6, | ||
| 230 | KB_7, | ||
| 231 | KB_8, | ||
| 232 | KB_9, | ||
| 233 | KB_0, | ||
| 234 | KB_ENTER, | ||
| 235 | KB_ESCAPE, | ||
| 236 | KB_BSPACE, | ||
| 237 | KB_TAB, | ||
| 238 | KB_SPACE, | ||
| 239 | KB_MINUS, | ||
| 240 | KB_EQUAL, | ||
| 241 | KB_LBRACKET, | ||
| 242 | KB_RBRACKET, /* 0x30 */ | ||
| 243 | KB_BSLASH, /* \ (and |) */ | ||
| 244 | KB_NONUS_HASH, /* Non-US # and ~ */ | ||
| 245 | KB_SCOLON, /* ; (and :) */ | ||
| 246 | KB_QUOTE, /* ' and " */ | ||
| 247 | KB_GRAVE, /* Grave accent and tilde */ | ||
| 248 | KB_COMMA, /* , and < */ | ||
| 249 | KB_DOT, /* . and > */ | ||
| 250 | KB_SLASH, /* / and ? */ | ||
| 251 | KB_CAPSLOCK, | ||
| 252 | KB_F1, | ||
| 253 | KB_F2, | ||
| 254 | KB_F3, | ||
| 255 | KB_F4, | ||
| 256 | KB_F5, | ||
| 257 | KB_F6, | ||
| 258 | KB_F7, /* 0x40 */ | ||
| 259 | KB_F8, | ||
| 260 | KB_F9, | ||
| 261 | KB_F10, | ||
| 262 | KB_F11, | ||
| 263 | KB_F12, | ||
| 264 | KB_PSCREEN, | ||
| 265 | KB_SCKLOCK, | ||
| 266 | KB_PAUSE, | ||
| 267 | KB_INSERT, | ||
| 268 | KB_HOME, | ||
| 269 | KB_PGUP, | ||
| 270 | KB_DELETE, | ||
| 271 | KB_END, | ||
| 272 | KB_PGDOWN, | ||
| 273 | KB_RIGHT, | ||
| 274 | KB_LEFT, /* 0x50 */ | ||
| 275 | KB_DOWN, | ||
| 276 | KB_UP, | ||
| 277 | KB_NUMLOCK, | ||
| 278 | KB_KP_SLASH, | ||
| 279 | KB_KP_ASTERISK, | ||
| 280 | KB_KP_MINUS, | ||
| 281 | KB_KP_PLUS, | ||
| 282 | KB_KP_ENTER, | ||
| 283 | KB_KP_1, | ||
| 284 | KB_KP_2, | ||
| 285 | KB_KP_3, | ||
| 286 | KB_KP_4, | ||
| 287 | KB_KP_5, | ||
| 288 | KB_KP_6, | ||
| 289 | KB_KP_7, | ||
| 290 | KB_KP_8, /* 0x60 */ | ||
| 291 | KB_KP_9, | ||
| 292 | KB_KP_0, | ||
| 293 | KB_KP_DOT, | ||
| 294 | KB_NONUS_BSLASH, /* Non-US \ and | */ | ||
| 295 | KB_APPLICATION, | ||
| 296 | KB_POWER, | ||
| 297 | KB_KP_EQUAL, | ||
| 298 | KB_F13, | ||
| 299 | KB_F14, | ||
| 300 | KB_F15, | ||
| 301 | KB_F16, | ||
| 302 | KB_F17, | ||
| 303 | KB_F18, | ||
| 304 | KB_F19, | ||
| 305 | KB_F20, | ||
| 306 | KB_F21, /* 0x70 */ | ||
| 307 | KB_F22, | ||
| 308 | KB_F23, | ||
| 309 | KB_F24, | ||
| 310 | KB_EXECUTE, | ||
| 311 | KB_HELP, | ||
| 312 | KB_MENU, | ||
| 313 | KB_SELECT, | ||
| 314 | KB_STOP, | ||
| 315 | KB_AGAIN, | ||
| 316 | KB_UNDO, | ||
| 317 | KB_CUT, | ||
| 318 | KB_COPY, | ||
| 319 | KB_PASTE, | ||
| 320 | KB_FIND, | ||
| 321 | KB__MUTE, | ||
| 322 | KB__VOLUP, /* 0x80 */ | ||
| 323 | KB__VOLDOWN, | ||
| 324 | KB_LOCKING_CAPS, /* locking Caps Lock */ | ||
| 325 | KB_LOCKING_NUM, /* locking Num Lock */ | ||
| 326 | KB_LOCKING_SCROLL, /* locking Scroll Lock */ | ||
| 327 | KB_KP_COMMA, | ||
| 328 | KB_KP_EQUAL_AS400, /* equal sign on AS/400 */ | ||
| 329 | KB_INT1, | ||
| 330 | KB_INT2, | ||
| 331 | KB_INT3, | ||
| 332 | KB_INT4, | ||
| 333 | KB_INT5, | ||
| 334 | KB_INT6, | ||
| 335 | KB_INT7, | ||
| 336 | KB_INT8, | ||
| 337 | KB_INT9, | ||
| 338 | KB_LANG1, /* 0x90 */ | ||
| 339 | KB_LANG2, | ||
| 340 | KB_LANG3, | ||
| 341 | KB_LANG4, | ||
| 342 | KB_LANG5, | ||
| 343 | KB_LANG6, | ||
| 344 | KB_LANG7, | ||
| 345 | KB_LANG8, | ||
| 346 | KB_LANG9, | ||
| 347 | KB_ALT_ERASE, | ||
| 348 | KB_SYSREQ, | ||
| 349 | KB_CANCEL, | ||
| 350 | KB_CLEAR, | ||
| 351 | KB_PRIOR, | ||
| 352 | KB_RETURN, | ||
| 353 | KB_SEPARATOR, | ||
| 354 | KB_OUT, /* 0xA0 */ | ||
| 355 | KB_OPER, | ||
| 356 | KB_CLEAR_AGAIN, | ||
| 357 | KB_CRSEL, | ||
| 358 | KB_EXSEL, | ||
| 359 | |||
| 360 | /* NOTE: 0xB0-DF are used as special_keycodes */ | ||
| 361 | #if 0 | ||
| 362 | KB_KP_00 = 0xB0, | ||
| 363 | KB_KP_000, | ||
| 364 | KB_THOUSANDS_SEPARATOR, | ||
| 365 | KB_DECIMAL_SEPARATOR, | ||
| 366 | KB_CURRENCY_UNIT, | ||
| 367 | KB_CURRENCY_SUB_UNIT, | ||
| 368 | KB_KP_LPAREN, | ||
| 369 | KB_KP_RPAREN, | ||
| 370 | KB_KP_LCBRACKET, /* { */ | ||
| 371 | KB_KP_RCBRACKET, /* } */ | ||
| 372 | KB_KP_TAB, | ||
| 373 | KB_KP_BSPACE, | ||
| 374 | KB_KP_A, | ||
| 375 | KB_KP_B, | ||
| 376 | KB_KP_C, | ||
| 377 | KB_KP_D, | ||
| 378 | KB_KP_E, /* 0xC0 */ | ||
| 379 | KB_KP_F, | ||
| 380 | KB_KP_XOR, | ||
| 381 | KB_KP_HAT, | ||
| 382 | KB_KP_PERC, | ||
| 383 | KB_KP_LT, | ||
| 384 | KB_KP_GT, | ||
| 385 | KB_KP_AND, | ||
| 386 | KB_KP_LAZYAND, | ||
| 387 | KB_KP_OR, | ||
| 388 | KB_KP_LAZYOR, | ||
| 389 | KB_KP_COLON, | ||
| 390 | KB_KP_HASH, | ||
| 391 | KB_KP_SPACE, | ||
| 392 | KB_KP_ATMARK, | ||
| 393 | KB_KP_EXCLAMATION, | ||
| 394 | KB_KP_MEM_STORE, /* 0xD0 */ | ||
| 395 | KB_KP_MEM_RECALL, | ||
| 396 | KB_KP_MEM_CLEAR, | ||
| 397 | KB_KP_MEM_ADD, | ||
| 398 | KB_KP_MEM_SUB, | ||
| 399 | KB_KP_MEM_MUL, | ||
| 400 | KB_KP_MEM_DIV, | ||
| 401 | KB_KP_PLUS_MINUS, | ||
| 402 | KB_KP_CLEAR, | ||
| 403 | KB_KP_CLEAR_ENTRY, | ||
| 404 | KB_KP_BINARY, | ||
| 405 | KB_KP_OCTAL, | ||
| 406 | KB_KP_DECIMAL, | ||
| 407 | KB_KP_HEXADECIMAL, | ||
| 408 | #endif | ||
| 409 | |||
| 410 | /* Modifiers */ | ||
| 411 | KB_LCTRL = 0xE0, | ||
| 412 | KB_LSHIFT, | ||
| 413 | KB_LALT, | ||
| 414 | KB_LGUI, | ||
| 415 | KB_RCTRL, | ||
| 416 | KB_RSHIFT, | ||
| 417 | KB_RALT, | ||
| 418 | KB_RGUI, | ||
| 419 | |||
| 420 | /* NOTE: 0xE8-FF are used as special_keycodes */ | ||
| 421 | }; | ||
| 422 | |||
| 423 | #endif /* USB_KEYCODES_H */ | ||
