source: mainline/uspace/drv/usbhid/conv.c@ 3a1aa20

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 3a1aa20 was d972534, checked in by Lubos Slovak <lubos.slovak@…>, 15 years ago

LED setting

  • LEDs are determined from remembered modifiers (not good, as that doesn't work well).
  • Added function for sending a Set_Report(Output) request (specific, have to make it generic later).
  • Added a lot of debug output.
  • Added HID Report Type constants to libusb (hid.h).
  • Added constants for LEDs (hidparser.h).
  • Modified function for composing output reports in hidparser.
  • Property mode set to 100644
File size: 5.0 KB
Line 
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
42static int scanmap_simple[255] = {
43
44// [0x29] = KC_BACKTICK,
45
46// [0x02] = KC_1,
47// [0x03] = KC_2,
48 [0x04] = KC_A,
49 [0x05] = KC_B,
50 [0x06] = KC_C,
51 [0x07] = KC_D,
52 [0x08] = KC_E,
53 [0x09] = KC_F,
54 [0x0a] = KC_G,
55 [0x0b] = KC_H,
56 [0x0c] = KC_I,
57 [0x0d] = KC_J,
58 [0x0e] = KC_K,
59 [0x0f] = KC_L,
60 [0x10] = KC_M,
61 [0x11] = KC_N,
62 [0x12] = KC_O,
63 [0x13] = KC_P,
64 [0x14] = KC_Q,
65 [0x15] = KC_R,
66 [0x16] = KC_S,
67 [0x17] = KC_T,
68 [0x18] = KC_U,
69 [0x19] = KC_V,
70 [0x1a] = KC_W,
71 [0x1b] = KC_X,
72 [0x1c] = KC_Y,
73 [0x1d] = KC_Z,
74
75 [0x1e] = KC_1,
76 [0x1f] = KC_2,
77 [0x20] = KC_3,
78 [0x21] = KC_4,
79 [0x22] = KC_5,
80 [0x23] = KC_6,
81 [0x24] = KC_7,
82 [0x25] = KC_8,
83 [0x26] = KC_9,
84 [0x27] = KC_0,
85
86 [0x28] = KC_ENTER,
87 [0x29] = KC_ESCAPE,
88 [0x2a] = KC_BACKSPACE,
89 [0x2b] = KC_TAB,
90 [0x2c] = KC_SPACE,
91
92 [0x2d] = KC_MINUS, // same as DASH? (- or _)
93 [0x2e] = KC_EQUALS,
94 [0x2f] = KC_LBRACKET,
95 [0x30] = KC_RBRACKET,
96 [0x31] = KC_BACKSLASH,
97 //[0x32] = KC_, // TODO: HASH??? maybe some as 0x31 - backslash
98 [0x33] = KC_SEMICOLON,
99 [0x34] = KC_QUOTE, // same as APOSTROPHE? (')
100 [0x35] = KC_BACKTICK, // same as GRAVE ACCENT?? (`)
101 [0x36] = KC_COMMA,
102 [0x37] = KC_PERIOD,
103 [0x38] = KC_SLASH,
104
105 [0x39] = KC_CAPS_LOCK,
106
107 [0x3a] = KC_F1,
108 [0x3b] = KC_F2,
109 [0x3c] = KC_F3,
110 [0x3d] = KC_F4,
111 [0x3e] = KC_F5,
112 [0x3f] = KC_F6,
113 [0x40] = KC_F7,
114 [0x41] = KC_F8,
115 [0x42] = KC_F9,
116 [0x43] = KC_F10,
117 [0x44] = KC_F11,
118 [0x45] = KC_F12,
119
120 [0x46] = KC_PRTSCR,
121 [0x47] = KC_SCROLL_LOCK,
122 [0x48] = KC_PAUSE,
123 [0x49] = KC_INSERT,
124 [0x4a] = KC_HOME,
125 [0x4b] = KC_PAGE_UP,
126 [0x4c] = KC_DELETE,
127 [0x4d] = KC_END,
128 [0x4e] = KC_PAGE_DOWN,
129 [0x4f] = KC_RIGHT,
130 [0x50] = KC_LEFT,
131 [0x51] = KC_DOWN,
132 [0x52] = KC_UP,
133
134 //[0x64] = // some funny key
135
136 [0xe0] = KC_LCTRL,
137 [0xe1] = KC_LSHIFT,
138 [0xe2] = KC_LALT,
139 //[0xe3] = KC_L // TODO: left GUI
140 [0xe4] = KC_RCTRL,
141 [0xe5] = KC_RSHIFT,
142 [0xe6] = KC_RALT,
143 //[0xe7] = KC_R // TODO: right GUI
144
145 [0x53] = KC_NUM_LOCK,
146 [0x54] = KC_NSLASH,
147 [0x55] = KC_NTIMES,
148 [0x56] = KC_NMINUS,
149 [0x57] = KC_NPLUS,
150 [0x58] = KC_NENTER,
151 [0x59] = KC_N1,
152 [0x5a] = KC_N2,
153 [0x5b] = KC_N3,
154 [0x5c] = KC_N4,
155 [0x5d] = KC_N5,
156 [0x5e] = KC_N6,
157 [0x5f] = KC_N7,
158 [0x60] = KC_N8,
159 [0x61] = KC_N9,
160 [0x62] = KC_N0,
161 [0x63] = KC_NPERIOD
162
163};
164
165unsigned int usbkbd_parse_scancode(int scancode)
166{
167// console_ev_type_t type;
168 unsigned int key;
169 int *map = scanmap_simple;
170 size_t map_length = sizeof(scanmap_simple) / sizeof(int);
171
172 /*
173 * ACK/NAK are returned as response to us sending a command.
174 * We are not interested in them.
175 */
176// if (scancode == SC_ACK || scancode == SC_NAK)
177// return;
178
179// if (scancode == 0xe0) {
180// ds = ds_e;
181// return;
182// }
183
184// switch (ds) {
185// case ds_s:
186// map = scanmap_simple;
187// map_length = sizeof(scanmap_simple) / sizeof(int);
188// break;
189// case ds_e:
190// map = scanmap_e0;
191// map_length = sizeof(scanmap_e0) / sizeof(int);
192// break;
193// default:
194// map = NULL;
195// map_length = 0;
196// }
197
198// ds = ds_s;
199
200// if (scancode & 0x80) {
201// scancode &= ~0x80;
202// type = KEY_RELEASE;
203// } else {
204// type = KEY_PRESS;
205// }
206
207 if ((scancode < 0) || ((size_t) scancode >= map_length))
208 return -1;
209
210 key = map[scancode];
211
212 if (scancode == 0x53) {
213 usb_log_debug("\n\nWe have a NUM LOCK!, sending key %u\n\n", key);
214 }
215
216 if (scancode == 0x47) {
217 usb_log_debug("\n\nWe have a SCROLL LOCK!, sending key %u\n\n", key);
218 }
219
220 if (scancode == 0x39) {
221 usb_log_debug("\n\nWe have a CAPS LOCK!, sending key %u\n\n", key);
222 }
223
224// if (key != 0)
225// kbd_push_ev(type, key);
226 return key;
227}
228
229/**
230 * @}
231 */
Note: See TracBrowser for help on using the repository browser.