| 1 | /* | 
|---|
| 2 | * Copyright (c) 2011 Lubos Slovak | 
|---|
| 3 | * All rights reserved. | 
|---|
| 4 | * | 
|---|
| 5 | * Redistribution and use in source and binary forms, with or without | 
|---|
| 6 | * modification, are permitted provided that the following conditions | 
|---|
| 7 | * are met: | 
|---|
| 8 | * | 
|---|
| 9 | * - Redistributions of source code must retain the above copyright | 
|---|
| 10 | *   notice, this list of conditions and the following disclaimer. | 
|---|
| 11 | * - Redistributions in binary form must reproduce the above copyright | 
|---|
| 12 | *   notice, this list of conditions and the following disclaimer in the | 
|---|
| 13 | *   documentation and/or other materials provided with the distribution. | 
|---|
| 14 | * - The name of the author may not be used to endorse or promote products | 
|---|
| 15 | *   derived from this software without specific prior written permission. | 
|---|
| 16 | * | 
|---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | 
|---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | 
|---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | 
|---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | 
|---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | 
|---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
|---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 
|---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
|---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 
|---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|---|
| 27 | */ | 
|---|
| 28 |  | 
|---|
| 29 | /** @addtogroup drvusbhid | 
|---|
| 30 | * @{ | 
|---|
| 31 | */ | 
|---|
| 32 | /** @file | 
|---|
| 33 | * USB scancode parser. | 
|---|
| 34 | */ | 
|---|
| 35 |  | 
|---|
| 36 | #include <io/keycode.h> | 
|---|
| 37 | #include <stdint.h> | 
|---|
| 38 | #include <stdio.h> | 
|---|
| 39 | #include <usb/debug.h> | 
|---|
| 40 | #include "conv.h" | 
|---|
| 41 |  | 
|---|
| 42 | /** | 
|---|
| 43 | * Mapping between USB HID key codes (from HID Usage Tables) and corresponding | 
|---|
| 44 | * HelenOS key codes. | 
|---|
| 45 | */ | 
|---|
| 46 | static int scanmap_simple[255] = { | 
|---|
| 47 |  | 
|---|
| 48 | //      [0x29] = KC_BACKTICK, | 
|---|
| 49 |  | 
|---|
| 50 | //      [0x02] = KC_1, | 
|---|
| 51 | //      [0x03] = KC_2, | 
|---|
| 52 | [0x04] = KC_A, | 
|---|
| 53 | [0x05] = KC_B, | 
|---|
| 54 | [0x06] = KC_C, | 
|---|
| 55 | [0x07] = KC_D, | 
|---|
| 56 | [0x08] = KC_E, | 
|---|
| 57 | [0x09] = KC_F, | 
|---|
| 58 | [0x0a] = KC_G, | 
|---|
| 59 | [0x0b] = KC_H, | 
|---|
| 60 | [0x0c] = KC_I, | 
|---|
| 61 | [0x0d] = KC_J, | 
|---|
| 62 | [0x0e] = KC_K, | 
|---|
| 63 | [0x0f] = KC_L, | 
|---|
| 64 | [0x10] = KC_M, | 
|---|
| 65 | [0x11] = KC_N, | 
|---|
| 66 | [0x12] = KC_O, | 
|---|
| 67 | [0x13] = KC_P, | 
|---|
| 68 | [0x14] = KC_Q, | 
|---|
| 69 | [0x15] = KC_R, | 
|---|
| 70 | [0x16] = KC_S, | 
|---|
| 71 | [0x17] = KC_T, | 
|---|
| 72 | [0x18] = KC_U, | 
|---|
| 73 | [0x19] = KC_V, | 
|---|
| 74 | [0x1a] = KC_W, | 
|---|
| 75 | [0x1b] = KC_X, | 
|---|
| 76 | [0x1c] = KC_Y, | 
|---|
| 77 | [0x1d] = KC_Z, | 
|---|
| 78 |  | 
|---|
| 79 | [0x1e] = KC_1, | 
|---|
| 80 | [0x1f] = KC_2, | 
|---|
| 81 | [0x20] = KC_3, | 
|---|
| 82 | [0x21] = KC_4, | 
|---|
| 83 | [0x22] = KC_5, | 
|---|
| 84 | [0x23] = KC_6, | 
|---|
| 85 | [0x24] = KC_7, | 
|---|
| 86 | [0x25] = KC_8, | 
|---|
| 87 | [0x26] = KC_9, | 
|---|
| 88 | [0x27] = KC_0, | 
|---|
| 89 |  | 
|---|
| 90 | [0x28] = KC_ENTER, | 
|---|
| 91 | [0x29] = KC_ESCAPE, | 
|---|
| 92 | [0x2a] = KC_BACKSPACE, | 
|---|
| 93 | [0x2b] = KC_TAB, | 
|---|
| 94 | [0x2c] = KC_SPACE, | 
|---|
| 95 |  | 
|---|
| 96 | [0x2d] = KC_MINUS,  // same as DASH? (- or _) | 
|---|
| 97 | [0x2e] = KC_EQUALS, | 
|---|
| 98 | [0x2f] = KC_LBRACKET, | 
|---|
| 99 | [0x30] = KC_RBRACKET, | 
|---|
| 100 | [0x31] = KC_BACKSLASH, | 
|---|
| 101 | //[0x32] = KC_, // TODO: HASH??? maybe same as 0x31 - backslash | 
|---|
| 102 | [0x32] = KC_BACKSLASH, | 
|---|
| 103 | [0x33] = KC_SEMICOLON, | 
|---|
| 104 | [0x34] = KC_QUOTE,  // same as APOSTROPHE? (') | 
|---|
| 105 | [0x35] = KC_BACKTICK,  // same as GRAVE ACCENT?? (`) | 
|---|
| 106 | [0x36] = KC_COMMA, | 
|---|
| 107 | [0x37] = KC_PERIOD, | 
|---|
| 108 | [0x38] = KC_SLASH, | 
|---|
| 109 |  | 
|---|
| 110 | [0x39] = KC_CAPS_LOCK, | 
|---|
| 111 |  | 
|---|
| 112 | [0x3a] = KC_F1, | 
|---|
| 113 | [0x3b] = KC_F2, | 
|---|
| 114 | [0x3c] = KC_F3, | 
|---|
| 115 | [0x3d] = KC_F4, | 
|---|
| 116 | [0x3e] = KC_F5, | 
|---|
| 117 | [0x3f] = KC_F6, | 
|---|
| 118 | [0x40] = KC_F7, | 
|---|
| 119 | [0x41] = KC_F8, | 
|---|
| 120 | [0x42] = KC_F9, | 
|---|
| 121 | [0x43] = KC_F10, | 
|---|
| 122 | [0x44] = KC_F11, | 
|---|
| 123 | [0x45] = KC_F12, | 
|---|
| 124 |  | 
|---|
| 125 | [0x46] = KC_PRTSCR, | 
|---|
| 126 | [0x47] = KC_SCROLL_LOCK, | 
|---|
| 127 | [0x48] = KC_PAUSE, | 
|---|
| 128 | [0x49] = KC_INSERT, | 
|---|
| 129 | [0x4a] = KC_HOME, | 
|---|
| 130 | [0x4b] = KC_PAGE_UP, | 
|---|
| 131 | [0x4c] = KC_DELETE, | 
|---|
| 132 | [0x4d] = KC_END, | 
|---|
| 133 | [0x4e] = KC_PAGE_DOWN, | 
|---|
| 134 | [0x4f] = KC_RIGHT, | 
|---|
| 135 | [0x50] = KC_LEFT, | 
|---|
| 136 | [0x51] = KC_DOWN, | 
|---|
| 137 | [0x52] = KC_UP, | 
|---|
| 138 |  | 
|---|
| 139 | //[0x64] = // some funny key | 
|---|
| 140 |  | 
|---|
| 141 | [0xe0] = KC_LCTRL, | 
|---|
| 142 | [0xe1] = KC_LSHIFT, | 
|---|
| 143 | [0xe2] = KC_LALT, | 
|---|
| 144 | //[0xe3] = KC_L // TODO: left GUI | 
|---|
| 145 | [0xe4] = KC_RCTRL, | 
|---|
| 146 | [0xe5] = KC_RSHIFT, | 
|---|
| 147 | [0xe6] = KC_RALT, | 
|---|
| 148 | //[0xe7] = KC_R // TODO: right GUI | 
|---|
| 149 |  | 
|---|
| 150 | [0x53] = KC_NUM_LOCK, | 
|---|
| 151 | [0x54] = KC_NSLASH, | 
|---|
| 152 | [0x55] = KC_NTIMES, | 
|---|
| 153 | [0x56] = KC_NMINUS, | 
|---|
| 154 | [0x57] = KC_NPLUS, | 
|---|
| 155 | [0x58] = KC_NENTER, | 
|---|
| 156 | [0x59] = KC_N1, | 
|---|
| 157 | [0x5a] = KC_N2, | 
|---|
| 158 | [0x5b] = KC_N3, | 
|---|
| 159 | [0x5c] = KC_N4, | 
|---|
| 160 | [0x5d] = KC_N5, | 
|---|
| 161 | [0x5e] = KC_N6, | 
|---|
| 162 | [0x5f] = KC_N7, | 
|---|
| 163 | [0x60] = KC_N8, | 
|---|
| 164 | [0x61] = KC_N9, | 
|---|
| 165 | [0x62] = KC_N0, | 
|---|
| 166 | [0x63] = KC_NPERIOD | 
|---|
| 167 |  | 
|---|
| 168 | }; | 
|---|
| 169 |  | 
|---|
| 170 | /** | 
|---|
| 171 | * Translate USB HID key codes (from HID Usage Tables) to generic key codes | 
|---|
| 172 | * recognized by HelenOS. | 
|---|
| 173 | * | 
|---|
| 174 | * @param scancode USB HID key code (from HID Usage Tables). | 
|---|
| 175 | * | 
|---|
| 176 | * @retval HelenOS key code corresponding to the given USB HID key code. | 
|---|
| 177 | */ | 
|---|
| 178 | unsigned int usbhid_parse_scancode(int scancode) | 
|---|
| 179 | { | 
|---|
| 180 | unsigned int key; | 
|---|
| 181 | int *map = scanmap_simple; | 
|---|
| 182 | size_t map_length = sizeof(scanmap_simple) / sizeof(int); | 
|---|
| 183 |  | 
|---|
| 184 | if ((scancode < 0) || ((size_t) scancode >= map_length)) | 
|---|
| 185 | return -1; | 
|---|
| 186 |  | 
|---|
| 187 | key = map[scancode]; | 
|---|
| 188 |  | 
|---|
| 189 | return key; | 
|---|
| 190 | } | 
|---|
| 191 |  | 
|---|
| 192 | /** | 
|---|
| 193 | * @} | 
|---|
| 194 | */ | 
|---|