blob: d6fcbc477fc529761da454e33ee4b3c9173cdac0 [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
Huang Rui82f92672013-10-30 11:27:38 +0800609static int is_good_ext(struct usbtest_dev *tdev, u8 *buf)
610{
611 struct usb_ext_cap_descriptor *ext;
612 u32 attr;
613
614 ext = (struct usb_ext_cap_descriptor *) buf;
615
616 if (ext->bLength != USB_DT_USB_EXT_CAP_SIZE) {
617 ERROR(tdev, "bogus usb 2.0 extension descriptor length\n");
618 return 0;
619 }
620
621 attr = le32_to_cpu(ext->bmAttributes);
622 /* bits[1:4] is used and others are reserved */
623 if (attr & ~0x1e) { /* reserved == 0 */
624 ERROR(tdev, "reserved bits set\n");
625 return 0;
626 }
627
628 return 1;
629}
630
Huang Ruib8fef792013-10-30 11:27:39 +0800631static int is_good_ss_cap(struct usbtest_dev *tdev, u8 *buf)
632{
633 struct usb_ss_cap_descriptor *ss;
634
635 ss = (struct usb_ss_cap_descriptor *) buf;
636
637 if (ss->bLength != USB_DT_USB_SS_CAP_SIZE) {
638 ERROR(tdev, "bogus superspeed device capability descriptor length\n");
639 return 0;
640 }
641
642 /*
643 * only bit[1] of bmAttributes is used for LTM and others are
644 * reserved
645 */
646 if (ss->bmAttributes & ~0x02) { /* reserved == 0 */
647 ERROR(tdev, "reserved bits set in bmAttributes\n");
648 return 0;
649 }
650
651 /* bits[0:3] of wSpeedSupported is used and others are reserved */
652 if (le16_to_cpu(ss->wSpeedSupported) & ~0x0f) { /* reserved == 0 */
653 ERROR(tdev, "reserved bits set in wSpeedSupported\n");
654 return 0;
655 }
656
657 return 1;
658}
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660/* sanity test for standard requests working with usb_control_mesg() and some
661 * of the utility functions which use it.
662 *
663 * this doesn't test how endpoint halts behave or data toggles get set, since
664 * we won't do I/O to bulk/interrupt endpoints here (which is how to change
665 * halt or toggle). toggle testing is impractical without support from hcds.
666 *
667 * this avoids failing devices linux would normally work with, by not testing
668 * config/altsetting operations for devices that only support their defaults.
669 * such devices rarely support those needless operations.
670 *
671 * NOTE that since this is a sanity test, it's not examining boundary cases
672 * to see if usbcore, hcd, and device all behave right. such testing would
673 * involve varied read sizes and other operation sequences.
674 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200675static int ch9_postconfig(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 struct usb_interface *iface = dev->intf;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200678 struct usb_device *udev = interface_to_usbdev(iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 int i, alt, retval;
680
681 /* [9.2.3] if there's more than one altsetting, we need to be able to
682 * set and get each one. mostly trusts the descriptors from usbcore.
683 */
684 for (i = 0; i < iface->num_altsetting; i++) {
685
686 /* 9.2.3 constrains the range here */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200687 alt = iface->altsetting[i].desc.bAlternateSetting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (alt < 0 || alt >= iface->num_altsetting) {
David Brownell28ffd792008-04-25 18:51:10 -0700689 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 "invalid alt [%d].bAltSetting = %d\n",
691 i, alt);
692 }
693
694 /* [real world] get/set unimplemented if there's only one */
695 if (realworld && iface->num_altsetting == 1)
696 continue;
697
698 /* [9.4.10] set_interface */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200699 retval = set_altsetting(dev, alt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -0700701 dev_err(&iface->dev, "can't set_interface = %d, %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 alt, retval);
703 return retval;
704 }
705
706 /* [9.4.4] get_interface always works */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200707 retval = get_altsetting(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (retval != alt) {
David Brownell28ffd792008-04-25 18:51:10 -0700709 dev_err(&iface->dev, "get alt should be %d, was %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 alt, retval);
711 return (retval < 0) ? retval : -EDOM;
712 }
713
714 }
715
716 /* [real world] get_config unimplemented if there's only one */
717 if (!realworld || udev->descriptor.bNumConfigurations != 1) {
718 int expected = udev->actconfig->desc.bConfigurationValue;
719
720 /* [9.4.2] get_configuration always works
721 * ... although some cheap devices (like one TI Hub I've got)
722 * won't return config descriptors except before set_config.
723 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200724 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 USB_REQ_GET_CONFIGURATION,
726 USB_DIR_IN | USB_RECIP_DEVICE,
727 0, 0, dev->buf, 1, USB_CTRL_GET_TIMEOUT);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200728 if (retval != 1 || dev->buf[0] != expected) {
David Brownell28ffd792008-04-25 18:51:10 -0700729 dev_err(&iface->dev, "get config --> %d %d (1 %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -0700730 retval, dev->buf[0], expected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return (retval < 0) ? retval : -EDOM;
732 }
733 }
734
735 /* there's always [9.4.3] a device descriptor [9.6.1] */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200736 retval = usb_get_descriptor(udev, USB_DT_DEVICE, 0,
Huang Ruif55055b2013-10-21 23:15:30 +0800737 dev->buf, sizeof(udev->descriptor));
738 if (retval != sizeof(udev->descriptor)) {
David Brownell28ffd792008-04-25 18:51:10 -0700739 dev_err(&iface->dev, "dev descriptor --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return (retval < 0) ? retval : -EDOM;
741 }
742
Huang Rui9d3bd762013-10-28 23:31:32 +0800743 /*
744 * there's always [9.4.3] a bos device descriptor [9.6.2] in USB
745 * 3.0 spec
746 */
747 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0300) {
Huang Rui82f92672013-10-30 11:27:38 +0800748 struct usb_bos_descriptor *bos = NULL;
749 struct usb_dev_cap_header *header = NULL;
750 unsigned total, num, length;
751 u8 *buf;
752
Huang Rui9d3bd762013-10-28 23:31:32 +0800753 retval = usb_get_descriptor(udev, USB_DT_BOS, 0, dev->buf,
754 sizeof(*udev->bos->desc));
755 if (retval != sizeof(*udev->bos->desc)) {
756 dev_err(&iface->dev, "bos descriptor --> %d\n", retval);
757 return (retval < 0) ? retval : -EDOM;
758 }
Huang Rui82f92672013-10-30 11:27:38 +0800759
760 bos = (struct usb_bos_descriptor *)dev->buf;
761 total = le16_to_cpu(bos->wTotalLength);
762 num = bos->bNumDeviceCaps;
763
764 if (total > TBUF_SIZE)
765 total = TBUF_SIZE;
766
767 /*
768 * get generic device-level capability descriptors [9.6.2]
769 * in USB 3.0 spec
770 */
771 retval = usb_get_descriptor(udev, USB_DT_BOS, 0, dev->buf,
772 total);
773 if (retval != total) {
774 dev_err(&iface->dev, "bos descriptor set --> %d\n",
775 retval);
776 return (retval < 0) ? retval : -EDOM;
777 }
778
779 length = sizeof(*udev->bos->desc);
780 buf = dev->buf;
781 for (i = 0; i < num; i++) {
782 buf += length;
783 if (buf + sizeof(struct usb_dev_cap_header) >
784 dev->buf + total)
785 break;
786
787 header = (struct usb_dev_cap_header *)buf;
788 length = header->bLength;
789
790 if (header->bDescriptorType !=
791 USB_DT_DEVICE_CAPABILITY) {
792 dev_warn(&udev->dev, "not device capability descriptor, skip\n");
793 continue;
794 }
795
796 switch (header->bDevCapabilityType) {
797 case USB_CAP_TYPE_EXT:
798 if (buf + USB_DT_USB_EXT_CAP_SIZE >
799 dev->buf + total ||
800 !is_good_ext(dev, buf)) {
801 dev_err(&iface->dev, "bogus usb 2.0 extension descriptor\n");
802 return -EDOM;
803 }
804 break;
Huang Ruib8fef792013-10-30 11:27:39 +0800805 case USB_SS_CAP_TYPE:
806 if (buf + USB_DT_USB_SS_CAP_SIZE >
807 dev->buf + total ||
808 !is_good_ss_cap(dev, buf)) {
809 dev_err(&iface->dev, "bogus superspeed device capability descriptor\n");
810 return -EDOM;
811 }
812 break;
Huang Rui82f92672013-10-30 11:27:38 +0800813 default:
814 break;
815 }
816 }
Huang Rui9d3bd762013-10-28 23:31:32 +0800817 }
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 /* there's always [9.4.3] at least one config descriptor [9.6.3] */
820 for (i = 0; i < udev->descriptor.bNumConfigurations; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200821 retval = usb_get_descriptor(udev, USB_DT_CONFIG, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 dev->buf, TBUF_SIZE);
David Brownell28ffd792008-04-25 18:51:10 -0700823 if (!is_good_config(dev, retval)) {
824 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 "config [%d] descriptor --> %d\n",
826 i, retval);
827 return (retval < 0) ? retval : -EDOM;
828 }
829
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200830 /* FIXME cross-checking udev->config[i] to make sure usbcore
831 * parsed it right (etc) would be good testing paranoia
832 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834
835 /* and sometimes [9.2.6.6] speed dependent descriptors */
836 if (le16_to_cpu(udev->descriptor.bcdUSB) == 0x0200) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200837 struct usb_qualifier_descriptor *d = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 /* device qualifier [9.6.2] */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200840 retval = usb_get_descriptor(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 USB_DT_DEVICE_QUALIFIER, 0, dev->buf,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200842 sizeof(struct usb_qualifier_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (retval == -EPIPE) {
844 if (udev->speed == USB_SPEED_HIGH) {
David Brownell28ffd792008-04-25 18:51:10 -0700845 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 "hs dev qualifier --> %d\n",
847 retval);
848 return (retval < 0) ? retval : -EDOM;
849 }
850 /* usb2.0 but not high-speed capable; fine */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200851 } else if (retval != sizeof(struct usb_qualifier_descriptor)) {
David Brownell28ffd792008-04-25 18:51:10 -0700852 dev_err(&iface->dev, "dev qualifier --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return (retval < 0) ? retval : -EDOM;
854 } else
855 d = (struct usb_qualifier_descriptor *) dev->buf;
856
857 /* might not have [9.6.2] any other-speed configs [9.6.4] */
858 if (d) {
859 unsigned max = d->bNumConfigurations;
860 for (i = 0; i < max; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200861 retval = usb_get_descriptor(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 USB_DT_OTHER_SPEED_CONFIG, i,
863 dev->buf, TBUF_SIZE);
David Brownell28ffd792008-04-25 18:51:10 -0700864 if (!is_good_config(dev, retval)) {
865 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 "other speed config --> %d\n",
867 retval);
868 return (retval < 0) ? retval : -EDOM;
869 }
870 }
871 }
872 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200873 /* FIXME fetch strings from at least the device descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 /* [9.4.5] get_status always works */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200876 retval = usb_get_status(udev, USB_RECIP_DEVICE, 0, dev->buf);
Alan Stern15b73362013-07-30 15:35:40 -0400877 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -0700878 dev_err(&iface->dev, "get dev status --> %d\n", retval);
Alan Stern15b73362013-07-30 15:35:40 -0400879 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
881
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200882 /* FIXME configuration.bmAttributes says if we could try to set/clear
883 * the device's remote wakeup feature ... if we can, test that here
884 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200886 retval = usb_get_status(udev, USB_RECIP_INTERFACE,
887 iface->altsetting[0].desc.bInterfaceNumber, dev->buf);
Alan Stern15b73362013-07-30 15:35:40 -0400888 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -0700889 dev_err(&iface->dev, "get interface status --> %d\n", retval);
Alan Stern15b73362013-07-30 15:35:40 -0400890 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200892 /* FIXME get status for each endpoint in the interface */
David Brownell28ffd792008-04-25 18:51:10 -0700893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return 0;
895}
896
897/*-------------------------------------------------------------------------*/
898
899/* use ch9 requests to test whether:
900 * (a) queues work for control, keeping N subtests queued and
901 * active (auto-resubmit) for M loops through the queue.
902 * (b) protocol stalls (control-only) will autorecover.
903 * it's not like bulk/intr; no halt clearing.
904 * (c) short control reads are reported and handled.
905 * (d) queues are always processed in-order
906 */
907
908struct ctrl_ctx {
909 spinlock_t lock;
910 struct usbtest_dev *dev;
911 struct completion complete;
912 unsigned count;
913 unsigned pending;
914 int status;
915 struct urb **urb;
916 struct usbtest_param *param;
917 int last;
918};
919
920#define NUM_SUBCASES 15 /* how many test subcases here? */
921
922struct subcase {
923 struct usb_ctrlrequest setup;
924 int number;
925 int expected;
926};
927
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200928static void ctrl_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929{
930 struct ctrl_ctx *ctx = urb->context;
931 struct usb_ctrlrequest *reqp;
932 struct subcase *subcase;
933 int status = urb->status;
934
935 reqp = (struct usb_ctrlrequest *)urb->setup_packet;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200936 subcase = container_of(reqp, struct subcase, setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200938 spin_lock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 ctx->count--;
940 ctx->pending--;
941
942 /* queue must transfer and complete in fifo order, unless
943 * usb_unlink_urb() is used to unlink something not at the
944 * physical queue head (not tested).
945 */
946 if (subcase->number > 0) {
947 if ((subcase->number - ctx->last) != 1) {
David Brownell28ffd792008-04-25 18:51:10 -0700948 ERROR(ctx->dev,
949 "subcase %d completed out of order, last %d\n",
950 subcase->number, ctx->last);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 status = -EDOM;
952 ctx->last = subcase->number;
953 goto error;
954 }
955 }
956 ctx->last = subcase->number;
957
958 /* succeed or fault in only one way? */
959 if (status == subcase->expected)
960 status = 0;
961
962 /* async unlink for cleanup? */
963 else if (status != -ECONNRESET) {
964
965 /* some faults are allowed, not required */
966 if (subcase->expected > 0 && (
Greg Kroah-Hartman59d99782007-07-18 10:58:02 -0700967 ((status == -subcase->expected /* happened */
968 || status == 0)))) /* didn't */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 status = 0;
970 /* sometimes more than one fault is allowed */
971 else if (subcase->number == 12 && status == -EPIPE)
972 status = 0;
973 else
David Brownell28ffd792008-04-25 18:51:10 -0700974 ERROR(ctx->dev, "subtest %d error, status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 subcase->number, status);
976 }
977
978 /* unexpected status codes mean errors; ideally, in hardware */
979 if (status) {
980error:
981 if (ctx->status == 0) {
982 int i;
983
984 ctx->status = status;
David Brownell28ffd792008-04-25 18:51:10 -0700985 ERROR(ctx->dev, "control queue %02x.%02x, err %d, "
986 "%d left, subcase %d, len %d/%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 reqp->bRequestType, reqp->bRequest,
David Brownell28ffd792008-04-25 18:51:10 -0700988 status, ctx->count, subcase->number,
989 urb->actual_length,
990 urb->transfer_buffer_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 /* FIXME this "unlink everything" exit route should
993 * be a separate test case.
994 */
995
996 /* unlink whatever's still pending */
997 for (i = 1; i < ctx->param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200998 struct urb *u = ctx->urb[
999 (i + subcase->number)
1000 % ctx->param->sglen];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 if (u == urb || !u->dev)
1003 continue;
Franck Bui-Huucaa2a122006-05-15 19:23:53 +02001004 spin_unlock(&ctx->lock);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001005 status = usb_unlink_urb(u);
Franck Bui-Huucaa2a122006-05-15 19:23:53 +02001006 spin_lock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 switch (status) {
1008 case -EINPROGRESS:
1009 case -EBUSY:
1010 case -EIDRM:
1011 continue;
1012 default:
David Brownell28ffd792008-04-25 18:51:10 -07001013 ERROR(ctx->dev, "urb unlink --> %d\n",
1014 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016 }
1017 status = ctx->status;
1018 }
1019 }
1020
1021 /* resubmit if we need to, else mark this as done */
1022 if ((status == 0) && (ctx->pending < ctx->count)) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001023 status = usb_submit_urb(urb, GFP_ATOMIC);
1024 if (status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001025 ERROR(ctx->dev,
1026 "can't resubmit ctrl %02x.%02x, err %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 reqp->bRequestType, reqp->bRequest, status);
1028 urb->dev = NULL;
1029 } else
1030 ctx->pending++;
1031 } else
1032 urb->dev = NULL;
David Brownell28ffd792008-04-25 18:51:10 -07001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 /* signal completion when nothing's queued */
1035 if (ctx->pending == 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001036 complete(&ctx->complete);
1037 spin_unlock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
1040static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001041test_ctrl_queue(struct usbtest_dev *dev, struct usbtest_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001043 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 struct urb **urb;
1045 struct ctrl_ctx context;
1046 int i;
1047
Xi Wange65cdfa2012-04-09 15:48:55 -04001048 if (param->sglen == 0 || param->iterations > UINT_MAX / param->sglen)
1049 return -EOPNOTSUPP;
1050
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001051 spin_lock_init(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 context.dev = dev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001053 init_completion(&context.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 context.count = param->sglen * param->iterations;
1055 context.pending = 0;
1056 context.status = -ENOMEM;
1057 context.param = param;
1058 context.last = -1;
1059
1060 /* allocate and init the urbs we'll queue.
1061 * as with bulk/intr sglists, sglen is the queue depth; it also
1062 * controls which subtests run (more tests than sglen) or rerun.
1063 */
Christoph Lametere94b1762006-12-06 20:33:17 -08001064 urb = kcalloc(param->sglen, sizeof(struct urb *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (!urb)
1066 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001068 int pipe = usb_rcvctrlpipe(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 unsigned len;
1070 struct urb *u;
1071 struct usb_ctrlrequest req;
1072 struct subcase *reqp;
Marcin Slusarz6def7552008-05-12 20:17:25 +02001073
1074 /* sign of this variable means:
1075 * -: tested code must return this (negative) error code
1076 * +: tested code may return this (negative too) error code
1077 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 int expected = 0;
1079
1080 /* requests here are mostly expected to succeed on any
1081 * device, but some are chosen to trigger protocol stalls
1082 * or short reads.
1083 */
Huang Ruif55055b2013-10-21 23:15:30 +08001084 memset(&req, 0, sizeof(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 req.bRequest = USB_REQ_GET_DESCRIPTOR;
1086 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
1087
1088 switch (i % NUM_SUBCASES) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001089 case 0: /* get device descriptor */
1090 req.wValue = cpu_to_le16(USB_DT_DEVICE << 8);
1091 len = sizeof(struct usb_device_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001093 case 1: /* get first config descriptor (only) */
1094 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1095 len = sizeof(struct usb_config_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001097 case 2: /* get altsetting (OFTEN STALLS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 req.bRequest = USB_REQ_GET_INTERFACE;
1099 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001100 /* index = 0 means first interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 len = 1;
1102 expected = EPIPE;
1103 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001104 case 3: /* get interface status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 req.bRequest = USB_REQ_GET_STATUS;
1106 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001107 /* interface 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 len = 2;
1109 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001110 case 4: /* get device status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 req.bRequest = USB_REQ_GET_STATUS;
1112 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
1113 len = 2;
1114 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001115 case 5: /* get device qualifier (MAY STALL) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 req.wValue = cpu_to_le16 (USB_DT_DEVICE_QUALIFIER << 8);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001117 len = sizeof(struct usb_qualifier_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if (udev->speed != USB_SPEED_HIGH)
1119 expected = EPIPE;
1120 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001121 case 6: /* get first config descriptor, plus interface */
1122 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1123 len = sizeof(struct usb_config_descriptor);
1124 len += sizeof(struct usb_interface_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001126 case 7: /* get interface descriptor (ALWAYS STALLS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 req.wValue = cpu_to_le16 (USB_DT_INTERFACE << 8);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001128 /* interface == 0 */
1129 len = sizeof(struct usb_interface_descriptor);
David Brownell28ffd792008-04-25 18:51:10 -07001130 expected = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001132 /* NOTE: two consecutive stalls in the queue here.
1133 * that tests fault recovery a bit more aggressively. */
1134 case 8: /* clear endpoint halt (MAY STALL) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 req.bRequest = USB_REQ_CLEAR_FEATURE;
1136 req.bRequestType = USB_RECIP_ENDPOINT;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001137 /* wValue 0 == ep halt */
1138 /* wIndex 0 == ep0 (shouldn't halt!) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 len = 0;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001140 pipe = usb_sndctrlpipe(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 expected = EPIPE;
1142 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001143 case 9: /* get endpoint status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 req.bRequest = USB_REQ_GET_STATUS;
1145 req.bRequestType = USB_DIR_IN|USB_RECIP_ENDPOINT;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001146 /* endpoint 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 len = 2;
1148 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001149 case 10: /* trigger short read (EREMOTEIO) */
1150 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 len = 1024;
1152 expected = -EREMOTEIO;
1153 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001154 /* NOTE: two consecutive _different_ faults in the queue. */
1155 case 11: /* get endpoint descriptor (ALWAYS STALLS) */
1156 req.wValue = cpu_to_le16(USB_DT_ENDPOINT << 8);
1157 /* endpoint == 0 */
1158 len = sizeof(struct usb_interface_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 expected = EPIPE;
1160 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001161 /* NOTE: sometimes even a third fault in the queue! */
1162 case 12: /* get string 0 descriptor (MAY STALL) */
1163 req.wValue = cpu_to_le16(USB_DT_STRING << 8);
1164 /* string == 0, for language IDs */
1165 len = sizeof(struct usb_interface_descriptor);
1166 /* may succeed when > 4 languages */
1167 expected = EREMOTEIO; /* or EPIPE, if no strings */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001169 case 13: /* short read, resembling case 10 */
1170 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1171 /* last data packet "should" be DATA1, not DATA0 */
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001172 if (udev->speed == USB_SPEED_SUPER)
1173 len = 1024 - 512;
1174 else
1175 len = 1024 - udev->descriptor.bMaxPacketSize0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 expected = -EREMOTEIO;
1177 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001178 case 14: /* short read; try to fill the last packet */
1179 req.wValue = cpu_to_le16((USB_DT_DEVICE << 8) | 0);
David Brownell28ffd792008-04-25 18:51:10 -07001180 /* device descriptor size == 18 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 len = udev->descriptor.bMaxPacketSize0;
Sebastian Andrzej Siewior67e7d642011-04-14 16:17:21 +02001182 if (udev->speed == USB_SPEED_SUPER)
1183 len = 512;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 switch (len) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001185 case 8:
1186 len = 24;
1187 break;
1188 case 16:
1189 len = 32;
1190 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 }
1192 expected = -EREMOTEIO;
1193 break;
1194 default:
David Brownell28ffd792008-04-25 18:51:10 -07001195 ERROR(dev, "bogus number of ctrl queue testcases!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 context.status = -EINVAL;
1197 goto cleanup;
1198 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001199 req.wLength = cpu_to_le16(len);
1200 urb[i] = u = simple_alloc_urb(udev, pipe, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (!u)
1202 goto cleanup;
1203
Huang Ruif55055b2013-10-21 23:15:30 +08001204 reqp = kmalloc(sizeof(*reqp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if (!reqp)
1206 goto cleanup;
1207 reqp->setup = req;
1208 reqp->number = i % NUM_SUBCASES;
1209 reqp->expected = expected;
1210 u->setup_packet = (char *) &reqp->setup;
1211
1212 u->context = &context;
1213 u->complete = ctrl_complete;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
1215
1216 /* queue the urbs */
1217 context.urb = urb;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001218 spin_lock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001220 context.status = usb_submit_urb(urb[i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (context.status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001222 ERROR(dev, "can't submit urb[%d], status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 i, context.status);
1224 context.count = context.pending;
1225 break;
1226 }
1227 context.pending++;
1228 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001229 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 /* FIXME set timer and time out; provide a disconnect hook */
1232
1233 /* wait for the last one to complete */
1234 if (context.pending > 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001235 wait_for_completion(&context.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237cleanup:
1238 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001239 if (!urb[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 continue;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001241 urb[i]->dev = udev;
Alan Stern0ede76f2010-03-05 15:10:17 -05001242 kfree(urb[i]->setup_packet);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001243 simple_free_urb(urb[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001245 kfree(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 return context.status;
1247}
1248#undef NUM_SUBCASES
1249
1250
1251/*-------------------------------------------------------------------------*/
1252
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001253static void unlink1_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
1255 int status = urb->status;
1256
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001257 /* we "know" -EPIPE (stall) never happens */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (!status)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001259 status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 if (status) {
1261 urb->status = status;
Ming Leicdc97792008-02-24 18:41:47 +08001262 complete(urb->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 }
1264}
1265
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001266static int unlink1(struct usbtest_dev *dev, int pipe, int size, int async)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
1268 struct urb *urb;
1269 struct completion completion;
1270 int retval = 0;
1271
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001272 init_completion(&completion);
1273 urb = simple_alloc_urb(testdev_to_usbdev(dev), pipe, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (!urb)
1275 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 urb->context = &completion;
1277 urb->complete = unlink1_callback;
1278
1279 /* keep the endpoint busy. there are lots of hc/hcd-internal
1280 * states, and testing should get to all of them over time.
1281 *
1282 * FIXME want additional tests for when endpoint is STALLing
1283 * due to errors, or is just NAKing requests.
1284 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001285 retval = usb_submit_urb(urb, GFP_KERNEL);
1286 if (retval != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001287 dev_err(&dev->intf->dev, "submit fail %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 return retval;
1289 }
1290
1291 /* unlinking that should always work. variable delay tests more
1292 * hcd states and code paths, even with little other system load.
1293 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001294 msleep(jiffies % (2 * INTERRUPT_RATE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 if (async) {
Martin Fuzzey3b6c0232009-06-04 23:20:38 +02001296 while (!completion_done(&completion)) {
1297 retval = usb_unlink_urb(urb);
1298
1299 switch (retval) {
1300 case -EBUSY:
1301 case -EIDRM:
1302 /* we can't unlink urbs while they're completing
1303 * or if they've completed, and we haven't
1304 * resubmitted. "normal" drivers would prevent
1305 * resubmission, but since we're testing unlink
1306 * paths, we can't.
1307 */
1308 ERROR(dev, "unlink retry\n");
1309 continue;
1310 case 0:
1311 case -EINPROGRESS:
1312 break;
1313
1314 default:
1315 dev_err(&dev->intf->dev,
1316 "unlink fail %d\n", retval);
1317 return retval;
1318 }
1319
1320 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 }
1322 } else
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001323 usb_kill_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001325 wait_for_completion(&completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 retval = urb->status;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001327 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 if (async)
1330 return (retval == -ECONNRESET) ? 0 : retval - 1000;
1331 else
1332 return (retval == -ENOENT || retval == -EPERM) ?
1333 0 : retval - 2000;
1334}
1335
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001336static int unlink_simple(struct usbtest_dev *dev, int pipe, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
1338 int retval = 0;
1339
1340 /* test sync and async paths */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001341 retval = unlink1(dev, pipe, len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 if (!retval)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001343 retval = unlink1(dev, pipe, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 return retval;
1345}
1346
1347/*-------------------------------------------------------------------------*/
1348
Alan Stern869410f2011-04-14 11:21:04 -04001349struct queued_ctx {
1350 struct completion complete;
1351 atomic_t pending;
1352 unsigned num;
1353 int status;
1354 struct urb **urbs;
1355};
1356
1357static void unlink_queued_callback(struct urb *urb)
1358{
1359 int status = urb->status;
1360 struct queued_ctx *ctx = urb->context;
1361
1362 if (ctx->status)
1363 goto done;
1364 if (urb == ctx->urbs[ctx->num - 4] || urb == ctx->urbs[ctx->num - 2]) {
1365 if (status == -ECONNRESET)
1366 goto done;
1367 /* What error should we report if the URB completed normally? */
1368 }
1369 if (status != 0)
1370 ctx->status = status;
1371
1372 done:
1373 if (atomic_dec_and_test(&ctx->pending))
1374 complete(&ctx->complete);
1375}
1376
1377static int unlink_queued(struct usbtest_dev *dev, int pipe, unsigned num,
1378 unsigned size)
1379{
1380 struct queued_ctx ctx;
1381 struct usb_device *udev = testdev_to_usbdev(dev);
1382 void *buf;
1383 dma_addr_t buf_dma;
1384 int i;
1385 int retval = -ENOMEM;
1386
1387 init_completion(&ctx.complete);
1388 atomic_set(&ctx.pending, 1); /* One more than the actual value */
1389 ctx.num = num;
1390 ctx.status = 0;
1391
1392 buf = usb_alloc_coherent(udev, size, GFP_KERNEL, &buf_dma);
1393 if (!buf)
1394 return retval;
1395 memset(buf, 0, size);
1396
1397 /* Allocate and init the urbs we'll queue */
1398 ctx.urbs = kcalloc(num, sizeof(struct urb *), GFP_KERNEL);
1399 if (!ctx.urbs)
1400 goto free_buf;
1401 for (i = 0; i < num; i++) {
1402 ctx.urbs[i] = usb_alloc_urb(0, GFP_KERNEL);
1403 if (!ctx.urbs[i])
1404 goto free_urbs;
1405 usb_fill_bulk_urb(ctx.urbs[i], udev, pipe, buf, size,
1406 unlink_queued_callback, &ctx);
1407 ctx.urbs[i]->transfer_dma = buf_dma;
1408 ctx.urbs[i]->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
1409 }
1410
1411 /* Submit all the URBs and then unlink URBs num - 4 and num - 2. */
1412 for (i = 0; i < num; i++) {
1413 atomic_inc(&ctx.pending);
1414 retval = usb_submit_urb(ctx.urbs[i], GFP_KERNEL);
1415 if (retval != 0) {
1416 dev_err(&dev->intf->dev, "submit urbs[%d] fail %d\n",
1417 i, retval);
1418 atomic_dec(&ctx.pending);
1419 ctx.status = retval;
1420 break;
1421 }
1422 }
1423 if (i == num) {
1424 usb_unlink_urb(ctx.urbs[num - 4]);
1425 usb_unlink_urb(ctx.urbs[num - 2]);
1426 } else {
1427 while (--i >= 0)
1428 usb_unlink_urb(ctx.urbs[i]);
1429 }
1430
1431 if (atomic_dec_and_test(&ctx.pending)) /* The extra count */
1432 complete(&ctx.complete);
1433 wait_for_completion(&ctx.complete);
1434 retval = ctx.status;
1435
1436 free_urbs:
1437 for (i = 0; i < num; i++)
1438 usb_free_urb(ctx.urbs[i]);
1439 kfree(ctx.urbs);
1440 free_buf:
1441 usb_free_coherent(udev, size, buf, buf_dma);
1442 return retval;
1443}
1444
1445/*-------------------------------------------------------------------------*/
1446
David Brownell28ffd792008-04-25 18:51:10 -07001447static int verify_not_halted(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
1449 int retval;
1450 u16 status;
1451
1452 /* shouldn't look or act halted */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001453 retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001455 ERROR(tdev, "ep %02x couldn't get no-halt status, %d\n",
1456 ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return retval;
1458 }
1459 if (status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001460 ERROR(tdev, "ep %02x bogus status: %04x != 0\n", ep, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 return -EINVAL;
1462 }
David Brownell28ffd792008-04-25 18:51:10 -07001463 retval = simple_io(tdev, urb, 1, 0, 0, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 if (retval != 0)
1465 return -EINVAL;
1466 return 0;
1467}
1468
David Brownell28ffd792008-04-25 18:51:10 -07001469static int verify_halted(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
1471 int retval;
1472 u16 status;
1473
1474 /* should look and act halted */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001475 retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001477 ERROR(tdev, "ep %02x couldn't get halt status, %d\n",
1478 ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 return retval;
1480 }
1481 if (status != 1) {
David Brownell28ffd792008-04-25 18:51:10 -07001482 ERROR(tdev, "ep %02x bogus status: %04x != 1\n", ep, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 return -EINVAL;
1484 }
David Brownell28ffd792008-04-25 18:51:10 -07001485 retval = simple_io(tdev, urb, 1, 0, -EPIPE, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 if (retval != -EPIPE)
1487 return -EINVAL;
David Brownell28ffd792008-04-25 18:51:10 -07001488 retval = simple_io(tdev, urb, 1, 0, -EPIPE, "verify_still_halted");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 if (retval != -EPIPE)
1490 return -EINVAL;
1491 return 0;
1492}
1493
David Brownell28ffd792008-04-25 18:51:10 -07001494static int test_halt(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495{
1496 int retval;
1497
1498 /* shouldn't look or act halted now */
David Brownell28ffd792008-04-25 18:51:10 -07001499 retval = verify_not_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 if (retval < 0)
1501 return retval;
1502
1503 /* set halt (protocol test only), verify it worked */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001504 retval = usb_control_msg(urb->dev, usb_sndctrlpipe(urb->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 USB_REQ_SET_FEATURE, USB_RECIP_ENDPOINT,
1506 USB_ENDPOINT_HALT, ep,
1507 NULL, 0, USB_CTRL_SET_TIMEOUT);
1508 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001509 ERROR(tdev, "ep %02x couldn't set halt, %d\n", ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 return retval;
1511 }
David Brownell28ffd792008-04-25 18:51:10 -07001512 retval = verify_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 if (retval < 0)
1514 return retval;
1515
1516 /* clear halt (tests API + protocol), verify it worked */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001517 retval = usb_clear_halt(urb->dev, urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001519 ERROR(tdev, "ep %02x couldn't clear halt, %d\n", ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return retval;
1521 }
David Brownell28ffd792008-04-25 18:51:10 -07001522 retval = verify_not_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 if (retval < 0)
1524 return retval;
1525
1526 /* NOTE: could also verify SET_INTERFACE clear halts ... */
1527
1528 return 0;
1529}
1530
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001531static int halt_simple(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001533 int ep;
1534 int retval = 0;
1535 struct urb *urb;
1536 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001538 if (udev->speed == USB_SPEED_SUPER)
1539 urb = simple_alloc_urb(udev, 0, 1024);
1540 else
1541 urb = simple_alloc_urb(udev, 0, 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 if (urb == NULL)
1543 return -ENOMEM;
1544
1545 if (dev->in_pipe) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001546 ep = usb_pipeendpoint(dev->in_pipe) | USB_DIR_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 urb->pipe = dev->in_pipe;
David Brownell28ffd792008-04-25 18:51:10 -07001548 retval = test_halt(dev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (retval < 0)
1550 goto done;
1551 }
1552
1553 if (dev->out_pipe) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001554 ep = usb_pipeendpoint(dev->out_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 urb->pipe = dev->out_pipe;
David Brownell28ffd792008-04-25 18:51:10 -07001556 retval = test_halt(dev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
1558done:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001559 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 return retval;
1561}
1562
1563/*-------------------------------------------------------------------------*/
1564
1565/* Control OUT tests use the vendor control requests from Intel's
1566 * USB 2.0 compliance test device: write a buffer, read it back.
1567 *
1568 * Intel's spec only _requires_ that it work for one packet, which
1569 * is pretty weak. Some HCDs place limits here; most devices will
1570 * need to be able to handle more than one OUT data packet. We'll
1571 * try whatever we're told to try.
1572 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001573static int ctrl_out(struct usbtest_dev *dev,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001574 unsigned count, unsigned length, unsigned vary, unsigned offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Orjan Fribergf54fa842006-08-08 23:31:40 -07001576 unsigned i, j, len;
1577 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 u8 *buf;
1579 char *what = "?";
1580 struct usb_device *udev;
Orjan Fribergf54fa842006-08-08 23:31:40 -07001581
David Brownellff7c79e2005-04-22 13:17:00 -07001582 if (length < 1 || length > 0xffff || vary >= length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return -EINVAL;
1584
Martin Fuzzey084fb202011-01-16 19:17:11 +01001585 buf = kmalloc(length + offset, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 if (!buf)
1587 return -ENOMEM;
1588
Martin Fuzzey084fb202011-01-16 19:17:11 +01001589 buf += offset;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001590 udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 len = length;
1592 retval = 0;
1593
1594 /* NOTE: hardware might well act differently if we pushed it
1595 * with lots back-to-back queued requests.
1596 */
1597 for (i = 0; i < count; i++) {
1598 /* write patterned data */
1599 for (j = 0; j < len; j++)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001600 buf[j] = i + j;
1601 retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 0x5b, USB_DIR_OUT|USB_TYPE_VENDOR,
1603 0, 0, buf, len, USB_CTRL_SET_TIMEOUT);
1604 if (retval != len) {
1605 what = "write";
David Brownellff7c79e2005-04-22 13:17:00 -07001606 if (retval >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001607 ERROR(dev, "ctrl_out, wlen %d (expected %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -07001608 retval, len);
1609 retval = -EBADMSG;
1610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 break;
1612 }
1613
1614 /* read it back -- assuming nothing intervened!! */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001615 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 0x5c, USB_DIR_IN|USB_TYPE_VENDOR,
1617 0, 0, buf, len, USB_CTRL_GET_TIMEOUT);
1618 if (retval != len) {
1619 what = "read";
David Brownellff7c79e2005-04-22 13:17:00 -07001620 if (retval >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001621 ERROR(dev, "ctrl_out, rlen %d (expected %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -07001622 retval, len);
1623 retval = -EBADMSG;
1624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 break;
1626 }
1627
1628 /* fail if we can't verify */
1629 for (j = 0; j < len; j++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001630 if (buf[j] != (u8) (i + j)) {
David Brownell28ffd792008-04-25 18:51:10 -07001631 ERROR(dev, "ctrl_out, byte %d is %d not %d\n",
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001632 j, buf[j], (u8) i + j);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 retval = -EBADMSG;
1634 break;
1635 }
1636 }
1637 if (retval < 0) {
1638 what = "verify";
1639 break;
1640 }
1641
1642 len += vary;
David Brownellff7c79e2005-04-22 13:17:00 -07001643
1644 /* [real world] the "zero bytes IN" case isn't really used.
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001645 * hardware can easily trip up in this weird case, since its
David Brownellff7c79e2005-04-22 13:17:00 -07001646 * status stage is IN, not OUT like other ep0in transfers.
1647 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 if (len > length)
David Brownellff7c79e2005-04-22 13:17:00 -07001649 len = realworld ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
1651
1652 if (retval < 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001653 ERROR(dev, "ctrl_out %s failed, code %d, count %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 what, retval, i);
1655
Martin Fuzzey084fb202011-01-16 19:17:11 +01001656 kfree(buf - offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 return retval;
1658}
1659
1660/*-------------------------------------------------------------------------*/
1661
1662/* ISO tests ... mimics common usage
1663 * - buffer length is split into N packets (mostly maxpacket sized)
1664 * - multi-buffers according to sglen
1665 */
1666
1667struct iso_context {
1668 unsigned count;
1669 unsigned pending;
1670 spinlock_t lock;
1671 struct completion done;
Alan Stern9da21502006-05-22 16:47:13 -04001672 int submit_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 unsigned long errors;
Alan Stern9da21502006-05-22 16:47:13 -04001674 unsigned long packet_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 struct usbtest_dev *dev;
1676};
1677
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001678static void iso_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679{
1680 struct iso_context *ctx = urb->context;
1681
1682 spin_lock(&ctx->lock);
1683 ctx->count--;
1684
Alan Stern9da21502006-05-22 16:47:13 -04001685 ctx->packet_count += urb->number_of_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 if (urb->error_count > 0)
1687 ctx->errors += urb->error_count;
Alan Stern9da21502006-05-22 16:47:13 -04001688 else if (urb->status != 0)
1689 ctx->errors += urb->number_of_packets;
Martin Fuzzey40aed522010-10-01 00:20:48 +02001690 else if (urb->actual_length != urb->transfer_buffer_length)
1691 ctx->errors++;
Martin Fuzzey084fb202011-01-16 19:17:11 +01001692 else if (check_guard_bytes(ctx->dev, urb) != 0)
1693 ctx->errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Alan Stern9da21502006-05-22 16:47:13 -04001695 if (urb->status == 0 && ctx->count > (ctx->pending - 1)
1696 && !ctx->submit_error) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001697 int status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 switch (status) {
1699 case 0:
1700 goto done;
1701 default:
David Brownell28ffd792008-04-25 18:51:10 -07001702 dev_err(&ctx->dev->intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 "iso resubmit err %d\n",
1704 status);
1705 /* FALLTHROUGH */
1706 case -ENODEV: /* disconnected */
Alan Stern9da21502006-05-22 16:47:13 -04001707 case -ESHUTDOWN: /* endpoint disabled */
1708 ctx->submit_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 break;
1710 }
1711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 ctx->pending--;
1714 if (ctx->pending == 0) {
1715 if (ctx->errors)
David Brownell28ffd792008-04-25 18:51:10 -07001716 dev_err(&ctx->dev->intf->dev,
Alan Stern9da21502006-05-22 16:47:13 -04001717 "iso test, %lu errors out of %lu\n",
1718 ctx->errors, ctx->packet_count);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001719 complete(&ctx->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 }
1721done:
1722 spin_unlock(&ctx->lock);
1723}
1724
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001725static struct urb *iso_alloc_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 struct usb_device *udev,
1727 int pipe,
1728 struct usb_endpoint_descriptor *desc,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001729 long bytes,
1730 unsigned offset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731)
1732{
1733 struct urb *urb;
1734 unsigned i, maxp, packets;
1735
1736 if (bytes < 0 || !desc)
1737 return NULL;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001738 maxp = 0x7ff & usb_endpoint_maxp(desc);
1739 maxp *= 1 + (0x3 & (usb_endpoint_maxp(desc) >> 11));
Julia Lawalldfa5ec72008-03-04 15:25:11 -08001740 packets = DIV_ROUND_UP(bytes, maxp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001742 urb = usb_alloc_urb(packets, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 if (!urb)
1744 return urb;
1745 urb->dev = udev;
1746 urb->pipe = pipe;
1747
1748 urb->number_of_packets = packets;
1749 urb->transfer_buffer_length = bytes;
Martin Fuzzey084fb202011-01-16 19:17:11 +01001750 urb->transfer_buffer = usb_alloc_coherent(udev, bytes + offset,
1751 GFP_KERNEL,
1752 &urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 if (!urb->transfer_buffer) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001754 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 return NULL;
1756 }
Martin Fuzzey084fb202011-01-16 19:17:11 +01001757 if (offset) {
1758 memset(urb->transfer_buffer, GUARD_BYTE, offset);
1759 urb->transfer_buffer += offset;
1760 urb->transfer_dma += offset;
1761 }
1762 /* For inbound transfers use guard byte so that test fails if
1763 data not correctly copied */
1764 memset(urb->transfer_buffer,
1765 usb_pipein(urb->pipe) ? GUARD_BYTE : 0,
1766 bytes);
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 for (i = 0; i < packets; i++) {
1769 /* here, only the last packet will be short */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001770 urb->iso_frame_desc[i].length = min((unsigned) bytes, maxp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 bytes -= urb->iso_frame_desc[i].length;
1772
1773 urb->iso_frame_desc[i].offset = maxp * i;
1774 }
1775
1776 urb->complete = iso_callback;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001777 /* urb->context = SET BY CALLER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 urb->interval = 1 << (desc->bInterval - 1);
1779 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
1780 return urb;
1781}
1782
1783static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001784test_iso_queue(struct usbtest_dev *dev, struct usbtest_param *param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001785 int pipe, struct usb_endpoint_descriptor *desc, unsigned offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
1787 struct iso_context context;
1788 struct usb_device *udev;
1789 unsigned i;
1790 unsigned long packets = 0;
Alan Stern9da21502006-05-22 16:47:13 -04001791 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 struct urb *urbs[10]; /* FIXME no limit */
1793
1794 if (param->sglen > 10)
1795 return -EDOM;
1796
Huang Ruif55055b2013-10-21 23:15:30 +08001797 memset(&context, 0, sizeof(context));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 context.count = param->iterations * param->sglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 context.dev = dev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001800 init_completion(&context.done);
1801 spin_lock_init(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Huang Ruif55055b2013-10-21 23:15:30 +08001803 memset(urbs, 0, sizeof(urbs));
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001804 udev = testdev_to_usbdev(dev);
David Brownell28ffd792008-04-25 18:51:10 -07001805 dev_info(&dev->intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 "... iso period %d %sframes, wMaxPacket %04x\n",
1807 1 << (desc->bInterval - 1),
1808 (udev->speed == USB_SPEED_HIGH) ? "micro" : "",
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001809 usb_endpoint_maxp(desc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
1811 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001812 urbs[i] = iso_alloc_urb(udev, pipe, desc,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001813 param->length, offset);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001814 if (!urbs[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 status = -ENOMEM;
1816 goto fail;
1817 }
1818 packets += urbs[i]->number_of_packets;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001819 urbs[i]->context = &context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 }
1821 packets *= param->iterations;
David Brownell28ffd792008-04-25 18:51:10 -07001822 dev_info(&dev->intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 "... total %lu msec (%lu packets)\n",
1824 (packets * (1 << (desc->bInterval - 1)))
1825 / ((udev->speed == USB_SPEED_HIGH) ? 8 : 1),
1826 packets);
1827
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001828 spin_lock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 for (i = 0; i < param->sglen; i++) {
Alan Stern9da21502006-05-22 16:47:13 -04001830 ++context.pending;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001831 status = usb_submit_urb(urbs[i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 if (status < 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001833 ERROR(dev, "submit iso[%d], error %d\n", i, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (i == 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001835 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 goto fail;
1837 }
1838
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001839 simple_free_urb(urbs[i]);
Ming Leie10e1be2010-08-02 22:09:01 +08001840 urbs[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 context.pending--;
Alan Stern9da21502006-05-22 16:47:13 -04001842 context.submit_error = 1;
1843 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001846 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001848 wait_for_completion(&context.done);
Alan Stern9da21502006-05-22 16:47:13 -04001849
Ming Leie10e1be2010-08-02 22:09:01 +08001850 for (i = 0; i < param->sglen; i++) {
1851 if (urbs[i])
1852 simple_free_urb(urbs[i]);
1853 }
Alan Stern9da21502006-05-22 16:47:13 -04001854 /*
1855 * Isochronous transfers are expected to fail sometimes. As an
1856 * arbitrary limit, we will report an error if any submissions
1857 * fail or if the transfer failure rate is > 10%.
1858 */
1859 if (status != 0)
1860 ;
1861 else if (context.submit_error)
1862 status = -EACCES;
1863 else if (context.errors > context.packet_count / 10)
1864 status = -EIO;
1865 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867fail:
1868 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001869 if (urbs[i])
1870 simple_free_urb(urbs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
1872 return status;
1873}
1874
Martin Fuzzey084fb202011-01-16 19:17:11 +01001875static int test_unaligned_bulk(
1876 struct usbtest_dev *tdev,
1877 int pipe,
1878 unsigned length,
1879 int iterations,
1880 unsigned transfer_flags,
1881 const char *label)
1882{
1883 int retval;
1884 struct urb *urb = usbtest_alloc_urb(
1885 testdev_to_usbdev(tdev), pipe, length, transfer_flags, 1);
1886
1887 if (!urb)
1888 return -ENOMEM;
1889
1890 retval = simple_io(tdev, urb, iterations, 0, 0, label);
1891 simple_free_urb(urb);
1892 return retval;
1893}
1894
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895/*-------------------------------------------------------------------------*/
1896
1897/* We only have this one interface to user space, through usbfs.
1898 * User mode code can scan usbfs to find N different devices (maybe on
1899 * different busses) to use when testing, and allocate one thread per
1900 * test. So discovery is simplified, and we have no device naming issues.
1901 *
1902 * Don't use these only as stress/load tests. Use them along with with
1903 * other USB bus activity: plugging, unplugging, mousing, mp3 playback,
1904 * video capture, and so on. Run different tests at different times, in
1905 * different sequences. Nothing here should interact with other devices,
1906 * except indirectly by consuming USB bandwidth and CPU resources for test
1907 * threads and request completion. But the only way to know that for sure
1908 * is to test when HC queues are in use by many devices.
David Brownell28ffd792008-04-25 18:51:10 -07001909 *
1910 * WARNING: Because usbfs grabs udev->dev.sem before calling this ioctl(),
1911 * it locks out usbcore in certain code paths. Notably, if you disconnect
1912 * the device-under-test, khubd will wait block forever waiting for the
1913 * ioctl to complete ... so that usb_disconnect() can abort the pending
1914 * urbs and then call usbtest_disconnect(). To abort a test, you're best
1915 * off just killing the userspace task and waiting for it to exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 */
1917
1918static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001919usbtest_ioctl(struct usb_interface *intf, unsigned int code, void *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001921 struct usbtest_dev *dev = usb_get_intfdata(intf);
1922 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 struct usbtest_param *param = buf;
1924 int retval = -EOPNOTSUPP;
1925 struct urb *urb;
1926 struct scatterlist *sg;
1927 struct usb_sg_request req;
1928 struct timeval start;
1929 unsigned i;
1930
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001931 /* FIXME USBDEVFS_CONNECTINFO doesn't say how fast the device is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Vikram Pandita7f4e9852009-11-09 21:24:32 -06001933 pattern = mod_pattern;
1934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 if (code != USBTEST_REQUEST)
1936 return -EOPNOTSUPP;
1937
roel kluin8aafdf62008-10-21 00:36:44 -04001938 if (param->iterations <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 return -EINVAL;
1940
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08001941 if (mutex_lock_interruptible(&dev->lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 return -ERESTARTSYS;
1943
Alan Stern70a1c9e2008-03-06 17:00:58 -05001944 /* FIXME: What if a system sleep starts while a test is running? */
David Brownellff7c79e2005-04-22 13:17:00 -07001945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 /* some devices, like ez-usb default devices, need a non-default
1947 * altsetting to have any active endpoints. some tests change
1948 * altsettings; force a default so most tests don't need to check.
1949 */
1950 if (dev->info->alt >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001951 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 if (intf->altsetting->desc.bInterfaceNumber) {
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08001954 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 return -ENODEV;
1956 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001957 res = set_altsetting(dev, dev->info->alt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 if (res) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001959 dev_err(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 "set altsetting to %d failed, %d\n",
1961 dev->info->alt, res);
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08001962 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 return res;
1964 }
1965 }
1966
1967 /*
1968 * Just a bunch of test cases that every HCD is expected to handle.
1969 *
1970 * Some may need specific firmware, though it'd be good to have
1971 * one firmware image to handle all the test cases.
1972 *
1973 * FIXME add more tests! cancel requests, verify the data, control
1974 * queueing, concurrent read+write threads, and so on.
1975 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001976 do_gettimeofday(&start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 switch (param->test_num) {
1978
1979 case 0:
David Brownell28ffd792008-04-25 18:51:10 -07001980 dev_info(&intf->dev, "TEST 0: NOP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 retval = 0;
1982 break;
1983
1984 /* Simple non-queued bulk I/O tests */
1985 case 1:
1986 if (dev->out_pipe == 0)
1987 break;
David Brownell28ffd792008-04-25 18:51:10 -07001988 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 "TEST 1: write %d bytes %u times\n",
1990 param->length, param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001991 urb = simple_alloc_urb(udev, dev->out_pipe, param->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 if (!urb) {
1993 retval = -ENOMEM;
1994 break;
1995 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001996 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001997 retval = simple_io(dev, urb, param->iterations, 0, 0, "test1");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001998 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 break;
2000 case 2:
2001 if (dev->in_pipe == 0)
2002 break;
David Brownell28ffd792008-04-25 18:51:10 -07002003 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 "TEST 2: read %d bytes %u times\n",
2005 param->length, param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002006 urb = simple_alloc_urb(udev, dev->in_pipe, param->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 if (!urb) {
2008 retval = -ENOMEM;
2009 break;
2010 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002011 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002012 retval = simple_io(dev, urb, param->iterations, 0, 0, "test2");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002013 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 break;
2015 case 3:
2016 if (dev->out_pipe == 0 || param->vary == 0)
2017 break;
David Brownell28ffd792008-04-25 18:51:10 -07002018 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 "TEST 3: write/%d 0..%d bytes %u times\n",
2020 param->vary, param->length, param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002021 urb = simple_alloc_urb(udev, dev->out_pipe, param->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 if (!urb) {
2023 retval = -ENOMEM;
2024 break;
2025 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002026 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002027 retval = simple_io(dev, urb, param->iterations, param->vary,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 0, "test3");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002029 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 break;
2031 case 4:
2032 if (dev->in_pipe == 0 || param->vary == 0)
2033 break;
David Brownell28ffd792008-04-25 18:51:10 -07002034 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 "TEST 4: read/%d 0..%d bytes %u times\n",
2036 param->vary, param->length, param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002037 urb = simple_alloc_urb(udev, dev->in_pipe, param->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 if (!urb) {
2039 retval = -ENOMEM;
2040 break;
2041 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002042 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002043 retval = simple_io(dev, urb, param->iterations, param->vary,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 0, "test4");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002045 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 break;
2047
2048 /* Queued bulk I/O tests */
2049 case 5:
2050 if (dev->out_pipe == 0 || param->sglen == 0)
2051 break;
David Brownell28ffd792008-04-25 18:51:10 -07002052 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 "TEST 5: write %d sglists %d entries of %d bytes\n",
2054 param->iterations,
2055 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002056 sg = alloc_sglist(param->sglen, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 if (!sg) {
2058 retval = -ENOMEM;
2059 break;
2060 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002061 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002062 retval = perform_sglist(dev, param->iterations, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002064 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 break;
2066
2067 case 6:
2068 if (dev->in_pipe == 0 || param->sglen == 0)
2069 break;
David Brownell28ffd792008-04-25 18:51:10 -07002070 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 "TEST 6: read %d sglists %d entries of %d bytes\n",
2072 param->iterations,
2073 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002074 sg = alloc_sglist(param->sglen, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 if (!sg) {
2076 retval = -ENOMEM;
2077 break;
2078 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002079 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002080 retval = perform_sglist(dev, param->iterations, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002082 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 break;
2084 case 7:
2085 if (dev->out_pipe == 0 || param->sglen == 0 || param->vary == 0)
2086 break;
David Brownell28ffd792008-04-25 18:51:10 -07002087 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 "TEST 7: write/%d %d sglists %d entries 0..%d bytes\n",
2089 param->vary, param->iterations,
2090 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002091 sg = alloc_sglist(param->sglen, param->length, param->vary);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 if (!sg) {
2093 retval = -ENOMEM;
2094 break;
2095 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002096 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002097 retval = perform_sglist(dev, param->iterations, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002099 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 break;
2101 case 8:
2102 if (dev->in_pipe == 0 || param->sglen == 0 || param->vary == 0)
2103 break;
David Brownell28ffd792008-04-25 18:51:10 -07002104 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 "TEST 8: read/%d %d sglists %d entries 0..%d bytes\n",
2106 param->vary, param->iterations,
2107 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002108 sg = alloc_sglist(param->sglen, param->length, param->vary);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 if (!sg) {
2110 retval = -ENOMEM;
2111 break;
2112 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002113 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002114 retval = perform_sglist(dev, param->iterations, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002116 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 break;
2118
2119 /* non-queued sanity tests for control (chapter 9 subset) */
2120 case 9:
2121 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002122 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 "TEST 9: ch9 (subset) control tests, %d times\n",
2124 param->iterations);
2125 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002126 retval = ch9_postconfig(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002128 dev_err(&intf->dev, "ch9 subset failed, "
2129 "iterations left %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 break;
2131
2132 /* queued control messaging */
2133 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002135 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 "TEST 10: queue %d control calls, %d times\n",
2137 param->sglen,
2138 param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002139 retval = test_ctrl_queue(dev, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 break;
2141
2142 /* simple non-queued unlinks (ring with one urb) */
2143 case 11:
2144 if (dev->in_pipe == 0 || !param->length)
2145 break;
2146 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002147 dev_info(&intf->dev, "TEST 11: unlink %d reads of %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 param->iterations, param->length);
2149 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002150 retval = unlink_simple(dev, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 param->length);
2152 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002153 dev_err(&intf->dev, "unlink reads failed %d, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 "iterations left %d\n", retval, i);
2155 break;
2156 case 12:
2157 if (dev->out_pipe == 0 || !param->length)
2158 break;
2159 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002160 dev_info(&intf->dev, "TEST 12: unlink %d writes of %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 param->iterations, param->length);
2162 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002163 retval = unlink_simple(dev, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 param->length);
2165 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002166 dev_err(&intf->dev, "unlink writes failed %d, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 "iterations left %d\n", retval, i);
2168 break;
2169
2170 /* ep halt tests */
2171 case 13:
2172 if (dev->out_pipe == 0 && dev->in_pipe == 0)
2173 break;
2174 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002175 dev_info(&intf->dev, "TEST 13: set/clear %d halts\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 param->iterations);
2177 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002178 retval = halt_simple(dev);
David Brownell28ffd792008-04-25 18:51:10 -07002179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002181 ERROR(dev, "halts failed, iterations left %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 break;
2183
2184 /* control write tests */
2185 case 14:
2186 if (!dev->info->ctrl_out)
2187 break;
David Brownell28ffd792008-04-25 18:51:10 -07002188 dev_info(&intf->dev, "TEST 14: %d ep0out, %d..%d vary %d\n",
David Brownellff7c79e2005-04-22 13:17:00 -07002189 param->iterations,
2190 realworld ? 1 : 0, param->length,
2191 param->vary);
David Brownell28ffd792008-04-25 18:51:10 -07002192 retval = ctrl_out(dev, param->iterations,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002193 param->length, param->vary, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 break;
2195
2196 /* iso write tests */
2197 case 15:
2198 if (dev->out_iso_pipe == 0 || param->sglen == 0)
2199 break;
David Brownell28ffd792008-04-25 18:51:10 -07002200 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 "TEST 15: write %d iso, %d entries of %d bytes\n",
2202 param->iterations,
2203 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002204 /* FIRMWARE: iso sink */
2205 retval = test_iso_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002206 dev->out_iso_pipe, dev->iso_out, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 break;
2208
2209 /* iso read tests */
2210 case 16:
2211 if (dev->in_iso_pipe == 0 || param->sglen == 0)
2212 break;
David Brownell28ffd792008-04-25 18:51:10 -07002213 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 "TEST 16: read %d iso, %d entries of %d bytes\n",
2215 param->iterations,
2216 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002217 /* FIRMWARE: iso source */
2218 retval = test_iso_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002219 dev->in_iso_pipe, dev->iso_in, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 break;
2221
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002222 /* FIXME scatterlist cancel (needs helper thread) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Martin Fuzzey084fb202011-01-16 19:17:11 +01002224 /* Tests for bulk I/O using DMA mapping by core and odd address */
2225 case 17:
2226 if (dev->out_pipe == 0)
2227 break;
2228 dev_info(&intf->dev,
2229 "TEST 17: write odd addr %d bytes %u times core map\n",
2230 param->length, param->iterations);
2231
2232 retval = test_unaligned_bulk(
2233 dev, dev->out_pipe,
2234 param->length, param->iterations,
2235 0, "test17");
2236 break;
2237
2238 case 18:
2239 if (dev->in_pipe == 0)
2240 break;
2241 dev_info(&intf->dev,
2242 "TEST 18: read odd addr %d bytes %u times core map\n",
2243 param->length, param->iterations);
2244
2245 retval = test_unaligned_bulk(
2246 dev, dev->in_pipe,
2247 param->length, param->iterations,
2248 0, "test18");
2249 break;
2250
2251 /* Tests for bulk I/O using premapped coherent buffer and odd address */
2252 case 19:
2253 if (dev->out_pipe == 0)
2254 break;
2255 dev_info(&intf->dev,
2256 "TEST 19: write odd addr %d bytes %u times premapped\n",
2257 param->length, param->iterations);
2258
2259 retval = test_unaligned_bulk(
2260 dev, dev->out_pipe,
2261 param->length, param->iterations,
2262 URB_NO_TRANSFER_DMA_MAP, "test19");
2263 break;
2264
2265 case 20:
2266 if (dev->in_pipe == 0)
2267 break;
2268 dev_info(&intf->dev,
2269 "TEST 20: read odd addr %d bytes %u times premapped\n",
2270 param->length, param->iterations);
2271
2272 retval = test_unaligned_bulk(
2273 dev, dev->in_pipe,
2274 param->length, param->iterations,
2275 URB_NO_TRANSFER_DMA_MAP, "test20");
2276 break;
2277
2278 /* control write tests with unaligned buffer */
2279 case 21:
2280 if (!dev->info->ctrl_out)
2281 break;
2282 dev_info(&intf->dev,
2283 "TEST 21: %d ep0out odd addr, %d..%d vary %d\n",
2284 param->iterations,
2285 realworld ? 1 : 0, param->length,
2286 param->vary);
2287 retval = ctrl_out(dev, param->iterations,
2288 param->length, param->vary, 1);
2289 break;
2290
2291 /* unaligned iso tests */
2292 case 22:
2293 if (dev->out_iso_pipe == 0 || param->sglen == 0)
2294 break;
2295 dev_info(&intf->dev,
2296 "TEST 22: write %d iso odd, %d entries of %d bytes\n",
2297 param->iterations,
2298 param->sglen, param->length);
2299 retval = test_iso_queue(dev, param,
2300 dev->out_iso_pipe, dev->iso_out, 1);
2301 break;
2302
2303 case 23:
2304 if (dev->in_iso_pipe == 0 || param->sglen == 0)
2305 break;
2306 dev_info(&intf->dev,
2307 "TEST 23: read %d iso odd, %d entries of %d bytes\n",
2308 param->iterations,
2309 param->sglen, param->length);
2310 retval = test_iso_queue(dev, param,
2311 dev->in_iso_pipe, dev->iso_in, 1);
2312 break;
2313
Alan Stern869410f2011-04-14 11:21:04 -04002314 /* unlink URBs from a bulk-OUT queue */
2315 case 24:
2316 if (dev->out_pipe == 0 || !param->length || param->sglen < 4)
2317 break;
2318 retval = 0;
Alan Stern2cb50002013-01-02 13:58:18 -05002319 dev_info(&intf->dev, "TEST 24: unlink from %d queues of "
Alan Stern869410f2011-04-14 11:21:04 -04002320 "%d %d-byte writes\n",
2321 param->iterations, param->sglen, param->length);
2322 for (i = param->iterations; retval == 0 && i > 0; --i) {
2323 retval = unlink_queued(dev, dev->out_pipe,
2324 param->sglen, param->length);
2325 if (retval) {
2326 dev_err(&intf->dev,
2327 "unlink queued writes failed %d, "
2328 "iterations left %d\n", retval, i);
2329 break;
2330 }
2331 }
2332 break;
2333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002335 do_gettimeofday(&param->duration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 param->duration.tv_sec -= start.tv_sec;
2337 param->duration.tv_usec -= start.tv_usec;
2338 if (param->duration.tv_usec < 0) {
2339 param->duration.tv_usec += 1000 * 1000;
2340 param->duration.tv_sec -= 1;
2341 }
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002342 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 return retval;
2344}
2345
2346/*-------------------------------------------------------------------------*/
2347
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002348static unsigned force_interrupt;
2349module_param(force_interrupt, uint, 0);
2350MODULE_PARM_DESC(force_interrupt, "0 = test default; else interrupt");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
2352#ifdef GENERIC
2353static unsigned short vendor;
2354module_param(vendor, ushort, 0);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002355MODULE_PARM_DESC(vendor, "vendor code (from usb-if)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
2357static unsigned short product;
2358module_param(product, ushort, 0);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002359MODULE_PARM_DESC(product, "product code (from vendor)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360#endif
2361
2362static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002363usbtest_probe(struct usb_interface *intf, const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364{
2365 struct usb_device *udev;
2366 struct usbtest_dev *dev;
2367 struct usbtest_info *info;
2368 char *rtest, *wtest;
2369 char *irtest, *iwtest;
2370
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002371 udev = interface_to_usbdev(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
2373#ifdef GENERIC
2374 /* specify devices by module parameters? */
2375 if (id->match_flags == 0) {
2376 /* vendor match required, product match optional */
2377 if (!vendor || le16_to_cpu(udev->descriptor.idVendor) != (u16)vendor)
2378 return -ENODEV;
2379 if (product && le16_to_cpu(udev->descriptor.idProduct) != (u16)product)
2380 return -ENODEV;
David Brownell28ffd792008-04-25 18:51:10 -07002381 dev_info(&intf->dev, "matched module params, "
2382 "vend=0x%04x prod=0x%04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 le16_to_cpu(udev->descriptor.idVendor),
2384 le16_to_cpu(udev->descriptor.idProduct));
2385 }
2386#endif
2387
Christoph Lametere94b1762006-12-06 20:33:17 -08002388 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 if (!dev)
2390 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 info = (struct usbtest_info *) id->driver_info;
2392 dev->info = info;
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002393 mutex_init(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
2395 dev->intf = intf;
2396
2397 /* cacheline-aligned scratch for i/o */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002398 dev->buf = kmalloc(TBUF_SIZE, GFP_KERNEL);
2399 if (dev->buf == NULL) {
2400 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 return -ENOMEM;
2402 }
2403
2404 /* NOTE this doesn't yet test the handful of difference that are
2405 * visible with high speed interrupts: bigger maxpacket (1K) and
2406 * "high bandwidth" modes (up to 3 packets/uframe).
2407 */
2408 rtest = wtest = "";
2409 irtest = iwtest = "";
2410 if (force_interrupt || udev->speed == USB_SPEED_LOW) {
2411 if (info->ep_in) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002412 dev->in_pipe = usb_rcvintpipe(udev, info->ep_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 rtest = " intr-in";
2414 }
2415 if (info->ep_out) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002416 dev->out_pipe = usb_sndintpipe(udev, info->ep_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 wtest = " intr-out";
2418 }
2419 } else {
Alan Sternd0b46522013-01-30 16:38:11 -05002420 if (override_alt >= 0 || info->autoconf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 int status;
2422
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002423 status = get_endpoints(dev, intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 if (status < 0) {
Arjan van de Venb6c63932008-07-25 01:45:52 -07002425 WARNING(dev, "couldn't get endpoints, %d\n",
David Brownell28ffd792008-04-25 18:51:10 -07002426 status);
Julia Lawallf4a728d2012-03-25 21:08:32 +02002427 kfree(dev->buf);
2428 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 return status;
2430 }
2431 /* may find bulk or ISO pipes */
2432 } else {
2433 if (info->ep_in)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002434 dev->in_pipe = usb_rcvbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 info->ep_in);
2436 if (info->ep_out)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002437 dev->out_pipe = usb_sndbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 info->ep_out);
2439 }
2440 if (dev->in_pipe)
2441 rtest = " bulk-in";
2442 if (dev->out_pipe)
2443 wtest = " bulk-out";
2444 if (dev->in_iso_pipe)
2445 irtest = " iso-in";
2446 if (dev->out_iso_pipe)
2447 iwtest = " iso-out";
2448 }
2449
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002450 usb_set_intfdata(intf, dev);
2451 dev_info(&intf->dev, "%s\n", info->name);
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02002452 dev_info(&intf->dev, "%s {control%s%s%s%s%s} tests%s\n",
2453 usb_speed_string(udev->speed),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 info->ctrl_out ? " in/out" : "",
2455 rtest, wtest,
2456 irtest, iwtest,
2457 info->alt >= 0 ? " (+alt)" : "");
2458 return 0;
2459}
2460
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002461static int usbtest_suspend(struct usb_interface *intf, pm_message_t message)
David Brownellff7c79e2005-04-22 13:17:00 -07002462{
David Brownellff7c79e2005-04-22 13:17:00 -07002463 return 0;
2464}
2465
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002466static int usbtest_resume(struct usb_interface *intf)
David Brownellff7c79e2005-04-22 13:17:00 -07002467{
David Brownellff7c79e2005-04-22 13:17:00 -07002468 return 0;
2469}
2470
2471
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002472static void usbtest_disconnect(struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002474 struct usbtest_dev *dev = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002476 usb_set_intfdata(intf, NULL);
2477 dev_dbg(&intf->dev, "disconnect\n");
2478 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479}
2480
2481/* Basic testing only needs a device that can source or sink bulk traffic.
2482 * Any device can test control transfers (default with GENERIC binding).
2483 *
2484 * Several entries work with the default EP0 implementation that's built
2485 * into EZ-USB chips. There's a default vendor ID which can be overridden
2486 * by (very) small config EEPROMS, but otherwise all these devices act
2487 * identically until firmware is loaded: only EP0 works. It turns out
2488 * to be easy to make other endpoints work, without modifying that EP0
2489 * behavior. For now, we expect that kind of firmware.
2490 */
2491
2492/* an21xx or fx versions of ez-usb */
2493static struct usbtest_info ez1_info = {
2494 .name = "EZ-USB device",
2495 .ep_in = 2,
2496 .ep_out = 2,
2497 .alt = 1,
2498};
2499
2500/* fx2 version of ez-usb */
2501static struct usbtest_info ez2_info = {
2502 .name = "FX2 device",
2503 .ep_in = 6,
2504 .ep_out = 2,
2505 .alt = 1,
2506};
2507
2508/* ezusb family device with dedicated usb test firmware,
2509 */
2510static struct usbtest_info fw_info = {
2511 .name = "usb test device",
2512 .ep_in = 2,
2513 .ep_out = 2,
2514 .alt = 1,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002515 .autoconf = 1, /* iso and ctrl_out need autoconf */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 .ctrl_out = 1,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002517 .iso = 1, /* iso_ep's are #8 in/out */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518};
2519
2520/* peripheral running Linux and 'zero.c' test firmware, or
2521 * its user-mode cousin. different versions of this use
2522 * different hardware with the same vendor/product codes.
2523 * host side MUST rely on the endpoint descriptors.
2524 */
2525static struct usbtest_info gz_info = {
2526 .name = "Linux gadget zero",
2527 .autoconf = 1,
2528 .ctrl_out = 1,
Boyan Nedeltchev4b85c622012-11-12 13:06:06 +02002529 .iso = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 .alt = 0,
2531};
2532
2533static struct usbtest_info um_info = {
2534 .name = "Linux user mode test driver",
2535 .autoconf = 1,
2536 .alt = -1,
2537};
2538
2539static struct usbtest_info um2_info = {
2540 .name = "Linux user mode ISO test driver",
2541 .autoconf = 1,
2542 .iso = 1,
2543 .alt = -1,
2544};
2545
2546#ifdef IBOT2
2547/* this is a nice source of high speed bulk data;
2548 * uses an FX2, with firmware provided in the device
2549 */
2550static struct usbtest_info ibot2_info = {
2551 .name = "iBOT2 webcam",
2552 .ep_in = 2,
2553 .alt = -1,
2554};
2555#endif
2556
2557#ifdef GENERIC
2558/* we can use any device to test control traffic */
2559static struct usbtest_info generic_info = {
2560 .name = "Generic USB device",
2561 .alt = -1,
2562};
2563#endif
2564
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
Németh Márton33b9e162010-01-10 15:34:45 +01002566static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 /*-------------------------------------------------------------*/
2569
2570 /* EZ-USB devices which download firmware to replace (or in our
2571 * case augment) the default device implementation.
2572 */
2573
2574 /* generic EZ-USB FX controller */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002575 { USB_DEVICE(0x0547, 0x2235),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002577 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578
2579 /* CY3671 development board with EZ-USB FX */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002580 { USB_DEVICE(0x0547, 0x0080),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002582 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
2584 /* generic EZ-USB FX2 controller (or development board) */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002585 { USB_DEVICE(0x04b4, 0x8613),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 .driver_info = (unsigned long) &ez2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002587 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
2589 /* re-enumerated usb test device firmware */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002590 { USB_DEVICE(0xfff0, 0xfff0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 .driver_info = (unsigned long) &fw_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002592 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
2594 /* "Gadget Zero" firmware runs under Linux */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002595 { USB_DEVICE(0x0525, 0xa4a0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 .driver_info = (unsigned long) &gz_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002597 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
2599 /* so does a user-mode variant */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002600 { USB_DEVICE(0x0525, 0xa4a4),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 .driver_info = (unsigned long) &um_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002602 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
2604 /* ... and a user-mode variant that talks iso */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002605 { USB_DEVICE(0x0525, 0xa4a3),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 .driver_info = (unsigned long) &um2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002607 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
2609#ifdef KEYSPAN_19Qi
2610 /* Keyspan 19qi uses an21xx (original EZ-USB) */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002611 /* this does not coexist with the real Keyspan 19qi driver! */
2612 { USB_DEVICE(0x06cd, 0x010b),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002614 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615#endif
2616
2617 /*-------------------------------------------------------------*/
2618
2619#ifdef IBOT2
2620 /* iBOT2 makes a nice source of high speed bulk-in data */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002621 /* this does not coexist with a real iBOT2 driver! */
2622 { USB_DEVICE(0x0b62, 0x0059),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 .driver_info = (unsigned long) &ibot2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002624 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625#endif
2626
2627 /*-------------------------------------------------------------*/
2628
2629#ifdef GENERIC
2630 /* module params can specify devices to use for control tests */
2631 { .driver_info = (unsigned long) &generic_info, },
2632#endif
2633
2634 /*-------------------------------------------------------------*/
2635
2636 { }
2637};
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002638MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
2640static struct usb_driver usbtest_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 .name = "usbtest",
2642 .id_table = id_table,
2643 .probe = usbtest_probe,
Andi Kleenc532b292010-06-01 23:04:41 +02002644 .unlocked_ioctl = usbtest_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 .disconnect = usbtest_disconnect,
David Brownellff7c79e2005-04-22 13:17:00 -07002646 .suspend = usbtest_suspend,
2647 .resume = usbtest_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648};
2649
2650/*-------------------------------------------------------------------------*/
2651
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002652static int __init usbtest_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653{
2654#ifdef GENERIC
2655 if (vendor)
David Brownell28ffd792008-04-25 18:51:10 -07002656 pr_debug("params: vend=0x%04x prod=0x%04x\n", vendor, product);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657#endif
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002658 return usb_register(&usbtest_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659}
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002660module_init(usbtest_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002662static void __exit usbtest_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002664 usb_deregister(&usbtest_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665}
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002666module_exit(usbtest_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002668MODULE_DESCRIPTION("USB Core/HCD Testing Driver");
2669MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670