source: mainline/uspace/drv/usbhid/usbhid.c@ 04c1524

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

Report recieving tracked for each device separately.

  • Property mode set to 100644
File size: 17.2 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/**
33 * @file
34 * USB HID driver API.
35 */
36
37#include <usb/debug.h>
38#include <usb/classes/classes.h>
39#include <usb/classes/hid.h>
40#include <usb/classes/hidparser.h>
41#include <usb/classes/hidreport.h>
42#include <usb/classes/hidreq.h>
43#include <errno.h>
44#include <str_error.h>
45
46#include "usbhid.h"
47
48#include "kbd/kbddev.h"
49#include "generic/hiddev.h"
50#include "mouse/mousedev.h"
51#include "subdrivers.h"
52
53/*----------------------------------------------------------------------------*/
54
55/* Array of endpoints expected on the device, NULL terminated. */
56usb_endpoint_description_t *usb_hid_endpoints[USB_HID_POLL_EP_COUNT + 1] = {
57 &usb_hid_kbd_poll_endpoint_description,
58 &usb_hid_mouse_poll_endpoint_description,
59 &usb_hid_generic_poll_endpoint_description,
60 NULL
61};
62
63static const int USB_HID_MAX_SUBDRIVERS = 10;
64
65static fibril_local bool report_received;
66
67/*----------------------------------------------------------------------------*/
68
69static int usb_hid_set_boot_kbd_subdriver(usb_hid_dev_t *hid_dev)
70{
71 assert(hid_dev != NULL && hid_dev->subdriver_count == 0);
72
73 hid_dev->subdrivers = (usb_hid_subdriver_t *)malloc(
74 sizeof(usb_hid_subdriver_t));
75 if (hid_dev->subdrivers == NULL) {
76 return ENOMEM;
77 }
78
79 // set the init callback
80 hid_dev->subdrivers[0].init = usb_kbd_init;
81
82 // set the polling callback
83 hid_dev->subdrivers[0].poll = usb_kbd_polling_callback;
84
85 // set the polling ended callback
86 hid_dev->subdrivers[0].poll_end = NULL;
87
88 // set the deinit callback
89 hid_dev->subdrivers[0].deinit = usb_kbd_deinit;
90
91 // set subdriver count
92 hid_dev->subdriver_count = 1;
93
94 return EOK;
95}
96
97/*----------------------------------------------------------------------------*/
98
99static int usb_hid_set_boot_mouse_subdriver(usb_hid_dev_t *hid_dev)
100{
101 assert(hid_dev != NULL && hid_dev->subdriver_count == 0);
102
103 hid_dev->subdrivers = (usb_hid_subdriver_t *)malloc(
104 sizeof(usb_hid_subdriver_t));
105 if (hid_dev->subdrivers == NULL) {
106 return ENOMEM;
107 }
108
109 // set the init callback
110 hid_dev->subdrivers[0].init = usb_mouse_init;
111
112 // set the polling callback
113 hid_dev->subdrivers[0].poll = usb_mouse_polling_callback;
114
115 // set the polling ended callback
116 hid_dev->subdrivers[0].poll_end = NULL;
117
118 // set the deinit callback
119 hid_dev->subdrivers[0].deinit = usb_mouse_deinit;
120
121 // set subdriver count
122 hid_dev->subdriver_count = 1;
123
124 return EOK;
125}
126
127/*----------------------------------------------------------------------------*/
128
129static int usb_hid_set_generic_hid_subdriver(usb_hid_dev_t *hid_dev)
130{
131 assert(hid_dev != NULL && hid_dev->subdriver_count == 0);
132
133 hid_dev->subdrivers = (usb_hid_subdriver_t *)malloc(
134 sizeof(usb_hid_subdriver_t));
135 if (hid_dev->subdrivers == NULL) {
136 return ENOMEM;
137 }
138
139 // set the init callback
140 hid_dev->subdrivers[0].init = usb_generic_hid_init;
141
142 // set the polling callback
143 hid_dev->subdrivers[0].poll = usb_generic_hid_polling_callback;
144
145 // set the polling ended callback
146 hid_dev->subdrivers[0].poll_end = NULL;
147
148 // set the deinit callback
149 hid_dev->subdrivers[0].deinit = NULL;
150
151 // set subdriver count
152 hid_dev->subdriver_count = 1;
153
154 return EOK;
155}
156
157/*----------------------------------------------------------------------------*/
158
159static bool usb_hid_ids_match(usb_hid_dev_t *hid_dev,
160 const usb_hid_subdriver_mapping_t *mapping)
161{
162 assert(hid_dev != NULL);
163 assert(hid_dev->usb_dev != NULL);
164
165 return (hid_dev->usb_dev->descriptors.device.vendor_id
166 == mapping->vendor_id
167 && hid_dev->usb_dev->descriptors.device.product_id
168 == mapping->product_id);
169}
170
171/*----------------------------------------------------------------------------*/
172
173static bool usb_hid_path_matches(usb_hid_dev_t *hid_dev,
174 const usb_hid_subdriver_mapping_t *mapping)
175{
176 assert(hid_dev != NULL);
177 assert(mapping != NULL);
178
179 usb_hid_report_path_t *usage_path = usb_hid_report_path();
180 if (usage_path == NULL) {
181 usb_log_debug("Failed to create usage path.\n");
182 return false;
183 }
184 int i = 0;
185 while (mapping->usage_path[i].usage != 0
186 || mapping->usage_path[i].usage_page != 0) {
187 if (usb_hid_report_path_append_item(usage_path,
188 mapping->usage_path[i].usage_page,
189 mapping->usage_path[i].usage) != EOK) {
190 usb_log_debug("Failed to append to usage path.\n");
191 usb_hid_report_path_free(usage_path);
192 return false;
193 }
194 ++i;
195 }
196
197 if (mapping->report_id >= 0) {
198 usb_hid_report_path_set_report_id(usage_path,
199 mapping->report_id);
200 }
201
202 assert(hid_dev->report != NULL);
203
204 usb_log_debug("Compare flags: %d\n", mapping->compare);
205 size_t size = usb_hid_report_input_length(hid_dev->report, usage_path,
206 mapping->compare);
207 usb_log_debug("Size of the input report: %zuB\n", size);
208
209 usb_hid_report_path_free(usage_path);
210
211 return (size > 0);
212}
213
214/*----------------------------------------------------------------------------*/
215
216static int usb_hid_save_subdrivers(usb_hid_dev_t *hid_dev,
217 const usb_hid_subdriver_t **subdrivers, int count)
218{
219 int i;
220
221 if (count <= 0) {
222 hid_dev->subdriver_count = 0;
223 hid_dev->subdrivers = NULL;
224 return EOK;
225 }
226
227 hid_dev->subdrivers = (usb_hid_subdriver_t *)malloc(count *
228 sizeof(usb_hid_subdriver_t));
229 if (hid_dev->subdrivers == NULL) {
230 return ENOMEM;
231 }
232
233 for (i = 0; i < count; ++i) {
234 hid_dev->subdrivers[i].init = subdrivers[i]->init;
235 hid_dev->subdrivers[i].deinit = subdrivers[i]->deinit;
236 hid_dev->subdrivers[i].poll = subdrivers[i]->poll;
237 hid_dev->subdrivers[i].poll_end = subdrivers[i]->poll_end;
238 }
239
240 hid_dev->subdriver_count = count;
241
242 return EOK;
243}
244
245/*----------------------------------------------------------------------------*/
246
247static int usb_hid_find_subdrivers(usb_hid_dev_t *hid_dev)
248{
249 assert(hid_dev != NULL);
250
251 const usb_hid_subdriver_t *subdrivers[USB_HID_MAX_SUBDRIVERS];
252
253 int i = 0, count = 0;
254 const usb_hid_subdriver_mapping_t *mapping = &usb_hid_subdrivers[i];
255
256 bool ids_matched;
257 bool matched;
258
259 while (count < USB_HID_MAX_SUBDRIVERS &&
260 (mapping->usage_path != NULL
261 || mapping->vendor_id >= 0 || mapping->product_id >= 0)) {
262 // check the vendor & product ID
263 if (mapping->vendor_id >= 0 && mapping->product_id < 0) {
264 usb_log_warning("Missing Product ID for Vendor ID %d\n",
265 mapping->vendor_id);
266 return EINVAL;
267 }
268 if (mapping->product_id >= 0 && mapping->vendor_id < 0) {
269 usb_log_warning("Missing Vendor ID for Product ID %d\n",
270 mapping->product_id);
271 return EINVAL;
272 }
273
274 ids_matched = false;
275 matched = false;
276
277 if (mapping->vendor_id >= 0) {
278 assert(mapping->product_id >= 0);
279 usb_log_debug("Comparing device against vendor ID %u"
280 " and product ID %u.\n", mapping->vendor_id,
281 mapping->product_id);
282 if (usb_hid_ids_match(hid_dev, mapping)) {
283 usb_log_debug("IDs matched.\n");
284 ids_matched = true;
285 }
286 }
287
288 if (mapping->usage_path != NULL) {
289 usb_log_debug("Comparing device against usage path.\n");
290 if (usb_hid_path_matches(hid_dev, mapping)) {
291 // does not matter if IDs were matched
292 matched = true;
293 }
294 } else {
295 // matched only if IDs were matched and there is no path
296 matched = ids_matched;
297 }
298
299 if (matched) {
300 subdrivers[count++] = &mapping->subdriver;
301 }
302
303 mapping = &usb_hid_subdrivers[++i];
304 }
305
306 // we have all subdrivers determined, save them into the hid device
307 return usb_hid_save_subdrivers(hid_dev, subdrivers, count);
308}
309
310/*----------------------------------------------------------------------------*/
311
312static int usb_hid_check_pipes(usb_hid_dev_t *hid_dev, usb_device_t *dev)
313{
314 assert(hid_dev != NULL && dev != NULL);
315
316 int rc = EOK;
317
318 if (dev->pipes[USB_HID_KBD_POLL_EP_NO].present) {
319 usb_log_debug("Found keyboard endpoint.\n");
320 // save the pipe index
321 hid_dev->poll_pipe_index = USB_HID_KBD_POLL_EP_NO;
322 } else if (dev->pipes[USB_HID_MOUSE_POLL_EP_NO].present) {
323 usb_log_debug("Found mouse endpoint.\n");
324 // save the pipe index
325 hid_dev->poll_pipe_index = USB_HID_MOUSE_POLL_EP_NO;
326 } else if (dev->pipes[USB_HID_GENERIC_POLL_EP_NO].present) {
327 usb_log_debug("Found generic HID endpoint.\n");
328 // save the pipe index
329 hid_dev->poll_pipe_index = USB_HID_GENERIC_POLL_EP_NO;
330 } else {
331 usb_log_error("None of supported endpoints found - probably"
332 " not a supported device.\n");
333 rc = ENOTSUP;
334 }
335
336 return rc;
337}
338
339/*----------------------------------------------------------------------------*/
340
341usb_hid_dev_t *usb_hid_new(void)
342{
343 usb_hid_dev_t *hid_dev = (usb_hid_dev_t *)calloc(1,
344 sizeof(usb_hid_dev_t));
345
346 if (hid_dev == NULL) {
347 usb_log_fatal("No memory!\n");
348 return NULL;
349 }
350
351 hid_dev->report = (usb_hid_report_t *)(malloc(sizeof(
352 usb_hid_report_t)));
353 if (hid_dev->report == NULL) {
354 usb_log_fatal("No memory!\n");
355 free(hid_dev);
356 return NULL;
357 }
358
359 hid_dev->poll_pipe_index = -1;
360
361 return hid_dev;
362}
363
364/*----------------------------------------------------------------------------*/
365
366int usb_hid_init(usb_hid_dev_t *hid_dev, usb_device_t *dev)
367{
368 int rc, i;
369
370 usb_log_debug("Initializing HID structure...\n");
371
372 if (hid_dev == NULL) {
373 usb_log_error("Failed to init HID structure: no structure given"
374 ".\n");
375 return EINVAL;
376 }
377
378 if (dev == NULL) {
379 usb_log_error("Failed to init HID structure: no USB device"
380 " given.\n");
381 return EINVAL;
382 }
383
384 /* The USB device should already be initialized, save it in structure */
385 hid_dev->usb_dev = dev;
386
387 rc = usb_hid_check_pipes(hid_dev, dev);
388 if (rc != EOK) {
389 //usb_hid_free(&hid_dev);
390 return rc;
391 }
392
393 /* Get the report descriptor and parse it. */
394 rc = usb_hid_process_report_descriptor(hid_dev->usb_dev,
395 hid_dev->report);
396
397 bool fallback = false;
398
399 if (rc == EOK) {
400 // try to find subdrivers that may want to handle this device
401 rc = usb_hid_find_subdrivers(hid_dev);
402 if (rc != EOK || hid_dev->subdriver_count == 0) {
403 // try to fall back to the boot protocol if available
404 usb_log_info("No subdrivers found to handle this"
405 " device.\n");
406 fallback = true;
407 assert(hid_dev->subdrivers == NULL);
408 assert(hid_dev->subdriver_count == 0);
409 }
410 } else {
411 usb_log_error("Failed to parse Report descriptor.\n");
412 // try to fall back to the boot protocol if available
413 fallback = true;
414 }
415
416 // TODO: remove the mouse hack
417 if (hid_dev->poll_pipe_index == USB_HID_MOUSE_POLL_EP_NO ||
418 fallback) {
419 // fall back to boot protocol
420 switch (hid_dev->poll_pipe_index) {
421 case USB_HID_KBD_POLL_EP_NO:
422 usb_log_info("Falling back to kbd boot protocol.\n");
423 rc = usb_kbd_set_boot_protocol(hid_dev);
424 if (rc == EOK) {
425 rc = usb_hid_set_boot_kbd_subdriver(hid_dev);
426 }
427 break;
428 case USB_HID_MOUSE_POLL_EP_NO:
429 usb_log_info("Falling back to mouse boot protocol.\n");
430 rc = usb_mouse_set_boot_protocol(hid_dev);
431 if (rc == EOK) {
432 rc = usb_hid_set_boot_mouse_subdriver(hid_dev);
433 }
434 break;
435 default:
436 assert(hid_dev->poll_pipe_index
437 == USB_HID_GENERIC_POLL_EP_NO);
438
439 /* TODO: this has no meaning if the report descriptor
440 is not parsed */
441 usb_log_info("Falling back to generic HID driver.\n");
442 rc = usb_hid_set_generic_hid_subdriver(hid_dev);
443 }
444 }
445
446 if (rc != EOK) {
447 usb_log_error("No subdriver for handling this device could be"
448 " initialized: %s.\n", str_error(rc));
449 usb_log_debug("Subdriver count: %d\n",
450 hid_dev->subdriver_count);
451 //usb_hid_free(&hid_dev);
452 } else {
453 bool ok = false;
454
455 usb_log_debug("Subdriver count: %d\n",
456 hid_dev->subdriver_count);
457
458 for (i = 0; i < hid_dev->subdriver_count; ++i) {
459 if (hid_dev->subdrivers[i].init != NULL) {
460 usb_log_debug("Initializing subdriver %d.\n",i);
461 rc = hid_dev->subdrivers[i].init(hid_dev);
462 if (rc != EOK) {
463 usb_log_warning("Failed to initialize"
464 " HID subdriver structure.\n");
465 } else {
466 // at least one subdriver initialized
467 ok = true;
468 }
469 } else {
470 ok = true;
471 }
472 }
473
474 rc = (ok) ? EOK : -1; // what error to report
475 }
476
477 return rc;
478}
479
480/*----------------------------------------------------------------------------*/
481
482bool usb_hid_polling_callback(usb_device_t *dev, uint8_t *buffer,
483 size_t buffer_size, void *arg)
484{
485 int i;
486
487 if (dev == NULL || arg == NULL || buffer == NULL) {
488 usb_log_error("Missing arguments to polling callback.\n");
489 return false;
490 }
491
492 usb_hid_dev_t *hid_dev = (usb_hid_dev_t *)arg;
493
494 int allocated = (hid_dev->input_report != NULL);
495
496 if (!allocated
497 || hid_dev->input_report_size < buffer_size) {
498 uint8_t *input_old = hid_dev->input_report;
499 uint8_t *input_new = (uint8_t *)malloc(buffer_size);
500
501 if (input_new == NULL) {
502 usb_log_error("Failed to allocate space for input "
503 "buffer. This event may not be reported\n");
504 memset(hid_dev->input_report, 0,
505 hid_dev->input_report_size);
506 } else {
507 memcpy(input_new, input_old,
508 hid_dev->input_report_size);
509 hid_dev->input_report = input_new;
510 if (allocated) {
511 free(input_old);
512 }
513 usb_hid_new_report();
514 }
515 }
516
517 /*! @todo This should probably be atomic. */
518 memcpy(hid_dev->input_report, buffer, buffer_size);
519 hid_dev->input_report_size = buffer_size;
520
521 bool cont = false;
522
523 // continue if at least one of the subdrivers want to continue
524 for (i = 0; i < hid_dev->subdriver_count; ++i) {
525 if (hid_dev->subdrivers[i].poll != NULL
526 && hid_dev->subdrivers[i].poll(hid_dev, buffer,
527 buffer_size)) {
528 cont = true;
529 }
530 }
531
532 return cont;
533}
534
535/*----------------------------------------------------------------------------*/
536
537void usb_hid_polling_ended_callback(usb_device_t *dev, bool reason,
538 void *arg)
539{
540 int i;
541
542 if (dev == NULL || arg == NULL) {
543 return;
544 }
545
546 usb_hid_dev_t *hid_dev = (usb_hid_dev_t *)arg;
547
548 for (i = 0; i < hid_dev->subdriver_count; ++i) {
549 if (hid_dev->subdrivers[i].poll_end != NULL) {
550 hid_dev->subdrivers[i].poll_end(hid_dev, reason);
551 }
552 }
553
554 usb_hid_free(&hid_dev);
555}
556
557/*----------------------------------------------------------------------------*/
558
559//const char *usb_hid_get_function_name(const usb_hid_dev_t *hid_dev)
560//{
561// switch (hid_dev->poll_pipe_index) {
562// case USB_HID_KBD_POLL_EP_NO:
563// return HID_KBD_FUN_NAME;
564// break;
565// case USB_HID_MOUSE_POLL_EP_NO:
566// return HID_MOUSE_FUN_NAME;
567// break;
568// default:
569// return HID_GENERIC_FUN_NAME;
570// }
571//}
572
573/*----------------------------------------------------------------------------*/
574
575//const char *usb_hid_get_class_name(const usb_hid_dev_t *hid_dev)
576//{
577// // this means that only boot protocol keyboards will be connected
578// // to the console; there is probably no better way to do this
579
580// switch (hid_dev->poll_pipe_index) {
581// case USB_HID_KBD_POLL_EP_NO:
582// return HID_KBD_CLASS_NAME;
583// break;
584// case USB_HID_MOUSE_POLL_EP_NO:
585// return HID_MOUSE_CLASS_NAME;
586// break;
587// default:
588// return HID_GENERIC_CLASS_NAME;
589// }
590//}
591
592/*----------------------------------------------------------------------------*/
593
594void usb_hid_new_report(void)
595{
596 report_received = false;
597}
598
599/*----------------------------------------------------------------------------*/
600
601void usb_hid_report_received(void)
602{
603 report_received = true;
604}
605
606/*----------------------------------------------------------------------------*/
607
608bool usb_hid_report_ready(void)
609{
610 return !report_received;
611}
612
613/*----------------------------------------------------------------------------*/
614
615void usb_hid_free(usb_hid_dev_t **hid_dev)
616{
617 int i;
618
619 if (hid_dev == NULL || *hid_dev == NULL) {
620 return;
621 }
622
623 usb_log_debug("Subdrivers: %p, subdriver count: %d\n",
624 (*hid_dev)->subdrivers, (*hid_dev)->subdriver_count);
625
626 assert((*hid_dev)->subdrivers != NULL
627 || (*hid_dev)->subdriver_count == 0);
628
629 for (i = 0; i < (*hid_dev)->subdriver_count; ++i) {
630 if ((*hid_dev)->subdrivers[i].deinit != NULL) {
631 (*hid_dev)->subdrivers[i].deinit(*hid_dev);
632 }
633 }
634
635 // free the subdrivers info
636 if ((*hid_dev)->subdrivers != NULL) {
637 free((*hid_dev)->subdrivers);
638 }
639
640 // destroy the parser
641 if ((*hid_dev)->report != NULL) {
642 usb_hid_free_report((*hid_dev)->report);
643 }
644
645 if ((*hid_dev)->report_desc != NULL) {
646 free((*hid_dev)->report_desc);
647 }
648
649 free(*hid_dev);
650 *hid_dev = NULL;
651}
652
653/**
654 * @}
655 */
Note: See TracBrowser for help on using the repository browser.