source: mainline/uspace/drv/bus/usb/usbhid/usbhid.h@ a8c4e871

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

usb: use _deinit suffix for functions that do not destroy/free their argument

usbhid: don't use heap allocated report praser
random whitespace fixes

  • Property mode set to 100644
File size: 4.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/** @file
33 * USB HID driver API.
34 */
35
36#ifndef USB_HID_USBHID_H_
37#define USB_HID_USBHID_H_
38
39#include <stdint.h>
40
41#include <usb/hid/hidparser.h>
42#include <ddf/driver.h>
43#include <usb/dev/pipes.h>
44#include <usb/dev/driver.h>
45#include <usb/hid/hid.h>
46#include <bool.h>
47
48typedef struct usb_hid_dev usb_hid_dev_t;
49typedef struct usb_hid_subdriver usb_hid_subdriver_t;
50
51/** Subdriver initialization callback.
52 *
53 * @param dev Backing USB HID device.
54 * @param data Custom subdriver data (pointer where to store them).
55 * @return Error code.
56 */
57typedef int (*usb_hid_driver_init_t)(usb_hid_dev_t *dev, void **data);
58
59/** Subdriver deinitialization callback.
60 *
61 * @param dev Backing USB HID device.
62 * @param data Custom subdriver data.
63 */
64typedef void (*usb_hid_driver_deinit_t)(usb_hid_dev_t *dev, void *data);
65
66/** Subdriver callback on data from device.
67 *
68 * @param dev Backing USB HID device.
69 * @param data Custom subdriver data.
70 * @return Whether to continue polling (typically true always).
71 */
72typedef bool (*usb_hid_driver_poll_t)(usb_hid_dev_t *dev, void *data);
73
74/** Subdriver callback after communication with the device ceased.
75 *
76 * @param dev Backing USB HID device.
77 * @param data Custom subdriver data.
78 * @param ended_due_to_errors Whether communication ended due to errors in
79 * communication (true) or deliberately by driver (false).
80 */
81typedef void (*usb_hid_driver_poll_ended_t)(usb_hid_dev_t *dev, void *data,
82 bool ended_due_to_errors);
83
84struct usb_hid_subdriver {
85 /** Function to be called when initializing HID device. */
86 usb_hid_driver_init_t init;
87 /** Function to be called when destroying the HID device structure. */
88 usb_hid_driver_deinit_t deinit;
89 /** Function to be called when data arrives from the device. */
90 usb_hid_driver_poll_t poll;
91 /** Function to be called when polling ends. */
92 usb_hid_driver_poll_ended_t poll_end;
93 /** Arbitrary data needed by the subdriver. */
94 void *data;
95};
96
97/*----------------------------------------------------------------------------*/
98/**
99 * Structure for holding general HID device data.
100 */
101struct usb_hid_dev {
102 /** Structure holding generic USB device information. */
103 usb_device_t *usb_dev;
104
105 /** Index of the polling pipe in usb_hid_endpoints array. */
106 int poll_pipe_index;
107
108 /** Subdrivers. */
109 usb_hid_subdriver_t *subdrivers;
110
111 /** Number of subdrivers. */
112 int subdriver_count;
113
114 /** Report descriptor. */
115 uint8_t *report_desc;
116
117 /** Report descriptor size. */
118 size_t report_desc_size;
119
120 /** HID Report parser. */
121 usb_hid_report_t report;
122
123 uint8_t report_id;
124
125 uint8_t *input_report;
126
127 size_t input_report_size;
128 size_t max_input_report_size;
129
130 int report_nr;
131 volatile bool running;
132};
133
134/*----------------------------------------------------------------------------*/
135
136enum {
137 USB_HID_KBD_POLL_EP_NO = 0,
138 USB_HID_MOUSE_POLL_EP_NO = 1,
139 USB_HID_GENERIC_POLL_EP_NO = 2,
140 USB_HID_POLL_EP_COUNT = 3
141};
142
143extern usb_endpoint_description_t *usb_hid_endpoints[];
144
145/*----------------------------------------------------------------------------*/
146
147int usb_hid_init(usb_hid_dev_t *hid_dev, usb_device_t *dev);
148void usb_hid_deinit(usb_hid_dev_t *hid_dev);
149
150bool usb_hid_polling_callback(usb_device_t *dev,
151 uint8_t *buffer, size_t buffer_size, void *arg);
152
153void usb_hid_polling_ended_callback(usb_device_t *dev, bool reason, void *arg);
154
155void usb_hid_new_report(usb_hid_dev_t *hid_dev);
156
157int usb_hid_report_number(usb_hid_dev_t *hid_dev);
158
159#endif /* USB_HID_USBHID_H_ */
160
161/**
162 * @}
163 */
Note: See TracBrowser for help on using the repository browser.