Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/kernel.h> |
| 2 | #include <linux/errno.h> |
| 3 | #include <linux/init.h> |
| 4 | #include <linux/slab.h> |
| 5 | #include <linux/mm.h> |
| 6 | #include <linux/module.h> |
| 7 | #include <linux/moduleparam.h> |
David Hardeman | 378f058 | 2005-09-17 17:55:31 +1000 | [diff] [blame] | 8 | #include <linux/scatterlist.h> |
Matthias Kaehlcke | 1cfab02 | 2007-12-13 16:15:33 -0800 | [diff] [blame] | 9 | #include <linux/mutex.h> |
Alan Stern | 32b36ee | 2014-06-03 11:11:34 -0400 | [diff] [blame] | 10 | #include <linux/timer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/usb.h> |
| 12 | |
Roger Quadros | e5e4746 | 2013-12-18 15:40:10 +0530 | [diff] [blame] | 13 | #define SIMPLE_IO_TIMEOUT 10000 /* in milliseconds */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
| 15 | /*-------------------------------------------------------------------------*/ |
| 16 | |
Alan Stern | d0b4652 | 2013-01-30 16:38:11 -0500 | [diff] [blame] | 17 | static int override_alt = -1; |
| 18 | module_param_named(alt, override_alt, int, 0644); |
| 19 | MODULE_PARM_DESC(alt, ">= 0 to override altsetting selection"); |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 20 | static void complicated_callback(struct urb *urb); |
Alan Stern | d0b4652 | 2013-01-30 16:38:11 -0500 | [diff] [blame] | 21 | |
| 22 | /*-------------------------------------------------------------------------*/ |
| 23 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 24 | /* FIXME make these public somewhere; usbdevfs.h? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | struct usbtest_param { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 26 | /* inputs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | unsigned test_num; /* 0..(TEST_CASES-1) */ |
| 28 | unsigned iterations; |
| 29 | unsigned length; |
| 30 | unsigned vary; |
| 31 | unsigned sglen; |
| 32 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 33 | /* outputs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | struct timeval duration; |
| 35 | }; |
| 36 | #define USBTEST_REQUEST _IOWR('U', 100, struct usbtest_param) |
| 37 | |
| 38 | /*-------------------------------------------------------------------------*/ |
| 39 | |
| 40 | #define GENERIC /* let probe() bind using module params */ |
| 41 | |
| 42 | /* Some devices that can be used for testing will have "real" drivers. |
| 43 | * Entries for those need to be enabled here by hand, after disabling |
| 44 | * that "real" driver. |
| 45 | */ |
| 46 | //#define IBOT2 /* grab iBOT2 webcams */ |
| 47 | //#define KEYSPAN_19Qi /* grab un-renumerated serial adapter */ |
| 48 | |
| 49 | /*-------------------------------------------------------------------------*/ |
| 50 | |
| 51 | struct usbtest_info { |
| 52 | const char *name; |
| 53 | u8 ep_in; /* bulk/intr source */ |
| 54 | u8 ep_out; /* bulk/intr sink */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 55 | unsigned autoconf:1; |
| 56 | unsigned ctrl_out:1; |
| 57 | unsigned iso:1; /* try iso in/out */ |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 58 | unsigned intr:1; /* try interrupt in/out */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | int alt; |
| 60 | }; |
| 61 | |
| 62 | /* this is accessed only through usbfs ioctl calls. |
| 63 | * one ioctl to issue a test ... one lock per device. |
| 64 | * tests create other threads if they need them. |
| 65 | * urbs and buffers are allocated dynamically, |
| 66 | * and data generated deterministically. |
| 67 | */ |
| 68 | struct usbtest_dev { |
| 69 | struct usb_interface *intf; |
| 70 | struct usbtest_info *info; |
| 71 | int in_pipe; |
| 72 | int out_pipe; |
| 73 | int in_iso_pipe; |
| 74 | int out_iso_pipe; |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 75 | int in_int_pipe; |
| 76 | int out_int_pipe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | struct usb_endpoint_descriptor *iso_in, *iso_out; |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 78 | struct usb_endpoint_descriptor *int_in, *int_out; |
Matthias Kaehlcke | 1cfab02 | 2007-12-13 16:15:33 -0800 | [diff] [blame] | 79 | struct mutex lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
| 81 | #define TBUF_SIZE 256 |
| 82 | u8 *buf; |
| 83 | }; |
| 84 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 85 | static struct usb_device *testdev_to_usbdev(struct usbtest_dev *test) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 87 | return interface_to_usbdev(test->intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | /* set up all urbs so they can be used with either bulk or interrupt */ |
| 91 | #define INTERRUPT_RATE 1 /* msec/transfer */ |
| 92 | |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 93 | #define ERROR(tdev, fmt, args...) \ |
| 94 | dev_err(&(tdev)->intf->dev , fmt , ## args) |
Arjan van de Ven | b6c6393 | 2008-07-25 01:45:52 -0700 | [diff] [blame] | 95 | #define WARNING(tdev, fmt, args...) \ |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 96 | dev_warn(&(tdev)->intf->dev , fmt , ## args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 98 | #define GUARD_BYTE 0xA5 |
Peter Chen | 41d3c0b | 2015-09-01 09:47:58 +0800 | [diff] [blame] | 99 | #define MAX_SGLEN 128 |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | /*-------------------------------------------------------------------------*/ |
| 102 | |
| 103 | static int |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 104 | get_endpoints(struct usbtest_dev *dev, struct usb_interface *intf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | { |
| 106 | int tmp; |
| 107 | struct usb_host_interface *alt; |
| 108 | struct usb_host_endpoint *in, *out; |
| 109 | struct usb_host_endpoint *iso_in, *iso_out; |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 110 | struct usb_host_endpoint *int_in, *int_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | struct usb_device *udev; |
| 112 | |
| 113 | for (tmp = 0; tmp < intf->num_altsetting; tmp++) { |
| 114 | unsigned ep; |
| 115 | |
| 116 | in = out = NULL; |
| 117 | iso_in = iso_out = NULL; |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 118 | int_in = int_out = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | alt = intf->altsetting + tmp; |
| 120 | |
Alan Stern | d0b4652 | 2013-01-30 16:38:11 -0500 | [diff] [blame] | 121 | if (override_alt >= 0 && |
| 122 | override_alt != alt->desc.bAlternateSetting) |
| 123 | continue; |
| 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | /* take the first altsetting with in-bulk + out-bulk; |
Justin P. Mattock | 70f23fd | 2011-05-10 10:16:21 +0200 | [diff] [blame] | 126 | * ignore other endpoints and altsettings. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | */ |
| 128 | for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) { |
| 129 | struct usb_host_endpoint *e; |
| 130 | |
| 131 | e = alt->endpoint + ep; |
Huang Rui | 9a37a50 | 2013-09-24 00:03:43 +0800 | [diff] [blame] | 132 | switch (usb_endpoint_type(&e->desc)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | case USB_ENDPOINT_XFER_BULK: |
| 134 | break; |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 135 | case USB_ENDPOINT_XFER_INT: |
| 136 | if (dev->info->intr) |
| 137 | goto try_intr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | case USB_ENDPOINT_XFER_ISOC: |
| 139 | if (dev->info->iso) |
| 140 | goto try_iso; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 141 | /* FALLTHROUGH */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | default: |
| 143 | continue; |
| 144 | } |
Luiz Fernando N. Capitulino | 4d823dd | 2006-10-26 13:03:02 -0300 | [diff] [blame] | 145 | if (usb_endpoint_dir_in(&e->desc)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | if (!in) |
| 147 | in = e; |
| 148 | } else { |
| 149 | if (!out) |
| 150 | out = e; |
| 151 | } |
| 152 | continue; |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 153 | try_intr: |
| 154 | if (usb_endpoint_dir_in(&e->desc)) { |
| 155 | if (!int_in) |
| 156 | int_in = e; |
| 157 | } else { |
| 158 | if (!int_out) |
| 159 | int_out = e; |
| 160 | } |
| 161 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | try_iso: |
Luiz Fernando N. Capitulino | 4d823dd | 2006-10-26 13:03:02 -0300 | [diff] [blame] | 163 | if (usb_endpoint_dir_in(&e->desc)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | if (!iso_in) |
| 165 | iso_in = e; |
| 166 | } else { |
| 167 | if (!iso_out) |
| 168 | iso_out = e; |
| 169 | } |
| 170 | } |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 171 | if ((in && out) || iso_in || iso_out || int_in || int_out) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | goto found; |
| 173 | } |
| 174 | return -EINVAL; |
| 175 | |
| 176 | found: |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 177 | udev = testdev_to_usbdev(dev); |
Alan Stern | d0b4652 | 2013-01-30 16:38:11 -0500 | [diff] [blame] | 178 | dev->info->alt = alt->desc.bAlternateSetting; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | if (alt->desc.bAlternateSetting != 0) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 180 | tmp = usb_set_interface(udev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | alt->desc.bInterfaceNumber, |
| 182 | alt->desc.bAlternateSetting); |
| 183 | if (tmp < 0) |
| 184 | return tmp; |
| 185 | } |
| 186 | |
| 187 | if (in) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 188 | dev->in_pipe = usb_rcvbulkpipe(udev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 190 | dev->out_pipe = usb_sndbulkpipe(udev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | out->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK); |
| 192 | } |
| 193 | if (iso_in) { |
| 194 | dev->iso_in = &iso_in->desc; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 195 | dev->in_iso_pipe = usb_rcvisocpipe(udev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | iso_in->desc.bEndpointAddress |
| 197 | & USB_ENDPOINT_NUMBER_MASK); |
Ming Lei | 951fd8e | 2010-08-02 22:09:17 +0800 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | if (iso_out) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | dev->iso_out = &iso_out->desc; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 202 | dev->out_iso_pipe = usb_sndisocpipe(udev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | iso_out->desc.bEndpointAddress |
| 204 | & USB_ENDPOINT_NUMBER_MASK); |
| 205 | } |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 206 | |
| 207 | if (int_in) { |
| 208 | dev->int_in = &int_in->desc; |
| 209 | dev->in_int_pipe = usb_rcvintpipe(udev, |
| 210 | int_in->desc.bEndpointAddress |
| 211 | & USB_ENDPOINT_NUMBER_MASK); |
| 212 | } |
| 213 | |
| 214 | if (int_out) { |
| 215 | dev->int_out = &int_out->desc; |
| 216 | dev->out_int_pipe = usb_sndintpipe(udev, |
| 217 | int_out->desc.bEndpointAddress |
| 218 | & USB_ENDPOINT_NUMBER_MASK); |
| 219 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | return 0; |
| 221 | } |
| 222 | |
| 223 | /*-------------------------------------------------------------------------*/ |
| 224 | |
| 225 | /* Support for testing basic non-queued I/O streams. |
| 226 | * |
| 227 | * These just package urbs as requests that can be easily canceled. |
| 228 | * Each urb's data buffer is dynamically allocated; callers can fill |
| 229 | * them with non-zero test data (or test for it) when appropriate. |
| 230 | */ |
| 231 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 232 | static void simple_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | { |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 234 | complete(urb->context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } |
| 236 | |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 237 | static struct urb *usbtest_alloc_urb( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | struct usb_device *udev, |
| 239 | int pipe, |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 240 | unsigned long bytes, |
| 241 | unsigned transfer_flags, |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 242 | unsigned offset, |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 243 | u8 bInterval, |
| 244 | usb_complete_t complete_fn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | { |
| 246 | struct urb *urb; |
| 247 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 248 | urb = usb_alloc_urb(0, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | if (!urb) |
| 250 | return urb; |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 251 | |
| 252 | if (bInterval) |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 253 | usb_fill_int_urb(urb, udev, pipe, NULL, bytes, complete_fn, |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 254 | NULL, bInterval); |
| 255 | else |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 256 | usb_fill_bulk_urb(urb, udev, pipe, NULL, bytes, complete_fn, |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 257 | NULL); |
| 258 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | urb->interval = (udev->speed == USB_SPEED_HIGH) |
| 260 | ? (INTERRUPT_RATE << 3) |
| 261 | : INTERRUPT_RATE; |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 262 | urb->transfer_flags = transfer_flags; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 263 | if (usb_pipein(pipe)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | urb->transfer_flags |= URB_SHORT_NOT_OK; |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 265 | |
| 266 | if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP) |
| 267 | urb->transfer_buffer = usb_alloc_coherent(udev, bytes + offset, |
| 268 | GFP_KERNEL, &urb->transfer_dma); |
| 269 | else |
| 270 | urb->transfer_buffer = kmalloc(bytes + offset, GFP_KERNEL); |
| 271 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | if (!urb->transfer_buffer) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 273 | usb_free_urb(urb); |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 274 | return NULL; |
| 275 | } |
| 276 | |
| 277 | /* To test unaligned transfers add an offset and fill the |
| 278 | unused memory with a guard value */ |
| 279 | if (offset) { |
| 280 | memset(urb->transfer_buffer, GUARD_BYTE, offset); |
| 281 | urb->transfer_buffer += offset; |
| 282 | if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP) |
| 283 | urb->transfer_dma += offset; |
| 284 | } |
| 285 | |
| 286 | /* For inbound transfers use guard byte so that test fails if |
| 287 | data not correctly copied */ |
| 288 | memset(urb->transfer_buffer, |
| 289 | usb_pipein(urb->pipe) ? GUARD_BYTE : 0, |
| 290 | bytes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | return urb; |
| 292 | } |
| 293 | |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 294 | static struct urb *simple_alloc_urb( |
| 295 | struct usb_device *udev, |
| 296 | int pipe, |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 297 | unsigned long bytes, |
| 298 | u8 bInterval) |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 299 | { |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 300 | return usbtest_alloc_urb(udev, pipe, bytes, URB_NO_TRANSFER_DMA_MAP, 0, |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 301 | bInterval, simple_callback); |
| 302 | } |
| 303 | |
| 304 | static struct urb *complicated_alloc_urb( |
| 305 | struct usb_device *udev, |
| 306 | int pipe, |
| 307 | unsigned long bytes, |
| 308 | u8 bInterval) |
| 309 | { |
| 310 | return usbtest_alloc_urb(udev, pipe, bytes, URB_NO_TRANSFER_DMA_MAP, 0, |
| 311 | bInterval, complicated_callback); |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 312 | } |
| 313 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 314 | static unsigned pattern; |
Vikram Pandita | 7f4e985 | 2009-11-09 21:24:32 -0600 | [diff] [blame] | 315 | static unsigned mod_pattern; |
| 316 | module_param_named(pattern, mod_pattern, uint, S_IRUGO | S_IWUSR); |
| 317 | MODULE_PARM_DESC(mod_pattern, "i/o pattern (0 == zeroes)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | |
Alan Stern | b9a6e8e | 2015-09-01 09:48:01 +0800 | [diff] [blame] | 319 | static unsigned get_maxpacket(struct usb_device *udev, int pipe) |
| 320 | { |
| 321 | struct usb_host_endpoint *ep; |
| 322 | |
| 323 | ep = usb_pipe_endpoint(udev, pipe); |
| 324 | return le16_to_cpup(&ep->desc.wMaxPacketSize); |
| 325 | } |
| 326 | |
| 327 | static void simple_fill_buf(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | { |
| 329 | unsigned i; |
| 330 | u8 *buf = urb->transfer_buffer; |
| 331 | unsigned len = urb->transfer_buffer_length; |
Alan Stern | b9a6e8e | 2015-09-01 09:48:01 +0800 | [diff] [blame] | 332 | unsigned maxpacket; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
| 334 | switch (pattern) { |
| 335 | default: |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 336 | /* FALLTHROUGH */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | case 0: |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 338 | memset(buf, 0, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | break; |
| 340 | case 1: /* mod63 */ |
Alan Stern | b9a6e8e | 2015-09-01 09:48:01 +0800 | [diff] [blame] | 341 | maxpacket = get_maxpacket(urb->dev, urb->pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | for (i = 0; i < len; i++) |
Alan Stern | b9a6e8e | 2015-09-01 09:48:01 +0800 | [diff] [blame] | 343 | *buf++ = (u8) ((i % maxpacket) % 63); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | break; |
| 345 | } |
| 346 | } |
| 347 | |
Greg Dietsche | 304b0b5 | 2011-05-08 22:51:43 -0500 | [diff] [blame] | 348 | static inline unsigned long buffer_offset(void *buf) |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 349 | { |
Greg Dietsche | 304b0b5 | 2011-05-08 22:51:43 -0500 | [diff] [blame] | 350 | return (unsigned long)buf & (ARCH_KMALLOC_MINALIGN - 1); |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 351 | } |
| 352 | |
| 353 | static int check_guard_bytes(struct usbtest_dev *tdev, struct urb *urb) |
| 354 | { |
| 355 | u8 *buf = urb->transfer_buffer; |
| 356 | u8 *guard = buf - buffer_offset(buf); |
| 357 | unsigned i; |
| 358 | |
| 359 | for (i = 0; guard < buf; i++, guard++) { |
| 360 | if (*guard != GUARD_BYTE) { |
| 361 | ERROR(tdev, "guard byte[%d] %d (not %d)\n", |
| 362 | i, *guard, GUARD_BYTE); |
| 363 | return -EINVAL; |
| 364 | } |
| 365 | } |
| 366 | return 0; |
| 367 | } |
| 368 | |
| 369 | static int simple_check_buf(struct usbtest_dev *tdev, struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | { |
| 371 | unsigned i; |
| 372 | u8 expected; |
| 373 | u8 *buf = urb->transfer_buffer; |
| 374 | unsigned len = urb->actual_length; |
Alan Stern | b9a6e8e | 2015-09-01 09:48:01 +0800 | [diff] [blame] | 375 | unsigned maxpacket = get_maxpacket(urb->dev, urb->pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 377 | int ret = check_guard_bytes(tdev, urb); |
| 378 | if (ret) |
| 379 | return ret; |
| 380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | for (i = 0; i < len; i++, buf++) { |
| 382 | switch (pattern) { |
| 383 | /* all-zeroes has no synchronization issues */ |
| 384 | case 0: |
| 385 | expected = 0; |
| 386 | break; |
| 387 | /* mod63 stays in sync with short-terminated transfers, |
| 388 | * or otherwise when host and gadget agree on how large |
| 389 | * each usb transfer request should be. resync is done |
| 390 | * with set_interface or set_config. |
| 391 | */ |
| 392 | case 1: /* mod63 */ |
Alan Stern | b9a6e8e | 2015-09-01 09:48:01 +0800 | [diff] [blame] | 393 | expected = (i % maxpacket) % 63; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | break; |
| 395 | /* always fail unsupported patterns */ |
| 396 | default: |
| 397 | expected = !*buf; |
| 398 | break; |
| 399 | } |
| 400 | if (*buf == expected) |
| 401 | continue; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 402 | ERROR(tdev, "buf[%d] = %d (not %d)\n", i, *buf, expected); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | return -EINVAL; |
| 404 | } |
| 405 | return 0; |
| 406 | } |
| 407 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 408 | static void simple_free_urb(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | { |
Greg Dietsche | 304b0b5 | 2011-05-08 22:51:43 -0500 | [diff] [blame] | 410 | unsigned long offset = buffer_offset(urb->transfer_buffer); |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 411 | |
| 412 | if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP) |
| 413 | usb_free_coherent( |
| 414 | urb->dev, |
| 415 | urb->transfer_buffer_length + offset, |
| 416 | urb->transfer_buffer - offset, |
| 417 | urb->transfer_dma - offset); |
| 418 | else |
| 419 | kfree(urb->transfer_buffer - offset); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 420 | usb_free_urb(urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | } |
| 422 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 423 | static int simple_io( |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 424 | struct usbtest_dev *tdev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | struct urb *urb, |
| 426 | int iterations, |
| 427 | int vary, |
| 428 | int expected, |
| 429 | const char *label |
| 430 | ) |
| 431 | { |
| 432 | struct usb_device *udev = urb->dev; |
| 433 | int max = urb->transfer_buffer_length; |
| 434 | struct completion completion; |
| 435 | int retval = 0; |
Roger Quadros | e5e4746 | 2013-12-18 15:40:10 +0530 | [diff] [blame] | 436 | unsigned long expire; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
| 438 | urb->context = &completion; |
| 439 | while (retval == 0 && iterations-- > 0) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 440 | init_completion(&completion); |
Sebastian Andrzej Siewior | 7c79d09 | 2011-08-23 10:44:54 +0200 | [diff] [blame] | 441 | if (usb_pipeout(urb->pipe)) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 442 | simple_fill_buf(urb); |
Sebastian Andrzej Siewior | 7c79d09 | 2011-08-23 10:44:54 +0200 | [diff] [blame] | 443 | urb->transfer_flags |= URB_ZERO_PACKET; |
| 444 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 445 | retval = usb_submit_urb(urb, GFP_KERNEL); |
| 446 | if (retval != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | break; |
| 448 | |
Roger Quadros | e5e4746 | 2013-12-18 15:40:10 +0530 | [diff] [blame] | 449 | expire = msecs_to_jiffies(SIMPLE_IO_TIMEOUT); |
| 450 | if (!wait_for_completion_timeout(&completion, expire)) { |
| 451 | usb_kill_urb(urb); |
| 452 | retval = (urb->status == -ENOENT ? |
| 453 | -ETIMEDOUT : urb->status); |
| 454 | } else { |
| 455 | retval = urb->status; |
| 456 | } |
| 457 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | urb->dev = udev; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 459 | if (retval == 0 && usb_pipein(urb->pipe)) |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 460 | retval = simple_check_buf(tdev, urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
| 462 | if (vary) { |
| 463 | int len = urb->transfer_buffer_length; |
| 464 | |
| 465 | len += vary; |
| 466 | len %= max; |
| 467 | if (len == 0) |
| 468 | len = (vary < max) ? vary : max; |
| 469 | urb->transfer_buffer_length = len; |
| 470 | } |
| 471 | |
| 472 | /* FIXME if endpoint halted, clear halt (and log) */ |
| 473 | } |
| 474 | urb->transfer_buffer_length = max; |
| 475 | |
| 476 | if (expected != retval) |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 477 | dev_err(&udev->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | "%s failed, iterations left %d, status %d (not %d)\n", |
| 479 | label, iterations, retval, expected); |
| 480 | return retval; |
| 481 | } |
| 482 | |
| 483 | |
| 484 | /*-------------------------------------------------------------------------*/ |
| 485 | |
| 486 | /* We use scatterlist primitives to test queued I/O. |
| 487 | * Yes, this also tests the scatterlist primitives. |
| 488 | */ |
| 489 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 490 | static void free_sglist(struct scatterlist *sg, int nents) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | { |
| 492 | unsigned i; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 493 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | if (!sg) |
| 495 | return; |
| 496 | for (i = 0; i < nents; i++) { |
Jens Axboe | 45711f1 | 2007-10-22 21:19:53 +0200 | [diff] [blame] | 497 | if (!sg_page(&sg[i])) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | continue; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 499 | kfree(sg_virt(&sg[i])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 501 | kfree(sg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | } |
| 503 | |
| 504 | static struct scatterlist * |
Alan Stern | b9a6e8e | 2015-09-01 09:48:01 +0800 | [diff] [blame] | 505 | alloc_sglist(int nents, int max, int vary, struct usbtest_dev *dev, int pipe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | { |
| 507 | struct scatterlist *sg; |
| 508 | unsigned i; |
| 509 | unsigned size = max; |
Alan Stern | b9a6e8e | 2015-09-01 09:48:01 +0800 | [diff] [blame] | 510 | unsigned maxpacket = |
| 511 | get_maxpacket(interface_to_usbdev(dev->intf), pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | |
Dan Carpenter | 564e698 | 2012-11-17 18:06:11 +0300 | [diff] [blame] | 513 | if (max == 0) |
| 514 | return NULL; |
| 515 | |
Huang Rui | f55055b | 2013-10-21 23:15:30 +0800 | [diff] [blame] | 516 | sg = kmalloc_array(nents, sizeof(*sg), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | if (!sg) |
| 518 | return NULL; |
Alan Stern | 4756feb | 2008-03-27 10:15:22 -0400 | [diff] [blame] | 519 | sg_init_table(sg, nents); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
| 521 | for (i = 0; i < nents; i++) { |
| 522 | char *buf; |
David Brownell | 8b52490 | 2006-04-02 10:20:15 -0800 | [diff] [blame] | 523 | unsigned j; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 525 | buf = kzalloc(size, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | if (!buf) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 527 | free_sglist(sg, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | return NULL; |
| 529 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | |
| 531 | /* kmalloc pages are always physically contiguous! */ |
Alan Stern | 4756feb | 2008-03-27 10:15:22 -0400 | [diff] [blame] | 532 | sg_set_buf(&sg[i], buf, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
David Brownell | 8b52490 | 2006-04-02 10:20:15 -0800 | [diff] [blame] | 534 | switch (pattern) { |
| 535 | case 0: |
| 536 | /* already zeroed */ |
| 537 | break; |
| 538 | case 1: |
| 539 | for (j = 0; j < size; j++) |
Alan Stern | b9a6e8e | 2015-09-01 09:48:01 +0800 | [diff] [blame] | 540 | *buf++ = (u8) ((j % maxpacket) % 63); |
David Brownell | 8b52490 | 2006-04-02 10:20:15 -0800 | [diff] [blame] | 541 | break; |
| 542 | } |
| 543 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | if (vary) { |
| 545 | size += vary; |
| 546 | size %= max; |
| 547 | if (size == 0) |
| 548 | size = (vary < max) ? vary : max; |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | return sg; |
| 553 | } |
| 554 | |
Alan Stern | 32b36ee | 2014-06-03 11:11:34 -0400 | [diff] [blame] | 555 | static void sg_timeout(unsigned long _req) |
| 556 | { |
| 557 | struct usb_sg_request *req = (struct usb_sg_request *) _req; |
| 558 | |
| 559 | req->status = -ETIMEDOUT; |
| 560 | usb_sg_cancel(req); |
| 561 | } |
| 562 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 563 | static int perform_sglist( |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 564 | struct usbtest_dev *tdev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | unsigned iterations, |
| 566 | int pipe, |
| 567 | struct usb_sg_request *req, |
| 568 | struct scatterlist *sg, |
| 569 | int nents |
| 570 | ) |
| 571 | { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 572 | struct usb_device *udev = testdev_to_usbdev(tdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | int retval = 0; |
Alan Stern | 32b36ee | 2014-06-03 11:11:34 -0400 | [diff] [blame] | 574 | struct timer_list sg_timer; |
| 575 | |
| 576 | setup_timer_on_stack(&sg_timer, sg_timeout, (unsigned long) req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
| 578 | while (retval == 0 && iterations-- > 0) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 579 | retval = usb_sg_init(req, udev, pipe, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | (udev->speed == USB_SPEED_HIGH) |
| 581 | ? (INTERRUPT_RATE << 3) |
| 582 | : INTERRUPT_RATE, |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 583 | sg, nents, 0, GFP_KERNEL); |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 584 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | if (retval) |
| 586 | break; |
Alan Stern | 32b36ee | 2014-06-03 11:11:34 -0400 | [diff] [blame] | 587 | mod_timer(&sg_timer, jiffies + |
| 588 | msecs_to_jiffies(SIMPLE_IO_TIMEOUT)); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 589 | usb_sg_wait(req); |
Alan Stern | 32b36ee | 2014-06-03 11:11:34 -0400 | [diff] [blame] | 590 | del_timer_sync(&sg_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | retval = req->status; |
| 592 | |
David Brownell | 8b52490 | 2006-04-02 10:20:15 -0800 | [diff] [blame] | 593 | /* FIXME check resulting data pattern */ |
| 594 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | /* FIXME if endpoint halted, clear halt (and log) */ |
| 596 | } |
| 597 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 598 | /* FIXME for unlink or fault handling tests, don't report |
| 599 | * failure if retval is as we expected ... |
| 600 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | if (retval) |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 602 | ERROR(tdev, "perform_sglist failed, " |
| 603 | "iterations left %d, status %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | iterations, retval); |
| 605 | return retval; |
| 606 | } |
| 607 | |
| 608 | |
| 609 | /*-------------------------------------------------------------------------*/ |
| 610 | |
| 611 | /* unqueued control message testing |
| 612 | * |
| 613 | * there's a nice set of device functional requirements in chapter 9 of the |
| 614 | * usb 2.0 spec, which we can apply to ANY device, even ones that don't use |
| 615 | * special test firmware. |
| 616 | * |
| 617 | * we know the device is configured (or suspended) by the time it's visible |
| 618 | * through usbfs. we can't change that, so we won't test enumeration (which |
| 619 | * worked 'well enough' to get here, this time), power management (ditto), |
| 620 | * or remote wakeup (which needs human interaction). |
| 621 | */ |
| 622 | |
| 623 | static unsigned realworld = 1; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 624 | module_param(realworld, uint, 0); |
| 625 | MODULE_PARM_DESC(realworld, "clear to demand stricter spec compliance"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 627 | static int get_altsetting(struct usbtest_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | { |
| 629 | struct usb_interface *iface = dev->intf; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 630 | struct usb_device *udev = interface_to_usbdev(iface); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | int retval; |
| 632 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 633 | retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | USB_REQ_GET_INTERFACE, USB_DIR_IN|USB_RECIP_INTERFACE, |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 635 | 0, iface->altsetting[0].desc.bInterfaceNumber, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | dev->buf, 1, USB_CTRL_GET_TIMEOUT); |
| 637 | switch (retval) { |
| 638 | case 1: |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 639 | return dev->buf[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | case 0: |
| 641 | retval = -ERANGE; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 642 | /* FALLTHROUGH */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | default: |
| 644 | return retval; |
| 645 | } |
| 646 | } |
| 647 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 648 | static int set_altsetting(struct usbtest_dev *dev, int alternate) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | { |
| 650 | struct usb_interface *iface = dev->intf; |
| 651 | struct usb_device *udev; |
| 652 | |
| 653 | if (alternate < 0 || alternate >= 256) |
| 654 | return -EINVAL; |
| 655 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 656 | udev = interface_to_usbdev(iface); |
| 657 | return usb_set_interface(udev, |
| 658 | iface->altsetting[0].desc.bInterfaceNumber, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | alternate); |
| 660 | } |
| 661 | |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 662 | static int is_good_config(struct usbtest_dev *tdev, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | { |
| 664 | struct usb_config_descriptor *config; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 665 | |
Huang Rui | f55055b | 2013-10-21 23:15:30 +0800 | [diff] [blame] | 666 | if (len < sizeof(*config)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | return 0; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 668 | config = (struct usb_config_descriptor *) tdev->buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | |
| 670 | switch (config->bDescriptorType) { |
| 671 | case USB_DT_CONFIG: |
| 672 | case USB_DT_OTHER_SPEED_CONFIG: |
| 673 | if (config->bLength != 9) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 674 | ERROR(tdev, "bogus config descriptor length\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | return 0; |
| 676 | } |
| 677 | /* this bit 'must be 1' but often isn't */ |
| 678 | if (!realworld && !(config->bmAttributes & 0x80)) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 679 | ERROR(tdev, "high bit of config attributes not set\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | return 0; |
| 681 | } |
| 682 | if (config->bmAttributes & 0x1f) { /* reserved == 0 */ |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 683 | ERROR(tdev, "reserved config bits set\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | return 0; |
| 685 | } |
| 686 | break; |
| 687 | default: |
| 688 | return 0; |
| 689 | } |
| 690 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 691 | if (le16_to_cpu(config->wTotalLength) == len) /* read it all */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | return 1; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 693 | if (le16_to_cpu(config->wTotalLength) >= TBUF_SIZE) /* max partial read */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | return 1; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 695 | ERROR(tdev, "bogus config descriptor read size\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | return 0; |
| 697 | } |
| 698 | |
Huang Rui | 82f9267 | 2013-10-30 11:27:38 +0800 | [diff] [blame] | 699 | static int is_good_ext(struct usbtest_dev *tdev, u8 *buf) |
| 700 | { |
| 701 | struct usb_ext_cap_descriptor *ext; |
| 702 | u32 attr; |
| 703 | |
| 704 | ext = (struct usb_ext_cap_descriptor *) buf; |
| 705 | |
| 706 | if (ext->bLength != USB_DT_USB_EXT_CAP_SIZE) { |
| 707 | ERROR(tdev, "bogus usb 2.0 extension descriptor length\n"); |
| 708 | return 0; |
| 709 | } |
| 710 | |
| 711 | attr = le32_to_cpu(ext->bmAttributes); |
Huang Rui | 875bc23 | 2013-11-13 22:35:14 +0800 | [diff] [blame] | 712 | /* bits[1:15] is used and others are reserved */ |
| 713 | if (attr & ~0xfffe) { /* reserved == 0 */ |
Huang Rui | 82f9267 | 2013-10-30 11:27:38 +0800 | [diff] [blame] | 714 | ERROR(tdev, "reserved bits set\n"); |
| 715 | return 0; |
| 716 | } |
| 717 | |
| 718 | return 1; |
| 719 | } |
| 720 | |
Huang Rui | b8fef79 | 2013-10-30 11:27:39 +0800 | [diff] [blame] | 721 | static int is_good_ss_cap(struct usbtest_dev *tdev, u8 *buf) |
| 722 | { |
| 723 | struct usb_ss_cap_descriptor *ss; |
| 724 | |
| 725 | ss = (struct usb_ss_cap_descriptor *) buf; |
| 726 | |
| 727 | if (ss->bLength != USB_DT_USB_SS_CAP_SIZE) { |
| 728 | ERROR(tdev, "bogus superspeed device capability descriptor length\n"); |
| 729 | return 0; |
| 730 | } |
| 731 | |
| 732 | /* |
| 733 | * only bit[1] of bmAttributes is used for LTM and others are |
| 734 | * reserved |
| 735 | */ |
| 736 | if (ss->bmAttributes & ~0x02) { /* reserved == 0 */ |
| 737 | ERROR(tdev, "reserved bits set in bmAttributes\n"); |
| 738 | return 0; |
| 739 | } |
| 740 | |
| 741 | /* bits[0:3] of wSpeedSupported is used and others are reserved */ |
| 742 | if (le16_to_cpu(ss->wSpeedSupported) & ~0x0f) { /* reserved == 0 */ |
| 743 | ERROR(tdev, "reserved bits set in wSpeedSupported\n"); |
| 744 | return 0; |
| 745 | } |
| 746 | |
| 747 | return 1; |
| 748 | } |
| 749 | |
Huang Rui | 8e29217 | 2013-10-30 11:27:40 +0800 | [diff] [blame] | 750 | static int is_good_con_id(struct usbtest_dev *tdev, u8 *buf) |
| 751 | { |
| 752 | struct usb_ss_container_id_descriptor *con_id; |
| 753 | |
| 754 | con_id = (struct usb_ss_container_id_descriptor *) buf; |
| 755 | |
| 756 | if (con_id->bLength != USB_DT_USB_SS_CONTN_ID_SIZE) { |
| 757 | ERROR(tdev, "bogus container id descriptor length\n"); |
| 758 | return 0; |
| 759 | } |
| 760 | |
| 761 | if (con_id->bReserved) { /* reserved == 0 */ |
| 762 | ERROR(tdev, "reserved bits set\n"); |
| 763 | return 0; |
| 764 | } |
| 765 | |
| 766 | return 1; |
| 767 | } |
| 768 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | /* sanity test for standard requests working with usb_control_mesg() and some |
| 770 | * of the utility functions which use it. |
| 771 | * |
| 772 | * this doesn't test how endpoint halts behave or data toggles get set, since |
| 773 | * we won't do I/O to bulk/interrupt endpoints here (which is how to change |
| 774 | * halt or toggle). toggle testing is impractical without support from hcds. |
| 775 | * |
| 776 | * this avoids failing devices linux would normally work with, by not testing |
| 777 | * config/altsetting operations for devices that only support their defaults. |
| 778 | * such devices rarely support those needless operations. |
| 779 | * |
| 780 | * NOTE that since this is a sanity test, it's not examining boundary cases |
| 781 | * to see if usbcore, hcd, and device all behave right. such testing would |
| 782 | * involve varied read sizes and other operation sequences. |
| 783 | */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 784 | static int ch9_postconfig(struct usbtest_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | { |
| 786 | struct usb_interface *iface = dev->intf; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 787 | struct usb_device *udev = interface_to_usbdev(iface); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | int i, alt, retval; |
| 789 | |
| 790 | /* [9.2.3] if there's more than one altsetting, we need to be able to |
| 791 | * set and get each one. mostly trusts the descriptors from usbcore. |
| 792 | */ |
| 793 | for (i = 0; i < iface->num_altsetting; i++) { |
| 794 | |
| 795 | /* 9.2.3 constrains the range here */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 796 | alt = iface->altsetting[i].desc.bAlternateSetting; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | if (alt < 0 || alt >= iface->num_altsetting) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 798 | dev_err(&iface->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | "invalid alt [%d].bAltSetting = %d\n", |
| 800 | i, alt); |
| 801 | } |
| 802 | |
| 803 | /* [real world] get/set unimplemented if there's only one */ |
| 804 | if (realworld && iface->num_altsetting == 1) |
| 805 | continue; |
| 806 | |
| 807 | /* [9.4.10] set_interface */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 808 | retval = set_altsetting(dev, alt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | if (retval) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 810 | dev_err(&iface->dev, "can't set_interface = %d, %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | alt, retval); |
| 812 | return retval; |
| 813 | } |
| 814 | |
| 815 | /* [9.4.4] get_interface always works */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 816 | retval = get_altsetting(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | if (retval != alt) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 818 | dev_err(&iface->dev, "get alt should be %d, was %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | alt, retval); |
| 820 | return (retval < 0) ? retval : -EDOM; |
| 821 | } |
| 822 | |
| 823 | } |
| 824 | |
| 825 | /* [real world] get_config unimplemented if there's only one */ |
| 826 | if (!realworld || udev->descriptor.bNumConfigurations != 1) { |
| 827 | int expected = udev->actconfig->desc.bConfigurationValue; |
| 828 | |
| 829 | /* [9.4.2] get_configuration always works |
| 830 | * ... although some cheap devices (like one TI Hub I've got) |
| 831 | * won't return config descriptors except before set_config. |
| 832 | */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 833 | retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | USB_REQ_GET_CONFIGURATION, |
| 835 | USB_DIR_IN | USB_RECIP_DEVICE, |
| 836 | 0, 0, dev->buf, 1, USB_CTRL_GET_TIMEOUT); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 837 | if (retval != 1 || dev->buf[0] != expected) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 838 | dev_err(&iface->dev, "get config --> %d %d (1 %d)\n", |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 839 | retval, dev->buf[0], expected); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | return (retval < 0) ? retval : -EDOM; |
| 841 | } |
| 842 | } |
| 843 | |
| 844 | /* there's always [9.4.3] a device descriptor [9.6.1] */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 845 | retval = usb_get_descriptor(udev, USB_DT_DEVICE, 0, |
Huang Rui | f55055b | 2013-10-21 23:15:30 +0800 | [diff] [blame] | 846 | dev->buf, sizeof(udev->descriptor)); |
| 847 | if (retval != sizeof(udev->descriptor)) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 848 | dev_err(&iface->dev, "dev descriptor --> %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | return (retval < 0) ? retval : -EDOM; |
| 850 | } |
| 851 | |
Huang Rui | 9d3bd76 | 2013-10-28 23:31:32 +0800 | [diff] [blame] | 852 | /* |
| 853 | * there's always [9.4.3] a bos device descriptor [9.6.2] in USB |
| 854 | * 3.0 spec |
| 855 | */ |
Huang Rui | f625099 | 2013-11-13 22:35:13 +0800 | [diff] [blame] | 856 | if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0210) { |
Huang Rui | 82f9267 | 2013-10-30 11:27:38 +0800 | [diff] [blame] | 857 | struct usb_bos_descriptor *bos = NULL; |
| 858 | struct usb_dev_cap_header *header = NULL; |
| 859 | unsigned total, num, length; |
| 860 | u8 *buf; |
| 861 | |
Huang Rui | 9d3bd76 | 2013-10-28 23:31:32 +0800 | [diff] [blame] | 862 | retval = usb_get_descriptor(udev, USB_DT_BOS, 0, dev->buf, |
| 863 | sizeof(*udev->bos->desc)); |
| 864 | if (retval != sizeof(*udev->bos->desc)) { |
| 865 | dev_err(&iface->dev, "bos descriptor --> %d\n", retval); |
| 866 | return (retval < 0) ? retval : -EDOM; |
| 867 | } |
Huang Rui | 82f9267 | 2013-10-30 11:27:38 +0800 | [diff] [blame] | 868 | |
| 869 | bos = (struct usb_bos_descriptor *)dev->buf; |
| 870 | total = le16_to_cpu(bos->wTotalLength); |
| 871 | num = bos->bNumDeviceCaps; |
| 872 | |
| 873 | if (total > TBUF_SIZE) |
| 874 | total = TBUF_SIZE; |
| 875 | |
| 876 | /* |
| 877 | * get generic device-level capability descriptors [9.6.2] |
| 878 | * in USB 3.0 spec |
| 879 | */ |
| 880 | retval = usb_get_descriptor(udev, USB_DT_BOS, 0, dev->buf, |
| 881 | total); |
| 882 | if (retval != total) { |
| 883 | dev_err(&iface->dev, "bos descriptor set --> %d\n", |
| 884 | retval); |
| 885 | return (retval < 0) ? retval : -EDOM; |
| 886 | } |
| 887 | |
| 888 | length = sizeof(*udev->bos->desc); |
| 889 | buf = dev->buf; |
| 890 | for (i = 0; i < num; i++) { |
| 891 | buf += length; |
| 892 | if (buf + sizeof(struct usb_dev_cap_header) > |
| 893 | dev->buf + total) |
| 894 | break; |
| 895 | |
| 896 | header = (struct usb_dev_cap_header *)buf; |
| 897 | length = header->bLength; |
| 898 | |
| 899 | if (header->bDescriptorType != |
| 900 | USB_DT_DEVICE_CAPABILITY) { |
| 901 | dev_warn(&udev->dev, "not device capability descriptor, skip\n"); |
| 902 | continue; |
| 903 | } |
| 904 | |
| 905 | switch (header->bDevCapabilityType) { |
| 906 | case USB_CAP_TYPE_EXT: |
| 907 | if (buf + USB_DT_USB_EXT_CAP_SIZE > |
| 908 | dev->buf + total || |
| 909 | !is_good_ext(dev, buf)) { |
| 910 | dev_err(&iface->dev, "bogus usb 2.0 extension descriptor\n"); |
| 911 | return -EDOM; |
| 912 | } |
| 913 | break; |
Huang Rui | b8fef79 | 2013-10-30 11:27:39 +0800 | [diff] [blame] | 914 | case USB_SS_CAP_TYPE: |
| 915 | if (buf + USB_DT_USB_SS_CAP_SIZE > |
| 916 | dev->buf + total || |
| 917 | !is_good_ss_cap(dev, buf)) { |
| 918 | dev_err(&iface->dev, "bogus superspeed device capability descriptor\n"); |
| 919 | return -EDOM; |
| 920 | } |
| 921 | break; |
Huang Rui | 8e29217 | 2013-10-30 11:27:40 +0800 | [diff] [blame] | 922 | case CONTAINER_ID_TYPE: |
| 923 | if (buf + USB_DT_USB_SS_CONTN_ID_SIZE > |
| 924 | dev->buf + total || |
| 925 | !is_good_con_id(dev, buf)) { |
| 926 | dev_err(&iface->dev, "bogus container id descriptor\n"); |
| 927 | return -EDOM; |
| 928 | } |
| 929 | break; |
Huang Rui | 82f9267 | 2013-10-30 11:27:38 +0800 | [diff] [blame] | 930 | default: |
| 931 | break; |
| 932 | } |
| 933 | } |
Huang Rui | 9d3bd76 | 2013-10-28 23:31:32 +0800 | [diff] [blame] | 934 | } |
| 935 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | /* there's always [9.4.3] at least one config descriptor [9.6.3] */ |
| 937 | for (i = 0; i < udev->descriptor.bNumConfigurations; i++) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 938 | retval = usb_get_descriptor(udev, USB_DT_CONFIG, i, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | dev->buf, TBUF_SIZE); |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 940 | if (!is_good_config(dev, retval)) { |
| 941 | dev_err(&iface->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | "config [%d] descriptor --> %d\n", |
| 943 | i, retval); |
| 944 | return (retval < 0) ? retval : -EDOM; |
| 945 | } |
| 946 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 947 | /* FIXME cross-checking udev->config[i] to make sure usbcore |
| 948 | * parsed it right (etc) would be good testing paranoia |
| 949 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | } |
| 951 | |
| 952 | /* and sometimes [9.2.6.6] speed dependent descriptors */ |
| 953 | if (le16_to_cpu(udev->descriptor.bcdUSB) == 0x0200) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 954 | struct usb_qualifier_descriptor *d = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | |
| 956 | /* device qualifier [9.6.2] */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 957 | retval = usb_get_descriptor(udev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | USB_DT_DEVICE_QUALIFIER, 0, dev->buf, |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 959 | sizeof(struct usb_qualifier_descriptor)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | if (retval == -EPIPE) { |
| 961 | if (udev->speed == USB_SPEED_HIGH) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 962 | dev_err(&iface->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | "hs dev qualifier --> %d\n", |
| 964 | retval); |
| 965 | return (retval < 0) ? retval : -EDOM; |
| 966 | } |
| 967 | /* usb2.0 but not high-speed capable; fine */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 968 | } else if (retval != sizeof(struct usb_qualifier_descriptor)) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 969 | dev_err(&iface->dev, "dev qualifier --> %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | return (retval < 0) ? retval : -EDOM; |
| 971 | } else |
| 972 | d = (struct usb_qualifier_descriptor *) dev->buf; |
| 973 | |
| 974 | /* might not have [9.6.2] any other-speed configs [9.6.4] */ |
| 975 | if (d) { |
| 976 | unsigned max = d->bNumConfigurations; |
| 977 | for (i = 0; i < max; i++) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 978 | retval = usb_get_descriptor(udev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | USB_DT_OTHER_SPEED_CONFIG, i, |
| 980 | dev->buf, TBUF_SIZE); |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 981 | if (!is_good_config(dev, retval)) { |
| 982 | dev_err(&iface->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | "other speed config --> %d\n", |
| 984 | retval); |
| 985 | return (retval < 0) ? retval : -EDOM; |
| 986 | } |
| 987 | } |
| 988 | } |
| 989 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 990 | /* FIXME fetch strings from at least the device descriptor */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | |
| 992 | /* [9.4.5] get_status always works */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 993 | retval = usb_get_status(udev, USB_RECIP_DEVICE, 0, dev->buf); |
Alan Stern | 15b7336 | 2013-07-30 15:35:40 -0400 | [diff] [blame] | 994 | if (retval) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 995 | dev_err(&iface->dev, "get dev status --> %d\n", retval); |
Alan Stern | 15b7336 | 2013-07-30 15:35:40 -0400 | [diff] [blame] | 996 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 997 | } |
| 998 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 999 | /* FIXME configuration.bmAttributes says if we could try to set/clear |
| 1000 | * the device's remote wakeup feature ... if we can, test that here |
| 1001 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1003 | retval = usb_get_status(udev, USB_RECIP_INTERFACE, |
| 1004 | iface->altsetting[0].desc.bInterfaceNumber, dev->buf); |
Alan Stern | 15b7336 | 2013-07-30 15:35:40 -0400 | [diff] [blame] | 1005 | if (retval) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1006 | dev_err(&iface->dev, "get interface status --> %d\n", retval); |
Alan Stern | 15b7336 | 2013-07-30 15:35:40 -0400 | [diff] [blame] | 1007 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1009 | /* FIXME get status for each endpoint in the interface */ |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1010 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | return 0; |
| 1012 | } |
| 1013 | |
| 1014 | /*-------------------------------------------------------------------------*/ |
| 1015 | |
| 1016 | /* use ch9 requests to test whether: |
| 1017 | * (a) queues work for control, keeping N subtests queued and |
| 1018 | * active (auto-resubmit) for M loops through the queue. |
| 1019 | * (b) protocol stalls (control-only) will autorecover. |
| 1020 | * it's not like bulk/intr; no halt clearing. |
| 1021 | * (c) short control reads are reported and handled. |
| 1022 | * (d) queues are always processed in-order |
| 1023 | */ |
| 1024 | |
| 1025 | struct ctrl_ctx { |
| 1026 | spinlock_t lock; |
| 1027 | struct usbtest_dev *dev; |
| 1028 | struct completion complete; |
| 1029 | unsigned count; |
| 1030 | unsigned pending; |
| 1031 | int status; |
| 1032 | struct urb **urb; |
| 1033 | struct usbtest_param *param; |
| 1034 | int last; |
| 1035 | }; |
| 1036 | |
Huang Rui | c952a8b | 2013-11-04 21:11:53 +0800 | [diff] [blame] | 1037 | #define NUM_SUBCASES 16 /* how many test subcases here? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | |
| 1039 | struct subcase { |
| 1040 | struct usb_ctrlrequest setup; |
| 1041 | int number; |
| 1042 | int expected; |
| 1043 | }; |
| 1044 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1045 | static void ctrl_complete(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | { |
| 1047 | struct ctrl_ctx *ctx = urb->context; |
| 1048 | struct usb_ctrlrequest *reqp; |
| 1049 | struct subcase *subcase; |
| 1050 | int status = urb->status; |
| 1051 | |
| 1052 | reqp = (struct usb_ctrlrequest *)urb->setup_packet; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1053 | subcase = container_of(reqp, struct subcase, setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1055 | spin_lock(&ctx->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | ctx->count--; |
| 1057 | ctx->pending--; |
| 1058 | |
| 1059 | /* queue must transfer and complete in fifo order, unless |
| 1060 | * usb_unlink_urb() is used to unlink something not at the |
| 1061 | * physical queue head (not tested). |
| 1062 | */ |
| 1063 | if (subcase->number > 0) { |
| 1064 | if ((subcase->number - ctx->last) != 1) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1065 | ERROR(ctx->dev, |
| 1066 | "subcase %d completed out of order, last %d\n", |
| 1067 | subcase->number, ctx->last); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | status = -EDOM; |
| 1069 | ctx->last = subcase->number; |
| 1070 | goto error; |
| 1071 | } |
| 1072 | } |
| 1073 | ctx->last = subcase->number; |
| 1074 | |
| 1075 | /* succeed or fault in only one way? */ |
| 1076 | if (status == subcase->expected) |
| 1077 | status = 0; |
| 1078 | |
| 1079 | /* async unlink for cleanup? */ |
| 1080 | else if (status != -ECONNRESET) { |
| 1081 | |
| 1082 | /* some faults are allowed, not required */ |
| 1083 | if (subcase->expected > 0 && ( |
Greg Kroah-Hartman | 59d9978 | 2007-07-18 10:58:02 -0700 | [diff] [blame] | 1084 | ((status == -subcase->expected /* happened */ |
| 1085 | || status == 0)))) /* didn't */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | status = 0; |
| 1087 | /* sometimes more than one fault is allowed */ |
| 1088 | else if (subcase->number == 12 && status == -EPIPE) |
| 1089 | status = 0; |
| 1090 | else |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1091 | ERROR(ctx->dev, "subtest %d error, status %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | subcase->number, status); |
| 1093 | } |
| 1094 | |
| 1095 | /* unexpected status codes mean errors; ideally, in hardware */ |
| 1096 | if (status) { |
| 1097 | error: |
| 1098 | if (ctx->status == 0) { |
| 1099 | int i; |
| 1100 | |
| 1101 | ctx->status = status; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1102 | ERROR(ctx->dev, "control queue %02x.%02x, err %d, " |
| 1103 | "%d left, subcase %d, len %d/%d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | reqp->bRequestType, reqp->bRequest, |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1105 | status, ctx->count, subcase->number, |
| 1106 | urb->actual_length, |
| 1107 | urb->transfer_buffer_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | |
| 1109 | /* FIXME this "unlink everything" exit route should |
| 1110 | * be a separate test case. |
| 1111 | */ |
| 1112 | |
| 1113 | /* unlink whatever's still pending */ |
| 1114 | for (i = 1; i < ctx->param->sglen; i++) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1115 | struct urb *u = ctx->urb[ |
| 1116 | (i + subcase->number) |
| 1117 | % ctx->param->sglen]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | |
| 1119 | if (u == urb || !u->dev) |
| 1120 | continue; |
Franck Bui-Huu | caa2a12 | 2006-05-15 19:23:53 +0200 | [diff] [blame] | 1121 | spin_unlock(&ctx->lock); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1122 | status = usb_unlink_urb(u); |
Franck Bui-Huu | caa2a12 | 2006-05-15 19:23:53 +0200 | [diff] [blame] | 1123 | spin_lock(&ctx->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | switch (status) { |
| 1125 | case -EINPROGRESS: |
| 1126 | case -EBUSY: |
| 1127 | case -EIDRM: |
| 1128 | continue; |
| 1129 | default: |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1130 | ERROR(ctx->dev, "urb unlink --> %d\n", |
| 1131 | status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | } |
| 1133 | } |
| 1134 | status = ctx->status; |
| 1135 | } |
| 1136 | } |
| 1137 | |
| 1138 | /* resubmit if we need to, else mark this as done */ |
| 1139 | if ((status == 0) && (ctx->pending < ctx->count)) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1140 | status = usb_submit_urb(urb, GFP_ATOMIC); |
| 1141 | if (status != 0) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1142 | ERROR(ctx->dev, |
| 1143 | "can't resubmit ctrl %02x.%02x, err %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | reqp->bRequestType, reqp->bRequest, status); |
| 1145 | urb->dev = NULL; |
| 1146 | } else |
| 1147 | ctx->pending++; |
| 1148 | } else |
| 1149 | urb->dev = NULL; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | /* signal completion when nothing's queued */ |
| 1152 | if (ctx->pending == 0) |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1153 | complete(&ctx->complete); |
| 1154 | spin_unlock(&ctx->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | } |
| 1156 | |
| 1157 | static int |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1158 | test_ctrl_queue(struct usbtest_dev *dev, struct usbtest_param *param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1160 | struct usb_device *udev = testdev_to_usbdev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | struct urb **urb; |
| 1162 | struct ctrl_ctx context; |
| 1163 | int i; |
| 1164 | |
Xi Wang | e65cdfa | 2012-04-09 15:48:55 -0400 | [diff] [blame] | 1165 | if (param->sglen == 0 || param->iterations > UINT_MAX / param->sglen) |
| 1166 | return -EOPNOTSUPP; |
| 1167 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1168 | spin_lock_init(&context.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | context.dev = dev; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1170 | init_completion(&context.complete); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | context.count = param->sglen * param->iterations; |
| 1172 | context.pending = 0; |
| 1173 | context.status = -ENOMEM; |
| 1174 | context.param = param; |
| 1175 | context.last = -1; |
| 1176 | |
| 1177 | /* allocate and init the urbs we'll queue. |
| 1178 | * as with bulk/intr sglists, sglen is the queue depth; it also |
| 1179 | * controls which subtests run (more tests than sglen) or rerun. |
| 1180 | */ |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 1181 | urb = kcalloc(param->sglen, sizeof(struct urb *), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1182 | if (!urb) |
| 1183 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | for (i = 0; i < param->sglen; i++) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1185 | int pipe = usb_rcvctrlpipe(udev, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | unsigned len; |
| 1187 | struct urb *u; |
| 1188 | struct usb_ctrlrequest req; |
| 1189 | struct subcase *reqp; |
Marcin Slusarz | 6def755 | 2008-05-12 20:17:25 +0200 | [diff] [blame] | 1190 | |
| 1191 | /* sign of this variable means: |
| 1192 | * -: tested code must return this (negative) error code |
| 1193 | * +: tested code may return this (negative too) error code |
| 1194 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | int expected = 0; |
| 1196 | |
| 1197 | /* requests here are mostly expected to succeed on any |
| 1198 | * device, but some are chosen to trigger protocol stalls |
| 1199 | * or short reads. |
| 1200 | */ |
Huang Rui | f55055b | 2013-10-21 23:15:30 +0800 | [diff] [blame] | 1201 | memset(&req, 0, sizeof(req)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | req.bRequest = USB_REQ_GET_DESCRIPTOR; |
| 1203 | req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE; |
| 1204 | |
| 1205 | switch (i % NUM_SUBCASES) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1206 | case 0: /* get device descriptor */ |
| 1207 | req.wValue = cpu_to_le16(USB_DT_DEVICE << 8); |
| 1208 | len = sizeof(struct usb_device_descriptor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1210 | case 1: /* get first config descriptor (only) */ |
| 1211 | req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0); |
| 1212 | len = sizeof(struct usb_config_descriptor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1214 | case 2: /* get altsetting (OFTEN STALLS) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | req.bRequest = USB_REQ_GET_INTERFACE; |
| 1216 | req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1217 | /* index = 0 means first interface */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | len = 1; |
| 1219 | expected = EPIPE; |
| 1220 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1221 | case 3: /* get interface status */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | req.bRequest = USB_REQ_GET_STATUS; |
| 1223 | req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1224 | /* interface 0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | len = 2; |
| 1226 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1227 | case 4: /* get device status */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1228 | req.bRequest = USB_REQ_GET_STATUS; |
| 1229 | req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE; |
| 1230 | len = 2; |
| 1231 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1232 | case 5: /* get device qualifier (MAY STALL) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1233 | req.wValue = cpu_to_le16 (USB_DT_DEVICE_QUALIFIER << 8); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1234 | len = sizeof(struct usb_qualifier_descriptor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | if (udev->speed != USB_SPEED_HIGH) |
| 1236 | expected = EPIPE; |
| 1237 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1238 | case 6: /* get first config descriptor, plus interface */ |
| 1239 | req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0); |
| 1240 | len = sizeof(struct usb_config_descriptor); |
| 1241 | len += sizeof(struct usb_interface_descriptor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1243 | case 7: /* get interface descriptor (ALWAYS STALLS) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | req.wValue = cpu_to_le16 (USB_DT_INTERFACE << 8); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1245 | /* interface == 0 */ |
| 1246 | len = sizeof(struct usb_interface_descriptor); |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1247 | expected = -EPIPE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1248 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1249 | /* NOTE: two consecutive stalls in the queue here. |
| 1250 | * that tests fault recovery a bit more aggressively. */ |
| 1251 | case 8: /* clear endpoint halt (MAY STALL) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | req.bRequest = USB_REQ_CLEAR_FEATURE; |
| 1253 | req.bRequestType = USB_RECIP_ENDPOINT; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1254 | /* wValue 0 == ep halt */ |
| 1255 | /* wIndex 0 == ep0 (shouldn't halt!) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | len = 0; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1257 | pipe = usb_sndctrlpipe(udev, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | expected = EPIPE; |
| 1259 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1260 | case 9: /* get endpoint status */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | req.bRequest = USB_REQ_GET_STATUS; |
| 1262 | req.bRequestType = USB_DIR_IN|USB_RECIP_ENDPOINT; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1263 | /* endpoint 0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | len = 2; |
| 1265 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1266 | case 10: /* trigger short read (EREMOTEIO) */ |
| 1267 | req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | len = 1024; |
| 1269 | expected = -EREMOTEIO; |
| 1270 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1271 | /* NOTE: two consecutive _different_ faults in the queue. */ |
| 1272 | case 11: /* get endpoint descriptor (ALWAYS STALLS) */ |
| 1273 | req.wValue = cpu_to_le16(USB_DT_ENDPOINT << 8); |
| 1274 | /* endpoint == 0 */ |
| 1275 | len = sizeof(struct usb_interface_descriptor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | expected = EPIPE; |
| 1277 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1278 | /* NOTE: sometimes even a third fault in the queue! */ |
| 1279 | case 12: /* get string 0 descriptor (MAY STALL) */ |
| 1280 | req.wValue = cpu_to_le16(USB_DT_STRING << 8); |
| 1281 | /* string == 0, for language IDs */ |
| 1282 | len = sizeof(struct usb_interface_descriptor); |
| 1283 | /* may succeed when > 4 languages */ |
| 1284 | expected = EREMOTEIO; /* or EPIPE, if no strings */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1286 | case 13: /* short read, resembling case 10 */ |
| 1287 | req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0); |
| 1288 | /* last data packet "should" be DATA1, not DATA0 */ |
Paul Zimmerman | 6a23ccd | 2012-04-16 14:19:07 -0700 | [diff] [blame] | 1289 | if (udev->speed == USB_SPEED_SUPER) |
| 1290 | len = 1024 - 512; |
| 1291 | else |
| 1292 | len = 1024 - udev->descriptor.bMaxPacketSize0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | expected = -EREMOTEIO; |
| 1294 | break; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1295 | case 14: /* short read; try to fill the last packet */ |
| 1296 | req.wValue = cpu_to_le16((USB_DT_DEVICE << 8) | 0); |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1297 | /* device descriptor size == 18 bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | len = udev->descriptor.bMaxPacketSize0; |
Sebastian Andrzej Siewior | 67e7d64 | 2011-04-14 16:17:21 +0200 | [diff] [blame] | 1299 | if (udev->speed == USB_SPEED_SUPER) |
| 1300 | len = 512; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | switch (len) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1302 | case 8: |
| 1303 | len = 24; |
| 1304 | break; |
| 1305 | case 16: |
| 1306 | len = 32; |
| 1307 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | } |
| 1309 | expected = -EREMOTEIO; |
| 1310 | break; |
Huang Rui | c952a8b | 2013-11-04 21:11:53 +0800 | [diff] [blame] | 1311 | case 15: |
| 1312 | req.wValue = cpu_to_le16(USB_DT_BOS << 8); |
| 1313 | if (udev->bos) |
| 1314 | len = le16_to_cpu(udev->bos->desc->wTotalLength); |
| 1315 | else |
| 1316 | len = sizeof(struct usb_bos_descriptor); |
Sarah Sharp | 8cf4328 | 2013-12-13 13:44:17 -0800 | [diff] [blame] | 1317 | if (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0201) |
Huang Rui | c952a8b | 2013-11-04 21:11:53 +0800 | [diff] [blame] | 1318 | expected = -EPIPE; |
| 1319 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | default: |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1321 | ERROR(dev, "bogus number of ctrl queue testcases!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | context.status = -EINVAL; |
| 1323 | goto cleanup; |
| 1324 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1325 | req.wLength = cpu_to_le16(len); |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 1326 | urb[i] = u = simple_alloc_urb(udev, pipe, len, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1327 | if (!u) |
| 1328 | goto cleanup; |
| 1329 | |
Huang Rui | f55055b | 2013-10-21 23:15:30 +0800 | [diff] [blame] | 1330 | reqp = kmalloc(sizeof(*reqp), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | if (!reqp) |
| 1332 | goto cleanup; |
| 1333 | reqp->setup = req; |
| 1334 | reqp->number = i % NUM_SUBCASES; |
| 1335 | reqp->expected = expected; |
| 1336 | u->setup_packet = (char *) &reqp->setup; |
| 1337 | |
| 1338 | u->context = &context; |
| 1339 | u->complete = ctrl_complete; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | } |
| 1341 | |
| 1342 | /* queue the urbs */ |
| 1343 | context.urb = urb; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1344 | spin_lock_irq(&context.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | for (i = 0; i < param->sglen; i++) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1346 | context.status = usb_submit_urb(urb[i], GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | if (context.status != 0) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1348 | ERROR(dev, "can't submit urb[%d], status %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | i, context.status); |
| 1350 | context.count = context.pending; |
| 1351 | break; |
| 1352 | } |
| 1353 | context.pending++; |
| 1354 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1355 | spin_unlock_irq(&context.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1356 | |
| 1357 | /* FIXME set timer and time out; provide a disconnect hook */ |
| 1358 | |
| 1359 | /* wait for the last one to complete */ |
| 1360 | if (context.pending > 0) |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1361 | wait_for_completion(&context.complete); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | |
| 1363 | cleanup: |
| 1364 | for (i = 0; i < param->sglen; i++) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1365 | if (!urb[i]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | continue; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1367 | urb[i]->dev = udev; |
Alan Stern | 0ede76f | 2010-03-05 15:10:17 -0500 | [diff] [blame] | 1368 | kfree(urb[i]->setup_packet); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1369 | simple_free_urb(urb[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1371 | kfree(urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | return context.status; |
| 1373 | } |
| 1374 | #undef NUM_SUBCASES |
| 1375 | |
| 1376 | |
| 1377 | /*-------------------------------------------------------------------------*/ |
| 1378 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1379 | static void unlink1_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | { |
| 1381 | int status = urb->status; |
| 1382 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1383 | /* we "know" -EPIPE (stall) never happens */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | if (!status) |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1385 | status = usb_submit_urb(urb, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | if (status) { |
| 1387 | urb->status = status; |
Ming Lei | cdc9779 | 2008-02-24 18:41:47 +0800 | [diff] [blame] | 1388 | complete(urb->context); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | } |
| 1390 | } |
| 1391 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1392 | static int unlink1(struct usbtest_dev *dev, int pipe, int size, int async) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | { |
| 1394 | struct urb *urb; |
| 1395 | struct completion completion; |
| 1396 | int retval = 0; |
| 1397 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1398 | init_completion(&completion); |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 1399 | urb = simple_alloc_urb(testdev_to_usbdev(dev), pipe, size, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | if (!urb) |
| 1401 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | urb->context = &completion; |
| 1403 | urb->complete = unlink1_callback; |
| 1404 | |
Huang Rui | e4d58f5 | 2014-05-26 10:55:36 +0800 | [diff] [blame] | 1405 | if (usb_pipeout(urb->pipe)) { |
| 1406 | simple_fill_buf(urb); |
| 1407 | urb->transfer_flags |= URB_ZERO_PACKET; |
| 1408 | } |
| 1409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | /* keep the endpoint busy. there are lots of hc/hcd-internal |
| 1411 | * states, and testing should get to all of them over time. |
| 1412 | * |
| 1413 | * FIXME want additional tests for when endpoint is STALLing |
| 1414 | * due to errors, or is just NAKing requests. |
| 1415 | */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1416 | retval = usb_submit_urb(urb, GFP_KERNEL); |
| 1417 | if (retval != 0) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1418 | dev_err(&dev->intf->dev, "submit fail %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | return retval; |
| 1420 | } |
| 1421 | |
| 1422 | /* unlinking that should always work. variable delay tests more |
| 1423 | * hcd states and code paths, even with little other system load. |
| 1424 | */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1425 | msleep(jiffies % (2 * INTERRUPT_RATE)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | if (async) { |
Martin Fuzzey | 3b6c023 | 2009-06-04 23:20:38 +0200 | [diff] [blame] | 1427 | while (!completion_done(&completion)) { |
| 1428 | retval = usb_unlink_urb(urb); |
| 1429 | |
Huang Rui | a7683eb | 2014-05-22 18:06:14 +0800 | [diff] [blame] | 1430 | if (retval == 0 && usb_pipein(urb->pipe)) |
| 1431 | retval = simple_check_buf(dev, urb); |
| 1432 | |
Martin Fuzzey | 3b6c023 | 2009-06-04 23:20:38 +0200 | [diff] [blame] | 1433 | switch (retval) { |
| 1434 | case -EBUSY: |
| 1435 | case -EIDRM: |
| 1436 | /* we can't unlink urbs while they're completing |
| 1437 | * or if they've completed, and we haven't |
| 1438 | * resubmitted. "normal" drivers would prevent |
| 1439 | * resubmission, but since we're testing unlink |
| 1440 | * paths, we can't. |
| 1441 | */ |
| 1442 | ERROR(dev, "unlink retry\n"); |
| 1443 | continue; |
| 1444 | case 0: |
| 1445 | case -EINPROGRESS: |
| 1446 | break; |
| 1447 | |
| 1448 | default: |
| 1449 | dev_err(&dev->intf->dev, |
| 1450 | "unlink fail %d\n", retval); |
| 1451 | return retval; |
| 1452 | } |
| 1453 | |
| 1454 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | } |
| 1456 | } else |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1457 | usb_kill_urb(urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1459 | wait_for_completion(&completion); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1460 | retval = urb->status; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1461 | simple_free_urb(urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | |
| 1463 | if (async) |
| 1464 | return (retval == -ECONNRESET) ? 0 : retval - 1000; |
| 1465 | else |
| 1466 | return (retval == -ENOENT || retval == -EPERM) ? |
| 1467 | 0 : retval - 2000; |
| 1468 | } |
| 1469 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1470 | static int unlink_simple(struct usbtest_dev *dev, int pipe, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | { |
| 1472 | int retval = 0; |
| 1473 | |
| 1474 | /* test sync and async paths */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1475 | retval = unlink1(dev, pipe, len, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | if (!retval) |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1477 | retval = unlink1(dev, pipe, len, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1478 | return retval; |
| 1479 | } |
| 1480 | |
| 1481 | /*-------------------------------------------------------------------------*/ |
| 1482 | |
Alan Stern | 869410f | 2011-04-14 11:21:04 -0400 | [diff] [blame] | 1483 | struct queued_ctx { |
| 1484 | struct completion complete; |
| 1485 | atomic_t pending; |
| 1486 | unsigned num; |
| 1487 | int status; |
| 1488 | struct urb **urbs; |
| 1489 | }; |
| 1490 | |
| 1491 | static void unlink_queued_callback(struct urb *urb) |
| 1492 | { |
| 1493 | int status = urb->status; |
| 1494 | struct queued_ctx *ctx = urb->context; |
| 1495 | |
| 1496 | if (ctx->status) |
| 1497 | goto done; |
| 1498 | if (urb == ctx->urbs[ctx->num - 4] || urb == ctx->urbs[ctx->num - 2]) { |
| 1499 | if (status == -ECONNRESET) |
| 1500 | goto done; |
| 1501 | /* What error should we report if the URB completed normally? */ |
| 1502 | } |
| 1503 | if (status != 0) |
| 1504 | ctx->status = status; |
| 1505 | |
| 1506 | done: |
| 1507 | if (atomic_dec_and_test(&ctx->pending)) |
| 1508 | complete(&ctx->complete); |
| 1509 | } |
| 1510 | |
| 1511 | static int unlink_queued(struct usbtest_dev *dev, int pipe, unsigned num, |
| 1512 | unsigned size) |
| 1513 | { |
| 1514 | struct queued_ctx ctx; |
| 1515 | struct usb_device *udev = testdev_to_usbdev(dev); |
| 1516 | void *buf; |
| 1517 | dma_addr_t buf_dma; |
| 1518 | int i; |
| 1519 | int retval = -ENOMEM; |
| 1520 | |
| 1521 | init_completion(&ctx.complete); |
| 1522 | atomic_set(&ctx.pending, 1); /* One more than the actual value */ |
| 1523 | ctx.num = num; |
| 1524 | ctx.status = 0; |
| 1525 | |
| 1526 | buf = usb_alloc_coherent(udev, size, GFP_KERNEL, &buf_dma); |
| 1527 | if (!buf) |
| 1528 | return retval; |
| 1529 | memset(buf, 0, size); |
| 1530 | |
| 1531 | /* Allocate and init the urbs we'll queue */ |
| 1532 | ctx.urbs = kcalloc(num, sizeof(struct urb *), GFP_KERNEL); |
| 1533 | if (!ctx.urbs) |
| 1534 | goto free_buf; |
| 1535 | for (i = 0; i < num; i++) { |
| 1536 | ctx.urbs[i] = usb_alloc_urb(0, GFP_KERNEL); |
| 1537 | if (!ctx.urbs[i]) |
| 1538 | goto free_urbs; |
| 1539 | usb_fill_bulk_urb(ctx.urbs[i], udev, pipe, buf, size, |
| 1540 | unlink_queued_callback, &ctx); |
| 1541 | ctx.urbs[i]->transfer_dma = buf_dma; |
| 1542 | ctx.urbs[i]->transfer_flags = URB_NO_TRANSFER_DMA_MAP; |
Huang Rui | e4d58f5 | 2014-05-26 10:55:36 +0800 | [diff] [blame] | 1543 | |
| 1544 | if (usb_pipeout(ctx.urbs[i]->pipe)) { |
| 1545 | simple_fill_buf(ctx.urbs[i]); |
| 1546 | ctx.urbs[i]->transfer_flags |= URB_ZERO_PACKET; |
| 1547 | } |
Alan Stern | 869410f | 2011-04-14 11:21:04 -0400 | [diff] [blame] | 1548 | } |
| 1549 | |
| 1550 | /* Submit all the URBs and then unlink URBs num - 4 and num - 2. */ |
| 1551 | for (i = 0; i < num; i++) { |
| 1552 | atomic_inc(&ctx.pending); |
| 1553 | retval = usb_submit_urb(ctx.urbs[i], GFP_KERNEL); |
| 1554 | if (retval != 0) { |
| 1555 | dev_err(&dev->intf->dev, "submit urbs[%d] fail %d\n", |
| 1556 | i, retval); |
| 1557 | atomic_dec(&ctx.pending); |
| 1558 | ctx.status = retval; |
| 1559 | break; |
| 1560 | } |
| 1561 | } |
| 1562 | if (i == num) { |
| 1563 | usb_unlink_urb(ctx.urbs[num - 4]); |
| 1564 | usb_unlink_urb(ctx.urbs[num - 2]); |
| 1565 | } else { |
| 1566 | while (--i >= 0) |
| 1567 | usb_unlink_urb(ctx.urbs[i]); |
| 1568 | } |
| 1569 | |
| 1570 | if (atomic_dec_and_test(&ctx.pending)) /* The extra count */ |
| 1571 | complete(&ctx.complete); |
| 1572 | wait_for_completion(&ctx.complete); |
| 1573 | retval = ctx.status; |
| 1574 | |
| 1575 | free_urbs: |
| 1576 | for (i = 0; i < num; i++) |
| 1577 | usb_free_urb(ctx.urbs[i]); |
| 1578 | kfree(ctx.urbs); |
| 1579 | free_buf: |
| 1580 | usb_free_coherent(udev, size, buf, buf_dma); |
| 1581 | return retval; |
| 1582 | } |
| 1583 | |
| 1584 | /*-------------------------------------------------------------------------*/ |
| 1585 | |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1586 | static int verify_not_halted(struct usbtest_dev *tdev, int ep, struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | { |
| 1588 | int retval; |
| 1589 | u16 status; |
| 1590 | |
| 1591 | /* shouldn't look or act halted */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1592 | retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1593 | if (retval < 0) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1594 | ERROR(tdev, "ep %02x couldn't get no-halt status, %d\n", |
| 1595 | ep, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | return retval; |
| 1597 | } |
| 1598 | if (status != 0) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1599 | ERROR(tdev, "ep %02x bogus status: %04x != 0\n", ep, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | return -EINVAL; |
| 1601 | } |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1602 | retval = simple_io(tdev, urb, 1, 0, 0, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | if (retval != 0) |
| 1604 | return -EINVAL; |
| 1605 | return 0; |
| 1606 | } |
| 1607 | |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1608 | static int verify_halted(struct usbtest_dev *tdev, int ep, struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | { |
| 1610 | int retval; |
| 1611 | u16 status; |
| 1612 | |
| 1613 | /* should look and act halted */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1614 | retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1615 | if (retval < 0) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1616 | ERROR(tdev, "ep %02x couldn't get halt status, %d\n", |
| 1617 | ep, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | return retval; |
| 1619 | } |
| 1620 | if (status != 1) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1621 | ERROR(tdev, "ep %02x bogus status: %04x != 1\n", ep, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | return -EINVAL; |
| 1623 | } |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1624 | retval = simple_io(tdev, urb, 1, 0, -EPIPE, __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | if (retval != -EPIPE) |
| 1626 | return -EINVAL; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1627 | retval = simple_io(tdev, urb, 1, 0, -EPIPE, "verify_still_halted"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | if (retval != -EPIPE) |
| 1629 | return -EINVAL; |
| 1630 | return 0; |
| 1631 | } |
| 1632 | |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1633 | static int test_halt(struct usbtest_dev *tdev, int ep, struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | { |
| 1635 | int retval; |
| 1636 | |
| 1637 | /* shouldn't look or act halted now */ |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1638 | retval = verify_not_halted(tdev, ep, urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | if (retval < 0) |
| 1640 | return retval; |
| 1641 | |
| 1642 | /* set halt (protocol test only), verify it worked */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1643 | retval = usb_control_msg(urb->dev, usb_sndctrlpipe(urb->dev, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | USB_REQ_SET_FEATURE, USB_RECIP_ENDPOINT, |
| 1645 | USB_ENDPOINT_HALT, ep, |
| 1646 | NULL, 0, USB_CTRL_SET_TIMEOUT); |
| 1647 | if (retval < 0) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1648 | ERROR(tdev, "ep %02x couldn't set halt, %d\n", ep, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | return retval; |
| 1650 | } |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1651 | retval = verify_halted(tdev, ep, urb); |
Roger Quadros | 824d752 | 2013-12-18 15:40:11 +0530 | [diff] [blame] | 1652 | if (retval < 0) { |
| 1653 | int ret; |
| 1654 | |
| 1655 | /* clear halt anyways, else further tests will fail */ |
| 1656 | ret = usb_clear_halt(urb->dev, urb->pipe); |
| 1657 | if (ret) |
| 1658 | ERROR(tdev, "ep %02x couldn't clear halt, %d\n", |
| 1659 | ep, ret); |
| 1660 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | return retval; |
Roger Quadros | 824d752 | 2013-12-18 15:40:11 +0530 | [diff] [blame] | 1662 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1663 | |
| 1664 | /* clear halt (tests API + protocol), verify it worked */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1665 | retval = usb_clear_halt(urb->dev, urb->pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | if (retval < 0) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1667 | ERROR(tdev, "ep %02x couldn't clear halt, %d\n", ep, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | return retval; |
| 1669 | } |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1670 | retval = verify_not_halted(tdev, ep, urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | if (retval < 0) |
| 1672 | return retval; |
| 1673 | |
| 1674 | /* NOTE: could also verify SET_INTERFACE clear halts ... */ |
| 1675 | |
| 1676 | return 0; |
| 1677 | } |
| 1678 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1679 | static int halt_simple(struct usbtest_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | { |
Paul Zimmerman | 6a23ccd | 2012-04-16 14:19:07 -0700 | [diff] [blame] | 1681 | int ep; |
| 1682 | int retval = 0; |
| 1683 | struct urb *urb; |
| 1684 | struct usb_device *udev = testdev_to_usbdev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | |
Paul Zimmerman | 6a23ccd | 2012-04-16 14:19:07 -0700 | [diff] [blame] | 1686 | if (udev->speed == USB_SPEED_SUPER) |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 1687 | urb = simple_alloc_urb(udev, 0, 1024, 0); |
Paul Zimmerman | 6a23ccd | 2012-04-16 14:19:07 -0700 | [diff] [blame] | 1688 | else |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 1689 | urb = simple_alloc_urb(udev, 0, 512, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1690 | if (urb == NULL) |
| 1691 | return -ENOMEM; |
| 1692 | |
| 1693 | if (dev->in_pipe) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1694 | ep = usb_pipeendpoint(dev->in_pipe) | USB_DIR_IN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | urb->pipe = dev->in_pipe; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1696 | retval = test_halt(dev, ep, urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | if (retval < 0) |
| 1698 | goto done; |
| 1699 | } |
| 1700 | |
| 1701 | if (dev->out_pipe) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1702 | ep = usb_pipeendpoint(dev->out_pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | urb->pipe = dev->out_pipe; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1704 | retval = test_halt(dev, ep, urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | } |
| 1706 | done: |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1707 | simple_free_urb(urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1708 | return retval; |
| 1709 | } |
| 1710 | |
| 1711 | /*-------------------------------------------------------------------------*/ |
| 1712 | |
| 1713 | /* Control OUT tests use the vendor control requests from Intel's |
| 1714 | * USB 2.0 compliance test device: write a buffer, read it back. |
| 1715 | * |
| 1716 | * Intel's spec only _requires_ that it work for one packet, which |
| 1717 | * is pretty weak. Some HCDs place limits here; most devices will |
| 1718 | * need to be able to handle more than one OUT data packet. We'll |
| 1719 | * try whatever we're told to try. |
| 1720 | */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1721 | static int ctrl_out(struct usbtest_dev *dev, |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 1722 | unsigned count, unsigned length, unsigned vary, unsigned offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | { |
Orjan Friberg | f54fa84 | 2006-08-08 23:31:40 -0700 | [diff] [blame] | 1724 | unsigned i, j, len; |
| 1725 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1726 | u8 *buf; |
| 1727 | char *what = "?"; |
| 1728 | struct usb_device *udev; |
Orjan Friberg | f54fa84 | 2006-08-08 23:31:40 -0700 | [diff] [blame] | 1729 | |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 1730 | if (length < 1 || length > 0xffff || vary >= length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | return -EINVAL; |
| 1732 | |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 1733 | buf = kmalloc(length + offset, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | if (!buf) |
| 1735 | return -ENOMEM; |
| 1736 | |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 1737 | buf += offset; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1738 | udev = testdev_to_usbdev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | len = length; |
| 1740 | retval = 0; |
| 1741 | |
| 1742 | /* NOTE: hardware might well act differently if we pushed it |
| 1743 | * with lots back-to-back queued requests. |
| 1744 | */ |
| 1745 | for (i = 0; i < count; i++) { |
| 1746 | /* write patterned data */ |
| 1747 | for (j = 0; j < len; j++) |
Peter Chen | 169900f | 2015-09-01 09:48:00 +0800 | [diff] [blame] | 1748 | buf[j] = (u8)(i + j); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1749 | retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | 0x5b, USB_DIR_OUT|USB_TYPE_VENDOR, |
| 1751 | 0, 0, buf, len, USB_CTRL_SET_TIMEOUT); |
| 1752 | if (retval != len) { |
| 1753 | what = "write"; |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 1754 | if (retval >= 0) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1755 | ERROR(dev, "ctrl_out, wlen %d (expected %d)\n", |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 1756 | retval, len); |
| 1757 | retval = -EBADMSG; |
| 1758 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1759 | break; |
| 1760 | } |
| 1761 | |
| 1762 | /* read it back -- assuming nothing intervened!! */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1763 | retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | 0x5c, USB_DIR_IN|USB_TYPE_VENDOR, |
| 1765 | 0, 0, buf, len, USB_CTRL_GET_TIMEOUT); |
| 1766 | if (retval != len) { |
| 1767 | what = "read"; |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 1768 | if (retval >= 0) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1769 | ERROR(dev, "ctrl_out, rlen %d (expected %d)\n", |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 1770 | retval, len); |
| 1771 | retval = -EBADMSG; |
| 1772 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | break; |
| 1774 | } |
| 1775 | |
| 1776 | /* fail if we can't verify */ |
| 1777 | for (j = 0; j < len; j++) { |
Peter Chen | 169900f | 2015-09-01 09:48:00 +0800 | [diff] [blame] | 1778 | if (buf[j] != (u8)(i + j)) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1779 | ERROR(dev, "ctrl_out, byte %d is %d not %d\n", |
Peter Chen | 169900f | 2015-09-01 09:48:00 +0800 | [diff] [blame] | 1780 | j, buf[j], (u8)(i + j)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | retval = -EBADMSG; |
| 1782 | break; |
| 1783 | } |
| 1784 | } |
| 1785 | if (retval < 0) { |
| 1786 | what = "verify"; |
| 1787 | break; |
| 1788 | } |
| 1789 | |
| 1790 | len += vary; |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 1791 | |
| 1792 | /* [real world] the "zero bytes IN" case isn't really used. |
Joe Perches | dc0d5c1 | 2007-12-17 11:40:18 -0800 | [diff] [blame] | 1793 | * hardware can easily trip up in this weird case, since its |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 1794 | * status stage is IN, not OUT like other ep0in transfers. |
| 1795 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1796 | if (len > length) |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 1797 | len = realworld ? 1 : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | } |
| 1799 | |
| 1800 | if (retval < 0) |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1801 | ERROR(dev, "ctrl_out %s failed, code %d, count %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | what, retval, i); |
| 1803 | |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 1804 | kfree(buf - offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | return retval; |
| 1806 | } |
| 1807 | |
| 1808 | /*-------------------------------------------------------------------------*/ |
| 1809 | |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 1810 | /* ISO/BULK tests ... mimics common usage |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | * - buffer length is split into N packets (mostly maxpacket sized) |
| 1812 | * - multi-buffers according to sglen |
| 1813 | */ |
| 1814 | |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 1815 | struct transfer_context { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1816 | unsigned count; |
| 1817 | unsigned pending; |
| 1818 | spinlock_t lock; |
| 1819 | struct completion done; |
Alan Stern | 9da2150 | 2006-05-22 16:47:13 -0400 | [diff] [blame] | 1820 | int submit_error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | unsigned long errors; |
Alan Stern | 9da2150 | 2006-05-22 16:47:13 -0400 | [diff] [blame] | 1822 | unsigned long packet_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1823 | struct usbtest_dev *dev; |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 1824 | bool is_iso; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | }; |
| 1826 | |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 1827 | static void complicated_callback(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | { |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 1829 | struct transfer_context *ctx = urb->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | |
| 1831 | spin_lock(&ctx->lock); |
| 1832 | ctx->count--; |
| 1833 | |
Alan Stern | 9da2150 | 2006-05-22 16:47:13 -0400 | [diff] [blame] | 1834 | ctx->packet_count += urb->number_of_packets; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | if (urb->error_count > 0) |
| 1836 | ctx->errors += urb->error_count; |
Alan Stern | 9da2150 | 2006-05-22 16:47:13 -0400 | [diff] [blame] | 1837 | else if (urb->status != 0) |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 1838 | ctx->errors += (ctx->is_iso ? urb->number_of_packets : 1); |
Martin Fuzzey | 40aed52 | 2010-10-01 00:20:48 +0200 | [diff] [blame] | 1839 | else if (urb->actual_length != urb->transfer_buffer_length) |
| 1840 | ctx->errors++; |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 1841 | else if (check_guard_bytes(ctx->dev, urb) != 0) |
| 1842 | ctx->errors++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | |
Alan Stern | 9da2150 | 2006-05-22 16:47:13 -0400 | [diff] [blame] | 1844 | if (urb->status == 0 && ctx->count > (ctx->pending - 1) |
| 1845 | && !ctx->submit_error) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1846 | int status = usb_submit_urb(urb, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | switch (status) { |
| 1848 | case 0: |
| 1849 | goto done; |
| 1850 | default: |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1851 | dev_err(&ctx->dev->intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | "iso resubmit err %d\n", |
| 1853 | status); |
| 1854 | /* FALLTHROUGH */ |
| 1855 | case -ENODEV: /* disconnected */ |
Alan Stern | 9da2150 | 2006-05-22 16:47:13 -0400 | [diff] [blame] | 1856 | case -ESHUTDOWN: /* endpoint disabled */ |
| 1857 | ctx->submit_error = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | break; |
| 1859 | } |
| 1860 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1861 | |
| 1862 | ctx->pending--; |
| 1863 | if (ctx->pending == 0) { |
| 1864 | if (ctx->errors) |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 1865 | dev_err(&ctx->dev->intf->dev, |
Alan Stern | 9da2150 | 2006-05-22 16:47:13 -0400 | [diff] [blame] | 1866 | "iso test, %lu errors out of %lu\n", |
| 1867 | ctx->errors, ctx->packet_count); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1868 | complete(&ctx->done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | } |
| 1870 | done: |
| 1871 | spin_unlock(&ctx->lock); |
| 1872 | } |
| 1873 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1874 | static struct urb *iso_alloc_urb( |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | struct usb_device *udev, |
| 1876 | int pipe, |
| 1877 | struct usb_endpoint_descriptor *desc, |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 1878 | long bytes, |
| 1879 | unsigned offset |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | ) |
| 1881 | { |
| 1882 | struct urb *urb; |
| 1883 | unsigned i, maxp, packets; |
| 1884 | |
| 1885 | if (bytes < 0 || !desc) |
| 1886 | return NULL; |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 1887 | maxp = 0x7ff & usb_endpoint_maxp(desc); |
| 1888 | maxp *= 1 + (0x3 & (usb_endpoint_maxp(desc) >> 11)); |
Julia Lawall | dfa5ec7 | 2008-03-04 15:25:11 -0800 | [diff] [blame] | 1889 | packets = DIV_ROUND_UP(bytes, maxp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1891 | urb = usb_alloc_urb(packets, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1892 | if (!urb) |
| 1893 | return urb; |
| 1894 | urb->dev = udev; |
| 1895 | urb->pipe = pipe; |
| 1896 | |
| 1897 | urb->number_of_packets = packets; |
| 1898 | urb->transfer_buffer_length = bytes; |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 1899 | urb->transfer_buffer = usb_alloc_coherent(udev, bytes + offset, |
| 1900 | GFP_KERNEL, |
| 1901 | &urb->transfer_dma); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1902 | if (!urb->transfer_buffer) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1903 | usb_free_urb(urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | return NULL; |
| 1905 | } |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 1906 | if (offset) { |
| 1907 | memset(urb->transfer_buffer, GUARD_BYTE, offset); |
| 1908 | urb->transfer_buffer += offset; |
| 1909 | urb->transfer_dma += offset; |
| 1910 | } |
| 1911 | /* For inbound transfers use guard byte so that test fails if |
| 1912 | data not correctly copied */ |
| 1913 | memset(urb->transfer_buffer, |
| 1914 | usb_pipein(urb->pipe) ? GUARD_BYTE : 0, |
| 1915 | bytes); |
| 1916 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1917 | for (i = 0; i < packets; i++) { |
| 1918 | /* here, only the last packet will be short */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1919 | urb->iso_frame_desc[i].length = min((unsigned) bytes, maxp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1920 | bytes -= urb->iso_frame_desc[i].length; |
| 1921 | |
| 1922 | urb->iso_frame_desc[i].offset = maxp * i; |
| 1923 | } |
| 1924 | |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 1925 | urb->complete = complicated_callback; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1926 | /* urb->context = SET BY CALLER */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | urb->interval = 1 << (desc->bInterval - 1); |
| 1928 | urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP; |
| 1929 | return urb; |
| 1930 | } |
| 1931 | |
| 1932 | static int |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 1933 | test_queue(struct usbtest_dev *dev, struct usbtest_param *param, |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 1934 | int pipe, struct usb_endpoint_descriptor *desc, unsigned offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1935 | { |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 1936 | struct transfer_context context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | struct usb_device *udev; |
| 1938 | unsigned i; |
| 1939 | unsigned long packets = 0; |
Alan Stern | 9da2150 | 2006-05-22 16:47:13 -0400 | [diff] [blame] | 1940 | int status = 0; |
Peter Chen | 41d3c0b | 2015-09-01 09:47:58 +0800 | [diff] [blame] | 1941 | struct urb *urbs[param->sglen]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | |
Huang Rui | f55055b | 2013-10-21 23:15:30 +0800 | [diff] [blame] | 1943 | memset(&context, 0, sizeof(context)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | context.count = param->iterations * param->sglen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1945 | context.dev = dev; |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 1946 | context.is_iso = !!desc; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1947 | init_completion(&context.done); |
| 1948 | spin_lock_init(&context.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1949 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1950 | udev = testdev_to_usbdev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1951 | |
| 1952 | for (i = 0; i < param->sglen; i++) { |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 1953 | if (context.is_iso) |
| 1954 | urbs[i] = iso_alloc_urb(udev, pipe, desc, |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 1955 | param->length, offset); |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 1956 | else |
| 1957 | urbs[i] = complicated_alloc_urb(udev, pipe, |
| 1958 | param->length, 0); |
| 1959 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1960 | if (!urbs[i]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | status = -ENOMEM; |
| 1962 | goto fail; |
| 1963 | } |
| 1964 | packets += urbs[i]->number_of_packets; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1965 | urbs[i]->context = &context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | } |
| 1967 | packets *= param->iterations; |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 1968 | |
| 1969 | if (context.is_iso) { |
| 1970 | dev_info(&dev->intf->dev, |
| 1971 | "iso period %d %sframes, wMaxPacket %d, transactions: %d\n", |
| 1972 | 1 << (desc->bInterval - 1), |
| 1973 | (udev->speed == USB_SPEED_HIGH) ? "micro" : "", |
| 1974 | usb_endpoint_maxp(desc) & 0x7ff, |
| 1975 | 1 + (0x3 & (usb_endpoint_maxp(desc) >> 11))); |
| 1976 | |
| 1977 | dev_info(&dev->intf->dev, |
| 1978 | "total %lu msec (%lu packets)\n", |
| 1979 | (packets * (1 << (desc->bInterval - 1))) |
| 1980 | / ((udev->speed == USB_SPEED_HIGH) ? 8 : 1), |
| 1981 | packets); |
| 1982 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1984 | spin_lock_irq(&context.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | for (i = 0; i < param->sglen; i++) { |
Alan Stern | 9da2150 | 2006-05-22 16:47:13 -0400 | [diff] [blame] | 1986 | ++context.pending; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1987 | status = usb_submit_urb(urbs[i], GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1988 | if (status < 0) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1989 | ERROR(dev, "submit iso[%d], error %d\n", i, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | if (i == 0) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1991 | spin_unlock_irq(&context.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1992 | goto fail; |
| 1993 | } |
| 1994 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 1995 | simple_free_urb(urbs[i]); |
Ming Lei | e10e1be | 2010-08-02 22:09:01 +0800 | [diff] [blame] | 1996 | urbs[i] = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | context.pending--; |
Alan Stern | 9da2150 | 2006-05-22 16:47:13 -0400 | [diff] [blame] | 1998 | context.submit_error = 1; |
| 1999 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2000 | } |
| 2001 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2002 | spin_unlock_irq(&context.lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2004 | wait_for_completion(&context.done); |
Alan Stern | 9da2150 | 2006-05-22 16:47:13 -0400 | [diff] [blame] | 2005 | |
Ming Lei | e10e1be | 2010-08-02 22:09:01 +0800 | [diff] [blame] | 2006 | for (i = 0; i < param->sglen; i++) { |
| 2007 | if (urbs[i]) |
| 2008 | simple_free_urb(urbs[i]); |
| 2009 | } |
Alan Stern | 9da2150 | 2006-05-22 16:47:13 -0400 | [diff] [blame] | 2010 | /* |
| 2011 | * Isochronous transfers are expected to fail sometimes. As an |
| 2012 | * arbitrary limit, we will report an error if any submissions |
| 2013 | * fail or if the transfer failure rate is > 10%. |
| 2014 | */ |
| 2015 | if (status != 0) |
| 2016 | ; |
| 2017 | else if (context.submit_error) |
| 2018 | status = -EACCES; |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 2019 | else if (context.errors > |
| 2020 | (context.is_iso ? context.packet_count / 10 : 0)) |
Alan Stern | 9da2150 | 2006-05-22 16:47:13 -0400 | [diff] [blame] | 2021 | status = -EIO; |
| 2022 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2023 | |
| 2024 | fail: |
| 2025 | for (i = 0; i < param->sglen; i++) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2026 | if (urbs[i]) |
| 2027 | simple_free_urb(urbs[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2028 | } |
| 2029 | return status; |
| 2030 | } |
| 2031 | |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 2032 | static int test_unaligned_bulk( |
| 2033 | struct usbtest_dev *tdev, |
| 2034 | int pipe, |
| 2035 | unsigned length, |
| 2036 | int iterations, |
| 2037 | unsigned transfer_flags, |
| 2038 | const char *label) |
| 2039 | { |
| 2040 | int retval; |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 2041 | struct urb *urb = usbtest_alloc_urb(testdev_to_usbdev(tdev), |
| 2042 | pipe, length, transfer_flags, 1, 0, simple_callback); |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 2043 | |
| 2044 | if (!urb) |
| 2045 | return -ENOMEM; |
| 2046 | |
| 2047 | retval = simple_io(tdev, urb, iterations, 0, 0, label); |
| 2048 | simple_free_urb(urb); |
| 2049 | return retval; |
| 2050 | } |
| 2051 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | /*-------------------------------------------------------------------------*/ |
| 2053 | |
| 2054 | /* We only have this one interface to user space, through usbfs. |
| 2055 | * User mode code can scan usbfs to find N different devices (maybe on |
| 2056 | * different busses) to use when testing, and allocate one thread per |
| 2057 | * test. So discovery is simplified, and we have no device naming issues. |
| 2058 | * |
| 2059 | * Don't use these only as stress/load tests. Use them along with with |
| 2060 | * other USB bus activity: plugging, unplugging, mousing, mp3 playback, |
| 2061 | * video capture, and so on. Run different tests at different times, in |
| 2062 | * different sequences. Nothing here should interact with other devices, |
| 2063 | * except indirectly by consuming USB bandwidth and CPU resources for test |
| 2064 | * threads and request completion. But the only way to know that for sure |
| 2065 | * is to test when HC queues are in use by many devices. |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2066 | * |
| 2067 | * WARNING: Because usbfs grabs udev->dev.sem before calling this ioctl(), |
| 2068 | * it locks out usbcore in certain code paths. Notably, if you disconnect |
Petr Mladek | 37ebb54 | 2014-09-19 17:32:23 +0200 | [diff] [blame] | 2069 | * the device-under-test, hub_wq will wait block forever waiting for the |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2070 | * ioctl to complete ... so that usb_disconnect() can abort the pending |
| 2071 | * urbs and then call usbtest_disconnect(). To abort a test, you're best |
| 2072 | * off just killing the userspace task and waiting for it to exit. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2073 | */ |
| 2074 | |
| 2075 | static int |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2076 | usbtest_ioctl(struct usb_interface *intf, unsigned int code, void *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2077 | { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2078 | struct usbtest_dev *dev = usb_get_intfdata(intf); |
| 2079 | struct usb_device *udev = testdev_to_usbdev(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | struct usbtest_param *param = buf; |
| 2081 | int retval = -EOPNOTSUPP; |
| 2082 | struct urb *urb; |
| 2083 | struct scatterlist *sg; |
| 2084 | struct usb_sg_request req; |
| 2085 | struct timeval start; |
| 2086 | unsigned i; |
| 2087 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2088 | /* FIXME USBDEVFS_CONNECTINFO doesn't say how fast the device is. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2089 | |
Vikram Pandita | 7f4e985 | 2009-11-09 21:24:32 -0600 | [diff] [blame] | 2090 | pattern = mod_pattern; |
| 2091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2092 | if (code != USBTEST_REQUEST) |
| 2093 | return -EOPNOTSUPP; |
| 2094 | |
roel kluin | 8aafdf6 | 2008-10-21 00:36:44 -0400 | [diff] [blame] | 2095 | if (param->iterations <= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | return -EINVAL; |
| 2097 | |
Peter Chen | 41d3c0b | 2015-09-01 09:47:58 +0800 | [diff] [blame] | 2098 | if (param->sglen > MAX_SGLEN) |
| 2099 | return -EINVAL; |
| 2100 | |
Matthias Kaehlcke | 1cfab02 | 2007-12-13 16:15:33 -0800 | [diff] [blame] | 2101 | if (mutex_lock_interruptible(&dev->lock)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | return -ERESTARTSYS; |
| 2103 | |
Alan Stern | 70a1c9e | 2008-03-06 17:00:58 -0500 | [diff] [blame] | 2104 | /* FIXME: What if a system sleep starts while a test is running? */ |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 2105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2106 | /* some devices, like ez-usb default devices, need a non-default |
| 2107 | * altsetting to have any active endpoints. some tests change |
| 2108 | * altsettings; force a default so most tests don't need to check. |
| 2109 | */ |
| 2110 | if (dev->info->alt >= 0) { |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2111 | int res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | |
| 2113 | if (intf->altsetting->desc.bInterfaceNumber) { |
Matthias Kaehlcke | 1cfab02 | 2007-12-13 16:15:33 -0800 | [diff] [blame] | 2114 | mutex_unlock(&dev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | return -ENODEV; |
| 2116 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2117 | res = set_altsetting(dev, dev->info->alt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | if (res) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2119 | dev_err(&intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | "set altsetting to %d failed, %d\n", |
| 2121 | dev->info->alt, res); |
Matthias Kaehlcke | 1cfab02 | 2007-12-13 16:15:33 -0800 | [diff] [blame] | 2122 | mutex_unlock(&dev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | return res; |
| 2124 | } |
| 2125 | } |
| 2126 | |
| 2127 | /* |
| 2128 | * Just a bunch of test cases that every HCD is expected to handle. |
| 2129 | * |
| 2130 | * Some may need specific firmware, though it'd be good to have |
| 2131 | * one firmware image to handle all the test cases. |
| 2132 | * |
| 2133 | * FIXME add more tests! cancel requests, verify the data, control |
| 2134 | * queueing, concurrent read+write threads, and so on. |
| 2135 | */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2136 | do_gettimeofday(&start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2137 | switch (param->test_num) { |
| 2138 | |
| 2139 | case 0: |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2140 | dev_info(&intf->dev, "TEST 0: NOP\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | retval = 0; |
| 2142 | break; |
| 2143 | |
| 2144 | /* Simple non-queued bulk I/O tests */ |
| 2145 | case 1: |
| 2146 | if (dev->out_pipe == 0) |
| 2147 | break; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2148 | dev_info(&intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | "TEST 1: write %d bytes %u times\n", |
| 2150 | param->length, param->iterations); |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 2151 | urb = simple_alloc_urb(udev, dev->out_pipe, param->length, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2152 | if (!urb) { |
| 2153 | retval = -ENOMEM; |
| 2154 | break; |
| 2155 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2156 | /* FIRMWARE: bulk sink (maybe accepts short writes) */ |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2157 | retval = simple_io(dev, urb, param->iterations, 0, 0, "test1"); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2158 | simple_free_urb(urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | break; |
| 2160 | case 2: |
| 2161 | if (dev->in_pipe == 0) |
| 2162 | break; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2163 | dev_info(&intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | "TEST 2: read %d bytes %u times\n", |
| 2165 | param->length, param->iterations); |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 2166 | urb = simple_alloc_urb(udev, dev->in_pipe, param->length, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | if (!urb) { |
| 2168 | retval = -ENOMEM; |
| 2169 | break; |
| 2170 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2171 | /* FIRMWARE: bulk source (maybe generates short writes) */ |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2172 | retval = simple_io(dev, urb, param->iterations, 0, 0, "test2"); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2173 | simple_free_urb(urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2174 | break; |
| 2175 | case 3: |
| 2176 | if (dev->out_pipe == 0 || param->vary == 0) |
| 2177 | break; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2178 | dev_info(&intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2179 | "TEST 3: write/%d 0..%d bytes %u times\n", |
| 2180 | param->vary, param->length, param->iterations); |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 2181 | urb = simple_alloc_urb(udev, dev->out_pipe, param->length, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | if (!urb) { |
| 2183 | retval = -ENOMEM; |
| 2184 | break; |
| 2185 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2186 | /* FIRMWARE: bulk sink (maybe accepts short writes) */ |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2187 | retval = simple_io(dev, urb, param->iterations, param->vary, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | 0, "test3"); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2189 | simple_free_urb(urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2190 | break; |
| 2191 | case 4: |
| 2192 | if (dev->in_pipe == 0 || param->vary == 0) |
| 2193 | break; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2194 | dev_info(&intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2195 | "TEST 4: read/%d 0..%d bytes %u times\n", |
| 2196 | param->vary, param->length, param->iterations); |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 2197 | urb = simple_alloc_urb(udev, dev->in_pipe, param->length, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | if (!urb) { |
| 2199 | retval = -ENOMEM; |
| 2200 | break; |
| 2201 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2202 | /* FIRMWARE: bulk source (maybe generates short writes) */ |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2203 | retval = simple_io(dev, urb, param->iterations, param->vary, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2204 | 0, "test4"); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2205 | simple_free_urb(urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | break; |
| 2207 | |
| 2208 | /* Queued bulk I/O tests */ |
| 2209 | case 5: |
| 2210 | if (dev->out_pipe == 0 || param->sglen == 0) |
| 2211 | break; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2212 | dev_info(&intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | "TEST 5: write %d sglists %d entries of %d bytes\n", |
| 2214 | param->iterations, |
| 2215 | param->sglen, param->length); |
Alan Stern | b9a6e8e | 2015-09-01 09:48:01 +0800 | [diff] [blame] | 2216 | sg = alloc_sglist(param->sglen, param->length, |
| 2217 | 0, dev, dev->out_pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | if (!sg) { |
| 2219 | retval = -ENOMEM; |
| 2220 | break; |
| 2221 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2222 | /* FIRMWARE: bulk sink (maybe accepts short writes) */ |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2223 | retval = perform_sglist(dev, param->iterations, dev->out_pipe, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2224 | &req, sg, param->sglen); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2225 | free_sglist(sg, param->sglen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2226 | break; |
| 2227 | |
| 2228 | case 6: |
| 2229 | if (dev->in_pipe == 0 || param->sglen == 0) |
| 2230 | break; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2231 | dev_info(&intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2232 | "TEST 6: read %d sglists %d entries of %d bytes\n", |
| 2233 | param->iterations, |
| 2234 | param->sglen, param->length); |
Alan Stern | b9a6e8e | 2015-09-01 09:48:01 +0800 | [diff] [blame] | 2235 | sg = alloc_sglist(param->sglen, param->length, |
| 2236 | 0, dev, dev->in_pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | if (!sg) { |
| 2238 | retval = -ENOMEM; |
| 2239 | break; |
| 2240 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2241 | /* FIRMWARE: bulk source (maybe generates short writes) */ |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2242 | retval = perform_sglist(dev, param->iterations, dev->in_pipe, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2243 | &req, sg, param->sglen); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2244 | free_sglist(sg, param->sglen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | break; |
| 2246 | case 7: |
| 2247 | if (dev->out_pipe == 0 || param->sglen == 0 || param->vary == 0) |
| 2248 | break; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2249 | dev_info(&intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2250 | "TEST 7: write/%d %d sglists %d entries 0..%d bytes\n", |
| 2251 | param->vary, param->iterations, |
| 2252 | param->sglen, param->length); |
Alan Stern | b9a6e8e | 2015-09-01 09:48:01 +0800 | [diff] [blame] | 2253 | sg = alloc_sglist(param->sglen, param->length, |
| 2254 | param->vary, dev, dev->out_pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2255 | if (!sg) { |
| 2256 | retval = -ENOMEM; |
| 2257 | break; |
| 2258 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2259 | /* FIRMWARE: bulk sink (maybe accepts short writes) */ |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2260 | retval = perform_sglist(dev, param->iterations, dev->out_pipe, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2261 | &req, sg, param->sglen); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2262 | free_sglist(sg, param->sglen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2263 | break; |
| 2264 | case 8: |
| 2265 | if (dev->in_pipe == 0 || param->sglen == 0 || param->vary == 0) |
| 2266 | break; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2267 | dev_info(&intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | "TEST 8: read/%d %d sglists %d entries 0..%d bytes\n", |
| 2269 | param->vary, param->iterations, |
| 2270 | param->sglen, param->length); |
Alan Stern | b9a6e8e | 2015-09-01 09:48:01 +0800 | [diff] [blame] | 2271 | sg = alloc_sglist(param->sglen, param->length, |
| 2272 | param->vary, dev, dev->in_pipe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 | if (!sg) { |
| 2274 | retval = -ENOMEM; |
| 2275 | break; |
| 2276 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2277 | /* FIRMWARE: bulk source (maybe generates short writes) */ |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2278 | retval = perform_sglist(dev, param->iterations, dev->in_pipe, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | &req, sg, param->sglen); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2280 | free_sglist(sg, param->sglen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2281 | break; |
| 2282 | |
| 2283 | /* non-queued sanity tests for control (chapter 9 subset) */ |
| 2284 | case 9: |
| 2285 | retval = 0; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2286 | dev_info(&intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | "TEST 9: ch9 (subset) control tests, %d times\n", |
| 2288 | param->iterations); |
| 2289 | for (i = param->iterations; retval == 0 && i--; /* NOP */) |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2290 | retval = ch9_postconfig(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2291 | if (retval) |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2292 | dev_err(&intf->dev, "ch9 subset failed, " |
| 2293 | "iterations left %d\n", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2294 | break; |
| 2295 | |
| 2296 | /* queued control messaging */ |
| 2297 | case 10: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2298 | retval = 0; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2299 | dev_info(&intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2300 | "TEST 10: queue %d control calls, %d times\n", |
| 2301 | param->sglen, |
| 2302 | param->iterations); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2303 | retval = test_ctrl_queue(dev, param); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2304 | break; |
| 2305 | |
| 2306 | /* simple non-queued unlinks (ring with one urb) */ |
| 2307 | case 11: |
| 2308 | if (dev->in_pipe == 0 || !param->length) |
| 2309 | break; |
| 2310 | retval = 0; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2311 | dev_info(&intf->dev, "TEST 11: unlink %d reads of %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2312 | param->iterations, param->length); |
| 2313 | for (i = param->iterations; retval == 0 && i--; /* NOP */) |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2314 | retval = unlink_simple(dev, dev->in_pipe, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2315 | param->length); |
| 2316 | if (retval) |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2317 | dev_err(&intf->dev, "unlink reads failed %d, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2318 | "iterations left %d\n", retval, i); |
| 2319 | break; |
| 2320 | case 12: |
| 2321 | if (dev->out_pipe == 0 || !param->length) |
| 2322 | break; |
| 2323 | retval = 0; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2324 | dev_info(&intf->dev, "TEST 12: unlink %d writes of %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2325 | param->iterations, param->length); |
| 2326 | for (i = param->iterations; retval == 0 && i--; /* NOP */) |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2327 | retval = unlink_simple(dev, dev->out_pipe, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2328 | param->length); |
| 2329 | if (retval) |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2330 | dev_err(&intf->dev, "unlink writes failed %d, " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | "iterations left %d\n", retval, i); |
| 2332 | break; |
| 2333 | |
| 2334 | /* ep halt tests */ |
| 2335 | case 13: |
| 2336 | if (dev->out_pipe == 0 && dev->in_pipe == 0) |
| 2337 | break; |
| 2338 | retval = 0; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2339 | dev_info(&intf->dev, "TEST 13: set/clear %d halts\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2340 | param->iterations); |
| 2341 | for (i = param->iterations; retval == 0 && i--; /* NOP */) |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2342 | retval = halt_simple(dev); |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2343 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2344 | if (retval) |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2345 | ERROR(dev, "halts failed, iterations left %d\n", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2346 | break; |
| 2347 | |
| 2348 | /* control write tests */ |
| 2349 | case 14: |
| 2350 | if (!dev->info->ctrl_out) |
| 2351 | break; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2352 | dev_info(&intf->dev, "TEST 14: %d ep0out, %d..%d vary %d\n", |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 2353 | param->iterations, |
| 2354 | realworld ? 1 : 0, param->length, |
| 2355 | param->vary); |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2356 | retval = ctrl_out(dev, param->iterations, |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 2357 | param->length, param->vary, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2358 | break; |
| 2359 | |
| 2360 | /* iso write tests */ |
| 2361 | case 15: |
| 2362 | if (dev->out_iso_pipe == 0 || param->sglen == 0) |
| 2363 | break; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2364 | dev_info(&intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2365 | "TEST 15: write %d iso, %d entries of %d bytes\n", |
| 2366 | param->iterations, |
| 2367 | param->sglen, param->length); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2368 | /* FIRMWARE: iso sink */ |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 2369 | retval = test_queue(dev, param, |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 2370 | dev->out_iso_pipe, dev->iso_out, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2371 | break; |
| 2372 | |
| 2373 | /* iso read tests */ |
| 2374 | case 16: |
| 2375 | if (dev->in_iso_pipe == 0 || param->sglen == 0) |
| 2376 | break; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2377 | dev_info(&intf->dev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2378 | "TEST 16: read %d iso, %d entries of %d bytes\n", |
| 2379 | param->iterations, |
| 2380 | param->sglen, param->length); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2381 | /* FIRMWARE: iso source */ |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 2382 | retval = test_queue(dev, param, |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 2383 | dev->in_iso_pipe, dev->iso_in, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2384 | break; |
| 2385 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2386 | /* FIXME scatterlist cancel (needs helper thread) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2387 | |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 2388 | /* Tests for bulk I/O using DMA mapping by core and odd address */ |
| 2389 | case 17: |
| 2390 | if (dev->out_pipe == 0) |
| 2391 | break; |
| 2392 | dev_info(&intf->dev, |
| 2393 | "TEST 17: write odd addr %d bytes %u times core map\n", |
| 2394 | param->length, param->iterations); |
| 2395 | |
| 2396 | retval = test_unaligned_bulk( |
| 2397 | dev, dev->out_pipe, |
| 2398 | param->length, param->iterations, |
| 2399 | 0, "test17"); |
| 2400 | break; |
| 2401 | |
| 2402 | case 18: |
| 2403 | if (dev->in_pipe == 0) |
| 2404 | break; |
| 2405 | dev_info(&intf->dev, |
| 2406 | "TEST 18: read odd addr %d bytes %u times core map\n", |
| 2407 | param->length, param->iterations); |
| 2408 | |
| 2409 | retval = test_unaligned_bulk( |
| 2410 | dev, dev->in_pipe, |
| 2411 | param->length, param->iterations, |
| 2412 | 0, "test18"); |
| 2413 | break; |
| 2414 | |
| 2415 | /* Tests for bulk I/O using premapped coherent buffer and odd address */ |
| 2416 | case 19: |
| 2417 | if (dev->out_pipe == 0) |
| 2418 | break; |
| 2419 | dev_info(&intf->dev, |
| 2420 | "TEST 19: write odd addr %d bytes %u times premapped\n", |
| 2421 | param->length, param->iterations); |
| 2422 | |
| 2423 | retval = test_unaligned_bulk( |
| 2424 | dev, dev->out_pipe, |
| 2425 | param->length, param->iterations, |
| 2426 | URB_NO_TRANSFER_DMA_MAP, "test19"); |
| 2427 | break; |
| 2428 | |
| 2429 | case 20: |
| 2430 | if (dev->in_pipe == 0) |
| 2431 | break; |
| 2432 | dev_info(&intf->dev, |
| 2433 | "TEST 20: read odd addr %d bytes %u times premapped\n", |
| 2434 | param->length, param->iterations); |
| 2435 | |
| 2436 | retval = test_unaligned_bulk( |
| 2437 | dev, dev->in_pipe, |
| 2438 | param->length, param->iterations, |
| 2439 | URB_NO_TRANSFER_DMA_MAP, "test20"); |
| 2440 | break; |
| 2441 | |
| 2442 | /* control write tests with unaligned buffer */ |
| 2443 | case 21: |
| 2444 | if (!dev->info->ctrl_out) |
| 2445 | break; |
| 2446 | dev_info(&intf->dev, |
| 2447 | "TEST 21: %d ep0out odd addr, %d..%d vary %d\n", |
| 2448 | param->iterations, |
| 2449 | realworld ? 1 : 0, param->length, |
| 2450 | param->vary); |
| 2451 | retval = ctrl_out(dev, param->iterations, |
| 2452 | param->length, param->vary, 1); |
| 2453 | break; |
| 2454 | |
| 2455 | /* unaligned iso tests */ |
| 2456 | case 22: |
| 2457 | if (dev->out_iso_pipe == 0 || param->sglen == 0) |
| 2458 | break; |
| 2459 | dev_info(&intf->dev, |
| 2460 | "TEST 22: write %d iso odd, %d entries of %d bytes\n", |
| 2461 | param->iterations, |
| 2462 | param->sglen, param->length); |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 2463 | retval = test_queue(dev, param, |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 2464 | dev->out_iso_pipe, dev->iso_out, 1); |
| 2465 | break; |
| 2466 | |
| 2467 | case 23: |
| 2468 | if (dev->in_iso_pipe == 0 || param->sglen == 0) |
| 2469 | break; |
| 2470 | dev_info(&intf->dev, |
| 2471 | "TEST 23: read %d iso odd, %d entries of %d bytes\n", |
| 2472 | param->iterations, |
| 2473 | param->sglen, param->length); |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 2474 | retval = test_queue(dev, param, |
Martin Fuzzey | 084fb20 | 2011-01-16 19:17:11 +0100 | [diff] [blame] | 2475 | dev->in_iso_pipe, dev->iso_in, 1); |
| 2476 | break; |
| 2477 | |
Alan Stern | 869410f | 2011-04-14 11:21:04 -0400 | [diff] [blame] | 2478 | /* unlink URBs from a bulk-OUT queue */ |
| 2479 | case 24: |
| 2480 | if (dev->out_pipe == 0 || !param->length || param->sglen < 4) |
| 2481 | break; |
| 2482 | retval = 0; |
Alan Stern | 2cb5000 | 2013-01-02 13:58:18 -0500 | [diff] [blame] | 2483 | dev_info(&intf->dev, "TEST 24: unlink from %d queues of " |
Alan Stern | 869410f | 2011-04-14 11:21:04 -0400 | [diff] [blame] | 2484 | "%d %d-byte writes\n", |
| 2485 | param->iterations, param->sglen, param->length); |
| 2486 | for (i = param->iterations; retval == 0 && i > 0; --i) { |
| 2487 | retval = unlink_queued(dev, dev->out_pipe, |
| 2488 | param->sglen, param->length); |
| 2489 | if (retval) { |
| 2490 | dev_err(&intf->dev, |
| 2491 | "unlink queued writes failed %d, " |
| 2492 | "iterations left %d\n", retval, i); |
| 2493 | break; |
| 2494 | } |
| 2495 | } |
| 2496 | break; |
| 2497 | |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 2498 | /* Simple non-queued interrupt I/O tests */ |
| 2499 | case 25: |
| 2500 | if (dev->out_int_pipe == 0) |
| 2501 | break; |
| 2502 | dev_info(&intf->dev, |
| 2503 | "TEST 25: write %d bytes %u times\n", |
| 2504 | param->length, param->iterations); |
| 2505 | urb = simple_alloc_urb(udev, dev->out_int_pipe, param->length, |
| 2506 | dev->int_out->bInterval); |
| 2507 | if (!urb) { |
| 2508 | retval = -ENOMEM; |
| 2509 | break; |
| 2510 | } |
| 2511 | /* FIRMWARE: interrupt sink (maybe accepts short writes) */ |
| 2512 | retval = simple_io(dev, urb, param->iterations, 0, 0, "test25"); |
| 2513 | simple_free_urb(urb); |
| 2514 | break; |
| 2515 | case 26: |
| 2516 | if (dev->in_int_pipe == 0) |
| 2517 | break; |
| 2518 | dev_info(&intf->dev, |
| 2519 | "TEST 26: read %d bytes %u times\n", |
| 2520 | param->length, param->iterations); |
| 2521 | urb = simple_alloc_urb(udev, dev->in_int_pipe, param->length, |
| 2522 | dev->int_in->bInterval); |
| 2523 | if (!urb) { |
| 2524 | retval = -ENOMEM; |
| 2525 | break; |
| 2526 | } |
| 2527 | /* FIRMWARE: interrupt source (maybe generates short writes) */ |
| 2528 | retval = simple_io(dev, urb, param->iterations, 0, 0, "test26"); |
| 2529 | simple_free_urb(urb); |
| 2530 | break; |
Peter Chen | 145f48c | 2015-10-13 15:18:21 +0800 | [diff] [blame] | 2531 | case 27: |
| 2532 | /* We do performance test, so ignore data compare */ |
| 2533 | if (dev->out_pipe == 0 || param->sglen == 0 || pattern != 0) |
| 2534 | break; |
| 2535 | dev_info(&intf->dev, |
| 2536 | "TEST 27: bulk write %dMbytes\n", (param->iterations * |
| 2537 | param->sglen * param->length) / (1024 * 1024)); |
| 2538 | retval = test_queue(dev, param, |
| 2539 | dev->out_pipe, NULL, 0); |
| 2540 | break; |
| 2541 | case 28: |
| 2542 | if (dev->in_pipe == 0 || param->sglen == 0 || pattern != 0) |
| 2543 | break; |
| 2544 | dev_info(&intf->dev, |
| 2545 | "TEST 28: bulk read %dMbytes\n", (param->iterations * |
| 2546 | param->sglen * param->length) / (1024 * 1024)); |
| 2547 | retval = test_queue(dev, param, |
| 2548 | dev->in_pipe, NULL, 0); |
| 2549 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2550 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2551 | do_gettimeofday(¶m->duration); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2552 | param->duration.tv_sec -= start.tv_sec; |
| 2553 | param->duration.tv_usec -= start.tv_usec; |
| 2554 | if (param->duration.tv_usec < 0) { |
| 2555 | param->duration.tv_usec += 1000 * 1000; |
| 2556 | param->duration.tv_sec -= 1; |
| 2557 | } |
Matthias Kaehlcke | 1cfab02 | 2007-12-13 16:15:33 -0800 | [diff] [blame] | 2558 | mutex_unlock(&dev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2559 | return retval; |
| 2560 | } |
| 2561 | |
| 2562 | /*-------------------------------------------------------------------------*/ |
| 2563 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2564 | static unsigned force_interrupt; |
| 2565 | module_param(force_interrupt, uint, 0); |
| 2566 | MODULE_PARM_DESC(force_interrupt, "0 = test default; else interrupt"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2567 | |
| 2568 | #ifdef GENERIC |
| 2569 | static unsigned short vendor; |
| 2570 | module_param(vendor, ushort, 0); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2571 | MODULE_PARM_DESC(vendor, "vendor code (from usb-if)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2572 | |
| 2573 | static unsigned short product; |
| 2574 | module_param(product, ushort, 0); |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2575 | MODULE_PARM_DESC(product, "product code (from vendor)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2576 | #endif |
| 2577 | |
| 2578 | static int |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2579 | usbtest_probe(struct usb_interface *intf, const struct usb_device_id *id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2580 | { |
| 2581 | struct usb_device *udev; |
| 2582 | struct usbtest_dev *dev; |
| 2583 | struct usbtest_info *info; |
| 2584 | char *rtest, *wtest; |
| 2585 | char *irtest, *iwtest; |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 2586 | char *intrtest, *intwtest; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2587 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2588 | udev = interface_to_usbdev(intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2589 | |
| 2590 | #ifdef GENERIC |
| 2591 | /* specify devices by module parameters? */ |
| 2592 | if (id->match_flags == 0) { |
| 2593 | /* vendor match required, product match optional */ |
| 2594 | if (!vendor || le16_to_cpu(udev->descriptor.idVendor) != (u16)vendor) |
| 2595 | return -ENODEV; |
| 2596 | if (product && le16_to_cpu(udev->descriptor.idProduct) != (u16)product) |
| 2597 | return -ENODEV; |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2598 | dev_info(&intf->dev, "matched module params, " |
| 2599 | "vend=0x%04x prod=0x%04x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2600 | le16_to_cpu(udev->descriptor.idVendor), |
| 2601 | le16_to_cpu(udev->descriptor.idProduct)); |
| 2602 | } |
| 2603 | #endif |
| 2604 | |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 2605 | dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2606 | if (!dev) |
| 2607 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2608 | info = (struct usbtest_info *) id->driver_info; |
| 2609 | dev->info = info; |
Matthias Kaehlcke | 1cfab02 | 2007-12-13 16:15:33 -0800 | [diff] [blame] | 2610 | mutex_init(&dev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | |
| 2612 | dev->intf = intf; |
| 2613 | |
| 2614 | /* cacheline-aligned scratch for i/o */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2615 | dev->buf = kmalloc(TBUF_SIZE, GFP_KERNEL); |
| 2616 | if (dev->buf == NULL) { |
| 2617 | kfree(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2618 | return -ENOMEM; |
| 2619 | } |
| 2620 | |
| 2621 | /* NOTE this doesn't yet test the handful of difference that are |
| 2622 | * visible with high speed interrupts: bigger maxpacket (1K) and |
| 2623 | * "high bandwidth" modes (up to 3 packets/uframe). |
| 2624 | */ |
| 2625 | rtest = wtest = ""; |
| 2626 | irtest = iwtest = ""; |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 2627 | intrtest = intwtest = ""; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2628 | if (force_interrupt || udev->speed == USB_SPEED_LOW) { |
| 2629 | if (info->ep_in) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2630 | dev->in_pipe = usb_rcvintpipe(udev, info->ep_in); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2631 | rtest = " intr-in"; |
| 2632 | } |
| 2633 | if (info->ep_out) { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2634 | dev->out_pipe = usb_sndintpipe(udev, info->ep_out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2635 | wtest = " intr-out"; |
| 2636 | } |
| 2637 | } else { |
Alan Stern | d0b4652 | 2013-01-30 16:38:11 -0500 | [diff] [blame] | 2638 | if (override_alt >= 0 || info->autoconf) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2639 | int status; |
| 2640 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2641 | status = get_endpoints(dev, intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2642 | if (status < 0) { |
Arjan van de Ven | b6c6393 | 2008-07-25 01:45:52 -0700 | [diff] [blame] | 2643 | WARNING(dev, "couldn't get endpoints, %d\n", |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2644 | status); |
Julia Lawall | f4a728d | 2012-03-25 21:08:32 +0200 | [diff] [blame] | 2645 | kfree(dev->buf); |
| 2646 | kfree(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2647 | return status; |
| 2648 | } |
| 2649 | /* may find bulk or ISO pipes */ |
| 2650 | } else { |
| 2651 | if (info->ep_in) |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2652 | dev->in_pipe = usb_rcvbulkpipe(udev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2653 | info->ep_in); |
| 2654 | if (info->ep_out) |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2655 | dev->out_pipe = usb_sndbulkpipe(udev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2656 | info->ep_out); |
| 2657 | } |
| 2658 | if (dev->in_pipe) |
| 2659 | rtest = " bulk-in"; |
| 2660 | if (dev->out_pipe) |
| 2661 | wtest = " bulk-out"; |
| 2662 | if (dev->in_iso_pipe) |
| 2663 | irtest = " iso-in"; |
| 2664 | if (dev->out_iso_pipe) |
| 2665 | iwtest = " iso-out"; |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 2666 | if (dev->in_int_pipe) |
| 2667 | intrtest = " int-in"; |
| 2668 | if (dev->out_int_pipe) |
| 2669 | intwtest = " int-out"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2670 | } |
| 2671 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2672 | usb_set_intfdata(intf, dev); |
| 2673 | dev_info(&intf->dev, "%s\n", info->name); |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 2674 | dev_info(&intf->dev, "%s {control%s%s%s%s%s%s%s} tests%s\n", |
Michal Nazarewicz | e538dfd | 2011-08-30 17:11:19 +0200 | [diff] [blame] | 2675 | usb_speed_string(udev->speed), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2676 | info->ctrl_out ? " in/out" : "", |
| 2677 | rtest, wtest, |
| 2678 | irtest, iwtest, |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 2679 | intrtest, intwtest, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2680 | info->alt >= 0 ? " (+alt)" : ""); |
| 2681 | return 0; |
| 2682 | } |
| 2683 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2684 | static int usbtest_suspend(struct usb_interface *intf, pm_message_t message) |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 2685 | { |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 2686 | return 0; |
| 2687 | } |
| 2688 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2689 | static int usbtest_resume(struct usb_interface *intf) |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 2690 | { |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 2691 | return 0; |
| 2692 | } |
| 2693 | |
| 2694 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2695 | static void usbtest_disconnect(struct usb_interface *intf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2696 | { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2697 | struct usbtest_dev *dev = usb_get_intfdata(intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2698 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2699 | usb_set_intfdata(intf, NULL); |
| 2700 | dev_dbg(&intf->dev, "disconnect\n"); |
| 2701 | kfree(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2702 | } |
| 2703 | |
| 2704 | /* Basic testing only needs a device that can source or sink bulk traffic. |
| 2705 | * Any device can test control transfers (default with GENERIC binding). |
| 2706 | * |
| 2707 | * Several entries work with the default EP0 implementation that's built |
| 2708 | * into EZ-USB chips. There's a default vendor ID which can be overridden |
| 2709 | * by (very) small config EEPROMS, but otherwise all these devices act |
| 2710 | * identically until firmware is loaded: only EP0 works. It turns out |
| 2711 | * to be easy to make other endpoints work, without modifying that EP0 |
| 2712 | * behavior. For now, we expect that kind of firmware. |
| 2713 | */ |
| 2714 | |
| 2715 | /* an21xx or fx versions of ez-usb */ |
| 2716 | static struct usbtest_info ez1_info = { |
| 2717 | .name = "EZ-USB device", |
| 2718 | .ep_in = 2, |
| 2719 | .ep_out = 2, |
| 2720 | .alt = 1, |
| 2721 | }; |
| 2722 | |
| 2723 | /* fx2 version of ez-usb */ |
| 2724 | static struct usbtest_info ez2_info = { |
| 2725 | .name = "FX2 device", |
| 2726 | .ep_in = 6, |
| 2727 | .ep_out = 2, |
| 2728 | .alt = 1, |
| 2729 | }; |
| 2730 | |
| 2731 | /* ezusb family device with dedicated usb test firmware, |
| 2732 | */ |
| 2733 | static struct usbtest_info fw_info = { |
| 2734 | .name = "usb test device", |
| 2735 | .ep_in = 2, |
| 2736 | .ep_out = 2, |
| 2737 | .alt = 1, |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2738 | .autoconf = 1, /* iso and ctrl_out need autoconf */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2739 | .ctrl_out = 1, |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2740 | .iso = 1, /* iso_ep's are #8 in/out */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2741 | }; |
| 2742 | |
| 2743 | /* peripheral running Linux and 'zero.c' test firmware, or |
| 2744 | * its user-mode cousin. different versions of this use |
| 2745 | * different hardware with the same vendor/product codes. |
| 2746 | * host side MUST rely on the endpoint descriptors. |
| 2747 | */ |
| 2748 | static struct usbtest_info gz_info = { |
| 2749 | .name = "Linux gadget zero", |
| 2750 | .autoconf = 1, |
| 2751 | .ctrl_out = 1, |
Boyan Nedeltchev | 4b85c62 | 2012-11-12 13:06:06 +0200 | [diff] [blame] | 2752 | .iso = 1, |
Amit Virdi | 457a095 | 2014-08-22 14:36:37 +0530 | [diff] [blame] | 2753 | .intr = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2754 | .alt = 0, |
| 2755 | }; |
| 2756 | |
| 2757 | static struct usbtest_info um_info = { |
| 2758 | .name = "Linux user mode test driver", |
| 2759 | .autoconf = 1, |
| 2760 | .alt = -1, |
| 2761 | }; |
| 2762 | |
| 2763 | static struct usbtest_info um2_info = { |
| 2764 | .name = "Linux user mode ISO test driver", |
| 2765 | .autoconf = 1, |
| 2766 | .iso = 1, |
| 2767 | .alt = -1, |
| 2768 | }; |
| 2769 | |
| 2770 | #ifdef IBOT2 |
| 2771 | /* this is a nice source of high speed bulk data; |
| 2772 | * uses an FX2, with firmware provided in the device |
| 2773 | */ |
| 2774 | static struct usbtest_info ibot2_info = { |
| 2775 | .name = "iBOT2 webcam", |
| 2776 | .ep_in = 2, |
| 2777 | .alt = -1, |
| 2778 | }; |
| 2779 | #endif |
| 2780 | |
| 2781 | #ifdef GENERIC |
| 2782 | /* we can use any device to test control traffic */ |
| 2783 | static struct usbtest_info generic_info = { |
| 2784 | .name = "Generic USB device", |
| 2785 | .alt = -1, |
| 2786 | }; |
| 2787 | #endif |
| 2788 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2789 | |
Németh Márton | 33b9e16 | 2010-01-10 15:34:45 +0100 | [diff] [blame] | 2790 | static const struct usb_device_id id_table[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2791 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2792 | /*-------------------------------------------------------------*/ |
| 2793 | |
| 2794 | /* EZ-USB devices which download firmware to replace (or in our |
| 2795 | * case augment) the default device implementation. |
| 2796 | */ |
| 2797 | |
| 2798 | /* generic EZ-USB FX controller */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2799 | { USB_DEVICE(0x0547, 0x2235), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2800 | .driver_info = (unsigned long) &ez1_info, |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2801 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2802 | |
| 2803 | /* CY3671 development board with EZ-USB FX */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2804 | { USB_DEVICE(0x0547, 0x0080), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2805 | .driver_info = (unsigned long) &ez1_info, |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2806 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2807 | |
| 2808 | /* generic EZ-USB FX2 controller (or development board) */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2809 | { USB_DEVICE(0x04b4, 0x8613), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2810 | .driver_info = (unsigned long) &ez2_info, |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2811 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2812 | |
| 2813 | /* re-enumerated usb test device firmware */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2814 | { USB_DEVICE(0xfff0, 0xfff0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2815 | .driver_info = (unsigned long) &fw_info, |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2816 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2817 | |
| 2818 | /* "Gadget Zero" firmware runs under Linux */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2819 | { USB_DEVICE(0x0525, 0xa4a0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2820 | .driver_info = (unsigned long) &gz_info, |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2821 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2822 | |
| 2823 | /* so does a user-mode variant */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2824 | { USB_DEVICE(0x0525, 0xa4a4), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2825 | .driver_info = (unsigned long) &um_info, |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2826 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2827 | |
| 2828 | /* ... and a user-mode variant that talks iso */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2829 | { USB_DEVICE(0x0525, 0xa4a3), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | .driver_info = (unsigned long) &um2_info, |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2831 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2832 | |
| 2833 | #ifdef KEYSPAN_19Qi |
| 2834 | /* Keyspan 19qi uses an21xx (original EZ-USB) */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2835 | /* this does not coexist with the real Keyspan 19qi driver! */ |
| 2836 | { USB_DEVICE(0x06cd, 0x010b), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | .driver_info = (unsigned long) &ez1_info, |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2838 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2839 | #endif |
| 2840 | |
| 2841 | /*-------------------------------------------------------------*/ |
| 2842 | |
| 2843 | #ifdef IBOT2 |
| 2844 | /* iBOT2 makes a nice source of high speed bulk-in data */ |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2845 | /* this does not coexist with a real iBOT2 driver! */ |
| 2846 | { USB_DEVICE(0x0b62, 0x0059), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2847 | .driver_info = (unsigned long) &ibot2_info, |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2848 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | #endif |
| 2850 | |
| 2851 | /*-------------------------------------------------------------*/ |
| 2852 | |
| 2853 | #ifdef GENERIC |
| 2854 | /* module params can specify devices to use for control tests */ |
| 2855 | { .driver_info = (unsigned long) &generic_info, }, |
| 2856 | #endif |
| 2857 | |
| 2858 | /*-------------------------------------------------------------*/ |
| 2859 | |
| 2860 | { } |
| 2861 | }; |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2862 | MODULE_DEVICE_TABLE(usb, id_table); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2863 | |
| 2864 | static struct usb_driver usbtest_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2865 | .name = "usbtest", |
| 2866 | .id_table = id_table, |
| 2867 | .probe = usbtest_probe, |
Andi Kleen | c532b29 | 2010-06-01 23:04:41 +0200 | [diff] [blame] | 2868 | .unlocked_ioctl = usbtest_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2869 | .disconnect = usbtest_disconnect, |
David Brownell | ff7c79e | 2005-04-22 13:17:00 -0700 | [diff] [blame] | 2870 | .suspend = usbtest_suspend, |
| 2871 | .resume = usbtest_resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2872 | }; |
| 2873 | |
| 2874 | /*-------------------------------------------------------------------------*/ |
| 2875 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2876 | static int __init usbtest_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2877 | { |
| 2878 | #ifdef GENERIC |
| 2879 | if (vendor) |
David Brownell | 28ffd79 | 2008-04-25 18:51:10 -0700 | [diff] [blame] | 2880 | pr_debug("params: vend=0x%04x prod=0x%04x\n", vendor, product); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2881 | #endif |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2882 | return usb_register(&usbtest_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2883 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2884 | module_init(usbtest_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2886 | static void __exit usbtest_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2887 | { |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2888 | usb_deregister(&usbtest_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2889 | } |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2890 | module_exit(usbtest_exit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2891 | |
Martin Fuzzey | fabbf21 | 2010-10-01 00:20:42 +0200 | [diff] [blame] | 2892 | MODULE_DESCRIPTION("USB Core/HCD Testing Driver"); |
| 2893 | MODULE_LICENSE("GPL"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2894 | |