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 |
|
---|
44 | typedef 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 | */
|
---|
55 | typedef 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 | */
|
---|
69 | typedef 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 | */
|
---|
84 | typedef 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.
|
---|
89 | *
|
---|
90 | * See usbvirt_control_reply_helper() for simple way of answering
|
---|
91 | * control read requests.
|
---|
92 | */
|
---|
93 | typedef struct {
|
---|
94 | /** Request direction (in or out). */
|
---|
95 | usb_direction_t req_direction;
|
---|
96 | /** Request recipient (device, interface or endpoint). */
|
---|
97 | usb_request_recipient_t req_recipient;
|
---|
98 | /** Request type (standard, class or vendor). */
|
---|
99 | usb_request_type_t req_type;
|
---|
100 | /** Actual request code. */
|
---|
101 | uint8_t request;
|
---|
102 | /** Request handler name for debugging purposes. */
|
---|
103 | const char *name;
|
---|
104 | /** Callback to be executed on matching request. */
|
---|
105 | usbvirt_on_control_t callback;
|
---|
106 | } usbvirt_control_request_handler_t;
|
---|
107 |
|
---|
108 | /** Extra configuration data for GET_CONFIGURATION request. */
|
---|
109 | typedef struct {
|
---|
110 | /** Actual data. */
|
---|
111 | uint8_t *data;
|
---|
112 | /** Data length. */
|
---|
113 | size_t length;
|
---|
114 | } usbvirt_device_configuration_extras_t;
|
---|
115 |
|
---|
116 | /** Single device configuration. */
|
---|
117 | typedef struct {
|
---|
118 | /** Standard configuration descriptor. */
|
---|
119 | usb_standard_configuration_descriptor_t *descriptor;
|
---|
120 | /** Array of extra data. */
|
---|
121 | usbvirt_device_configuration_extras_t *extra;
|
---|
122 | /** Length of @c extra array. */
|
---|
123 | size_t extra_count;
|
---|
124 | } usbvirt_device_configuration_t;
|
---|
125 |
|
---|
126 | /** Standard USB descriptors for virtual device. */
|
---|
127 | typedef struct {
|
---|
128 | /** Standard device descriptor.
|
---|
129 | * There is always only one such descriptor for the device.
|
---|
130 | */
|
---|
131 | usb_standard_device_descriptor_t *device;
|
---|
132 |
|
---|
133 | /** Configurations. */
|
---|
134 | usbvirt_device_configuration_t *configuration;
|
---|
135 | /** Number of configurations. */
|
---|
136 | size_t configuration_count;
|
---|
137 | } usbvirt_descriptors_t;
|
---|
138 |
|
---|
139 | /** Possible states of virtual USB device.
|
---|
140 | * Notice that these are not 1:1 mappings to those in USB specification.
|
---|
141 | */
|
---|
142 | typedef enum {
|
---|
143 | /** Default state, device listens at default address. */
|
---|
144 | USBVIRT_STATE_DEFAULT,
|
---|
145 | /** Device has non-default address assigned. */
|
---|
146 | USBVIRT_STATE_ADDRESS,
|
---|
147 | /** Device is configured. */
|
---|
148 | USBVIRT_STATE_CONFIGURED
|
---|
149 | } usbvirt_device_state_t;
|
---|
150 |
|
---|
151 | /** Ops structure for virtual USB device. */
|
---|
152 | typedef struct {
|
---|
153 | /** Callbacks for data to device.
|
---|
154 | * Index zero is ignored.
|
---|
155 | */
|
---|
156 | usbvirt_on_data_to_device_t data_out[USBVIRT_ENDPOINT_MAX];
|
---|
157 | /** Callbacks for data from device.
|
---|
158 | * Index zero is ignored.
|
---|
159 | */
|
---|
160 | usbvirt_on_data_from_device_t data_in[USBVIRT_ENDPOINT_MAX];
|
---|
161 | /** Array of control handlers.
|
---|
162 | * Last handler is expected to have the @c callback field set to NULL
|
---|
163 | */
|
---|
164 | usbvirt_control_request_handler_t *control;
|
---|
165 | /** Callback when device changes state.
|
---|
166 | *
|
---|
167 | * The value of @c state attribute of @p dev device is not
|
---|
168 | * defined during call of this function.
|
---|
169 | *
|
---|
170 | * @param dev The virtual USB device.
|
---|
171 | * @param old_state Old device state.
|
---|
172 | * @param new_state New device state.
|
---|
173 | */
|
---|
174 | void (*state_changed)(usbvirt_device_t *dev,
|
---|
175 | usbvirt_device_state_t old_state, usbvirt_device_state_t new_state);
|
---|
176 | } usbvirt_device_ops_t;
|
---|
177 |
|
---|
178 | /** Virtual USB device. */
|
---|
179 | struct usbvirt_device {
|
---|
180 | /** Name for debugging purposes. */
|
---|
181 | const char *name;
|
---|
182 | /** Custom device data. */
|
---|
183 | void *device_data;
|
---|
184 | /** Device ops. */
|
---|
185 | usbvirt_device_ops_t *ops;
|
---|
186 | /** Device descriptors. */
|
---|
187 | usbvirt_descriptors_t *descriptors;
|
---|
188 | /** Current device address.
|
---|
189 | * You shall treat this field as read only in your code.
|
---|
190 | */
|
---|
191 | usb_address_t address;
|
---|
192 | /** Current device state.
|
---|
193 | * You shall treat this field as read only in your code.
|
---|
194 | */
|
---|
195 | usbvirt_device_state_t state;
|
---|
196 | /** Phone to the host controller.
|
---|
197 | * You shall treat this field as read only in your code.
|
---|
198 | */
|
---|
199 | int vhc_phone;
|
---|
200 | };
|
---|
201 |
|
---|
202 | int usbvirt_device_plug(usbvirt_device_t *, const char *);
|
---|
203 | void usbvirt_device_unplug(usbvirt_device_t *);
|
---|
204 |
|
---|
205 | void usbvirt_control_reply_helper(const usb_device_request_setup_packet_t *,
|
---|
206 | uint8_t *, size_t *, void *, size_t);
|
---|
207 |
|
---|
208 | int usbvirt_control_write(usbvirt_device_t *, void *, size_t, void *, size_t);
|
---|
209 | int usbvirt_control_read(usbvirt_device_t *, void *, size_t, void *, size_t, size_t *);
|
---|
210 | int usbvirt_data_out(usbvirt_device_t *, usb_transfer_type_t, usb_endpoint_t,
|
---|
211 | void *, size_t);
|
---|
212 | int usbvirt_data_in(usbvirt_device_t *, usb_transfer_type_t, usb_endpoint_t,
|
---|
213 | void *, size_t, size_t *);
|
---|
214 |
|
---|
215 |
|
---|
216 | #endif
|
---|
217 | /**
|
---|
218 | * @}
|
---|
219 | */
|
---|