blob: dd78bb6db7b9ab176926da0eeda2e895bd0a60c3 [file] [log] [blame]
bellardbb36d472005-11-05 14:22:28 +00001/*
2 * Linux host USB redirector
3 *
4 * Copyright (c) 2005 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
aliguori64838172008-08-21 19:31:10 +00006 * Copyright (c) 2008 Max Krasnyansky
7 * Support for host device auto connect & disconnect
8 * Magor rewrite to support fully async operation
aliguori4b096fc2008-08-21 19:28:55 +00009 *
bellardbb36d472005-11-05 14:22:28 +000010 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 * THE SOFTWARE.
27 */
pbrook87ecb682007-11-17 17:14:51 +000028#include "qemu-common.h"
aliguori1f3870a2008-08-21 19:27:48 +000029#include "qemu-timer.h"
pbrook87ecb682007-11-17 17:14:51 +000030#include "hw/usb.h"
31#include "console.h"
bellardbb36d472005-11-05 14:22:28 +000032
33#if defined(__linux__)
34#include <dirent.h>
35#include <sys/ioctl.h>
36#include <linux/usbdevice_fs.h>
37#include <linux/version.h>
balrogb9dc0332007-10-04 22:47:34 +000038#include <signal.h>
bellardbb36d472005-11-05 14:22:28 +000039
40/* We redefine it to avoid version problems */
41struct usb_ctrltransfer {
42 uint8_t bRequestType;
43 uint8_t bRequest;
44 uint16_t wValue;
45 uint16_t wIndex;
46 uint16_t wLength;
47 uint32_t timeout;
48 void *data;
49};
50
bellarda594cfb2005-11-06 16:13:29 +000051typedef int USBScanFunc(void *opaque, int bus_num, int addr, int class_id,
ths5fafdf22007-09-16 21:08:06 +000052 int vendor_id, int product_id,
bellarda594cfb2005-11-06 16:13:29 +000053 const char *product_name, int speed);
ths5fafdf22007-09-16 21:08:06 +000054static int usb_host_find_device(int *pbus_num, int *paddr,
bellard1f6e24e2006-06-26 21:00:51 +000055 char *product_name, int product_name_size,
bellarda594cfb2005-11-06 16:13:29 +000056 const char *devname);
bellardbb36d472005-11-05 14:22:28 +000057
bellarda594cfb2005-11-06 16:13:29 +000058//#define DEBUG
aliguori64838172008-08-21 19:31:10 +000059
60#ifdef DEBUG
61#define dprintf printf
62#else
63#define dprintf(...)
64#endif
bellardbb36d472005-11-05 14:22:28 +000065
66#define USBDEVFS_PATH "/proc/bus/usb"
bellard1f6e24e2006-06-26 21:00:51 +000067#define PRODUCT_NAME_SZ 32
balrogb9dc0332007-10-04 22:47:34 +000068#define MAX_ENDPOINTS 16
bellardbb36d472005-11-05 14:22:28 +000069
balrogb9dc0332007-10-04 22:47:34 +000070struct sigaction sigact;
71
72/* endpoint association data */
73struct endp_data {
74 uint8_t type;
aliguori64838172008-08-21 19:31:10 +000075 uint8_t halted;
balrogb9dc0332007-10-04 22:47:34 +000076};
77
bellardbb36d472005-11-05 14:22:28 +000078typedef struct USBHostDevice {
79 USBDevice dev;
aliguori64838172008-08-21 19:31:10 +000080 int fd;
81
82 uint8_t descr[1024];
83 int descr_len;
84 int configuration;
aliguori24772c12008-08-21 19:31:52 +000085 int closing;
aliguori64838172008-08-21 19:31:10 +000086
balrogb9dc0332007-10-04 22:47:34 +000087 struct endp_data endp_table[MAX_ENDPOINTS];
aliguori4b096fc2008-08-21 19:28:55 +000088
aliguori4b096fc2008-08-21 19:28:55 +000089 /* Host side address */
90 int bus_num;
91 int addr;
92
93 struct USBHostDevice *next;
bellardbb36d472005-11-05 14:22:28 +000094} USBHostDevice;
95
aliguori64838172008-08-21 19:31:10 +000096static int is_isoc(USBHostDevice *s, int ep)
97{
98 return s->endp_table[ep - 1].type == USBDEVFS_URB_TYPE_ISO;
99}
100
101static int is_halted(USBHostDevice *s, int ep)
102{
103 return s->endp_table[ep - 1].halted;
104}
105
106static void clear_halt(USBHostDevice *s, int ep)
107{
108 s->endp_table[ep - 1].halted = 0;
109}
110
111static void set_halt(USBHostDevice *s, int ep)
112{
113 s->endp_table[ep - 1].halted = 1;
114}
115
aliguori4b096fc2008-08-21 19:28:55 +0000116static USBHostDevice *hostdev_list;
117
118static void hostdev_link(USBHostDevice *dev)
119{
120 dev->next = hostdev_list;
121 hostdev_list = dev;
122}
123
124static void hostdev_unlink(USBHostDevice *dev)
125{
126 USBHostDevice *pdev = hostdev_list;
127 USBHostDevice **prev = &hostdev_list;
128
129 while (pdev) {
130 if (pdev == dev) {
131 *prev = dev->next;
132 return;
133 }
134
135 prev = &pdev->next;
136 pdev = pdev->next;
137 }
138}
139
140static USBHostDevice *hostdev_find(int bus_num, int addr)
141{
142 USBHostDevice *s = hostdev_list;
143 while (s) {
144 if (s->bus_num == bus_num && s->addr == addr)
145 return s;
146 s = s->next;
147 }
148 return NULL;
149}
150
aliguori64838172008-08-21 19:31:10 +0000151/*
152 * Async URB state.
153 * We always allocate one isoc descriptor even for bulk transfers
154 * to simplify allocation and casts.
155 */
156typedef struct AsyncURB
balrogb9dc0332007-10-04 22:47:34 +0000157{
aliguori64838172008-08-21 19:31:10 +0000158 struct usbdevfs_urb urb;
159 struct usbdevfs_iso_packet_desc isocpd;
160
161 USBPacket *packet;
162 USBHostDevice *hdev;
163} AsyncURB;
164
165static AsyncURB *async_alloc(void)
166{
167 return (AsyncURB *) qemu_mallocz(sizeof(AsyncURB));
balrogb9dc0332007-10-04 22:47:34 +0000168}
169
aliguori64838172008-08-21 19:31:10 +0000170static void async_free(AsyncURB *aurb)
balrogb9dc0332007-10-04 22:47:34 +0000171{
aliguori64838172008-08-21 19:31:10 +0000172 qemu_free(aurb);
173}
balrogb9dc0332007-10-04 22:47:34 +0000174
aliguori64838172008-08-21 19:31:10 +0000175static void async_complete(void *opaque)
176{
177 USBHostDevice *s = opaque;
178 AsyncURB *aurb;
balrogb9dc0332007-10-04 22:47:34 +0000179
aliguori64838172008-08-21 19:31:10 +0000180 while (1) {
181 USBPacket *p;
182
183 int r = ioctl(s->fd, USBDEVFS_REAPURBNDELAY, &aurb);
184 if (r < 0) {
185 if (errno == EAGAIN)
186 return;
187
aliguori24772c12008-08-21 19:31:52 +0000188 if (errno == ENODEV && !s->closing) {
aliguori64838172008-08-21 19:31:10 +0000189 printf("husb: device %d.%d disconnected\n", s->bus_num, s->addr);
190 usb_device_del_addr(0, s->dev.addr);
191 return;
192 }
193
194 dprintf("husb: async. reap urb failed errno %d\n", errno);
195 return;
balrogb9dc0332007-10-04 22:47:34 +0000196 }
aliguori64838172008-08-21 19:31:10 +0000197
198 p = aurb->packet;
199
200 dprintf("husb: async completed. aurb %p status %d alen %d\n",
201 aurb, aurb->urb.status, aurb->urb.actual_length);
202
203 if (p) {
204 switch (aurb->urb.status) {
205 case 0:
206 p->len = aurb->urb.actual_length;
207 break;
208
209 case -EPIPE:
210 set_halt(s, p->devep);
211 /* fall through */
212 default:
213 p->len = USB_RET_NAK;
214 break;
215 }
216
217 usb_packet_complete(p);
218 }
219
220 async_free(aurb);
balrogb9dc0332007-10-04 22:47:34 +0000221 }
balrogb9dc0332007-10-04 22:47:34 +0000222}
223
aliguori64838172008-08-21 19:31:10 +0000224static void async_cancel(USBPacket *unused, void *opaque)
balrogb9dc0332007-10-04 22:47:34 +0000225{
aliguori64838172008-08-21 19:31:10 +0000226 AsyncURB *aurb = opaque;
227 USBHostDevice *s = aurb->hdev;
balrogb9dc0332007-10-04 22:47:34 +0000228
aliguori64838172008-08-21 19:31:10 +0000229 dprintf("husb: async cancel. aurb %p\n", aurb);
balrogb9dc0332007-10-04 22:47:34 +0000230
aliguori64838172008-08-21 19:31:10 +0000231 /* Mark it as dead (see async_complete above) */
232 aurb->packet = NULL;
233
234 int r = ioctl(s->fd, USBDEVFS_DISCARDURB, aurb);
235 if (r < 0) {
236 dprintf("husb: async. discard urb failed errno %d\n", errno);
balrogb9dc0332007-10-04 22:47:34 +0000237 }
balrogb9dc0332007-10-04 22:47:34 +0000238}
239
240static int usb_host_update_interfaces(USBHostDevice *dev, int configuration)
241{
242 int dev_descr_len, config_descr_len;
243 int interface, nb_interfaces, nb_configurations;
244 int ret, i;
245
246 if (configuration == 0) /* address state - ignore */
247 return 1;
248
249 i = 0;
250 dev_descr_len = dev->descr[0];
251 if (dev_descr_len > dev->descr_len)
252 goto fail;
253 nb_configurations = dev->descr[17];
254
255 i += dev_descr_len;
256 while (i < dev->descr_len) {
aliguori64838172008-08-21 19:31:10 +0000257 dprintf("husb: i is %d, descr_len is %d, dl %d, dt %d\n", i, dev->descr_len,
balrogb9dc0332007-10-04 22:47:34 +0000258 dev->descr[i], dev->descr[i+1]);
aliguori64838172008-08-21 19:31:10 +0000259
balrogb9dc0332007-10-04 22:47:34 +0000260 if (dev->descr[i+1] != USB_DT_CONFIG) {
261 i += dev->descr[i];
262 continue;
263 }
264 config_descr_len = dev->descr[i];
265
aliguori64838172008-08-21 19:31:10 +0000266 printf("husb: config #%d need %d\n", dev->descr[i + 5], configuration);
aliguori1f3870a2008-08-21 19:27:48 +0000267
268 if (configuration < 0 || configuration == dev->descr[i + 5])
balrogb9dc0332007-10-04 22:47:34 +0000269 break;
270
271 i += config_descr_len;
272 }
273
274 if (i >= dev->descr_len) {
aliguori64838172008-08-21 19:31:10 +0000275 printf("husb: update iface failed. no matching configuration\n");
balrogb9dc0332007-10-04 22:47:34 +0000276 goto fail;
277 }
278 nb_interfaces = dev->descr[i + 4];
279
280#ifdef USBDEVFS_DISCONNECT
281 /* earlier Linux 2.4 do not support that */
282 {
283 struct usbdevfs_ioctl ctrl;
284 for (interface = 0; interface < nb_interfaces; interface++) {
285 ctrl.ioctl_code = USBDEVFS_DISCONNECT;
286 ctrl.ifno = interface;
287 ret = ioctl(dev->fd, USBDEVFS_IOCTL, &ctrl);
288 if (ret < 0 && errno != ENODATA) {
289 perror("USBDEVFS_DISCONNECT");
290 goto fail;
291 }
292 }
293 }
294#endif
295
296 /* XXX: only grab if all interfaces are free */
297 for (interface = 0; interface < nb_interfaces; interface++) {
298 ret = ioctl(dev->fd, USBDEVFS_CLAIMINTERFACE, &interface);
299 if (ret < 0) {
300 if (errno == EBUSY) {
aliguori64838172008-08-21 19:31:10 +0000301 printf("husb: update iface. device already grabbed\n");
balrogb9dc0332007-10-04 22:47:34 +0000302 } else {
aliguori64838172008-08-21 19:31:10 +0000303 perror("husb: failed to claim interface");
balrogb9dc0332007-10-04 22:47:34 +0000304 }
305 fail:
306 return 0;
307 }
308 }
309
aliguori64838172008-08-21 19:31:10 +0000310 printf("husb: %d interfaces claimed for configuration %d\n",
balrogb9dc0332007-10-04 22:47:34 +0000311 nb_interfaces, configuration);
balrogb9dc0332007-10-04 22:47:34 +0000312
313 return 1;
314}
315
bellard059809e2006-07-19 18:06:15 +0000316static void usb_host_handle_reset(USBDevice *dev)
bellardbb36d472005-11-05 14:22:28 +0000317{
bellardbb36d472005-11-05 14:22:28 +0000318 USBHostDevice *s = (USBHostDevice *)dev;
aliguori64838172008-08-21 19:31:10 +0000319
320 dprintf("husb: reset device %u.%u\n", s->bus_num, s->addr);
321
bellardbb36d472005-11-05 14:22:28 +0000322 ioctl(s->fd, USBDEVFS_RESET);
aliguori64838172008-08-21 19:31:10 +0000323 usb_host_update_interfaces(s, s->configuration);
ths5fafdf22007-09-16 21:08:06 +0000324}
bellardbb36d472005-11-05 14:22:28 +0000325
bellard059809e2006-07-19 18:06:15 +0000326static void usb_host_handle_destroy(USBDevice *dev)
327{
328 USBHostDevice *s = (USBHostDevice *)dev;
329
aliguori24772c12008-08-21 19:31:52 +0000330 s->closing = 1;
331
aliguori64838172008-08-21 19:31:10 +0000332 qemu_set_fd_handler(s->fd, NULL, NULL, NULL);
aliguori1f3870a2008-08-21 19:27:48 +0000333
aliguori4b096fc2008-08-21 19:28:55 +0000334 hostdev_unlink(s);
335
aliguori64838172008-08-21 19:31:10 +0000336 async_complete(s);
337
bellard059809e2006-07-19 18:06:15 +0000338 if (s->fd >= 0)
339 close(s->fd);
aliguori1f3870a2008-08-21 19:27:48 +0000340
bellard059809e2006-07-19 18:06:15 +0000341 qemu_free(s);
342}
343
balrogb9dc0332007-10-04 22:47:34 +0000344static int usb_linux_update_endp_table(USBHostDevice *s);
345
bellardbb36d472005-11-05 14:22:28 +0000346static int usb_host_handle_control(USBDevice *dev,
347 int request,
348 int value,
349 int index,
350 int length,
351 uint8_t *data)
352{
353 USBHostDevice *s = (USBHostDevice *)dev;
354 struct usb_ctrltransfer ct;
balrogb9dc0332007-10-04 22:47:34 +0000355 struct usbdevfs_setinterface si;
356 int intf_update_required = 0;
bellardbb36d472005-11-05 14:22:28 +0000357 int ret;
358
359 if (request == (DeviceOutRequest | USB_REQ_SET_ADDRESS)) {
360 /* specific SET_ADDRESS support */
361 dev->addr = value;
362 return 0;
balrogb9dc0332007-10-04 22:47:34 +0000363 } else if (request == ((USB_RECIP_INTERFACE << 8) |
364 USB_REQ_SET_INTERFACE)) {
365 /* set alternate setting for the interface */
366 si.interface = index;
367 si.altsetting = value;
368 ret = ioctl(s->fd, USBDEVFS_SETINTERFACE, &si);
369 usb_linux_update_endp_table(s);
370 } else if (request == (DeviceOutRequest | USB_REQ_SET_CONFIGURATION)) {
aliguori64838172008-08-21 19:31:10 +0000371 dprintf("husb: ctrl set config %d\n", value & 0xff);
balrogb9dc0332007-10-04 22:47:34 +0000372 if (s->configuration != (value & 0xff)) {
373 s->configuration = (value & 0xff);
374 intf_update_required = 1;
375 }
376 goto do_request;
bellardbb36d472005-11-05 14:22:28 +0000377 } else {
balrogb9dc0332007-10-04 22:47:34 +0000378 do_request:
bellardbb36d472005-11-05 14:22:28 +0000379 ct.bRequestType = request >> 8;
380 ct.bRequest = request;
381 ct.wValue = value;
382 ct.wIndex = index;
383 ct.wLength = length;
384 ct.timeout = 50;
385 ct.data = data;
386 ret = ioctl(s->fd, USBDEVFS_CONTROL, &ct);
aliguori64838172008-08-21 19:31:10 +0000387
388 dprintf("husb: ctrl req 0x%x val 0x%x index %u len %u ret %d\n",
389 ct.bRequest, ct.wValue, ct.wIndex, ct.wLength, ret);
balrogb9dc0332007-10-04 22:47:34 +0000390 }
391
392 if (ret < 0) {
393 switch(errno) {
394 case ETIMEDOUT:
395 return USB_RET_NAK;
396 default:
397 return USB_RET_STALL;
bellardbb36d472005-11-05 14:22:28 +0000398 }
balrogb9dc0332007-10-04 22:47:34 +0000399 } else {
400 if (intf_update_required) {
aliguori64838172008-08-21 19:31:10 +0000401 dprintf("husb: updating interfaces\n");
balrogb9dc0332007-10-04 22:47:34 +0000402 usb_host_update_interfaces(s, value & 0xff);
403 }
404 return ret;
405 }
bellardbb36d472005-11-05 14:22:28 +0000406}
407
pbrook4d611c92006-08-12 01:04:27 +0000408static int usb_host_handle_data(USBDevice *dev, USBPacket *p)
bellardbb36d472005-11-05 14:22:28 +0000409{
aliguori64838172008-08-21 19:31:10 +0000410 USBHostDevice *s = (USBHostDevice *) dev;
411 AsyncURB *aurb;
412 struct usbdevfs_urb *urb;
bellardbb36d472005-11-05 14:22:28 +0000413 int ret;
414
aliguori64838172008-08-21 19:31:10 +0000415 aurb = async_alloc();
416 if (!aurb) {
417 dprintf("husb: async malloc failed\n");
418 return USB_RET_NAK;
balrogb9dc0332007-10-04 22:47:34 +0000419 }
aliguori64838172008-08-21 19:31:10 +0000420 aurb->hdev = s;
421 aurb->packet = p;
balrogb9dc0332007-10-04 22:47:34 +0000422
aliguori64838172008-08-21 19:31:10 +0000423 urb = &aurb->urb;
424
pbrook4d611c92006-08-12 01:04:27 +0000425 if (p->pid == USB_TOKEN_IN)
aliguori64838172008-08-21 19:31:10 +0000426 urb->endpoint = p->devep | 0x80;
427 else
428 urb->endpoint = p->devep;
429
430 if (is_halted(s, p->devep)) {
431 ret = ioctl(s->fd, USBDEVFS_CLEAR_HALT, &urb->endpoint);
432 if (ret < 0) {
433 dprintf("husb: failed to clear halt. ep 0x%x errno %d\n",
434 urb->endpoint, errno);
bellardbb36d472005-11-05 14:22:28 +0000435 return USB_RET_NAK;
bellardbb36d472005-11-05 14:22:28 +0000436 }
aliguori64838172008-08-21 19:31:10 +0000437 clear_halt(s, p->devep);
balrog046833e2007-10-31 00:27:50 +0000438 }
439
aliguori64838172008-08-21 19:31:10 +0000440 urb->buffer = p->data;
balrogb9dc0332007-10-04 22:47:34 +0000441 urb->buffer_length = p->len;
aliguori64838172008-08-21 19:31:10 +0000442
443 if (is_isoc(s, p->devep)) {
444 /* Setup ISOC transfer */
445 urb->type = USBDEVFS_URB_TYPE_ISO;
446 urb->flags = USBDEVFS_URB_ISO_ASAP;
447 urb->number_of_packets = 1;
448 urb->iso_frame_desc[0].length = p->len;
balrogb9dc0332007-10-04 22:47:34 +0000449 } else {
aliguori64838172008-08-21 19:31:10 +0000450 /* Setup bulk transfer */
451 urb->type = USBDEVFS_URB_TYPE_BULK;
452 }
453
454 urb->usercontext = s;
455
456 ret = ioctl(s->fd, USBDEVFS_SUBMITURB, urb);
457
458 dprintf("husb: data submit. ep 0x%x len %u aurb %p\n", urb->endpoint, p->len, aurb);
459
460 if (ret < 0) {
461 dprintf("husb: submit failed. errno %d\n", errno);
462 async_free(aurb);
463
balrogb9dc0332007-10-04 22:47:34 +0000464 switch(errno) {
465 case ETIMEDOUT:
466 return USB_RET_NAK;
467 case EPIPE:
468 default:
469 return USB_RET_STALL;
470 }
471 }
aliguori64838172008-08-21 19:31:10 +0000472
473 usb_defer_packet(p, async_cancel, aurb);
balrogb9dc0332007-10-04 22:47:34 +0000474 return USB_RET_ASYNC;
balrogb9dc0332007-10-04 22:47:34 +0000475}
476
balrogb9dc0332007-10-04 22:47:34 +0000477/* returns 1 on problem encountered or 0 for success */
478static int usb_linux_update_endp_table(USBHostDevice *s)
479{
480 uint8_t *descriptors;
481 uint8_t devep, type, configuration, alt_interface;
482 struct usb_ctrltransfer ct;
483 int interface, ret, length, i;
484
485 ct.bRequestType = USB_DIR_IN;
486 ct.bRequest = USB_REQ_GET_CONFIGURATION;
487 ct.wValue = 0;
488 ct.wIndex = 0;
489 ct.wLength = 1;
490 ct.data = &configuration;
491 ct.timeout = 50;
492
493 ret = ioctl(s->fd, USBDEVFS_CONTROL, &ct);
494 if (ret < 0) {
495 perror("usb_linux_update_endp_table");
496 return 1;
497 }
498
499 /* in address state */
500 if (configuration == 0)
501 return 1;
502
503 /* get the desired configuration, interface, and endpoint descriptors
504 * from device description */
505 descriptors = &s->descr[18];
506 length = s->descr_len - 18;
507 i = 0;
508
509 if (descriptors[i + 1] != USB_DT_CONFIG ||
510 descriptors[i + 5] != configuration) {
aliguori64838172008-08-21 19:31:10 +0000511 dprintf("invalid descriptor data - configuration\n");
balrogb9dc0332007-10-04 22:47:34 +0000512 return 1;
513 }
514 i += descriptors[i];
515
516 while (i < length) {
517 if (descriptors[i + 1] != USB_DT_INTERFACE ||
518 (descriptors[i + 1] == USB_DT_INTERFACE &&
519 descriptors[i + 4] == 0)) {
520 i += descriptors[i];
521 continue;
522 }
523
524 interface = descriptors[i + 2];
525
526 ct.bRequestType = USB_DIR_IN | USB_RECIP_INTERFACE;
527 ct.bRequest = USB_REQ_GET_INTERFACE;
528 ct.wValue = 0;
529 ct.wIndex = interface;
530 ct.wLength = 1;
531 ct.data = &alt_interface;
532 ct.timeout = 50;
533
534 ret = ioctl(s->fd, USBDEVFS_CONTROL, &ct);
535 if (ret < 0) {
536 perror("usb_linux_update_endp_table");
537 return 1;
538 }
539
540 /* the current interface descriptor is the active interface
541 * and has endpoints */
542 if (descriptors[i + 3] != alt_interface) {
543 i += descriptors[i];
544 continue;
545 }
546
547 /* advance to the endpoints */
548 while (i < length && descriptors[i +1] != USB_DT_ENDPOINT)
549 i += descriptors[i];
550
551 if (i >= length)
552 break;
553
554 while (i < length) {
555 if (descriptors[i + 1] != USB_DT_ENDPOINT)
556 break;
557
558 devep = descriptors[i + 2];
559 switch (descriptors[i + 3] & 0x3) {
560 case 0x00:
561 type = USBDEVFS_URB_TYPE_CONTROL;
562 break;
563 case 0x01:
564 type = USBDEVFS_URB_TYPE_ISO;
565 break;
566 case 0x02:
567 type = USBDEVFS_URB_TYPE_BULK;
568 break;
569 case 0x03:
570 type = USBDEVFS_URB_TYPE_INTERRUPT;
571 break;
572 default:
aliguori64838172008-08-21 19:31:10 +0000573 dprintf("usb_host: malformed endpoint type\n");
balrogb9dc0332007-10-04 22:47:34 +0000574 type = USBDEVFS_URB_TYPE_BULK;
575 }
576 s->endp_table[(devep & 0xf) - 1].type = type;
aliguori64838172008-08-21 19:31:10 +0000577 s->endp_table[(devep & 0xf) - 1].halted = 0;
balrogb9dc0332007-10-04 22:47:34 +0000578
579 i += descriptors[i];
580 }
581 }
582 return 0;
583}
584
aliguori4b096fc2008-08-21 19:28:55 +0000585static USBDevice *usb_host_device_open_addr(int bus_num, int addr, const char *prod_name)
bellardbb36d472005-11-05 14:22:28 +0000586{
balrogb9dc0332007-10-04 22:47:34 +0000587 int fd = -1, ret;
588 USBHostDevice *dev = NULL;
bellardbb36d472005-11-05 14:22:28 +0000589 struct usbdevfs_connectinfo ci;
bellarda594cfb2005-11-06 16:13:29 +0000590 char buf[1024];
aliguori1f3870a2008-08-21 19:27:48 +0000591
592 dev = qemu_mallocz(sizeof(USBHostDevice));
593 if (!dev)
594 goto fail;
595
aliguori4b096fc2008-08-21 19:28:55 +0000596 dev->bus_num = bus_num;
597 dev->addr = addr;
598
aliguori64838172008-08-21 19:31:10 +0000599 printf("husb: open device %d.%d\n", bus_num, addr);
aliguori1f3870a2008-08-21 19:27:48 +0000600
ths5fafdf22007-09-16 21:08:06 +0000601 snprintf(buf, sizeof(buf), USBDEVFS_PATH "/%03d/%03d",
bellarda594cfb2005-11-06 16:13:29 +0000602 bus_num, addr);
balrogb9dc0332007-10-04 22:47:34 +0000603 fd = open(buf, O_RDWR | O_NONBLOCK);
bellardbb36d472005-11-05 14:22:28 +0000604 if (fd < 0) {
bellarda594cfb2005-11-06 16:13:29 +0000605 perror(buf);
aliguori1f3870a2008-08-21 19:27:48 +0000606 goto fail;
bellardbb36d472005-11-05 14:22:28 +0000607 }
608
balrogb9dc0332007-10-04 22:47:34 +0000609 /* read the device description */
610 dev->descr_len = read(fd, dev->descr, sizeof(dev->descr));
611 if (dev->descr_len <= 0) {
aliguori64838172008-08-21 19:31:10 +0000612 perror("husb: reading device data failed");
bellardbb36d472005-11-05 14:22:28 +0000613 goto fail;
614 }
ths3b46e622007-09-17 08:09:54 +0000615
balrogb9dc0332007-10-04 22:47:34 +0000616#ifdef DEBUG
bellard868bfe22005-11-13 21:53:15 +0000617 {
balrogb9dc0332007-10-04 22:47:34 +0000618 int x;
619 printf("=== begin dumping device descriptor data ===\n");
620 for (x = 0; x < dev->descr_len; x++)
621 printf("%02x ", dev->descr[x]);
622 printf("\n=== end dumping device descriptor data ===\n");
bellarda594cfb2005-11-06 16:13:29 +0000623 }
624#endif
625
balrogb9dc0332007-10-04 22:47:34 +0000626 dev->fd = fd;
627 dev->configuration = 1;
628
629 /* XXX - do something about initial configuration */
aliguori1f3870a2008-08-21 19:27:48 +0000630 if (!usb_host_update_interfaces(dev, -1))
balrogb9dc0332007-10-04 22:47:34 +0000631 goto fail;
bellardbb36d472005-11-05 14:22:28 +0000632
633 ret = ioctl(fd, USBDEVFS_CONNECTINFO, &ci);
634 if (ret < 0) {
balrog046833e2007-10-31 00:27:50 +0000635 perror("usb_host_device_open: USBDEVFS_CONNECTINFO");
bellardbb36d472005-11-05 14:22:28 +0000636 goto fail;
637 }
638
aliguori64838172008-08-21 19:31:10 +0000639 printf("husb: grabbed usb device %d.%d\n", bus_num, addr);
bellardbb36d472005-11-05 14:22:28 +0000640
balrogb9dc0332007-10-04 22:47:34 +0000641 ret = usb_linux_update_endp_table(dev);
642 if (ret)
bellardbb36d472005-11-05 14:22:28 +0000643 goto fail;
balrogb9dc0332007-10-04 22:47:34 +0000644
bellardbb36d472005-11-05 14:22:28 +0000645 if (ci.slow)
646 dev->dev.speed = USB_SPEED_LOW;
647 else
648 dev->dev.speed = USB_SPEED_HIGH;
bellarda594cfb2005-11-06 16:13:29 +0000649 dev->dev.handle_packet = usb_generic_handle_packet;
bellardbb36d472005-11-05 14:22:28 +0000650
651 dev->dev.handle_reset = usb_host_handle_reset;
652 dev->dev.handle_control = usb_host_handle_control;
653 dev->dev.handle_data = usb_host_handle_data;
bellard059809e2006-07-19 18:06:15 +0000654 dev->dev.handle_destroy = usb_host_handle_destroy;
bellard1f6e24e2006-06-26 21:00:51 +0000655
aliguori4b096fc2008-08-21 19:28:55 +0000656 if (!prod_name || prod_name[0] == '\0')
bellard1f6e24e2006-06-26 21:00:51 +0000657 snprintf(dev->dev.devname, sizeof(dev->dev.devname),
aliguori4b096fc2008-08-21 19:28:55 +0000658 "host:%d.%d", bus_num, addr);
bellard1f6e24e2006-06-26 21:00:51 +0000659 else
660 pstrcpy(dev->dev.devname, sizeof(dev->dev.devname),
aliguori4b096fc2008-08-21 19:28:55 +0000661 prod_name);
bellard1f6e24e2006-06-26 21:00:51 +0000662
aliguori64838172008-08-21 19:31:10 +0000663 /* USB devio uses 'write' flag to check for async completions */
664 qemu_set_fd_handler(dev->fd, NULL, async_complete, dev);
aliguori1f3870a2008-08-21 19:27:48 +0000665
aliguori4b096fc2008-08-21 19:28:55 +0000666 hostdev_link(dev);
667
aliguori64838172008-08-21 19:31:10 +0000668 return (USBDevice *) dev;
aliguori4b096fc2008-08-21 19:28:55 +0000669
balrogb9dc0332007-10-04 22:47:34 +0000670fail:
aliguori24772c12008-08-21 19:31:52 +0000671 if (dev)
balrogb9dc0332007-10-04 22:47:34 +0000672 qemu_free(dev);
aliguori24772c12008-08-21 19:31:52 +0000673
balrogb9dc0332007-10-04 22:47:34 +0000674 close(fd);
675 return NULL;
bellardbb36d472005-11-05 14:22:28 +0000676}
677
aliguori4b096fc2008-08-21 19:28:55 +0000678USBDevice *usb_host_device_open(const char *devname)
679{
680 int bus_num, addr;
681 char product_name[PRODUCT_NAME_SZ];
682
683 if (usb_host_find_device(&bus_num, &addr,
684 product_name, sizeof(product_name),
685 devname) < 0)
686 return NULL;
687
688 if (hostdev_find(bus_num, addr)) {
aliguori64838172008-08-21 19:31:10 +0000689 term_printf("husb: host usb device %d.%d is already open\n", bus_num, addr);
aliguori4b096fc2008-08-21 19:28:55 +0000690 return NULL;
691 }
692
693 return usb_host_device_open_addr(bus_num, addr, product_name);
694}
695
bellarda594cfb2005-11-06 16:13:29 +0000696static int get_tag_value(char *buf, int buf_size,
ths5fafdf22007-09-16 21:08:06 +0000697 const char *str, const char *tag,
bellarda594cfb2005-11-06 16:13:29 +0000698 const char *stopchars)
bellardbb36d472005-11-05 14:22:28 +0000699{
bellarda594cfb2005-11-06 16:13:29 +0000700 const char *p;
701 char *q;
702 p = strstr(str, tag);
703 if (!p)
704 return -1;
705 p += strlen(tag);
706 while (isspace(*p))
707 p++;
708 q = buf;
709 while (*p != '\0' && !strchr(stopchars, *p)) {
710 if ((q - buf) < (buf_size - 1))
711 *q++ = *p;
712 p++;
713 }
714 *q = '\0';
715 return q - buf;
716}
bellardbb36d472005-11-05 14:22:28 +0000717
bellarda594cfb2005-11-06 16:13:29 +0000718static int usb_host_scan(void *opaque, USBScanFunc *func)
719{
720 FILE *f;
721 char line[1024];
722 char buf[1024];
723 int bus_num, addr, speed, device_count, class_id, product_id, vendor_id;
724 int ret;
725 char product_name[512];
ths3b46e622007-09-17 08:09:54 +0000726
bellarda594cfb2005-11-06 16:13:29 +0000727 f = fopen(USBDEVFS_PATH "/devices", "r");
728 if (!f) {
aliguori64838172008-08-21 19:31:10 +0000729 term_printf("husb: could not open %s\n", USBDEVFS_PATH "/devices");
bellarda594cfb2005-11-06 16:13:29 +0000730 return 0;
731 }
732 device_count = 0;
733 bus_num = addr = speed = class_id = product_id = vendor_id = 0;
734 ret = 0;
bellardbb36d472005-11-05 14:22:28 +0000735 for(;;) {
bellarda594cfb2005-11-06 16:13:29 +0000736 if (fgets(line, sizeof(line), f) == NULL)
bellardbb36d472005-11-05 14:22:28 +0000737 break;
bellarda594cfb2005-11-06 16:13:29 +0000738 if (strlen(line) > 0)
739 line[strlen(line) - 1] = '\0';
740 if (line[0] == 'T' && line[1] == ':') {
pbrook38ca0f62006-03-11 18:03:38 +0000741 if (device_count && (vendor_id || product_id)) {
742 /* New device. Add the previously discovered device. */
ths5fafdf22007-09-16 21:08:06 +0000743 ret = func(opaque, bus_num, addr, class_id, vendor_id,
bellarda594cfb2005-11-06 16:13:29 +0000744 product_id, product_name, speed);
745 if (ret)
746 goto the_end;
747 }
748 if (get_tag_value(buf, sizeof(buf), line, "Bus=", " ") < 0)
749 goto fail;
750 bus_num = atoi(buf);
751 if (get_tag_value(buf, sizeof(buf), line, "Dev#=", " ") < 0)
752 goto fail;
753 addr = atoi(buf);
754 if (get_tag_value(buf, sizeof(buf), line, "Spd=", " ") < 0)
755 goto fail;
756 if (!strcmp(buf, "480"))
757 speed = USB_SPEED_HIGH;
758 else if (!strcmp(buf, "1.5"))
759 speed = USB_SPEED_LOW;
760 else
761 speed = USB_SPEED_FULL;
762 product_name[0] = '\0';
763 class_id = 0xff;
764 device_count++;
765 product_id = 0;
766 vendor_id = 0;
767 } else if (line[0] == 'P' && line[1] == ':') {
768 if (get_tag_value(buf, sizeof(buf), line, "Vendor=", " ") < 0)
769 goto fail;
770 vendor_id = strtoul(buf, NULL, 16);
771 if (get_tag_value(buf, sizeof(buf), line, "ProdID=", " ") < 0)
772 goto fail;
773 product_id = strtoul(buf, NULL, 16);
774 } else if (line[0] == 'S' && line[1] == ':') {
775 if (get_tag_value(buf, sizeof(buf), line, "Product=", "") < 0)
776 goto fail;
777 pstrcpy(product_name, sizeof(product_name), buf);
778 } else if (line[0] == 'D' && line[1] == ':') {
779 if (get_tag_value(buf, sizeof(buf), line, "Cls=", " (") < 0)
780 goto fail;
781 class_id = strtoul(buf, NULL, 16);
782 }
783 fail: ;
784 }
pbrook38ca0f62006-03-11 18:03:38 +0000785 if (device_count && (vendor_id || product_id)) {
786 /* Add the last device. */
ths5fafdf22007-09-16 21:08:06 +0000787 ret = func(opaque, bus_num, addr, class_id, vendor_id,
bellarda594cfb2005-11-06 16:13:29 +0000788 product_id, product_name, speed);
789 }
790 the_end:
791 fclose(f);
792 return ret;
793}
794
aliguori4b096fc2008-08-21 19:28:55 +0000795struct USBAutoFilter {
796 struct USBAutoFilter *next;
797 int bus_num;
798 int addr;
799 int vendor_id;
800 int product_id;
801};
802
803static QEMUTimer *usb_auto_timer;
804static struct USBAutoFilter *usb_auto_filter;
805
806static int usb_host_auto_scan(void *opaque, int bus_num, int addr,
807 int class_id, int vendor_id, int product_id,
808 const char *product_name, int speed)
809{
810 struct USBAutoFilter *f;
811 struct USBDevice *dev;
812
813 /* Ignore hubs */
814 if (class_id == 9)
815 return 0;
816
817 for (f = usb_auto_filter; f; f = f->next) {
818 // printf("Auto match: bus_num %d addr %d vid %d pid %d\n",
819 // bus_num, addr, vendor_id, product_id);
820
821 if (f->bus_num >= 0 && f->bus_num != bus_num)
822 continue;
823
824 if (f->addr >= 0 && f->addr != addr)
825 continue;
826
827 if (f->vendor_id >= 0 && f->vendor_id != vendor_id)
828 continue;
829
830 if (f->product_id >= 0 && f->product_id != product_id)
831 continue;
832
833 /* We got a match */
834
835 /* Allredy attached ? */
836 if (hostdev_find(bus_num, addr))
837 return 0;
838
aliguori64838172008-08-21 19:31:10 +0000839 dprintf("husb: auto open: bus_num %d addr %d\n", bus_num, addr);
aliguori4b096fc2008-08-21 19:28:55 +0000840
841 dev = usb_host_device_open_addr(bus_num, addr, product_name);
842 if (dev)
843 usb_device_add_dev(dev);
844 }
845
846 return 0;
847}
848
849static void usb_host_auto_timer(void *unused)
850{
851 usb_host_scan(NULL, usb_host_auto_scan);
852 qemu_mod_timer(usb_auto_timer, qemu_get_clock(rt_clock) + 2000);
853}
854
855/*
856 * Add autoconnect filter
857 * -1 means 'any' (device, vendor, etc)
858 */
859static void usb_host_auto_add(int bus_num, int addr, int vendor_id, int product_id)
860{
861 struct USBAutoFilter *f = qemu_mallocz(sizeof(*f));
862 if (!f) {
aliguori64838172008-08-21 19:31:10 +0000863 printf("husb: failed to allocate auto filter\n");
aliguori4b096fc2008-08-21 19:28:55 +0000864 return;
865 }
866
867 f->bus_num = bus_num;
868 f->addr = addr;
869 f->vendor_id = vendor_id;
870 f->product_id = product_id;
871
872 if (!usb_auto_filter) {
873 /*
874 * First entry. Init and start the monitor.
875 * Right now we're using timer to check for new devices.
876 * If this turns out to be too expensive we can move that into a
877 * separate thread.
878 */
879 usb_auto_timer = qemu_new_timer(rt_clock, usb_host_auto_timer, NULL);
880 if (!usb_auto_timer) {
aliguori64838172008-08-21 19:31:10 +0000881 printf("husb: failed to allocate timer\n");
aliguori4b096fc2008-08-21 19:28:55 +0000882 qemu_free(f);
883 return;
884 }
885
886 /* Check for new devices every two seconds */
887 qemu_mod_timer(usb_auto_timer, qemu_get_clock(rt_clock) + 2000);
888 }
889
aliguori64838172008-08-21 19:31:10 +0000890 dprintf("husb: auto filter: bus_num %d addr %d vid %d pid %d\n",
aliguori4b096fc2008-08-21 19:28:55 +0000891 bus_num, addr, vendor_id, product_id);
892
893 f->next = usb_auto_filter;
894 usb_auto_filter = f;
895}
896
bellarda594cfb2005-11-06 16:13:29 +0000897typedef struct FindDeviceState {
898 int vendor_id;
899 int product_id;
900 int bus_num;
901 int addr;
bellard1f6e24e2006-06-26 21:00:51 +0000902 char product_name[PRODUCT_NAME_SZ];
bellarda594cfb2005-11-06 16:13:29 +0000903} FindDeviceState;
904
ths5fafdf22007-09-16 21:08:06 +0000905static int usb_host_find_device_scan(void *opaque, int bus_num, int addr,
bellarda594cfb2005-11-06 16:13:29 +0000906 int class_id,
ths5fafdf22007-09-16 21:08:06 +0000907 int vendor_id, int product_id,
bellarda594cfb2005-11-06 16:13:29 +0000908 const char *product_name, int speed)
909{
910 FindDeviceState *s = opaque;
bellard1f6e24e2006-06-26 21:00:51 +0000911 if ((vendor_id == s->vendor_id &&
912 product_id == s->product_id) ||
913 (bus_num == s->bus_num &&
914 addr == s->addr)) {
915 pstrcpy(s->product_name, PRODUCT_NAME_SZ, product_name);
bellarda594cfb2005-11-06 16:13:29 +0000916 s->bus_num = bus_num;
917 s->addr = addr;
918 return 1;
919 } else {
920 return 0;
921 }
922}
923
ths5fafdf22007-09-16 21:08:06 +0000924/* the syntax is :
925 'bus.addr' (decimal numbers) or
bellarda594cfb2005-11-06 16:13:29 +0000926 'vendor_id:product_id' (hexa numbers) */
ths5fafdf22007-09-16 21:08:06 +0000927static int usb_host_find_device(int *pbus_num, int *paddr,
bellard1f6e24e2006-06-26 21:00:51 +0000928 char *product_name, int product_name_size,
bellarda594cfb2005-11-06 16:13:29 +0000929 const char *devname)
930{
931 const char *p;
932 int ret;
933 FindDeviceState fs;
934
935 p = strchr(devname, '.');
936 if (p) {
937 *pbus_num = strtoul(devname, NULL, 0);
aliguori4b096fc2008-08-21 19:28:55 +0000938
939 if (*(p + 1) == '*') {
940 usb_host_auto_add(*pbus_num, -1, -1, -1);
941 return -1;
942 }
943
bellarda594cfb2005-11-06 16:13:29 +0000944 *paddr = strtoul(p + 1, NULL, 0);
bellard1f6e24e2006-06-26 21:00:51 +0000945 fs.bus_num = *pbus_num;
946 fs.addr = *paddr;
947 ret = usb_host_scan(&fs, usb_host_find_device_scan);
948 if (ret)
949 pstrcpy(product_name, product_name_size, fs.product_name);
bellarda594cfb2005-11-06 16:13:29 +0000950 return 0;
951 }
952 p = strchr(devname, ':');
953 if (p) {
954 fs.vendor_id = strtoul(devname, NULL, 16);
aliguori4b096fc2008-08-21 19:28:55 +0000955
956 if (*(p + 1) == '*') {
957 usb_host_auto_add(-1, -1, fs.vendor_id, -1);
958 return -1;
959 }
960
bellarda594cfb2005-11-06 16:13:29 +0000961 fs.product_id = strtoul(p + 1, NULL, 16);
962 ret = usb_host_scan(&fs, usb_host_find_device_scan);
963 if (ret) {
964 *pbus_num = fs.bus_num;
965 *paddr = fs.addr;
bellard1f6e24e2006-06-26 21:00:51 +0000966 pstrcpy(product_name, product_name_size, fs.product_name);
bellarda594cfb2005-11-06 16:13:29 +0000967 return 0;
bellardbb36d472005-11-05 14:22:28 +0000968 }
969 }
bellarda594cfb2005-11-06 16:13:29 +0000970 return -1;
bellardbb36d472005-11-05 14:22:28 +0000971}
972
bellarda594cfb2005-11-06 16:13:29 +0000973/**********************/
974/* USB host device info */
bellardbb36d472005-11-05 14:22:28 +0000975
bellarda594cfb2005-11-06 16:13:29 +0000976struct usb_class_info {
977 int class;
978 const char *class_name;
979};
980
981static const struct usb_class_info usb_class_info[] = {
982 { USB_CLASS_AUDIO, "Audio"},
983 { USB_CLASS_COMM, "Communication"},
984 { USB_CLASS_HID, "HID"},
985 { USB_CLASS_HUB, "Hub" },
986 { USB_CLASS_PHYSICAL, "Physical" },
987 { USB_CLASS_PRINTER, "Printer" },
988 { USB_CLASS_MASS_STORAGE, "Storage" },
989 { USB_CLASS_CDC_DATA, "Data" },
990 { USB_CLASS_APP_SPEC, "Application Specific" },
991 { USB_CLASS_VENDOR_SPEC, "Vendor Specific" },
992 { USB_CLASS_STILL_IMAGE, "Still Image" },
balrogb9dc0332007-10-04 22:47:34 +0000993 { USB_CLASS_CSCID, "Smart Card" },
bellarda594cfb2005-11-06 16:13:29 +0000994 { USB_CLASS_CONTENT_SEC, "Content Security" },
995 { -1, NULL }
996};
997
998static const char *usb_class_str(uint8_t class)
999{
1000 const struct usb_class_info *p;
1001 for(p = usb_class_info; p->class != -1; p++) {
1002 if (p->class == class)
bellardbb36d472005-11-05 14:22:28 +00001003 break;
bellardbb36d472005-11-05 14:22:28 +00001004 }
bellarda594cfb2005-11-06 16:13:29 +00001005 return p->class_name;
bellardbb36d472005-11-05 14:22:28 +00001006}
1007
pbrook9596ebb2007-11-18 01:44:38 +00001008static void usb_info_device(int bus_num, int addr, int class_id,
1009 int vendor_id, int product_id,
1010 const char *product_name,
1011 int speed)
bellardbb36d472005-11-05 14:22:28 +00001012{
bellarda594cfb2005-11-06 16:13:29 +00001013 const char *class_str, *speed_str;
1014
1015 switch(speed) {
ths5fafdf22007-09-16 21:08:06 +00001016 case USB_SPEED_LOW:
1017 speed_str = "1.5";
bellarda594cfb2005-11-06 16:13:29 +00001018 break;
ths5fafdf22007-09-16 21:08:06 +00001019 case USB_SPEED_FULL:
1020 speed_str = "12";
bellarda594cfb2005-11-06 16:13:29 +00001021 break;
ths5fafdf22007-09-16 21:08:06 +00001022 case USB_SPEED_HIGH:
1023 speed_str = "480";
bellarda594cfb2005-11-06 16:13:29 +00001024 break;
1025 default:
ths5fafdf22007-09-16 21:08:06 +00001026 speed_str = "?";
bellarda594cfb2005-11-06 16:13:29 +00001027 break;
bellardbb36d472005-11-05 14:22:28 +00001028 }
bellarda594cfb2005-11-06 16:13:29 +00001029
ths5fafdf22007-09-16 21:08:06 +00001030 term_printf(" Device %d.%d, speed %s Mb/s\n",
bellarda594cfb2005-11-06 16:13:29 +00001031 bus_num, addr, speed_str);
1032 class_str = usb_class_str(class_id);
ths5fafdf22007-09-16 21:08:06 +00001033 if (class_str)
bellarda594cfb2005-11-06 16:13:29 +00001034 term_printf(" %s:", class_str);
1035 else
1036 term_printf(" Class %02x:", class_id);
1037 term_printf(" USB device %04x:%04x", vendor_id, product_id);
1038 if (product_name[0] != '\0')
1039 term_printf(", %s", product_name);
1040 term_printf("\n");
1041}
1042
ths5fafdf22007-09-16 21:08:06 +00001043static int usb_host_info_device(void *opaque, int bus_num, int addr,
bellarda594cfb2005-11-06 16:13:29 +00001044 int class_id,
ths5fafdf22007-09-16 21:08:06 +00001045 int vendor_id, int product_id,
bellarda594cfb2005-11-06 16:13:29 +00001046 const char *product_name,
1047 int speed)
1048{
1049 usb_info_device(bus_num, addr, class_id, vendor_id, product_id,
1050 product_name, speed);
1051 return 0;
1052}
1053
1054void usb_host_info(void)
1055{
1056 usb_host_scan(NULL, usb_host_info_device);
bellardbb36d472005-11-05 14:22:28 +00001057}
1058
1059#else
1060
bellarda594cfb2005-11-06 16:13:29 +00001061void usb_host_info(void)
1062{
1063 term_printf("USB host devices not supported\n");
1064}
1065
bellardbb36d472005-11-05 14:22:28 +00001066/* XXX: modify configure to compile the right host driver */
bellarda594cfb2005-11-06 16:13:29 +00001067USBDevice *usb_host_device_open(const char *devname)
bellardbb36d472005-11-05 14:22:28 +00001068{
1069 return NULL;
1070}
1071
1072#endif