source: mainline/uspace/drv/bus/usb/usbhid/multimedia/multimedia.c@ 90df90c

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 90df90c was a0c05e7, checked in by Jan Vesely <jano.vesely@…>, 14 years ago

usbhid: Unbind error handling.

  • Property mode set to 100644
File size: 8.8 KB
Line 
1/*
2 * Copyright (c) 2011 Lubos Slovak, Vojtech Horky
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 Keyboard multimedia keys subdriver.
35 */
36
37
38#include "multimedia.h"
39#include "../usbhid.h"
40#include "keymap.h"
41
42#include <usb/hid/hidparser.h>
43#include <usb/debug.h>
44#include <usb/hid/usages/core.h>
45#include <usb/hid/usages/consumer.h>
46
47#include <errno.h>
48#include <async.h>
49#include <str_error.h>
50
51#include <ipc/kbdev.h>
52#include <io/console.h>
53
54#define NAME "multimedia-keys"
55
56/*----------------------------------------------------------------------------*/
57/**
58 * Logitech UltraX device type.
59 */
60typedef struct usb_multimedia_t {
61 /** Previously pressed keys (not translated to key codes). */
62 //int32_t *keys_old;
63 /** Currently pressed keys (not translated to key codes). */
64 //int32_t *keys;
65 /** Count of stored keys (i.e. number of keys in the report). */
66 //size_t key_count;
67 /** IPC session to the console device (for sending key events). */
68 async_sess_t *console_sess;
69} usb_multimedia_t;
70
71
72/*----------------------------------------------------------------------------*/
73/**
74 * Default handler for IPC methods not handled by DDF.
75 *
76 * Currently recognizes only one method (IPC_M_CONNECT_TO_ME), in which case it
77 * assumes the caller is the console and thus it stores IPC session to it for
78 * later use by the driver to notify about key events.
79 *
80 * @param fun Device function handling the call.
81 * @param icallid Call id.
82 * @param icall Call data.
83 */
84static void default_connection_handler(ddf_fun_t *fun,
85 ipc_callid_t icallid, ipc_call_t *icall)
86{
87 usb_log_debug(NAME " default_connection_handler()\n");
88 if (fun == NULL || fun->driver_data == NULL) {
89 async_answer_0(icallid, EINVAL);
90 return;
91 }
92
93 usb_multimedia_t *multim_dev = fun->driver_data;
94
95 async_sess_t *sess =
96 async_callback_receive_start(EXCHANGE_SERIALIZE, icall);
97 if (sess != NULL) {
98 if (multim_dev->console_sess == NULL) {
99 multim_dev->console_sess = sess;
100 usb_log_debug(NAME " Saved session to console: %p\n",
101 sess);
102 async_answer_0(icallid, EOK);
103 } else
104 async_answer_0(icallid, ELIMIT);
105 } else
106 async_answer_0(icallid, EINVAL);
107}
108/*----------------------------------------------------------------------------*/
109static ddf_dev_ops_t multimedia_ops = {
110 .default_handler = default_connection_handler
111};
112/*----------------------------------------------------------------------------*/
113/**
114 * Processes key events.
115 *
116 * @note This function was copied from AT keyboard driver and modified to suit
117 * USB keyboard.
118 *
119 * @note Lock keys are not sent to the console, as they are completely handled
120 * in the driver. It may, however, be required later that the driver
121 * sends also these keys to application (otherwise it cannot use those
122 * keys at all).
123 *
124 * @param hid_dev
125 * @param multim_dev
126 * @param type Type of the event (press / release). Recognized values:
127 * KEY_PRESS, KEY_RELEASE
128 * @param key Key code of the key according to HID Usage Tables.
129 */
130static void usb_multimedia_push_ev(
131 usb_multimedia_t *multim_dev, int type, unsigned int key)
132{
133 assert(multim_dev != NULL);
134
135 const kbd_event_t ev = {
136 .type = type,
137 .key = key,
138 .mods = 0,
139 .c = 0,
140 };
141
142 usb_log_debug2(NAME " Sending key %d to the console\n", ev.key);
143 if (multim_dev->console_sess == NULL) {
144 usb_log_warning(
145 "Connection to console not ready, key discarded.\n");
146 return;
147 }
148
149 async_exch_t *exch = async_exchange_begin(multim_dev->console_sess);
150 if (exch != NULL) {
151 async_msg_4(exch, KBDEV_EVENT, ev.type, ev.key, ev.mods, ev.c);
152 async_exchange_end(exch);
153 } else {
154 usb_log_warning("Failed to send multimedia key.\n");
155 }
156}
157/*----------------------------------------------------------------------------*/
158int usb_multimedia_init(struct usb_hid_dev *hid_dev, void **data)
159{
160 if (hid_dev == NULL || hid_dev->usb_dev == NULL) {
161 return EINVAL;
162 }
163
164 usb_log_debug(NAME " Initializing HID/multimedia structure...\n");
165
166 /* Create the exposed function. */
167 ddf_fun_t *fun = ddf_fun_create(
168 hid_dev->usb_dev->ddf_dev, fun_exposed, NAME);
169 if (fun == NULL) {
170 usb_log_error("Could not create DDF function node.\n");
171 return ENOMEM;
172 }
173
174 fun->ops = &multimedia_ops;
175
176 usb_multimedia_t *multim_dev =
177 ddf_fun_data_alloc(fun, sizeof(usb_multimedia_t));
178 if (multim_dev == NULL) {
179 ddf_fun_destroy(fun);
180 return ENOMEM;
181 }
182
183 multim_dev->console_sess = NULL;
184
185 //todo Autorepeat?
186
187 int rc = ddf_fun_bind(fun);
188 if (rc != EOK) {
189 usb_log_error("Could not bind DDF function: %s.\n",
190 str_error(rc));
191 ddf_fun_destroy(fun);
192 return rc;
193 }
194
195 usb_log_debug(NAME " function created (handle: %" PRIun ").\n",
196 fun->handle);
197
198 rc = ddf_fun_add_to_category(fun, "keyboard");
199 if (rc != EOK) {
200 usb_log_error(
201 "Could not add DDF function to category 'keyboard': %s.\n",
202 str_error(rc));
203 if (ddf_fun_unbind(fun) != EOK) {
204 usb_log_error("Failed to unbind %s, won't destroy.\n",
205 fun->name);
206 } else {
207 ddf_fun_destroy(fun);
208 }
209 return rc;
210 }
211
212 /* Save the KBD device structure into the HID device structure. */
213 *data = fun;
214
215 usb_log_debug(NAME " HID/multimedia structure initialized.\n");
216 return EOK;
217}
218/*----------------------------------------------------------------------------*/
219void usb_multimedia_deinit(struct usb_hid_dev *hid_dev, void *data)
220{
221 ddf_fun_t *fun = data;
222 if (fun != NULL && fun->driver_data != NULL) {
223 usb_multimedia_t *multim_dev = fun->driver_data;
224 /* Hangup session to the console */
225 if (multim_dev->console_sess)
226 async_hangup(multim_dev->console_sess);
227 if (ddf_fun_unbind(fun) != EOK) {
228 usb_log_error("Failed to unbind %s, won't destroy.\n",
229 fun->name);
230 } else {
231 usb_log_debug2("%s unbound.\n", fun->name);
232 /* This frees multim_dev too as it was stored in
233 * fun->data */
234 ddf_fun_destroy(fun);
235 }
236 } else {
237 usb_log_error(
238 "Failed to deinit multimedia subdriver, data missing.\n");
239 }
240}
241/*----------------------------------------------------------------------------*/
242bool usb_multimedia_polling_callback(struct usb_hid_dev *hid_dev, void *data)
243{
244 // TODO: checks
245 ddf_fun_t *fun = data;
246 if (hid_dev == NULL || fun == NULL || fun->driver_data == NULL) {
247 return false;
248 }
249
250 usb_multimedia_t *multim_dev = fun->driver_data;
251
252 usb_hid_report_path_t *path = usb_hid_report_path();
253 if (path == NULL)
254 return true; /* This might be a temporary failure. */
255
256 int ret =
257 usb_hid_report_path_append_item(path, USB_HIDUT_PAGE_CONSUMER, 0);
258 if (ret != EOK) {
259 usb_hid_report_path_free(path);
260 return true; /* This might be a temporary failure. */
261 }
262
263 usb_hid_report_path_set_report_id(path, hid_dev->report_id);
264
265 usb_hid_report_field_t *field = usb_hid_report_get_sibling(
266 &hid_dev->report, NULL, path, USB_HID_PATH_COMPARE_END
267 | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
268 USB_HID_REPORT_TYPE_INPUT);
269
270 //FIXME Is this iterating OK if done multiple times?
271 //FIXME The parsing is not OK. (what's wrong?)
272 while (field != NULL) {
273 if (field->value != 0) {
274 usb_log_debug(NAME " KEY VALUE(%X) USAGE(%X)\n",
275 field->value, field->usage);
276 const unsigned key =
277 usb_multimedia_map_usage(field->usage);
278 const char *key_str =
279 usbhid_multimedia_usage_to_str(field->usage);
280 usb_log_info("Pressed key: %s\n", key_str);
281 usb_multimedia_push_ev(multim_dev, KEY_PRESS, key);
282 }
283
284 field = usb_hid_report_get_sibling(
285 &hid_dev->report, field, path, USB_HID_PATH_COMPARE_END
286 | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
287 USB_HID_REPORT_TYPE_INPUT);
288 }
289
290 usb_hid_report_path_free(path);
291
292 return true;
293}
294/**
295 * @}
296 */
Note: See TracBrowser for help on using the repository browser.