bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Linux host USB redirector |
| 3 | * |
| 4 | * Copyright (c) 2005 Fabrice Bellard |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 5 | * |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 6 | * Copyright (c) 2008 Max Krasnyansky |
| 7 | * Support for host device auto connect & disconnect |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 8 | * Major rewrite to support fully async operation |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 9 | * |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 10 | * Copyright 2008 TJ <linux@tjworld.net> |
| 11 | * Added flexible support for /dev/bus/usb /sys/bus/usb/devices in addition |
| 12 | * to the legacy /proc/bus/usb USB device discovery and handling |
| 13 | * |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 14 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 15 | * of this software and associated documentation files (the "Software"), to deal |
| 16 | * in the Software without restriction, including without limitation the rights |
| 17 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 18 | * copies of the Software, and to permit persons to whom the Software is |
| 19 | * furnished to do so, subject to the following conditions: |
| 20 | * |
| 21 | * The above copyright notice and this permission notice shall be included in |
| 22 | * all copies or substantial portions of the Software. |
| 23 | * |
| 24 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 25 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 26 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 27 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 28 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 29 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 30 | * THE SOFTWARE. |
| 31 | */ |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 32 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 33 | #include "qemu-common.h" |
aliguori | 1f3870a | 2008-08-21 19:27:48 +0000 | [diff] [blame] | 34 | #include "qemu-timer.h" |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 35 | #include "monitor.h" |
Shahar Havivi | b373a63 | 2010-06-16 15:16:11 +0300 | [diff] [blame] | 36 | #include "sysemu.h" |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 37 | #include "trace.h" |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 38 | |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 39 | #include <dirent.h> |
| 40 | #include <sys/ioctl.h> |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 41 | |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 42 | #include <linux/usbdevice_fs.h> |
| 43 | #include <linux/version.h> |
| 44 | #include "hw/usb.h" |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 45 | |
blueswir1 | d9cf157 | 2008-09-15 14:57:11 +0000 | [diff] [blame] | 46 | /* We redefine it to avoid version problems */ |
| 47 | struct usb_ctrltransfer { |
| 48 | uint8_t bRequestType; |
| 49 | uint8_t bRequest; |
| 50 | uint16_t wValue; |
| 51 | uint16_t wIndex; |
| 52 | uint16_t wLength; |
| 53 | uint32_t timeout; |
| 54 | void *data; |
| 55 | }; |
| 56 | |
Gerd Hoffmann | ba9acab | 2011-08-17 23:35:45 +0200 | [diff] [blame] | 57 | typedef int USBScanFunc(void *opaque, int bus_num, int addr, const char *port, |
Hans de Goede | 0f5160d | 2010-11-10 10:06:23 +0100 | [diff] [blame] | 58 | int class_id, int vendor_id, int product_id, |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 59 | const char *product_name, int speed); |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 60 | |
Markus Armbruster | 0745eb1 | 2009-11-27 13:05:53 +0100 | [diff] [blame] | 61 | //#define DEBUG |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 62 | |
| 63 | #ifdef DEBUG |
malc | d0f2c4c | 2010-02-07 02:03:50 +0300 | [diff] [blame] | 64 | #define DPRINTF printf |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 65 | #else |
malc | d0f2c4c | 2010-02-07 02:03:50 +0300 | [diff] [blame] | 66 | #define DPRINTF(...) |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 67 | #endif |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 68 | |
blueswir1 | 5be8e1f | 2008-10-25 11:47:20 +0000 | [diff] [blame] | 69 | #define USBDBG_DEVOPENED "husb: opened %s/devices\n" |
| 70 | |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 71 | #define USBPROCBUS_PATH "/proc/bus/usb" |
bellard | 1f6e24e | 2006-06-26 21:00:51 +0000 | [diff] [blame] | 72 | #define PRODUCT_NAME_SZ 32 |
Hans de Goede | 3a4854b | 2010-11-26 15:02:16 +0100 | [diff] [blame] | 73 | #define MAX_ENDPOINTS 15 |
Gerd Hoffmann | 5557d82 | 2011-05-10 11:43:57 +0200 | [diff] [blame] | 74 | #define MAX_PORTLEN 16 |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 75 | #define USBDEVBUS_PATH "/dev/bus/usb" |
| 76 | #define USBSYSBUS_PATH "/sys/bus/usb" |
| 77 | |
| 78 | static char *usb_host_device_path; |
| 79 | |
| 80 | #define USB_FS_NONE 0 |
| 81 | #define USB_FS_PROC 1 |
| 82 | #define USB_FS_DEV 2 |
| 83 | #define USB_FS_SYS 3 |
| 84 | |
| 85 | static int usb_fs_type; |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 86 | |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 87 | /* endpoint association data */ |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 88 | #define ISO_FRAME_DESC_PER_URB 32 |
Hans de Goede | a0b5fec | 2010-11-26 14:56:17 +0100 | [diff] [blame] | 89 | #define INVALID_EP_TYPE 255 |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 90 | |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 91 | /* devio.c limits single requests to 16k */ |
| 92 | #define MAX_USBFS_BUFFER_SIZE 16384 |
| 93 | |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 94 | typedef struct AsyncURB AsyncURB; |
| 95 | |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 96 | struct endp_data { |
| 97 | uint8_t type; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 98 | uint8_t halted; |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 99 | uint8_t iso_started; |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 100 | AsyncURB *iso_urb; |
| 101 | int iso_urb_idx; |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 102 | int iso_buffer_used; |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 103 | int max_packet_size; |
Gerd Hoffmann | 8288726 | 2011-06-10 14:00:24 +0200 | [diff] [blame] | 104 | int inflight; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 105 | }; |
| 106 | |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 107 | struct USBAutoFilter { |
| 108 | uint32_t bus_num; |
| 109 | uint32_t addr; |
Gerd Hoffmann | 9056a29 | 2011-05-10 12:07:42 +0200 | [diff] [blame] | 110 | char *port; |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 111 | uint32_t vendor_id; |
| 112 | uint32_t product_id; |
| 113 | }; |
| 114 | |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 115 | typedef struct USBHostDevice { |
| 116 | USBDevice dev; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 117 | int fd; |
Gerd Hoffmann | 9516bb4 | 2011-08-24 13:34:17 +0200 | [diff] [blame] | 118 | int hub_fd; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 119 | |
Hans de Goede | f8ddbfb | 2011-05-31 11:35:26 +0200 | [diff] [blame] | 120 | uint8_t descr[8192]; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 121 | int descr_len; |
| 122 | int configuration; |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 123 | int ninterfaces; |
aliguori | 24772c1 | 2008-08-21 19:31:52 +0000 | [diff] [blame] | 124 | int closing; |
Gerd Hoffmann | b81bcd8 | 2011-06-10 14:03:56 +0200 | [diff] [blame] | 125 | uint32_t iso_urb_count; |
Shahar Havivi | b373a63 | 2010-06-16 15:16:11 +0300 | [diff] [blame] | 126 | Notifier exit; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 127 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 128 | struct endp_data ep_in[MAX_ENDPOINTS]; |
| 129 | struct endp_data ep_out[MAX_ENDPOINTS]; |
Gerd Hoffmann | 7a8fc83 | 2011-05-16 09:13:05 +0200 | [diff] [blame] | 130 | QLIST_HEAD(, AsyncURB) aurbs; |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 131 | |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 132 | /* Host side address */ |
| 133 | int bus_num; |
| 134 | int addr; |
Gerd Hoffmann | 5557d82 | 2011-05-10 11:43:57 +0200 | [diff] [blame] | 135 | char port[MAX_PORTLEN]; |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 136 | struct USBAutoFilter match; |
Gerd Hoffmann | 3ee886c | 2011-08-24 13:45:06 +0200 | [diff] [blame] | 137 | int seen, errcount; |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 138 | |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 139 | QTAILQ_ENTRY(USBHostDevice) next; |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 140 | } USBHostDevice; |
| 141 | |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 142 | static QTAILQ_HEAD(, USBHostDevice) hostdevs = QTAILQ_HEAD_INITIALIZER(hostdevs); |
| 143 | |
| 144 | static int usb_host_close(USBHostDevice *dev); |
| 145 | static int parse_filter(const char *spec, struct USBAutoFilter *f); |
| 146 | static void usb_host_auto_check(void *unused); |
Hans de Goede | 2cc59d8 | 2010-11-10 10:06:25 +0100 | [diff] [blame] | 147 | static int usb_host_read_file(char *line, size_t line_size, |
| 148 | const char *device_file, const char *device_name); |
Gerd Hoffmann | 9b87e19 | 2011-08-24 10:55:40 +0200 | [diff] [blame] | 149 | static int usb_linux_update_endp_table(USBHostDevice *s); |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 150 | |
Gerd Hoffmann | c7662da | 2011-11-16 12:37:17 +0100 | [diff] [blame] | 151 | static int usb_host_do_reset(USBHostDevice *dev) |
| 152 | { |
| 153 | struct timeval s, e; |
| 154 | uint32_t usecs; |
| 155 | int ret; |
| 156 | |
| 157 | gettimeofday(&s, NULL); |
| 158 | ret = ioctl(dev->fd, USBDEVFS_RESET); |
| 159 | gettimeofday(&e, NULL); |
| 160 | usecs = (e.tv_sec - s.tv_sec) * 1000000; |
| 161 | usecs += e.tv_usec - s.tv_usec; |
| 162 | if (usecs > 1000000) { |
| 163 | /* more than a second, something is fishy, broken usb device? */ |
| 164 | fprintf(stderr, "husb: device %d:%d reset took %d.%06d seconds\n", |
| 165 | dev->bus_num, dev->addr, usecs / 1000000, usecs % 1000000); |
| 166 | } |
| 167 | return ret; |
| 168 | } |
| 169 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 170 | static struct endp_data *get_endp(USBHostDevice *s, int pid, int ep) |
Gerd Hoffmann | ca3a36c | 2011-06-10 13:34:10 +0200 | [diff] [blame] | 171 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 172 | struct endp_data *eps = pid == USB_TOKEN_IN ? s->ep_in : s->ep_out; |
| 173 | assert(pid == USB_TOKEN_IN || pid == USB_TOKEN_OUT); |
| 174 | assert(ep > 0 && ep <= MAX_ENDPOINTS); |
| 175 | return eps + ep - 1; |
Gerd Hoffmann | ca3a36c | 2011-06-10 13:34:10 +0200 | [diff] [blame] | 176 | } |
| 177 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 178 | static int is_isoc(USBHostDevice *s, int pid, int ep) |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 179 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 180 | return get_endp(s, pid, ep)->type == USBDEVFS_URB_TYPE_ISO; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 181 | } |
| 182 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 183 | static int is_valid(USBHostDevice *s, int pid, int ep) |
Hans de Goede | a0b5fec | 2010-11-26 14:56:17 +0100 | [diff] [blame] | 184 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 185 | return get_endp(s, pid, ep)->type != INVALID_EP_TYPE; |
Hans de Goede | a0b5fec | 2010-11-26 14:56:17 +0100 | [diff] [blame] | 186 | } |
| 187 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 188 | static int is_halted(USBHostDevice *s, int pid, int ep) |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 189 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 190 | return get_endp(s, pid, ep)->halted; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 193 | static void clear_halt(USBHostDevice *s, int pid, int ep) |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 194 | { |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 195 | trace_usb_host_ep_clear_halt(s->bus_num, s->addr, ep); |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 196 | get_endp(s, pid, ep)->halted = 0; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 197 | } |
| 198 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 199 | static void set_halt(USBHostDevice *s, int pid, int ep) |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 200 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 201 | if (ep != 0) { |
| 202 | trace_usb_host_ep_set_halt(s->bus_num, s->addr, ep); |
| 203 | get_endp(s, pid, ep)->halted = 1; |
| 204 | } |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 205 | } |
| 206 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 207 | static int is_iso_started(USBHostDevice *s, int pid, int ep) |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 208 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 209 | return get_endp(s, pid, ep)->iso_started; |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 210 | } |
| 211 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 212 | static void clear_iso_started(USBHostDevice *s, int pid, int ep) |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 213 | { |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 214 | trace_usb_host_ep_stop_iso(s->bus_num, s->addr, ep); |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 215 | get_endp(s, pid, ep)->iso_started = 0; |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 216 | } |
| 217 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 218 | static void set_iso_started(USBHostDevice *s, int pid, int ep) |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 219 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 220 | struct endp_data *e = get_endp(s, pid, ep); |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 221 | |
| 222 | trace_usb_host_ep_start_iso(s->bus_num, s->addr, ep); |
Gerd Hoffmann | 8288726 | 2011-06-10 14:00:24 +0200 | [diff] [blame] | 223 | if (!e->iso_started) { |
| 224 | e->iso_started = 1; |
| 225 | e->inflight = 0; |
| 226 | } |
| 227 | } |
| 228 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 229 | static int change_iso_inflight(USBHostDevice *s, int pid, int ep, int value) |
Gerd Hoffmann | 8288726 | 2011-06-10 14:00:24 +0200 | [diff] [blame] | 230 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 231 | struct endp_data *e = get_endp(s, pid, ep); |
Gerd Hoffmann | 8288726 | 2011-06-10 14:00:24 +0200 | [diff] [blame] | 232 | |
| 233 | e->inflight += value; |
| 234 | return e->inflight; |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 235 | } |
| 236 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 237 | static void set_iso_urb(USBHostDevice *s, int pid, int ep, AsyncURB *iso_urb) |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 238 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 239 | get_endp(s, pid, ep)->iso_urb = iso_urb; |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 240 | } |
| 241 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 242 | static AsyncURB *get_iso_urb(USBHostDevice *s, int pid, int ep) |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 243 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 244 | return get_endp(s, pid, ep)->iso_urb; |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 245 | } |
| 246 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 247 | static void set_iso_urb_idx(USBHostDevice *s, int pid, int ep, int i) |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 248 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 249 | get_endp(s, pid, ep)->iso_urb_idx = i; |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 250 | } |
| 251 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 252 | static int get_iso_urb_idx(USBHostDevice *s, int pid, int ep) |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 253 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 254 | return get_endp(s, pid, ep)->iso_urb_idx; |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 255 | } |
| 256 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 257 | static void set_iso_buffer_used(USBHostDevice *s, int pid, int ep, int i) |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 258 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 259 | get_endp(s, pid, ep)->iso_buffer_used = i; |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 260 | } |
| 261 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 262 | static int get_iso_buffer_used(USBHostDevice *s, int pid, int ep) |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 263 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 264 | return get_endp(s, pid, ep)->iso_buffer_used; |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 265 | } |
| 266 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 267 | static void set_max_packet_size(USBHostDevice *s, int pid, int ep, |
| 268 | uint8_t *descriptor) |
Gerd Hoffmann | 6dfcdcc | 2011-05-16 11:30:57 +0200 | [diff] [blame] | 269 | { |
| 270 | int raw = descriptor[4] + (descriptor[5] << 8); |
| 271 | int size, microframes; |
| 272 | |
| 273 | size = raw & 0x7ff; |
| 274 | switch ((raw >> 11) & 3) { |
| 275 | case 1: microframes = 2; break; |
| 276 | case 2: microframes = 3; break; |
| 277 | default: microframes = 1; break; |
| 278 | } |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 279 | get_endp(s, pid, ep)->max_packet_size = size * microframes; |
Gerd Hoffmann | 6dfcdcc | 2011-05-16 11:30:57 +0200 | [diff] [blame] | 280 | } |
| 281 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 282 | static int get_max_packet_size(USBHostDevice *s, int pid, int ep) |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 283 | { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 284 | return get_endp(s, pid, ep)->max_packet_size; |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 285 | } |
| 286 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 287 | /* |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 288 | * Async URB state. |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 289 | * We always allocate iso packet descriptors even for bulk transfers |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 290 | * to simplify allocation and casts. |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 291 | */ |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 292 | struct AsyncURB |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 293 | { |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 294 | struct usbdevfs_urb urb; |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 295 | struct usbdevfs_iso_packet_desc isocpd[ISO_FRAME_DESC_PER_URB]; |
Gerd Hoffmann | 7a8fc83 | 2011-05-16 09:13:05 +0200 | [diff] [blame] | 296 | USBHostDevice *hdev; |
| 297 | QLIST_ENTRY(AsyncURB) next; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 298 | |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 299 | /* For regular async urbs */ |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 300 | USBPacket *packet; |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 301 | int more; /* large transfer, more urbs follow */ |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 302 | |
| 303 | /* For buffered iso handling */ |
| 304 | int iso_frame_idx; /* -1 means in flight */ |
| 305 | }; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 306 | |
Gerd Hoffmann | 7a8fc83 | 2011-05-16 09:13:05 +0200 | [diff] [blame] | 307 | static AsyncURB *async_alloc(USBHostDevice *s) |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 308 | { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 309 | AsyncURB *aurb = g_malloc0(sizeof(AsyncURB)); |
Gerd Hoffmann | 7a8fc83 | 2011-05-16 09:13:05 +0200 | [diff] [blame] | 310 | aurb->hdev = s; |
| 311 | QLIST_INSERT_HEAD(&s->aurbs, aurb, next); |
| 312 | return aurb; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 313 | } |
| 314 | |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 315 | static void async_free(AsyncURB *aurb) |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 316 | { |
Gerd Hoffmann | 7a8fc83 | 2011-05-16 09:13:05 +0200 | [diff] [blame] | 317 | QLIST_REMOVE(aurb, next); |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 318 | g_free(aurb); |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 319 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 320 | |
Gerd Hoffmann | 41c01ee | 2011-05-24 16:12:31 +0200 | [diff] [blame] | 321 | static void do_disconnect(USBHostDevice *s) |
| 322 | { |
Gerd Hoffmann | 41c01ee | 2011-05-24 16:12:31 +0200 | [diff] [blame] | 323 | usb_host_close(s); |
| 324 | usb_host_auto_check(NULL); |
| 325 | } |
| 326 | |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 327 | static void async_complete(void *opaque) |
| 328 | { |
| 329 | USBHostDevice *s = opaque; |
| 330 | AsyncURB *aurb; |
Gerd Hoffmann | 8288726 | 2011-06-10 14:00:24 +0200 | [diff] [blame] | 331 | int urbs = 0; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 332 | |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 333 | while (1) { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 334 | USBPacket *p; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 335 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 336 | int r = ioctl(s->fd, USBDEVFS_REAPURBNDELAY, &aurb); |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 337 | if (r < 0) { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 338 | if (errno == EAGAIN) { |
Gerd Hoffmann | 8288726 | 2011-06-10 14:00:24 +0200 | [diff] [blame] | 339 | if (urbs > 2) { |
| 340 | fprintf(stderr, "husb: %d iso urbs finished at once\n", urbs); |
| 341 | } |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 342 | return; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 343 | } |
Gerd Hoffmann | 40197c3 | 2011-08-22 14:18:21 +0200 | [diff] [blame] | 344 | if (errno == ENODEV) { |
| 345 | if (!s->closing) { |
| 346 | trace_usb_host_disconnect(s->bus_num, s->addr); |
| 347 | do_disconnect(s); |
| 348 | } |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 349 | return; |
| 350 | } |
| 351 | |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 352 | perror("USBDEVFS_REAPURBNDELAY"); |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 353 | return; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 354 | } |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 355 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 356 | DPRINTF("husb: async completed. aurb %p status %d alen %d\n", |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 357 | aurb, aurb->urb.status, aurb->urb.actual_length); |
| 358 | |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 359 | /* If this is a buffered iso urb mark it as complete and don't do |
| 360 | anything else (it is handled further in usb_host_handle_iso_data) */ |
| 361 | if (aurb->iso_frame_idx == -1) { |
Gerd Hoffmann | 8288726 | 2011-06-10 14:00:24 +0200 | [diff] [blame] | 362 | int inflight; |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 363 | int pid = (aurb->urb.endpoint & USB_DIR_IN) ? |
| 364 | USB_TOKEN_IN : USB_TOKEN_OUT; |
| 365 | int ep = aurb->urb.endpoint & 0xf; |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 366 | if (aurb->urb.status == -EPIPE) { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 367 | set_halt(s, pid, ep); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 368 | } |
| 369 | aurb->iso_frame_idx = 0; |
Gerd Hoffmann | 8288726 | 2011-06-10 14:00:24 +0200 | [diff] [blame] | 370 | urbs++; |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 371 | inflight = change_iso_inflight(s, pid, ep, -1); |
| 372 | if (inflight == 0 && is_iso_started(s, pid, ep)) { |
Gerd Hoffmann | 8288726 | 2011-06-10 14:00:24 +0200 | [diff] [blame] | 373 | fprintf(stderr, "husb: out of buffers for iso stream\n"); |
| 374 | } |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 375 | continue; |
| 376 | } |
| 377 | |
| 378 | p = aurb->packet; |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 379 | trace_usb_host_urb_complete(s->bus_num, s->addr, aurb, aurb->urb.status, |
| 380 | aurb->urb.actual_length, aurb->more); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 381 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 382 | if (p) { |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 383 | switch (aurb->urb.status) { |
| 384 | case 0: |
Gerd Hoffmann | 4f4321c | 2011-07-12 15:22:25 +0200 | [diff] [blame] | 385 | p->result += aurb->urb.actual_length; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 386 | break; |
| 387 | |
| 388 | case -EPIPE: |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 389 | set_halt(s, p->pid, p->devep); |
Gerd Hoffmann | 4f4321c | 2011-07-12 15:22:25 +0200 | [diff] [blame] | 390 | p->result = USB_RET_STALL; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 391 | break; |
Paul Bolle | dcc7e25 | 2009-10-13 13:40:08 +0200 | [diff] [blame] | 392 | |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 393 | default: |
Gerd Hoffmann | 4f4321c | 2011-07-12 15:22:25 +0200 | [diff] [blame] | 394 | p->result = USB_RET_NAK; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 395 | break; |
| 396 | } |
| 397 | |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 398 | if (aurb->urb.type == USBDEVFS_URB_TYPE_CONTROL) { |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 399 | trace_usb_host_req_complete(s->bus_num, s->addr, p->result); |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 400 | usb_generic_async_ctrl_complete(&s->dev, p); |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 401 | } else if (!aurb->more) { |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 402 | trace_usb_host_req_complete(s->bus_num, s->addr, p->result); |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 403 | usb_packet_complete(&s->dev, p); |
| 404 | } |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 405 | } |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 406 | |
| 407 | async_free(aurb); |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 408 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 409 | } |
| 410 | |
Gerd Hoffmann | eb5e680 | 2011-05-16 10:34:53 +0200 | [diff] [blame] | 411 | static void usb_host_async_cancel(USBDevice *dev, USBPacket *p) |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 412 | { |
Gerd Hoffmann | eb5e680 | 2011-05-16 10:34:53 +0200 | [diff] [blame] | 413 | USBHostDevice *s = DO_UPCAST(USBHostDevice, dev, dev); |
Gerd Hoffmann | 227ebeb | 2011-05-16 09:20:06 +0200 | [diff] [blame] | 414 | AsyncURB *aurb; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 415 | |
Gerd Hoffmann | 227ebeb | 2011-05-16 09:20:06 +0200 | [diff] [blame] | 416 | QLIST_FOREACH(aurb, &s->aurbs, next) { |
| 417 | if (p != aurb->packet) { |
| 418 | continue; |
| 419 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 420 | |
Gerd Hoffmann | 227ebeb | 2011-05-16 09:20:06 +0200 | [diff] [blame] | 421 | DPRINTF("husb: async cancel: packet %p, aurb %p\n", p, aurb); |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 422 | |
Gerd Hoffmann | 227ebeb | 2011-05-16 09:20:06 +0200 | [diff] [blame] | 423 | /* Mark it as dead (see async_complete above) */ |
| 424 | aurb->packet = NULL; |
| 425 | |
| 426 | int r = ioctl(s->fd, USBDEVFS_DISCARDURB, aurb); |
| 427 | if (r < 0) { |
| 428 | DPRINTF("husb: async. discard urb failed errno %d\n", errno); |
| 429 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 430 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 431 | } |
| 432 | |
Gerd Hoffmann | e627472 | 2011-09-13 11:37:47 +0200 | [diff] [blame] | 433 | static int usb_host_claim_port(USBHostDevice *s) |
| 434 | { |
| 435 | #ifdef USBDEVFS_CLAIM_PORT |
| 436 | char *h, hub_name[64], line[1024]; |
| 437 | int hub_addr, portnr, ret; |
| 438 | |
| 439 | snprintf(hub_name, sizeof(hub_name), "%d-%s", |
| 440 | s->match.bus_num, s->match.port); |
| 441 | |
| 442 | /* try strip off last ".$portnr" to get hub */ |
| 443 | h = strrchr(hub_name, '.'); |
| 444 | if (h != NULL) { |
| 445 | portnr = atoi(h+1); |
| 446 | *h = '\0'; |
| 447 | } else { |
| 448 | /* no dot in there -> it is the root hub */ |
| 449 | snprintf(hub_name, sizeof(hub_name), "usb%d", |
| 450 | s->match.bus_num); |
| 451 | portnr = atoi(s->match.port); |
| 452 | } |
| 453 | |
| 454 | if (!usb_host_read_file(line, sizeof(line), "devnum", |
| 455 | hub_name)) { |
| 456 | return -1; |
| 457 | } |
| 458 | if (sscanf(line, "%d", &hub_addr) != 1) { |
| 459 | return -1; |
| 460 | } |
| 461 | |
| 462 | if (!usb_host_device_path) { |
| 463 | return -1; |
| 464 | } |
| 465 | snprintf(line, sizeof(line), "%s/%03d/%03d", |
| 466 | usb_host_device_path, s->match.bus_num, hub_addr); |
| 467 | s->hub_fd = open(line, O_RDWR | O_NONBLOCK); |
| 468 | if (s->hub_fd < 0) { |
| 469 | return -1; |
| 470 | } |
| 471 | |
| 472 | ret = ioctl(s->hub_fd, USBDEVFS_CLAIM_PORT, &portnr); |
| 473 | if (ret < 0) { |
| 474 | close(s->hub_fd); |
| 475 | s->hub_fd = -1; |
| 476 | return -1; |
| 477 | } |
| 478 | |
| 479 | trace_usb_host_claim_port(s->match.bus_num, hub_addr, portnr); |
| 480 | return 0; |
| 481 | #else |
| 482 | return -1; |
| 483 | #endif |
| 484 | } |
| 485 | |
| 486 | static int usb_host_disconnect_ifaces(USBHostDevice *dev, int nb_interfaces) |
| 487 | { |
| 488 | /* earlier Linux 2.4 do not support that */ |
| 489 | #ifdef USBDEVFS_DISCONNECT |
| 490 | struct usbdevfs_ioctl ctrl; |
| 491 | int ret, interface; |
| 492 | |
| 493 | for (interface = 0; interface < nb_interfaces; interface++) { |
| 494 | ctrl.ioctl_code = USBDEVFS_DISCONNECT; |
| 495 | ctrl.ifno = interface; |
| 496 | ctrl.data = 0; |
| 497 | ret = ioctl(dev->fd, USBDEVFS_IOCTL, &ctrl); |
| 498 | if (ret < 0 && errno != ENODATA) { |
| 499 | perror("USBDEVFS_DISCONNECT"); |
| 500 | return -1; |
| 501 | } |
| 502 | } |
| 503 | #endif |
| 504 | return 0; |
| 505 | } |
| 506 | |
Gerd Hoffmann | 0fcc3bf | 2011-09-13 11:55:15 +0200 | [diff] [blame] | 507 | static int usb_linux_get_num_interfaces(USBHostDevice *s) |
| 508 | { |
| 509 | char device_name[64], line[1024]; |
| 510 | int num_interfaces = 0; |
| 511 | |
| 512 | if (usb_fs_type != USB_FS_SYS) { |
| 513 | return -1; |
| 514 | } |
| 515 | |
| 516 | sprintf(device_name, "%d-%s", s->bus_num, s->port); |
| 517 | if (!usb_host_read_file(line, sizeof(line), "bNumInterfaces", |
| 518 | device_name)) { |
| 519 | return -1; |
| 520 | } |
| 521 | if (sscanf(line, "%d", &num_interfaces) != 1) { |
| 522 | return -1; |
| 523 | } |
| 524 | return num_interfaces; |
| 525 | } |
| 526 | |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 527 | static int usb_host_claim_interfaces(USBHostDevice *dev, int configuration) |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 528 | { |
Gerd Hoffmann | 41c01ee | 2011-05-24 16:12:31 +0200 | [diff] [blame] | 529 | const char *op = NULL; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 530 | int dev_descr_len, config_descr_len; |
Blue Swirl | d4c4e6f | 2010-04-25 18:23:04 +0000 | [diff] [blame] | 531 | int interface, nb_interfaces; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 532 | int ret, i; |
| 533 | |
Gerd Hoffmann | eb7700b | 2011-08-24 14:45:07 +0200 | [diff] [blame] | 534 | if (configuration == 0) { /* address state - ignore */ |
| 535 | dev->ninterfaces = 0; |
| 536 | dev->configuration = 0; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 537 | return 1; |
Gerd Hoffmann | eb7700b | 2011-08-24 14:45:07 +0200 | [diff] [blame] | 538 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 539 | |
malc | d0f2c4c | 2010-02-07 02:03:50 +0300 | [diff] [blame] | 540 | DPRINTF("husb: claiming interfaces. config %d\n", configuration); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 541 | |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 542 | i = 0; |
| 543 | dev_descr_len = dev->descr[0]; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 544 | if (dev_descr_len > dev->descr_len) { |
Hans de Goede | 61c1117 | 2011-05-31 11:35:20 +0200 | [diff] [blame] | 545 | fprintf(stderr, "husb: update iface failed. descr too short\n"); |
| 546 | return 0; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 547 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 548 | |
| 549 | i += dev_descr_len; |
| 550 | while (i < dev->descr_len) { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 551 | DPRINTF("husb: i is %d, descr_len is %d, dl %d, dt %d\n", |
| 552 | i, dev->descr_len, |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 553 | dev->descr[i], dev->descr[i+1]); |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 554 | |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 555 | if (dev->descr[i+1] != USB_DT_CONFIG) { |
| 556 | i += dev->descr[i]; |
| 557 | continue; |
| 558 | } |
| 559 | config_descr_len = dev->descr[i]; |
| 560 | |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 561 | DPRINTF("husb: config #%d need %d\n", dev->descr[i + 5], configuration); |
aliguori | 1f3870a | 2008-08-21 19:27:48 +0000 | [diff] [blame] | 562 | |
Gerd Hoffmann | eb7700b | 2011-08-24 14:45:07 +0200 | [diff] [blame] | 563 | if (configuration == dev->descr[i + 5]) { |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 564 | configuration = dev->descr[i + 5]; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 565 | break; |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 566 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 567 | |
| 568 | i += config_descr_len; |
| 569 | } |
| 570 | |
| 571 | if (i >= dev->descr_len) { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 572 | fprintf(stderr, |
| 573 | "husb: update iface failed. no matching configuration\n"); |
Hans de Goede | 61c1117 | 2011-05-31 11:35:20 +0200 | [diff] [blame] | 574 | return 0; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 575 | } |
| 576 | nb_interfaces = dev->descr[i + 4]; |
| 577 | |
Gerd Hoffmann | e627472 | 2011-09-13 11:37:47 +0200 | [diff] [blame] | 578 | if (usb_host_disconnect_ifaces(dev, nb_interfaces) < 0) { |
| 579 | goto fail; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 580 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 581 | |
| 582 | /* XXX: only grab if all interfaces are free */ |
| 583 | for (interface = 0; interface < nb_interfaces; interface++) { |
Gerd Hoffmann | 41c01ee | 2011-05-24 16:12:31 +0200 | [diff] [blame] | 584 | op = "USBDEVFS_CLAIMINTERFACE"; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 585 | ret = ioctl(dev->fd, USBDEVFS_CLAIMINTERFACE, &interface); |
| 586 | if (ret < 0) { |
Gerd Hoffmann | 41c01ee | 2011-05-24 16:12:31 +0200 | [diff] [blame] | 587 | goto fail; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 588 | } |
| 589 | } |
| 590 | |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 591 | trace_usb_host_claim_interfaces(dev->bus_num, dev->addr, |
| 592 | nb_interfaces, configuration); |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 593 | |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 594 | dev->ninterfaces = nb_interfaces; |
| 595 | dev->configuration = configuration; |
| 596 | return 1; |
Gerd Hoffmann | 41c01ee | 2011-05-24 16:12:31 +0200 | [diff] [blame] | 597 | |
| 598 | fail: |
| 599 | if (errno == ENODEV) { |
| 600 | do_disconnect(dev); |
| 601 | } |
| 602 | perror(op); |
| 603 | return 0; |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | static int usb_host_release_interfaces(USBHostDevice *s) |
| 607 | { |
| 608 | int ret, i; |
| 609 | |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 610 | trace_usb_host_release_interfaces(s->bus_num, s->addr); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 611 | |
| 612 | for (i = 0; i < s->ninterfaces; i++) { |
| 613 | ret = ioctl(s->fd, USBDEVFS_RELEASEINTERFACE, &i); |
| 614 | if (ret < 0) { |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 615 | perror("USBDEVFS_RELEASEINTERFACE"); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 616 | return 0; |
| 617 | } |
| 618 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 619 | return 1; |
| 620 | } |
| 621 | |
bellard | 059809e | 2006-07-19 18:06:15 +0000 | [diff] [blame] | 622 | static void usb_host_handle_reset(USBDevice *dev) |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 623 | { |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 624 | USBHostDevice *s = DO_UPCAST(USBHostDevice, dev, dev); |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 625 | |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 626 | trace_usb_host_reset(s->bus_num, s->addr); |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 627 | |
Gerd Hoffmann | c7662da | 2011-11-16 12:37:17 +0100 | [diff] [blame] | 628 | usb_host_do_reset(s);; |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 629 | |
Gerd Hoffmann | eb7700b | 2011-08-24 14:45:07 +0200 | [diff] [blame] | 630 | usb_host_claim_interfaces(s, 0); |
Gerd Hoffmann | 9b87e19 | 2011-08-24 10:55:40 +0200 | [diff] [blame] | 631 | usb_linux_update_endp_table(s); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 632 | } |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 633 | |
bellard | 059809e | 2006-07-19 18:06:15 +0000 | [diff] [blame] | 634 | static void usb_host_handle_destroy(USBDevice *dev) |
| 635 | { |
| 636 | USBHostDevice *s = (USBHostDevice *)dev; |
| 637 | |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 638 | usb_host_close(s); |
Gerd Hoffmann | 9516bb4 | 2011-08-24 13:34:17 +0200 | [diff] [blame] | 639 | if (s->hub_fd != -1) { |
| 640 | close(s->hub_fd); |
| 641 | } |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 642 | QTAILQ_REMOVE(&hostdevs, s, next); |
Shahar Havivi | b373a63 | 2010-06-16 15:16:11 +0300 | [diff] [blame] | 643 | qemu_remove_exit_notifier(&s->exit); |
bellard | 059809e | 2006-07-19 18:06:15 +0000 | [diff] [blame] | 644 | } |
| 645 | |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 646 | /* iso data is special, we need to keep enough urbs in flight to make sure |
| 647 | that the controller never runs out of them, otherwise the device will |
| 648 | likely suffer a buffer underrun / overrun. */ |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 649 | static AsyncURB *usb_host_alloc_iso(USBHostDevice *s, int pid, uint8_t ep) |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 650 | { |
| 651 | AsyncURB *aurb; |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 652 | int i, j, len = get_max_packet_size(s, pid, ep); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 653 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 654 | aurb = g_malloc0(s->iso_urb_count * sizeof(*aurb)); |
Gerd Hoffmann | b81bcd8 | 2011-06-10 14:03:56 +0200 | [diff] [blame] | 655 | for (i = 0; i < s->iso_urb_count; i++) { |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 656 | aurb[i].urb.endpoint = ep; |
| 657 | aurb[i].urb.buffer_length = ISO_FRAME_DESC_PER_URB * len; |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 658 | aurb[i].urb.buffer = g_malloc(aurb[i].urb.buffer_length); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 659 | aurb[i].urb.type = USBDEVFS_URB_TYPE_ISO; |
| 660 | aurb[i].urb.flags = USBDEVFS_URB_ISO_ASAP; |
| 661 | aurb[i].urb.number_of_packets = ISO_FRAME_DESC_PER_URB; |
| 662 | for (j = 0 ; j < ISO_FRAME_DESC_PER_URB; j++) |
| 663 | aurb[i].urb.iso_frame_desc[j].length = len; |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 664 | if (pid == USB_TOKEN_IN) { |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 665 | aurb[i].urb.endpoint |= 0x80; |
| 666 | /* Mark as fully consumed (idle) */ |
| 667 | aurb[i].iso_frame_idx = ISO_FRAME_DESC_PER_URB; |
| 668 | } |
| 669 | } |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 670 | set_iso_urb(s, pid, ep, aurb); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 671 | |
| 672 | return aurb; |
| 673 | } |
| 674 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 675 | static void usb_host_stop_n_free_iso(USBHostDevice *s, int pid, uint8_t ep) |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 676 | { |
| 677 | AsyncURB *aurb; |
| 678 | int i, ret, killed = 0, free = 1; |
| 679 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 680 | aurb = get_iso_urb(s, pid, ep); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 681 | if (!aurb) { |
| 682 | return; |
| 683 | } |
| 684 | |
Gerd Hoffmann | b81bcd8 | 2011-06-10 14:03:56 +0200 | [diff] [blame] | 685 | for (i = 0; i < s->iso_urb_count; i++) { |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 686 | /* in flight? */ |
| 687 | if (aurb[i].iso_frame_idx == -1) { |
| 688 | ret = ioctl(s->fd, USBDEVFS_DISCARDURB, &aurb[i]); |
| 689 | if (ret < 0) { |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 690 | perror("USBDEVFS_DISCARDURB"); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 691 | free = 0; |
| 692 | continue; |
| 693 | } |
| 694 | killed++; |
| 695 | } |
| 696 | } |
| 697 | |
| 698 | /* Make sure any urbs we've killed are reaped before we free them */ |
| 699 | if (killed) { |
| 700 | async_complete(s); |
| 701 | } |
| 702 | |
Gerd Hoffmann | b81bcd8 | 2011-06-10 14:03:56 +0200 | [diff] [blame] | 703 | for (i = 0; i < s->iso_urb_count; i++) { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 704 | g_free(aurb[i].urb.buffer); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | if (free) |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 708 | g_free(aurb); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 709 | else |
| 710 | printf("husb: leaking iso urbs because of discard failure\n"); |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 711 | set_iso_urb(s, pid, ep, NULL); |
| 712 | set_iso_urb_idx(s, pid, ep, 0); |
| 713 | clear_iso_started(s, pid, ep); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | static int urb_status_to_usb_ret(int status) |
| 717 | { |
| 718 | switch (status) { |
| 719 | case -EPIPE: |
| 720 | return USB_RET_STALL; |
| 721 | default: |
| 722 | return USB_RET_NAK; |
| 723 | } |
| 724 | } |
| 725 | |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 726 | static int usb_host_handle_iso_data(USBHostDevice *s, USBPacket *p, int in) |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 727 | { |
| 728 | AsyncURB *aurb; |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 729 | int i, j, ret, max_packet_size, offset, len = 0; |
Gerd Hoffmann | 4f4321c | 2011-07-12 15:22:25 +0200 | [diff] [blame] | 730 | uint8_t *buf; |
Hans de Goede | 975f299 | 2010-11-26 14:59:35 +0100 | [diff] [blame] | 731 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 732 | max_packet_size = get_max_packet_size(s, p->pid, p->devep); |
Hans de Goede | 975f299 | 2010-11-26 14:59:35 +0100 | [diff] [blame] | 733 | if (max_packet_size == 0) |
| 734 | return USB_RET_NAK; |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 735 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 736 | aurb = get_iso_urb(s, p->pid, p->devep); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 737 | if (!aurb) { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 738 | aurb = usb_host_alloc_iso(s, p->pid, p->devep); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 739 | } |
| 740 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 741 | i = get_iso_urb_idx(s, p->pid, p->devep); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 742 | j = aurb[i].iso_frame_idx; |
| 743 | if (j >= 0 && j < ISO_FRAME_DESC_PER_URB) { |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 744 | if (in) { |
| 745 | /* Check urb status */ |
| 746 | if (aurb[i].urb.status) { |
| 747 | len = urb_status_to_usb_ret(aurb[i].urb.status); |
| 748 | /* Move to the next urb */ |
| 749 | aurb[i].iso_frame_idx = ISO_FRAME_DESC_PER_URB - 1; |
| 750 | /* Check frame status */ |
| 751 | } else if (aurb[i].urb.iso_frame_desc[j].status) { |
| 752 | len = urb_status_to_usb_ret( |
| 753 | aurb[i].urb.iso_frame_desc[j].status); |
| 754 | /* Check the frame fits */ |
Gerd Hoffmann | 4f4321c | 2011-07-12 15:22:25 +0200 | [diff] [blame] | 755 | } else if (aurb[i].urb.iso_frame_desc[j].actual_length |
| 756 | > p->iov.size) { |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 757 | printf("husb: received iso data is larger then packet\n"); |
| 758 | len = USB_RET_NAK; |
| 759 | /* All good copy data over */ |
| 760 | } else { |
| 761 | len = aurb[i].urb.iso_frame_desc[j].actual_length; |
Gerd Hoffmann | 4f4321c | 2011-07-12 15:22:25 +0200 | [diff] [blame] | 762 | buf = aurb[i].urb.buffer + |
| 763 | j * aurb[i].urb.iso_frame_desc[0].length; |
| 764 | usb_packet_copy(p, buf, len); |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 765 | } |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 766 | } else { |
Gerd Hoffmann | 4f4321c | 2011-07-12 15:22:25 +0200 | [diff] [blame] | 767 | len = p->iov.size; |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 768 | offset = (j == 0) ? 0 : get_iso_buffer_used(s, p->pid, p->devep); |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 769 | |
| 770 | /* Check the frame fits */ |
| 771 | if (len > max_packet_size) { |
| 772 | printf("husb: send iso data is larger then max packet size\n"); |
| 773 | return USB_RET_NAK; |
| 774 | } |
| 775 | |
| 776 | /* All good copy data over */ |
Gerd Hoffmann | 4f4321c | 2011-07-12 15:22:25 +0200 | [diff] [blame] | 777 | usb_packet_copy(p, aurb[i].urb.buffer + offset, len); |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 778 | aurb[i].urb.iso_frame_desc[j].length = len; |
| 779 | offset += len; |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 780 | set_iso_buffer_used(s, p->pid, p->devep, offset); |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 781 | |
| 782 | /* Start the stream once we have buffered enough data */ |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 783 | if (!is_iso_started(s, p->pid, p->devep) && i == 1 && j == 8) { |
| 784 | set_iso_started(s, p->pid, p->devep); |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 785 | } |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 786 | } |
| 787 | aurb[i].iso_frame_idx++; |
| 788 | if (aurb[i].iso_frame_idx == ISO_FRAME_DESC_PER_URB) { |
Gerd Hoffmann | b81bcd8 | 2011-06-10 14:03:56 +0200 | [diff] [blame] | 789 | i = (i + 1) % s->iso_urb_count; |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 790 | set_iso_urb_idx(s, p->pid, p->devep, i); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 791 | } |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 792 | } else { |
| 793 | if (in) { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 794 | set_iso_started(s, p->pid, p->devep); |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 795 | } else { |
| 796 | DPRINTF("hubs: iso out error no free buffer, dropping packet\n"); |
| 797 | } |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 798 | } |
| 799 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 800 | if (is_iso_started(s, p->pid, p->devep)) { |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 801 | /* (Re)-submit all fully consumed / filled urbs */ |
Gerd Hoffmann | b81bcd8 | 2011-06-10 14:03:56 +0200 | [diff] [blame] | 802 | for (i = 0; i < s->iso_urb_count; i++) { |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 803 | if (aurb[i].iso_frame_idx == ISO_FRAME_DESC_PER_URB) { |
| 804 | ret = ioctl(s->fd, USBDEVFS_SUBMITURB, &aurb[i]); |
| 805 | if (ret < 0) { |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 806 | perror("USBDEVFS_SUBMITURB"); |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 807 | if (!in || len == 0) { |
| 808 | switch(errno) { |
| 809 | case ETIMEDOUT: |
| 810 | len = USB_RET_NAK; |
Stefan Weil | 0225e25 | 2011-05-07 22:10:53 +0200 | [diff] [blame] | 811 | break; |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 812 | case EPIPE: |
| 813 | default: |
| 814 | len = USB_RET_STALL; |
| 815 | } |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 816 | } |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 817 | break; |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 818 | } |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 819 | aurb[i].iso_frame_idx = -1; |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 820 | change_iso_inflight(s, p->pid, p->devep, 1); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 821 | } |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 822 | } |
| 823 | } |
| 824 | |
| 825 | return len; |
| 826 | } |
| 827 | |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 828 | static int usb_host_handle_data(USBDevice *dev, USBPacket *p) |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 829 | { |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 830 | USBHostDevice *s = DO_UPCAST(USBHostDevice, dev, dev); |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 831 | struct usbdevfs_urb *urb; |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 832 | AsyncURB *aurb; |
Gerd Hoffmann | b621bab | 2011-07-13 11:28:17 +0200 | [diff] [blame] | 833 | int ret, rem, prem, v; |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 834 | uint8_t *pbuf; |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 835 | uint8_t ep; |
| 836 | |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 837 | trace_usb_host_req_data(s->bus_num, s->addr, |
| 838 | p->pid == USB_TOKEN_IN, |
| 839 | p->devep, p->iov.size); |
| 840 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 841 | if (!is_valid(s, p->pid, p->devep)) { |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 842 | trace_usb_host_req_complete(s->bus_num, s->addr, USB_RET_NAK); |
Hans de Goede | a0b5fec | 2010-11-26 14:56:17 +0100 | [diff] [blame] | 843 | return USB_RET_NAK; |
| 844 | } |
| 845 | |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 846 | if (p->pid == USB_TOKEN_IN) { |
| 847 | ep = p->devep | 0x80; |
| 848 | } else { |
| 849 | ep = p->devep; |
| 850 | } |
| 851 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 852 | if (is_halted(s, p->pid, p->devep)) { |
Gerd Hoffmann | 9b87e19 | 2011-08-24 10:55:40 +0200 | [diff] [blame] | 853 | unsigned int arg = ep; |
| 854 | ret = ioctl(s->fd, USBDEVFS_CLEAR_HALT, &arg); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 855 | if (ret < 0) { |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 856 | perror("USBDEVFS_CLEAR_HALT"); |
| 857 | trace_usb_host_req_complete(s->bus_num, s->addr, USB_RET_NAK); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 858 | return USB_RET_NAK; |
| 859 | } |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 860 | clear_halt(s, p->pid, p->devep); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 861 | } |
| 862 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 863 | if (is_isoc(s, p->pid, p->devep)) { |
Hans de Goede | bb6d549 | 2010-11-26 19:11:03 +0100 | [diff] [blame] | 864 | return usb_host_handle_iso_data(s, p, p->pid == USB_TOKEN_IN); |
| 865 | } |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 866 | |
Gerd Hoffmann | b621bab | 2011-07-13 11:28:17 +0200 | [diff] [blame] | 867 | v = 0; |
| 868 | prem = p->iov.iov[v].iov_len; |
| 869 | pbuf = p->iov.iov[v].iov_base; |
| 870 | rem = p->iov.size; |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 871 | while (rem) { |
Gerd Hoffmann | b621bab | 2011-07-13 11:28:17 +0200 | [diff] [blame] | 872 | if (prem == 0) { |
| 873 | v++; |
| 874 | assert(v < p->iov.niov); |
| 875 | prem = p->iov.iov[v].iov_len; |
| 876 | pbuf = p->iov.iov[v].iov_base; |
| 877 | assert(prem <= rem); |
| 878 | } |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 879 | aurb = async_alloc(s); |
| 880 | aurb->packet = p; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 881 | |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 882 | urb = &aurb->urb; |
| 883 | urb->endpoint = ep; |
| 884 | urb->type = USBDEVFS_URB_TYPE_BULK; |
| 885 | urb->usercontext = s; |
| 886 | urb->buffer = pbuf; |
Gerd Hoffmann | b621bab | 2011-07-13 11:28:17 +0200 | [diff] [blame] | 887 | urb->buffer_length = prem; |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 888 | |
Gerd Hoffmann | b621bab | 2011-07-13 11:28:17 +0200 | [diff] [blame] | 889 | if (urb->buffer_length > MAX_USBFS_BUFFER_SIZE) { |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 890 | urb->buffer_length = MAX_USBFS_BUFFER_SIZE; |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 891 | } |
| 892 | pbuf += urb->buffer_length; |
Gerd Hoffmann | b621bab | 2011-07-13 11:28:17 +0200 | [diff] [blame] | 893 | prem -= urb->buffer_length; |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 894 | rem -= urb->buffer_length; |
Gerd Hoffmann | b621bab | 2011-07-13 11:28:17 +0200 | [diff] [blame] | 895 | if (rem) { |
| 896 | aurb->more = 1; |
| 897 | } |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 898 | |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 899 | trace_usb_host_urb_submit(s->bus_num, s->addr, aurb, |
| 900 | urb->buffer_length, aurb->more); |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 901 | ret = ioctl(s->fd, USBDEVFS_SUBMITURB, urb); |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 902 | |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 903 | DPRINTF("husb: data submit: ep 0x%x, len %u, more %d, packet %p, aurb %p\n", |
| 904 | urb->endpoint, urb->buffer_length, aurb->more, p, aurb); |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 905 | |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 906 | if (ret < 0) { |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 907 | perror("USBDEVFS_SUBMITURB"); |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 908 | async_free(aurb); |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 909 | |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 910 | switch(errno) { |
| 911 | case ETIMEDOUT: |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 912 | trace_usb_host_req_complete(s->bus_num, s->addr, USB_RET_NAK); |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 913 | return USB_RET_NAK; |
| 914 | case EPIPE: |
| 915 | default: |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 916 | trace_usb_host_req_complete(s->bus_num, s->addr, USB_RET_STALL); |
Gerd Hoffmann | 7113853 | 2011-05-16 10:21:51 +0200 | [diff] [blame] | 917 | return USB_RET_STALL; |
| 918 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 919 | } |
| 920 | } |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 921 | |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 922 | return USB_RET_ASYNC; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 923 | } |
| 924 | |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 925 | static int ctrl_error(void) |
| 926 | { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 927 | if (errno == ETIMEDOUT) { |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 928 | return USB_RET_NAK; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 929 | } else { |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 930 | return USB_RET_STALL; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 931 | } |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 932 | } |
| 933 | |
| 934 | static int usb_host_set_address(USBHostDevice *s, int addr) |
| 935 | { |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 936 | trace_usb_host_set_address(s->bus_num, s->addr, addr); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 937 | s->dev.addr = addr; |
| 938 | return 0; |
| 939 | } |
| 940 | |
| 941 | static int usb_host_set_config(USBHostDevice *s, int config) |
| 942 | { |
Gerd Hoffmann | 0fcc3bf | 2011-09-13 11:55:15 +0200 | [diff] [blame] | 943 | int ret, first = 1; |
| 944 | |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 945 | trace_usb_host_set_config(s->bus_num, s->addr, config); |
| 946 | |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 947 | usb_host_release_interfaces(s); |
| 948 | |
Gerd Hoffmann | 0fcc3bf | 2011-09-13 11:55:15 +0200 | [diff] [blame] | 949 | again: |
| 950 | ret = ioctl(s->fd, USBDEVFS_SETCONFIGURATION, &config); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 951 | |
malc | d0f2c4c | 2010-02-07 02:03:50 +0300 | [diff] [blame] | 952 | DPRINTF("husb: ctrl set config %d ret %d errno %d\n", config, ret, errno); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 953 | |
Gerd Hoffmann | 0fcc3bf | 2011-09-13 11:55:15 +0200 | [diff] [blame] | 954 | if (ret < 0 && errno == EBUSY && first) { |
| 955 | /* happens if usb device is in use by host drivers */ |
| 956 | int count = usb_linux_get_num_interfaces(s); |
| 957 | if (count > 0) { |
| 958 | DPRINTF("husb: busy -> disconnecting %d interfaces\n", count); |
| 959 | usb_host_disconnect_ifaces(s, count); |
| 960 | first = 0; |
| 961 | goto again; |
| 962 | } |
| 963 | } |
| 964 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 965 | if (ret < 0) { |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 966 | return ctrl_error(); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 967 | } |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 968 | usb_host_claim_interfaces(s, config); |
Gerd Hoffmann | eb7700b | 2011-08-24 14:45:07 +0200 | [diff] [blame] | 969 | usb_linux_update_endp_table(s); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 970 | return 0; |
| 971 | } |
| 972 | |
| 973 | static int usb_host_set_interface(USBHostDevice *s, int iface, int alt) |
| 974 | { |
| 975 | struct usbdevfs_setinterface si; |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 976 | int i, ret; |
| 977 | |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 978 | trace_usb_host_set_interface(s->bus_num, s->addr, iface, alt); |
| 979 | |
Hans de Goede | 3a4854b | 2010-11-26 15:02:16 +0100 | [diff] [blame] | 980 | for (i = 1; i <= MAX_ENDPOINTS; i++) { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 981 | if (is_isoc(s, USB_TOKEN_IN, i)) { |
| 982 | usb_host_stop_n_free_iso(s, USB_TOKEN_IN, i); |
| 983 | } |
| 984 | if (is_isoc(s, USB_TOKEN_OUT, i)) { |
| 985 | usb_host_stop_n_free_iso(s, USB_TOKEN_OUT, i); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 986 | } |
| 987 | } |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 988 | |
| 989 | si.interface = iface; |
| 990 | si.altsetting = alt; |
| 991 | ret = ioctl(s->fd, USBDEVFS_SETINTERFACE, &si); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 992 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 993 | DPRINTF("husb: ctrl set iface %d altset %d ret %d errno %d\n", |
| 994 | iface, alt, ret, errno); |
| 995 | |
| 996 | if (ret < 0) { |
| 997 | return ctrl_error(); |
| 998 | } |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 999 | usb_linux_update_endp_table(s); |
| 1000 | return 0; |
| 1001 | } |
| 1002 | |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 1003 | static int usb_host_handle_control(USBDevice *dev, USBPacket *p, |
| 1004 | int request, int value, int index, int length, uint8_t *data) |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1005 | { |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 1006 | USBHostDevice *s = DO_UPCAST(USBHostDevice, dev, dev); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1007 | struct usbdevfs_urb *urb; |
| 1008 | AsyncURB *aurb; |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 1009 | int ret; |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1010 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1011 | /* |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1012 | * Process certain standard device requests. |
| 1013 | * These are infrequent and are processed synchronously. |
| 1014 | */ |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1015 | |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 1016 | /* Note request is (bRequestType << 8) | bRequest */ |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 1017 | trace_usb_host_req_control(s->bus_num, s->addr, request, value, index); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1018 | |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 1019 | switch (request) { |
| 1020 | case DeviceOutRequest | USB_REQ_SET_ADDRESS: |
| 1021 | return usb_host_set_address(s, value); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1022 | |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 1023 | case DeviceOutRequest | USB_REQ_SET_CONFIGURATION: |
| 1024 | return usb_host_set_config(s, value & 0xff); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1025 | |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 1026 | case InterfaceOutRequest | USB_REQ_SET_INTERFACE: |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1027 | return usb_host_set_interface(s, index, value); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1028 | } |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1029 | |
| 1030 | /* The rest are asynchronous */ |
| 1031 | |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 1032 | if (length > sizeof(dev->data_buf)) { |
| 1033 | fprintf(stderr, "husb: ctrl buffer too small (%d > %zu)\n", |
| 1034 | length, sizeof(dev->data_buf)); |
malc | b2e3b6e | 2009-09-12 03:18:18 +0400 | [diff] [blame] | 1035 | return USB_RET_STALL; |
Jim Paris | c4c0e23 | 2009-08-24 14:56:12 -0400 | [diff] [blame] | 1036 | } |
| 1037 | |
Gerd Hoffmann | 7a8fc83 | 2011-05-16 09:13:05 +0200 | [diff] [blame] | 1038 | aurb = async_alloc(s); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1039 | aurb->packet = p; |
| 1040 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1041 | /* |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1042 | * Setup ctrl transfer. |
| 1043 | * |
Brad Hards | a010208 | 2011-04-13 19:45:33 +1000 | [diff] [blame] | 1044 | * s->ctrl is laid out such that data buffer immediately follows |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1045 | * 'req' struct which is exactly what usbdevfs expects. |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1046 | */ |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1047 | urb = &aurb->urb; |
| 1048 | |
| 1049 | urb->type = USBDEVFS_URB_TYPE_CONTROL; |
| 1050 | urb->endpoint = p->devep; |
| 1051 | |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 1052 | urb->buffer = &dev->setup_buf; |
| 1053 | urb->buffer_length = length + 8; |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1054 | |
| 1055 | urb->usercontext = s; |
| 1056 | |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 1057 | trace_usb_host_urb_submit(s->bus_num, s->addr, aurb, |
| 1058 | urb->buffer_length, aurb->more); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1059 | ret = ioctl(s->fd, USBDEVFS_SUBMITURB, urb); |
| 1060 | |
malc | d0f2c4c | 2010-02-07 02:03:50 +0300 | [diff] [blame] | 1061 | DPRINTF("husb: submit ctrl. len %u aurb %p\n", urb->buffer_length, aurb); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1062 | |
| 1063 | if (ret < 0) { |
malc | d0f2c4c | 2010-02-07 02:03:50 +0300 | [diff] [blame] | 1064 | DPRINTF("husb: submit failed. errno %d\n", errno); |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1065 | async_free(aurb); |
| 1066 | |
| 1067 | switch(errno) { |
| 1068 | case ETIMEDOUT: |
| 1069 | return USB_RET_NAK; |
| 1070 | case EPIPE: |
| 1071 | default: |
| 1072 | return USB_RET_STALL; |
| 1073 | } |
| 1074 | } |
| 1075 | |
aliguori | 446ab12 | 2008-09-14 01:06:09 +0000 | [diff] [blame] | 1076 | return USB_RET_ASYNC; |
| 1077 | } |
| 1078 | |
Hans de Goede | ed3a328 | 2010-11-24 12:50:00 +0100 | [diff] [blame] | 1079 | static uint8_t usb_linux_get_alt_setting(USBHostDevice *s, |
| 1080 | uint8_t configuration, uint8_t interface) |
| 1081 | { |
| 1082 | uint8_t alt_setting; |
| 1083 | struct usb_ctrltransfer ct; |
| 1084 | int ret; |
| 1085 | |
Hans de Goede | c43831f | 2010-11-24 12:57:59 +0100 | [diff] [blame] | 1086 | if (usb_fs_type == USB_FS_SYS) { |
| 1087 | char device_name[64], line[1024]; |
| 1088 | int alt_setting; |
| 1089 | |
Gerd Hoffmann | 5557d82 | 2011-05-10 11:43:57 +0200 | [diff] [blame] | 1090 | sprintf(device_name, "%d-%s:%d.%d", s->bus_num, s->port, |
Hans de Goede | c43831f | 2010-11-24 12:57:59 +0100 | [diff] [blame] | 1091 | (int)configuration, (int)interface); |
| 1092 | |
| 1093 | if (!usb_host_read_file(line, sizeof(line), "bAlternateSetting", |
| 1094 | device_name)) { |
| 1095 | goto usbdevfs; |
| 1096 | } |
| 1097 | if (sscanf(line, "%d", &alt_setting) != 1) { |
| 1098 | goto usbdevfs; |
| 1099 | } |
| 1100 | return alt_setting; |
| 1101 | } |
| 1102 | |
| 1103 | usbdevfs: |
Hans de Goede | ed3a328 | 2010-11-24 12:50:00 +0100 | [diff] [blame] | 1104 | ct.bRequestType = USB_DIR_IN | USB_RECIP_INTERFACE; |
| 1105 | ct.bRequest = USB_REQ_GET_INTERFACE; |
| 1106 | ct.wValue = 0; |
| 1107 | ct.wIndex = interface; |
| 1108 | ct.wLength = 1; |
| 1109 | ct.data = &alt_setting; |
| 1110 | ct.timeout = 50; |
| 1111 | ret = ioctl(s->fd, USBDEVFS_CONTROL, &ct); |
| 1112 | if (ret < 0) { |
| 1113 | /* Assume alt 0 on error */ |
| 1114 | return 0; |
| 1115 | } |
| 1116 | |
| 1117 | return alt_setting; |
| 1118 | } |
| 1119 | |
Hans de Goede | 71d71bb | 2010-11-10 10:06:24 +0100 | [diff] [blame] | 1120 | /* returns 1 on problem encountered or 0 for success */ |
| 1121 | static int usb_linux_update_endp_table(USBHostDevice *s) |
| 1122 | { |
| 1123 | uint8_t *descriptors; |
Gerd Hoffmann | eb7700b | 2011-08-24 14:45:07 +0200 | [diff] [blame] | 1124 | uint8_t devep, type, alt_interface; |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 1125 | int interface, length, i, ep, pid; |
| 1126 | struct endp_data *epd; |
Hans de Goede | 71d71bb | 2010-11-10 10:06:24 +0100 | [diff] [blame] | 1127 | |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 1128 | for (i = 0; i < MAX_ENDPOINTS; i++) { |
| 1129 | s->ep_in[i].type = INVALID_EP_TYPE; |
| 1130 | s->ep_out[i].type = INVALID_EP_TYPE; |
| 1131 | } |
Hans de Goede | a0b5fec | 2010-11-26 14:56:17 +0100 | [diff] [blame] | 1132 | |
Gerd Hoffmann | eb7700b | 2011-08-24 14:45:07 +0200 | [diff] [blame] | 1133 | if (s->configuration == 0) { |
| 1134 | /* not configured yet -- leave all endpoints disabled */ |
| 1135 | return 0; |
| 1136 | } |
Hans de Goede | 71d71bb | 2010-11-10 10:06:24 +0100 | [diff] [blame] | 1137 | |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1138 | /* get the desired configuration, interface, and endpoint descriptors |
| 1139 | * from device description */ |
| 1140 | descriptors = &s->descr[18]; |
| 1141 | length = s->descr_len - 18; |
| 1142 | i = 0; |
| 1143 | |
| 1144 | if (descriptors[i + 1] != USB_DT_CONFIG || |
Gerd Hoffmann | eb7700b | 2011-08-24 14:45:07 +0200 | [diff] [blame] | 1145 | descriptors[i + 5] != s->configuration) { |
| 1146 | fprintf(stderr, "invalid descriptor data - configuration %d\n", |
| 1147 | s->configuration); |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1148 | return 1; |
| 1149 | } |
| 1150 | i += descriptors[i]; |
| 1151 | |
| 1152 | while (i < length) { |
| 1153 | if (descriptors[i + 1] != USB_DT_INTERFACE || |
| 1154 | (descriptors[i + 1] == USB_DT_INTERFACE && |
| 1155 | descriptors[i + 4] == 0)) { |
| 1156 | i += descriptors[i]; |
| 1157 | continue; |
| 1158 | } |
| 1159 | |
| 1160 | interface = descriptors[i + 2]; |
Gerd Hoffmann | eb7700b | 2011-08-24 14:45:07 +0200 | [diff] [blame] | 1161 | alt_interface = usb_linux_get_alt_setting(s, s->configuration, |
| 1162 | interface); |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1163 | |
| 1164 | /* the current interface descriptor is the active interface |
| 1165 | * and has endpoints */ |
| 1166 | if (descriptors[i + 3] != alt_interface) { |
| 1167 | i += descriptors[i]; |
| 1168 | continue; |
| 1169 | } |
| 1170 | |
| 1171 | /* advance to the endpoints */ |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1172 | while (i < length && descriptors[i +1] != USB_DT_ENDPOINT) { |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1173 | i += descriptors[i]; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1174 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1175 | |
| 1176 | if (i >= length) |
| 1177 | break; |
| 1178 | |
| 1179 | while (i < length) { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1180 | if (descriptors[i + 1] != USB_DT_ENDPOINT) { |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1181 | break; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1182 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1183 | |
| 1184 | devep = descriptors[i + 2]; |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 1185 | pid = (devep & USB_DIR_IN) ? USB_TOKEN_IN : USB_TOKEN_OUT; |
| 1186 | ep = devep & 0xf; |
| 1187 | if (ep == 0) { |
Hans de Goede | 130314f | 2011-05-31 11:35:22 +0200 | [diff] [blame] | 1188 | fprintf(stderr, "usb-linux: invalid ep descriptor, ep == 0\n"); |
| 1189 | return 1; |
| 1190 | } |
| 1191 | |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1192 | switch (descriptors[i + 3] & 0x3) { |
| 1193 | case 0x00: |
| 1194 | type = USBDEVFS_URB_TYPE_CONTROL; |
| 1195 | break; |
| 1196 | case 0x01: |
| 1197 | type = USBDEVFS_URB_TYPE_ISO; |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 1198 | set_max_packet_size(s, pid, ep, descriptors + i); |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1199 | break; |
| 1200 | case 0x02: |
| 1201 | type = USBDEVFS_URB_TYPE_BULK; |
| 1202 | break; |
| 1203 | case 0x03: |
| 1204 | type = USBDEVFS_URB_TYPE_INTERRUPT; |
| 1205 | break; |
Anthony Liguori | ddbda43 | 2010-03-17 16:00:24 -0500 | [diff] [blame] | 1206 | default: |
| 1207 | DPRINTF("usb_host: malformed endpoint type\n"); |
| 1208 | type = USBDEVFS_URB_TYPE_BULK; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1209 | } |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 1210 | epd = get_endp(s, pid, ep); |
| 1211 | assert(epd->type == INVALID_EP_TYPE); |
| 1212 | epd->type = type; |
| 1213 | epd->halted = 0; |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1214 | |
| 1215 | i += descriptors[i]; |
| 1216 | } |
| 1217 | } |
| 1218 | return 0; |
| 1219 | } |
| 1220 | |
Hans de Goede | e4b1776 | 2011-05-30 11:40:45 +0200 | [diff] [blame] | 1221 | /* |
| 1222 | * Check if we can safely redirect a usb2 device to a usb1 virtual controller, |
| 1223 | * this function assumes this is safe, if: |
| 1224 | * 1) There are no isoc endpoints |
| 1225 | * 2) There are no interrupt endpoints with a max_packet_size > 64 |
| 1226 | * Note bulk endpoints with a max_packet_size > 64 in theory also are not |
| 1227 | * usb1 compatible, but in practice this seems to work fine. |
| 1228 | */ |
| 1229 | static int usb_linux_full_speed_compat(USBHostDevice *dev) |
| 1230 | { |
| 1231 | int i, packet_size; |
| 1232 | |
| 1233 | /* |
| 1234 | * usb_linux_update_endp_table only registers info about ep in the current |
| 1235 | * interface altsettings, so we need to parse the descriptors again. |
| 1236 | */ |
| 1237 | for (i = 0; (i + 5) < dev->descr_len; i += dev->descr[i]) { |
| 1238 | if (dev->descr[i + 1] == USB_DT_ENDPOINT) { |
| 1239 | switch (dev->descr[i + 3] & 0x3) { |
| 1240 | case 0x00: /* CONTROL */ |
| 1241 | break; |
| 1242 | case 0x01: /* ISO */ |
| 1243 | return 0; |
| 1244 | case 0x02: /* BULK */ |
| 1245 | break; |
| 1246 | case 0x03: /* INTERRUPT */ |
| 1247 | packet_size = dev->descr[i + 4] + (dev->descr[i + 5] << 8); |
| 1248 | if (packet_size > 64) |
| 1249 | return 0; |
| 1250 | break; |
| 1251 | } |
| 1252 | } |
| 1253 | } |
| 1254 | return 1; |
| 1255 | } |
| 1256 | |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1257 | static int usb_host_open(USBHostDevice *dev, int bus_num, |
Gerd Hoffmann | ba9acab | 2011-08-17 23:35:45 +0200 | [diff] [blame] | 1258 | int addr, const char *port, |
| 1259 | const char *prod_name, int speed) |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1260 | { |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1261 | int fd = -1, ret; |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1262 | char buf[1024]; |
aliguori | 1f3870a | 2008-08-21 19:27:48 +0000 | [diff] [blame] | 1263 | |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 1264 | trace_usb_host_open_started(bus_num, addr); |
| 1265 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1266 | if (dev->fd != -1) { |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1267 | goto fail; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1268 | } |
aliguori | 1f3870a | 2008-08-21 19:27:48 +0000 | [diff] [blame] | 1269 | |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1270 | if (!usb_host_device_path) { |
| 1271 | perror("husb: USB Host Device Path not set"); |
| 1272 | goto fail; |
| 1273 | } |
| 1274 | snprintf(buf, sizeof(buf), "%s/%03d/%03d", usb_host_device_path, |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1275 | bus_num, addr); |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1276 | fd = open(buf, O_RDWR | O_NONBLOCK); |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1277 | if (fd < 0) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1278 | perror(buf); |
aliguori | 1f3870a | 2008-08-21 19:27:48 +0000 | [diff] [blame] | 1279 | goto fail; |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1280 | } |
malc | d0f2c4c | 2010-02-07 02:03:50 +0300 | [diff] [blame] | 1281 | DPRINTF("husb: opened %s\n", buf); |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1282 | |
Gerd Hoffmann | 806b602 | 2009-08-31 14:23:59 +0200 | [diff] [blame] | 1283 | dev->bus_num = bus_num; |
| 1284 | dev->addr = addr; |
Gerd Hoffmann | 5557d82 | 2011-05-10 11:43:57 +0200 | [diff] [blame] | 1285 | strcpy(dev->port, port); |
Gerd Hoffmann | 22f84e7 | 2009-09-25 16:55:28 +0200 | [diff] [blame] | 1286 | dev->fd = fd; |
Gerd Hoffmann | 806b602 | 2009-08-31 14:23:59 +0200 | [diff] [blame] | 1287 | |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1288 | /* read the device description */ |
| 1289 | dev->descr_len = read(fd, dev->descr, sizeof(dev->descr)); |
| 1290 | if (dev->descr_len <= 0) { |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 1291 | perror("husb: reading device data failed"); |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1292 | goto fail; |
| 1293 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1294 | |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1295 | #ifdef DEBUG |
bellard | 868bfe2 | 2005-11-13 21:53:15 +0000 | [diff] [blame] | 1296 | { |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1297 | int x; |
| 1298 | printf("=== begin dumping device descriptor data ===\n"); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1299 | for (x = 0; x < dev->descr_len; x++) { |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1300 | printf("%02x ", dev->descr[x]); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1301 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1302 | printf("\n=== end dumping device descriptor data ===\n"); |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1303 | } |
| 1304 | #endif |
| 1305 | |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1306 | |
Gerd Hoffmann | eb7700b | 2011-08-24 14:45:07 +0200 | [diff] [blame] | 1307 | /* start unconfigured -- we'll wait for the guest to set a configuration */ |
| 1308 | if (!usb_host_claim_interfaces(dev, 0)) { |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1309 | goto fail; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1310 | } |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1311 | |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1312 | ret = usb_linux_update_endp_table(dev); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1313 | if (ret) { |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1314 | goto fail; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1315 | } |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1316 | |
Hans de Goede | 3991c35 | 2011-05-31 11:35:18 +0200 | [diff] [blame] | 1317 | if (speed == -1) { |
| 1318 | struct usbdevfs_connectinfo ci; |
| 1319 | |
| 1320 | ret = ioctl(fd, USBDEVFS_CONNECTINFO, &ci); |
| 1321 | if (ret < 0) { |
| 1322 | perror("usb_host_device_open: USBDEVFS_CONNECTINFO"); |
| 1323 | goto fail; |
| 1324 | } |
| 1325 | |
| 1326 | if (ci.slow) { |
| 1327 | speed = USB_SPEED_LOW; |
| 1328 | } else { |
| 1329 | speed = USB_SPEED_HIGH; |
| 1330 | } |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1331 | } |
Hans de Goede | 3991c35 | 2011-05-31 11:35:18 +0200 | [diff] [blame] | 1332 | dev->dev.speed = speed; |
Hans de Goede | ba3f9bf | 2011-05-27 14:27:18 +0200 | [diff] [blame] | 1333 | dev->dev.speedmask = (1 << speed); |
Hans de Goede | e4b1776 | 2011-05-30 11:40:45 +0200 | [diff] [blame] | 1334 | if (dev->dev.speed == USB_SPEED_HIGH && usb_linux_full_speed_compat(dev)) { |
| 1335 | dev->dev.speedmask |= USB_SPEED_MASK_FULL; |
| 1336 | } |
Hans de Goede | 3991c35 | 2011-05-31 11:35:18 +0200 | [diff] [blame] | 1337 | |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 1338 | trace_usb_host_open_success(bus_num, addr); |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1339 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1340 | if (!prod_name || prod_name[0] == '\0') { |
Markus Armbruster | 0fe6d12 | 2009-12-09 17:07:51 +0100 | [diff] [blame] | 1341 | snprintf(dev->dev.product_desc, sizeof(dev->dev.product_desc), |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1342 | "host:%d.%d", bus_num, addr); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1343 | } else { |
Markus Armbruster | 0fe6d12 | 2009-12-09 17:07:51 +0100 | [diff] [blame] | 1344 | pstrcpy(dev->dev.product_desc, sizeof(dev->dev.product_desc), |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1345 | prod_name); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1346 | } |
bellard | 1f6e24e | 2006-06-26 21:00:51 +0000 | [diff] [blame] | 1347 | |
Hans de Goede | fa19bf8 | 2011-05-27 19:05:15 +0200 | [diff] [blame] | 1348 | ret = usb_device_attach(&dev->dev); |
| 1349 | if (ret) { |
| 1350 | goto fail; |
| 1351 | } |
| 1352 | |
aliguori | 6483817 | 2008-08-21 19:31:10 +0000 | [diff] [blame] | 1353 | /* USB devio uses 'write' flag to check for async completions */ |
| 1354 | qemu_set_fd_handler(dev->fd, NULL, async_complete, dev); |
aliguori | 1f3870a | 2008-08-21 19:27:48 +0000 | [diff] [blame] | 1355 | |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1356 | return 0; |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1357 | |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 1358 | fail: |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 1359 | trace_usb_host_open_failure(bus_num, addr); |
Gerd Hoffmann | 1f45a81 | 2011-06-06 09:45:20 +0200 | [diff] [blame] | 1360 | if (dev->fd != -1) { |
| 1361 | close(dev->fd); |
| 1362 | dev->fd = -1; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1363 | } |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1364 | return -1; |
| 1365 | } |
| 1366 | |
| 1367 | static int usb_host_close(USBHostDevice *dev) |
| 1368 | { |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 1369 | int i; |
| 1370 | |
Gerd Hoffmann | 39fba3a | 2011-10-28 16:13:50 +0200 | [diff] [blame] | 1371 | if (dev->fd == -1) { |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1372 | return -1; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1373 | } |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1374 | |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 1375 | trace_usb_host_close(dev->bus_num, dev->addr); |
| 1376 | |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1377 | qemu_set_fd_handler(dev->fd, NULL, NULL, NULL); |
| 1378 | dev->closing = 1; |
Hans de Goede | 3a4854b | 2010-11-26 15:02:16 +0100 | [diff] [blame] | 1379 | for (i = 1; i <= MAX_ENDPOINTS; i++) { |
Gerd Hoffmann | c0e5750 | 2011-08-26 16:27:41 +0200 | [diff] [blame] | 1380 | if (is_isoc(dev, USB_TOKEN_IN, i)) { |
| 1381 | usb_host_stop_n_free_iso(dev, USB_TOKEN_IN, i); |
| 1382 | } |
| 1383 | if (is_isoc(dev, USB_TOKEN_OUT, i)) { |
| 1384 | usb_host_stop_n_free_iso(dev, USB_TOKEN_OUT, i); |
Hans de Goede | 060dc84 | 2010-11-26 11:41:08 +0100 | [diff] [blame] | 1385 | } |
| 1386 | } |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1387 | async_complete(dev); |
| 1388 | dev->closing = 0; |
Gerd Hoffmann | 39fba3a | 2011-10-28 16:13:50 +0200 | [diff] [blame] | 1389 | if (dev->dev.attached) { |
| 1390 | usb_device_detach(&dev->dev); |
| 1391 | } |
Gerd Hoffmann | c7662da | 2011-11-16 12:37:17 +0100 | [diff] [blame] | 1392 | usb_host_do_reset(dev); |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1393 | close(dev->fd); |
| 1394 | dev->fd = -1; |
| 1395 | return 0; |
| 1396 | } |
| 1397 | |
Jan Kiszka | 9e8dd45 | 2011-06-20 14:06:26 +0200 | [diff] [blame] | 1398 | static void usb_host_exit_notifier(struct Notifier *n, void *data) |
Shahar Havivi | b373a63 | 2010-06-16 15:16:11 +0300 | [diff] [blame] | 1399 | { |
| 1400 | USBHostDevice *s = container_of(n, USBHostDevice, exit); |
| 1401 | |
| 1402 | if (s->fd != -1) { |
Gerd Hoffmann | c7662da | 2011-11-16 12:37:17 +0100 | [diff] [blame] | 1403 | usb_host_do_reset(s);; |
Shahar Havivi | b373a63 | 2010-06-16 15:16:11 +0300 | [diff] [blame] | 1404 | } |
| 1405 | } |
| 1406 | |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1407 | static int usb_host_initfn(USBDevice *dev) |
| 1408 | { |
| 1409 | USBHostDevice *s = DO_UPCAST(USBHostDevice, dev, dev); |
| 1410 | |
| 1411 | dev->auto_attach = 0; |
| 1412 | s->fd = -1; |
Gerd Hoffmann | 9516bb4 | 2011-08-24 13:34:17 +0200 | [diff] [blame] | 1413 | s->hub_fd = -1; |
| 1414 | |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1415 | QTAILQ_INSERT_TAIL(&hostdevs, s, next); |
Shahar Havivi | b373a63 | 2010-06-16 15:16:11 +0300 | [diff] [blame] | 1416 | s->exit.notify = usb_host_exit_notifier; |
| 1417 | qemu_add_exit_notifier(&s->exit); |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1418 | usb_host_auto_check(NULL); |
Gerd Hoffmann | 9516bb4 | 2011-08-24 13:34:17 +0200 | [diff] [blame] | 1419 | |
Gerd Hoffmann | 9516bb4 | 2011-08-24 13:34:17 +0200 | [diff] [blame] | 1420 | if (s->match.bus_num != 0 && s->match.port != NULL) { |
Gerd Hoffmann | e627472 | 2011-09-13 11:37:47 +0200 | [diff] [blame] | 1421 | usb_host_claim_port(s); |
Gerd Hoffmann | 9516bb4 | 2011-08-24 13:34:17 +0200 | [diff] [blame] | 1422 | } |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1423 | return 0; |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1424 | } |
| 1425 | |
Gerd Hoffmann | d679157 | 2011-08-31 11:44:24 +0200 | [diff] [blame] | 1426 | static const VMStateDescription vmstate_usb_host = { |
| 1427 | .name = "usb-host", |
| 1428 | .unmigratable = 1, |
| 1429 | }; |
| 1430 | |
Gerd Hoffmann | 806b602 | 2009-08-31 14:23:59 +0200 | [diff] [blame] | 1431 | static struct USBDeviceInfo usb_host_dev_info = { |
Markus Armbruster | 0638469 | 2009-12-09 17:07:52 +0100 | [diff] [blame] | 1432 | .product_desc = "USB Host Device", |
Markus Armbruster | 556cd09 | 2009-12-09 17:07:53 +0100 | [diff] [blame] | 1433 | .qdev.name = "usb-host", |
Gerd Hoffmann | 806b602 | 2009-08-31 14:23:59 +0200 | [diff] [blame] | 1434 | .qdev.size = sizeof(USBHostDevice), |
Gerd Hoffmann | d679157 | 2011-08-31 11:44:24 +0200 | [diff] [blame] | 1435 | .qdev.vmsd = &vmstate_usb_host, |
Gerd Hoffmann | 806b602 | 2009-08-31 14:23:59 +0200 | [diff] [blame] | 1436 | .init = usb_host_initfn, |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 1437 | .handle_packet = usb_generic_handle_packet, |
Gerd Hoffmann | eb5e680 | 2011-05-16 10:34:53 +0200 | [diff] [blame] | 1438 | .cancel_packet = usb_host_async_cancel, |
Hans de Goede | 50b7963 | 2011-02-02 17:36:29 +0100 | [diff] [blame] | 1439 | .handle_data = usb_host_handle_data, |
| 1440 | .handle_control = usb_host_handle_control, |
Gerd Hoffmann | 806b602 | 2009-08-31 14:23:59 +0200 | [diff] [blame] | 1441 | .handle_reset = usb_host_handle_reset, |
Gerd Hoffmann | 806b602 | 2009-08-31 14:23:59 +0200 | [diff] [blame] | 1442 | .handle_destroy = usb_host_handle_destroy, |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1443 | .usbdevice_name = "host", |
| 1444 | .usbdevice_init = usb_host_device_open, |
| 1445 | .qdev.props = (Property[]) { |
| 1446 | DEFINE_PROP_UINT32("hostbus", USBHostDevice, match.bus_num, 0), |
| 1447 | DEFINE_PROP_UINT32("hostaddr", USBHostDevice, match.addr, 0), |
Gerd Hoffmann | 9056a29 | 2011-05-10 12:07:42 +0200 | [diff] [blame] | 1448 | DEFINE_PROP_STRING("hostport", USBHostDevice, match.port), |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1449 | DEFINE_PROP_HEX32("vendorid", USBHostDevice, match.vendor_id, 0), |
| 1450 | DEFINE_PROP_HEX32("productid", USBHostDevice, match.product_id, 0), |
Gerd Hoffmann | b81bcd8 | 2011-06-10 14:03:56 +0200 | [diff] [blame] | 1451 | DEFINE_PROP_UINT32("isobufs", USBHostDevice, iso_urb_count, 4), |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1452 | DEFINE_PROP_END_OF_LIST(), |
| 1453 | }, |
Gerd Hoffmann | 806b602 | 2009-08-31 14:23:59 +0200 | [diff] [blame] | 1454 | }; |
| 1455 | |
| 1456 | static void usb_host_register_devices(void) |
| 1457 | { |
| 1458 | usb_qdev_register(&usb_host_dev_info); |
| 1459 | } |
| 1460 | device_init(usb_host_register_devices) |
| 1461 | |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1462 | USBDevice *usb_host_device_open(const char *devname) |
| 1463 | { |
Markus Armbruster | 0745eb1 | 2009-11-27 13:05:53 +0100 | [diff] [blame] | 1464 | struct USBAutoFilter filter; |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1465 | USBDevice *dev; |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1466 | char *p; |
| 1467 | |
Markus Armbruster | 556cd09 | 2009-12-09 17:07:53 +0100 | [diff] [blame] | 1468 | dev = usb_create(NULL /* FIXME */, "usb-host"); |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1469 | |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1470 | if (strstr(devname, "auto:")) { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1471 | if (parse_filter(devname, &filter) < 0) { |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1472 | goto fail; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1473 | } |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1474 | } else { |
| 1475 | if ((p = strchr(devname, '.'))) { |
Markus Armbruster | 0745eb1 | 2009-11-27 13:05:53 +0100 | [diff] [blame] | 1476 | filter.bus_num = strtoul(devname, NULL, 0); |
| 1477 | filter.addr = strtoul(p + 1, NULL, 0); |
| 1478 | filter.vendor_id = 0; |
| 1479 | filter.product_id = 0; |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1480 | } else if ((p = strchr(devname, ':'))) { |
Markus Armbruster | 0745eb1 | 2009-11-27 13:05:53 +0100 | [diff] [blame] | 1481 | filter.bus_num = 0; |
| 1482 | filter.addr = 0; |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1483 | filter.vendor_id = strtoul(devname, NULL, 16); |
Markus Armbruster | 0745eb1 | 2009-11-27 13:05:53 +0100 | [diff] [blame] | 1484 | filter.product_id = strtoul(p + 1, NULL, 16); |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1485 | } else { |
| 1486 | goto fail; |
| 1487 | } |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1488 | } |
| 1489 | |
Markus Armbruster | 0745eb1 | 2009-11-27 13:05:53 +0100 | [diff] [blame] | 1490 | qdev_prop_set_uint32(&dev->qdev, "hostbus", filter.bus_num); |
| 1491 | qdev_prop_set_uint32(&dev->qdev, "hostaddr", filter.addr); |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1492 | qdev_prop_set_uint32(&dev->qdev, "vendorid", filter.vendor_id); |
| 1493 | qdev_prop_set_uint32(&dev->qdev, "productid", filter.product_id); |
Kevin Wolf | beb6f0d | 2010-01-15 12:56:41 +0100 | [diff] [blame] | 1494 | qdev_init_nofail(&dev->qdev); |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1495 | return dev; |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1496 | |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1497 | fail: |
| 1498 | qdev_free(&dev->qdev); |
| 1499 | return NULL; |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1500 | } |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1501 | |
| 1502 | int usb_host_device_close(const char *devname) |
| 1503 | { |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1504 | #if 0 |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1505 | char product_name[PRODUCT_NAME_SZ]; |
| 1506 | int bus_num, addr; |
| 1507 | USBHostDevice *s; |
| 1508 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1509 | if (strstr(devname, "auto:")) { |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1510 | return usb_host_auto_del(devname); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1511 | } |
| 1512 | if (usb_host_find_device(&bus_num, &addr, product_name, |
| 1513 | sizeof(product_name), devname) < 0) { |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1514 | return -1; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1515 | } |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1516 | s = hostdev_find(bus_num, addr); |
| 1517 | if (s) { |
Gerd Hoffmann | a5d2f72 | 2009-08-31 14:24:00 +0200 | [diff] [blame] | 1518 | usb_device_delete_addr(s->bus_num, s->dev.addr); |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1519 | return 0; |
| 1520 | } |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1521 | #endif |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1522 | |
| 1523 | return -1; |
| 1524 | } |
Gerd Hoffmann | a5d2f72 | 2009-08-31 14:24:00 +0200 | [diff] [blame] | 1525 | |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1526 | static int get_tag_value(char *buf, int buf_size, |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1527 | const char *str, const char *tag, |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1528 | const char *stopchars) |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1529 | { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1530 | const char *p; |
| 1531 | char *q; |
| 1532 | p = strstr(str, tag); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1533 | if (!p) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1534 | return -1; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1535 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1536 | p += strlen(tag); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1537 | while (qemu_isspace(*p)) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1538 | p++; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1539 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1540 | q = buf; |
| 1541 | while (*p != '\0' && !strchr(stopchars, *p)) { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1542 | if ((q - buf) < (buf_size - 1)) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1543 | *q++ = *p; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1544 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1545 | p++; |
| 1546 | } |
| 1547 | *q = '\0'; |
| 1548 | return q - buf; |
| 1549 | } |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1550 | |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1551 | /* |
| 1552 | * Use /proc/bus/usb/devices or /dev/bus/usb/devices file to determine |
| 1553 | * host's USB devices. This is legacy support since many distributions |
| 1554 | * are moving to /sys/bus/usb |
| 1555 | */ |
| 1556 | static int usb_host_scan_dev(void *opaque, USBScanFunc *func) |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1557 | { |
Blue Swirl | 660f11b | 2009-07-31 21:16:51 +0000 | [diff] [blame] | 1558 | FILE *f = NULL; |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1559 | char line[1024]; |
| 1560 | char buf[1024]; |
Gerd Hoffmann | 0c402e5 | 2011-08-17 23:36:46 +0200 | [diff] [blame] | 1561 | int bus_num, addr, speed, device_count; |
| 1562 | int class_id, product_id, vendor_id, port; |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1563 | char product_name[512]; |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1564 | int ret = 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1565 | |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1566 | if (!usb_host_device_path) { |
| 1567 | perror("husb: USB Host Device Path not set"); |
| 1568 | goto the_end; |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1569 | } |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1570 | snprintf(line, sizeof(line), "%s/devices", usb_host_device_path); |
| 1571 | f = fopen(line, "r"); |
| 1572 | if (!f) { |
| 1573 | perror("husb: cannot open devices file"); |
| 1574 | goto the_end; |
| 1575 | } |
| 1576 | |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1577 | device_count = 0; |
Gerd Hoffmann | 0c402e5 | 2011-08-17 23:36:46 +0200 | [diff] [blame] | 1578 | bus_num = addr = class_id = product_id = vendor_id = port = 0; |
Hans de Goede | 3991c35 | 2011-05-31 11:35:18 +0200 | [diff] [blame] | 1579 | speed = -1; /* Can't get the speed from /[proc|dev]/bus/usb/devices */ |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1580 | for(;;) { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1581 | if (fgets(line, sizeof(line), f) == NULL) { |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 1582 | break; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1583 | } |
| 1584 | if (strlen(line) > 0) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1585 | line[strlen(line) - 1] = '\0'; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1586 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1587 | if (line[0] == 'T' && line[1] == ':') { |
pbrook | 38ca0f6 | 2006-03-11 18:03:38 +0000 | [diff] [blame] | 1588 | if (device_count && (vendor_id || product_id)) { |
| 1589 | /* New device. Add the previously discovered device. */ |
Gerd Hoffmann | 0cd0fd0 | 2011-11-11 17:14:15 +0100 | [diff] [blame] | 1590 | if (port > 0) { |
| 1591 | snprintf(buf, sizeof(buf), "%d", port); |
| 1592 | } else { |
| 1593 | snprintf(buf, sizeof(buf), "?"); |
| 1594 | } |
| 1595 | ret = func(opaque, bus_num, addr, buf, class_id, vendor_id, |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1596 | product_id, product_name, speed); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1597 | if (ret) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1598 | goto the_end; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1599 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1600 | } |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1601 | if (get_tag_value(buf, sizeof(buf), line, "Bus=", " ") < 0) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1602 | goto fail; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1603 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1604 | bus_num = atoi(buf); |
Gerd Hoffmann | 0c402e5 | 2011-08-17 23:36:46 +0200 | [diff] [blame] | 1605 | if (get_tag_value(buf, sizeof(buf), line, "Port=", " ") < 0) { |
| 1606 | goto fail; |
| 1607 | } |
| 1608 | port = atoi(buf); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1609 | if (get_tag_value(buf, sizeof(buf), line, "Dev#=", " ") < 0) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1610 | goto fail; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1611 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1612 | addr = atoi(buf); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1613 | if (get_tag_value(buf, sizeof(buf), line, "Spd=", " ") < 0) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1614 | goto fail; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1615 | } |
Hans de Goede | f264cfb | 2011-05-31 11:35:19 +0200 | [diff] [blame] | 1616 | if (!strcmp(buf, "5000")) { |
| 1617 | speed = USB_SPEED_SUPER; |
| 1618 | } else if (!strcmp(buf, "480")) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1619 | speed = USB_SPEED_HIGH; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1620 | } else if (!strcmp(buf, "1.5")) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1621 | speed = USB_SPEED_LOW; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1622 | } else { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1623 | speed = USB_SPEED_FULL; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1624 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1625 | product_name[0] = '\0'; |
| 1626 | class_id = 0xff; |
| 1627 | device_count++; |
| 1628 | product_id = 0; |
| 1629 | vendor_id = 0; |
| 1630 | } else if (line[0] == 'P' && line[1] == ':') { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1631 | if (get_tag_value(buf, sizeof(buf), line, "Vendor=", " ") < 0) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1632 | goto fail; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1633 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1634 | vendor_id = strtoul(buf, NULL, 16); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1635 | if (get_tag_value(buf, sizeof(buf), line, "ProdID=", " ") < 0) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1636 | goto fail; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1637 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1638 | product_id = strtoul(buf, NULL, 16); |
| 1639 | } else if (line[0] == 'S' && line[1] == ':') { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1640 | if (get_tag_value(buf, sizeof(buf), line, "Product=", "") < 0) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1641 | goto fail; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1642 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1643 | pstrcpy(product_name, sizeof(product_name), buf); |
| 1644 | } else if (line[0] == 'D' && line[1] == ':') { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1645 | if (get_tag_value(buf, sizeof(buf), line, "Cls=", " (") < 0) { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1646 | goto fail; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1647 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1648 | class_id = strtoul(buf, NULL, 16); |
| 1649 | } |
| 1650 | fail: ; |
| 1651 | } |
pbrook | 38ca0f6 | 2006-03-11 18:03:38 +0000 | [diff] [blame] | 1652 | if (device_count && (vendor_id || product_id)) { |
| 1653 | /* Add the last device. */ |
Gerd Hoffmann | 0c402e5 | 2011-08-17 23:36:46 +0200 | [diff] [blame] | 1654 | if (port > 0) { |
| 1655 | snprintf(buf, sizeof(buf), "%d", port); |
| 1656 | } else { |
| 1657 | snprintf(buf, sizeof(buf), "?"); |
| 1658 | } |
| 1659 | ret = func(opaque, bus_num, addr, buf, class_id, vendor_id, |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1660 | product_id, product_name, speed); |
| 1661 | } |
| 1662 | the_end: |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1663 | if (f) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1664 | fclose(f); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1665 | } |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1666 | return ret; |
| 1667 | } |
| 1668 | |
| 1669 | /* |
| 1670 | * Read sys file-system device file |
| 1671 | * |
| 1672 | * @line address of buffer to put file contents in |
| 1673 | * @line_size size of line |
| 1674 | * @device_file path to device file (printf format string) |
| 1675 | * @device_name device being opened (inserted into device_file) |
| 1676 | * |
| 1677 | * @return 0 failed, 1 succeeded ('line' contains data) |
| 1678 | */ |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1679 | static int usb_host_read_file(char *line, size_t line_size, |
| 1680 | const char *device_file, const char *device_name) |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1681 | { |
| 1682 | FILE *f; |
| 1683 | int ret = 0; |
| 1684 | char filename[PATH_MAX]; |
| 1685 | |
blueswir1 | b4e237a | 2008-12-28 15:45:20 +0000 | [diff] [blame] | 1686 | snprintf(filename, PATH_MAX, USBSYSBUS_PATH "/devices/%s/%s", device_name, |
| 1687 | device_file); |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1688 | f = fopen(filename, "r"); |
| 1689 | if (f) { |
Kirill A. Shutemov | 9f99cee | 2010-01-20 00:56:17 +0100 | [diff] [blame] | 1690 | ret = fgets(line, line_size, f) != NULL; |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1691 | fclose(f); |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1692 | } |
| 1693 | |
| 1694 | return ret; |
| 1695 | } |
| 1696 | |
| 1697 | /* |
| 1698 | * Use /sys/bus/usb/devices/ directory to determine host's USB |
| 1699 | * devices. |
| 1700 | * |
| 1701 | * This code is based on Robert Schiele's original patches posted to |
| 1702 | * the Novell bug-tracker https://bugzilla.novell.com/show_bug.cgi?id=241950 |
| 1703 | */ |
| 1704 | static int usb_host_scan_sys(void *opaque, USBScanFunc *func) |
| 1705 | { |
Blue Swirl | 660f11b | 2009-07-31 21:16:51 +0000 | [diff] [blame] | 1706 | DIR *dir = NULL; |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1707 | char line[1024]; |
Gerd Hoffmann | 5557d82 | 2011-05-10 11:43:57 +0200 | [diff] [blame] | 1708 | int bus_num, addr, speed, class_id, product_id, vendor_id; |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1709 | int ret = 0; |
Gerd Hoffmann | 5557d82 | 2011-05-10 11:43:57 +0200 | [diff] [blame] | 1710 | char port[MAX_PORTLEN]; |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1711 | char product_name[512]; |
| 1712 | struct dirent *de; |
| 1713 | |
| 1714 | dir = opendir(USBSYSBUS_PATH "/devices"); |
| 1715 | if (!dir) { |
| 1716 | perror("husb: cannot open devices directory"); |
| 1717 | goto the_end; |
| 1718 | } |
| 1719 | |
| 1720 | while ((de = readdir(dir))) { |
| 1721 | if (de->d_name[0] != '.' && !strchr(de->d_name, ':')) { |
Gerd Hoffmann | 5557d82 | 2011-05-10 11:43:57 +0200 | [diff] [blame] | 1722 | if (sscanf(de->d_name, "%d-%7[0-9.]", &bus_num, port) < 2) { |
| 1723 | continue; |
Hans de Goede | 0f5160d | 2010-11-10 10:06:23 +0100 | [diff] [blame] | 1724 | } |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1725 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1726 | if (!usb_host_read_file(line, sizeof(line), "devnum", de->d_name)) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1727 | goto the_end; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1728 | } |
| 1729 | if (sscanf(line, "%d", &addr) != 1) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1730 | goto the_end; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1731 | } |
blueswir1 | b4e237a | 2008-12-28 15:45:20 +0000 | [diff] [blame] | 1732 | if (!usb_host_read_file(line, sizeof(line), "bDeviceClass", |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1733 | de->d_name)) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1734 | goto the_end; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1735 | } |
| 1736 | if (sscanf(line, "%x", &class_id) != 1) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1737 | goto the_end; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1738 | } |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1739 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1740 | if (!usb_host_read_file(line, sizeof(line), "idVendor", |
| 1741 | de->d_name)) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1742 | goto the_end; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1743 | } |
| 1744 | if (sscanf(line, "%x", &vendor_id) != 1) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1745 | goto the_end; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1746 | } |
blueswir1 | b4e237a | 2008-12-28 15:45:20 +0000 | [diff] [blame] | 1747 | if (!usb_host_read_file(line, sizeof(line), "idProduct", |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1748 | de->d_name)) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1749 | goto the_end; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1750 | } |
| 1751 | if (sscanf(line, "%x", &product_id) != 1) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1752 | goto the_end; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1753 | } |
blueswir1 | b4e237a | 2008-12-28 15:45:20 +0000 | [diff] [blame] | 1754 | if (!usb_host_read_file(line, sizeof(line), "product", |
| 1755 | de->d_name)) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1756 | *product_name = 0; |
| 1757 | } else { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1758 | if (strlen(line) > 0) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1759 | line[strlen(line) - 1] = '\0'; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1760 | } |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1761 | pstrcpy(product_name, sizeof(product_name), line); |
| 1762 | } |
| 1763 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1764 | if (!usb_host_read_file(line, sizeof(line), "speed", de->d_name)) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1765 | goto the_end; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1766 | } |
Hans de Goede | f264cfb | 2011-05-31 11:35:19 +0200 | [diff] [blame] | 1767 | if (!strcmp(line, "5000\n")) { |
| 1768 | speed = USB_SPEED_SUPER; |
| 1769 | } else if (!strcmp(line, "480\n")) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1770 | speed = USB_SPEED_HIGH; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1771 | } else if (!strcmp(line, "1.5\n")) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1772 | speed = USB_SPEED_LOW; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1773 | } else { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1774 | speed = USB_SPEED_FULL; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1775 | } |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1776 | |
Gerd Hoffmann | 5557d82 | 2011-05-10 11:43:57 +0200 | [diff] [blame] | 1777 | ret = func(opaque, bus_num, addr, port, class_id, vendor_id, |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1778 | product_id, product_name, speed); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1779 | if (ret) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1780 | goto the_end; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1781 | } |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1782 | } |
| 1783 | } |
| 1784 | the_end: |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1785 | if (dir) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1786 | closedir(dir); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1787 | } |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1788 | return ret; |
| 1789 | } |
| 1790 | |
| 1791 | /* |
| 1792 | * Determine how to access the host's USB devices and call the |
| 1793 | * specific support function. |
| 1794 | */ |
| 1795 | static int usb_host_scan(void *opaque, USBScanFunc *func) |
| 1796 | { |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 1797 | Monitor *mon = cur_mon; |
Blue Swirl | 660f11b | 2009-07-31 21:16:51 +0000 | [diff] [blame] | 1798 | FILE *f = NULL; |
| 1799 | DIR *dir = NULL; |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1800 | int ret = 0; |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1801 | const char *fs_type[] = {"unknown", "proc", "dev", "sys"}; |
| 1802 | char devpath[PATH_MAX]; |
| 1803 | |
| 1804 | /* only check the host once */ |
| 1805 | if (!usb_fs_type) { |
Mark McLoughlin | 5549624 | 2009-07-03 09:28:02 +0100 | [diff] [blame] | 1806 | dir = opendir(USBSYSBUS_PATH "/devices"); |
| 1807 | if (dir) { |
| 1808 | /* devices found in /dev/bus/usb/ (yes - not a mistake!) */ |
| 1809 | strcpy(devpath, USBDEVBUS_PATH); |
| 1810 | usb_fs_type = USB_FS_SYS; |
| 1811 | closedir(dir); |
malc | d0f2c4c | 2010-02-07 02:03:50 +0300 | [diff] [blame] | 1812 | DPRINTF(USBDBG_DEVOPENED, USBSYSBUS_PATH); |
Mark McLoughlin | 5549624 | 2009-07-03 09:28:02 +0100 | [diff] [blame] | 1813 | goto found_devices; |
| 1814 | } |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1815 | f = fopen(USBPROCBUS_PATH "/devices", "r"); |
| 1816 | if (f) { |
| 1817 | /* devices found in /proc/bus/usb/ */ |
| 1818 | strcpy(devpath, USBPROCBUS_PATH); |
| 1819 | usb_fs_type = USB_FS_PROC; |
| 1820 | fclose(f); |
malc | d0f2c4c | 2010-02-07 02:03:50 +0300 | [diff] [blame] | 1821 | DPRINTF(USBDBG_DEVOPENED, USBPROCBUS_PATH); |
aliguori | f16a0db | 2008-10-21 16:34:20 +0000 | [diff] [blame] | 1822 | goto found_devices; |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1823 | } |
| 1824 | /* try additional methods if an access method hasn't been found yet */ |
| 1825 | f = fopen(USBDEVBUS_PATH "/devices", "r"); |
aliguori | f16a0db | 2008-10-21 16:34:20 +0000 | [diff] [blame] | 1826 | if (f) { |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1827 | /* devices found in /dev/bus/usb/ */ |
| 1828 | strcpy(devpath, USBDEVBUS_PATH); |
| 1829 | usb_fs_type = USB_FS_DEV; |
| 1830 | fclose(f); |
malc | d0f2c4c | 2010-02-07 02:03:50 +0300 | [diff] [blame] | 1831 | DPRINTF(USBDBG_DEVOPENED, USBDEVBUS_PATH); |
aliguori | f16a0db | 2008-10-21 16:34:20 +0000 | [diff] [blame] | 1832 | goto found_devices; |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1833 | } |
aliguori | f16a0db | 2008-10-21 16:34:20 +0000 | [diff] [blame] | 1834 | found_devices: |
aliguori | 22babeb | 2008-10-21 16:27:28 +0000 | [diff] [blame] | 1835 | if (!usb_fs_type) { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1836 | if (mon) { |
Gerd Hoffmann | eba6fe8 | 2009-12-15 11:43:02 +0100 | [diff] [blame] | 1837 | monitor_printf(mon, "husb: unable to access USB devices\n"); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1838 | } |
aliguori | f16a0db | 2008-10-21 16:34:20 +0000 | [diff] [blame] | 1839 | return -ENOENT; |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1840 | } |
| 1841 | |
| 1842 | /* the module setting (used later for opening devices) */ |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 1843 | usb_host_device_path = g_malloc0(strlen(devpath)+1); |
aliguori | 1eec614 | 2009-02-05 22:06:18 +0000 | [diff] [blame] | 1844 | strcpy(usb_host_device_path, devpath); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1845 | if (mon) { |
Gerd Hoffmann | eba6fe8 | 2009-12-15 11:43:02 +0100 | [diff] [blame] | 1846 | monitor_printf(mon, "husb: using %s file-system with %s\n", |
| 1847 | fs_type[usb_fs_type], usb_host_device_path); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1848 | } |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1849 | } |
| 1850 | |
| 1851 | switch (usb_fs_type) { |
| 1852 | case USB_FS_PROC: |
| 1853 | case USB_FS_DEV: |
| 1854 | ret = usb_host_scan_dev(opaque, func); |
| 1855 | break; |
| 1856 | case USB_FS_SYS: |
| 1857 | ret = usb_host_scan_sys(opaque, func); |
| 1858 | break; |
aliguori | f16a0db | 2008-10-21 16:34:20 +0000 | [diff] [blame] | 1859 | default: |
| 1860 | ret = -EINVAL; |
| 1861 | break; |
aliguori | 0f43152 | 2008-10-07 20:06:37 +0000 | [diff] [blame] | 1862 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 1863 | return ret; |
| 1864 | } |
| 1865 | |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1866 | static QEMUTimer *usb_auto_timer; |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1867 | |
Gerd Hoffmann | ba9acab | 2011-08-17 23:35:45 +0200 | [diff] [blame] | 1868 | static int usb_host_auto_scan(void *opaque, int bus_num, |
| 1869 | int addr, const char *port, |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1870 | int class_id, int vendor_id, int product_id, |
| 1871 | const char *product_name, int speed) |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1872 | { |
| 1873 | struct USBAutoFilter *f; |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1874 | struct USBHostDevice *s; |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1875 | |
| 1876 | /* Ignore hubs */ |
| 1877 | if (class_id == 9) |
| 1878 | return 0; |
| 1879 | |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1880 | QTAILQ_FOREACH(s, &hostdevs, next) { |
| 1881 | f = &s->match; |
| 1882 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1883 | if (f->bus_num > 0 && f->bus_num != bus_num) { |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1884 | continue; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1885 | } |
| 1886 | if (f->addr > 0 && f->addr != addr) { |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1887 | continue; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1888 | } |
Gerd Hoffmann | 9056a29 | 2011-05-10 12:07:42 +0200 | [diff] [blame] | 1889 | if (f->port != NULL && (port == NULL || strcmp(f->port, port) != 0)) { |
| 1890 | continue; |
| 1891 | } |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1892 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1893 | if (f->vendor_id > 0 && f->vendor_id != vendor_id) { |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1894 | continue; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1895 | } |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1896 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1897 | if (f->product_id > 0 && f->product_id != product_id) { |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1898 | continue; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1899 | } |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1900 | /* We got a match */ |
Gerd Hoffmann | 3ee886c | 2011-08-24 13:45:06 +0200 | [diff] [blame] | 1901 | s->seen++; |
| 1902 | if (s->errcount >= 3) { |
| 1903 | return 0; |
| 1904 | } |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1905 | |
Markus Armbruster | 33e66b8 | 2009-10-07 01:15:57 +0200 | [diff] [blame] | 1906 | /* Already attached ? */ |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1907 | if (s->fd != -1) { |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1908 | return 0; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1909 | } |
malc | d0f2c4c | 2010-02-07 02:03:50 +0300 | [diff] [blame] | 1910 | DPRINTF("husb: auto open: bus_num %d addr %d\n", bus_num, addr); |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1911 | |
Gerd Hoffmann | 3ee886c | 2011-08-24 13:45:06 +0200 | [diff] [blame] | 1912 | if (usb_host_open(s, bus_num, addr, port, product_name, speed) < 0) { |
| 1913 | s->errcount++; |
| 1914 | } |
Hans de Goede | 97f8616 | 2011-05-31 11:35:24 +0200 | [diff] [blame] | 1915 | break; |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1916 | } |
| 1917 | |
| 1918 | return 0; |
| 1919 | } |
| 1920 | |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1921 | static void usb_host_auto_check(void *unused) |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1922 | { |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1923 | struct USBHostDevice *s; |
| 1924 | int unconnected = 0; |
| 1925 | |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1926 | usb_host_scan(NULL, usb_host_auto_scan); |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1927 | |
| 1928 | QTAILQ_FOREACH(s, &hostdevs, next) { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1929 | if (s->fd == -1) { |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1930 | unconnected++; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1931 | } |
Gerd Hoffmann | 3ee886c | 2011-08-24 13:45:06 +0200 | [diff] [blame] | 1932 | if (s->seen == 0) { |
| 1933 | s->errcount = 0; |
| 1934 | } |
| 1935 | s->seen = 0; |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1936 | } |
| 1937 | |
| 1938 | if (unconnected == 0) { |
| 1939 | /* nothing to watch */ |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1940 | if (usb_auto_timer) { |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1941 | qemu_del_timer(usb_auto_timer); |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 1942 | trace_usb_host_auto_scan_disabled(); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1943 | } |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1944 | return; |
| 1945 | } |
| 1946 | |
| 1947 | if (!usb_auto_timer) { |
Paolo Bonzini | 7bd427d | 2011-03-11 16:47:48 +0100 | [diff] [blame] | 1948 | usb_auto_timer = qemu_new_timer_ms(rt_clock, usb_host_auto_check, NULL); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1949 | if (!usb_auto_timer) { |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1950 | return; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1951 | } |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 1952 | trace_usb_host_auto_scan_enabled(); |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 1953 | } |
Paolo Bonzini | 7bd427d | 2011-03-11 16:47:48 +0100 | [diff] [blame] | 1954 | qemu_mod_timer(usb_auto_timer, qemu_get_clock_ms(rt_clock) + 2000); |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1955 | } |
| 1956 | |
| 1957 | /* |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1958 | * Autoconnect filter |
| 1959 | * Format: |
| 1960 | * auto:bus:dev[:vid:pid] |
| 1961 | * auto:bus.dev[:vid:pid] |
| 1962 | * |
| 1963 | * bus - bus number (dec, * means any) |
| 1964 | * dev - device number (dec, * means any) |
| 1965 | * vid - vendor id (hex, * means any) |
| 1966 | * pid - product id (hex, * means any) |
| 1967 | * |
| 1968 | * See 'lsusb' output. |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1969 | */ |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1970 | static int parse_filter(const char *spec, struct USBAutoFilter *f) |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1971 | { |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1972 | enum { BUS, DEV, VID, PID, DONE }; |
| 1973 | const char *p = spec; |
| 1974 | int i; |
| 1975 | |
Markus Armbruster | 0745eb1 | 2009-11-27 13:05:53 +0100 | [diff] [blame] | 1976 | f->bus_num = 0; |
| 1977 | f->addr = 0; |
| 1978 | f->vendor_id = 0; |
| 1979 | f->product_id = 0; |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1980 | |
| 1981 | for (i = BUS; i < DONE; i++) { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1982 | p = strpbrk(p, ":."); |
| 1983 | if (!p) { |
| 1984 | break; |
| 1985 | } |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1986 | p++; |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1987 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 1988 | if (*p == '*') { |
| 1989 | continue; |
| 1990 | } |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1991 | switch(i) { |
| 1992 | case BUS: f->bus_num = strtol(p, NULL, 10); break; |
| 1993 | case DEV: f->addr = strtol(p, NULL, 10); break; |
| 1994 | case VID: f->vendor_id = strtol(p, NULL, 16); break; |
| 1995 | case PID: f->product_id = strtol(p, NULL, 16); break; |
| 1996 | } |
aliguori | 4b096fc | 2008-08-21 19:28:55 +0000 | [diff] [blame] | 1997 | } |
| 1998 | |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 1999 | if (i < DEV) { |
| 2000 | fprintf(stderr, "husb: invalid auto filter spec %s\n", spec); |
| 2001 | return -1; |
| 2002 | } |
| 2003 | |
| 2004 | return 0; |
| 2005 | } |
| 2006 | |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2007 | /**********************/ |
| 2008 | /* USB host device info */ |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 2009 | |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2010 | struct usb_class_info { |
| 2011 | int class; |
| 2012 | const char *class_name; |
| 2013 | }; |
| 2014 | |
| 2015 | static const struct usb_class_info usb_class_info[] = { |
| 2016 | { USB_CLASS_AUDIO, "Audio"}, |
| 2017 | { USB_CLASS_COMM, "Communication"}, |
| 2018 | { USB_CLASS_HID, "HID"}, |
| 2019 | { USB_CLASS_HUB, "Hub" }, |
| 2020 | { USB_CLASS_PHYSICAL, "Physical" }, |
| 2021 | { USB_CLASS_PRINTER, "Printer" }, |
| 2022 | { USB_CLASS_MASS_STORAGE, "Storage" }, |
| 2023 | { USB_CLASS_CDC_DATA, "Data" }, |
| 2024 | { USB_CLASS_APP_SPEC, "Application Specific" }, |
| 2025 | { USB_CLASS_VENDOR_SPEC, "Vendor Specific" }, |
| 2026 | { USB_CLASS_STILL_IMAGE, "Still Image" }, |
balrog | b9dc033 | 2007-10-04 22:47:34 +0000 | [diff] [blame] | 2027 | { USB_CLASS_CSCID, "Smart Card" }, |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2028 | { USB_CLASS_CONTENT_SEC, "Content Security" }, |
| 2029 | { -1, NULL } |
| 2030 | }; |
| 2031 | |
| 2032 | static const char *usb_class_str(uint8_t class) |
| 2033 | { |
| 2034 | const struct usb_class_info *p; |
| 2035 | for(p = usb_class_info; p->class != -1; p++) { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2036 | if (p->class == class) { |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 2037 | break; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2038 | } |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 2039 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2040 | return p->class_name; |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 2041 | } |
| 2042 | |
Gerd Hoffmann | ba9acab | 2011-08-17 23:35:45 +0200 | [diff] [blame] | 2043 | static void usb_info_device(Monitor *mon, int bus_num, |
| 2044 | int addr, const char *port, |
Gerd Hoffmann | 5557d82 | 2011-05-10 11:43:57 +0200 | [diff] [blame] | 2045 | int class_id, int vendor_id, int product_id, |
pbrook | 9596ebb | 2007-11-18 01:44:38 +0000 | [diff] [blame] | 2046 | const char *product_name, |
| 2047 | int speed) |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 2048 | { |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2049 | const char *class_str, *speed_str; |
| 2050 | |
| 2051 | switch(speed) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2052 | case USB_SPEED_LOW: |
| 2053 | speed_str = "1.5"; |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2054 | break; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2055 | case USB_SPEED_FULL: |
| 2056 | speed_str = "12"; |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2057 | break; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2058 | case USB_SPEED_HIGH: |
| 2059 | speed_str = "480"; |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2060 | break; |
Hans de Goede | f264cfb | 2011-05-31 11:35:19 +0200 | [diff] [blame] | 2061 | case USB_SPEED_SUPER: |
| 2062 | speed_str = "5000"; |
| 2063 | break; |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2064 | default: |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2065 | speed_str = "?"; |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2066 | break; |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 2067 | } |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2068 | |
Gerd Hoffmann | 5557d82 | 2011-05-10 11:43:57 +0200 | [diff] [blame] | 2069 | monitor_printf(mon, " Bus %d, Addr %d, Port %s, Speed %s Mb/s\n", |
| 2070 | bus_num, addr, port, speed_str); |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2071 | class_str = usb_class_str(class_id); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2072 | if (class_str) { |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 2073 | monitor_printf(mon, " %s:", class_str); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2074 | } else { |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 2075 | monitor_printf(mon, " Class %02x:", class_id); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2076 | } |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 2077 | monitor_printf(mon, " USB device %04x:%04x", vendor_id, product_id); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2078 | if (product_name[0] != '\0') { |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 2079 | monitor_printf(mon, ", %s", product_name); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2080 | } |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 2081 | monitor_printf(mon, "\n"); |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2082 | } |
| 2083 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2084 | static int usb_host_info_device(void *opaque, int bus_num, int addr, |
Gerd Hoffmann | ba9acab | 2011-08-17 23:35:45 +0200 | [diff] [blame] | 2085 | const char *path, int class_id, |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2086 | int vendor_id, int product_id, |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2087 | const char *product_name, |
| 2088 | int speed) |
| 2089 | { |
Blue Swirl | 179da8a | 2009-09-07 19:00:18 +0000 | [diff] [blame] | 2090 | Monitor *mon = opaque; |
| 2091 | |
Gerd Hoffmann | 5557d82 | 2011-05-10 11:43:57 +0200 | [diff] [blame] | 2092 | usb_info_device(mon, bus_num, addr, path, class_id, vendor_id, product_id, |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2093 | product_name, speed); |
| 2094 | return 0; |
| 2095 | } |
| 2096 | |
aliguori | ac4ffb5 | 2008-09-22 15:04:31 +0000 | [diff] [blame] | 2097 | static void dec2str(int val, char *str, size_t size) |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 2098 | { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2099 | if (val == 0) { |
aliguori | ac4ffb5 | 2008-09-22 15:04:31 +0000 | [diff] [blame] | 2100 | snprintf(str, size, "*"); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2101 | } else { |
| 2102 | snprintf(str, size, "%d", val); |
| 2103 | } |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 2104 | } |
| 2105 | |
aliguori | ac4ffb5 | 2008-09-22 15:04:31 +0000 | [diff] [blame] | 2106 | static void hex2str(int val, char *str, size_t size) |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 2107 | { |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2108 | if (val == 0) { |
aliguori | ac4ffb5 | 2008-09-22 15:04:31 +0000 | [diff] [blame] | 2109 | snprintf(str, size, "*"); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2110 | } else { |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 2111 | snprintf(str, size, "%04x", val); |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2112 | } |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 2113 | } |
| 2114 | |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 2115 | void usb_host_info(Monitor *mon) |
bellard | a594cfb | 2005-11-06 16:13:29 +0000 | [diff] [blame] | 2116 | { |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 2117 | struct USBAutoFilter *f; |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 2118 | struct USBHostDevice *s; |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 2119 | |
Blue Swirl | 179da8a | 2009-09-07 19:00:18 +0000 | [diff] [blame] | 2120 | usb_host_scan(mon, usb_host_info_device); |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 2121 | |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2122 | if (QTAILQ_EMPTY(&hostdevs)) { |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 2123 | return; |
David Ahern | 2791104 | 2010-04-24 10:26:22 -0600 | [diff] [blame] | 2124 | } |
| 2125 | |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 2126 | monitor_printf(mon, " Auto filters:\n"); |
| 2127 | QTAILQ_FOREACH(s, &hostdevs, next) { |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 2128 | char bus[10], addr[10], vid[10], pid[10]; |
Gerd Hoffmann | 26a9e82 | 2009-10-26 15:56:50 +0100 | [diff] [blame] | 2129 | f = &s->match; |
aliguori | ac4ffb5 | 2008-09-22 15:04:31 +0000 | [diff] [blame] | 2130 | dec2str(f->bus_num, bus, sizeof(bus)); |
| 2131 | dec2str(f->addr, addr, sizeof(addr)); |
| 2132 | hex2str(f->vendor_id, vid, sizeof(vid)); |
| 2133 | hex2str(f->product_id, pid, sizeof(pid)); |
Gerd Hoffmann | 9056a29 | 2011-05-10 12:07:42 +0200 | [diff] [blame] | 2134 | monitor_printf(mon, " Bus %s, Addr %s, Port %s, ID %s:%s\n", |
| 2135 | bus, addr, f->port ? f->port : "*", vid, pid); |
aliguori | 5d0c575 | 2008-09-14 01:07:41 +0000 | [diff] [blame] | 2136 | } |
bellard | bb36d47 | 2005-11-05 14:22:28 +0000 | [diff] [blame] | 2137 | } |