source: mainline/uspace/drv/usbhid/generic/hiddev.c@ 4e78236

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

Fixed mkbd and corresponding library functions.

  • Fixed linking remote_usbhid.c
  • Added some temporary debug output.
  • Fix in hiddev.c.
  • Property mode set to 100644
File size: 5.9 KB
Line 
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/**
33 * @file
34 * USB HID driver API.
35 */
36
37#include <usb/debug.h>
38#include <usb/classes/classes.h>
39#include <errno.h>
40#include <str_error.h>
41#include <bool.h>
42
43#include <usbhid_iface.h>
44
45#include "hiddev.h"
46#include "usbhid.h"
47
48/*----------------------------------------------------------------------------*/
49
50usb_endpoint_description_t usb_hid_generic_poll_endpoint_description = {
51 .transfer_type = USB_TRANSFER_INTERRUPT,
52 .direction = USB_DIRECTION_IN,
53 .interface_class = USB_CLASS_HID,
54 .flags = 0
55};
56
57const char *HID_GENERIC_FUN_NAME = "hid";
58const char *HID_GENERIC_CLASS_NAME = "hid";
59
60/*----------------------------------------------------------------------------*/
61
62static size_t usb_generic_hid_get_event_length(ddf_fun_t *fun);
63
64static int usb_generic_hid_get_event(ddf_fun_t *fun, int32_t *buffer,
65 size_t size, size_t *act_size, unsigned int flags);
66
67static int usb_generic_hid_client_connected(ddf_fun_t *fun);
68
69/*----------------------------------------------------------------------------*/
70
71static usbhid_iface_t usb_generic_iface = {
72 .get_event = usb_generic_hid_get_event,
73 .get_event_length = usb_generic_hid_get_event_length
74};
75
76static ddf_dev_ops_t usb_generic_hid_ops = {
77 .interfaces[USBHID_DEV_IFACE] = &usb_generic_iface,
78 .open = usb_generic_hid_client_connected
79};
80
81/*----------------------------------------------------------------------------*/
82
83static size_t usb_generic_hid_get_event_length(ddf_fun_t *fun)
84{
85 usb_log_debug("Generic HID: Get event length (fun: %p, "
86 "fun->driver_data: %p.\n", fun, fun->driver_data);
87
88 if (fun == NULL || fun->driver_data == NULL) {
89 return 0;
90 }
91
92 usb_hid_dev_t *hid_dev = (usb_hid_dev_t *)fun->driver_data;
93
94 usb_log_debug("hid_dev: %p, Max input report size (%d).\n",
95 hid_dev, hid_dev->max_input_report_size);
96
97 return hid_dev->max_input_report_size;
98}
99
100/*----------------------------------------------------------------------------*/
101
102static int usb_generic_hid_get_event(ddf_fun_t *fun, int32_t *buffer,
103 size_t size, size_t *act_size, unsigned int flags)
104{
105 usb_log_debug("Generic HID: Get event.\n");
106
107 if (fun == NULL || fun->driver_data == NULL) {
108 usb_log_debug("No function");
109 return EINVAL;
110 }
111
112 usb_hid_dev_t *hid_dev = (usb_hid_dev_t *)fun->driver_data;
113
114 if (hid_dev->input_report_size > size) {
115 return EINVAL; // TODO: other error code
116 }
117
118 /*! @todo This should probably be atomic. */
119 if (usb_hid_report_ready()) {
120 memcpy(buffer, hid_dev->input_report,
121 hid_dev->input_report_size);
122 *act_size = hid_dev->input_report_size;
123 usb_hid_report_received();
124 }
125
126 // clear the buffer so that it will not be received twice
127 //memset(hid_dev->input_report, 0, hid_dev->input_report_size);
128
129 // note that we already received this report
130// report_received = true;
131
132 return EOK;
133}
134
135/*----------------------------------------------------------------------------*/
136
137static int usb_generic_hid_client_connected(ddf_fun_t *fun)
138{
139 usb_log_debug("Generic HID: Client connected.\n");
140 usb_hid_report_received();
141 return EOK;
142}
143
144/*----------------------------------------------------------------------------*/
145
146static int usb_generic_hid_create_function(usb_hid_dev_t *hid_dev)
147{
148 /* Create the function exposed under /dev/devices. */
149 /** @todo Generate numbers for the devices? */
150 usb_log_debug("Creating DDF function %s...\n", HID_GENERIC_FUN_NAME);
151 ddf_fun_t *fun = ddf_fun_create(hid_dev->usb_dev->ddf_dev, fun_exposed,
152 HID_GENERIC_FUN_NAME);
153 if (fun == NULL) {
154 usb_log_error("Could not create DDF function node.\n");
155 return ENOMEM;
156 }
157
158 fun->ops = &usb_generic_hid_ops;
159 fun->driver_data = hid_dev;
160
161 int rc = ddf_fun_bind(fun);
162 if (rc != EOK) {
163 usb_log_error("Could not bind DDF function: %s.\n",
164 str_error(rc));
165 ddf_fun_destroy(fun);
166 return rc;
167 }
168
169 usb_log_debug("HID function created. Handle: %d\n", fun->handle);
170
171 return EOK;
172}
173
174/*----------------------------------------------------------------------------*/
175
176int usb_generic_hid_init(usb_hid_dev_t *hid_dev, void **data)
177{
178 if (hid_dev == NULL) {
179 return EINVAL;
180 }
181
182 return usb_generic_hid_create_function(hid_dev);
183}
184
185/*----------------------------------------------------------------------------*/
186
187bool usb_generic_hid_polling_callback(usb_hid_dev_t *hid_dev, void *data,
188 uint8_t *buffer, size_t buffer_size)
189{
190 usb_log_debug("usb_hid_polling_callback(%p, %p, %zu)\n",
191 hid_dev, buffer, buffer_size);
192 usb_debug_str_buffer(buffer, buffer_size, 0);
193 return true;
194}
195
196/**
197 * @}
198 */
Note: See TracBrowser for help on using the repository browser.