1 | /*
|
---|
2 | * Copyright (c) 2010 Vojtech Horky
|
---|
3 | * Copyright (c) 2011 Lubos Slovak
|
---|
4 | * All rights reserved.
|
---|
5 | *
|
---|
6 | * Redistribution and use in source and binary forms, with or without
|
---|
7 | * modification, are permitted provided that the following conditions
|
---|
8 | * are met:
|
---|
9 | *
|
---|
10 | * - Redistributions of source code must retain the above copyright
|
---|
11 | * notice, this list of conditions and the following disclaimer.
|
---|
12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
13 | * notice, this list of conditions and the following disclaimer in the
|
---|
14 | * documentation and/or other materials provided with the distribution.
|
---|
15 | * - The name of the author may not be used to endorse or promote products
|
---|
16 | * derived from this software without specific prior written permission.
|
---|
17 | *
|
---|
18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
28 | */
|
---|
29 |
|
---|
30 | /** @addtogroup drvusbhid
|
---|
31 | * @{
|
---|
32 | */
|
---|
33 | /**
|
---|
34 | * @file
|
---|
35 | * Main routines of USB HID driver.
|
---|
36 | */
|
---|
37 |
|
---|
38 | #include <ddf/driver.h>
|
---|
39 | #include <usb/debug.h>
|
---|
40 | #include <errno.h>
|
---|
41 | #include <str_error.h>
|
---|
42 |
|
---|
43 | #include <usb/devdrv.h>
|
---|
44 | #include <usb/devpoll.h>
|
---|
45 |
|
---|
46 | #include "usbhid.h"
|
---|
47 |
|
---|
48 | /*----------------------------------------------------------------------------*/
|
---|
49 |
|
---|
50 | #define NAME "usbhid"
|
---|
51 |
|
---|
52 | /**
|
---|
53 | * Function for adding a new device of type USB/HID/keyboard.
|
---|
54 | *
|
---|
55 | * This functions initializes required structures from the device's descriptors
|
---|
56 | * and starts new fibril for polling the keyboard for events and another one for
|
---|
57 | * handling auto-repeat of keys.
|
---|
58 | *
|
---|
59 | * During initialization, the keyboard is switched into boot protocol, the idle
|
---|
60 | * rate is set to 0 (infinity), resulting in the keyboard only reporting event
|
---|
61 | * when a key is pressed or released. Finally, the LED lights are turned on
|
---|
62 | * according to the default setup of lock keys.
|
---|
63 | *
|
---|
64 | * @note By default, the keyboards is initialized with Num Lock turned on and
|
---|
65 | * other locks turned off.
|
---|
66 | * @note Currently supports only boot-protocol keyboards.
|
---|
67 | *
|
---|
68 | * @param dev Device to add.
|
---|
69 | *
|
---|
70 | * @retval EOK if successful.
|
---|
71 | * @retval ENOMEM if there
|
---|
72 | * @return Other error code inherited from one of functions usb_kbd_init(),
|
---|
73 | * ddf_fun_bind() and ddf_fun_add_to_class().
|
---|
74 | */
|
---|
75 | static int usb_hid_try_add_device(usb_device_t *dev)
|
---|
76 | {
|
---|
77 | assert(dev != NULL);
|
---|
78 |
|
---|
79 | /*
|
---|
80 | * Initialize device (get and process descriptors, get address, etc.)
|
---|
81 | */
|
---|
82 | usb_log_debug("Initializing USB/HID device...\n");
|
---|
83 |
|
---|
84 | usb_hid_dev_t *hid_dev = usb_hid_new();
|
---|
85 | if (hid_dev == NULL) {
|
---|
86 | usb_log_error("Error while creating USB/HID device "
|
---|
87 | "structure.\n");
|
---|
88 | return ENOMEM;
|
---|
89 | }
|
---|
90 |
|
---|
91 | int rc = usb_hid_init(hid_dev, dev);
|
---|
92 |
|
---|
93 | if (rc != EOK) {
|
---|
94 | usb_log_error("Failed to initialize USB/HID device.\n");
|
---|
95 | usb_hid_free(&hid_dev);
|
---|
96 | return rc;
|
---|
97 | }
|
---|
98 |
|
---|
99 | usb_log_debug("USB/HID device structure initialized.\n");
|
---|
100 |
|
---|
101 | /* Create the function exposed under /dev/devices. */
|
---|
102 | ddf_fun_t *hid_fun = ddf_fun_create(dev->ddf_dev, fun_exposed,
|
---|
103 | usb_hid_get_function_name(hid_dev));
|
---|
104 | if (hid_fun == NULL) {
|
---|
105 | usb_log_error("Could not create DDF function node.\n");
|
---|
106 | usb_hid_free(&hid_dev);
|
---|
107 | return ENOMEM;
|
---|
108 | }
|
---|
109 |
|
---|
110 | /*
|
---|
111 | * Store the initialized HID device and HID ops
|
---|
112 | * to the DDF function.
|
---|
113 | */
|
---|
114 | hid_fun->ops = &hid_dev->ops;
|
---|
115 | hid_fun->driver_data = hid_dev; // TODO: maybe change to hid_dev->data
|
---|
116 |
|
---|
117 | /*
|
---|
118 | * 1) subdriver vytvori vlastnu ddf_fun, vlastne ddf_dev_ops, ktore da
|
---|
119 | * do nej.
|
---|
120 | * 2) do tych ops do .interfaces[DEV_IFACE_USBHID (asi)] priradi
|
---|
121 | * vyplnenu strukturu usbhid_iface_t.
|
---|
122 | * 3) klientska aplikacia - musi si rucne vytvorit telefon
|
---|
123 | * (devman_device_connect() - cesta k zariadeniu (/hw/pci0/...) az
|
---|
124 | * k tej fcii.
|
---|
125 | * pouzit usb/classes/hid/iface.h - prvy int je telefon
|
---|
126 | */
|
---|
127 |
|
---|
128 | rc = ddf_fun_bind(hid_fun);
|
---|
129 | if (rc != EOK) {
|
---|
130 | usb_log_error("Could not bind DDF function: %s.\n",
|
---|
131 | str_error(rc));
|
---|
132 | // TODO: Can / should I destroy the DDF function?
|
---|
133 | ddf_fun_destroy(hid_fun);
|
---|
134 | usb_hid_free(&hid_dev);
|
---|
135 | return rc;
|
---|
136 | }
|
---|
137 |
|
---|
138 | rc = ddf_fun_add_to_class(hid_fun, usb_hid_get_class_name(hid_dev));
|
---|
139 | if (rc != EOK) {
|
---|
140 | usb_log_error(
|
---|
141 | "Could not add DDF function to class 'hid': %s.\n",
|
---|
142 | str_error(rc));
|
---|
143 | // TODO: Can / should I destroy the DDF function?
|
---|
144 | ddf_fun_destroy(hid_fun);
|
---|
145 | usb_hid_free(&hid_dev);
|
---|
146 | return rc;
|
---|
147 | }
|
---|
148 |
|
---|
149 | /* Start automated polling function.
|
---|
150 | * This will create a separate fibril that will query the device
|
---|
151 | * for the data continuously
|
---|
152 | */
|
---|
153 | rc = usb_device_auto_poll(dev,
|
---|
154 | /* Index of the polling pipe. */
|
---|
155 | hid_dev->poll_pipe_index,
|
---|
156 | /* Callback when data arrives. */
|
---|
157 | usb_hid_polling_callback,
|
---|
158 | /* How much data to request. */
|
---|
159 | dev->pipes[hid_dev->poll_pipe_index].pipe->max_packet_size,
|
---|
160 | /* Callback when the polling ends. */
|
---|
161 | usb_hid_polling_ended_callback,
|
---|
162 | /* Custom argument. */
|
---|
163 | hid_dev);
|
---|
164 |
|
---|
165 |
|
---|
166 | if (rc != EOK) {
|
---|
167 | usb_log_error("Failed to start polling fibril for `%s'.\n",
|
---|
168 | dev->ddf_dev->name);
|
---|
169 | return rc;
|
---|
170 | }
|
---|
171 |
|
---|
172 | /*
|
---|
173 | * Hurrah, device is initialized.
|
---|
174 | */
|
---|
175 | return EOK;
|
---|
176 | }
|
---|
177 |
|
---|
178 | /*----------------------------------------------------------------------------*/
|
---|
179 | /**
|
---|
180 | * Callback for passing a new device to the driver.
|
---|
181 | *
|
---|
182 | * @note Currently, only boot-protocol keyboards are supported by this driver.
|
---|
183 | *
|
---|
184 | * @param dev Structure representing the new device.
|
---|
185 | *
|
---|
186 | * @retval EOK if successful.
|
---|
187 | * @retval EREFUSED if the device is not supported.
|
---|
188 | */
|
---|
189 | static int usb_hid_add_device(usb_device_t *dev)
|
---|
190 | {
|
---|
191 | usb_log_debug("usb_hid_add_device()\n");
|
---|
192 |
|
---|
193 | if (dev == NULL) {
|
---|
194 | usb_log_warning("Wrong parameter given for add_device().\n");
|
---|
195 | return EINVAL;
|
---|
196 | }
|
---|
197 |
|
---|
198 | if (dev->interface_no < 0) {
|
---|
199 | usb_log_warning("Device is not a supported HID device.\n");
|
---|
200 | usb_log_error("Failed to add HID device: endpoints not found."
|
---|
201 | "\n");
|
---|
202 | return ENOTSUP;
|
---|
203 | }
|
---|
204 |
|
---|
205 | int rc = usb_hid_try_add_device(dev);
|
---|
206 |
|
---|
207 | if (rc != EOK) {
|
---|
208 | usb_log_warning("Device is not a supported HID device.\n");
|
---|
209 | usb_log_error("Failed to add HID device: %s.\n",
|
---|
210 | str_error(rc));
|
---|
211 | return rc;
|
---|
212 | }
|
---|
213 |
|
---|
214 | usb_log_info("HID device `%s' ready to use.\n", dev->ddf_dev->name);
|
---|
215 |
|
---|
216 | return EOK;
|
---|
217 | }
|
---|
218 |
|
---|
219 | /*----------------------------------------------------------------------------*/
|
---|
220 |
|
---|
221 | /* Currently, the framework supports only device adding. Once the framework
|
---|
222 | * supports unplug, more callbacks will be added. */
|
---|
223 | static usb_driver_ops_t usb_hid_driver_ops = {
|
---|
224 | .add_device = usb_hid_add_device,
|
---|
225 | };
|
---|
226 |
|
---|
227 |
|
---|
228 | /* The driver itself. */
|
---|
229 | static usb_driver_t usb_hid_driver = {
|
---|
230 | .name = NAME,
|
---|
231 | .ops = &usb_hid_driver_ops,
|
---|
232 | .endpoints = usb_hid_endpoints
|
---|
233 | };
|
---|
234 |
|
---|
235 | /*----------------------------------------------------------------------------*/
|
---|
236 |
|
---|
237 | int main(int argc, char *argv[])
|
---|
238 | {
|
---|
239 | printf(NAME ": HelenOS USB HID driver.\n");
|
---|
240 |
|
---|
241 | usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
|
---|
242 |
|
---|
243 | return usb_driver_main(&usb_hid_driver);
|
---|
244 | }
|
---|
245 |
|
---|
246 | /**
|
---|
247 | * @}
|
---|
248 | */
|
---|