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