source: mainline/uspace/drv/usbhid/subdrivers.c@ 310c4df

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

Subdriver for Logitech UltraX keyboard improved.

  • Added mapping from usages to HelenOS keycodes - now lists only the Usages used by this keyboard + some other which are result of bad parsing of the report (will be removed, now only for demonstration purposes).
  • Added lgtch_init() and lgtch_deinit() functions (also to the subdriver mapping).
  • Some code of key handling is copied from boot kbd subdriver.
  • The subdriver creates its own DDF function and adds it into the 'keyboard' class, so that the console connects to it.
  • Fixed iterating over report.
  • Property mode set to 100644
File size: 2.3 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 HID subdriver mappings.
34 */
35
36#include "subdrivers.h"
37#include "usb/classes/hidut.h"
38
39#include "lgtch-ultrax/lgtch-ultrax.h"
40
41static usb_hid_subdriver_usage_t path_kbd[] = {
42 {USB_HIDUT_PAGE_KEYBOARD, 0},
43 {0, 0}
44};
45
46static usb_hid_subdriver_usage_t lgtch_path[] = {
47 {0xc, 0},
48 {0, 0}
49};
50
51const usb_hid_subdriver_mapping_t usb_hid_subdrivers[] = {
52 {
53 path_kbd,
54 -1,
55 USB_HID_PATH_COMPARE_END
56 | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
57 -1,
58 -1,
59 {
60 .init = usb_kbd_init,
61 .deinit = usb_kbd_deinit,
62 .poll = usb_kbd_polling_callback,
63 .poll_end = NULL
64 },
65
66 },
67 {
68 lgtch_path,
69 1,
70 USB_HID_PATH_COMPARE_END
71 | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
72 0x046d,
73 0xc30e,
74 {
75 .init = usb_lgtch_init,
76 .deinit = usb_lgtch_deinit,
77 .poll = usb_lgtch_polling_callback,
78 .poll_end = NULL
79 }
80 },
81 {NULL, -1, 0, -1, -1, {NULL, NULL, NULL, NULL}}
82};
83
84/**
85 * @}
86 */
Note: See TracBrowser for help on using the repository browser.