source: mainline/uspace/drv/usbhid/subdrivers.c@ ff41576d

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

Removed generic subdriver from mappings + some debug output

  • Property mode set to 100644
File size: 3.1 KB
RevLine 
[62bd8d3]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"
[faa44e58]37#include <usb/hid/usages/core.h>
38#include <usb/hid/hidpath.h>
[62bd8d3]39
[d3b6d5e]40#include "multimedia/multimedia.h"
[7bb8036]41#include "mouse/mousedev.h"
[78bfae9]42#include "generic/hiddev.h"
[e3b5129]43
[777e336]44static usb_hid_subdriver_usage_t path_kbd[] = {
[cecb1a97]45 {USB_HIDUT_PAGE_GENERIC_DESKTOP,
46 USB_HIDUT_USAGE_GENERIC_DESKTOP_KEYBOARD},
[777e336]47 {0, 0}
48};
[62bd8d3]49
[84b240f]50static usb_hid_subdriver_usage_t path_mouse[] = {
51 {USB_HIDUT_PAGE_GENERIC_DESKTOP, USB_HIDUT_USAGE_GENERIC_DESKTOP_MOUSE},
[7bb8036]52 {0, 0}
53};
54
[cecb1a97]55static usb_hid_subdriver_usage_t multim_key_path[] = {
56 {USB_HIDUT_PAGE_CONSUMER, USB_HIDUT_USAGE_CONSUMER_CONSUMER_CONTROL},
[e3b5129]57 {0, 0}
58};
59
[4939490]60//static usb_hid_subdriver_usage_t generic_hid_key_path[] = {
61// {0, 0}
62//};
[78bfae9]63
[62bd8d3]64const usb_hid_subdriver_mapping_t usb_hid_subdrivers[] = {
65 {
66 path_kbd,
[78bfae9]67 0,
[37f87fa]68 USB_HID_PATH_COMPARE_BEGIN,
[d0a6e54]69 -1,
70 -1,
[62bd8d3]71 {
[777e336]72 .init = usb_kbd_init,
73 .deinit = usb_kbd_deinit,
74 .poll = usb_kbd_polling_callback,
75 .poll_end = NULL
[62bd8d3]76 },
77
78 },
[e3b5129]79 {
[cecb1a97]80 multim_key_path,
[e3b5129]81 1,
[37f87fa]82 USB_HID_PATH_COMPARE_BEGIN,
[cecb1a97]83 -1,
84 -1,
[e3b5129]85 {
[d3b6d5e]86 .init = usb_multimedia_init,
87 .deinit = usb_multimedia_deinit,
88 .poll = usb_multimedia_polling_callback,
[e3b5129]89 .poll_end = NULL
90 }
91 },
[7bb8036]92 {
[84b240f]93 path_mouse,
[78bfae9]94 0,
[37f87fa]95 USB_HID_PATH_COMPARE_BEGIN,
[7bb8036]96 -1,
97 -1,
98 {
99 .init = usb_mouse_init,
100 .deinit = usb_mouse_deinit,
101 .poll = usb_mouse_polling_callback,
102 .poll_end = NULL
103 }
104 },
[4939490]105// {
106// generic_hid_key_path,
107// 0,
108// USB_HID_PATH_COMPARE_ANYWHERE,
109// -1,
110// -1,
111// {
112// .init = usb_generic_hid_init,
113// .deinit = NULL,
114// .poll = usb_generic_hid_polling_callback,
115// .poll_end = NULL
116// }
117// },
[65b458c4]118 {NULL, -1, 0, -1, -1, {NULL, NULL, NULL, NULL, NULL}}
[62bd8d3]119};
120
121/**
122 * @}
123 */
Note: See TracBrowser for help on using the repository browser.