source: mainline/uspace/drv/bus/usb/usbhid/main.c@ c39e9fb

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

usb, drivers: Use usb_device_* wrappers.

  • Property mode set to 100644
File size: 4.9 KB
RevLine 
[966acede]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
[7d521e24]43#include <usb/dev/driver.h>
44#include <usb/dev/poll.h>
[966acede]45
46#include "usbhid.h"
47
48#define NAME "usbhid"
49
50/**
[555499da]51 * Callback for passing a new device to the driver.
[966acede]52 *
[555499da]53 * @note Currently, only boot-protocol keyboards are supported by this driver.
[966acede]54 *
[555499da]55 * @param dev Structure representing the new device.
[fbe148ee]56 * @return Error code.
[966acede]57 */
[555499da]58static int usb_hid_device_add(usb_device_t *dev)
[966acede]59{
[555499da]60 usb_log_debug("%s\n", __FUNCTION__);
[cc29622]61
[555499da]62 if (dev == NULL) {
63 usb_log_error("Wrong parameter given for add_device().\n");
64 return EINVAL;
65 }
[cc29622]66
[555499da]67 if (dev->interface_no < 0) {
68 usb_log_error("Failed to add HID device: endpoints not found."
69 "\n");
70 return ENOTSUP;
71 }
[065064e6]72 usb_hid_dev_t *hid_dev =
73 usb_device_data_alloc(dev, sizeof(usb_hid_dev_t));
[61257f4]74 if (hid_dev == NULL) {
[90df90c]75 usb_log_error("Failed to create USB/HID device structure.\n");
[61257f4]76 return ENOMEM;
77 }
[cc29622]78
[61257f4]79 int rc = usb_hid_init(hid_dev, dev);
80 if (rc != EOK) {
81 usb_log_error("Failed to initialize USB/HID device.\n");
[a8c4e871]82 usb_hid_deinit(hid_dev);
[61257f4]83 return rc;
[98604cc]84 }
[cc29622]85
[61257f4]86 usb_log_debug("USB/HID device structure initialized.\n");
[cc29622]87
[966acede]88 /* Start automated polling function.
89 * This will create a separate fibril that will query the device
[90df90c]90 * for the data continuously. */
[966acede]91 rc = usb_device_auto_poll(dev,
92 /* Index of the polling pipe. */
[61257f4]93 hid_dev->poll_pipe_index,
[966acede]94 /* Callback when data arrives. */
[60c0573]95 usb_hid_polling_callback,
[966acede]96 /* How much data to request. */
[b77931d]97 dev->pipes[hid_dev->poll_pipe_index].pipe.max_packet_size,
[ea30cc1]98 /* Delay */
99 0,
[966acede]100 /* Callback when the polling ends. */
101 usb_hid_polling_ended_callback,
102 /* Custom argument. */
[61257f4]103 hid_dev);
[cc29622]104
[966acede]105 if (rc != EOK) {
106 usb_log_error("Failed to start polling fibril for `%s'.\n",
[c39e9fb]107 usb_device_get_name(dev));
[a8c4e871]108 usb_hid_deinit(hid_dev);
[966acede]109 return rc;
110 }
[68dbe3e]111 hid_dev->running = true;
[966acede]112
[c39e9fb]113 usb_log_info("HID device `%s' ready.\n", usb_device_get_name(dev));
[966acede]114
115 return EOK;
116}
[76fbd9a]117
[98604cc]118/**
[fbe148ee]119 * Callback for a device about to be removed from the driver.
[98604cc]120 *
121 * @param dev Structure representing the device.
[fbe148ee]122 * @return Error code.
123 */
124static int usb_hid_device_rem(usb_device_t *dev)
125{
[90df90c]126 // TODO: Stop device polling
127 // TODO: Call deinit (stops autorepeat too)
[dcc10b8d]128 return ENOTSUP;
[fbe148ee]129}
[76fbd9a]130
[fbe148ee]131/**
132 * Callback for removing a device from the driver.
[98604cc]133 *
[fbe148ee]134 * @param dev Structure representing the device.
135 * @return Error code.
[98604cc]136 */
137static int usb_hid_device_gone(usb_device_t *dev)
138{
[f750345]139 assert(dev);
[c39e9fb]140 usb_hid_dev_t *hid_dev = usb_device_data_get(dev);
141 assert(hid_dev);
[f750345]142 unsigned tries = 100;
143 /* Wait for fail. */
144 while (hid_dev->running && tries--) {
[68dbe3e]145 async_usleep(100000);
[f750345]146 }
147 if (hid_dev->running) {
148 usb_log_error("Can't remove hid, still running.\n");
149 return EBUSY;
[68dbe3e]150 }
151
[a8c4e871]152 usb_hid_deinit(hid_dev);
[c39e9fb]153 usb_log_debug2("%s destruction complete.\n", usb_device_get_name(dev));
[98604cc]154 return EOK;
155}
[76fbd9a]156
[98604cc]157/** USB generic driver callbacks */
[fbe148ee]158static const usb_driver_ops_t usb_hid_driver_ops = {
[98604cc]159 .device_add = usb_hid_device_add,
[fbe148ee]160 .device_rem = usb_hid_device_rem,
[98604cc]161 .device_gone = usb_hid_device_gone,
[966acede]162};
[76fbd9a]163
[98604cc]164/** The driver itself. */
[fbe148ee]165static const usb_driver_t usb_hid_driver = {
[966acede]166 .name = NAME,
167 .ops = &usb_hid_driver_ops,
168 .endpoints = usb_hid_endpoints
169};
[76fbd9a]170
[966acede]171int main(int argc, char *argv[])
172{
173 printf(NAME ": HelenOS USB HID driver.\n");
174
[920d0fc]175 log_init(NAME);
[966acede]176
177 return usb_driver_main(&usb_hid_driver);
178}
179/**
180 * @}
181 */
Note: See TracBrowser for help on using the repository browser.