]>
Commit | Line | Data |
---|---|---|
62aed765 AL |
1 | #ifndef QEMU_USB_H |
2 | #define QEMU_USB_H | |
3 | ||
bb36d470 FB |
4 | /* |
5 | * QEMU USB API | |
5fafdf24 | 6 | * |
bb36d470 | 7 | * Copyright (c) 2005 Fabrice Bellard |
5fafdf24 | 8 | * |
bb36d470 FB |
9 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
10 | * of this software and associated documentation files (the "Software"), to deal | |
11 | * in the Software without restriction, including without limitation the rights | |
12 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
13 | * copies of the Software, and to permit persons to whom the Software is | |
14 | * furnished to do so, subject to the following conditions: | |
15 | * | |
16 | * The above copyright notice and this permission notice shall be included in | |
17 | * all copies or substantial portions of the Software. | |
18 | * | |
19 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
20 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
21 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
22 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
23 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
24 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
25 | * THE SOFTWARE. | |
26 | */ | |
c0f4ce77 | 27 | |
83c9f4ca | 28 | #include "hw/qdev.h" |
1de7afc9 | 29 | #include "qemu/queue.h" |
c0f4ce77 | 30 | |
8e257816 BH |
31 | /* Constants related to the USB / PCI interaction */ |
32 | #define USB_SBRN 0x60 /* Serial Bus Release Number Register */ | |
33 | #define USB_RELEASE_1 0x10 /* USB 1.0 */ | |
34 | #define USB_RELEASE_2 0x20 /* USB 2.0 */ | |
35 | #define USB_RELEASE_3 0x30 /* USB 3.0 */ | |
36 | ||
bb36d470 FB |
37 | #define USB_TOKEN_SETUP 0x2d |
38 | #define USB_TOKEN_IN 0x69 /* device -> host */ | |
39 | #define USB_TOKEN_OUT 0xe1 /* host -> device */ | |
40 | ||
9a77a0f5 | 41 | #define USB_RET_SUCCESS (0) |
36dfe324 HG |
42 | #define USB_RET_NODEV (-1) |
43 | #define USB_RET_NAK (-2) | |
44 | #define USB_RET_STALL (-3) | |
45 | #define USB_RET_BABBLE (-4) | |
46 | #define USB_RET_IOERROR (-5) | |
47 | #define USB_RET_ASYNC (-6) | |
48 | #define USB_RET_ADD_TO_QUEUE (-7) | |
0cae7b1a | 49 | #define USB_RET_REMOVE_FROM_QUEUE (-8) |
bb36d470 FB |
50 | |
51 | #define USB_SPEED_LOW 0 | |
52 | #define USB_SPEED_FULL 1 | |
53 | #define USB_SPEED_HIGH 2 | |
843d4e0c GH |
54 | #define USB_SPEED_SUPER 3 |
55 | ||
56 | #define USB_SPEED_MASK_LOW (1 << USB_SPEED_LOW) | |
57 | #define USB_SPEED_MASK_FULL (1 << USB_SPEED_FULL) | |
58 | #define USB_SPEED_MASK_HIGH (1 << USB_SPEED_HIGH) | |
59 | #define USB_SPEED_MASK_SUPER (1 << USB_SPEED_SUPER) | |
bb36d470 FB |
60 | |
61 | #define USB_STATE_NOTATTACHED 0 | |
62 | #define USB_STATE_ATTACHED 1 | |
63 | //#define USB_STATE_POWERED 2 | |
64 | #define USB_STATE_DEFAULT 3 | |
65 | //#define USB_STATE_ADDRESS 4 | |
66 | //#define USB_STATE_CONFIGURED 5 | |
67 | #define USB_STATE_SUSPENDED 6 | |
68 | ||
a594cfbf FB |
69 | #define USB_CLASS_AUDIO 1 |
70 | #define USB_CLASS_COMM 2 | |
71 | #define USB_CLASS_HID 3 | |
72 | #define USB_CLASS_PHYSICAL 5 | |
73 | #define USB_CLASS_STILL_IMAGE 6 | |
74 | #define USB_CLASS_PRINTER 7 | |
75 | #define USB_CLASS_MASS_STORAGE 8 | |
76 | #define USB_CLASS_HUB 9 | |
77 | #define USB_CLASS_CDC_DATA 0x0a | |
78 | #define USB_CLASS_CSCID 0x0b | |
79 | #define USB_CLASS_CONTENT_SEC 0x0d | |
80 | #define USB_CLASS_APP_SPEC 0xfe | |
81 | #define USB_CLASS_VENDOR_SPEC 0xff | |
82 | ||
b870472d PA |
83 | #define USB_SUBCLASS_UNDEFINED 0 |
84 | #define USB_SUBCLASS_AUDIO_CONTROL 1 | |
85 | #define USB_SUBCLASS_AUDIO_STREAMING 2 | |
86 | #define USB_SUBCLASS_AUDIO_MIDISTREAMING 3 | |
87 | ||
bb36d470 FB |
88 | #define USB_DIR_OUT 0 |
89 | #define USB_DIR_IN 0x80 | |
90 | ||
91 | #define USB_TYPE_MASK (0x03 << 5) | |
92 | #define USB_TYPE_STANDARD (0x00 << 5) | |
93 | #define USB_TYPE_CLASS (0x01 << 5) | |
94 | #define USB_TYPE_VENDOR (0x02 << 5) | |
95 | #define USB_TYPE_RESERVED (0x03 << 5) | |
96 | ||
97 | #define USB_RECIP_MASK 0x1f | |
98 | #define USB_RECIP_DEVICE 0x00 | |
99 | #define USB_RECIP_INTERFACE 0x01 | |
100 | #define USB_RECIP_ENDPOINT 0x02 | |
101 | #define USB_RECIP_OTHER 0x03 | |
102 | ||
103 | #define DeviceRequest ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE)<<8) | |
104 | #define DeviceOutRequest ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_DEVICE)<<8) | |
59ae540c FB |
105 | #define InterfaceRequest \ |
106 | ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE)<<8) | |
107 | #define InterfaceOutRequest \ | |
108 | ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_INTERFACE)<<8) | |
109 | #define EndpointRequest ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT)<<8) | |
110 | #define EndpointOutRequest \ | |
111 | ((USB_DIR_OUT|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT)<<8) | |
f3571b1a MR |
112 | #define ClassInterfaceRequest \ |
113 | ((USB_DIR_IN|USB_TYPE_CLASS|USB_RECIP_INTERFACE)<<8) | |
114 | #define ClassInterfaceOutRequest \ | |
115 | ((USB_DIR_OUT|USB_TYPE_CLASS|USB_RECIP_INTERFACE)<<8) | |
bb36d470 FB |
116 | |
117 | #define USB_REQ_GET_STATUS 0x00 | |
118 | #define USB_REQ_CLEAR_FEATURE 0x01 | |
119 | #define USB_REQ_SET_FEATURE 0x03 | |
120 | #define USB_REQ_SET_ADDRESS 0x05 | |
121 | #define USB_REQ_GET_DESCRIPTOR 0x06 | |
122 | #define USB_REQ_SET_DESCRIPTOR 0x07 | |
123 | #define USB_REQ_GET_CONFIGURATION 0x08 | |
124 | #define USB_REQ_SET_CONFIGURATION 0x09 | |
125 | #define USB_REQ_GET_INTERFACE 0x0A | |
126 | #define USB_REQ_SET_INTERFACE 0x0B | |
127 | #define USB_REQ_SYNCH_FRAME 0x0C | |
128 | ||
129 | #define USB_DEVICE_SELF_POWERED 0 | |
130 | #define USB_DEVICE_REMOTE_WAKEUP 1 | |
131 | ||
132 | #define USB_DT_DEVICE 0x01 | |
133 | #define USB_DT_CONFIG 0x02 | |
134 | #define USB_DT_STRING 0x03 | |
135 | #define USB_DT_INTERFACE 0x04 | |
136 | #define USB_DT_ENDPOINT 0x05 | |
25620cba GH |
137 | #define USB_DT_DEVICE_QUALIFIER 0x06 |
138 | #define USB_DT_OTHER_SPEED_CONFIG 0x07 | |
a7fb71d1 | 139 | #define USB_DT_DEBUG 0x0A |
c6d3ad0f | 140 | #define USB_DT_INTERFACE_ASSOC 0x0B |
2077469b GH |
141 | #define USB_DT_BOS 0x0F |
142 | #define USB_DT_DEVICE_CAPABILITY 0x10 | |
b870472d PA |
143 | #define USB_DT_CS_INTERFACE 0x24 |
144 | #define USB_DT_CS_ENDPOINT 0x25 | |
b43a2851 | 145 | #define USB_DT_ENDPOINT_COMPANION 0x30 |
bb36d470 | 146 | |
2077469b GH |
147 | #define USB_DEV_CAP_WIRELESS 0x01 |
148 | #define USB_DEV_CAP_USB2_EXT 0x02 | |
149 | #define USB_DEV_CAP_SUPERSPEED 0x03 | |
150 | ||
942ac052 AZ |
151 | #define USB_ENDPOINT_XFER_CONTROL 0 |
152 | #define USB_ENDPOINT_XFER_ISOC 1 | |
153 | #define USB_ENDPOINT_XFER_BULK 2 | |
154 | #define USB_ENDPOINT_XFER_INT 3 | |
d8e17efd | 155 | #define USB_ENDPOINT_XFER_INVALID 255 |
942ac052 | 156 | |
7c37e6a4 GH |
157 | #define USB_INTERFACE_INVALID 255 |
158 | ||
806b6024 | 159 | typedef struct USBBus USBBus; |
07771f6f | 160 | typedef struct USBBusOps USBBusOps; |
bb36d470 FB |
161 | typedef struct USBPort USBPort; |
162 | typedef struct USBDevice USBDevice; | |
4d611c9a | 163 | typedef struct USBPacket USBPacket; |
a552a966 | 164 | typedef struct USBCombinedPacket USBCombinedPacket; |
d8e17efd | 165 | typedef struct USBEndpoint USBEndpoint; |
bb36d470 | 166 | |
37fb59d3 GH |
167 | typedef struct USBDesc USBDesc; |
168 | typedef struct USBDescID USBDescID; | |
169 | typedef struct USBDescDevice USBDescDevice; | |
170 | typedef struct USBDescConfig USBDescConfig; | |
6e625fc7 | 171 | typedef struct USBDescIfaceAssoc USBDescIfaceAssoc; |
37fb59d3 GH |
172 | typedef struct USBDescIface USBDescIface; |
173 | typedef struct USBDescEndpoint USBDescEndpoint; | |
174 | typedef struct USBDescOther USBDescOther; | |
132a3f55 GH |
175 | typedef struct USBDescString USBDescString; |
176 | ||
177 | struct USBDescString { | |
178 | uint8_t index; | |
179 | char *str; | |
180 | QLIST_ENTRY(USBDescString) next; | |
181 | }; | |
37fb59d3 | 182 | |
1de14d43 GH |
183 | #define USB_MAX_ENDPOINTS 15 |
184 | #define USB_MAX_INTERFACES 16 | |
185 | ||
d8e17efd | 186 | struct USBEndpoint { |
63095ab5 GH |
187 | uint8_t nr; |
188 | uint8_t pid; | |
d8e17efd | 189 | uint8_t type; |
82f02fe9 | 190 | uint8_t ifnum; |
f003397c | 191 | int max_packet_size; |
7936e0f0 | 192 | bool pipeline; |
0132b4b6 | 193 | bool halted; |
25d5de7d | 194 | USBDevice *dev; |
db4be873 | 195 | QTAILQ_HEAD(, USBPacket) queue; |
d8e17efd GH |
196 | }; |
197 | ||
eeb0cf9a GH |
198 | enum USBDeviceFlags { |
199 | USB_DEV_FLAG_FULL_PATH, | |
be41efde | 200 | USB_DEV_FLAG_IS_HOST, |
eeb0cf9a GH |
201 | }; |
202 | ||
bb36d470 FB |
203 | /* definition of a USB device */ |
204 | struct USBDevice { | |
806b6024 | 205 | DeviceState qdev; |
618c169b | 206 | USBPort *port; |
5f69076b | 207 | char *port_path; |
71938a09 | 208 | char *serial; |
bb36d470 | 209 | void *opaque; |
eeb0cf9a | 210 | uint32_t flags; |
89b9b79f | 211 | |
ba3f9bfb | 212 | /* Actual connected speed */ |
806b6024 | 213 | int speed; |
ba3f9bfb HG |
214 | /* Supported speeds, not in info because it may be variable (hostdevs) */ |
215 | int speedmask; | |
806b6024 | 216 | uint8_t addr; |
0fe6d12e | 217 | char product_desc[32]; |
61e094c0 | 218 | int auto_attach; |
a5d2f727 | 219 | int attached; |
806b6024 | 220 | |
c1ecb40a | 221 | int32_t state; |
806b6024 | 222 | uint8_t setup_buf[8]; |
19f33223 | 223 | uint8_t data_buf[4096]; |
c1ecb40a GH |
224 | int32_t remote_wakeup; |
225 | int32_t setup_state; | |
226 | int32_t setup_len; | |
227 | int32_t setup_index; | |
132a3f55 | 228 | |
25d5de7d | 229 | USBEndpoint ep_ctl; |
d8e17efd GH |
230 | USBEndpoint ep_in[USB_MAX_ENDPOINTS]; |
231 | USBEndpoint ep_out[USB_MAX_ENDPOINTS]; | |
232 | ||
132a3f55 | 233 | QLIST_HEAD(, USBDescString) strings; |
386ab487 | 234 | const USBDesc *usb_desc; /* Overrides class usb_desc if not NULL */ |
a980a065 | 235 | const USBDescDevice *device; |
65360511 GH |
236 | |
237 | int configuration; | |
238 | int ninterfaces; | |
1de14d43 | 239 | int altsetting[USB_MAX_INTERFACES]; |
a980a065 | 240 | const USBDescConfig *config; |
1de14d43 | 241 | const USBDescIface *ifaces[USB_MAX_INTERFACES]; |
806b6024 GH |
242 | }; |
243 | ||
62aed765 AL |
244 | #define TYPE_USB_DEVICE "usb-device" |
245 | #define USB_DEVICE(obj) \ | |
246 | OBJECT_CHECK(USBDevice, (obj), TYPE_USB_DEVICE) | |
247 | #define USB_DEVICE_CLASS(klass) \ | |
248 | OBJECT_CLASS_CHECK(USBDeviceClass, (klass), TYPE_USB_DEVICE) | |
249 | #define USB_DEVICE_GET_CLASS(obj) \ | |
250 | OBJECT_GET_CLASS(USBDeviceClass, (obj), TYPE_USB_DEVICE) | |
251 | ||
252 | typedef struct USBDeviceClass { | |
253 | DeviceClass parent_class; | |
254 | ||
806b6024 GH |
255 | int (*init)(USBDevice *dev); |
256 | ||
73796fe6 GH |
257 | /* |
258 | * Walk (enabled) downstream ports, check for a matching device. | |
259 | * Only hubs implement this. | |
260 | */ | |
261 | USBDevice *(*find_device)(USBDevice *dev, uint8_t addr); | |
262 | ||
eb5e680a GH |
263 | /* |
264 | * Called when a packet is canceled. | |
265 | */ | |
266 | void (*cancel_packet)(USBDevice *dev, USBPacket *p); | |
267 | ||
806b6024 | 268 | /* |
89b9b79f AL |
269 | * Called when device is destroyed. |
270 | */ | |
059809e4 FB |
271 | void (*handle_destroy)(USBDevice *dev); |
272 | ||
b6f77fbe GH |
273 | /* |
274 | * Attach the device | |
275 | */ | |
276 | void (*handle_attach)(USBDevice *dev); | |
277 | ||
89b9b79f AL |
278 | /* |
279 | * Reset the device | |
806b6024 | 280 | */ |
059809e4 | 281 | void (*handle_reset)(USBDevice *dev); |
89b9b79f AL |
282 | |
283 | /* | |
284 | * Process control request. | |
285 | * Called from handle_packet(). | |
286 | * | |
9a77a0f5 | 287 | * Status gets stored in p->status, and if p->status == USB_RET_SUCCESS |
993d46ce | 288 | * then the number of bytes transferred is stored in p->actual_length |
89b9b79f | 289 | */ |
9a77a0f5 HG |
290 | void (*handle_control)(USBDevice *dev, USBPacket *p, int request, int value, |
291 | int index, int length, uint8_t *data); | |
89b9b79f AL |
292 | |
293 | /* | |
294 | * Process data transfers (both BULK and ISOC). | |
295 | * Called from handle_packet(). | |
296 | * | |
9a77a0f5 | 297 | * Status gets stored in p->status, and if p->status == USB_RET_SUCCESS |
993d46ce | 298 | * then the number of bytes transferred is stored in p->actual_length |
89b9b79f | 299 | */ |
9a77a0f5 | 300 | void (*handle_data)(USBDevice *dev, USBPacket *p); |
0958b4cc | 301 | |
1de14d43 GH |
302 | void (*set_interface)(USBDevice *dev, int interface, |
303 | int alt_old, int alt_new); | |
304 | ||
36dfe324 HG |
305 | /* |
306 | * Called when the hcd is done queuing packets for an endpoint, only | |
307 | * necessary for devices which can return USB_RET_ADD_TO_QUEUE. | |
308 | */ | |
309 | void (*flush_ep_queue)(USBDevice *dev, USBEndpoint *ep); | |
310 | ||
f79738b0 HG |
311 | /* |
312 | * Called by the hcd to let the device know the queue for an endpoint | |
313 | * has been unlinked / stopped. Optional may be NULL. | |
314 | */ | |
315 | void (*ep_stopped)(USBDevice *dev, USBEndpoint *ep); | |
316 | ||
06384698 | 317 | const char *product_desc; |
37fb59d3 | 318 | const USBDesc *usb_desc; |
62aed765 | 319 | } USBDeviceClass; |
bb36d470 | 320 | |
0d86d2be | 321 | typedef struct USBPortOps { |
618c169b GH |
322 | void (*attach)(USBPort *port); |
323 | void (*detach)(USBPort *port); | |
4706ab6c HG |
324 | /* |
325 | * This gets called when a device downstream from the device attached to | |
326 | * the port (iow attached through a hub) gets detached. | |
327 | */ | |
328 | void (*child_detach)(USBPort *port, USBDevice *child); | |
d47e59b8 HG |
329 | void (*wakeup)(USBPort *port); |
330 | /* | |
331 | * Note that port->dev will be different then the device from which | |
f53c398a | 332 | * the packet originated when a hub is involved. |
d47e59b8 HG |
333 | */ |
334 | void (*complete)(USBPort *port, USBPacket *p); | |
0d86d2be | 335 | } USBPortOps; |
0d92ed30 | 336 | |
bb36d470 FB |
337 | /* USB port on which a device can be connected */ |
338 | struct USBPort { | |
a594cfbf | 339 | USBDevice *dev; |
843d4e0c | 340 | int speedmask; |
c24e4aac | 341 | int hubcount; |
c7a2196a | 342 | char path[16]; |
0d86d2be | 343 | USBPortOps *ops; |
bb36d470 FB |
344 | void *opaque; |
345 | int index; /* internal port index, may be used with the opaque */ | |
72cf2d4f | 346 | QTAILQ_ENTRY(USBPort) next; |
bb36d470 FB |
347 | }; |
348 | ||
4d611c9a PB |
349 | typedef void USBCallback(USBPacket * packet, void *opaque); |
350 | ||
f53c398a GH |
351 | typedef enum USBPacketState { |
352 | USB_PACKET_UNDEFINED = 0, | |
353 | USB_PACKET_SETUP, | |
db4be873 | 354 | USB_PACKET_QUEUED, |
f53c398a GH |
355 | USB_PACKET_ASYNC, |
356 | USB_PACKET_COMPLETE, | |
357 | USB_PACKET_CANCELED, | |
358 | } USBPacketState; | |
359 | ||
db4be873 | 360 | /* Structure used to hold information about an active USB packet. */ |
4d611c9a PB |
361 | struct USBPacket { |
362 | /* Data fields for use by the driver. */ | |
363 | int pid; | |
e983395d | 364 | uint64_t id; |
f53c398a | 365 | USBEndpoint *ep; |
8550a02d | 366 | unsigned int stream; |
4f4321c1 | 367 | QEMUIOVector iov; |
1b4b29a1 | 368 | uint64_t parameter; /* control transfers */ |
6ba43f1f | 369 | bool short_not_ok; |
a6fb2ddb | 370 | bool int_req; |
9a77a0f5 | 371 | int status; /* USB_RET_* status code */ |
993d46ce | 372 | int actual_length; /* Number of bytes actually transferred */ |
4d611c9a | 373 | /* Internal use by the USB layer. */ |
f53c398a | 374 | USBPacketState state; |
a552a966 | 375 | USBCombinedPacket *combined; |
db4be873 | 376 | QTAILQ_ENTRY(USBPacket) queue; |
a552a966 HG |
377 | QTAILQ_ENTRY(USBPacket) combined_entry; |
378 | }; | |
379 | ||
380 | struct USBCombinedPacket { | |
381 | USBPacket *first; | |
382 | QTAILQ_HEAD(packets_head, USBPacket) packets; | |
383 | QEMUIOVector iov; | |
4d611c9a PB |
384 | }; |
385 | ||
4f4321c1 | 386 | void usb_packet_init(USBPacket *p); |
db4be873 | 387 | void usb_packet_set_state(USBPacket *p, USBPacketState state); |
5ac2731c | 388 | void usb_packet_check_state(USBPacket *p, USBPacketState expected); |
8550a02d GH |
389 | void usb_packet_setup(USBPacket *p, int pid, |
390 | USBEndpoint *ep, unsigned int stream, | |
391 | uint64_t id, bool short_not_ok, bool int_req); | |
4f4321c1 GH |
392 | void usb_packet_addbuf(USBPacket *p, void *ptr, size_t len); |
393 | int usb_packet_map(USBPacket *p, QEMUSGList *sgl); | |
e2f89926 | 394 | void usb_packet_unmap(USBPacket *p, QEMUSGList *sgl); |
4f4321c1 GH |
395 | void usb_packet_copy(USBPacket *p, void *ptr, size_t bytes); |
396 | void usb_packet_skip(USBPacket *p, size_t bytes); | |
6a98d1c0 | 397 | size_t usb_packet_size(USBPacket *p); |
4f4321c1 GH |
398 | void usb_packet_cleanup(USBPacket *p); |
399 | ||
f53c398a GH |
400 | static inline bool usb_packet_is_inflight(USBPacket *p) |
401 | { | |
db4be873 GH |
402 | return (p->state == USB_PACKET_QUEUED || |
403 | p->state == USB_PACKET_ASYNC); | |
f53c398a GH |
404 | } |
405 | ||
73796fe6 GH |
406 | USBDevice *usb_find_device(USBPort *port, uint8_t addr); |
407 | ||
9a77a0f5 | 408 | void usb_handle_packet(USBDevice *dev, USBPacket *p); |
4ff658fb | 409 | void usb_packet_complete(USBDevice *dev, USBPacket *p); |
d0ff81b8 | 410 | void usb_packet_complete_one(USBDevice *dev, USBPacket *p); |
4ff658fb | 411 | void usb_cancel_packet(USBPacket * p); |
53aa8c0e | 412 | |
d8e17efd | 413 | void usb_ep_init(USBDevice *dev); |
19deaa08 | 414 | void usb_ep_reset(USBDevice *dev); |
5b6780d0 | 415 | void usb_ep_dump(USBDevice *dev); |
d8e17efd GH |
416 | struct USBEndpoint *usb_ep_get(USBDevice *dev, int pid, int ep); |
417 | uint8_t usb_ep_get_type(USBDevice *dev, int pid, int ep); | |
82f02fe9 | 418 | uint8_t usb_ep_get_ifnum(USBDevice *dev, int pid, int ep); |
d8e17efd | 419 | void usb_ep_set_type(USBDevice *dev, int pid, int ep, uint8_t type); |
82f02fe9 | 420 | void usb_ep_set_ifnum(USBDevice *dev, int pid, int ep, uint8_t ifnum); |
f003397c GH |
421 | void usb_ep_set_max_packet_size(USBDevice *dev, int pid, int ep, |
422 | uint16_t raw); | |
423 | int usb_ep_get_max_packet_size(USBDevice *dev, int pid, int ep); | |
7936e0f0 | 424 | void usb_ep_set_pipeline(USBDevice *dev, int pid, int ep, bool enabled); |
e382d966 | 425 | void usb_ep_set_halted(USBDevice *dev, int pid, int ep, bool halted); |
c13a9e61 HG |
426 | USBPacket *usb_ep_find_packet_by_id(USBDevice *dev, int pid, int ep, |
427 | uint64_t id); | |
d8e17efd | 428 | |
a552a966 HG |
429 | void usb_ep_combine_input_packets(USBEndpoint *ep); |
430 | void usb_combined_input_packet_complete(USBDevice *dev, USBPacket *p); | |
431 | void usb_combined_packet_cancel(USBDevice *dev, USBPacket *p); | |
432 | ||
891fb2cd GH |
433 | void usb_attach(USBPort *port); |
434 | void usb_detach(USBPort *port); | |
d28f4e2d GH |
435 | void usb_port_reset(USBPort *port); |
436 | void usb_device_reset(USBDevice *dev); | |
8550a02d | 437 | void usb_wakeup(USBEndpoint *ep, unsigned int stream); |
50b7963e | 438 | void usb_generic_async_ctrl_complete(USBDevice *s, USBPacket *p); |
bb36d470 | 439 | int set_usb_string(uint8_t *buf, const char *str); |
4d611c9a | 440 | |
bb36d470 | 441 | /* usb-linux.c */ |
3741715c | 442 | USBDevice *usb_host_device_open(USBBus *bus, const char *devname); |
84f2d0ea | 443 | void usb_host_info(Monitor *mon, const QDict *qdict); |
59ae540c | 444 | |
87ecb68b PB |
445 | /* usb ports of the VM */ |
446 | ||
87ecb68b PB |
447 | #define VM_USB_HUB_SIZE 8 |
448 | ||
942ac052 AZ |
449 | /* usb-musb.c */ |
450 | enum musb_irq_source_e { | |
451 | musb_irq_suspend = 0, | |
452 | musb_irq_resume, | |
453 | musb_irq_rst_babble, | |
454 | musb_irq_sof, | |
455 | musb_irq_connect, | |
456 | musb_irq_disconnect, | |
457 | musb_irq_vbus_request, | |
458 | musb_irq_vbus_error, | |
459 | musb_irq_rx, | |
460 | musb_irq_tx, | |
461 | musb_set_vbus, | |
462 | musb_set_session, | |
9147b752 PM |
463 | /* Add new interrupts here */ |
464 | musb_irq_max, /* total number of interrupts defined */ | |
942ac052 AZ |
465 | }; |
466 | ||
bc24a225 | 467 | typedef struct MUSBState MUSBState; |
406c2075 | 468 | MUSBState *musb_init(DeviceState *parent_device, int gpio_base); |
5b1cdb4e | 469 | void musb_reset(MUSBState *s); |
bc24a225 PB |
470 | uint32_t musb_core_intr_get(MUSBState *s); |
471 | void musb_core_intr_clear(MUSBState *s, uint32_t mask); | |
472 | void musb_set_size(MUSBState *s, int epnum, int size, int is_tx); | |
806b6024 GH |
473 | |
474 | /* usb-bus.c */ | |
475 | ||
0d936928 AL |
476 | #define TYPE_USB_BUS "usb-bus" |
477 | #define USB_BUS(obj) OBJECT_CHECK(USBBus, (obj), TYPE_USB_BUS) | |
478 | ||
806b6024 GH |
479 | struct USBBus { |
480 | BusState qbus; | |
07771f6f | 481 | USBBusOps *ops; |
806b6024 GH |
482 | int busnr; |
483 | int nfree; | |
484 | int nused; | |
72cf2d4f BS |
485 | QTAILQ_HEAD(, USBPort) free; |
486 | QTAILQ_HEAD(, USBPort) used; | |
487 | QTAILQ_ENTRY(USBBus) next; | |
806b6024 GH |
488 | }; |
489 | ||
07771f6f | 490 | struct USBBusOps { |
ae60fea9 HG |
491 | int (*register_companion)(USBBus *bus, USBPort *ports[], |
492 | uint32_t portcount, uint32_t firstport); | |
8550a02d | 493 | void (*wakeup_endpoint)(USBBus *bus, USBEndpoint *ep, unsigned int stream); |
07771f6f GH |
494 | }; |
495 | ||
c889b3a5 AF |
496 | void usb_bus_new(USBBus *bus, size_t bus_size, |
497 | USBBusOps *ops, DeviceState *host); | |
806b6024 | 498 | USBBus *usb_bus_find(int busnr); |
ba02430f | 499 | void usb_legacy_register(const char *typename, const char *usbdevice_name, |
3741715c JK |
500 | USBDevice *(*usbdevice_init)(USBBus *bus, |
501 | const char *params)); | |
a5d2f727 | 502 | USBDevice *usb_create(USBBus *bus, const char *name); |
806b6024 | 503 | USBDevice *usb_create_simple(USBBus *bus, const char *name); |
0958b4cc | 504 | USBDevice *usbdevice_create(const char *cmdline); |
a5d2f727 | 505 | void usb_register_port(USBBus *bus, USBPort *port, void *opaque, int index, |
ace1318b | 506 | USBPortOps *ops, int speedmask); |
ae60fea9 HG |
507 | int usb_register_companion(const char *masterbus, USBPort *ports[], |
508 | uint32_t portcount, uint32_t firstport, | |
509 | void *opaque, USBPortOps *ops, int speedmask); | |
c7a2196a | 510 | void usb_port_location(USBPort *downstream, USBPort *upstream, int portnr); |
a8e662b5 | 511 | void usb_unregister_port(USBBus *bus, USBPort *port); |
891fb2cd GH |
512 | int usb_claim_port(USBDevice *dev); |
513 | void usb_release_port(USBDevice *dev); | |
a5d2f727 | 514 | int usb_device_attach(USBDevice *dev); |
a8e662b5 | 515 | int usb_device_detach(USBDevice *dev); |
a5d2f727 GH |
516 | int usb_device_delete_addr(int busnr, int addr); |
517 | ||
518 | static inline USBBus *usb_bus_from_device(USBDevice *d) | |
519 | { | |
520 | return DO_UPCAST(USBBus, qbus, d->qdev.parent_bus); | |
521 | } | |
701a8f76 PB |
522 | |
523 | extern const VMStateDescription vmstate_usb_device; | |
524 | ||
525 | #define VMSTATE_USB_DEVICE(_field, _state) { \ | |
526 | .name = (stringify(_field)), \ | |
527 | .size = sizeof(USBDevice), \ | |
528 | .vmsd = &vmstate_usb_device, \ | |
529 | .flags = VMS_STRUCT, \ | |
530 | .offset = vmstate_offset_value(_state, _field, USBDevice), \ | |
531 | } | |
532 | ||
73796fe6 GH |
533 | USBDevice *usb_device_find_device(USBDevice *dev, uint8_t addr); |
534 | ||
62aed765 AL |
535 | void usb_device_cancel_packet(USBDevice *dev, USBPacket *p); |
536 | ||
537 | void usb_device_handle_attach(USBDevice *dev); | |
538 | ||
539 | void usb_device_handle_reset(USBDevice *dev); | |
540 | ||
9a77a0f5 HG |
541 | void usb_device_handle_control(USBDevice *dev, USBPacket *p, int request, |
542 | int val, int index, int length, uint8_t *data); | |
62aed765 | 543 | |
9a77a0f5 | 544 | void usb_device_handle_data(USBDevice *dev, USBPacket *p); |
62aed765 AL |
545 | |
546 | void usb_device_set_interface(USBDevice *dev, int interface, | |
547 | int alt_old, int alt_new); | |
548 | ||
36dfe324 HG |
549 | void usb_device_flush_ep_queue(USBDevice *dev, USBEndpoint *ep); |
550 | ||
f79738b0 HG |
551 | void usb_device_ep_stopped(USBDevice *dev, USBEndpoint *ep); |
552 | ||
62aed765 AL |
553 | const char *usb_device_get_product_desc(USBDevice *dev); |
554 | ||
555 | const USBDesc *usb_device_get_usb_desc(USBDevice *dev); | |
556 | ||
bb4d2b2f GH |
557 | int ehci_create_ich9_with_companions(PCIBus *bus, int slot); |
558 | ||
b2d1fe67 HG |
559 | /* quirks.c */ |
560 | ||
561 | /* In bulk endpoints are streaming data sources (iow behave like isoc eps) */ | |
562 | #define USB_QUIRK_BUFFER_BULK_IN 0x01 | |
563 | /* Bulk pkts in FTDI format, need special handling when combining packets */ | |
564 | #define USB_QUIRK_IS_FTDI 0x02 | |
701a8f76 | 565 | |
b2d1fe67 HG |
566 | int usb_get_quirks(uint16_t vendor_id, uint16_t product_id, |
567 | uint8_t interface_class, uint8_t interface_subclass, | |
568 | uint8_t interface_protocol); | |
569 | ||
570 | #endif |