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 | #include "usb/classes/hidpath.h"
|
---|
39 |
|
---|
40 | #include "lgtch-ultrax/lgtch-ultrax.h"
|
---|
41 | #include "mouse/mousedev.h"
|
---|
42 |
|
---|
43 | static usb_hid_subdriver_usage_t path_kbd[] = {
|
---|
44 | {USB_HIDUT_PAGE_KEYBOARD, 0},
|
---|
45 | {0, 0}
|
---|
46 | };
|
---|
47 |
|
---|
48 | static usb_hid_subdriver_usage_t path_mouse2[] = {
|
---|
49 | {USB_HIDUT_PAGE_GENERIC_DESKTOP, USB_HIDUT_USAGE_GENERIC_DESKTOP_X},
|
---|
50 | {0, 0}
|
---|
51 | };
|
---|
52 |
|
---|
53 | static usb_hid_subdriver_usage_t lgtch_path[] = {
|
---|
54 | {0xc, 0},
|
---|
55 | {0, 0}
|
---|
56 | };
|
---|
57 |
|
---|
58 | const usb_hid_subdriver_mapping_t usb_hid_subdrivers[] = {
|
---|
59 | {
|
---|
60 | path_kbd,
|
---|
61 | -1,
|
---|
62 | USB_HID_PATH_COMPARE_END
|
---|
63 | | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
|
---|
64 | -1,
|
---|
65 | -1,
|
---|
66 | {
|
---|
67 | .init = usb_kbd_init,
|
---|
68 | .deinit = usb_kbd_deinit,
|
---|
69 | .poll = usb_kbd_polling_callback,
|
---|
70 | .poll_end = NULL
|
---|
71 | },
|
---|
72 |
|
---|
73 | },
|
---|
74 | {
|
---|
75 | lgtch_path,
|
---|
76 | 1,
|
---|
77 | USB_HID_PATH_COMPARE_END
|
---|
78 | | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
|
---|
79 | 0x046d,
|
---|
80 | 0xc30e,
|
---|
81 | {
|
---|
82 | .init = usb_lgtch_init,
|
---|
83 | .deinit = usb_lgtch_deinit,
|
---|
84 | .poll = usb_lgtch_polling_callback,
|
---|
85 | .poll_end = NULL
|
---|
86 | }
|
---|
87 | },
|
---|
88 | {
|
---|
89 | path_mouse2,
|
---|
90 | -1,
|
---|
91 | USB_HID_PATH_COMPARE_END
|
---|
92 | | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
|
---|
93 | -1,
|
---|
94 | -1,
|
---|
95 | {
|
---|
96 | .init = usb_mouse_init,
|
---|
97 | .deinit = usb_mouse_deinit,
|
---|
98 | .poll = usb_mouse_polling_callback,
|
---|
99 | .poll_end = NULL
|
---|
100 | }
|
---|
101 | },
|
---|
102 | {NULL, -1, 0, -1, -1, {NULL, NULL, NULL, NULL}}
|
---|
103 | };
|
---|
104 |
|
---|
105 | /**
|
---|
106 | * @}
|
---|
107 | */
|
---|