blob: 6b978f04b8d7217d72373ffe6e586a908e464471 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#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 Hardeman378f0582005-09-17 17:55:31 +10008#include <linux/scatterlist.h>
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08009#include <linux/mutex.h>
Alan Stern32b36ee2014-06-03 11:11:34 -040010#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/usb.h>
12
Roger Quadrose5e47462013-12-18 15:40:10 +053013#define SIMPLE_IO_TIMEOUT 10000 /* in milliseconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15/*-------------------------------------------------------------------------*/
16
Alan Sternd0b46522013-01-30 16:38:11 -050017static int override_alt = -1;
18module_param_named(alt, override_alt, int, 0644);
19MODULE_PARM_DESC(alt, ">= 0 to override altsetting selection");
Peter Chen145f48c2015-10-13 15:18:21 +080020static void complicated_callback(struct urb *urb);
Alan Sternd0b46522013-01-30 16:38:11 -050021
22/*-------------------------------------------------------------------------*/
23
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020024/* FIXME make these public somewhere; usbdevfs.h? */
Deepa Dinamani18fc4eb2015-11-04 15:29:11 -080025
26/* Parameter for usbtest driver. */
27struct usbtest_param_32 {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020028 /* inputs */
Deepa Dinamani18fc4eb2015-11-04 15:29:11 -080029 __u32 test_num; /* 0..(TEST_CASES-1) */
30 __u32 iterations;
31 __u32 length;
32 __u32 vary;
33 __u32 sglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020035 /* outputs */
Deepa Dinamani18fc4eb2015-11-04 15:29:11 -080036 __s32 duration_sec;
37 __s32 duration_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
Deepa Dinamani18fc4eb2015-11-04 15:29:11 -080039
40/*
41 * Compat parameter to the usbtest driver.
42 * This supports older user space binaries compiled with 64 bit compiler.
43 */
44struct usbtest_param_64 {
45 /* inputs */
46 __u32 test_num; /* 0..(TEST_CASES-1) */
47 __u32 iterations;
48 __u32 length;
49 __u32 vary;
50 __u32 sglen;
51
52 /* outputs */
53 __s64 duration_sec;
54 __s64 duration_usec;
55};
56
57/* IOCTL interface to the driver. */
58#define USBTEST_REQUEST_32 _IOWR('U', 100, struct usbtest_param_32)
59/* COMPAT IOCTL interface to the driver. */
60#define USBTEST_REQUEST_64 _IOWR('U', 100, struct usbtest_param_64)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/*-------------------------------------------------------------------------*/
63
64#define GENERIC /* let probe() bind using module params */
65
66/* Some devices that can be used for testing will have "real" drivers.
67 * Entries for those need to be enabled here by hand, after disabling
68 * that "real" driver.
69 */
70//#define IBOT2 /* grab iBOT2 webcams */
71//#define KEYSPAN_19Qi /* grab un-renumerated serial adapter */
72
73/*-------------------------------------------------------------------------*/
74
75struct usbtest_info {
76 const char *name;
77 u8 ep_in; /* bulk/intr source */
78 u8 ep_out; /* bulk/intr sink */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020079 unsigned autoconf:1;
80 unsigned ctrl_out:1;
81 unsigned iso:1; /* try iso in/out */
Amit Virdi457a0952014-08-22 14:36:37 +053082 unsigned intr:1; /* try interrupt in/out */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 int alt;
84};
85
86/* this is accessed only through usbfs ioctl calls.
87 * one ioctl to issue a test ... one lock per device.
88 * tests create other threads if they need them.
89 * urbs and buffers are allocated dynamically,
90 * and data generated deterministically.
91 */
92struct usbtest_dev {
93 struct usb_interface *intf;
94 struct usbtest_info *info;
95 int in_pipe;
96 int out_pipe;
97 int in_iso_pipe;
98 int out_iso_pipe;
Amit Virdi457a0952014-08-22 14:36:37 +053099 int in_int_pipe;
100 int out_int_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 struct usb_endpoint_descriptor *iso_in, *iso_out;
Amit Virdi457a0952014-08-22 14:36:37 +0530102 struct usb_endpoint_descriptor *int_in, *int_out;
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -0800103 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105#define TBUF_SIZE 256
106 u8 *buf;
107};
108
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200109static struct usb_device *testdev_to_usbdev(struct usbtest_dev *test)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200111 return interface_to_usbdev(test->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
114/* set up all urbs so they can be used with either bulk or interrupt */
115#define INTERRUPT_RATE 1 /* msec/transfer */
116
David Brownell28ffd792008-04-25 18:51:10 -0700117#define ERROR(tdev, fmt, args...) \
118 dev_err(&(tdev)->intf->dev , fmt , ## args)
Arjan van de Venb6c63932008-07-25 01:45:52 -0700119#define WARNING(tdev, fmt, args...) \
David Brownell28ffd792008-04-25 18:51:10 -0700120 dev_warn(&(tdev)->intf->dev , fmt , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Martin Fuzzey084fb202011-01-16 19:17:11 +0100122#define GUARD_BYTE 0xA5
Peter Chen41d3c0b2015-09-01 09:47:58 +0800123#define MAX_SGLEN 128
Martin Fuzzey084fb202011-01-16 19:17:11 +0100124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/*-------------------------------------------------------------------------*/
126
127static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200128get_endpoints(struct usbtest_dev *dev, struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 int tmp;
131 struct usb_host_interface *alt;
132 struct usb_host_endpoint *in, *out;
133 struct usb_host_endpoint *iso_in, *iso_out;
Amit Virdi457a0952014-08-22 14:36:37 +0530134 struct usb_host_endpoint *int_in, *int_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 struct usb_device *udev;
136
137 for (tmp = 0; tmp < intf->num_altsetting; tmp++) {
138 unsigned ep;
139
140 in = out = NULL;
141 iso_in = iso_out = NULL;
Amit Virdi457a0952014-08-22 14:36:37 +0530142 int_in = int_out = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 alt = intf->altsetting + tmp;
144
Alan Sternd0b46522013-01-30 16:38:11 -0500145 if (override_alt >= 0 &&
146 override_alt != alt->desc.bAlternateSetting)
147 continue;
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 /* take the first altsetting with in-bulk + out-bulk;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +0200150 * ignore other endpoints and altsettings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 */
152 for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) {
153 struct usb_host_endpoint *e;
154
155 e = alt->endpoint + ep;
Huang Rui9a37a502013-09-24 00:03:43 +0800156 switch (usb_endpoint_type(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 case USB_ENDPOINT_XFER_BULK:
158 break;
Amit Virdi457a0952014-08-22 14:36:37 +0530159 case USB_ENDPOINT_XFER_INT:
160 if (dev->info->intr)
161 goto try_intr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 case USB_ENDPOINT_XFER_ISOC:
163 if (dev->info->iso)
164 goto try_iso;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200165 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 default:
167 continue;
168 }
Luiz Fernando N. Capitulino4d823dd2006-10-26 13:03:02 -0300169 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (!in)
171 in = e;
172 } else {
173 if (!out)
174 out = e;
175 }
176 continue;
Amit Virdi457a0952014-08-22 14:36:37 +0530177try_intr:
178 if (usb_endpoint_dir_in(&e->desc)) {
179 if (!int_in)
180 int_in = e;
181 } else {
182 if (!int_out)
183 int_out = e;
184 }
185 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186try_iso:
Luiz Fernando N. Capitulino4d823dd2006-10-26 13:03:02 -0300187 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (!iso_in)
189 iso_in = e;
190 } else {
191 if (!iso_out)
192 iso_out = e;
193 }
194 }
Amit Virdi457a0952014-08-22 14:36:37 +0530195 if ((in && out) || iso_in || iso_out || int_in || int_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 goto found;
197 }
198 return -EINVAL;
199
200found:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200201 udev = testdev_to_usbdev(dev);
Alan Sternd0b46522013-01-30 16:38:11 -0500202 dev->info->alt = alt->desc.bAlternateSetting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (alt->desc.bAlternateSetting != 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200204 tmp = usb_set_interface(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 alt->desc.bInterfaceNumber,
206 alt->desc.bAlternateSetting);
207 if (tmp < 0)
208 return tmp;
209 }
210
211 if (in) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200212 dev->in_pipe = usb_rcvbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200214 dev->out_pipe = usb_sndbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 out->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
216 }
217 if (iso_in) {
218 dev->iso_in = &iso_in->desc;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200219 dev->in_iso_pipe = usb_rcvisocpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 iso_in->desc.bEndpointAddress
221 & USB_ENDPOINT_NUMBER_MASK);
Ming Lei951fd8e2010-08-02 22:09:17 +0800222 }
223
224 if (iso_out) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 dev->iso_out = &iso_out->desc;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200226 dev->out_iso_pipe = usb_sndisocpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 iso_out->desc.bEndpointAddress
228 & USB_ENDPOINT_NUMBER_MASK);
229 }
Amit Virdi457a0952014-08-22 14:36:37 +0530230
231 if (int_in) {
232 dev->int_in = &int_in->desc;
233 dev->in_int_pipe = usb_rcvintpipe(udev,
234 int_in->desc.bEndpointAddress
235 & USB_ENDPOINT_NUMBER_MASK);
236 }
237
238 if (int_out) {
239 dev->int_out = &int_out->desc;
240 dev->out_int_pipe = usb_sndintpipe(udev,
241 int_out->desc.bEndpointAddress
242 & USB_ENDPOINT_NUMBER_MASK);
243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return 0;
245}
246
247/*-------------------------------------------------------------------------*/
248
249/* Support for testing basic non-queued I/O streams.
250 *
251 * These just package urbs as requests that can be easily canceled.
252 * Each urb's data buffer is dynamically allocated; callers can fill
253 * them with non-zero test data (or test for it) when appropriate.
254 */
255
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200256static void simple_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Ming Leicdc97792008-02-24 18:41:47 +0800258 complete(urb->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
Martin Fuzzey084fb202011-01-16 19:17:11 +0100261static struct urb *usbtest_alloc_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 struct usb_device *udev,
263 int pipe,
Martin Fuzzey084fb202011-01-16 19:17:11 +0100264 unsigned long bytes,
265 unsigned transfer_flags,
Amit Virdi457a0952014-08-22 14:36:37 +0530266 unsigned offset,
Peter Chen145f48c2015-10-13 15:18:21 +0800267 u8 bInterval,
268 usb_complete_t complete_fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 struct urb *urb;
271
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200272 urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (!urb)
274 return urb;
Amit Virdi457a0952014-08-22 14:36:37 +0530275
276 if (bInterval)
Peter Chen145f48c2015-10-13 15:18:21 +0800277 usb_fill_int_urb(urb, udev, pipe, NULL, bytes, complete_fn,
Amit Virdi457a0952014-08-22 14:36:37 +0530278 NULL, bInterval);
279 else
Peter Chen145f48c2015-10-13 15:18:21 +0800280 usb_fill_bulk_urb(urb, udev, pipe, NULL, bytes, complete_fn,
Amit Virdi457a0952014-08-22 14:36:37 +0530281 NULL);
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 urb->interval = (udev->speed == USB_SPEED_HIGH)
284 ? (INTERRUPT_RATE << 3)
285 : INTERRUPT_RATE;
Martin Fuzzey084fb202011-01-16 19:17:11 +0100286 urb->transfer_flags = transfer_flags;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200287 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 urb->transfer_flags |= URB_SHORT_NOT_OK;
Martin Fuzzey084fb202011-01-16 19:17:11 +0100289
Chunfeng Yun26186e52016-04-28 11:42:21 +0800290 if ((bytes + offset) == 0)
291 return urb;
292
Martin Fuzzey084fb202011-01-16 19:17:11 +0100293 if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
294 urb->transfer_buffer = usb_alloc_coherent(udev, bytes + offset,
295 GFP_KERNEL, &urb->transfer_dma);
296 else
297 urb->transfer_buffer = kmalloc(bytes + offset, GFP_KERNEL);
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (!urb->transfer_buffer) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200300 usb_free_urb(urb);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100301 return NULL;
302 }
303
304 /* To test unaligned transfers add an offset and fill the
305 unused memory with a guard value */
306 if (offset) {
307 memset(urb->transfer_buffer, GUARD_BYTE, offset);
308 urb->transfer_buffer += offset;
309 if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
310 urb->transfer_dma += offset;
311 }
312
313 /* For inbound transfers use guard byte so that test fails if
314 data not correctly copied */
315 memset(urb->transfer_buffer,
316 usb_pipein(urb->pipe) ? GUARD_BYTE : 0,
317 bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return urb;
319}
320
Martin Fuzzey084fb202011-01-16 19:17:11 +0100321static struct urb *simple_alloc_urb(
322 struct usb_device *udev,
323 int pipe,
Amit Virdi457a0952014-08-22 14:36:37 +0530324 unsigned long bytes,
325 u8 bInterval)
Martin Fuzzey084fb202011-01-16 19:17:11 +0100326{
Amit Virdi457a0952014-08-22 14:36:37 +0530327 return usbtest_alloc_urb(udev, pipe, bytes, URB_NO_TRANSFER_DMA_MAP, 0,
Peter Chen145f48c2015-10-13 15:18:21 +0800328 bInterval, simple_callback);
329}
330
331static struct urb *complicated_alloc_urb(
332 struct usb_device *udev,
333 int pipe,
334 unsigned long bytes,
335 u8 bInterval)
336{
337 return usbtest_alloc_urb(udev, pipe, bytes, URB_NO_TRANSFER_DMA_MAP, 0,
338 bInterval, complicated_callback);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100339}
340
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200341static unsigned pattern;
Vikram Pandita7f4e9852009-11-09 21:24:32 -0600342static unsigned mod_pattern;
343module_param_named(pattern, mod_pattern, uint, S_IRUGO | S_IWUSR);
344MODULE_PARM_DESC(mod_pattern, "i/o pattern (0 == zeroes)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800346static unsigned get_maxpacket(struct usb_device *udev, int pipe)
347{
348 struct usb_host_endpoint *ep;
349
350 ep = usb_pipe_endpoint(udev, pipe);
351 return le16_to_cpup(&ep->desc.wMaxPacketSize);
352}
353
354static void simple_fill_buf(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 unsigned i;
357 u8 *buf = urb->transfer_buffer;
358 unsigned len = urb->transfer_buffer_length;
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800359 unsigned maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 switch (pattern) {
362 default:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200363 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 case 0:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200365 memset(buf, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 break;
367 case 1: /* mod63 */
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800368 maxpacket = get_maxpacket(urb->dev, urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 for (i = 0; i < len; i++)
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800370 *buf++ = (u8) ((i % maxpacket) % 63);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 break;
372 }
373}
374
Greg Dietsche304b0b52011-05-08 22:51:43 -0500375static inline unsigned long buffer_offset(void *buf)
Martin Fuzzey084fb202011-01-16 19:17:11 +0100376{
Greg Dietsche304b0b52011-05-08 22:51:43 -0500377 return (unsigned long)buf & (ARCH_KMALLOC_MINALIGN - 1);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100378}
379
380static int check_guard_bytes(struct usbtest_dev *tdev, struct urb *urb)
381{
382 u8 *buf = urb->transfer_buffer;
383 u8 *guard = buf - buffer_offset(buf);
384 unsigned i;
385
386 for (i = 0; guard < buf; i++, guard++) {
387 if (*guard != GUARD_BYTE) {
388 ERROR(tdev, "guard byte[%d] %d (not %d)\n",
389 i, *guard, GUARD_BYTE);
390 return -EINVAL;
391 }
392 }
393 return 0;
394}
395
396static int simple_check_buf(struct usbtest_dev *tdev, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
398 unsigned i;
399 u8 expected;
400 u8 *buf = urb->transfer_buffer;
401 unsigned len = urb->actual_length;
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800402 unsigned maxpacket = get_maxpacket(urb->dev, urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Martin Fuzzey084fb202011-01-16 19:17:11 +0100404 int ret = check_guard_bytes(tdev, urb);
405 if (ret)
406 return ret;
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 for (i = 0; i < len; i++, buf++) {
409 switch (pattern) {
410 /* all-zeroes has no synchronization issues */
411 case 0:
412 expected = 0;
413 break;
414 /* mod63 stays in sync with short-terminated transfers,
415 * or otherwise when host and gadget agree on how large
416 * each usb transfer request should be. resync is done
417 * with set_interface or set_config.
418 */
419 case 1: /* mod63 */
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800420 expected = (i % maxpacket) % 63;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 break;
422 /* always fail unsupported patterns */
423 default:
424 expected = !*buf;
425 break;
426 }
427 if (*buf == expected)
428 continue;
David Brownell28ffd792008-04-25 18:51:10 -0700429 ERROR(tdev, "buf[%d] = %d (not %d)\n", i, *buf, expected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return -EINVAL;
431 }
432 return 0;
433}
434
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200435static void simple_free_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Greg Dietsche304b0b52011-05-08 22:51:43 -0500437 unsigned long offset = buffer_offset(urb->transfer_buffer);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100438
439 if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
440 usb_free_coherent(
441 urb->dev,
442 urb->transfer_buffer_length + offset,
443 urb->transfer_buffer - offset,
444 urb->transfer_dma - offset);
445 else
446 kfree(urb->transfer_buffer - offset);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200447 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448}
449
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200450static int simple_io(
David Brownell28ffd792008-04-25 18:51:10 -0700451 struct usbtest_dev *tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 struct urb *urb,
453 int iterations,
454 int vary,
455 int expected,
456 const char *label
457)
458{
459 struct usb_device *udev = urb->dev;
460 int max = urb->transfer_buffer_length;
461 struct completion completion;
462 int retval = 0;
Roger Quadrose5e47462013-12-18 15:40:10 +0530463 unsigned long expire;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 urb->context = &completion;
466 while (retval == 0 && iterations-- > 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200467 init_completion(&completion);
Sebastian Andrzej Siewior7c79d092011-08-23 10:44:54 +0200468 if (usb_pipeout(urb->pipe)) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200469 simple_fill_buf(urb);
Sebastian Andrzej Siewior7c79d092011-08-23 10:44:54 +0200470 urb->transfer_flags |= URB_ZERO_PACKET;
471 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200472 retval = usb_submit_urb(urb, GFP_KERNEL);
473 if (retval != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 break;
475
Roger Quadrose5e47462013-12-18 15:40:10 +0530476 expire = msecs_to_jiffies(SIMPLE_IO_TIMEOUT);
477 if (!wait_for_completion_timeout(&completion, expire)) {
478 usb_kill_urb(urb);
479 retval = (urb->status == -ENOENT ?
480 -ETIMEDOUT : urb->status);
481 } else {
482 retval = urb->status;
483 }
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 urb->dev = udev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200486 if (retval == 0 && usb_pipein(urb->pipe))
David Brownell28ffd792008-04-25 18:51:10 -0700487 retval = simple_check_buf(tdev, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 if (vary) {
490 int len = urb->transfer_buffer_length;
491
492 len += vary;
493 len %= max;
494 if (len == 0)
495 len = (vary < max) ? vary : max;
496 urb->transfer_buffer_length = len;
497 }
498
499 /* FIXME if endpoint halted, clear halt (and log) */
500 }
501 urb->transfer_buffer_length = max;
502
503 if (expected != retval)
David Brownell28ffd792008-04-25 18:51:10 -0700504 dev_err(&udev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 "%s failed, iterations left %d, status %d (not %d)\n",
506 label, iterations, retval, expected);
507 return retval;
508}
509
510
511/*-------------------------------------------------------------------------*/
512
513/* We use scatterlist primitives to test queued I/O.
514 * Yes, this also tests the scatterlist primitives.
515 */
516
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200517static void free_sglist(struct scatterlist *sg, int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
519 unsigned i;
David Brownell28ffd792008-04-25 18:51:10 -0700520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (!sg)
522 return;
523 for (i = 0; i < nents; i++) {
Jens Axboe45711f12007-10-22 21:19:53 +0200524 if (!sg_page(&sg[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 continue;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200526 kfree(sg_virt(&sg[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200528 kfree(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
531static struct scatterlist *
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800532alloc_sglist(int nents, int max, int vary, struct usbtest_dev *dev, int pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 struct scatterlist *sg;
Mathias Nymancdc77c82016-05-02 11:39:03 +0300535 unsigned int n_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 unsigned i;
537 unsigned size = max;
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800538 unsigned maxpacket =
539 get_maxpacket(interface_to_usbdev(dev->intf), pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Dan Carpenter564e6982012-11-17 18:06:11 +0300541 if (max == 0)
542 return NULL;
543
Huang Ruif55055b2013-10-21 23:15:30 +0800544 sg = kmalloc_array(nents, sizeof(*sg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (!sg)
546 return NULL;
Alan Stern4756feb2008-03-27 10:15:22 -0400547 sg_init_table(sg, nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 for (i = 0; i < nents; i++) {
550 char *buf;
David Brownell8b524902006-04-02 10:20:15 -0800551 unsigned j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200553 buf = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 if (!buf) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200555 free_sglist(sg, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return NULL;
557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 /* kmalloc pages are always physically contiguous! */
Alan Stern4756feb2008-03-27 10:15:22 -0400560 sg_set_buf(&sg[i], buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
David Brownell8b524902006-04-02 10:20:15 -0800562 switch (pattern) {
563 case 0:
564 /* already zeroed */
565 break;
566 case 1:
567 for (j = 0; j < size; j++)
Mathias Nymancdc77c82016-05-02 11:39:03 +0300568 *buf++ = (u8) (((j + n_size) % maxpacket) % 63);
569 n_size += size;
David Brownell8b524902006-04-02 10:20:15 -0800570 break;
571 }
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (vary) {
574 size += vary;
575 size %= max;
576 if (size == 0)
577 size = (vary < max) ? vary : max;
578 }
579 }
580
581 return sg;
582}
583
Alan Stern32b36ee2014-06-03 11:11:34 -0400584static void sg_timeout(unsigned long _req)
585{
586 struct usb_sg_request *req = (struct usb_sg_request *) _req;
587
588 req->status = -ETIMEDOUT;
589 usb_sg_cancel(req);
590}
591
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200592static int perform_sglist(
David Brownell28ffd792008-04-25 18:51:10 -0700593 struct usbtest_dev *tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 unsigned iterations,
595 int pipe,
596 struct usb_sg_request *req,
597 struct scatterlist *sg,
598 int nents
599)
600{
David Brownell28ffd792008-04-25 18:51:10 -0700601 struct usb_device *udev = testdev_to_usbdev(tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 int retval = 0;
Alan Stern32b36ee2014-06-03 11:11:34 -0400603 struct timer_list sg_timer;
604
605 setup_timer_on_stack(&sg_timer, sg_timeout, (unsigned long) req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 while (retval == 0 && iterations-- > 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200608 retval = usb_sg_init(req, udev, pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 (udev->speed == USB_SPEED_HIGH)
610 ? (INTERRUPT_RATE << 3)
611 : INTERRUPT_RATE,
Christoph Lametere94b1762006-12-06 20:33:17 -0800612 sg, nents, 0, GFP_KERNEL);
David Brownell28ffd792008-04-25 18:51:10 -0700613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (retval)
615 break;
Alan Stern32b36ee2014-06-03 11:11:34 -0400616 mod_timer(&sg_timer, jiffies +
617 msecs_to_jiffies(SIMPLE_IO_TIMEOUT));
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200618 usb_sg_wait(req);
Alan Stern32b36ee2014-06-03 11:11:34 -0400619 del_timer_sync(&sg_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 retval = req->status;
621
David Brownell8b524902006-04-02 10:20:15 -0800622 /* FIXME check resulting data pattern */
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /* FIXME if endpoint halted, clear halt (and log) */
625 }
626
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200627 /* FIXME for unlink or fault handling tests, don't report
628 * failure if retval is as we expected ...
629 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -0700631 ERROR(tdev, "perform_sglist failed, "
632 "iterations left %d, status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 iterations, retval);
634 return retval;
635}
636
637
638/*-------------------------------------------------------------------------*/
639
640/* unqueued control message testing
641 *
642 * there's a nice set of device functional requirements in chapter 9 of the
643 * usb 2.0 spec, which we can apply to ANY device, even ones that don't use
644 * special test firmware.
645 *
646 * we know the device is configured (or suspended) by the time it's visible
647 * through usbfs. we can't change that, so we won't test enumeration (which
648 * worked 'well enough' to get here, this time), power management (ditto),
649 * or remote wakeup (which needs human interaction).
650 */
651
652static unsigned realworld = 1;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200653module_param(realworld, uint, 0);
654MODULE_PARM_DESC(realworld, "clear to demand stricter spec compliance");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200656static int get_altsetting(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 struct usb_interface *iface = dev->intf;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200659 struct usb_device *udev = interface_to_usbdev(iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 int retval;
661
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200662 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 USB_REQ_GET_INTERFACE, USB_DIR_IN|USB_RECIP_INTERFACE,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200664 0, iface->altsetting[0].desc.bInterfaceNumber,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 dev->buf, 1, USB_CTRL_GET_TIMEOUT);
666 switch (retval) {
667 case 1:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200668 return dev->buf[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 case 0:
670 retval = -ERANGE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200671 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 default:
673 return retval;
674 }
675}
676
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200677static int set_altsetting(struct usbtest_dev *dev, int alternate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
679 struct usb_interface *iface = dev->intf;
680 struct usb_device *udev;
681
682 if (alternate < 0 || alternate >= 256)
683 return -EINVAL;
684
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200685 udev = interface_to_usbdev(iface);
686 return usb_set_interface(udev,
687 iface->altsetting[0].desc.bInterfaceNumber,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 alternate);
689}
690
David Brownell28ffd792008-04-25 18:51:10 -0700691static int is_good_config(struct usbtest_dev *tdev, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
693 struct usb_config_descriptor *config;
David Brownell28ffd792008-04-25 18:51:10 -0700694
Huang Ruif55055b2013-10-21 23:15:30 +0800695 if (len < sizeof(*config))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return 0;
David Brownell28ffd792008-04-25 18:51:10 -0700697 config = (struct usb_config_descriptor *) tdev->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 switch (config->bDescriptorType) {
700 case USB_DT_CONFIG:
701 case USB_DT_OTHER_SPEED_CONFIG:
702 if (config->bLength != 9) {
David Brownell28ffd792008-04-25 18:51:10 -0700703 ERROR(tdev, "bogus config descriptor length\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return 0;
705 }
706 /* this bit 'must be 1' but often isn't */
707 if (!realworld && !(config->bmAttributes & 0x80)) {
David Brownell28ffd792008-04-25 18:51:10 -0700708 ERROR(tdev, "high bit of config attributes not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return 0;
710 }
711 if (config->bmAttributes & 0x1f) { /* reserved == 0 */
David Brownell28ffd792008-04-25 18:51:10 -0700712 ERROR(tdev, "reserved config bits set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return 0;
714 }
715 break;
716 default:
717 return 0;
718 }
719
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200720 if (le16_to_cpu(config->wTotalLength) == len) /* read it all */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return 1;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200722 if (le16_to_cpu(config->wTotalLength) >= TBUF_SIZE) /* max partial read */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return 1;
David Brownell28ffd792008-04-25 18:51:10 -0700724 ERROR(tdev, "bogus config descriptor read size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return 0;
726}
727
Huang Rui82f92672013-10-30 11:27:38 +0800728static int is_good_ext(struct usbtest_dev *tdev, u8 *buf)
729{
730 struct usb_ext_cap_descriptor *ext;
731 u32 attr;
732
733 ext = (struct usb_ext_cap_descriptor *) buf;
734
735 if (ext->bLength != USB_DT_USB_EXT_CAP_SIZE) {
736 ERROR(tdev, "bogus usb 2.0 extension descriptor length\n");
737 return 0;
738 }
739
740 attr = le32_to_cpu(ext->bmAttributes);
Huang Rui875bc232013-11-13 22:35:14 +0800741 /* bits[1:15] is used and others are reserved */
742 if (attr & ~0xfffe) { /* reserved == 0 */
Huang Rui82f92672013-10-30 11:27:38 +0800743 ERROR(tdev, "reserved bits set\n");
744 return 0;
745 }
746
747 return 1;
748}
749
Huang Ruib8fef792013-10-30 11:27:39 +0800750static int is_good_ss_cap(struct usbtest_dev *tdev, u8 *buf)
751{
752 struct usb_ss_cap_descriptor *ss;
753
754 ss = (struct usb_ss_cap_descriptor *) buf;
755
756 if (ss->bLength != USB_DT_USB_SS_CAP_SIZE) {
757 ERROR(tdev, "bogus superspeed device capability descriptor length\n");
758 return 0;
759 }
760
761 /*
762 * only bit[1] of bmAttributes is used for LTM and others are
763 * reserved
764 */
765 if (ss->bmAttributes & ~0x02) { /* reserved == 0 */
766 ERROR(tdev, "reserved bits set in bmAttributes\n");
767 return 0;
768 }
769
770 /* bits[0:3] of wSpeedSupported is used and others are reserved */
771 if (le16_to_cpu(ss->wSpeedSupported) & ~0x0f) { /* reserved == 0 */
772 ERROR(tdev, "reserved bits set in wSpeedSupported\n");
773 return 0;
774 }
775
776 return 1;
777}
778
Huang Rui8e292172013-10-30 11:27:40 +0800779static int is_good_con_id(struct usbtest_dev *tdev, u8 *buf)
780{
781 struct usb_ss_container_id_descriptor *con_id;
782
783 con_id = (struct usb_ss_container_id_descriptor *) buf;
784
785 if (con_id->bLength != USB_DT_USB_SS_CONTN_ID_SIZE) {
786 ERROR(tdev, "bogus container id descriptor length\n");
787 return 0;
788 }
789
790 if (con_id->bReserved) { /* reserved == 0 */
791 ERROR(tdev, "reserved bits set\n");
792 return 0;
793 }
794
795 return 1;
796}
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798/* sanity test for standard requests working with usb_control_mesg() and some
799 * of the utility functions which use it.
800 *
801 * this doesn't test how endpoint halts behave or data toggles get set, since
802 * we won't do I/O to bulk/interrupt endpoints here (which is how to change
803 * halt or toggle). toggle testing is impractical without support from hcds.
804 *
805 * this avoids failing devices linux would normally work with, by not testing
806 * config/altsetting operations for devices that only support their defaults.
807 * such devices rarely support those needless operations.
808 *
809 * NOTE that since this is a sanity test, it's not examining boundary cases
810 * to see if usbcore, hcd, and device all behave right. such testing would
811 * involve varied read sizes and other operation sequences.
812 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200813static int ch9_postconfig(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 struct usb_interface *iface = dev->intf;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200816 struct usb_device *udev = interface_to_usbdev(iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 int i, alt, retval;
818
819 /* [9.2.3] if there's more than one altsetting, we need to be able to
820 * set and get each one. mostly trusts the descriptors from usbcore.
821 */
822 for (i = 0; i < iface->num_altsetting; i++) {
823
824 /* 9.2.3 constrains the range here */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200825 alt = iface->altsetting[i].desc.bAlternateSetting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (alt < 0 || alt >= iface->num_altsetting) {
David Brownell28ffd792008-04-25 18:51:10 -0700827 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 "invalid alt [%d].bAltSetting = %d\n",
829 i, alt);
830 }
831
832 /* [real world] get/set unimplemented if there's only one */
833 if (realworld && iface->num_altsetting == 1)
834 continue;
835
836 /* [9.4.10] set_interface */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200837 retval = set_altsetting(dev, alt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -0700839 dev_err(&iface->dev, "can't set_interface = %d, %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 alt, retval);
841 return retval;
842 }
843
844 /* [9.4.4] get_interface always works */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200845 retval = get_altsetting(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 if (retval != alt) {
David Brownell28ffd792008-04-25 18:51:10 -0700847 dev_err(&iface->dev, "get alt should be %d, was %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 alt, retval);
849 return (retval < 0) ? retval : -EDOM;
850 }
851
852 }
853
854 /* [real world] get_config unimplemented if there's only one */
855 if (!realworld || udev->descriptor.bNumConfigurations != 1) {
856 int expected = udev->actconfig->desc.bConfigurationValue;
857
858 /* [9.4.2] get_configuration always works
859 * ... although some cheap devices (like one TI Hub I've got)
860 * won't return config descriptors except before set_config.
861 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200862 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 USB_REQ_GET_CONFIGURATION,
864 USB_DIR_IN | USB_RECIP_DEVICE,
865 0, 0, dev->buf, 1, USB_CTRL_GET_TIMEOUT);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200866 if (retval != 1 || dev->buf[0] != expected) {
David Brownell28ffd792008-04-25 18:51:10 -0700867 dev_err(&iface->dev, "get config --> %d %d (1 %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -0700868 retval, dev->buf[0], expected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return (retval < 0) ? retval : -EDOM;
870 }
871 }
872
873 /* there's always [9.4.3] a device descriptor [9.6.1] */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200874 retval = usb_get_descriptor(udev, USB_DT_DEVICE, 0,
Huang Ruif55055b2013-10-21 23:15:30 +0800875 dev->buf, sizeof(udev->descriptor));
876 if (retval != sizeof(udev->descriptor)) {
David Brownell28ffd792008-04-25 18:51:10 -0700877 dev_err(&iface->dev, "dev descriptor --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return (retval < 0) ? retval : -EDOM;
879 }
880
Huang Rui9d3bd762013-10-28 23:31:32 +0800881 /*
882 * there's always [9.4.3] a bos device descriptor [9.6.2] in USB
883 * 3.0 spec
884 */
Huang Ruif6250992013-11-13 22:35:13 +0800885 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0210) {
Huang Rui82f92672013-10-30 11:27:38 +0800886 struct usb_bos_descriptor *bos = NULL;
887 struct usb_dev_cap_header *header = NULL;
888 unsigned total, num, length;
889 u8 *buf;
890
Huang Rui9d3bd762013-10-28 23:31:32 +0800891 retval = usb_get_descriptor(udev, USB_DT_BOS, 0, dev->buf,
892 sizeof(*udev->bos->desc));
893 if (retval != sizeof(*udev->bos->desc)) {
894 dev_err(&iface->dev, "bos descriptor --> %d\n", retval);
895 return (retval < 0) ? retval : -EDOM;
896 }
Huang Rui82f92672013-10-30 11:27:38 +0800897
898 bos = (struct usb_bos_descriptor *)dev->buf;
899 total = le16_to_cpu(bos->wTotalLength);
900 num = bos->bNumDeviceCaps;
901
902 if (total > TBUF_SIZE)
903 total = TBUF_SIZE;
904
905 /*
906 * get generic device-level capability descriptors [9.6.2]
907 * in USB 3.0 spec
908 */
909 retval = usb_get_descriptor(udev, USB_DT_BOS, 0, dev->buf,
910 total);
911 if (retval != total) {
912 dev_err(&iface->dev, "bos descriptor set --> %d\n",
913 retval);
914 return (retval < 0) ? retval : -EDOM;
915 }
916
917 length = sizeof(*udev->bos->desc);
918 buf = dev->buf;
919 for (i = 0; i < num; i++) {
920 buf += length;
921 if (buf + sizeof(struct usb_dev_cap_header) >
922 dev->buf + total)
923 break;
924
925 header = (struct usb_dev_cap_header *)buf;
926 length = header->bLength;
927
928 if (header->bDescriptorType !=
929 USB_DT_DEVICE_CAPABILITY) {
930 dev_warn(&udev->dev, "not device capability descriptor, skip\n");
931 continue;
932 }
933
934 switch (header->bDevCapabilityType) {
935 case USB_CAP_TYPE_EXT:
936 if (buf + USB_DT_USB_EXT_CAP_SIZE >
937 dev->buf + total ||
938 !is_good_ext(dev, buf)) {
939 dev_err(&iface->dev, "bogus usb 2.0 extension descriptor\n");
940 return -EDOM;
941 }
942 break;
Huang Ruib8fef792013-10-30 11:27:39 +0800943 case USB_SS_CAP_TYPE:
944 if (buf + USB_DT_USB_SS_CAP_SIZE >
945 dev->buf + total ||
946 !is_good_ss_cap(dev, buf)) {
947 dev_err(&iface->dev, "bogus superspeed device capability descriptor\n");
948 return -EDOM;
949 }
950 break;
Huang Rui8e292172013-10-30 11:27:40 +0800951 case CONTAINER_ID_TYPE:
952 if (buf + USB_DT_USB_SS_CONTN_ID_SIZE >
953 dev->buf + total ||
954 !is_good_con_id(dev, buf)) {
955 dev_err(&iface->dev, "bogus container id descriptor\n");
956 return -EDOM;
957 }
958 break;
Huang Rui82f92672013-10-30 11:27:38 +0800959 default:
960 break;
961 }
962 }
Huang Rui9d3bd762013-10-28 23:31:32 +0800963 }
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 /* there's always [9.4.3] at least one config descriptor [9.6.3] */
966 for (i = 0; i < udev->descriptor.bNumConfigurations; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200967 retval = usb_get_descriptor(udev, USB_DT_CONFIG, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 dev->buf, TBUF_SIZE);
David Brownell28ffd792008-04-25 18:51:10 -0700969 if (!is_good_config(dev, retval)) {
970 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 "config [%d] descriptor --> %d\n",
972 i, retval);
973 return (retval < 0) ? retval : -EDOM;
974 }
975
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200976 /* FIXME cross-checking udev->config[i] to make sure usbcore
977 * parsed it right (etc) would be good testing paranoia
978 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
980
981 /* and sometimes [9.2.6.6] speed dependent descriptors */
982 if (le16_to_cpu(udev->descriptor.bcdUSB) == 0x0200) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200983 struct usb_qualifier_descriptor *d = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985 /* device qualifier [9.6.2] */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200986 retval = usb_get_descriptor(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 USB_DT_DEVICE_QUALIFIER, 0, dev->buf,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200988 sizeof(struct usb_qualifier_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 if (retval == -EPIPE) {
990 if (udev->speed == USB_SPEED_HIGH) {
David Brownell28ffd792008-04-25 18:51:10 -0700991 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 "hs dev qualifier --> %d\n",
993 retval);
994 return (retval < 0) ? retval : -EDOM;
995 }
996 /* usb2.0 but not high-speed capable; fine */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200997 } else if (retval != sizeof(struct usb_qualifier_descriptor)) {
David Brownell28ffd792008-04-25 18:51:10 -0700998 dev_err(&iface->dev, "dev qualifier --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return (retval < 0) ? retval : -EDOM;
1000 } else
1001 d = (struct usb_qualifier_descriptor *) dev->buf;
1002
1003 /* might not have [9.6.2] any other-speed configs [9.6.4] */
1004 if (d) {
1005 unsigned max = d->bNumConfigurations;
1006 for (i = 0; i < max; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001007 retval = usb_get_descriptor(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 USB_DT_OTHER_SPEED_CONFIG, i,
1009 dev->buf, TBUF_SIZE);
David Brownell28ffd792008-04-25 18:51:10 -07001010 if (!is_good_config(dev, retval)) {
1011 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 "other speed config --> %d\n",
1013 retval);
1014 return (retval < 0) ? retval : -EDOM;
1015 }
1016 }
1017 }
1018 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001019 /* FIXME fetch strings from at least the device descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 /* [9.4.5] get_status always works */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001022 retval = usb_get_status(udev, USB_RECIP_DEVICE, 0, dev->buf);
Alan Stern15b73362013-07-30 15:35:40 -04001023 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -07001024 dev_err(&iface->dev, "get dev status --> %d\n", retval);
Alan Stern15b73362013-07-30 15:35:40 -04001025 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001028 /* FIXME configuration.bmAttributes says if we could try to set/clear
1029 * the device's remote wakeup feature ... if we can, test that here
1030 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001032 retval = usb_get_status(udev, USB_RECIP_INTERFACE,
1033 iface->altsetting[0].desc.bInterfaceNumber, dev->buf);
Alan Stern15b73362013-07-30 15:35:40 -04001034 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -07001035 dev_err(&iface->dev, "get interface status --> %d\n", retval);
Alan Stern15b73362013-07-30 15:35:40 -04001036 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001038 /* FIXME get status for each endpoint in the interface */
David Brownell28ffd792008-04-25 18:51:10 -07001039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return 0;
1041}
1042
1043/*-------------------------------------------------------------------------*/
1044
1045/* use ch9 requests to test whether:
1046 * (a) queues work for control, keeping N subtests queued and
1047 * active (auto-resubmit) for M loops through the queue.
1048 * (b) protocol stalls (control-only) will autorecover.
1049 * it's not like bulk/intr; no halt clearing.
1050 * (c) short control reads are reported and handled.
1051 * (d) queues are always processed in-order
1052 */
1053
1054struct ctrl_ctx {
1055 spinlock_t lock;
1056 struct usbtest_dev *dev;
1057 struct completion complete;
1058 unsigned count;
1059 unsigned pending;
1060 int status;
1061 struct urb **urb;
Deepa Dinamani18fc4eb2015-11-04 15:29:11 -08001062 struct usbtest_param_32 *param;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 int last;
1064};
1065
Huang Ruic952a8b2013-11-04 21:11:53 +08001066#define NUM_SUBCASES 16 /* how many test subcases here? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068struct subcase {
1069 struct usb_ctrlrequest setup;
1070 int number;
1071 int expected;
1072};
1073
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001074static void ctrl_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
1076 struct ctrl_ctx *ctx = urb->context;
1077 struct usb_ctrlrequest *reqp;
1078 struct subcase *subcase;
1079 int status = urb->status;
1080
1081 reqp = (struct usb_ctrlrequest *)urb->setup_packet;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001082 subcase = container_of(reqp, struct subcase, setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001084 spin_lock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 ctx->count--;
1086 ctx->pending--;
1087
1088 /* queue must transfer and complete in fifo order, unless
1089 * usb_unlink_urb() is used to unlink something not at the
1090 * physical queue head (not tested).
1091 */
1092 if (subcase->number > 0) {
1093 if ((subcase->number - ctx->last) != 1) {
David Brownell28ffd792008-04-25 18:51:10 -07001094 ERROR(ctx->dev,
1095 "subcase %d completed out of order, last %d\n",
1096 subcase->number, ctx->last);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 status = -EDOM;
1098 ctx->last = subcase->number;
1099 goto error;
1100 }
1101 }
1102 ctx->last = subcase->number;
1103
1104 /* succeed or fault in only one way? */
1105 if (status == subcase->expected)
1106 status = 0;
1107
1108 /* async unlink for cleanup? */
1109 else if (status != -ECONNRESET) {
1110
1111 /* some faults are allowed, not required */
1112 if (subcase->expected > 0 && (
Greg Kroah-Hartman59d99782007-07-18 10:58:02 -07001113 ((status == -subcase->expected /* happened */
1114 || status == 0)))) /* didn't */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 status = 0;
1116 /* sometimes more than one fault is allowed */
1117 else if (subcase->number == 12 && status == -EPIPE)
1118 status = 0;
1119 else
David Brownell28ffd792008-04-25 18:51:10 -07001120 ERROR(ctx->dev, "subtest %d error, status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 subcase->number, status);
1122 }
1123
1124 /* unexpected status codes mean errors; ideally, in hardware */
1125 if (status) {
1126error:
1127 if (ctx->status == 0) {
1128 int i;
1129
1130 ctx->status = status;
David Brownell28ffd792008-04-25 18:51:10 -07001131 ERROR(ctx->dev, "control queue %02x.%02x, err %d, "
1132 "%d left, subcase %d, len %d/%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 reqp->bRequestType, reqp->bRequest,
David Brownell28ffd792008-04-25 18:51:10 -07001134 status, ctx->count, subcase->number,
1135 urb->actual_length,
1136 urb->transfer_buffer_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
1138 /* FIXME this "unlink everything" exit route should
1139 * be a separate test case.
1140 */
1141
1142 /* unlink whatever's still pending */
1143 for (i = 1; i < ctx->param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001144 struct urb *u = ctx->urb[
1145 (i + subcase->number)
1146 % ctx->param->sglen];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 if (u == urb || !u->dev)
1149 continue;
Franck Bui-Huucaa2a122006-05-15 19:23:53 +02001150 spin_unlock(&ctx->lock);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001151 status = usb_unlink_urb(u);
Franck Bui-Huucaa2a122006-05-15 19:23:53 +02001152 spin_lock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 switch (status) {
1154 case -EINPROGRESS:
1155 case -EBUSY:
1156 case -EIDRM:
1157 continue;
1158 default:
David Brownell28ffd792008-04-25 18:51:10 -07001159 ERROR(ctx->dev, "urb unlink --> %d\n",
1160 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162 }
1163 status = ctx->status;
1164 }
1165 }
1166
1167 /* resubmit if we need to, else mark this as done */
1168 if ((status == 0) && (ctx->pending < ctx->count)) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001169 status = usb_submit_urb(urb, GFP_ATOMIC);
1170 if (status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001171 ERROR(ctx->dev,
1172 "can't resubmit ctrl %02x.%02x, err %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 reqp->bRequestType, reqp->bRequest, status);
1174 urb->dev = NULL;
1175 } else
1176 ctx->pending++;
1177 } else
1178 urb->dev = NULL;
David Brownell28ffd792008-04-25 18:51:10 -07001179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 /* signal completion when nothing's queued */
1181 if (ctx->pending == 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001182 complete(&ctx->complete);
1183 spin_unlock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184}
1185
1186static int
Deepa Dinamani18fc4eb2015-11-04 15:29:11 -08001187test_ctrl_queue(struct usbtest_dev *dev, struct usbtest_param_32 *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001189 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 struct urb **urb;
1191 struct ctrl_ctx context;
1192 int i;
1193
Xi Wange65cdfa2012-04-09 15:48:55 -04001194 if (param->sglen == 0 || param->iterations > UINT_MAX / param->sglen)
1195 return -EOPNOTSUPP;
1196
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001197 spin_lock_init(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 context.dev = dev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001199 init_completion(&context.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 context.count = param->sglen * param->iterations;
1201 context.pending = 0;
1202 context.status = -ENOMEM;
1203 context.param = param;
1204 context.last = -1;
1205
1206 /* allocate and init the urbs we'll queue.
1207 * as with bulk/intr sglists, sglen is the queue depth; it also
1208 * controls which subtests run (more tests than sglen) or rerun.
1209 */
Christoph Lametere94b1762006-12-06 20:33:17 -08001210 urb = kcalloc(param->sglen, sizeof(struct urb *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 if (!urb)
1212 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001214 int pipe = usb_rcvctrlpipe(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 unsigned len;
1216 struct urb *u;
1217 struct usb_ctrlrequest req;
1218 struct subcase *reqp;
Marcin Slusarz6def7552008-05-12 20:17:25 +02001219
1220 /* sign of this variable means:
1221 * -: tested code must return this (negative) error code
1222 * +: tested code may return this (negative too) error code
1223 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 int expected = 0;
1225
1226 /* requests here are mostly expected to succeed on any
1227 * device, but some are chosen to trigger protocol stalls
1228 * or short reads.
1229 */
Huang Ruif55055b2013-10-21 23:15:30 +08001230 memset(&req, 0, sizeof(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 req.bRequest = USB_REQ_GET_DESCRIPTOR;
1232 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
1233
1234 switch (i % NUM_SUBCASES) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001235 case 0: /* get device descriptor */
1236 req.wValue = cpu_to_le16(USB_DT_DEVICE << 8);
1237 len = sizeof(struct usb_device_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001239 case 1: /* get first config descriptor (only) */
1240 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1241 len = sizeof(struct usb_config_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001243 case 2: /* get altsetting (OFTEN STALLS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 req.bRequest = USB_REQ_GET_INTERFACE;
1245 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001246 /* index = 0 means first interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 len = 1;
1248 expected = EPIPE;
1249 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001250 case 3: /* get interface status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 req.bRequest = USB_REQ_GET_STATUS;
1252 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001253 /* interface 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 len = 2;
1255 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001256 case 4: /* get device status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 req.bRequest = USB_REQ_GET_STATUS;
1258 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
1259 len = 2;
1260 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001261 case 5: /* get device qualifier (MAY STALL) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 req.wValue = cpu_to_le16 (USB_DT_DEVICE_QUALIFIER << 8);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001263 len = sizeof(struct usb_qualifier_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (udev->speed != USB_SPEED_HIGH)
1265 expected = EPIPE;
1266 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001267 case 6: /* get first config descriptor, plus interface */
1268 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1269 len = sizeof(struct usb_config_descriptor);
1270 len += sizeof(struct usb_interface_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001272 case 7: /* get interface descriptor (ALWAYS STALLS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 req.wValue = cpu_to_le16 (USB_DT_INTERFACE << 8);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001274 /* interface == 0 */
1275 len = sizeof(struct usb_interface_descriptor);
David Brownell28ffd792008-04-25 18:51:10 -07001276 expected = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001278 /* NOTE: two consecutive stalls in the queue here.
1279 * that tests fault recovery a bit more aggressively. */
1280 case 8: /* clear endpoint halt (MAY STALL) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 req.bRequest = USB_REQ_CLEAR_FEATURE;
1282 req.bRequestType = USB_RECIP_ENDPOINT;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001283 /* wValue 0 == ep halt */
1284 /* wIndex 0 == ep0 (shouldn't halt!) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 len = 0;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001286 pipe = usb_sndctrlpipe(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 expected = EPIPE;
1288 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001289 case 9: /* get endpoint status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 req.bRequest = USB_REQ_GET_STATUS;
1291 req.bRequestType = USB_DIR_IN|USB_RECIP_ENDPOINT;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001292 /* endpoint 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 len = 2;
1294 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001295 case 10: /* trigger short read (EREMOTEIO) */
1296 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 len = 1024;
1298 expected = -EREMOTEIO;
1299 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001300 /* NOTE: two consecutive _different_ faults in the queue. */
1301 case 11: /* get endpoint descriptor (ALWAYS STALLS) */
1302 req.wValue = cpu_to_le16(USB_DT_ENDPOINT << 8);
1303 /* endpoint == 0 */
1304 len = sizeof(struct usb_interface_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 expected = EPIPE;
1306 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001307 /* NOTE: sometimes even a third fault in the queue! */
1308 case 12: /* get string 0 descriptor (MAY STALL) */
1309 req.wValue = cpu_to_le16(USB_DT_STRING << 8);
1310 /* string == 0, for language IDs */
1311 len = sizeof(struct usb_interface_descriptor);
1312 /* may succeed when > 4 languages */
1313 expected = EREMOTEIO; /* or EPIPE, if no strings */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001315 case 13: /* short read, resembling case 10 */
1316 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1317 /* last data packet "should" be DATA1, not DATA0 */
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001318 if (udev->speed == USB_SPEED_SUPER)
1319 len = 1024 - 512;
1320 else
1321 len = 1024 - udev->descriptor.bMaxPacketSize0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 expected = -EREMOTEIO;
1323 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001324 case 14: /* short read; try to fill the last packet */
1325 req.wValue = cpu_to_le16((USB_DT_DEVICE << 8) | 0);
David Brownell28ffd792008-04-25 18:51:10 -07001326 /* device descriptor size == 18 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 len = udev->descriptor.bMaxPacketSize0;
Sebastian Andrzej Siewior67e7d642011-04-14 16:17:21 +02001328 if (udev->speed == USB_SPEED_SUPER)
1329 len = 512;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 switch (len) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001331 case 8:
1332 len = 24;
1333 break;
1334 case 16:
1335 len = 32;
1336 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
1338 expected = -EREMOTEIO;
1339 break;
Huang Ruic952a8b2013-11-04 21:11:53 +08001340 case 15:
1341 req.wValue = cpu_to_le16(USB_DT_BOS << 8);
1342 if (udev->bos)
1343 len = le16_to_cpu(udev->bos->desc->wTotalLength);
1344 else
1345 len = sizeof(struct usb_bos_descriptor);
Sarah Sharp8cf43282013-12-13 13:44:17 -08001346 if (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0201)
Huang Ruic952a8b2013-11-04 21:11:53 +08001347 expected = -EPIPE;
1348 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 default:
David Brownell28ffd792008-04-25 18:51:10 -07001350 ERROR(dev, "bogus number of ctrl queue testcases!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 context.status = -EINVAL;
1352 goto cleanup;
1353 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001354 req.wLength = cpu_to_le16(len);
Amit Virdi457a0952014-08-22 14:36:37 +05301355 urb[i] = u = simple_alloc_urb(udev, pipe, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (!u)
1357 goto cleanup;
1358
Huang Ruif55055b2013-10-21 23:15:30 +08001359 reqp = kmalloc(sizeof(*reqp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (!reqp)
1361 goto cleanup;
1362 reqp->setup = req;
1363 reqp->number = i % NUM_SUBCASES;
1364 reqp->expected = expected;
1365 u->setup_packet = (char *) &reqp->setup;
1366
1367 u->context = &context;
1368 u->complete = ctrl_complete;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 }
1370
1371 /* queue the urbs */
1372 context.urb = urb;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001373 spin_lock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001375 context.status = usb_submit_urb(urb[i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 if (context.status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001377 ERROR(dev, "can't submit urb[%d], status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 i, context.status);
1379 context.count = context.pending;
1380 break;
1381 }
1382 context.pending++;
1383 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001384 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 /* FIXME set timer and time out; provide a disconnect hook */
1387
1388 /* wait for the last one to complete */
1389 if (context.pending > 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001390 wait_for_completion(&context.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392cleanup:
1393 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001394 if (!urb[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 continue;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001396 urb[i]->dev = udev;
Alan Stern0ede76f2010-03-05 15:10:17 -05001397 kfree(urb[i]->setup_packet);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001398 simple_free_urb(urb[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001400 kfree(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 return context.status;
1402}
1403#undef NUM_SUBCASES
1404
1405
1406/*-------------------------------------------------------------------------*/
1407
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001408static void unlink1_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
1410 int status = urb->status;
1411
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001412 /* we "know" -EPIPE (stall) never happens */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (!status)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001414 status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 if (status) {
1416 urb->status = status;
Ming Leicdc97792008-02-24 18:41:47 +08001417 complete(urb->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
1419}
1420
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001421static int unlink1(struct usbtest_dev *dev, int pipe, int size, int async)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422{
1423 struct urb *urb;
1424 struct completion completion;
1425 int retval = 0;
1426
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001427 init_completion(&completion);
Amit Virdi457a0952014-08-22 14:36:37 +05301428 urb = simple_alloc_urb(testdev_to_usbdev(dev), pipe, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 if (!urb)
1430 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 urb->context = &completion;
1432 urb->complete = unlink1_callback;
1433
Huang Ruie4d58f52014-05-26 10:55:36 +08001434 if (usb_pipeout(urb->pipe)) {
1435 simple_fill_buf(urb);
1436 urb->transfer_flags |= URB_ZERO_PACKET;
1437 }
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 /* keep the endpoint busy. there are lots of hc/hcd-internal
1440 * states, and testing should get to all of them over time.
1441 *
1442 * FIXME want additional tests for when endpoint is STALLing
1443 * due to errors, or is just NAKing requests.
1444 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001445 retval = usb_submit_urb(urb, GFP_KERNEL);
1446 if (retval != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001447 dev_err(&dev->intf->dev, "submit fail %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 return retval;
1449 }
1450
1451 /* unlinking that should always work. variable delay tests more
1452 * hcd states and code paths, even with little other system load.
1453 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001454 msleep(jiffies % (2 * INTERRUPT_RATE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 if (async) {
Martin Fuzzey3b6c0232009-06-04 23:20:38 +02001456 while (!completion_done(&completion)) {
1457 retval = usb_unlink_urb(urb);
1458
Huang Ruia7683eb2014-05-22 18:06:14 +08001459 if (retval == 0 && usb_pipein(urb->pipe))
1460 retval = simple_check_buf(dev, urb);
1461
Martin Fuzzey3b6c0232009-06-04 23:20:38 +02001462 switch (retval) {
1463 case -EBUSY:
1464 case -EIDRM:
1465 /* we can't unlink urbs while they're completing
1466 * or if they've completed, and we haven't
1467 * resubmitted. "normal" drivers would prevent
1468 * resubmission, but since we're testing unlink
1469 * paths, we can't.
1470 */
1471 ERROR(dev, "unlink retry\n");
1472 continue;
1473 case 0:
1474 case -EINPROGRESS:
1475 break;
1476
1477 default:
1478 dev_err(&dev->intf->dev,
1479 "unlink fail %d\n", retval);
1480 return retval;
1481 }
1482
1483 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
1485 } else
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001486 usb_kill_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001488 wait_for_completion(&completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 retval = urb->status;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001490 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
1492 if (async)
1493 return (retval == -ECONNRESET) ? 0 : retval - 1000;
1494 else
1495 return (retval == -ENOENT || retval == -EPERM) ?
1496 0 : retval - 2000;
1497}
1498
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001499static int unlink_simple(struct usbtest_dev *dev, int pipe, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
1501 int retval = 0;
1502
1503 /* test sync and async paths */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001504 retval = unlink1(dev, pipe, len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 if (!retval)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001506 retval = unlink1(dev, pipe, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 return retval;
1508}
1509
1510/*-------------------------------------------------------------------------*/
1511
Alan Stern869410f2011-04-14 11:21:04 -04001512struct queued_ctx {
1513 struct completion complete;
1514 atomic_t pending;
1515 unsigned num;
1516 int status;
1517 struct urb **urbs;
1518};
1519
1520static void unlink_queued_callback(struct urb *urb)
1521{
1522 int status = urb->status;
1523 struct queued_ctx *ctx = urb->context;
1524
1525 if (ctx->status)
1526 goto done;
1527 if (urb == ctx->urbs[ctx->num - 4] || urb == ctx->urbs[ctx->num - 2]) {
1528 if (status == -ECONNRESET)
1529 goto done;
1530 /* What error should we report if the URB completed normally? */
1531 }
1532 if (status != 0)
1533 ctx->status = status;
1534
1535 done:
1536 if (atomic_dec_and_test(&ctx->pending))
1537 complete(&ctx->complete);
1538}
1539
1540static int unlink_queued(struct usbtest_dev *dev, int pipe, unsigned num,
1541 unsigned size)
1542{
1543 struct queued_ctx ctx;
1544 struct usb_device *udev = testdev_to_usbdev(dev);
1545 void *buf;
1546 dma_addr_t buf_dma;
1547 int i;
1548 int retval = -ENOMEM;
1549
1550 init_completion(&ctx.complete);
1551 atomic_set(&ctx.pending, 1); /* One more than the actual value */
1552 ctx.num = num;
1553 ctx.status = 0;
1554
1555 buf = usb_alloc_coherent(udev, size, GFP_KERNEL, &buf_dma);
1556 if (!buf)
1557 return retval;
1558 memset(buf, 0, size);
1559
1560 /* Allocate and init the urbs we'll queue */
1561 ctx.urbs = kcalloc(num, sizeof(struct urb *), GFP_KERNEL);
1562 if (!ctx.urbs)
1563 goto free_buf;
1564 for (i = 0; i < num; i++) {
1565 ctx.urbs[i] = usb_alloc_urb(0, GFP_KERNEL);
1566 if (!ctx.urbs[i])
1567 goto free_urbs;
1568 usb_fill_bulk_urb(ctx.urbs[i], udev, pipe, buf, size,
1569 unlink_queued_callback, &ctx);
1570 ctx.urbs[i]->transfer_dma = buf_dma;
1571 ctx.urbs[i]->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
Huang Ruie4d58f52014-05-26 10:55:36 +08001572
1573 if (usb_pipeout(ctx.urbs[i]->pipe)) {
1574 simple_fill_buf(ctx.urbs[i]);
1575 ctx.urbs[i]->transfer_flags |= URB_ZERO_PACKET;
1576 }
Alan Stern869410f2011-04-14 11:21:04 -04001577 }
1578
1579 /* Submit all the URBs and then unlink URBs num - 4 and num - 2. */
1580 for (i = 0; i < num; i++) {
1581 atomic_inc(&ctx.pending);
1582 retval = usb_submit_urb(ctx.urbs[i], GFP_KERNEL);
1583 if (retval != 0) {
1584 dev_err(&dev->intf->dev, "submit urbs[%d] fail %d\n",
1585 i, retval);
1586 atomic_dec(&ctx.pending);
1587 ctx.status = retval;
1588 break;
1589 }
1590 }
1591 if (i == num) {
1592 usb_unlink_urb(ctx.urbs[num - 4]);
1593 usb_unlink_urb(ctx.urbs[num - 2]);
1594 } else {
1595 while (--i >= 0)
1596 usb_unlink_urb(ctx.urbs[i]);
1597 }
1598
1599 if (atomic_dec_and_test(&ctx.pending)) /* The extra count */
1600 complete(&ctx.complete);
1601 wait_for_completion(&ctx.complete);
1602 retval = ctx.status;
1603
1604 free_urbs:
1605 for (i = 0; i < num; i++)
1606 usb_free_urb(ctx.urbs[i]);
1607 kfree(ctx.urbs);
1608 free_buf:
1609 usb_free_coherent(udev, size, buf, buf_dma);
1610 return retval;
1611}
1612
1613/*-------------------------------------------------------------------------*/
1614
David Brownell28ffd792008-04-25 18:51:10 -07001615static int verify_not_halted(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
1617 int retval;
1618 u16 status;
1619
1620 /* shouldn't look or act halted */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001621 retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001623 ERROR(tdev, "ep %02x couldn't get no-halt status, %d\n",
1624 ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 return retval;
1626 }
1627 if (status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001628 ERROR(tdev, "ep %02x bogus status: %04x != 0\n", ep, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 return -EINVAL;
1630 }
David Brownell28ffd792008-04-25 18:51:10 -07001631 retval = simple_io(tdev, urb, 1, 0, 0, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (retval != 0)
1633 return -EINVAL;
1634 return 0;
1635}
1636
David Brownell28ffd792008-04-25 18:51:10 -07001637static int verify_halted(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
1639 int retval;
1640 u16 status;
1641
1642 /* should look and act halted */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001643 retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001645 ERROR(tdev, "ep %02x couldn't get halt status, %d\n",
1646 ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 return retval;
1648 }
1649 if (status != 1) {
David Brownell28ffd792008-04-25 18:51:10 -07001650 ERROR(tdev, "ep %02x bogus status: %04x != 1\n", ep, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 return -EINVAL;
1652 }
David Brownell28ffd792008-04-25 18:51:10 -07001653 retval = simple_io(tdev, urb, 1, 0, -EPIPE, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 if (retval != -EPIPE)
1655 return -EINVAL;
David Brownell28ffd792008-04-25 18:51:10 -07001656 retval = simple_io(tdev, urb, 1, 0, -EPIPE, "verify_still_halted");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (retval != -EPIPE)
1658 return -EINVAL;
1659 return 0;
1660}
1661
David Brownell28ffd792008-04-25 18:51:10 -07001662static int test_halt(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
1664 int retval;
1665
1666 /* shouldn't look or act halted now */
David Brownell28ffd792008-04-25 18:51:10 -07001667 retval = verify_not_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 if (retval < 0)
1669 return retval;
1670
1671 /* set halt (protocol test only), verify it worked */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001672 retval = usb_control_msg(urb->dev, usb_sndctrlpipe(urb->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 USB_REQ_SET_FEATURE, USB_RECIP_ENDPOINT,
1674 USB_ENDPOINT_HALT, ep,
1675 NULL, 0, USB_CTRL_SET_TIMEOUT);
1676 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001677 ERROR(tdev, "ep %02x couldn't set halt, %d\n", ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 return retval;
1679 }
David Brownell28ffd792008-04-25 18:51:10 -07001680 retval = verify_halted(tdev, ep, urb);
Roger Quadros824d7522013-12-18 15:40:11 +05301681 if (retval < 0) {
1682 int ret;
1683
1684 /* clear halt anyways, else further tests will fail */
1685 ret = usb_clear_halt(urb->dev, urb->pipe);
1686 if (ret)
1687 ERROR(tdev, "ep %02x couldn't clear halt, %d\n",
1688 ep, ret);
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return retval;
Roger Quadros824d7522013-12-18 15:40:11 +05301691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
1693 /* clear halt (tests API + protocol), verify it worked */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001694 retval = usb_clear_halt(urb->dev, urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001696 ERROR(tdev, "ep %02x couldn't clear halt, %d\n", ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 return retval;
1698 }
David Brownell28ffd792008-04-25 18:51:10 -07001699 retval = verify_not_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 if (retval < 0)
1701 return retval;
1702
1703 /* NOTE: could also verify SET_INTERFACE clear halts ... */
1704
1705 return 0;
1706}
1707
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001708static int halt_simple(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001710 int ep;
1711 int retval = 0;
1712 struct urb *urb;
1713 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001715 if (udev->speed == USB_SPEED_SUPER)
Amit Virdi457a0952014-08-22 14:36:37 +05301716 urb = simple_alloc_urb(udev, 0, 1024, 0);
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001717 else
Amit Virdi457a0952014-08-22 14:36:37 +05301718 urb = simple_alloc_urb(udev, 0, 512, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 if (urb == NULL)
1720 return -ENOMEM;
1721
1722 if (dev->in_pipe) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001723 ep = usb_pipeendpoint(dev->in_pipe) | USB_DIR_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 urb->pipe = dev->in_pipe;
David Brownell28ffd792008-04-25 18:51:10 -07001725 retval = test_halt(dev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (retval < 0)
1727 goto done;
1728 }
1729
1730 if (dev->out_pipe) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001731 ep = usb_pipeendpoint(dev->out_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 urb->pipe = dev->out_pipe;
David Brownell28ffd792008-04-25 18:51:10 -07001733 retval = test_halt(dev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 }
1735done:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001736 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 return retval;
1738}
1739
1740/*-------------------------------------------------------------------------*/
1741
1742/* Control OUT tests use the vendor control requests from Intel's
1743 * USB 2.0 compliance test device: write a buffer, read it back.
1744 *
1745 * Intel's spec only _requires_ that it work for one packet, which
1746 * is pretty weak. Some HCDs place limits here; most devices will
1747 * need to be able to handle more than one OUT data packet. We'll
1748 * try whatever we're told to try.
1749 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001750static int ctrl_out(struct usbtest_dev *dev,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001751 unsigned count, unsigned length, unsigned vary, unsigned offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752{
Orjan Fribergf54fa842006-08-08 23:31:40 -07001753 unsigned i, j, len;
1754 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 u8 *buf;
1756 char *what = "?";
1757 struct usb_device *udev;
Orjan Fribergf54fa842006-08-08 23:31:40 -07001758
David Brownellff7c79e2005-04-22 13:17:00 -07001759 if (length < 1 || length > 0xffff || vary >= length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 return -EINVAL;
1761
Martin Fuzzey084fb202011-01-16 19:17:11 +01001762 buf = kmalloc(length + offset, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 if (!buf)
1764 return -ENOMEM;
1765
Martin Fuzzey084fb202011-01-16 19:17:11 +01001766 buf += offset;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001767 udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 len = length;
1769 retval = 0;
1770
1771 /* NOTE: hardware might well act differently if we pushed it
1772 * with lots back-to-back queued requests.
1773 */
1774 for (i = 0; i < count; i++) {
1775 /* write patterned data */
1776 for (j = 0; j < len; j++)
Peter Chen169900f2015-09-01 09:48:00 +08001777 buf[j] = (u8)(i + j);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001778 retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 0x5b, USB_DIR_OUT|USB_TYPE_VENDOR,
1780 0, 0, buf, len, USB_CTRL_SET_TIMEOUT);
1781 if (retval != len) {
1782 what = "write";
David Brownellff7c79e2005-04-22 13:17:00 -07001783 if (retval >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001784 ERROR(dev, "ctrl_out, wlen %d (expected %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -07001785 retval, len);
1786 retval = -EBADMSG;
1787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 break;
1789 }
1790
1791 /* read it back -- assuming nothing intervened!! */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001792 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 0x5c, USB_DIR_IN|USB_TYPE_VENDOR,
1794 0, 0, buf, len, USB_CTRL_GET_TIMEOUT);
1795 if (retval != len) {
1796 what = "read";
David Brownellff7c79e2005-04-22 13:17:00 -07001797 if (retval >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001798 ERROR(dev, "ctrl_out, rlen %d (expected %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -07001799 retval, len);
1800 retval = -EBADMSG;
1801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 break;
1803 }
1804
1805 /* fail if we can't verify */
1806 for (j = 0; j < len; j++) {
Peter Chen169900f2015-09-01 09:48:00 +08001807 if (buf[j] != (u8)(i + j)) {
David Brownell28ffd792008-04-25 18:51:10 -07001808 ERROR(dev, "ctrl_out, byte %d is %d not %d\n",
Peter Chen169900f2015-09-01 09:48:00 +08001809 j, buf[j], (u8)(i + j));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 retval = -EBADMSG;
1811 break;
1812 }
1813 }
1814 if (retval < 0) {
1815 what = "verify";
1816 break;
1817 }
1818
1819 len += vary;
David Brownellff7c79e2005-04-22 13:17:00 -07001820
1821 /* [real world] the "zero bytes IN" case isn't really used.
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001822 * hardware can easily trip up in this weird case, since its
David Brownellff7c79e2005-04-22 13:17:00 -07001823 * status stage is IN, not OUT like other ep0in transfers.
1824 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 if (len > length)
David Brownellff7c79e2005-04-22 13:17:00 -07001826 len = realworld ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 }
1828
1829 if (retval < 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001830 ERROR(dev, "ctrl_out %s failed, code %d, count %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 what, retval, i);
1832
Martin Fuzzey084fb202011-01-16 19:17:11 +01001833 kfree(buf - offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 return retval;
1835}
1836
1837/*-------------------------------------------------------------------------*/
1838
Peter Chen145f48c2015-10-13 15:18:21 +08001839/* ISO/BULK tests ... mimics common usage
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 * - buffer length is split into N packets (mostly maxpacket sized)
1841 * - multi-buffers according to sglen
1842 */
1843
Peter Chen145f48c2015-10-13 15:18:21 +08001844struct transfer_context {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 unsigned count;
1846 unsigned pending;
1847 spinlock_t lock;
1848 struct completion done;
Alan Stern9da21502006-05-22 16:47:13 -04001849 int submit_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 unsigned long errors;
Alan Stern9da21502006-05-22 16:47:13 -04001851 unsigned long packet_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 struct usbtest_dev *dev;
Peter Chen145f48c2015-10-13 15:18:21 +08001853 bool is_iso;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854};
1855
Peter Chen145f48c2015-10-13 15:18:21 +08001856static void complicated_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
Peter Chen145f48c2015-10-13 15:18:21 +08001858 struct transfer_context *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860 spin_lock(&ctx->lock);
1861 ctx->count--;
1862
Alan Stern9da21502006-05-22 16:47:13 -04001863 ctx->packet_count += urb->number_of_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 if (urb->error_count > 0)
1865 ctx->errors += urb->error_count;
Alan Stern9da21502006-05-22 16:47:13 -04001866 else if (urb->status != 0)
Peter Chen145f48c2015-10-13 15:18:21 +08001867 ctx->errors += (ctx->is_iso ? urb->number_of_packets : 1);
Martin Fuzzey40aed522010-10-01 00:20:48 +02001868 else if (urb->actual_length != urb->transfer_buffer_length)
1869 ctx->errors++;
Martin Fuzzey084fb202011-01-16 19:17:11 +01001870 else if (check_guard_bytes(ctx->dev, urb) != 0)
1871 ctx->errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Alan Stern9da21502006-05-22 16:47:13 -04001873 if (urb->status == 0 && ctx->count > (ctx->pending - 1)
1874 && !ctx->submit_error) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001875 int status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 switch (status) {
1877 case 0:
1878 goto done;
1879 default:
David Brownell28ffd792008-04-25 18:51:10 -07001880 dev_err(&ctx->dev->intf->dev,
Peter Chenc7c78062015-11-18 17:40:23 +08001881 "resubmit err %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 status);
1883 /* FALLTHROUGH */
1884 case -ENODEV: /* disconnected */
Alan Stern9da21502006-05-22 16:47:13 -04001885 case -ESHUTDOWN: /* endpoint disabled */
1886 ctx->submit_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 break;
1888 }
1889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
1891 ctx->pending--;
1892 if (ctx->pending == 0) {
1893 if (ctx->errors)
David Brownell28ffd792008-04-25 18:51:10 -07001894 dev_err(&ctx->dev->intf->dev,
Peter Chenc7c78062015-11-18 17:40:23 +08001895 "during the test, %lu errors out of %lu\n",
Alan Stern9da21502006-05-22 16:47:13 -04001896 ctx->errors, ctx->packet_count);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001897 complete(&ctx->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
1899done:
1900 spin_unlock(&ctx->lock);
1901}
1902
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001903static struct urb *iso_alloc_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 struct usb_device *udev,
1905 int pipe,
1906 struct usb_endpoint_descriptor *desc,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001907 long bytes,
1908 unsigned offset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909)
1910{
1911 struct urb *urb;
1912 unsigned i, maxp, packets;
1913
1914 if (bytes < 0 || !desc)
1915 return NULL;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001916 maxp = 0x7ff & usb_endpoint_maxp(desc);
1917 maxp *= 1 + (0x3 & (usb_endpoint_maxp(desc) >> 11));
Julia Lawalldfa5ec72008-03-04 15:25:11 -08001918 packets = DIV_ROUND_UP(bytes, maxp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001920 urb = usb_alloc_urb(packets, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 if (!urb)
1922 return urb;
1923 urb->dev = udev;
1924 urb->pipe = pipe;
1925
1926 urb->number_of_packets = packets;
1927 urb->transfer_buffer_length = bytes;
Martin Fuzzey084fb202011-01-16 19:17:11 +01001928 urb->transfer_buffer = usb_alloc_coherent(udev, bytes + offset,
1929 GFP_KERNEL,
1930 &urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 if (!urb->transfer_buffer) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001932 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 return NULL;
1934 }
Martin Fuzzey084fb202011-01-16 19:17:11 +01001935 if (offset) {
1936 memset(urb->transfer_buffer, GUARD_BYTE, offset);
1937 urb->transfer_buffer += offset;
1938 urb->transfer_dma += offset;
1939 }
1940 /* For inbound transfers use guard byte so that test fails if
1941 data not correctly copied */
1942 memset(urb->transfer_buffer,
1943 usb_pipein(urb->pipe) ? GUARD_BYTE : 0,
1944 bytes);
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 for (i = 0; i < packets; i++) {
1947 /* here, only the last packet will be short */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001948 urb->iso_frame_desc[i].length = min((unsigned) bytes, maxp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 bytes -= urb->iso_frame_desc[i].length;
1950
1951 urb->iso_frame_desc[i].offset = maxp * i;
1952 }
1953
Peter Chen145f48c2015-10-13 15:18:21 +08001954 urb->complete = complicated_callback;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001955 /* urb->context = SET BY CALLER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 urb->interval = 1 << (desc->bInterval - 1);
1957 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
1958 return urb;
1959}
1960
1961static int
Deepa Dinamani18fc4eb2015-11-04 15:29:11 -08001962test_queue(struct usbtest_dev *dev, struct usbtest_param_32 *param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001963 int pipe, struct usb_endpoint_descriptor *desc, unsigned offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
Peter Chen145f48c2015-10-13 15:18:21 +08001965 struct transfer_context context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 struct usb_device *udev;
1967 unsigned i;
1968 unsigned long packets = 0;
Alan Stern9da21502006-05-22 16:47:13 -04001969 int status = 0;
Peter Chen41d3c0b2015-09-01 09:47:58 +08001970 struct urb *urbs[param->sglen];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
Huang Ruif55055b2013-10-21 23:15:30 +08001972 memset(&context, 0, sizeof(context));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 context.count = param->iterations * param->sglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 context.dev = dev;
Peter Chen145f48c2015-10-13 15:18:21 +08001975 context.is_iso = !!desc;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001976 init_completion(&context.done);
1977 spin_lock_init(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001979 udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
1981 for (i = 0; i < param->sglen; i++) {
Peter Chen145f48c2015-10-13 15:18:21 +08001982 if (context.is_iso)
1983 urbs[i] = iso_alloc_urb(udev, pipe, desc,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001984 param->length, offset);
Peter Chen145f48c2015-10-13 15:18:21 +08001985 else
1986 urbs[i] = complicated_alloc_urb(udev, pipe,
1987 param->length, 0);
1988
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001989 if (!urbs[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 status = -ENOMEM;
1991 goto fail;
1992 }
1993 packets += urbs[i]->number_of_packets;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001994 urbs[i]->context = &context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 }
1996 packets *= param->iterations;
Peter Chen145f48c2015-10-13 15:18:21 +08001997
1998 if (context.is_iso) {
1999 dev_info(&dev->intf->dev,
2000 "iso period %d %sframes, wMaxPacket %d, transactions: %d\n",
2001 1 << (desc->bInterval - 1),
2002 (udev->speed == USB_SPEED_HIGH) ? "micro" : "",
2003 usb_endpoint_maxp(desc) & 0x7ff,
2004 1 + (0x3 & (usb_endpoint_maxp(desc) >> 11)));
2005
2006 dev_info(&dev->intf->dev,
2007 "total %lu msec (%lu packets)\n",
2008 (packets * (1 << (desc->bInterval - 1)))
2009 / ((udev->speed == USB_SPEED_HIGH) ? 8 : 1),
2010 packets);
2011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002013 spin_lock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 for (i = 0; i < param->sglen; i++) {
Alan Stern9da21502006-05-22 16:47:13 -04002015 ++context.pending;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002016 status = usb_submit_urb(urbs[i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 if (status < 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002018 ERROR(dev, "submit iso[%d], error %d\n", i, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 if (i == 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002020 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 goto fail;
2022 }
2023
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002024 simple_free_urb(urbs[i]);
Ming Leie10e1be2010-08-02 22:09:01 +08002025 urbs[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 context.pending--;
Alan Stern9da21502006-05-22 16:47:13 -04002027 context.submit_error = 1;
2028 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 }
2030 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002031 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002033 wait_for_completion(&context.done);
Alan Stern9da21502006-05-22 16:47:13 -04002034
Ming Leie10e1be2010-08-02 22:09:01 +08002035 for (i = 0; i < param->sglen; i++) {
2036 if (urbs[i])
2037 simple_free_urb(urbs[i]);
2038 }
Alan Stern9da21502006-05-22 16:47:13 -04002039 /*
2040 * Isochronous transfers are expected to fail sometimes. As an
2041 * arbitrary limit, we will report an error if any submissions
2042 * fail or if the transfer failure rate is > 10%.
2043 */
2044 if (status != 0)
2045 ;
2046 else if (context.submit_error)
2047 status = -EACCES;
Peter Chen145f48c2015-10-13 15:18:21 +08002048 else if (context.errors >
2049 (context.is_iso ? context.packet_count / 10 : 0))
Alan Stern9da21502006-05-22 16:47:13 -04002050 status = -EIO;
2051 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
2053fail:
2054 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002055 if (urbs[i])
2056 simple_free_urb(urbs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 }
2058 return status;
2059}
2060
Martin Fuzzey084fb202011-01-16 19:17:11 +01002061static int test_unaligned_bulk(
2062 struct usbtest_dev *tdev,
2063 int pipe,
2064 unsigned length,
2065 int iterations,
2066 unsigned transfer_flags,
2067 const char *label)
2068{
2069 int retval;
Peter Chen145f48c2015-10-13 15:18:21 +08002070 struct urb *urb = usbtest_alloc_urb(testdev_to_usbdev(tdev),
2071 pipe, length, transfer_flags, 1, 0, simple_callback);
Martin Fuzzey084fb202011-01-16 19:17:11 +01002072
2073 if (!urb)
2074 return -ENOMEM;
2075
2076 retval = simple_io(tdev, urb, iterations, 0, 0, label);
2077 simple_free_urb(urb);
2078 return retval;
2079}
2080
Deepa Dinamani18fc4eb2015-11-04 15:29:11 -08002081/* Run tests. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082static int
Deepa Dinamani18fc4eb2015-11-04 15:29:11 -08002083usbtest_do_ioctl(struct usb_interface *intf, struct usbtest_param_32 *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002085 struct usbtest_dev *dev = usb_get_intfdata(intf);
2086 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 struct urb *urb;
2088 struct scatterlist *sg;
2089 struct usb_sg_request req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 unsigned i;
Deepa Dinamani18fc4eb2015-11-04 15:29:11 -08002091 int retval = -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
roel kluin8aafdf62008-10-21 00:36:44 -04002093 if (param->iterations <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 /*
2096 * Just a bunch of test cases that every HCD is expected to handle.
2097 *
2098 * Some may need specific firmware, though it'd be good to have
2099 * one firmware image to handle all the test cases.
2100 *
2101 * FIXME add more tests! cancel requests, verify the data, control
2102 * queueing, concurrent read+write threads, and so on.
2103 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 switch (param->test_num) {
2105
2106 case 0:
David Brownell28ffd792008-04-25 18:51:10 -07002107 dev_info(&intf->dev, "TEST 0: NOP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 retval = 0;
2109 break;
2110
2111 /* Simple non-queued bulk I/O tests */
2112 case 1:
2113 if (dev->out_pipe == 0)
2114 break;
David Brownell28ffd792008-04-25 18:51:10 -07002115 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 "TEST 1: write %d bytes %u times\n",
2117 param->length, param->iterations);
Amit Virdi457a0952014-08-22 14:36:37 +05302118 urb = simple_alloc_urb(udev, dev->out_pipe, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 if (!urb) {
2120 retval = -ENOMEM;
2121 break;
2122 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002123 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002124 retval = simple_io(dev, urb, param->iterations, 0, 0, "test1");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002125 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 break;
2127 case 2:
2128 if (dev->in_pipe == 0)
2129 break;
David Brownell28ffd792008-04-25 18:51:10 -07002130 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 "TEST 2: read %d bytes %u times\n",
2132 param->length, param->iterations);
Amit Virdi457a0952014-08-22 14:36:37 +05302133 urb = simple_alloc_urb(udev, dev->in_pipe, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 if (!urb) {
2135 retval = -ENOMEM;
2136 break;
2137 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002138 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002139 retval = simple_io(dev, urb, param->iterations, 0, 0, "test2");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002140 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 break;
2142 case 3:
2143 if (dev->out_pipe == 0 || param->vary == 0)
2144 break;
David Brownell28ffd792008-04-25 18:51:10 -07002145 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 "TEST 3: write/%d 0..%d bytes %u times\n",
2147 param->vary, param->length, param->iterations);
Amit Virdi457a0952014-08-22 14:36:37 +05302148 urb = simple_alloc_urb(udev, dev->out_pipe, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 if (!urb) {
2150 retval = -ENOMEM;
2151 break;
2152 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002153 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002154 retval = simple_io(dev, urb, param->iterations, param->vary,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 0, "test3");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002156 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 break;
2158 case 4:
2159 if (dev->in_pipe == 0 || param->vary == 0)
2160 break;
David Brownell28ffd792008-04-25 18:51:10 -07002161 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 "TEST 4: read/%d 0..%d bytes %u times\n",
2163 param->vary, param->length, param->iterations);
Amit Virdi457a0952014-08-22 14:36:37 +05302164 urb = simple_alloc_urb(udev, dev->in_pipe, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 if (!urb) {
2166 retval = -ENOMEM;
2167 break;
2168 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002169 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002170 retval = simple_io(dev, urb, param->iterations, param->vary,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 0, "test4");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002172 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 break;
2174
2175 /* Queued bulk I/O tests */
2176 case 5:
2177 if (dev->out_pipe == 0 || param->sglen == 0)
2178 break;
David Brownell28ffd792008-04-25 18:51:10 -07002179 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 "TEST 5: write %d sglists %d entries of %d bytes\n",
2181 param->iterations,
2182 param->sglen, param->length);
Alan Sternb9a6e8e2015-09-01 09:48:01 +08002183 sg = alloc_sglist(param->sglen, param->length,
2184 0, dev, dev->out_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 if (!sg) {
2186 retval = -ENOMEM;
2187 break;
2188 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002189 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002190 retval = perform_sglist(dev, param->iterations, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002192 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 break;
2194
2195 case 6:
2196 if (dev->in_pipe == 0 || param->sglen == 0)
2197 break;
David Brownell28ffd792008-04-25 18:51:10 -07002198 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 "TEST 6: read %d sglists %d entries of %d bytes\n",
2200 param->iterations,
2201 param->sglen, param->length);
Alan Sternb9a6e8e2015-09-01 09:48:01 +08002202 sg = alloc_sglist(param->sglen, param->length,
2203 0, dev, dev->in_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 if (!sg) {
2205 retval = -ENOMEM;
2206 break;
2207 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002208 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002209 retval = perform_sglist(dev, param->iterations, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002211 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 break;
2213 case 7:
2214 if (dev->out_pipe == 0 || param->sglen == 0 || param->vary == 0)
2215 break;
David Brownell28ffd792008-04-25 18:51:10 -07002216 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 "TEST 7: write/%d %d sglists %d entries 0..%d bytes\n",
2218 param->vary, param->iterations,
2219 param->sglen, param->length);
Alan Sternb9a6e8e2015-09-01 09:48:01 +08002220 sg = alloc_sglist(param->sglen, param->length,
2221 param->vary, dev, dev->out_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 if (!sg) {
2223 retval = -ENOMEM;
2224 break;
2225 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002226 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002227 retval = perform_sglist(dev, param->iterations, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002229 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 break;
2231 case 8:
2232 if (dev->in_pipe == 0 || param->sglen == 0 || param->vary == 0)
2233 break;
David Brownell28ffd792008-04-25 18:51:10 -07002234 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 "TEST 8: read/%d %d sglists %d entries 0..%d bytes\n",
2236 param->vary, param->iterations,
2237 param->sglen, param->length);
Alan Sternb9a6e8e2015-09-01 09:48:01 +08002238 sg = alloc_sglist(param->sglen, param->length,
2239 param->vary, dev, dev->in_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 if (!sg) {
2241 retval = -ENOMEM;
2242 break;
2243 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002244 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002245 retval = perform_sglist(dev, param->iterations, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002247 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 break;
2249
2250 /* non-queued sanity tests for control (chapter 9 subset) */
2251 case 9:
2252 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002253 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 "TEST 9: ch9 (subset) control tests, %d times\n",
2255 param->iterations);
2256 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002257 retval = ch9_postconfig(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002259 dev_err(&intf->dev, "ch9 subset failed, "
2260 "iterations left %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 break;
2262
2263 /* queued control messaging */
2264 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002266 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 "TEST 10: queue %d control calls, %d times\n",
2268 param->sglen,
2269 param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002270 retval = test_ctrl_queue(dev, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 break;
2272
2273 /* simple non-queued unlinks (ring with one urb) */
2274 case 11:
2275 if (dev->in_pipe == 0 || !param->length)
2276 break;
2277 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002278 dev_info(&intf->dev, "TEST 11: unlink %d reads of %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 param->iterations, param->length);
2280 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002281 retval = unlink_simple(dev, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 param->length);
2283 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002284 dev_err(&intf->dev, "unlink reads failed %d, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 "iterations left %d\n", retval, i);
2286 break;
2287 case 12:
2288 if (dev->out_pipe == 0 || !param->length)
2289 break;
2290 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002291 dev_info(&intf->dev, "TEST 12: unlink %d writes of %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 param->iterations, param->length);
2293 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002294 retval = unlink_simple(dev, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 param->length);
2296 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002297 dev_err(&intf->dev, "unlink writes failed %d, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 "iterations left %d\n", retval, i);
2299 break;
2300
2301 /* ep halt tests */
2302 case 13:
2303 if (dev->out_pipe == 0 && dev->in_pipe == 0)
2304 break;
2305 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002306 dev_info(&intf->dev, "TEST 13: set/clear %d halts\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 param->iterations);
2308 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002309 retval = halt_simple(dev);
David Brownell28ffd792008-04-25 18:51:10 -07002310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002312 ERROR(dev, "halts failed, iterations left %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 break;
2314
2315 /* control write tests */
2316 case 14:
2317 if (!dev->info->ctrl_out)
2318 break;
David Brownell28ffd792008-04-25 18:51:10 -07002319 dev_info(&intf->dev, "TEST 14: %d ep0out, %d..%d vary %d\n",
David Brownellff7c79e2005-04-22 13:17:00 -07002320 param->iterations,
2321 realworld ? 1 : 0, param->length,
2322 param->vary);
David Brownell28ffd792008-04-25 18:51:10 -07002323 retval = ctrl_out(dev, param->iterations,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002324 param->length, param->vary, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 break;
2326
2327 /* iso write tests */
2328 case 15:
2329 if (dev->out_iso_pipe == 0 || param->sglen == 0)
2330 break;
David Brownell28ffd792008-04-25 18:51:10 -07002331 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 "TEST 15: write %d iso, %d entries of %d bytes\n",
2333 param->iterations,
2334 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002335 /* FIRMWARE: iso sink */
Peter Chen145f48c2015-10-13 15:18:21 +08002336 retval = test_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002337 dev->out_iso_pipe, dev->iso_out, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 break;
2339
2340 /* iso read tests */
2341 case 16:
2342 if (dev->in_iso_pipe == 0 || param->sglen == 0)
2343 break;
David Brownell28ffd792008-04-25 18:51:10 -07002344 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 "TEST 16: read %d iso, %d entries of %d bytes\n",
2346 param->iterations,
2347 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002348 /* FIRMWARE: iso source */
Peter Chen145f48c2015-10-13 15:18:21 +08002349 retval = test_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002350 dev->in_iso_pipe, dev->iso_in, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 break;
2352
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002353 /* FIXME scatterlist cancel (needs helper thread) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
Martin Fuzzey084fb202011-01-16 19:17:11 +01002355 /* Tests for bulk I/O using DMA mapping by core and odd address */
2356 case 17:
2357 if (dev->out_pipe == 0)
2358 break;
2359 dev_info(&intf->dev,
2360 "TEST 17: write odd addr %d bytes %u times core map\n",
2361 param->length, param->iterations);
2362
2363 retval = test_unaligned_bulk(
2364 dev, dev->out_pipe,
2365 param->length, param->iterations,
2366 0, "test17");
2367 break;
2368
2369 case 18:
2370 if (dev->in_pipe == 0)
2371 break;
2372 dev_info(&intf->dev,
2373 "TEST 18: read odd addr %d bytes %u times core map\n",
2374 param->length, param->iterations);
2375
2376 retval = test_unaligned_bulk(
2377 dev, dev->in_pipe,
2378 param->length, param->iterations,
2379 0, "test18");
2380 break;
2381
2382 /* Tests for bulk I/O using premapped coherent buffer and odd address */
2383 case 19:
2384 if (dev->out_pipe == 0)
2385 break;
2386 dev_info(&intf->dev,
2387 "TEST 19: write odd addr %d bytes %u times premapped\n",
2388 param->length, param->iterations);
2389
2390 retval = test_unaligned_bulk(
2391 dev, dev->out_pipe,
2392 param->length, param->iterations,
2393 URB_NO_TRANSFER_DMA_MAP, "test19");
2394 break;
2395
2396 case 20:
2397 if (dev->in_pipe == 0)
2398 break;
2399 dev_info(&intf->dev,
2400 "TEST 20: read odd addr %d bytes %u times premapped\n",
2401 param->length, param->iterations);
2402
2403 retval = test_unaligned_bulk(
2404 dev, dev->in_pipe,
2405 param->length, param->iterations,
2406 URB_NO_TRANSFER_DMA_MAP, "test20");
2407 break;
2408
2409 /* control write tests with unaligned buffer */
2410 case 21:
2411 if (!dev->info->ctrl_out)
2412 break;
2413 dev_info(&intf->dev,
2414 "TEST 21: %d ep0out odd addr, %d..%d vary %d\n",
2415 param->iterations,
2416 realworld ? 1 : 0, param->length,
2417 param->vary);
2418 retval = ctrl_out(dev, param->iterations,
2419 param->length, param->vary, 1);
2420 break;
2421
2422 /* unaligned iso tests */
2423 case 22:
2424 if (dev->out_iso_pipe == 0 || param->sglen == 0)
2425 break;
2426 dev_info(&intf->dev,
2427 "TEST 22: write %d iso odd, %d entries of %d bytes\n",
2428 param->iterations,
2429 param->sglen, param->length);
Peter Chen145f48c2015-10-13 15:18:21 +08002430 retval = test_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002431 dev->out_iso_pipe, dev->iso_out, 1);
2432 break;
2433
2434 case 23:
2435 if (dev->in_iso_pipe == 0 || param->sglen == 0)
2436 break;
2437 dev_info(&intf->dev,
2438 "TEST 23: read %d iso odd, %d entries of %d bytes\n",
2439 param->iterations,
2440 param->sglen, param->length);
Peter Chen145f48c2015-10-13 15:18:21 +08002441 retval = test_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002442 dev->in_iso_pipe, dev->iso_in, 1);
2443 break;
2444
Alan Stern869410f2011-04-14 11:21:04 -04002445 /* unlink URBs from a bulk-OUT queue */
2446 case 24:
2447 if (dev->out_pipe == 0 || !param->length || param->sglen < 4)
2448 break;
2449 retval = 0;
Alan Stern2cb50002013-01-02 13:58:18 -05002450 dev_info(&intf->dev, "TEST 24: unlink from %d queues of "
Alan Stern869410f2011-04-14 11:21:04 -04002451 "%d %d-byte writes\n",
2452 param->iterations, param->sglen, param->length);
2453 for (i = param->iterations; retval == 0 && i > 0; --i) {
2454 retval = unlink_queued(dev, dev->out_pipe,
2455 param->sglen, param->length);
2456 if (retval) {
2457 dev_err(&intf->dev,
2458 "unlink queued writes failed %d, "
2459 "iterations left %d\n", retval, i);
2460 break;
2461 }
2462 }
2463 break;
2464
Amit Virdi457a0952014-08-22 14:36:37 +05302465 /* Simple non-queued interrupt I/O tests */
2466 case 25:
2467 if (dev->out_int_pipe == 0)
2468 break;
2469 dev_info(&intf->dev,
2470 "TEST 25: write %d bytes %u times\n",
2471 param->length, param->iterations);
2472 urb = simple_alloc_urb(udev, dev->out_int_pipe, param->length,
2473 dev->int_out->bInterval);
2474 if (!urb) {
2475 retval = -ENOMEM;
2476 break;
2477 }
2478 /* FIRMWARE: interrupt sink (maybe accepts short writes) */
2479 retval = simple_io(dev, urb, param->iterations, 0, 0, "test25");
2480 simple_free_urb(urb);
2481 break;
2482 case 26:
2483 if (dev->in_int_pipe == 0)
2484 break;
2485 dev_info(&intf->dev,
2486 "TEST 26: read %d bytes %u times\n",
2487 param->length, param->iterations);
2488 urb = simple_alloc_urb(udev, dev->in_int_pipe, param->length,
2489 dev->int_in->bInterval);
2490 if (!urb) {
2491 retval = -ENOMEM;
2492 break;
2493 }
2494 /* FIRMWARE: interrupt source (maybe generates short writes) */
2495 retval = simple_io(dev, urb, param->iterations, 0, 0, "test26");
2496 simple_free_urb(urb);
2497 break;
Peter Chen145f48c2015-10-13 15:18:21 +08002498 case 27:
2499 /* We do performance test, so ignore data compare */
2500 if (dev->out_pipe == 0 || param->sglen == 0 || pattern != 0)
2501 break;
2502 dev_info(&intf->dev,
2503 "TEST 27: bulk write %dMbytes\n", (param->iterations *
2504 param->sglen * param->length) / (1024 * 1024));
2505 retval = test_queue(dev, param,
2506 dev->out_pipe, NULL, 0);
2507 break;
2508 case 28:
2509 if (dev->in_pipe == 0 || param->sglen == 0 || pattern != 0)
2510 break;
2511 dev_info(&intf->dev,
2512 "TEST 28: bulk read %dMbytes\n", (param->iterations *
2513 param->sglen * param->length) / (1024 * 1024));
2514 retval = test_queue(dev, param,
2515 dev->in_pipe, NULL, 0);
2516 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 }
Deepa Dinamani18fc4eb2015-11-04 15:29:11 -08002518 return retval;
2519}
2520
2521/*-------------------------------------------------------------------------*/
2522
2523/* We only have this one interface to user space, through usbfs.
2524 * User mode code can scan usbfs to find N different devices (maybe on
2525 * different busses) to use when testing, and allocate one thread per
2526 * test. So discovery is simplified, and we have no device naming issues.
2527 *
2528 * Don't use these only as stress/load tests. Use them along with with
2529 * other USB bus activity: plugging, unplugging, mousing, mp3 playback,
2530 * video capture, and so on. Run different tests at different times, in
2531 * different sequences. Nothing here should interact with other devices,
2532 * except indirectly by consuming USB bandwidth and CPU resources for test
2533 * threads and request completion. But the only way to know that for sure
2534 * is to test when HC queues are in use by many devices.
2535 *
2536 * WARNING: Because usbfs grabs udev->dev.sem before calling this ioctl(),
2537 * it locks out usbcore in certain code paths. Notably, if you disconnect
2538 * the device-under-test, hub_wq will wait block forever waiting for the
2539 * ioctl to complete ... so that usb_disconnect() can abort the pending
2540 * urbs and then call usbtest_disconnect(). To abort a test, you're best
2541 * off just killing the userspace task and waiting for it to exit.
2542 */
2543
2544static int
2545usbtest_ioctl(struct usb_interface *intf, unsigned int code, void *buf)
2546{
2547
2548 struct usbtest_dev *dev = usb_get_intfdata(intf);
2549 struct usbtest_param_64 *param_64 = buf;
2550 struct usbtest_param_32 temp;
2551 struct usbtest_param_32 *param_32 = buf;
2552 struct timespec64 start;
2553 struct timespec64 end;
2554 struct timespec64 duration;
2555 int retval = -EOPNOTSUPP;
2556
2557 /* FIXME USBDEVFS_CONNECTINFO doesn't say how fast the device is. */
2558
2559 pattern = mod_pattern;
2560
2561 if (mutex_lock_interruptible(&dev->lock))
2562 return -ERESTARTSYS;
2563
2564 /* FIXME: What if a system sleep starts while a test is running? */
2565
2566 /* some devices, like ez-usb default devices, need a non-default
2567 * altsetting to have any active endpoints. some tests change
2568 * altsettings; force a default so most tests don't need to check.
2569 */
2570 if (dev->info->alt >= 0) {
2571 if (intf->altsetting->desc.bInterfaceNumber) {
2572 retval = -ENODEV;
2573 goto free_mutex;
2574 }
2575 retval = set_altsetting(dev, dev->info->alt);
2576 if (retval) {
2577 dev_err(&intf->dev,
2578 "set altsetting to %d failed, %d\n",
2579 dev->info->alt, retval);
2580 goto free_mutex;
2581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 }
Deepa Dinamani18fc4eb2015-11-04 15:29:11 -08002583
2584 switch (code) {
2585 case USBTEST_REQUEST_64:
2586 temp.test_num = param_64->test_num;
2587 temp.iterations = param_64->iterations;
2588 temp.length = param_64->length;
2589 temp.sglen = param_64->sglen;
2590 temp.vary = param_64->vary;
2591 param_32 = &temp;
2592 break;
2593
2594 case USBTEST_REQUEST_32:
2595 break;
2596
2597 default:
2598 retval = -EOPNOTSUPP;
2599 goto free_mutex;
2600 }
2601
2602 ktime_get_ts64(&start);
2603
2604 retval = usbtest_do_ioctl(intf, param_32);
2605 if (retval)
2606 goto free_mutex;
2607
2608 ktime_get_ts64(&end);
2609
2610 duration = timespec64_sub(end, start);
2611
2612 temp.duration_sec = duration.tv_sec;
2613 temp.duration_usec = duration.tv_nsec/NSEC_PER_USEC;
2614
2615 switch (code) {
2616 case USBTEST_REQUEST_32:
2617 param_32->duration_sec = temp.duration_sec;
2618 param_32->duration_usec = temp.duration_usec;
2619 break;
2620
2621 case USBTEST_REQUEST_64:
2622 param_64->duration_sec = temp.duration_sec;
2623 param_64->duration_usec = temp.duration_usec;
2624 break;
2625 }
2626
2627free_mutex:
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002628 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 return retval;
2630}
2631
2632/*-------------------------------------------------------------------------*/
2633
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002634static unsigned force_interrupt;
2635module_param(force_interrupt, uint, 0);
2636MODULE_PARM_DESC(force_interrupt, "0 = test default; else interrupt");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
2638#ifdef GENERIC
2639static unsigned short vendor;
2640module_param(vendor, ushort, 0);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002641MODULE_PARM_DESC(vendor, "vendor code (from usb-if)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642
2643static unsigned short product;
2644module_param(product, ushort, 0);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002645MODULE_PARM_DESC(product, "product code (from vendor)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646#endif
2647
2648static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002649usbtest_probe(struct usb_interface *intf, const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650{
2651 struct usb_device *udev;
2652 struct usbtest_dev *dev;
2653 struct usbtest_info *info;
2654 char *rtest, *wtest;
2655 char *irtest, *iwtest;
Amit Virdi457a0952014-08-22 14:36:37 +05302656 char *intrtest, *intwtest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002658 udev = interface_to_usbdev(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
2660#ifdef GENERIC
2661 /* specify devices by module parameters? */
2662 if (id->match_flags == 0) {
2663 /* vendor match required, product match optional */
2664 if (!vendor || le16_to_cpu(udev->descriptor.idVendor) != (u16)vendor)
2665 return -ENODEV;
2666 if (product && le16_to_cpu(udev->descriptor.idProduct) != (u16)product)
2667 return -ENODEV;
David Brownell28ffd792008-04-25 18:51:10 -07002668 dev_info(&intf->dev, "matched module params, "
2669 "vend=0x%04x prod=0x%04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 le16_to_cpu(udev->descriptor.idVendor),
2671 le16_to_cpu(udev->descriptor.idProduct));
2672 }
2673#endif
2674
Christoph Lametere94b1762006-12-06 20:33:17 -08002675 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 if (!dev)
2677 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 info = (struct usbtest_info *) id->driver_info;
2679 dev->info = info;
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002680 mutex_init(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
2682 dev->intf = intf;
2683
2684 /* cacheline-aligned scratch for i/o */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002685 dev->buf = kmalloc(TBUF_SIZE, GFP_KERNEL);
2686 if (dev->buf == NULL) {
2687 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 return -ENOMEM;
2689 }
2690
2691 /* NOTE this doesn't yet test the handful of difference that are
2692 * visible with high speed interrupts: bigger maxpacket (1K) and
2693 * "high bandwidth" modes (up to 3 packets/uframe).
2694 */
2695 rtest = wtest = "";
2696 irtest = iwtest = "";
Amit Virdi457a0952014-08-22 14:36:37 +05302697 intrtest = intwtest = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 if (force_interrupt || udev->speed == USB_SPEED_LOW) {
2699 if (info->ep_in) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002700 dev->in_pipe = usb_rcvintpipe(udev, info->ep_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 rtest = " intr-in";
2702 }
2703 if (info->ep_out) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002704 dev->out_pipe = usb_sndintpipe(udev, info->ep_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 wtest = " intr-out";
2706 }
2707 } else {
Alan Sternd0b46522013-01-30 16:38:11 -05002708 if (override_alt >= 0 || info->autoconf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 int status;
2710
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002711 status = get_endpoints(dev, intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 if (status < 0) {
Arjan van de Venb6c63932008-07-25 01:45:52 -07002713 WARNING(dev, "couldn't get endpoints, %d\n",
David Brownell28ffd792008-04-25 18:51:10 -07002714 status);
Julia Lawallf4a728d2012-03-25 21:08:32 +02002715 kfree(dev->buf);
2716 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 return status;
2718 }
2719 /* may find bulk or ISO pipes */
2720 } else {
2721 if (info->ep_in)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002722 dev->in_pipe = usb_rcvbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 info->ep_in);
2724 if (info->ep_out)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002725 dev->out_pipe = usb_sndbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 info->ep_out);
2727 }
2728 if (dev->in_pipe)
2729 rtest = " bulk-in";
2730 if (dev->out_pipe)
2731 wtest = " bulk-out";
2732 if (dev->in_iso_pipe)
2733 irtest = " iso-in";
2734 if (dev->out_iso_pipe)
2735 iwtest = " iso-out";
Amit Virdi457a0952014-08-22 14:36:37 +05302736 if (dev->in_int_pipe)
2737 intrtest = " int-in";
2738 if (dev->out_int_pipe)
2739 intwtest = " int-out";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 }
2741
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002742 usb_set_intfdata(intf, dev);
2743 dev_info(&intf->dev, "%s\n", info->name);
Amit Virdi457a0952014-08-22 14:36:37 +05302744 dev_info(&intf->dev, "%s {control%s%s%s%s%s%s%s} tests%s\n",
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02002745 usb_speed_string(udev->speed),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 info->ctrl_out ? " in/out" : "",
2747 rtest, wtest,
2748 irtest, iwtest,
Amit Virdi457a0952014-08-22 14:36:37 +05302749 intrtest, intwtest,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 info->alt >= 0 ? " (+alt)" : "");
2751 return 0;
2752}
2753
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002754static int usbtest_suspend(struct usb_interface *intf, pm_message_t message)
David Brownellff7c79e2005-04-22 13:17:00 -07002755{
David Brownellff7c79e2005-04-22 13:17:00 -07002756 return 0;
2757}
2758
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002759static int usbtest_resume(struct usb_interface *intf)
David Brownellff7c79e2005-04-22 13:17:00 -07002760{
David Brownellff7c79e2005-04-22 13:17:00 -07002761 return 0;
2762}
2763
2764
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002765static void usbtest_disconnect(struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002767 struct usbtest_dev *dev = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002769 usb_set_intfdata(intf, NULL);
2770 dev_dbg(&intf->dev, "disconnect\n");
2771 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772}
2773
2774/* Basic testing only needs a device that can source or sink bulk traffic.
2775 * Any device can test control transfers (default with GENERIC binding).
2776 *
2777 * Several entries work with the default EP0 implementation that's built
2778 * into EZ-USB chips. There's a default vendor ID which can be overridden
2779 * by (very) small config EEPROMS, but otherwise all these devices act
2780 * identically until firmware is loaded: only EP0 works. It turns out
2781 * to be easy to make other endpoints work, without modifying that EP0
2782 * behavior. For now, we expect that kind of firmware.
2783 */
2784
2785/* an21xx or fx versions of ez-usb */
2786static struct usbtest_info ez1_info = {
2787 .name = "EZ-USB device",
2788 .ep_in = 2,
2789 .ep_out = 2,
2790 .alt = 1,
2791};
2792
2793/* fx2 version of ez-usb */
2794static struct usbtest_info ez2_info = {
2795 .name = "FX2 device",
2796 .ep_in = 6,
2797 .ep_out = 2,
2798 .alt = 1,
2799};
2800
2801/* ezusb family device with dedicated usb test firmware,
2802 */
2803static struct usbtest_info fw_info = {
2804 .name = "usb test device",
2805 .ep_in = 2,
2806 .ep_out = 2,
2807 .alt = 1,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002808 .autoconf = 1, /* iso and ctrl_out need autoconf */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 .ctrl_out = 1,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002810 .iso = 1, /* iso_ep's are #8 in/out */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811};
2812
2813/* peripheral running Linux and 'zero.c' test firmware, or
2814 * its user-mode cousin. different versions of this use
2815 * different hardware with the same vendor/product codes.
2816 * host side MUST rely on the endpoint descriptors.
2817 */
2818static struct usbtest_info gz_info = {
2819 .name = "Linux gadget zero",
2820 .autoconf = 1,
2821 .ctrl_out = 1,
Boyan Nedeltchev4b85c622012-11-12 13:06:06 +02002822 .iso = 1,
Amit Virdi457a0952014-08-22 14:36:37 +05302823 .intr = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 .alt = 0,
2825};
2826
2827static struct usbtest_info um_info = {
2828 .name = "Linux user mode test driver",
2829 .autoconf = 1,
2830 .alt = -1,
2831};
2832
2833static struct usbtest_info um2_info = {
2834 .name = "Linux user mode ISO test driver",
2835 .autoconf = 1,
2836 .iso = 1,
2837 .alt = -1,
2838};
2839
2840#ifdef IBOT2
2841/* this is a nice source of high speed bulk data;
2842 * uses an FX2, with firmware provided in the device
2843 */
2844static struct usbtest_info ibot2_info = {
2845 .name = "iBOT2 webcam",
2846 .ep_in = 2,
2847 .alt = -1,
2848};
2849#endif
2850
2851#ifdef GENERIC
2852/* we can use any device to test control traffic */
2853static struct usbtest_info generic_info = {
2854 .name = "Generic USB device",
2855 .alt = -1,
2856};
2857#endif
2858
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
Németh Márton33b9e162010-01-10 15:34:45 +01002860static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 /*-------------------------------------------------------------*/
2863
2864 /* EZ-USB devices which download firmware to replace (or in our
2865 * case augment) the default device implementation.
2866 */
2867
2868 /* generic EZ-USB FX controller */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002869 { USB_DEVICE(0x0547, 0x2235),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002871 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
2873 /* CY3671 development board with EZ-USB FX */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002874 { USB_DEVICE(0x0547, 0x0080),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002876 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
2878 /* generic EZ-USB FX2 controller (or development board) */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002879 { USB_DEVICE(0x04b4, 0x8613),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 .driver_info = (unsigned long) &ez2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002881 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
2883 /* re-enumerated usb test device firmware */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002884 { USB_DEVICE(0xfff0, 0xfff0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 .driver_info = (unsigned long) &fw_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002886 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887
2888 /* "Gadget Zero" firmware runs under Linux */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002889 { USB_DEVICE(0x0525, 0xa4a0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 .driver_info = (unsigned long) &gz_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002891 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
2893 /* so does a user-mode variant */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002894 { USB_DEVICE(0x0525, 0xa4a4),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 .driver_info = (unsigned long) &um_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002896 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
2898 /* ... and a user-mode variant that talks iso */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002899 { USB_DEVICE(0x0525, 0xa4a3),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 .driver_info = (unsigned long) &um2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002901 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
2903#ifdef KEYSPAN_19Qi
2904 /* Keyspan 19qi uses an21xx (original EZ-USB) */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002905 /* this does not coexist with the real Keyspan 19qi driver! */
2906 { USB_DEVICE(0x06cd, 0x010b),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002908 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909#endif
2910
2911 /*-------------------------------------------------------------*/
2912
2913#ifdef IBOT2
2914 /* iBOT2 makes a nice source of high speed bulk-in data */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002915 /* this does not coexist with a real iBOT2 driver! */
2916 { USB_DEVICE(0x0b62, 0x0059),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 .driver_info = (unsigned long) &ibot2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002918 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919#endif
2920
2921 /*-------------------------------------------------------------*/
2922
2923#ifdef GENERIC
2924 /* module params can specify devices to use for control tests */
2925 { .driver_info = (unsigned long) &generic_info, },
2926#endif
2927
2928 /*-------------------------------------------------------------*/
2929
2930 { }
2931};
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002932MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
2934static struct usb_driver usbtest_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 .name = "usbtest",
2936 .id_table = id_table,
2937 .probe = usbtest_probe,
Andi Kleenc532b292010-06-01 23:04:41 +02002938 .unlocked_ioctl = usbtest_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 .disconnect = usbtest_disconnect,
David Brownellff7c79e2005-04-22 13:17:00 -07002940 .suspend = usbtest_suspend,
2941 .resume = usbtest_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942};
2943
2944/*-------------------------------------------------------------------------*/
2945
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002946static int __init usbtest_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947{
2948#ifdef GENERIC
2949 if (vendor)
David Brownell28ffd792008-04-25 18:51:10 -07002950 pr_debug("params: vend=0x%04x prod=0x%04x\n", vendor, product);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951#endif
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002952 return usb_register(&usbtest_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953}
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002954module_init(usbtest_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002956static void __exit usbtest_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002958 usb_deregister(&usbtest_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959}
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002960module_exit(usbtest_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002962MODULE_DESCRIPTION("USB Core/HCD Testing Driver");
2963MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964