source: mainline/uspace/lib/usbvirt/include/usbvirt/device.h@ a943106

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since a943106 was a943106, checked in by Vojtech Horky <vojtechhorky@…>, 14 years ago

Add comments to libusbvirt headers

  • Property mode set to 100644
File size: 7.0 KB
Line 
1/*
2 * Copyright (c) 2011 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 libusbvirt
30 * @{
31 */
32/** @file
33 * Virtual USB device.
34 */
35#ifndef LIBUSBVIRT_DEVICE_H_
36#define LIBUSBVIRT_DEVICE_H_
37
38#include <usb/usb.h>
39#include <usb/request.h>
40
41/** Maximum number of endpoints supported by virtual USB. */
42#define USBVIRT_ENDPOINT_MAX 16
43
44typedef struct usbvirt_device usbvirt_device_t;
45
46/** Callback for data to device (OUT transaction).
47 *
48 * @param dev Virtual device to which the transaction belongs.
49 * @param endpoint Target endpoint number.
50 * @param transfer_type Transfer type.
51 * @param buffer Data buffer.
52 * @param buffer_size Size of the buffer in bytes.
53 * @return Error code.
54 */
55typedef int (*usbvirt_on_data_to_device_t)(usbvirt_device_t *dev,
56 usb_endpoint_t endpoint, usb_transfer_type_t transfer_type,
57 void *buffer, size_t buffer_size);
58
59/** Callback for data from device (IN transaction).
60 *
61 * @param dev Virtual device to which the transaction belongs.
62 * @param endpoint Target endpoint number.
63 * @param transfer_type Transfer type.
64 * @param buffer Data buffer to write answer to.
65 * @param buffer_size Size of the buffer in bytes.
66 * @param act_buffer_size Write here how many bytes were actually written.
67 * @return Error code.
68 */
69typedef int (*usbvirt_on_data_from_device_t)(usbvirt_device_t *dev,
70 usb_endpoint_t endpoint, usb_transfer_type_t transfer_type,
71 void *buffer, size_t buffer_size, size_t *act_buffer_size);
72
73/** Callback for control transfer on endpoint zero.
74 *
75 * Notice that size of the data buffer is expected to be read from the
76 * setup packet.
77 *
78 * @param dev Virtual device to which the transaction belongs.
79 * @param setup_packet Standard setup packet.
80 * @param data Data (might be NULL).
81 * @param act_data_size Size of returned data in bytes.
82 * @return Error code.
83 */
84typedef int (*usbvirt_on_control_t)(usbvirt_device_t *dev,
85 const usb_device_request_setup_packet_t *setup_packet,
86 uint8_t *data, size_t *act_data_size);
87
88/** Callback for control request on a virtual USB device. */
89typedef struct {
90 /** Request direction (in or out). */
91 usb_direction_t req_direction;
92 /** Request recipient (device, interface or endpoint). */
93 usb_request_recipient_t req_recipient;
94 /** Request type (standard, class or vendor). */
95 usb_request_type_t req_type;
96 /** Actual request code. */
97 uint8_t request;
98 /** Request handler name for debugging purposes. */
99 const char *name;
100 /** Callback to be executed on matching request. */
101 usbvirt_on_control_t callback;
102} usbvirt_control_request_handler_t;
103
104/** Extra configuration data for GET_CONFIGURATION request. */
105typedef struct {
106 /** Actual data. */
107 uint8_t *data;
108 /** Data length. */
109 size_t length;
110} usbvirt_device_configuration_extras_t;
111
112/** Single device configuration. */
113typedef struct {
114 /** Standard configuration descriptor. */
115 usb_standard_configuration_descriptor_t *descriptor;
116 /** Array of extra data. */
117 usbvirt_device_configuration_extras_t *extra;
118 /** Length of @c extra array. */
119 size_t extra_count;
120} usbvirt_device_configuration_t;
121
122/** Standard USB descriptors for virtual device. */
123typedef struct {
124 /** Standard device descriptor.
125 * There is always only one such descriptor for the device.
126 */
127 usb_standard_device_descriptor_t *device;
128
129 /** Configurations. */
130 usbvirt_device_configuration_t *configuration;
131 /** Number of configurations. */
132 size_t configuration_count;
133} usbvirt_descriptors_t;
134
135/** Possible states of virtual USB device.
136 * Notice that these are not 1:1 mappings to those in USB specification.
137 */
138typedef enum {
139 /** Default state, device listens at default address. */
140 USBVIRT_STATE_DEFAULT,
141 /** Device has non-default address assigned. */
142 USBVIRT_STATE_ADDRESS,
143 /** Device is configured. */
144 USBVIRT_STATE_CONFIGURED
145} usbvirt_device_state_t;
146
147/** Ops structure for virtual USB device. */
148typedef struct {
149 /** Callbacks for data to device.
150 * Index zero is ignored.
151 */
152 usbvirt_on_data_to_device_t data_out[USBVIRT_ENDPOINT_MAX];
153 /** Callbacks for data from device.
154 * Index zero is ignored.
155 */
156 usbvirt_on_data_from_device_t data_in[USBVIRT_ENDPOINT_MAX];
157 /** Array of control handlers.
158 * Last handler is expected to have the @c callback field set to NULL
159 */
160 usbvirt_control_request_handler_t *control;
161 /** Callback when device changes state.
162 *
163 * The value of @c state attribute of @p dev device is not
164 * defined during call of this function.
165 *
166 * @param dev The virtual USB device.
167 * @param old_state Old device state.
168 * @param new_state New device state.
169 */
170 void (*state_changed)(usbvirt_device_t *dev,
171 usbvirt_device_state_t old_state, usbvirt_device_state_t new_state);
172} usbvirt_device_ops_t;
173
174/** Virtual USB device. */
175struct usbvirt_device {
176 /** Name for debugging purposes. */
177 const char *name;
178 /** Custom device data. */
179 void *device_data;
180 /** Device ops. */
181 usbvirt_device_ops_t *ops;
182 /** Device descriptors. */
183 usbvirt_descriptors_t *descriptors;
184 /** Current device address.
185 * You shall treat this field as read only in your code.
186 */
187 usb_address_t address;
188 /** Current device state.
189 * You shall treat this field as read only in your code.
190 */
191 usbvirt_device_state_t state;
192};
193
194int usbvirt_device_plug(usbvirt_device_t *, const char *);
195
196void usbvirt_control_reply_helper(const usb_device_request_setup_packet_t *,
197 uint8_t *, size_t *, void *, size_t);
198
199int usbvirt_control_write(usbvirt_device_t *, void *, size_t, void *, size_t);
200int usbvirt_control_read(usbvirt_device_t *, void *, size_t, void *, size_t, size_t *);
201int usbvirt_data_out(usbvirt_device_t *, usb_transfer_type_t, usb_endpoint_t,
202 void *, size_t);
203int usbvirt_data_in(usbvirt_device_t *, usb_transfer_type_t, usb_endpoint_t,
204 void *, size_t, size_t *);
205
206
207#endif
208/**
209 * @}
210 */
Note: See TracBrowser for help on using the repository browser.