blob: e7235d5cce857a8f1229bebde8b930b51e1dcbdb [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#include <linux/usb.h>
12
13
14/*-------------------------------------------------------------------------*/
15
Alan Sternd0b46522013-01-30 16:38:11 -050016static int override_alt = -1;
17module_param_named(alt, override_alt, int, 0644);
18MODULE_PARM_DESC(alt, ">= 0 to override altsetting selection");
19
20/*-------------------------------------------------------------------------*/
21
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020022/* FIXME make these public somewhere; usbdevfs.h? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070023struct usbtest_param {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020024 /* inputs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 unsigned test_num; /* 0..(TEST_CASES-1) */
26 unsigned iterations;
27 unsigned length;
28 unsigned vary;
29 unsigned sglen;
30
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020031 /* outputs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 struct timeval duration;
33};
34#define USBTEST_REQUEST _IOWR('U', 100, struct usbtest_param)
35
36/*-------------------------------------------------------------------------*/
37
38#define GENERIC /* let probe() bind using module params */
39
40/* Some devices that can be used for testing will have "real" drivers.
41 * Entries for those need to be enabled here by hand, after disabling
42 * that "real" driver.
43 */
44//#define IBOT2 /* grab iBOT2 webcams */
45//#define KEYSPAN_19Qi /* grab un-renumerated serial adapter */
46
47/*-------------------------------------------------------------------------*/
48
49struct usbtest_info {
50 const char *name;
51 u8 ep_in; /* bulk/intr source */
52 u8 ep_out; /* bulk/intr sink */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020053 unsigned autoconf:1;
54 unsigned ctrl_out:1;
55 unsigned iso:1; /* try iso in/out */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 int alt;
57};
58
59/* this is accessed only through usbfs ioctl calls.
60 * one ioctl to issue a test ... one lock per device.
61 * tests create other threads if they need them.
62 * urbs and buffers are allocated dynamically,
63 * and data generated deterministically.
64 */
65struct usbtest_dev {
66 struct usb_interface *intf;
67 struct usbtest_info *info;
68 int in_pipe;
69 int out_pipe;
70 int in_iso_pipe;
71 int out_iso_pipe;
72 struct usb_endpoint_descriptor *iso_in, *iso_out;
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -080073 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75#define TBUF_SIZE 256
76 u8 *buf;
77};
78
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020079static struct usb_device *testdev_to_usbdev(struct usbtest_dev *test)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020081 return interface_to_usbdev(test->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
84/* set up all urbs so they can be used with either bulk or interrupt */
85#define INTERRUPT_RATE 1 /* msec/transfer */
86
David Brownell28ffd792008-04-25 18:51:10 -070087#define ERROR(tdev, fmt, args...) \
88 dev_err(&(tdev)->intf->dev , fmt , ## args)
Arjan van de Venb6c63932008-07-25 01:45:52 -070089#define WARNING(tdev, fmt, args...) \
David Brownell28ffd792008-04-25 18:51:10 -070090 dev_warn(&(tdev)->intf->dev , fmt , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Martin Fuzzey084fb202011-01-16 19:17:11 +010092#define GUARD_BYTE 0xA5
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/*-------------------------------------------------------------------------*/
95
96static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020097get_endpoints(struct usbtest_dev *dev, struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 int tmp;
100 struct usb_host_interface *alt;
101 struct usb_host_endpoint *in, *out;
102 struct usb_host_endpoint *iso_in, *iso_out;
103 struct usb_device *udev;
104
105 for (tmp = 0; tmp < intf->num_altsetting; tmp++) {
106 unsigned ep;
107
108 in = out = NULL;
109 iso_in = iso_out = NULL;
110 alt = intf->altsetting + tmp;
111
Alan Sternd0b46522013-01-30 16:38:11 -0500112 if (override_alt >= 0 &&
113 override_alt != alt->desc.bAlternateSetting)
114 continue;
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 /* take the first altsetting with in-bulk + out-bulk;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +0200117 * ignore other endpoints and altsettings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 */
119 for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) {
120 struct usb_host_endpoint *e;
121
122 e = alt->endpoint + ep;
Huang Rui9a37a502013-09-24 00:03:43 +0800123 switch (usb_endpoint_type(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 case USB_ENDPOINT_XFER_BULK:
125 break;
126 case USB_ENDPOINT_XFER_ISOC:
127 if (dev->info->iso)
128 goto try_iso;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200129 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 default:
131 continue;
132 }
Luiz Fernando N. Capitulino4d823dd2006-10-26 13:03:02 -0300133 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (!in)
135 in = e;
136 } else {
137 if (!out)
138 out = e;
139 }
140 continue;
141try_iso:
Luiz Fernando N. Capitulino4d823dd2006-10-26 13:03:02 -0300142 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (!iso_in)
144 iso_in = e;
145 } else {
146 if (!iso_out)
147 iso_out = e;
148 }
149 }
Ming Lei951fd8e2010-08-02 22:09:17 +0800150 if ((in && out) || iso_in || iso_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 goto found;
152 }
153 return -EINVAL;
154
155found:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200156 udev = testdev_to_usbdev(dev);
Alan Sternd0b46522013-01-30 16:38:11 -0500157 dev->info->alt = alt->desc.bAlternateSetting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (alt->desc.bAlternateSetting != 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200159 tmp = usb_set_interface(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 alt->desc.bInterfaceNumber,
161 alt->desc.bAlternateSetting);
162 if (tmp < 0)
163 return tmp;
164 }
165
166 if (in) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200167 dev->in_pipe = usb_rcvbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200169 dev->out_pipe = usb_sndbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 out->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
171 }
172 if (iso_in) {
173 dev->iso_in = &iso_in->desc;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200174 dev->in_iso_pipe = usb_rcvisocpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 iso_in->desc.bEndpointAddress
176 & USB_ENDPOINT_NUMBER_MASK);
Ming Lei951fd8e2010-08-02 22:09:17 +0800177 }
178
179 if (iso_out) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 dev->iso_out = &iso_out->desc;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200181 dev->out_iso_pipe = usb_sndisocpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 iso_out->desc.bEndpointAddress
183 & USB_ENDPOINT_NUMBER_MASK);
184 }
185 return 0;
186}
187
188/*-------------------------------------------------------------------------*/
189
190/* Support for testing basic non-queued I/O streams.
191 *
192 * These just package urbs as requests that can be easily canceled.
193 * Each urb's data buffer is dynamically allocated; callers can fill
194 * them with non-zero test data (or test for it) when appropriate.
195 */
196
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200197static void simple_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Ming Leicdc97792008-02-24 18:41:47 +0800199 complete(urb->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Martin Fuzzey084fb202011-01-16 19:17:11 +0100202static struct urb *usbtest_alloc_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 struct usb_device *udev,
204 int pipe,
Martin Fuzzey084fb202011-01-16 19:17:11 +0100205 unsigned long bytes,
206 unsigned transfer_flags,
207 unsigned offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 struct urb *urb;
210
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200211 urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (!urb)
213 return urb;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200214 usb_fill_bulk_urb(urb, udev, pipe, NULL, bytes, simple_callback, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 urb->interval = (udev->speed == USB_SPEED_HIGH)
216 ? (INTERRUPT_RATE << 3)
217 : INTERRUPT_RATE;
Martin Fuzzey084fb202011-01-16 19:17:11 +0100218 urb->transfer_flags = transfer_flags;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200219 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 urb->transfer_flags |= URB_SHORT_NOT_OK;
Martin Fuzzey084fb202011-01-16 19:17:11 +0100221
222 if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
223 urb->transfer_buffer = usb_alloc_coherent(udev, bytes + offset,
224 GFP_KERNEL, &urb->transfer_dma);
225 else
226 urb->transfer_buffer = kmalloc(bytes + offset, GFP_KERNEL);
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (!urb->transfer_buffer) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200229 usb_free_urb(urb);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100230 return NULL;
231 }
232
233 /* To test unaligned transfers add an offset and fill the
234 unused memory with a guard value */
235 if (offset) {
236 memset(urb->transfer_buffer, GUARD_BYTE, offset);
237 urb->transfer_buffer += offset;
238 if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
239 urb->transfer_dma += offset;
240 }
241
242 /* For inbound transfers use guard byte so that test fails if
243 data not correctly copied */
244 memset(urb->transfer_buffer,
245 usb_pipein(urb->pipe) ? GUARD_BYTE : 0,
246 bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return urb;
248}
249
Martin Fuzzey084fb202011-01-16 19:17:11 +0100250static struct urb *simple_alloc_urb(
251 struct usb_device *udev,
252 int pipe,
253 unsigned long bytes)
254{
255 return usbtest_alloc_urb(udev, pipe, bytes, URB_NO_TRANSFER_DMA_MAP, 0);
256}
257
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200258static unsigned pattern;
Vikram Pandita7f4e9852009-11-09 21:24:32 -0600259static unsigned mod_pattern;
260module_param_named(pattern, mod_pattern, uint, S_IRUGO | S_IWUSR);
261MODULE_PARM_DESC(mod_pattern, "i/o pattern (0 == zeroes)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200263static inline void simple_fill_buf(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 unsigned i;
266 u8 *buf = urb->transfer_buffer;
267 unsigned len = urb->transfer_buffer_length;
268
269 switch (pattern) {
270 default:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200271 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 case 0:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200273 memset(buf, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 break;
275 case 1: /* mod63 */
276 for (i = 0; i < len; i++)
277 *buf++ = (u8) (i % 63);
278 break;
279 }
280}
281
Greg Dietsche304b0b52011-05-08 22:51:43 -0500282static inline unsigned long buffer_offset(void *buf)
Martin Fuzzey084fb202011-01-16 19:17:11 +0100283{
Greg Dietsche304b0b52011-05-08 22:51:43 -0500284 return (unsigned long)buf & (ARCH_KMALLOC_MINALIGN - 1);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100285}
286
287static int check_guard_bytes(struct usbtest_dev *tdev, struct urb *urb)
288{
289 u8 *buf = urb->transfer_buffer;
290 u8 *guard = buf - buffer_offset(buf);
291 unsigned i;
292
293 for (i = 0; guard < buf; i++, guard++) {
294 if (*guard != GUARD_BYTE) {
295 ERROR(tdev, "guard byte[%d] %d (not %d)\n",
296 i, *guard, GUARD_BYTE);
297 return -EINVAL;
298 }
299 }
300 return 0;
301}
302
303static int simple_check_buf(struct usbtest_dev *tdev, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
305 unsigned i;
306 u8 expected;
307 u8 *buf = urb->transfer_buffer;
308 unsigned len = urb->actual_length;
309
Martin Fuzzey084fb202011-01-16 19:17:11 +0100310 int ret = check_guard_bytes(tdev, urb);
311 if (ret)
312 return ret;
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 for (i = 0; i < len; i++, buf++) {
315 switch (pattern) {
316 /* all-zeroes has no synchronization issues */
317 case 0:
318 expected = 0;
319 break;
320 /* mod63 stays in sync with short-terminated transfers,
321 * or otherwise when host and gadget agree on how large
322 * each usb transfer request should be. resync is done
323 * with set_interface or set_config.
324 */
325 case 1: /* mod63 */
326 expected = i % 63;
327 break;
328 /* always fail unsupported patterns */
329 default:
330 expected = !*buf;
331 break;
332 }
333 if (*buf == expected)
334 continue;
David Brownell28ffd792008-04-25 18:51:10 -0700335 ERROR(tdev, "buf[%d] = %d (not %d)\n", i, *buf, expected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return -EINVAL;
337 }
338 return 0;
339}
340
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200341static void simple_free_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Greg Dietsche304b0b52011-05-08 22:51:43 -0500343 unsigned long offset = buffer_offset(urb->transfer_buffer);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100344
345 if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
346 usb_free_coherent(
347 urb->dev,
348 urb->transfer_buffer_length + offset,
349 urb->transfer_buffer - offset,
350 urb->transfer_dma - offset);
351 else
352 kfree(urb->transfer_buffer - offset);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200353 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200356static int simple_io(
David Brownell28ffd792008-04-25 18:51:10 -0700357 struct usbtest_dev *tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 struct urb *urb,
359 int iterations,
360 int vary,
361 int expected,
362 const char *label
363)
364{
365 struct usb_device *udev = urb->dev;
366 int max = urb->transfer_buffer_length;
367 struct completion completion;
368 int retval = 0;
369
370 urb->context = &completion;
371 while (retval == 0 && iterations-- > 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200372 init_completion(&completion);
Sebastian Andrzej Siewior7c79d092011-08-23 10:44:54 +0200373 if (usb_pipeout(urb->pipe)) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200374 simple_fill_buf(urb);
Sebastian Andrzej Siewior7c79d092011-08-23 10:44:54 +0200375 urb->transfer_flags |= URB_ZERO_PACKET;
376 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200377 retval = usb_submit_urb(urb, GFP_KERNEL);
378 if (retval != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 break;
380
381 /* NOTE: no timeouts; can't be broken out of by interrupt */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200382 wait_for_completion(&completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 retval = urb->status;
384 urb->dev = udev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200385 if (retval == 0 && usb_pipein(urb->pipe))
David Brownell28ffd792008-04-25 18:51:10 -0700386 retval = simple_check_buf(tdev, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 if (vary) {
389 int len = urb->transfer_buffer_length;
390
391 len += vary;
392 len %= max;
393 if (len == 0)
394 len = (vary < max) ? vary : max;
395 urb->transfer_buffer_length = len;
396 }
397
398 /* FIXME if endpoint halted, clear halt (and log) */
399 }
400 urb->transfer_buffer_length = max;
401
402 if (expected != retval)
David Brownell28ffd792008-04-25 18:51:10 -0700403 dev_err(&udev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 "%s failed, iterations left %d, status %d (not %d)\n",
405 label, iterations, retval, expected);
406 return retval;
407}
408
409
410/*-------------------------------------------------------------------------*/
411
412/* We use scatterlist primitives to test queued I/O.
413 * Yes, this also tests the scatterlist primitives.
414 */
415
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200416static void free_sglist(struct scatterlist *sg, int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
418 unsigned i;
David Brownell28ffd792008-04-25 18:51:10 -0700419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (!sg)
421 return;
422 for (i = 0; i < nents; i++) {
Jens Axboe45711f12007-10-22 21:19:53 +0200423 if (!sg_page(&sg[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 continue;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200425 kfree(sg_virt(&sg[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200427 kfree(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
430static struct scatterlist *
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200431alloc_sglist(int nents, int max, int vary)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 struct scatterlist *sg;
434 unsigned i;
435 unsigned size = max;
436
Dan Carpenter564e6982012-11-17 18:06:11 +0300437 if (max == 0)
438 return NULL;
439
Huang Ruif55055b2013-10-21 23:15:30 +0800440 sg = kmalloc_array(nents, sizeof(*sg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (!sg)
442 return NULL;
Alan Stern4756feb2008-03-27 10:15:22 -0400443 sg_init_table(sg, nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 for (i = 0; i < nents; i++) {
446 char *buf;
David Brownell8b524902006-04-02 10:20:15 -0800447 unsigned j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200449 buf = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (!buf) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200451 free_sglist(sg, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return NULL;
453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 /* kmalloc pages are always physically contiguous! */
Alan Stern4756feb2008-03-27 10:15:22 -0400456 sg_set_buf(&sg[i], buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
David Brownell8b524902006-04-02 10:20:15 -0800458 switch (pattern) {
459 case 0:
460 /* already zeroed */
461 break;
462 case 1:
463 for (j = 0; j < size; j++)
464 *buf++ = (u8) (j % 63);
465 break;
466 }
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (vary) {
469 size += vary;
470 size %= max;
471 if (size == 0)
472 size = (vary < max) ? vary : max;
473 }
474 }
475
476 return sg;
477}
478
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200479static int perform_sglist(
David Brownell28ffd792008-04-25 18:51:10 -0700480 struct usbtest_dev *tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 unsigned iterations,
482 int pipe,
483 struct usb_sg_request *req,
484 struct scatterlist *sg,
485 int nents
486)
487{
David Brownell28ffd792008-04-25 18:51:10 -0700488 struct usb_device *udev = testdev_to_usbdev(tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 int retval = 0;
490
491 while (retval == 0 && iterations-- > 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200492 retval = usb_sg_init(req, udev, pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 (udev->speed == USB_SPEED_HIGH)
494 ? (INTERRUPT_RATE << 3)
495 : INTERRUPT_RATE,
Christoph Lametere94b1762006-12-06 20:33:17 -0800496 sg, nents, 0, GFP_KERNEL);
David Brownell28ffd792008-04-25 18:51:10 -0700497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 if (retval)
499 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200500 usb_sg_wait(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 retval = req->status;
502
David Brownell8b524902006-04-02 10:20:15 -0800503 /* FIXME check resulting data pattern */
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 /* FIXME if endpoint halted, clear halt (and log) */
506 }
507
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200508 /* FIXME for unlink or fault handling tests, don't report
509 * failure if retval is as we expected ...
510 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -0700512 ERROR(tdev, "perform_sglist failed, "
513 "iterations left %d, status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 iterations, retval);
515 return retval;
516}
517
518
519/*-------------------------------------------------------------------------*/
520
521/* unqueued control message testing
522 *
523 * there's a nice set of device functional requirements in chapter 9 of the
524 * usb 2.0 spec, which we can apply to ANY device, even ones that don't use
525 * special test firmware.
526 *
527 * we know the device is configured (or suspended) by the time it's visible
528 * through usbfs. we can't change that, so we won't test enumeration (which
529 * worked 'well enough' to get here, this time), power management (ditto),
530 * or remote wakeup (which needs human interaction).
531 */
532
533static unsigned realworld = 1;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200534module_param(realworld, uint, 0);
535MODULE_PARM_DESC(realworld, "clear to demand stricter spec compliance");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200537static int get_altsetting(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
539 struct usb_interface *iface = dev->intf;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200540 struct usb_device *udev = interface_to_usbdev(iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int retval;
542
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200543 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 USB_REQ_GET_INTERFACE, USB_DIR_IN|USB_RECIP_INTERFACE,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200545 0, iface->altsetting[0].desc.bInterfaceNumber,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 dev->buf, 1, USB_CTRL_GET_TIMEOUT);
547 switch (retval) {
548 case 1:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200549 return dev->buf[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 case 0:
551 retval = -ERANGE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200552 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 default:
554 return retval;
555 }
556}
557
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200558static int set_altsetting(struct usbtest_dev *dev, int alternate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 struct usb_interface *iface = dev->intf;
561 struct usb_device *udev;
562
563 if (alternate < 0 || alternate >= 256)
564 return -EINVAL;
565
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200566 udev = interface_to_usbdev(iface);
567 return usb_set_interface(udev,
568 iface->altsetting[0].desc.bInterfaceNumber,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 alternate);
570}
571
David Brownell28ffd792008-04-25 18:51:10 -0700572static int is_good_config(struct usbtest_dev *tdev, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
574 struct usb_config_descriptor *config;
David Brownell28ffd792008-04-25 18:51:10 -0700575
Huang Ruif55055b2013-10-21 23:15:30 +0800576 if (len < sizeof(*config))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return 0;
David Brownell28ffd792008-04-25 18:51:10 -0700578 config = (struct usb_config_descriptor *) tdev->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 switch (config->bDescriptorType) {
581 case USB_DT_CONFIG:
582 case USB_DT_OTHER_SPEED_CONFIG:
583 if (config->bLength != 9) {
David Brownell28ffd792008-04-25 18:51:10 -0700584 ERROR(tdev, "bogus config descriptor length\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return 0;
586 }
587 /* this bit 'must be 1' but often isn't */
588 if (!realworld && !(config->bmAttributes & 0x80)) {
David Brownell28ffd792008-04-25 18:51:10 -0700589 ERROR(tdev, "high bit of config attributes not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return 0;
591 }
592 if (config->bmAttributes & 0x1f) { /* reserved == 0 */
David Brownell28ffd792008-04-25 18:51:10 -0700593 ERROR(tdev, "reserved config bits set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return 0;
595 }
596 break;
597 default:
598 return 0;
599 }
600
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200601 if (le16_to_cpu(config->wTotalLength) == len) /* read it all */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return 1;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200603 if (le16_to_cpu(config->wTotalLength) >= TBUF_SIZE) /* max partial read */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return 1;
David Brownell28ffd792008-04-25 18:51:10 -0700605 ERROR(tdev, "bogus config descriptor read size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return 0;
607}
608
609/* sanity test for standard requests working with usb_control_mesg() and some
610 * of the utility functions which use it.
611 *
612 * this doesn't test how endpoint halts behave or data toggles get set, since
613 * we won't do I/O to bulk/interrupt endpoints here (which is how to change
614 * halt or toggle). toggle testing is impractical without support from hcds.
615 *
616 * this avoids failing devices linux would normally work with, by not testing
617 * config/altsetting operations for devices that only support their defaults.
618 * such devices rarely support those needless operations.
619 *
620 * NOTE that since this is a sanity test, it's not examining boundary cases
621 * to see if usbcore, hcd, and device all behave right. such testing would
622 * involve varied read sizes and other operation sequences.
623 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200624static int ch9_postconfig(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
626 struct usb_interface *iface = dev->intf;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200627 struct usb_device *udev = interface_to_usbdev(iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 int i, alt, retval;
629
630 /* [9.2.3] if there's more than one altsetting, we need to be able to
631 * set and get each one. mostly trusts the descriptors from usbcore.
632 */
633 for (i = 0; i < iface->num_altsetting; i++) {
634
635 /* 9.2.3 constrains the range here */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200636 alt = iface->altsetting[i].desc.bAlternateSetting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (alt < 0 || alt >= iface->num_altsetting) {
David Brownell28ffd792008-04-25 18:51:10 -0700638 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 "invalid alt [%d].bAltSetting = %d\n",
640 i, alt);
641 }
642
643 /* [real world] get/set unimplemented if there's only one */
644 if (realworld && iface->num_altsetting == 1)
645 continue;
646
647 /* [9.4.10] set_interface */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200648 retval = set_altsetting(dev, alt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -0700650 dev_err(&iface->dev, "can't set_interface = %d, %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 alt, retval);
652 return retval;
653 }
654
655 /* [9.4.4] get_interface always works */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200656 retval = get_altsetting(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (retval != alt) {
David Brownell28ffd792008-04-25 18:51:10 -0700658 dev_err(&iface->dev, "get alt should be %d, was %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 alt, retval);
660 return (retval < 0) ? retval : -EDOM;
661 }
662
663 }
664
665 /* [real world] get_config unimplemented if there's only one */
666 if (!realworld || udev->descriptor.bNumConfigurations != 1) {
667 int expected = udev->actconfig->desc.bConfigurationValue;
668
669 /* [9.4.2] get_configuration always works
670 * ... although some cheap devices (like one TI Hub I've got)
671 * won't return config descriptors except before set_config.
672 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200673 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 USB_REQ_GET_CONFIGURATION,
675 USB_DIR_IN | USB_RECIP_DEVICE,
676 0, 0, dev->buf, 1, USB_CTRL_GET_TIMEOUT);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200677 if (retval != 1 || dev->buf[0] != expected) {
David Brownell28ffd792008-04-25 18:51:10 -0700678 dev_err(&iface->dev, "get config --> %d %d (1 %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -0700679 retval, dev->buf[0], expected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return (retval < 0) ? retval : -EDOM;
681 }
682 }
683
684 /* there's always [9.4.3] a device descriptor [9.6.1] */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200685 retval = usb_get_descriptor(udev, USB_DT_DEVICE, 0,
Huang Ruif55055b2013-10-21 23:15:30 +0800686 dev->buf, sizeof(udev->descriptor));
687 if (retval != sizeof(udev->descriptor)) {
David Brownell28ffd792008-04-25 18:51:10 -0700688 dev_err(&iface->dev, "dev descriptor --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return (retval < 0) ? retval : -EDOM;
690 }
691
Huang Rui9d3bd762013-10-28 23:31:32 +0800692 /*
693 * there's always [9.4.3] a bos device descriptor [9.6.2] in USB
694 * 3.0 spec
695 */
696 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0300) {
697 retval = usb_get_descriptor(udev, USB_DT_BOS, 0, dev->buf,
698 sizeof(*udev->bos->desc));
699 if (retval != sizeof(*udev->bos->desc)) {
700 dev_err(&iface->dev, "bos descriptor --> %d\n", retval);
701 return (retval < 0) ? retval : -EDOM;
702 }
703 }
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 /* there's always [9.4.3] at least one config descriptor [9.6.3] */
706 for (i = 0; i < udev->descriptor.bNumConfigurations; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200707 retval = usb_get_descriptor(udev, USB_DT_CONFIG, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 dev->buf, TBUF_SIZE);
David Brownell28ffd792008-04-25 18:51:10 -0700709 if (!is_good_config(dev, retval)) {
710 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 "config [%d] descriptor --> %d\n",
712 i, retval);
713 return (retval < 0) ? retval : -EDOM;
714 }
715
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200716 /* FIXME cross-checking udev->config[i] to make sure usbcore
717 * parsed it right (etc) would be good testing paranoia
718 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 }
720
721 /* and sometimes [9.2.6.6] speed dependent descriptors */
722 if (le16_to_cpu(udev->descriptor.bcdUSB) == 0x0200) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200723 struct usb_qualifier_descriptor *d = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 /* device qualifier [9.6.2] */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200726 retval = usb_get_descriptor(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 USB_DT_DEVICE_QUALIFIER, 0, dev->buf,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200728 sizeof(struct usb_qualifier_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (retval == -EPIPE) {
730 if (udev->speed == USB_SPEED_HIGH) {
David Brownell28ffd792008-04-25 18:51:10 -0700731 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 "hs dev qualifier --> %d\n",
733 retval);
734 return (retval < 0) ? retval : -EDOM;
735 }
736 /* usb2.0 but not high-speed capable; fine */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200737 } else if (retval != sizeof(struct usb_qualifier_descriptor)) {
David Brownell28ffd792008-04-25 18:51:10 -0700738 dev_err(&iface->dev, "dev qualifier --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 return (retval < 0) ? retval : -EDOM;
740 } else
741 d = (struct usb_qualifier_descriptor *) dev->buf;
742
743 /* might not have [9.6.2] any other-speed configs [9.6.4] */
744 if (d) {
745 unsigned max = d->bNumConfigurations;
746 for (i = 0; i < max; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200747 retval = usb_get_descriptor(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 USB_DT_OTHER_SPEED_CONFIG, i,
749 dev->buf, TBUF_SIZE);
David Brownell28ffd792008-04-25 18:51:10 -0700750 if (!is_good_config(dev, retval)) {
751 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 "other speed config --> %d\n",
753 retval);
754 return (retval < 0) ? retval : -EDOM;
755 }
756 }
757 }
758 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200759 /* FIXME fetch strings from at least the device descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 /* [9.4.5] get_status always works */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200762 retval = usb_get_status(udev, USB_RECIP_DEVICE, 0, dev->buf);
Alan Stern15b73362013-07-30 15:35:40 -0400763 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -0700764 dev_err(&iface->dev, "get dev status --> %d\n", retval);
Alan Stern15b73362013-07-30 15:35:40 -0400765 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200768 /* FIXME configuration.bmAttributes says if we could try to set/clear
769 * the device's remote wakeup feature ... if we can, test that here
770 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200772 retval = usb_get_status(udev, USB_RECIP_INTERFACE,
773 iface->altsetting[0].desc.bInterfaceNumber, dev->buf);
Alan Stern15b73362013-07-30 15:35:40 -0400774 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -0700775 dev_err(&iface->dev, "get interface status --> %d\n", retval);
Alan Stern15b73362013-07-30 15:35:40 -0400776 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200778 /* FIXME get status for each endpoint in the interface */
David Brownell28ffd792008-04-25 18:51:10 -0700779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return 0;
781}
782
783/*-------------------------------------------------------------------------*/
784
785/* use ch9 requests to test whether:
786 * (a) queues work for control, keeping N subtests queued and
787 * active (auto-resubmit) for M loops through the queue.
788 * (b) protocol stalls (control-only) will autorecover.
789 * it's not like bulk/intr; no halt clearing.
790 * (c) short control reads are reported and handled.
791 * (d) queues are always processed in-order
792 */
793
794struct ctrl_ctx {
795 spinlock_t lock;
796 struct usbtest_dev *dev;
797 struct completion complete;
798 unsigned count;
799 unsigned pending;
800 int status;
801 struct urb **urb;
802 struct usbtest_param *param;
803 int last;
804};
805
806#define NUM_SUBCASES 15 /* how many test subcases here? */
807
808struct subcase {
809 struct usb_ctrlrequest setup;
810 int number;
811 int expected;
812};
813
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200814static void ctrl_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 struct ctrl_ctx *ctx = urb->context;
817 struct usb_ctrlrequest *reqp;
818 struct subcase *subcase;
819 int status = urb->status;
820
821 reqp = (struct usb_ctrlrequest *)urb->setup_packet;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200822 subcase = container_of(reqp, struct subcase, setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200824 spin_lock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 ctx->count--;
826 ctx->pending--;
827
828 /* queue must transfer and complete in fifo order, unless
829 * usb_unlink_urb() is used to unlink something not at the
830 * physical queue head (not tested).
831 */
832 if (subcase->number > 0) {
833 if ((subcase->number - ctx->last) != 1) {
David Brownell28ffd792008-04-25 18:51:10 -0700834 ERROR(ctx->dev,
835 "subcase %d completed out of order, last %d\n",
836 subcase->number, ctx->last);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 status = -EDOM;
838 ctx->last = subcase->number;
839 goto error;
840 }
841 }
842 ctx->last = subcase->number;
843
844 /* succeed or fault in only one way? */
845 if (status == subcase->expected)
846 status = 0;
847
848 /* async unlink for cleanup? */
849 else if (status != -ECONNRESET) {
850
851 /* some faults are allowed, not required */
852 if (subcase->expected > 0 && (
Greg Kroah-Hartman59d99782007-07-18 10:58:02 -0700853 ((status == -subcase->expected /* happened */
854 || status == 0)))) /* didn't */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 status = 0;
856 /* sometimes more than one fault is allowed */
857 else if (subcase->number == 12 && status == -EPIPE)
858 status = 0;
859 else
David Brownell28ffd792008-04-25 18:51:10 -0700860 ERROR(ctx->dev, "subtest %d error, status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 subcase->number, status);
862 }
863
864 /* unexpected status codes mean errors; ideally, in hardware */
865 if (status) {
866error:
867 if (ctx->status == 0) {
868 int i;
869
870 ctx->status = status;
David Brownell28ffd792008-04-25 18:51:10 -0700871 ERROR(ctx->dev, "control queue %02x.%02x, err %d, "
872 "%d left, subcase %d, len %d/%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 reqp->bRequestType, reqp->bRequest,
David Brownell28ffd792008-04-25 18:51:10 -0700874 status, ctx->count, subcase->number,
875 urb->actual_length,
876 urb->transfer_buffer_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 /* FIXME this "unlink everything" exit route should
879 * be a separate test case.
880 */
881
882 /* unlink whatever's still pending */
883 for (i = 1; i < ctx->param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200884 struct urb *u = ctx->urb[
885 (i + subcase->number)
886 % ctx->param->sglen];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 if (u == urb || !u->dev)
889 continue;
Franck Bui-Huucaa2a122006-05-15 19:23:53 +0200890 spin_unlock(&ctx->lock);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200891 status = usb_unlink_urb(u);
Franck Bui-Huucaa2a122006-05-15 19:23:53 +0200892 spin_lock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 switch (status) {
894 case -EINPROGRESS:
895 case -EBUSY:
896 case -EIDRM:
897 continue;
898 default:
David Brownell28ffd792008-04-25 18:51:10 -0700899 ERROR(ctx->dev, "urb unlink --> %d\n",
900 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902 }
903 status = ctx->status;
904 }
905 }
906
907 /* resubmit if we need to, else mark this as done */
908 if ((status == 0) && (ctx->pending < ctx->count)) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200909 status = usb_submit_urb(urb, GFP_ATOMIC);
910 if (status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -0700911 ERROR(ctx->dev,
912 "can't resubmit ctrl %02x.%02x, err %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 reqp->bRequestType, reqp->bRequest, status);
914 urb->dev = NULL;
915 } else
916 ctx->pending++;
917 } else
918 urb->dev = NULL;
David Brownell28ffd792008-04-25 18:51:10 -0700919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 /* signal completion when nothing's queued */
921 if (ctx->pending == 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200922 complete(&ctx->complete);
923 spin_unlock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924}
925
926static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200927test_ctrl_queue(struct usbtest_dev *dev, struct usbtest_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200929 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 struct urb **urb;
931 struct ctrl_ctx context;
932 int i;
933
Xi Wange65cdfa2012-04-09 15:48:55 -0400934 if (param->sglen == 0 || param->iterations > UINT_MAX / param->sglen)
935 return -EOPNOTSUPP;
936
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200937 spin_lock_init(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 context.dev = dev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200939 init_completion(&context.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 context.count = param->sglen * param->iterations;
941 context.pending = 0;
942 context.status = -ENOMEM;
943 context.param = param;
944 context.last = -1;
945
946 /* allocate and init the urbs we'll queue.
947 * as with bulk/intr sglists, sglen is the queue depth; it also
948 * controls which subtests run (more tests than sglen) or rerun.
949 */
Christoph Lametere94b1762006-12-06 20:33:17 -0800950 urb = kcalloc(param->sglen, sizeof(struct urb *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if (!urb)
952 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200954 int pipe = usb_rcvctrlpipe(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 unsigned len;
956 struct urb *u;
957 struct usb_ctrlrequest req;
958 struct subcase *reqp;
Marcin Slusarz6def7552008-05-12 20:17:25 +0200959
960 /* sign of this variable means:
961 * -: tested code must return this (negative) error code
962 * +: tested code may return this (negative too) error code
963 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 int expected = 0;
965
966 /* requests here are mostly expected to succeed on any
967 * device, but some are chosen to trigger protocol stalls
968 * or short reads.
969 */
Huang Ruif55055b2013-10-21 23:15:30 +0800970 memset(&req, 0, sizeof(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 req.bRequest = USB_REQ_GET_DESCRIPTOR;
972 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
973
974 switch (i % NUM_SUBCASES) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200975 case 0: /* get device descriptor */
976 req.wValue = cpu_to_le16(USB_DT_DEVICE << 8);
977 len = sizeof(struct usb_device_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200979 case 1: /* get first config descriptor (only) */
980 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
981 len = sizeof(struct usb_config_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200983 case 2: /* get altsetting (OFTEN STALLS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 req.bRequest = USB_REQ_GET_INTERFACE;
985 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200986 /* index = 0 means first interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 len = 1;
988 expected = EPIPE;
989 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200990 case 3: /* get interface status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 req.bRequest = USB_REQ_GET_STATUS;
992 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200993 /* interface 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 len = 2;
995 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200996 case 4: /* get device status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 req.bRequest = USB_REQ_GET_STATUS;
998 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
999 len = 2;
1000 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001001 case 5: /* get device qualifier (MAY STALL) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 req.wValue = cpu_to_le16 (USB_DT_DEVICE_QUALIFIER << 8);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001003 len = sizeof(struct usb_qualifier_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 if (udev->speed != USB_SPEED_HIGH)
1005 expected = EPIPE;
1006 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001007 case 6: /* get first config descriptor, plus interface */
1008 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1009 len = sizeof(struct usb_config_descriptor);
1010 len += sizeof(struct usb_interface_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001012 case 7: /* get interface descriptor (ALWAYS STALLS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 req.wValue = cpu_to_le16 (USB_DT_INTERFACE << 8);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001014 /* interface == 0 */
1015 len = sizeof(struct usb_interface_descriptor);
David Brownell28ffd792008-04-25 18:51:10 -07001016 expected = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001018 /* NOTE: two consecutive stalls in the queue here.
1019 * that tests fault recovery a bit more aggressively. */
1020 case 8: /* clear endpoint halt (MAY STALL) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 req.bRequest = USB_REQ_CLEAR_FEATURE;
1022 req.bRequestType = USB_RECIP_ENDPOINT;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001023 /* wValue 0 == ep halt */
1024 /* wIndex 0 == ep0 (shouldn't halt!) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 len = 0;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001026 pipe = usb_sndctrlpipe(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 expected = EPIPE;
1028 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001029 case 9: /* get endpoint status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 req.bRequest = USB_REQ_GET_STATUS;
1031 req.bRequestType = USB_DIR_IN|USB_RECIP_ENDPOINT;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001032 /* endpoint 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 len = 2;
1034 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001035 case 10: /* trigger short read (EREMOTEIO) */
1036 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 len = 1024;
1038 expected = -EREMOTEIO;
1039 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001040 /* NOTE: two consecutive _different_ faults in the queue. */
1041 case 11: /* get endpoint descriptor (ALWAYS STALLS) */
1042 req.wValue = cpu_to_le16(USB_DT_ENDPOINT << 8);
1043 /* endpoint == 0 */
1044 len = sizeof(struct usb_interface_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 expected = EPIPE;
1046 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001047 /* NOTE: sometimes even a third fault in the queue! */
1048 case 12: /* get string 0 descriptor (MAY STALL) */
1049 req.wValue = cpu_to_le16(USB_DT_STRING << 8);
1050 /* string == 0, for language IDs */
1051 len = sizeof(struct usb_interface_descriptor);
1052 /* may succeed when > 4 languages */
1053 expected = EREMOTEIO; /* or EPIPE, if no strings */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001055 case 13: /* short read, resembling case 10 */
1056 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1057 /* last data packet "should" be DATA1, not DATA0 */
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001058 if (udev->speed == USB_SPEED_SUPER)
1059 len = 1024 - 512;
1060 else
1061 len = 1024 - udev->descriptor.bMaxPacketSize0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 expected = -EREMOTEIO;
1063 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001064 case 14: /* short read; try to fill the last packet */
1065 req.wValue = cpu_to_le16((USB_DT_DEVICE << 8) | 0);
David Brownell28ffd792008-04-25 18:51:10 -07001066 /* device descriptor size == 18 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 len = udev->descriptor.bMaxPacketSize0;
Sebastian Andrzej Siewior67e7d642011-04-14 16:17:21 +02001068 if (udev->speed == USB_SPEED_SUPER)
1069 len = 512;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 switch (len) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001071 case 8:
1072 len = 24;
1073 break;
1074 case 16:
1075 len = 32;
1076 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
1078 expected = -EREMOTEIO;
1079 break;
1080 default:
David Brownell28ffd792008-04-25 18:51:10 -07001081 ERROR(dev, "bogus number of ctrl queue testcases!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 context.status = -EINVAL;
1083 goto cleanup;
1084 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001085 req.wLength = cpu_to_le16(len);
1086 urb[i] = u = simple_alloc_urb(udev, pipe, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 if (!u)
1088 goto cleanup;
1089
Huang Ruif55055b2013-10-21 23:15:30 +08001090 reqp = kmalloc(sizeof(*reqp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (!reqp)
1092 goto cleanup;
1093 reqp->setup = req;
1094 reqp->number = i % NUM_SUBCASES;
1095 reqp->expected = expected;
1096 u->setup_packet = (char *) &reqp->setup;
1097
1098 u->context = &context;
1099 u->complete = ctrl_complete;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101
1102 /* queue the urbs */
1103 context.urb = urb;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001104 spin_lock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001106 context.status = usb_submit_urb(urb[i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (context.status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001108 ERROR(dev, "can't submit urb[%d], status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 i, context.status);
1110 context.count = context.pending;
1111 break;
1112 }
1113 context.pending++;
1114 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001115 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 /* FIXME set timer and time out; provide a disconnect hook */
1118
1119 /* wait for the last one to complete */
1120 if (context.pending > 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001121 wait_for_completion(&context.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123cleanup:
1124 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001125 if (!urb[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 continue;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001127 urb[i]->dev = udev;
Alan Stern0ede76f2010-03-05 15:10:17 -05001128 kfree(urb[i]->setup_packet);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001129 simple_free_urb(urb[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001131 kfree(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return context.status;
1133}
1134#undef NUM_SUBCASES
1135
1136
1137/*-------------------------------------------------------------------------*/
1138
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001139static void unlink1_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
1141 int status = urb->status;
1142
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001143 /* we "know" -EPIPE (stall) never happens */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 if (!status)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001145 status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (status) {
1147 urb->status = status;
Ming Leicdc97792008-02-24 18:41:47 +08001148 complete(urb->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
1150}
1151
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001152static int unlink1(struct usbtest_dev *dev, int pipe, int size, int async)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
1154 struct urb *urb;
1155 struct completion completion;
1156 int retval = 0;
1157
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001158 init_completion(&completion);
1159 urb = simple_alloc_urb(testdev_to_usbdev(dev), pipe, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 if (!urb)
1161 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 urb->context = &completion;
1163 urb->complete = unlink1_callback;
1164
1165 /* keep the endpoint busy. there are lots of hc/hcd-internal
1166 * states, and testing should get to all of them over time.
1167 *
1168 * FIXME want additional tests for when endpoint is STALLing
1169 * due to errors, or is just NAKing requests.
1170 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001171 retval = usb_submit_urb(urb, GFP_KERNEL);
1172 if (retval != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001173 dev_err(&dev->intf->dev, "submit fail %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return retval;
1175 }
1176
1177 /* unlinking that should always work. variable delay tests more
1178 * hcd states and code paths, even with little other system load.
1179 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001180 msleep(jiffies % (2 * INTERRUPT_RATE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (async) {
Martin Fuzzey3b6c0232009-06-04 23:20:38 +02001182 while (!completion_done(&completion)) {
1183 retval = usb_unlink_urb(urb);
1184
1185 switch (retval) {
1186 case -EBUSY:
1187 case -EIDRM:
1188 /* we can't unlink urbs while they're completing
1189 * or if they've completed, and we haven't
1190 * resubmitted. "normal" drivers would prevent
1191 * resubmission, but since we're testing unlink
1192 * paths, we can't.
1193 */
1194 ERROR(dev, "unlink retry\n");
1195 continue;
1196 case 0:
1197 case -EINPROGRESS:
1198 break;
1199
1200 default:
1201 dev_err(&dev->intf->dev,
1202 "unlink fail %d\n", retval);
1203 return retval;
1204 }
1205
1206 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
1208 } else
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001209 usb_kill_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001211 wait_for_completion(&completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 retval = urb->status;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001213 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 if (async)
1216 return (retval == -ECONNRESET) ? 0 : retval - 1000;
1217 else
1218 return (retval == -ENOENT || retval == -EPERM) ?
1219 0 : retval - 2000;
1220}
1221
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001222static int unlink_simple(struct usbtest_dev *dev, int pipe, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223{
1224 int retval = 0;
1225
1226 /* test sync and async paths */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001227 retval = unlink1(dev, pipe, len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (!retval)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001229 retval = unlink1(dev, pipe, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return retval;
1231}
1232
1233/*-------------------------------------------------------------------------*/
1234
Alan Stern869410f2011-04-14 11:21:04 -04001235struct queued_ctx {
1236 struct completion complete;
1237 atomic_t pending;
1238 unsigned num;
1239 int status;
1240 struct urb **urbs;
1241};
1242
1243static void unlink_queued_callback(struct urb *urb)
1244{
1245 int status = urb->status;
1246 struct queued_ctx *ctx = urb->context;
1247
1248 if (ctx->status)
1249 goto done;
1250 if (urb == ctx->urbs[ctx->num - 4] || urb == ctx->urbs[ctx->num - 2]) {
1251 if (status == -ECONNRESET)
1252 goto done;
1253 /* What error should we report if the URB completed normally? */
1254 }
1255 if (status != 0)
1256 ctx->status = status;
1257
1258 done:
1259 if (atomic_dec_and_test(&ctx->pending))
1260 complete(&ctx->complete);
1261}
1262
1263static int unlink_queued(struct usbtest_dev *dev, int pipe, unsigned num,
1264 unsigned size)
1265{
1266 struct queued_ctx ctx;
1267 struct usb_device *udev = testdev_to_usbdev(dev);
1268 void *buf;
1269 dma_addr_t buf_dma;
1270 int i;
1271 int retval = -ENOMEM;
1272
1273 init_completion(&ctx.complete);
1274 atomic_set(&ctx.pending, 1); /* One more than the actual value */
1275 ctx.num = num;
1276 ctx.status = 0;
1277
1278 buf = usb_alloc_coherent(udev, size, GFP_KERNEL, &buf_dma);
1279 if (!buf)
1280 return retval;
1281 memset(buf, 0, size);
1282
1283 /* Allocate and init the urbs we'll queue */
1284 ctx.urbs = kcalloc(num, sizeof(struct urb *), GFP_KERNEL);
1285 if (!ctx.urbs)
1286 goto free_buf;
1287 for (i = 0; i < num; i++) {
1288 ctx.urbs[i] = usb_alloc_urb(0, GFP_KERNEL);
1289 if (!ctx.urbs[i])
1290 goto free_urbs;
1291 usb_fill_bulk_urb(ctx.urbs[i], udev, pipe, buf, size,
1292 unlink_queued_callback, &ctx);
1293 ctx.urbs[i]->transfer_dma = buf_dma;
1294 ctx.urbs[i]->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
1295 }
1296
1297 /* Submit all the URBs and then unlink URBs num - 4 and num - 2. */
1298 for (i = 0; i < num; i++) {
1299 atomic_inc(&ctx.pending);
1300 retval = usb_submit_urb(ctx.urbs[i], GFP_KERNEL);
1301 if (retval != 0) {
1302 dev_err(&dev->intf->dev, "submit urbs[%d] fail %d\n",
1303 i, retval);
1304 atomic_dec(&ctx.pending);
1305 ctx.status = retval;
1306 break;
1307 }
1308 }
1309 if (i == num) {
1310 usb_unlink_urb(ctx.urbs[num - 4]);
1311 usb_unlink_urb(ctx.urbs[num - 2]);
1312 } else {
1313 while (--i >= 0)
1314 usb_unlink_urb(ctx.urbs[i]);
1315 }
1316
1317 if (atomic_dec_and_test(&ctx.pending)) /* The extra count */
1318 complete(&ctx.complete);
1319 wait_for_completion(&ctx.complete);
1320 retval = ctx.status;
1321
1322 free_urbs:
1323 for (i = 0; i < num; i++)
1324 usb_free_urb(ctx.urbs[i]);
1325 kfree(ctx.urbs);
1326 free_buf:
1327 usb_free_coherent(udev, size, buf, buf_dma);
1328 return retval;
1329}
1330
1331/*-------------------------------------------------------------------------*/
1332
David Brownell28ffd792008-04-25 18:51:10 -07001333static int verify_not_halted(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
1335 int retval;
1336 u16 status;
1337
1338 /* shouldn't look or act halted */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001339 retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001341 ERROR(tdev, "ep %02x couldn't get no-halt status, %d\n",
1342 ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 return retval;
1344 }
1345 if (status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001346 ERROR(tdev, "ep %02x bogus status: %04x != 0\n", ep, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 return -EINVAL;
1348 }
David Brownell28ffd792008-04-25 18:51:10 -07001349 retval = simple_io(tdev, urb, 1, 0, 0, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 if (retval != 0)
1351 return -EINVAL;
1352 return 0;
1353}
1354
David Brownell28ffd792008-04-25 18:51:10 -07001355static int verify_halted(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
1357 int retval;
1358 u16 status;
1359
1360 /* should look and act halted */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001361 retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001363 ERROR(tdev, "ep %02x couldn't get halt status, %d\n",
1364 ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 return retval;
1366 }
1367 if (status != 1) {
David Brownell28ffd792008-04-25 18:51:10 -07001368 ERROR(tdev, "ep %02x bogus status: %04x != 1\n", ep, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 return -EINVAL;
1370 }
David Brownell28ffd792008-04-25 18:51:10 -07001371 retval = simple_io(tdev, urb, 1, 0, -EPIPE, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (retval != -EPIPE)
1373 return -EINVAL;
David Brownell28ffd792008-04-25 18:51:10 -07001374 retval = simple_io(tdev, urb, 1, 0, -EPIPE, "verify_still_halted");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 if (retval != -EPIPE)
1376 return -EINVAL;
1377 return 0;
1378}
1379
David Brownell28ffd792008-04-25 18:51:10 -07001380static int test_halt(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
1382 int retval;
1383
1384 /* shouldn't look or act halted now */
David Brownell28ffd792008-04-25 18:51:10 -07001385 retval = verify_not_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 if (retval < 0)
1387 return retval;
1388
1389 /* set halt (protocol test only), verify it worked */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001390 retval = usb_control_msg(urb->dev, usb_sndctrlpipe(urb->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 USB_REQ_SET_FEATURE, USB_RECIP_ENDPOINT,
1392 USB_ENDPOINT_HALT, ep,
1393 NULL, 0, USB_CTRL_SET_TIMEOUT);
1394 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001395 ERROR(tdev, "ep %02x couldn't set halt, %d\n", ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 return retval;
1397 }
David Brownell28ffd792008-04-25 18:51:10 -07001398 retval = verify_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 if (retval < 0)
1400 return retval;
1401
1402 /* clear halt (tests API + protocol), verify it worked */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001403 retval = usb_clear_halt(urb->dev, urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001405 ERROR(tdev, "ep %02x couldn't clear halt, %d\n", ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return retval;
1407 }
David Brownell28ffd792008-04-25 18:51:10 -07001408 retval = verify_not_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 if (retval < 0)
1410 return retval;
1411
1412 /* NOTE: could also verify SET_INTERFACE clear halts ... */
1413
1414 return 0;
1415}
1416
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001417static int halt_simple(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001419 int ep;
1420 int retval = 0;
1421 struct urb *urb;
1422 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001424 if (udev->speed == USB_SPEED_SUPER)
1425 urb = simple_alloc_urb(udev, 0, 1024);
1426 else
1427 urb = simple_alloc_urb(udev, 0, 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 if (urb == NULL)
1429 return -ENOMEM;
1430
1431 if (dev->in_pipe) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001432 ep = usb_pipeendpoint(dev->in_pipe) | USB_DIR_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 urb->pipe = dev->in_pipe;
David Brownell28ffd792008-04-25 18:51:10 -07001434 retval = test_halt(dev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (retval < 0)
1436 goto done;
1437 }
1438
1439 if (dev->out_pipe) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001440 ep = usb_pipeendpoint(dev->out_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 urb->pipe = dev->out_pipe;
David Brownell28ffd792008-04-25 18:51:10 -07001442 retval = test_halt(dev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 }
1444done:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001445 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 return retval;
1447}
1448
1449/*-------------------------------------------------------------------------*/
1450
1451/* Control OUT tests use the vendor control requests from Intel's
1452 * USB 2.0 compliance test device: write a buffer, read it back.
1453 *
1454 * Intel's spec only _requires_ that it work for one packet, which
1455 * is pretty weak. Some HCDs place limits here; most devices will
1456 * need to be able to handle more than one OUT data packet. We'll
1457 * try whatever we're told to try.
1458 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001459static int ctrl_out(struct usbtest_dev *dev,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001460 unsigned count, unsigned length, unsigned vary, unsigned offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
Orjan Fribergf54fa842006-08-08 23:31:40 -07001462 unsigned i, j, len;
1463 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 u8 *buf;
1465 char *what = "?";
1466 struct usb_device *udev;
Orjan Fribergf54fa842006-08-08 23:31:40 -07001467
David Brownellff7c79e2005-04-22 13:17:00 -07001468 if (length < 1 || length > 0xffff || vary >= length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return -EINVAL;
1470
Martin Fuzzey084fb202011-01-16 19:17:11 +01001471 buf = kmalloc(length + offset, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 if (!buf)
1473 return -ENOMEM;
1474
Martin Fuzzey084fb202011-01-16 19:17:11 +01001475 buf += offset;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001476 udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 len = length;
1478 retval = 0;
1479
1480 /* NOTE: hardware might well act differently if we pushed it
1481 * with lots back-to-back queued requests.
1482 */
1483 for (i = 0; i < count; i++) {
1484 /* write patterned data */
1485 for (j = 0; j < len; j++)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001486 buf[j] = i + j;
1487 retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 0x5b, USB_DIR_OUT|USB_TYPE_VENDOR,
1489 0, 0, buf, len, USB_CTRL_SET_TIMEOUT);
1490 if (retval != len) {
1491 what = "write";
David Brownellff7c79e2005-04-22 13:17:00 -07001492 if (retval >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001493 ERROR(dev, "ctrl_out, wlen %d (expected %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -07001494 retval, len);
1495 retval = -EBADMSG;
1496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 break;
1498 }
1499
1500 /* read it back -- assuming nothing intervened!! */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001501 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 0x5c, USB_DIR_IN|USB_TYPE_VENDOR,
1503 0, 0, buf, len, USB_CTRL_GET_TIMEOUT);
1504 if (retval != len) {
1505 what = "read";
David Brownellff7c79e2005-04-22 13:17:00 -07001506 if (retval >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001507 ERROR(dev, "ctrl_out, rlen %d (expected %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -07001508 retval, len);
1509 retval = -EBADMSG;
1510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 break;
1512 }
1513
1514 /* fail if we can't verify */
1515 for (j = 0; j < len; j++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001516 if (buf[j] != (u8) (i + j)) {
David Brownell28ffd792008-04-25 18:51:10 -07001517 ERROR(dev, "ctrl_out, byte %d is %d not %d\n",
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001518 j, buf[j], (u8) i + j);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 retval = -EBADMSG;
1520 break;
1521 }
1522 }
1523 if (retval < 0) {
1524 what = "verify";
1525 break;
1526 }
1527
1528 len += vary;
David Brownellff7c79e2005-04-22 13:17:00 -07001529
1530 /* [real world] the "zero bytes IN" case isn't really used.
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001531 * hardware can easily trip up in this weird case, since its
David Brownellff7c79e2005-04-22 13:17:00 -07001532 * status stage is IN, not OUT like other ep0in transfers.
1533 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 if (len > length)
David Brownellff7c79e2005-04-22 13:17:00 -07001535 len = realworld ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 }
1537
1538 if (retval < 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001539 ERROR(dev, "ctrl_out %s failed, code %d, count %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 what, retval, i);
1541
Martin Fuzzey084fb202011-01-16 19:17:11 +01001542 kfree(buf - offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 return retval;
1544}
1545
1546/*-------------------------------------------------------------------------*/
1547
1548/* ISO tests ... mimics common usage
1549 * - buffer length is split into N packets (mostly maxpacket sized)
1550 * - multi-buffers according to sglen
1551 */
1552
1553struct iso_context {
1554 unsigned count;
1555 unsigned pending;
1556 spinlock_t lock;
1557 struct completion done;
Alan Stern9da21502006-05-22 16:47:13 -04001558 int submit_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 unsigned long errors;
Alan Stern9da21502006-05-22 16:47:13 -04001560 unsigned long packet_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 struct usbtest_dev *dev;
1562};
1563
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001564static void iso_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
1566 struct iso_context *ctx = urb->context;
1567
1568 spin_lock(&ctx->lock);
1569 ctx->count--;
1570
Alan Stern9da21502006-05-22 16:47:13 -04001571 ctx->packet_count += urb->number_of_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 if (urb->error_count > 0)
1573 ctx->errors += urb->error_count;
Alan Stern9da21502006-05-22 16:47:13 -04001574 else if (urb->status != 0)
1575 ctx->errors += urb->number_of_packets;
Martin Fuzzey40aed522010-10-01 00:20:48 +02001576 else if (urb->actual_length != urb->transfer_buffer_length)
1577 ctx->errors++;
Martin Fuzzey084fb202011-01-16 19:17:11 +01001578 else if (check_guard_bytes(ctx->dev, urb) != 0)
1579 ctx->errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Alan Stern9da21502006-05-22 16:47:13 -04001581 if (urb->status == 0 && ctx->count > (ctx->pending - 1)
1582 && !ctx->submit_error) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001583 int status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 switch (status) {
1585 case 0:
1586 goto done;
1587 default:
David Brownell28ffd792008-04-25 18:51:10 -07001588 dev_err(&ctx->dev->intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 "iso resubmit err %d\n",
1590 status);
1591 /* FALLTHROUGH */
1592 case -ENODEV: /* disconnected */
Alan Stern9da21502006-05-22 16:47:13 -04001593 case -ESHUTDOWN: /* endpoint disabled */
1594 ctx->submit_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 break;
1596 }
1597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 ctx->pending--;
1600 if (ctx->pending == 0) {
1601 if (ctx->errors)
David Brownell28ffd792008-04-25 18:51:10 -07001602 dev_err(&ctx->dev->intf->dev,
Alan Stern9da21502006-05-22 16:47:13 -04001603 "iso test, %lu errors out of %lu\n",
1604 ctx->errors, ctx->packet_count);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001605 complete(&ctx->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 }
1607done:
1608 spin_unlock(&ctx->lock);
1609}
1610
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001611static struct urb *iso_alloc_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 struct usb_device *udev,
1613 int pipe,
1614 struct usb_endpoint_descriptor *desc,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001615 long bytes,
1616 unsigned offset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617)
1618{
1619 struct urb *urb;
1620 unsigned i, maxp, packets;
1621
1622 if (bytes < 0 || !desc)
1623 return NULL;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001624 maxp = 0x7ff & usb_endpoint_maxp(desc);
1625 maxp *= 1 + (0x3 & (usb_endpoint_maxp(desc) >> 11));
Julia Lawalldfa5ec72008-03-04 15:25:11 -08001626 packets = DIV_ROUND_UP(bytes, maxp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001628 urb = usb_alloc_urb(packets, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 if (!urb)
1630 return urb;
1631 urb->dev = udev;
1632 urb->pipe = pipe;
1633
1634 urb->number_of_packets = packets;
1635 urb->transfer_buffer_length = bytes;
Martin Fuzzey084fb202011-01-16 19:17:11 +01001636 urb->transfer_buffer = usb_alloc_coherent(udev, bytes + offset,
1637 GFP_KERNEL,
1638 &urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (!urb->transfer_buffer) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001640 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 return NULL;
1642 }
Martin Fuzzey084fb202011-01-16 19:17:11 +01001643 if (offset) {
1644 memset(urb->transfer_buffer, GUARD_BYTE, offset);
1645 urb->transfer_buffer += offset;
1646 urb->transfer_dma += offset;
1647 }
1648 /* For inbound transfers use guard byte so that test fails if
1649 data not correctly copied */
1650 memset(urb->transfer_buffer,
1651 usb_pipein(urb->pipe) ? GUARD_BYTE : 0,
1652 bytes);
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 for (i = 0; i < packets; i++) {
1655 /* here, only the last packet will be short */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001656 urb->iso_frame_desc[i].length = min((unsigned) bytes, maxp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 bytes -= urb->iso_frame_desc[i].length;
1658
1659 urb->iso_frame_desc[i].offset = maxp * i;
1660 }
1661
1662 urb->complete = iso_callback;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001663 /* urb->context = SET BY CALLER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 urb->interval = 1 << (desc->bInterval - 1);
1665 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
1666 return urb;
1667}
1668
1669static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001670test_iso_queue(struct usbtest_dev *dev, struct usbtest_param *param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001671 int pipe, struct usb_endpoint_descriptor *desc, unsigned offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
1673 struct iso_context context;
1674 struct usb_device *udev;
1675 unsigned i;
1676 unsigned long packets = 0;
Alan Stern9da21502006-05-22 16:47:13 -04001677 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 struct urb *urbs[10]; /* FIXME no limit */
1679
1680 if (param->sglen > 10)
1681 return -EDOM;
1682
Huang Ruif55055b2013-10-21 23:15:30 +08001683 memset(&context, 0, sizeof(context));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 context.count = param->iterations * param->sglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 context.dev = dev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001686 init_completion(&context.done);
1687 spin_lock_init(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Huang Ruif55055b2013-10-21 23:15:30 +08001689 memset(urbs, 0, sizeof(urbs));
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001690 udev = testdev_to_usbdev(dev);
David Brownell28ffd792008-04-25 18:51:10 -07001691 dev_info(&dev->intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 "... iso period %d %sframes, wMaxPacket %04x\n",
1693 1 << (desc->bInterval - 1),
1694 (udev->speed == USB_SPEED_HIGH) ? "micro" : "",
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001695 usb_endpoint_maxp(desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001698 urbs[i] = iso_alloc_urb(udev, pipe, desc,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001699 param->length, offset);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001700 if (!urbs[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 status = -ENOMEM;
1702 goto fail;
1703 }
1704 packets += urbs[i]->number_of_packets;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001705 urbs[i]->context = &context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
1707 packets *= param->iterations;
David Brownell28ffd792008-04-25 18:51:10 -07001708 dev_info(&dev->intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 "... total %lu msec (%lu packets)\n",
1710 (packets * (1 << (desc->bInterval - 1)))
1711 / ((udev->speed == USB_SPEED_HIGH) ? 8 : 1),
1712 packets);
1713
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001714 spin_lock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 for (i = 0; i < param->sglen; i++) {
Alan Stern9da21502006-05-22 16:47:13 -04001716 ++context.pending;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001717 status = usb_submit_urb(urbs[i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 if (status < 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001719 ERROR(dev, "submit iso[%d], error %d\n", i, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 if (i == 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001721 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 goto fail;
1723 }
1724
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001725 simple_free_urb(urbs[i]);
Ming Leie10e1be2010-08-02 22:09:01 +08001726 urbs[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 context.pending--;
Alan Stern9da21502006-05-22 16:47:13 -04001728 context.submit_error = 1;
1729 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 }
1731 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001732 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001734 wait_for_completion(&context.done);
Alan Stern9da21502006-05-22 16:47:13 -04001735
Ming Leie10e1be2010-08-02 22:09:01 +08001736 for (i = 0; i < param->sglen; i++) {
1737 if (urbs[i])
1738 simple_free_urb(urbs[i]);
1739 }
Alan Stern9da21502006-05-22 16:47:13 -04001740 /*
1741 * Isochronous transfers are expected to fail sometimes. As an
1742 * arbitrary limit, we will report an error if any submissions
1743 * fail or if the transfer failure rate is > 10%.
1744 */
1745 if (status != 0)
1746 ;
1747 else if (context.submit_error)
1748 status = -EACCES;
1749 else if (context.errors > context.packet_count / 10)
1750 status = -EIO;
1751 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753fail:
1754 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001755 if (urbs[i])
1756 simple_free_urb(urbs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 }
1758 return status;
1759}
1760
Martin Fuzzey084fb202011-01-16 19:17:11 +01001761static int test_unaligned_bulk(
1762 struct usbtest_dev *tdev,
1763 int pipe,
1764 unsigned length,
1765 int iterations,
1766 unsigned transfer_flags,
1767 const char *label)
1768{
1769 int retval;
1770 struct urb *urb = usbtest_alloc_urb(
1771 testdev_to_usbdev(tdev), pipe, length, transfer_flags, 1);
1772
1773 if (!urb)
1774 return -ENOMEM;
1775
1776 retval = simple_io(tdev, urb, iterations, 0, 0, label);
1777 simple_free_urb(urb);
1778 return retval;
1779}
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781/*-------------------------------------------------------------------------*/
1782
1783/* We only have this one interface to user space, through usbfs.
1784 * User mode code can scan usbfs to find N different devices (maybe on
1785 * different busses) to use when testing, and allocate one thread per
1786 * test. So discovery is simplified, and we have no device naming issues.
1787 *
1788 * Don't use these only as stress/load tests. Use them along with with
1789 * other USB bus activity: plugging, unplugging, mousing, mp3 playback,
1790 * video capture, and so on. Run different tests at different times, in
1791 * different sequences. Nothing here should interact with other devices,
1792 * except indirectly by consuming USB bandwidth and CPU resources for test
1793 * threads and request completion. But the only way to know that for sure
1794 * is to test when HC queues are in use by many devices.
David Brownell28ffd792008-04-25 18:51:10 -07001795 *
1796 * WARNING: Because usbfs grabs udev->dev.sem before calling this ioctl(),
1797 * it locks out usbcore in certain code paths. Notably, if you disconnect
1798 * the device-under-test, khubd will wait block forever waiting for the
1799 * ioctl to complete ... so that usb_disconnect() can abort the pending
1800 * urbs and then call usbtest_disconnect(). To abort a test, you're best
1801 * off just killing the userspace task and waiting for it to exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 */
1803
1804static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001805usbtest_ioctl(struct usb_interface *intf, unsigned int code, void *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001807 struct usbtest_dev *dev = usb_get_intfdata(intf);
1808 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 struct usbtest_param *param = buf;
1810 int retval = -EOPNOTSUPP;
1811 struct urb *urb;
1812 struct scatterlist *sg;
1813 struct usb_sg_request req;
1814 struct timeval start;
1815 unsigned i;
1816
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001817 /* FIXME USBDEVFS_CONNECTINFO doesn't say how fast the device is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Vikram Pandita7f4e9852009-11-09 21:24:32 -06001819 pattern = mod_pattern;
1820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 if (code != USBTEST_REQUEST)
1822 return -EOPNOTSUPP;
1823
roel kluin8aafdf62008-10-21 00:36:44 -04001824 if (param->iterations <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 return -EINVAL;
1826
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08001827 if (mutex_lock_interruptible(&dev->lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return -ERESTARTSYS;
1829
Alan Stern70a1c9e2008-03-06 17:00:58 -05001830 /* FIXME: What if a system sleep starts while a test is running? */
David Brownellff7c79e2005-04-22 13:17:00 -07001831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 /* some devices, like ez-usb default devices, need a non-default
1833 * altsetting to have any active endpoints. some tests change
1834 * altsettings; force a default so most tests don't need to check.
1835 */
1836 if (dev->info->alt >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001837 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 if (intf->altsetting->desc.bInterfaceNumber) {
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08001840 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 return -ENODEV;
1842 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001843 res = set_altsetting(dev, dev->info->alt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (res) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001845 dev_err(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 "set altsetting to %d failed, %d\n",
1847 dev->info->alt, res);
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08001848 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 return res;
1850 }
1851 }
1852
1853 /*
1854 * Just a bunch of test cases that every HCD is expected to handle.
1855 *
1856 * Some may need specific firmware, though it'd be good to have
1857 * one firmware image to handle all the test cases.
1858 *
1859 * FIXME add more tests! cancel requests, verify the data, control
1860 * queueing, concurrent read+write threads, and so on.
1861 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001862 do_gettimeofday(&start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 switch (param->test_num) {
1864
1865 case 0:
David Brownell28ffd792008-04-25 18:51:10 -07001866 dev_info(&intf->dev, "TEST 0: NOP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 retval = 0;
1868 break;
1869
1870 /* Simple non-queued bulk I/O tests */
1871 case 1:
1872 if (dev->out_pipe == 0)
1873 break;
David Brownell28ffd792008-04-25 18:51:10 -07001874 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 "TEST 1: write %d bytes %u times\n",
1876 param->length, param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001877 urb = simple_alloc_urb(udev, dev->out_pipe, param->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 if (!urb) {
1879 retval = -ENOMEM;
1880 break;
1881 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001882 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001883 retval = simple_io(dev, urb, param->iterations, 0, 0, "test1");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001884 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 break;
1886 case 2:
1887 if (dev->in_pipe == 0)
1888 break;
David Brownell28ffd792008-04-25 18:51:10 -07001889 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 "TEST 2: read %d bytes %u times\n",
1891 param->length, param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001892 urb = simple_alloc_urb(udev, dev->in_pipe, param->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 if (!urb) {
1894 retval = -ENOMEM;
1895 break;
1896 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001897 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001898 retval = simple_io(dev, urb, param->iterations, 0, 0, "test2");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001899 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 break;
1901 case 3:
1902 if (dev->out_pipe == 0 || param->vary == 0)
1903 break;
David Brownell28ffd792008-04-25 18:51:10 -07001904 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 "TEST 3: write/%d 0..%d bytes %u times\n",
1906 param->vary, param->length, param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001907 urb = simple_alloc_urb(udev, dev->out_pipe, param->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if (!urb) {
1909 retval = -ENOMEM;
1910 break;
1911 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001912 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001913 retval = simple_io(dev, urb, param->iterations, param->vary,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 0, "test3");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001915 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 break;
1917 case 4:
1918 if (dev->in_pipe == 0 || param->vary == 0)
1919 break;
David Brownell28ffd792008-04-25 18:51:10 -07001920 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 "TEST 4: read/%d 0..%d bytes %u times\n",
1922 param->vary, param->length, param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001923 urb = simple_alloc_urb(udev, dev->in_pipe, param->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 if (!urb) {
1925 retval = -ENOMEM;
1926 break;
1927 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001928 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001929 retval = simple_io(dev, urb, param->iterations, param->vary,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 0, "test4");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001931 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 break;
1933
1934 /* Queued bulk I/O tests */
1935 case 5:
1936 if (dev->out_pipe == 0 || param->sglen == 0)
1937 break;
David Brownell28ffd792008-04-25 18:51:10 -07001938 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 "TEST 5: write %d sglists %d entries of %d bytes\n",
1940 param->iterations,
1941 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001942 sg = alloc_sglist(param->sglen, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 if (!sg) {
1944 retval = -ENOMEM;
1945 break;
1946 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001947 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001948 retval = perform_sglist(dev, param->iterations, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001950 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 break;
1952
1953 case 6:
1954 if (dev->in_pipe == 0 || param->sglen == 0)
1955 break;
David Brownell28ffd792008-04-25 18:51:10 -07001956 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 "TEST 6: read %d sglists %d entries of %d bytes\n",
1958 param->iterations,
1959 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001960 sg = alloc_sglist(param->sglen, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 if (!sg) {
1962 retval = -ENOMEM;
1963 break;
1964 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001965 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001966 retval = perform_sglist(dev, param->iterations, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001968 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 break;
1970 case 7:
1971 if (dev->out_pipe == 0 || param->sglen == 0 || param->vary == 0)
1972 break;
David Brownell28ffd792008-04-25 18:51:10 -07001973 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 "TEST 7: write/%d %d sglists %d entries 0..%d bytes\n",
1975 param->vary, param->iterations,
1976 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001977 sg = alloc_sglist(param->sglen, param->length, param->vary);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 if (!sg) {
1979 retval = -ENOMEM;
1980 break;
1981 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001982 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001983 retval = perform_sglist(dev, param->iterations, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001985 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 break;
1987 case 8:
1988 if (dev->in_pipe == 0 || param->sglen == 0 || param->vary == 0)
1989 break;
David Brownell28ffd792008-04-25 18:51:10 -07001990 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 "TEST 8: read/%d %d sglists %d entries 0..%d bytes\n",
1992 param->vary, param->iterations,
1993 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001994 sg = alloc_sglist(param->sglen, param->length, param->vary);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 if (!sg) {
1996 retval = -ENOMEM;
1997 break;
1998 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001999 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002000 retval = perform_sglist(dev, param->iterations, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002002 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 break;
2004
2005 /* non-queued sanity tests for control (chapter 9 subset) */
2006 case 9:
2007 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002008 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 "TEST 9: ch9 (subset) control tests, %d times\n",
2010 param->iterations);
2011 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002012 retval = ch9_postconfig(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002014 dev_err(&intf->dev, "ch9 subset failed, "
2015 "iterations left %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 break;
2017
2018 /* queued control messaging */
2019 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002021 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 "TEST 10: queue %d control calls, %d times\n",
2023 param->sglen,
2024 param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002025 retval = test_ctrl_queue(dev, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 break;
2027
2028 /* simple non-queued unlinks (ring with one urb) */
2029 case 11:
2030 if (dev->in_pipe == 0 || !param->length)
2031 break;
2032 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002033 dev_info(&intf->dev, "TEST 11: unlink %d reads of %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 param->iterations, param->length);
2035 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002036 retval = unlink_simple(dev, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 param->length);
2038 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002039 dev_err(&intf->dev, "unlink reads failed %d, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 "iterations left %d\n", retval, i);
2041 break;
2042 case 12:
2043 if (dev->out_pipe == 0 || !param->length)
2044 break;
2045 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002046 dev_info(&intf->dev, "TEST 12: unlink %d writes of %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 param->iterations, param->length);
2048 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002049 retval = unlink_simple(dev, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 param->length);
2051 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002052 dev_err(&intf->dev, "unlink writes failed %d, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 "iterations left %d\n", retval, i);
2054 break;
2055
2056 /* ep halt tests */
2057 case 13:
2058 if (dev->out_pipe == 0 && dev->in_pipe == 0)
2059 break;
2060 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002061 dev_info(&intf->dev, "TEST 13: set/clear %d halts\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 param->iterations);
2063 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002064 retval = halt_simple(dev);
David Brownell28ffd792008-04-25 18:51:10 -07002065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002067 ERROR(dev, "halts failed, iterations left %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 break;
2069
2070 /* control write tests */
2071 case 14:
2072 if (!dev->info->ctrl_out)
2073 break;
David Brownell28ffd792008-04-25 18:51:10 -07002074 dev_info(&intf->dev, "TEST 14: %d ep0out, %d..%d vary %d\n",
David Brownellff7c79e2005-04-22 13:17:00 -07002075 param->iterations,
2076 realworld ? 1 : 0, param->length,
2077 param->vary);
David Brownell28ffd792008-04-25 18:51:10 -07002078 retval = ctrl_out(dev, param->iterations,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002079 param->length, param->vary, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 break;
2081
2082 /* iso write tests */
2083 case 15:
2084 if (dev->out_iso_pipe == 0 || param->sglen == 0)
2085 break;
David Brownell28ffd792008-04-25 18:51:10 -07002086 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 "TEST 15: write %d iso, %d entries of %d bytes\n",
2088 param->iterations,
2089 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002090 /* FIRMWARE: iso sink */
2091 retval = test_iso_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002092 dev->out_iso_pipe, dev->iso_out, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 break;
2094
2095 /* iso read tests */
2096 case 16:
2097 if (dev->in_iso_pipe == 0 || param->sglen == 0)
2098 break;
David Brownell28ffd792008-04-25 18:51:10 -07002099 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 "TEST 16: read %d iso, %d entries of %d bytes\n",
2101 param->iterations,
2102 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002103 /* FIRMWARE: iso source */
2104 retval = test_iso_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002105 dev->in_iso_pipe, dev->iso_in, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 break;
2107
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002108 /* FIXME scatterlist cancel (needs helper thread) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Martin Fuzzey084fb202011-01-16 19:17:11 +01002110 /* Tests for bulk I/O using DMA mapping by core and odd address */
2111 case 17:
2112 if (dev->out_pipe == 0)
2113 break;
2114 dev_info(&intf->dev,
2115 "TEST 17: write odd addr %d bytes %u times core map\n",
2116 param->length, param->iterations);
2117
2118 retval = test_unaligned_bulk(
2119 dev, dev->out_pipe,
2120 param->length, param->iterations,
2121 0, "test17");
2122 break;
2123
2124 case 18:
2125 if (dev->in_pipe == 0)
2126 break;
2127 dev_info(&intf->dev,
2128 "TEST 18: read odd addr %d bytes %u times core map\n",
2129 param->length, param->iterations);
2130
2131 retval = test_unaligned_bulk(
2132 dev, dev->in_pipe,
2133 param->length, param->iterations,
2134 0, "test18");
2135 break;
2136
2137 /* Tests for bulk I/O using premapped coherent buffer and odd address */
2138 case 19:
2139 if (dev->out_pipe == 0)
2140 break;
2141 dev_info(&intf->dev,
2142 "TEST 19: write odd addr %d bytes %u times premapped\n",
2143 param->length, param->iterations);
2144
2145 retval = test_unaligned_bulk(
2146 dev, dev->out_pipe,
2147 param->length, param->iterations,
2148 URB_NO_TRANSFER_DMA_MAP, "test19");
2149 break;
2150
2151 case 20:
2152 if (dev->in_pipe == 0)
2153 break;
2154 dev_info(&intf->dev,
2155 "TEST 20: read odd addr %d bytes %u times premapped\n",
2156 param->length, param->iterations);
2157
2158 retval = test_unaligned_bulk(
2159 dev, dev->in_pipe,
2160 param->length, param->iterations,
2161 URB_NO_TRANSFER_DMA_MAP, "test20");
2162 break;
2163
2164 /* control write tests with unaligned buffer */
2165 case 21:
2166 if (!dev->info->ctrl_out)
2167 break;
2168 dev_info(&intf->dev,
2169 "TEST 21: %d ep0out odd addr, %d..%d vary %d\n",
2170 param->iterations,
2171 realworld ? 1 : 0, param->length,
2172 param->vary);
2173 retval = ctrl_out(dev, param->iterations,
2174 param->length, param->vary, 1);
2175 break;
2176
2177 /* unaligned iso tests */
2178 case 22:
2179 if (dev->out_iso_pipe == 0 || param->sglen == 0)
2180 break;
2181 dev_info(&intf->dev,
2182 "TEST 22: write %d iso odd, %d entries of %d bytes\n",
2183 param->iterations,
2184 param->sglen, param->length);
2185 retval = test_iso_queue(dev, param,
2186 dev->out_iso_pipe, dev->iso_out, 1);
2187 break;
2188
2189 case 23:
2190 if (dev->in_iso_pipe == 0 || param->sglen == 0)
2191 break;
2192 dev_info(&intf->dev,
2193 "TEST 23: read %d iso odd, %d entries of %d bytes\n",
2194 param->iterations,
2195 param->sglen, param->length);
2196 retval = test_iso_queue(dev, param,
2197 dev->in_iso_pipe, dev->iso_in, 1);
2198 break;
2199
Alan Stern869410f2011-04-14 11:21:04 -04002200 /* unlink URBs from a bulk-OUT queue */
2201 case 24:
2202 if (dev->out_pipe == 0 || !param->length || param->sglen < 4)
2203 break;
2204 retval = 0;
Alan Stern2cb50002013-01-02 13:58:18 -05002205 dev_info(&intf->dev, "TEST 24: unlink from %d queues of "
Alan Stern869410f2011-04-14 11:21:04 -04002206 "%d %d-byte writes\n",
2207 param->iterations, param->sglen, param->length);
2208 for (i = param->iterations; retval == 0 && i > 0; --i) {
2209 retval = unlink_queued(dev, dev->out_pipe,
2210 param->sglen, param->length);
2211 if (retval) {
2212 dev_err(&intf->dev,
2213 "unlink queued writes failed %d, "
2214 "iterations left %d\n", retval, i);
2215 break;
2216 }
2217 }
2218 break;
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002221 do_gettimeofday(&param->duration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 param->duration.tv_sec -= start.tv_sec;
2223 param->duration.tv_usec -= start.tv_usec;
2224 if (param->duration.tv_usec < 0) {
2225 param->duration.tv_usec += 1000 * 1000;
2226 param->duration.tv_sec -= 1;
2227 }
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002228 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 return retval;
2230}
2231
2232/*-------------------------------------------------------------------------*/
2233
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002234static unsigned force_interrupt;
2235module_param(force_interrupt, uint, 0);
2236MODULE_PARM_DESC(force_interrupt, "0 = test default; else interrupt");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238#ifdef GENERIC
2239static unsigned short vendor;
2240module_param(vendor, ushort, 0);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002241MODULE_PARM_DESC(vendor, "vendor code (from usb-if)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
2243static unsigned short product;
2244module_param(product, ushort, 0);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002245MODULE_PARM_DESC(product, "product code (from vendor)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246#endif
2247
2248static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002249usbtest_probe(struct usb_interface *intf, const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250{
2251 struct usb_device *udev;
2252 struct usbtest_dev *dev;
2253 struct usbtest_info *info;
2254 char *rtest, *wtest;
2255 char *irtest, *iwtest;
2256
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002257 udev = interface_to_usbdev(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259#ifdef GENERIC
2260 /* specify devices by module parameters? */
2261 if (id->match_flags == 0) {
2262 /* vendor match required, product match optional */
2263 if (!vendor || le16_to_cpu(udev->descriptor.idVendor) != (u16)vendor)
2264 return -ENODEV;
2265 if (product && le16_to_cpu(udev->descriptor.idProduct) != (u16)product)
2266 return -ENODEV;
David Brownell28ffd792008-04-25 18:51:10 -07002267 dev_info(&intf->dev, "matched module params, "
2268 "vend=0x%04x prod=0x%04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 le16_to_cpu(udev->descriptor.idVendor),
2270 le16_to_cpu(udev->descriptor.idProduct));
2271 }
2272#endif
2273
Christoph Lametere94b1762006-12-06 20:33:17 -08002274 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 if (!dev)
2276 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 info = (struct usbtest_info *) id->driver_info;
2278 dev->info = info;
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002279 mutex_init(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 dev->intf = intf;
2282
2283 /* cacheline-aligned scratch for i/o */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002284 dev->buf = kmalloc(TBUF_SIZE, GFP_KERNEL);
2285 if (dev->buf == NULL) {
2286 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 return -ENOMEM;
2288 }
2289
2290 /* NOTE this doesn't yet test the handful of difference that are
2291 * visible with high speed interrupts: bigger maxpacket (1K) and
2292 * "high bandwidth" modes (up to 3 packets/uframe).
2293 */
2294 rtest = wtest = "";
2295 irtest = iwtest = "";
2296 if (force_interrupt || udev->speed == USB_SPEED_LOW) {
2297 if (info->ep_in) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002298 dev->in_pipe = usb_rcvintpipe(udev, info->ep_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 rtest = " intr-in";
2300 }
2301 if (info->ep_out) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002302 dev->out_pipe = usb_sndintpipe(udev, info->ep_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 wtest = " intr-out";
2304 }
2305 } else {
Alan Sternd0b46522013-01-30 16:38:11 -05002306 if (override_alt >= 0 || info->autoconf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 int status;
2308
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002309 status = get_endpoints(dev, intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 if (status < 0) {
Arjan van de Venb6c63932008-07-25 01:45:52 -07002311 WARNING(dev, "couldn't get endpoints, %d\n",
David Brownell28ffd792008-04-25 18:51:10 -07002312 status);
Julia Lawallf4a728d2012-03-25 21:08:32 +02002313 kfree(dev->buf);
2314 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 return status;
2316 }
2317 /* may find bulk or ISO pipes */
2318 } else {
2319 if (info->ep_in)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002320 dev->in_pipe = usb_rcvbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 info->ep_in);
2322 if (info->ep_out)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002323 dev->out_pipe = usb_sndbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 info->ep_out);
2325 }
2326 if (dev->in_pipe)
2327 rtest = " bulk-in";
2328 if (dev->out_pipe)
2329 wtest = " bulk-out";
2330 if (dev->in_iso_pipe)
2331 irtest = " iso-in";
2332 if (dev->out_iso_pipe)
2333 iwtest = " iso-out";
2334 }
2335
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002336 usb_set_intfdata(intf, dev);
2337 dev_info(&intf->dev, "%s\n", info->name);
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02002338 dev_info(&intf->dev, "%s {control%s%s%s%s%s} tests%s\n",
2339 usb_speed_string(udev->speed),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 info->ctrl_out ? " in/out" : "",
2341 rtest, wtest,
2342 irtest, iwtest,
2343 info->alt >= 0 ? " (+alt)" : "");
2344 return 0;
2345}
2346
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002347static int usbtest_suspend(struct usb_interface *intf, pm_message_t message)
David Brownellff7c79e2005-04-22 13:17:00 -07002348{
David Brownellff7c79e2005-04-22 13:17:00 -07002349 return 0;
2350}
2351
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002352static int usbtest_resume(struct usb_interface *intf)
David Brownellff7c79e2005-04-22 13:17:00 -07002353{
David Brownellff7c79e2005-04-22 13:17:00 -07002354 return 0;
2355}
2356
2357
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002358static void usbtest_disconnect(struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002360 struct usbtest_dev *dev = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002362 usb_set_intfdata(intf, NULL);
2363 dev_dbg(&intf->dev, "disconnect\n");
2364 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365}
2366
2367/* Basic testing only needs a device that can source or sink bulk traffic.
2368 * Any device can test control transfers (default with GENERIC binding).
2369 *
2370 * Several entries work with the default EP0 implementation that's built
2371 * into EZ-USB chips. There's a default vendor ID which can be overridden
2372 * by (very) small config EEPROMS, but otherwise all these devices act
2373 * identically until firmware is loaded: only EP0 works. It turns out
2374 * to be easy to make other endpoints work, without modifying that EP0
2375 * behavior. For now, we expect that kind of firmware.
2376 */
2377
2378/* an21xx or fx versions of ez-usb */
2379static struct usbtest_info ez1_info = {
2380 .name = "EZ-USB device",
2381 .ep_in = 2,
2382 .ep_out = 2,
2383 .alt = 1,
2384};
2385
2386/* fx2 version of ez-usb */
2387static struct usbtest_info ez2_info = {
2388 .name = "FX2 device",
2389 .ep_in = 6,
2390 .ep_out = 2,
2391 .alt = 1,
2392};
2393
2394/* ezusb family device with dedicated usb test firmware,
2395 */
2396static struct usbtest_info fw_info = {
2397 .name = "usb test device",
2398 .ep_in = 2,
2399 .ep_out = 2,
2400 .alt = 1,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002401 .autoconf = 1, /* iso and ctrl_out need autoconf */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 .ctrl_out = 1,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002403 .iso = 1, /* iso_ep's are #8 in/out */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404};
2405
2406/* peripheral running Linux and 'zero.c' test firmware, or
2407 * its user-mode cousin. different versions of this use
2408 * different hardware with the same vendor/product codes.
2409 * host side MUST rely on the endpoint descriptors.
2410 */
2411static struct usbtest_info gz_info = {
2412 .name = "Linux gadget zero",
2413 .autoconf = 1,
2414 .ctrl_out = 1,
Boyan Nedeltchev4b85c622012-11-12 13:06:06 +02002415 .iso = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 .alt = 0,
2417};
2418
2419static struct usbtest_info um_info = {
2420 .name = "Linux user mode test driver",
2421 .autoconf = 1,
2422 .alt = -1,
2423};
2424
2425static struct usbtest_info um2_info = {
2426 .name = "Linux user mode ISO test driver",
2427 .autoconf = 1,
2428 .iso = 1,
2429 .alt = -1,
2430};
2431
2432#ifdef IBOT2
2433/* this is a nice source of high speed bulk data;
2434 * uses an FX2, with firmware provided in the device
2435 */
2436static struct usbtest_info ibot2_info = {
2437 .name = "iBOT2 webcam",
2438 .ep_in = 2,
2439 .alt = -1,
2440};
2441#endif
2442
2443#ifdef GENERIC
2444/* we can use any device to test control traffic */
2445static struct usbtest_info generic_info = {
2446 .name = "Generic USB device",
2447 .alt = -1,
2448};
2449#endif
2450
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Németh Márton33b9e162010-01-10 15:34:45 +01002452static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 /*-------------------------------------------------------------*/
2455
2456 /* EZ-USB devices which download firmware to replace (or in our
2457 * case augment) the default device implementation.
2458 */
2459
2460 /* generic EZ-USB FX controller */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002461 { USB_DEVICE(0x0547, 0x2235),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002463 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
2465 /* CY3671 development board with EZ-USB FX */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002466 { USB_DEVICE(0x0547, 0x0080),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002468 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
2470 /* generic EZ-USB FX2 controller (or development board) */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002471 { USB_DEVICE(0x04b4, 0x8613),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 .driver_info = (unsigned long) &ez2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002473 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
2475 /* re-enumerated usb test device firmware */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002476 { USB_DEVICE(0xfff0, 0xfff0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 .driver_info = (unsigned long) &fw_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002478 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
2480 /* "Gadget Zero" firmware runs under Linux */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002481 { USB_DEVICE(0x0525, 0xa4a0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 .driver_info = (unsigned long) &gz_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002483 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
2485 /* so does a user-mode variant */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002486 { USB_DEVICE(0x0525, 0xa4a4),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 .driver_info = (unsigned long) &um_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002488 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
2490 /* ... and a user-mode variant that talks iso */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002491 { USB_DEVICE(0x0525, 0xa4a3),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 .driver_info = (unsigned long) &um2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002493 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
2495#ifdef KEYSPAN_19Qi
2496 /* Keyspan 19qi uses an21xx (original EZ-USB) */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002497 /* this does not coexist with the real Keyspan 19qi driver! */
2498 { USB_DEVICE(0x06cd, 0x010b),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002500 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501#endif
2502
2503 /*-------------------------------------------------------------*/
2504
2505#ifdef IBOT2
2506 /* iBOT2 makes a nice source of high speed bulk-in data */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002507 /* this does not coexist with a real iBOT2 driver! */
2508 { USB_DEVICE(0x0b62, 0x0059),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 .driver_info = (unsigned long) &ibot2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002510 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511#endif
2512
2513 /*-------------------------------------------------------------*/
2514
2515#ifdef GENERIC
2516 /* module params can specify devices to use for control tests */
2517 { .driver_info = (unsigned long) &generic_info, },
2518#endif
2519
2520 /*-------------------------------------------------------------*/
2521
2522 { }
2523};
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002524MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
2526static struct usb_driver usbtest_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 .name = "usbtest",
2528 .id_table = id_table,
2529 .probe = usbtest_probe,
Andi Kleenc532b292010-06-01 23:04:41 +02002530 .unlocked_ioctl = usbtest_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 .disconnect = usbtest_disconnect,
David Brownellff7c79e2005-04-22 13:17:00 -07002532 .suspend = usbtest_suspend,
2533 .resume = usbtest_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534};
2535
2536/*-------------------------------------------------------------------------*/
2537
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002538static int __init usbtest_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539{
2540#ifdef GENERIC
2541 if (vendor)
David Brownell28ffd792008-04-25 18:51:10 -07002542 pr_debug("params: vend=0x%04x prod=0x%04x\n", vendor, product);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543#endif
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002544 return usb_register(&usbtest_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545}
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002546module_init(usbtest_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002548static void __exit usbtest_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002550 usb_deregister(&usbtest_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551}
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002552module_exit(usbtest_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002554MODULE_DESCRIPTION("USB Core/HCD Testing Driver");
2555MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556