blob: a35b427c0bac59ce6965b37d28c6a8748ae03dd5 [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
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020016/* FIXME make these public somewhere; usbdevfs.h? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017struct usbtest_param {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020018 /* inputs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 unsigned test_num; /* 0..(TEST_CASES-1) */
20 unsigned iterations;
21 unsigned length;
22 unsigned vary;
23 unsigned sglen;
24
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020025 /* outputs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 struct timeval duration;
27};
28#define USBTEST_REQUEST _IOWR('U', 100, struct usbtest_param)
29
30/*-------------------------------------------------------------------------*/
31
32#define GENERIC /* let probe() bind using module params */
33
34/* Some devices that can be used for testing will have "real" drivers.
35 * Entries for those need to be enabled here by hand, after disabling
36 * that "real" driver.
37 */
38//#define IBOT2 /* grab iBOT2 webcams */
39//#define KEYSPAN_19Qi /* grab un-renumerated serial adapter */
40
41/*-------------------------------------------------------------------------*/
42
43struct usbtest_info {
44 const char *name;
45 u8 ep_in; /* bulk/intr source */
46 u8 ep_out; /* bulk/intr sink */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020047 unsigned autoconf:1;
48 unsigned ctrl_out:1;
49 unsigned iso:1; /* try iso in/out */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 int alt;
51};
52
53/* this is accessed only through usbfs ioctl calls.
54 * one ioctl to issue a test ... one lock per device.
55 * tests create other threads if they need them.
56 * urbs and buffers are allocated dynamically,
57 * and data generated deterministically.
58 */
59struct usbtest_dev {
60 struct usb_interface *intf;
61 struct usbtest_info *info;
62 int in_pipe;
63 int out_pipe;
64 int in_iso_pipe;
65 int out_iso_pipe;
66 struct usb_endpoint_descriptor *iso_in, *iso_out;
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -080067 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#define TBUF_SIZE 256
70 u8 *buf;
71};
72
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020073static struct usb_device *testdev_to_usbdev(struct usbtest_dev *test)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020075 return interface_to_usbdev(test->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
77
78/* set up all urbs so they can be used with either bulk or interrupt */
79#define INTERRUPT_RATE 1 /* msec/transfer */
80
David Brownell28ffd792008-04-25 18:51:10 -070081#define ERROR(tdev, fmt, args...) \
82 dev_err(&(tdev)->intf->dev , fmt , ## args)
Arjan van de Venb6c63932008-07-25 01:45:52 -070083#define WARNING(tdev, fmt, args...) \
David Brownell28ffd792008-04-25 18:51:10 -070084 dev_warn(&(tdev)->intf->dev , fmt , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86/*-------------------------------------------------------------------------*/
87
88static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020089get_endpoints(struct usbtest_dev *dev, struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 int tmp;
92 struct usb_host_interface *alt;
93 struct usb_host_endpoint *in, *out;
94 struct usb_host_endpoint *iso_in, *iso_out;
95 struct usb_device *udev;
96
97 for (tmp = 0; tmp < intf->num_altsetting; tmp++) {
98 unsigned ep;
99
100 in = out = NULL;
101 iso_in = iso_out = NULL;
102 alt = intf->altsetting + tmp;
103
104 /* take the first altsetting with in-bulk + out-bulk;
105 * ignore other endpoints and altsetttings.
106 */
107 for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) {
108 struct usb_host_endpoint *e;
109
110 e = alt->endpoint + ep;
111 switch (e->desc.bmAttributes) {
112 case USB_ENDPOINT_XFER_BULK:
113 break;
114 case USB_ENDPOINT_XFER_ISOC:
115 if (dev->info->iso)
116 goto try_iso;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200117 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 default:
119 continue;
120 }
Luiz Fernando N. Capitulino4d823dd2006-10-26 13:03:02 -0300121 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 if (!in)
123 in = e;
124 } else {
125 if (!out)
126 out = e;
127 }
128 continue;
129try_iso:
Luiz Fernando N. Capitulino4d823dd2006-10-26 13:03:02 -0300130 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 if (!iso_in)
132 iso_in = e;
133 } else {
134 if (!iso_out)
135 iso_out = e;
136 }
137 }
Ming Lei951fd8e2010-08-02 22:09:17 +0800138 if ((in && out) || iso_in || iso_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 goto found;
140 }
141 return -EINVAL;
142
143found:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200144 udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (alt->desc.bAlternateSetting != 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200146 tmp = usb_set_interface(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 alt->desc.bInterfaceNumber,
148 alt->desc.bAlternateSetting);
149 if (tmp < 0)
150 return tmp;
151 }
152
153 if (in) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200154 dev->in_pipe = usb_rcvbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200156 dev->out_pipe = usb_sndbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 out->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
158 }
159 if (iso_in) {
160 dev->iso_in = &iso_in->desc;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200161 dev->in_iso_pipe = usb_rcvisocpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 iso_in->desc.bEndpointAddress
163 & USB_ENDPOINT_NUMBER_MASK);
Ming Lei951fd8e2010-08-02 22:09:17 +0800164 }
165
166 if (iso_out) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 dev->iso_out = &iso_out->desc;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200168 dev->out_iso_pipe = usb_sndisocpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 iso_out->desc.bEndpointAddress
170 & USB_ENDPOINT_NUMBER_MASK);
171 }
172 return 0;
173}
174
175/*-------------------------------------------------------------------------*/
176
177/* Support for testing basic non-queued I/O streams.
178 *
179 * These just package urbs as requests that can be easily canceled.
180 * Each urb's data buffer is dynamically allocated; callers can fill
181 * them with non-zero test data (or test for it) when appropriate.
182 */
183
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200184static void simple_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Ming Leicdc97792008-02-24 18:41:47 +0800186 complete(urb->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200189static struct urb *simple_alloc_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 struct usb_device *udev,
191 int pipe,
192 unsigned long bytes
193)
194{
195 struct urb *urb;
196
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200197 urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (!urb)
199 return urb;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200200 usb_fill_bulk_urb(urb, udev, pipe, NULL, bytes, simple_callback, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 urb->interval = (udev->speed == USB_SPEED_HIGH)
202 ? (INTERRUPT_RATE << 3)
203 : INTERRUPT_RATE;
204 urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200205 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 urb->transfer_flags |= URB_SHORT_NOT_OK;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200207 urb->transfer_buffer = usb_alloc_coherent(udev, bytes, GFP_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 &urb->transfer_dma);
209 if (!urb->transfer_buffer) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200210 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 urb = NULL;
212 } else
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200213 memset(urb->transfer_buffer, 0, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return urb;
215}
216
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200217static unsigned pattern;
Vikram Pandita7f4e9852009-11-09 21:24:32 -0600218static unsigned mod_pattern;
219module_param_named(pattern, mod_pattern, uint, S_IRUGO | S_IWUSR);
220MODULE_PARM_DESC(mod_pattern, "i/o pattern (0 == zeroes)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200222static inline void simple_fill_buf(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 unsigned i;
225 u8 *buf = urb->transfer_buffer;
226 unsigned len = urb->transfer_buffer_length;
227
228 switch (pattern) {
229 default:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200230 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 case 0:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200232 memset(buf, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 break;
234 case 1: /* mod63 */
235 for (i = 0; i < len; i++)
236 *buf++ = (u8) (i % 63);
237 break;
238 }
239}
240
David Brownell28ffd792008-04-25 18:51:10 -0700241static inline int simple_check_buf(struct usbtest_dev *tdev, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 unsigned i;
244 u8 expected;
245 u8 *buf = urb->transfer_buffer;
246 unsigned len = urb->actual_length;
247
248 for (i = 0; i < len; i++, buf++) {
249 switch (pattern) {
250 /* all-zeroes has no synchronization issues */
251 case 0:
252 expected = 0;
253 break;
254 /* mod63 stays in sync with short-terminated transfers,
255 * or otherwise when host and gadget agree on how large
256 * each usb transfer request should be. resync is done
257 * with set_interface or set_config.
258 */
259 case 1: /* mod63 */
260 expected = i % 63;
261 break;
262 /* always fail unsupported patterns */
263 default:
264 expected = !*buf;
265 break;
266 }
267 if (*buf == expected)
268 continue;
David Brownell28ffd792008-04-25 18:51:10 -0700269 ERROR(tdev, "buf[%d] = %d (not %d)\n", i, *buf, expected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return -EINVAL;
271 }
272 return 0;
273}
274
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200275static void simple_free_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Daniel Mack997ea582010-04-12 13:17:25 +0200277 usb_free_coherent(urb->dev, urb->transfer_buffer_length,
278 urb->transfer_buffer, urb->transfer_dma);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200279 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200282static int simple_io(
David Brownell28ffd792008-04-25 18:51:10 -0700283 struct usbtest_dev *tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 struct urb *urb,
285 int iterations,
286 int vary,
287 int expected,
288 const char *label
289)
290{
291 struct usb_device *udev = urb->dev;
292 int max = urb->transfer_buffer_length;
293 struct completion completion;
294 int retval = 0;
295
296 urb->context = &completion;
297 while (retval == 0 && iterations-- > 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200298 init_completion(&completion);
299 if (usb_pipeout(urb->pipe))
300 simple_fill_buf(urb);
301 retval = usb_submit_urb(urb, GFP_KERNEL);
302 if (retval != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 break;
304
305 /* NOTE: no timeouts; can't be broken out of by interrupt */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200306 wait_for_completion(&completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 retval = urb->status;
308 urb->dev = udev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200309 if (retval == 0 && usb_pipein(urb->pipe))
David Brownell28ffd792008-04-25 18:51:10 -0700310 retval = simple_check_buf(tdev, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 if (vary) {
313 int len = urb->transfer_buffer_length;
314
315 len += vary;
316 len %= max;
317 if (len == 0)
318 len = (vary < max) ? vary : max;
319 urb->transfer_buffer_length = len;
320 }
321
322 /* FIXME if endpoint halted, clear halt (and log) */
323 }
324 urb->transfer_buffer_length = max;
325
326 if (expected != retval)
David Brownell28ffd792008-04-25 18:51:10 -0700327 dev_err(&udev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 "%s failed, iterations left %d, status %d (not %d)\n",
329 label, iterations, retval, expected);
330 return retval;
331}
332
333
334/*-------------------------------------------------------------------------*/
335
336/* We use scatterlist primitives to test queued I/O.
337 * Yes, this also tests the scatterlist primitives.
338 */
339
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200340static void free_sglist(struct scatterlist *sg, int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 unsigned i;
David Brownell28ffd792008-04-25 18:51:10 -0700343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (!sg)
345 return;
346 for (i = 0; i < nents; i++) {
Jens Axboe45711f12007-10-22 21:19:53 +0200347 if (!sg_page(&sg[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 continue;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200349 kfree(sg_virt(&sg[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200351 kfree(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
354static struct scatterlist *
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200355alloc_sglist(int nents, int max, int vary)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct scatterlist *sg;
358 unsigned i;
359 unsigned size = max;
360
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200361 sg = kmalloc(nents * sizeof *sg, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (!sg)
363 return NULL;
Alan Stern4756feb2008-03-27 10:15:22 -0400364 sg_init_table(sg, nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 for (i = 0; i < nents; i++) {
367 char *buf;
David Brownell8b524902006-04-02 10:20:15 -0800368 unsigned j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200370 buf = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (!buf) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200372 free_sglist(sg, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return NULL;
374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 /* kmalloc pages are always physically contiguous! */
Alan Stern4756feb2008-03-27 10:15:22 -0400377 sg_set_buf(&sg[i], buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
David Brownell8b524902006-04-02 10:20:15 -0800379 switch (pattern) {
380 case 0:
381 /* already zeroed */
382 break;
383 case 1:
384 for (j = 0; j < size; j++)
385 *buf++ = (u8) (j % 63);
386 break;
387 }
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (vary) {
390 size += vary;
391 size %= max;
392 if (size == 0)
393 size = (vary < max) ? vary : max;
394 }
395 }
396
397 return sg;
398}
399
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200400static int perform_sglist(
David Brownell28ffd792008-04-25 18:51:10 -0700401 struct usbtest_dev *tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 unsigned iterations,
403 int pipe,
404 struct usb_sg_request *req,
405 struct scatterlist *sg,
406 int nents
407)
408{
David Brownell28ffd792008-04-25 18:51:10 -0700409 struct usb_device *udev = testdev_to_usbdev(tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 int retval = 0;
411
412 while (retval == 0 && iterations-- > 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200413 retval = usb_sg_init(req, udev, pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 (udev->speed == USB_SPEED_HIGH)
415 ? (INTERRUPT_RATE << 3)
416 : INTERRUPT_RATE,
Christoph Lametere94b1762006-12-06 20:33:17 -0800417 sg, nents, 0, GFP_KERNEL);
David Brownell28ffd792008-04-25 18:51:10 -0700418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (retval)
420 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200421 usb_sg_wait(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 retval = req->status;
423
David Brownell8b524902006-04-02 10:20:15 -0800424 /* FIXME check resulting data pattern */
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /* FIXME if endpoint halted, clear halt (and log) */
427 }
428
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200429 /* FIXME for unlink or fault handling tests, don't report
430 * failure if retval is as we expected ...
431 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -0700433 ERROR(tdev, "perform_sglist failed, "
434 "iterations left %d, status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 iterations, retval);
436 return retval;
437}
438
439
440/*-------------------------------------------------------------------------*/
441
442/* unqueued control message testing
443 *
444 * there's a nice set of device functional requirements in chapter 9 of the
445 * usb 2.0 spec, which we can apply to ANY device, even ones that don't use
446 * special test firmware.
447 *
448 * we know the device is configured (or suspended) by the time it's visible
449 * through usbfs. we can't change that, so we won't test enumeration (which
450 * worked 'well enough' to get here, this time), power management (ditto),
451 * or remote wakeup (which needs human interaction).
452 */
453
454static unsigned realworld = 1;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200455module_param(realworld, uint, 0);
456MODULE_PARM_DESC(realworld, "clear to demand stricter spec compliance");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200458static int get_altsetting(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 struct usb_interface *iface = dev->intf;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200461 struct usb_device *udev = interface_to_usbdev(iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 int retval;
463
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200464 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 USB_REQ_GET_INTERFACE, USB_DIR_IN|USB_RECIP_INTERFACE,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200466 0, iface->altsetting[0].desc.bInterfaceNumber,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 dev->buf, 1, USB_CTRL_GET_TIMEOUT);
468 switch (retval) {
469 case 1:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200470 return dev->buf[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 case 0:
472 retval = -ERANGE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200473 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 default:
475 return retval;
476 }
477}
478
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200479static int set_altsetting(struct usbtest_dev *dev, int alternate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 struct usb_interface *iface = dev->intf;
482 struct usb_device *udev;
483
484 if (alternate < 0 || alternate >= 256)
485 return -EINVAL;
486
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200487 udev = interface_to_usbdev(iface);
488 return usb_set_interface(udev,
489 iface->altsetting[0].desc.bInterfaceNumber,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 alternate);
491}
492
David Brownell28ffd792008-04-25 18:51:10 -0700493static int is_good_config(struct usbtest_dev *tdev, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
495 struct usb_config_descriptor *config;
David Brownell28ffd792008-04-25 18:51:10 -0700496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 if (len < sizeof *config)
498 return 0;
David Brownell28ffd792008-04-25 18:51:10 -0700499 config = (struct usb_config_descriptor *) tdev->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 switch (config->bDescriptorType) {
502 case USB_DT_CONFIG:
503 case USB_DT_OTHER_SPEED_CONFIG:
504 if (config->bLength != 9) {
David Brownell28ffd792008-04-25 18:51:10 -0700505 ERROR(tdev, "bogus config descriptor length\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 return 0;
507 }
508 /* this bit 'must be 1' but often isn't */
509 if (!realworld && !(config->bmAttributes & 0x80)) {
David Brownell28ffd792008-04-25 18:51:10 -0700510 ERROR(tdev, "high bit of config attributes not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return 0;
512 }
513 if (config->bmAttributes & 0x1f) { /* reserved == 0 */
David Brownell28ffd792008-04-25 18:51:10 -0700514 ERROR(tdev, "reserved config bits set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return 0;
516 }
517 break;
518 default:
519 return 0;
520 }
521
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200522 if (le16_to_cpu(config->wTotalLength) == len) /* read it all */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return 1;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200524 if (le16_to_cpu(config->wTotalLength) >= TBUF_SIZE) /* max partial read */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return 1;
David Brownell28ffd792008-04-25 18:51:10 -0700526 ERROR(tdev, "bogus config descriptor read size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return 0;
528}
529
530/* sanity test for standard requests working with usb_control_mesg() and some
531 * of the utility functions which use it.
532 *
533 * this doesn't test how endpoint halts behave or data toggles get set, since
534 * we won't do I/O to bulk/interrupt endpoints here (which is how to change
535 * halt or toggle). toggle testing is impractical without support from hcds.
536 *
537 * this avoids failing devices linux would normally work with, by not testing
538 * config/altsetting operations for devices that only support their defaults.
539 * such devices rarely support those needless operations.
540 *
541 * NOTE that since this is a sanity test, it's not examining boundary cases
542 * to see if usbcore, hcd, and device all behave right. such testing would
543 * involve varied read sizes and other operation sequences.
544 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200545static int ch9_postconfig(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 struct usb_interface *iface = dev->intf;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200548 struct usb_device *udev = interface_to_usbdev(iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 int i, alt, retval;
550
551 /* [9.2.3] if there's more than one altsetting, we need to be able to
552 * set and get each one. mostly trusts the descriptors from usbcore.
553 */
554 for (i = 0; i < iface->num_altsetting; i++) {
555
556 /* 9.2.3 constrains the range here */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200557 alt = iface->altsetting[i].desc.bAlternateSetting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (alt < 0 || alt >= iface->num_altsetting) {
David Brownell28ffd792008-04-25 18:51:10 -0700559 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 "invalid alt [%d].bAltSetting = %d\n",
561 i, alt);
562 }
563
564 /* [real world] get/set unimplemented if there's only one */
565 if (realworld && iface->num_altsetting == 1)
566 continue;
567
568 /* [9.4.10] set_interface */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200569 retval = set_altsetting(dev, alt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -0700571 dev_err(&iface->dev, "can't set_interface = %d, %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 alt, retval);
573 return retval;
574 }
575
576 /* [9.4.4] get_interface always works */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200577 retval = get_altsetting(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (retval != alt) {
David Brownell28ffd792008-04-25 18:51:10 -0700579 dev_err(&iface->dev, "get alt should be %d, was %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 alt, retval);
581 return (retval < 0) ? retval : -EDOM;
582 }
583
584 }
585
586 /* [real world] get_config unimplemented if there's only one */
587 if (!realworld || udev->descriptor.bNumConfigurations != 1) {
588 int expected = udev->actconfig->desc.bConfigurationValue;
589
590 /* [9.4.2] get_configuration always works
591 * ... although some cheap devices (like one TI Hub I've got)
592 * won't return config descriptors except before set_config.
593 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200594 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 USB_REQ_GET_CONFIGURATION,
596 USB_DIR_IN | USB_RECIP_DEVICE,
597 0, 0, dev->buf, 1, USB_CTRL_GET_TIMEOUT);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200598 if (retval != 1 || dev->buf[0] != expected) {
David Brownell28ffd792008-04-25 18:51:10 -0700599 dev_err(&iface->dev, "get config --> %d %d (1 %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -0700600 retval, dev->buf[0], expected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return (retval < 0) ? retval : -EDOM;
602 }
603 }
604
605 /* there's always [9.4.3] a device descriptor [9.6.1] */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200606 retval = usb_get_descriptor(udev, USB_DT_DEVICE, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 dev->buf, sizeof udev->descriptor);
608 if (retval != sizeof udev->descriptor) {
David Brownell28ffd792008-04-25 18:51:10 -0700609 dev_err(&iface->dev, "dev descriptor --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return (retval < 0) ? retval : -EDOM;
611 }
612
613 /* there's always [9.4.3] at least one config descriptor [9.6.3] */
614 for (i = 0; i < udev->descriptor.bNumConfigurations; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200615 retval = usb_get_descriptor(udev, USB_DT_CONFIG, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 dev->buf, TBUF_SIZE);
David Brownell28ffd792008-04-25 18:51:10 -0700617 if (!is_good_config(dev, retval)) {
618 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 "config [%d] descriptor --> %d\n",
620 i, retval);
621 return (retval < 0) ? retval : -EDOM;
622 }
623
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200624 /* FIXME cross-checking udev->config[i] to make sure usbcore
625 * parsed it right (etc) would be good testing paranoia
626 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
628
629 /* and sometimes [9.2.6.6] speed dependent descriptors */
630 if (le16_to_cpu(udev->descriptor.bcdUSB) == 0x0200) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200631 struct usb_qualifier_descriptor *d = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 /* device qualifier [9.6.2] */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200634 retval = usb_get_descriptor(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 USB_DT_DEVICE_QUALIFIER, 0, dev->buf,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200636 sizeof(struct usb_qualifier_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (retval == -EPIPE) {
638 if (udev->speed == USB_SPEED_HIGH) {
David Brownell28ffd792008-04-25 18:51:10 -0700639 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 "hs dev qualifier --> %d\n",
641 retval);
642 return (retval < 0) ? retval : -EDOM;
643 }
644 /* usb2.0 but not high-speed capable; fine */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200645 } else if (retval != sizeof(struct usb_qualifier_descriptor)) {
David Brownell28ffd792008-04-25 18:51:10 -0700646 dev_err(&iface->dev, "dev qualifier --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return (retval < 0) ? retval : -EDOM;
648 } else
649 d = (struct usb_qualifier_descriptor *) dev->buf;
650
651 /* might not have [9.6.2] any other-speed configs [9.6.4] */
652 if (d) {
653 unsigned max = d->bNumConfigurations;
654 for (i = 0; i < max; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200655 retval = usb_get_descriptor(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 USB_DT_OTHER_SPEED_CONFIG, i,
657 dev->buf, TBUF_SIZE);
David Brownell28ffd792008-04-25 18:51:10 -0700658 if (!is_good_config(dev, retval)) {
659 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 "other speed config --> %d\n",
661 retval);
662 return (retval < 0) ? retval : -EDOM;
663 }
664 }
665 }
666 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200667 /* FIXME fetch strings from at least the device descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 /* [9.4.5] get_status always works */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200670 retval = usb_get_status(udev, USB_RECIP_DEVICE, 0, dev->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (retval != 2) {
David Brownell28ffd792008-04-25 18:51:10 -0700672 dev_err(&iface->dev, "get dev status --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return (retval < 0) ? retval : -EDOM;
674 }
675
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200676 /* FIXME configuration.bmAttributes says if we could try to set/clear
677 * the device's remote wakeup feature ... if we can, test that here
678 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200680 retval = usb_get_status(udev, USB_RECIP_INTERFACE,
681 iface->altsetting[0].desc.bInterfaceNumber, dev->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (retval != 2) {
David Brownell28ffd792008-04-25 18:51:10 -0700683 dev_err(&iface->dev, "get interface status --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return (retval < 0) ? retval : -EDOM;
685 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200686 /* FIXME get status for each endpoint in the interface */
David Brownell28ffd792008-04-25 18:51:10 -0700687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return 0;
689}
690
691/*-------------------------------------------------------------------------*/
692
693/* use ch9 requests to test whether:
694 * (a) queues work for control, keeping N subtests queued and
695 * active (auto-resubmit) for M loops through the queue.
696 * (b) protocol stalls (control-only) will autorecover.
697 * it's not like bulk/intr; no halt clearing.
698 * (c) short control reads are reported and handled.
699 * (d) queues are always processed in-order
700 */
701
702struct ctrl_ctx {
703 spinlock_t lock;
704 struct usbtest_dev *dev;
705 struct completion complete;
706 unsigned count;
707 unsigned pending;
708 int status;
709 struct urb **urb;
710 struct usbtest_param *param;
711 int last;
712};
713
714#define NUM_SUBCASES 15 /* how many test subcases here? */
715
716struct subcase {
717 struct usb_ctrlrequest setup;
718 int number;
719 int expected;
720};
721
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200722static void ctrl_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724 struct ctrl_ctx *ctx = urb->context;
725 struct usb_ctrlrequest *reqp;
726 struct subcase *subcase;
727 int status = urb->status;
728
729 reqp = (struct usb_ctrlrequest *)urb->setup_packet;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200730 subcase = container_of(reqp, struct subcase, setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200732 spin_lock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 ctx->count--;
734 ctx->pending--;
735
736 /* queue must transfer and complete in fifo order, unless
737 * usb_unlink_urb() is used to unlink something not at the
738 * physical queue head (not tested).
739 */
740 if (subcase->number > 0) {
741 if ((subcase->number - ctx->last) != 1) {
David Brownell28ffd792008-04-25 18:51:10 -0700742 ERROR(ctx->dev,
743 "subcase %d completed out of order, last %d\n",
744 subcase->number, ctx->last);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 status = -EDOM;
746 ctx->last = subcase->number;
747 goto error;
748 }
749 }
750 ctx->last = subcase->number;
751
752 /* succeed or fault in only one way? */
753 if (status == subcase->expected)
754 status = 0;
755
756 /* async unlink for cleanup? */
757 else if (status != -ECONNRESET) {
758
759 /* some faults are allowed, not required */
760 if (subcase->expected > 0 && (
Greg Kroah-Hartman59d99782007-07-18 10:58:02 -0700761 ((status == -subcase->expected /* happened */
762 || status == 0)))) /* didn't */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 status = 0;
764 /* sometimes more than one fault is allowed */
765 else if (subcase->number == 12 && status == -EPIPE)
766 status = 0;
767 else
David Brownell28ffd792008-04-25 18:51:10 -0700768 ERROR(ctx->dev, "subtest %d error, status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 subcase->number, status);
770 }
771
772 /* unexpected status codes mean errors; ideally, in hardware */
773 if (status) {
774error:
775 if (ctx->status == 0) {
776 int i;
777
778 ctx->status = status;
David Brownell28ffd792008-04-25 18:51:10 -0700779 ERROR(ctx->dev, "control queue %02x.%02x, err %d, "
780 "%d left, subcase %d, len %d/%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 reqp->bRequestType, reqp->bRequest,
David Brownell28ffd792008-04-25 18:51:10 -0700782 status, ctx->count, subcase->number,
783 urb->actual_length,
784 urb->transfer_buffer_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 /* FIXME this "unlink everything" exit route should
787 * be a separate test case.
788 */
789
790 /* unlink whatever's still pending */
791 for (i = 1; i < ctx->param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200792 struct urb *u = ctx->urb[
793 (i + subcase->number)
794 % ctx->param->sglen];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 if (u == urb || !u->dev)
797 continue;
Franck Bui-Huucaa2a122006-05-15 19:23:53 +0200798 spin_unlock(&ctx->lock);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200799 status = usb_unlink_urb(u);
Franck Bui-Huucaa2a122006-05-15 19:23:53 +0200800 spin_lock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 switch (status) {
802 case -EINPROGRESS:
803 case -EBUSY:
804 case -EIDRM:
805 continue;
806 default:
David Brownell28ffd792008-04-25 18:51:10 -0700807 ERROR(ctx->dev, "urb unlink --> %d\n",
808 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 }
810 }
811 status = ctx->status;
812 }
813 }
814
815 /* resubmit if we need to, else mark this as done */
816 if ((status == 0) && (ctx->pending < ctx->count)) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200817 status = usb_submit_urb(urb, GFP_ATOMIC);
818 if (status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -0700819 ERROR(ctx->dev,
820 "can't resubmit ctrl %02x.%02x, err %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 reqp->bRequestType, reqp->bRequest, status);
822 urb->dev = NULL;
823 } else
824 ctx->pending++;
825 } else
826 urb->dev = NULL;
David Brownell28ffd792008-04-25 18:51:10 -0700827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 /* signal completion when nothing's queued */
829 if (ctx->pending == 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200830 complete(&ctx->complete);
831 spin_unlock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200835test_ctrl_queue(struct usbtest_dev *dev, struct usbtest_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200837 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 struct urb **urb;
839 struct ctrl_ctx context;
840 int i;
841
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200842 spin_lock_init(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 context.dev = dev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200844 init_completion(&context.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 context.count = param->sglen * param->iterations;
846 context.pending = 0;
847 context.status = -ENOMEM;
848 context.param = param;
849 context.last = -1;
850
851 /* allocate and init the urbs we'll queue.
852 * as with bulk/intr sglists, sglen is the queue depth; it also
853 * controls which subtests run (more tests than sglen) or rerun.
854 */
Christoph Lametere94b1762006-12-06 20:33:17 -0800855 urb = kcalloc(param->sglen, sizeof(struct urb *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 if (!urb)
857 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200859 int pipe = usb_rcvctrlpipe(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 unsigned len;
861 struct urb *u;
862 struct usb_ctrlrequest req;
863 struct subcase *reqp;
Marcin Slusarz6def7552008-05-12 20:17:25 +0200864
865 /* sign of this variable means:
866 * -: tested code must return this (negative) error code
867 * +: tested code may return this (negative too) error code
868 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 int expected = 0;
870
871 /* requests here are mostly expected to succeed on any
872 * device, but some are chosen to trigger protocol stalls
873 * or short reads.
874 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200875 memset(&req, 0, sizeof req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 req.bRequest = USB_REQ_GET_DESCRIPTOR;
877 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
878
879 switch (i % NUM_SUBCASES) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200880 case 0: /* get device descriptor */
881 req.wValue = cpu_to_le16(USB_DT_DEVICE << 8);
882 len = sizeof(struct usb_device_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200884 case 1: /* get first config descriptor (only) */
885 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
886 len = sizeof(struct usb_config_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200888 case 2: /* get altsetting (OFTEN STALLS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 req.bRequest = USB_REQ_GET_INTERFACE;
890 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200891 /* index = 0 means first interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 len = 1;
893 expected = EPIPE;
894 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200895 case 3: /* get interface status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 req.bRequest = USB_REQ_GET_STATUS;
897 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200898 /* interface 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 len = 2;
900 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200901 case 4: /* get device status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 req.bRequest = USB_REQ_GET_STATUS;
903 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
904 len = 2;
905 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200906 case 5: /* get device qualifier (MAY STALL) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 req.wValue = cpu_to_le16 (USB_DT_DEVICE_QUALIFIER << 8);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200908 len = sizeof(struct usb_qualifier_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (udev->speed != USB_SPEED_HIGH)
910 expected = EPIPE;
911 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200912 case 6: /* get first config descriptor, plus interface */
913 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
914 len = sizeof(struct usb_config_descriptor);
915 len += sizeof(struct usb_interface_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200917 case 7: /* get interface descriptor (ALWAYS STALLS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 req.wValue = cpu_to_le16 (USB_DT_INTERFACE << 8);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200919 /* interface == 0 */
920 len = sizeof(struct usb_interface_descriptor);
David Brownell28ffd792008-04-25 18:51:10 -0700921 expected = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200923 /* NOTE: two consecutive stalls in the queue here.
924 * that tests fault recovery a bit more aggressively. */
925 case 8: /* clear endpoint halt (MAY STALL) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 req.bRequest = USB_REQ_CLEAR_FEATURE;
927 req.bRequestType = USB_RECIP_ENDPOINT;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200928 /* wValue 0 == ep halt */
929 /* wIndex 0 == ep0 (shouldn't halt!) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 len = 0;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200931 pipe = usb_sndctrlpipe(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 expected = EPIPE;
933 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200934 case 9: /* get endpoint status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 req.bRequest = USB_REQ_GET_STATUS;
936 req.bRequestType = USB_DIR_IN|USB_RECIP_ENDPOINT;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200937 /* endpoint 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 len = 2;
939 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200940 case 10: /* trigger short read (EREMOTEIO) */
941 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 len = 1024;
943 expected = -EREMOTEIO;
944 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200945 /* NOTE: two consecutive _different_ faults in the queue. */
946 case 11: /* get endpoint descriptor (ALWAYS STALLS) */
947 req.wValue = cpu_to_le16(USB_DT_ENDPOINT << 8);
948 /* endpoint == 0 */
949 len = sizeof(struct usb_interface_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 expected = EPIPE;
951 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200952 /* NOTE: sometimes even a third fault in the queue! */
953 case 12: /* get string 0 descriptor (MAY STALL) */
954 req.wValue = cpu_to_le16(USB_DT_STRING << 8);
955 /* string == 0, for language IDs */
956 len = sizeof(struct usb_interface_descriptor);
957 /* may succeed when > 4 languages */
958 expected = EREMOTEIO; /* or EPIPE, if no strings */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200960 case 13: /* short read, resembling case 10 */
961 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
962 /* last data packet "should" be DATA1, not DATA0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 len = 1024 - udev->descriptor.bMaxPacketSize0;
964 expected = -EREMOTEIO;
965 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200966 case 14: /* short read; try to fill the last packet */
967 req.wValue = cpu_to_le16((USB_DT_DEVICE << 8) | 0);
David Brownell28ffd792008-04-25 18:51:10 -0700968 /* device descriptor size == 18 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 len = udev->descriptor.bMaxPacketSize0;
970 switch (len) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200971 case 8:
972 len = 24;
973 break;
974 case 16:
975 len = 32;
976 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
978 expected = -EREMOTEIO;
979 break;
980 default:
David Brownell28ffd792008-04-25 18:51:10 -0700981 ERROR(dev, "bogus number of ctrl queue testcases!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 context.status = -EINVAL;
983 goto cleanup;
984 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200985 req.wLength = cpu_to_le16(len);
986 urb[i] = u = simple_alloc_urb(udev, pipe, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (!u)
988 goto cleanup;
989
Alan Stern0ede76f2010-03-05 15:10:17 -0500990 reqp = kmalloc(sizeof *reqp, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (!reqp)
992 goto cleanup;
993 reqp->setup = req;
994 reqp->number = i % NUM_SUBCASES;
995 reqp->expected = expected;
996 u->setup_packet = (char *) &reqp->setup;
997
998 u->context = &context;
999 u->complete = ctrl_complete;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 }
1001
1002 /* queue the urbs */
1003 context.urb = urb;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001004 spin_lock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001006 context.status = usb_submit_urb(urb[i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (context.status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001008 ERROR(dev, "can't submit urb[%d], status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 i, context.status);
1010 context.count = context.pending;
1011 break;
1012 }
1013 context.pending++;
1014 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001015 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017 /* FIXME set timer and time out; provide a disconnect hook */
1018
1019 /* wait for the last one to complete */
1020 if (context.pending > 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001021 wait_for_completion(&context.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023cleanup:
1024 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001025 if (!urb[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 continue;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001027 urb[i]->dev = udev;
Alan Stern0ede76f2010-03-05 15:10:17 -05001028 kfree(urb[i]->setup_packet);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001029 simple_free_urb(urb[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001031 kfree(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 return context.status;
1033}
1034#undef NUM_SUBCASES
1035
1036
1037/*-------------------------------------------------------------------------*/
1038
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001039static void unlink1_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
1041 int status = urb->status;
1042
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001043 /* we "know" -EPIPE (stall) never happens */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (!status)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001045 status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (status) {
1047 urb->status = status;
Ming Leicdc97792008-02-24 18:41:47 +08001048 complete(urb->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050}
1051
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001052static int unlink1(struct usbtest_dev *dev, int pipe, int size, int async)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
1054 struct urb *urb;
1055 struct completion completion;
1056 int retval = 0;
1057
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001058 init_completion(&completion);
1059 urb = simple_alloc_urb(testdev_to_usbdev(dev), pipe, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (!urb)
1061 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 urb->context = &completion;
1063 urb->complete = unlink1_callback;
1064
1065 /* keep the endpoint busy. there are lots of hc/hcd-internal
1066 * states, and testing should get to all of them over time.
1067 *
1068 * FIXME want additional tests for when endpoint is STALLing
1069 * due to errors, or is just NAKing requests.
1070 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001071 retval = usb_submit_urb(urb, GFP_KERNEL);
1072 if (retval != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001073 dev_err(&dev->intf->dev, "submit fail %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return retval;
1075 }
1076
1077 /* unlinking that should always work. variable delay tests more
1078 * hcd states and code paths, even with little other system load.
1079 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001080 msleep(jiffies % (2 * INTERRUPT_RATE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (async) {
Martin Fuzzey3b6c0232009-06-04 23:20:38 +02001082 while (!completion_done(&completion)) {
1083 retval = usb_unlink_urb(urb);
1084
1085 switch (retval) {
1086 case -EBUSY:
1087 case -EIDRM:
1088 /* we can't unlink urbs while they're completing
1089 * or if they've completed, and we haven't
1090 * resubmitted. "normal" drivers would prevent
1091 * resubmission, but since we're testing unlink
1092 * paths, we can't.
1093 */
1094 ERROR(dev, "unlink retry\n");
1095 continue;
1096 case 0:
1097 case -EINPROGRESS:
1098 break;
1099
1100 default:
1101 dev_err(&dev->intf->dev,
1102 "unlink fail %d\n", retval);
1103 return retval;
1104 }
1105
1106 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 }
1108 } else
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001109 usb_kill_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001111 wait_for_completion(&completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 retval = urb->status;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001113 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 if (async)
1116 return (retval == -ECONNRESET) ? 0 : retval - 1000;
1117 else
1118 return (retval == -ENOENT || retval == -EPERM) ?
1119 0 : retval - 2000;
1120}
1121
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001122static int unlink_simple(struct usbtest_dev *dev, int pipe, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
1124 int retval = 0;
1125
1126 /* test sync and async paths */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001127 retval = unlink1(dev, pipe, len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (!retval)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001129 retval = unlink1(dev, pipe, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 return retval;
1131}
1132
1133/*-------------------------------------------------------------------------*/
1134
David Brownell28ffd792008-04-25 18:51:10 -07001135static int verify_not_halted(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
1137 int retval;
1138 u16 status;
1139
1140 /* shouldn't look or act halted */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001141 retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001143 ERROR(tdev, "ep %02x couldn't get no-halt status, %d\n",
1144 ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 return retval;
1146 }
1147 if (status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001148 ERROR(tdev, "ep %02x bogus status: %04x != 0\n", ep, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 return -EINVAL;
1150 }
David Brownell28ffd792008-04-25 18:51:10 -07001151 retval = simple_io(tdev, urb, 1, 0, 0, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 if (retval != 0)
1153 return -EINVAL;
1154 return 0;
1155}
1156
David Brownell28ffd792008-04-25 18:51:10 -07001157static int verify_halted(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
1159 int retval;
1160 u16 status;
1161
1162 /* should look and act halted */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001163 retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001165 ERROR(tdev, "ep %02x couldn't get halt status, %d\n",
1166 ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return retval;
1168 }
Jan Andersson6ce45602008-01-08 16:39:49 +01001169 le16_to_cpus(&status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (status != 1) {
David Brownell28ffd792008-04-25 18:51:10 -07001171 ERROR(tdev, "ep %02x bogus status: %04x != 1\n", ep, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return -EINVAL;
1173 }
David Brownell28ffd792008-04-25 18:51:10 -07001174 retval = simple_io(tdev, urb, 1, 0, -EPIPE, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (retval != -EPIPE)
1176 return -EINVAL;
David Brownell28ffd792008-04-25 18:51:10 -07001177 retval = simple_io(tdev, urb, 1, 0, -EPIPE, "verify_still_halted");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (retval != -EPIPE)
1179 return -EINVAL;
1180 return 0;
1181}
1182
David Brownell28ffd792008-04-25 18:51:10 -07001183static int test_halt(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
1185 int retval;
1186
1187 /* shouldn't look or act halted now */
David Brownell28ffd792008-04-25 18:51:10 -07001188 retval = verify_not_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 if (retval < 0)
1190 return retval;
1191
1192 /* set halt (protocol test only), verify it worked */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001193 retval = usb_control_msg(urb->dev, usb_sndctrlpipe(urb->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 USB_REQ_SET_FEATURE, USB_RECIP_ENDPOINT,
1195 USB_ENDPOINT_HALT, ep,
1196 NULL, 0, USB_CTRL_SET_TIMEOUT);
1197 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001198 ERROR(tdev, "ep %02x couldn't set halt, %d\n", ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 return retval;
1200 }
David Brownell28ffd792008-04-25 18:51:10 -07001201 retval = verify_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (retval < 0)
1203 return retval;
1204
1205 /* clear halt (tests API + protocol), verify it worked */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001206 retval = usb_clear_halt(urb->dev, urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001208 ERROR(tdev, "ep %02x couldn't clear halt, %d\n", ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 return retval;
1210 }
David Brownell28ffd792008-04-25 18:51:10 -07001211 retval = verify_not_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 if (retval < 0)
1213 return retval;
1214
1215 /* NOTE: could also verify SET_INTERFACE clear halts ... */
1216
1217 return 0;
1218}
1219
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001220static int halt_simple(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
1222 int ep;
1223 int retval = 0;
1224 struct urb *urb;
1225
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001226 urb = simple_alloc_urb(testdev_to_usbdev(dev), 0, 512);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (urb == NULL)
1228 return -ENOMEM;
1229
1230 if (dev->in_pipe) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001231 ep = usb_pipeendpoint(dev->in_pipe) | USB_DIR_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 urb->pipe = dev->in_pipe;
David Brownell28ffd792008-04-25 18:51:10 -07001233 retval = test_halt(dev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (retval < 0)
1235 goto done;
1236 }
1237
1238 if (dev->out_pipe) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001239 ep = usb_pipeendpoint(dev->out_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 urb->pipe = dev->out_pipe;
David Brownell28ffd792008-04-25 18:51:10 -07001241 retval = test_halt(dev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 }
1243done:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001244 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return retval;
1246}
1247
1248/*-------------------------------------------------------------------------*/
1249
1250/* Control OUT tests use the vendor control requests from Intel's
1251 * USB 2.0 compliance test device: write a buffer, read it back.
1252 *
1253 * Intel's spec only _requires_ that it work for one packet, which
1254 * is pretty weak. Some HCDs place limits here; most devices will
1255 * need to be able to handle more than one OUT data packet. We'll
1256 * try whatever we're told to try.
1257 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001258static int ctrl_out(struct usbtest_dev *dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 unsigned count, unsigned length, unsigned vary)
1260{
Orjan Fribergf54fa842006-08-08 23:31:40 -07001261 unsigned i, j, len;
1262 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 u8 *buf;
1264 char *what = "?";
1265 struct usb_device *udev;
Orjan Fribergf54fa842006-08-08 23:31:40 -07001266
David Brownellff7c79e2005-04-22 13:17:00 -07001267 if (length < 1 || length > 0xffff || vary >= length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 return -EINVAL;
1269
Christoph Lametere94b1762006-12-06 20:33:17 -08001270 buf = kmalloc(length, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 if (!buf)
1272 return -ENOMEM;
1273
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001274 udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 len = length;
1276 retval = 0;
1277
1278 /* NOTE: hardware might well act differently if we pushed it
1279 * with lots back-to-back queued requests.
1280 */
1281 for (i = 0; i < count; i++) {
1282 /* write patterned data */
1283 for (j = 0; j < len; j++)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001284 buf[j] = i + j;
1285 retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 0x5b, USB_DIR_OUT|USB_TYPE_VENDOR,
1287 0, 0, buf, len, USB_CTRL_SET_TIMEOUT);
1288 if (retval != len) {
1289 what = "write";
David Brownellff7c79e2005-04-22 13:17:00 -07001290 if (retval >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001291 ERROR(dev, "ctrl_out, wlen %d (expected %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -07001292 retval, len);
1293 retval = -EBADMSG;
1294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 break;
1296 }
1297
1298 /* read it back -- assuming nothing intervened!! */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001299 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 0x5c, USB_DIR_IN|USB_TYPE_VENDOR,
1301 0, 0, buf, len, USB_CTRL_GET_TIMEOUT);
1302 if (retval != len) {
1303 what = "read";
David Brownellff7c79e2005-04-22 13:17:00 -07001304 if (retval >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001305 ERROR(dev, "ctrl_out, rlen %d (expected %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -07001306 retval, len);
1307 retval = -EBADMSG;
1308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 break;
1310 }
1311
1312 /* fail if we can't verify */
1313 for (j = 0; j < len; j++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001314 if (buf[j] != (u8) (i + j)) {
David Brownell28ffd792008-04-25 18:51:10 -07001315 ERROR(dev, "ctrl_out, byte %d is %d not %d\n",
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001316 j, buf[j], (u8) i + j);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 retval = -EBADMSG;
1318 break;
1319 }
1320 }
1321 if (retval < 0) {
1322 what = "verify";
1323 break;
1324 }
1325
1326 len += vary;
David Brownellff7c79e2005-04-22 13:17:00 -07001327
1328 /* [real world] the "zero bytes IN" case isn't really used.
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001329 * hardware can easily trip up in this weird case, since its
David Brownellff7c79e2005-04-22 13:17:00 -07001330 * status stage is IN, not OUT like other ep0in transfers.
1331 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if (len > length)
David Brownellff7c79e2005-04-22 13:17:00 -07001333 len = realworld ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
1335
1336 if (retval < 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001337 ERROR(dev, "ctrl_out %s failed, code %d, count %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 what, retval, i);
1339
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001340 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 return retval;
1342}
1343
1344/*-------------------------------------------------------------------------*/
1345
1346/* ISO tests ... mimics common usage
1347 * - buffer length is split into N packets (mostly maxpacket sized)
1348 * - multi-buffers according to sglen
1349 */
1350
1351struct iso_context {
1352 unsigned count;
1353 unsigned pending;
1354 spinlock_t lock;
1355 struct completion done;
Alan Stern9da21502006-05-22 16:47:13 -04001356 int submit_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 unsigned long errors;
Alan Stern9da21502006-05-22 16:47:13 -04001358 unsigned long packet_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 struct usbtest_dev *dev;
1360};
1361
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001362static void iso_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363{
1364 struct iso_context *ctx = urb->context;
1365
1366 spin_lock(&ctx->lock);
1367 ctx->count--;
1368
Alan Stern9da21502006-05-22 16:47:13 -04001369 ctx->packet_count += urb->number_of_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (urb->error_count > 0)
1371 ctx->errors += urb->error_count;
Alan Stern9da21502006-05-22 16:47:13 -04001372 else if (urb->status != 0)
1373 ctx->errors += urb->number_of_packets;
Martin Fuzzey40aed522010-10-01 00:20:48 +02001374 else if (urb->actual_length != urb->transfer_buffer_length)
1375 ctx->errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Alan Stern9da21502006-05-22 16:47:13 -04001377 if (urb->status == 0 && ctx->count > (ctx->pending - 1)
1378 && !ctx->submit_error) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001379 int status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 switch (status) {
1381 case 0:
1382 goto done;
1383 default:
David Brownell28ffd792008-04-25 18:51:10 -07001384 dev_err(&ctx->dev->intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 "iso resubmit err %d\n",
1386 status);
1387 /* FALLTHROUGH */
1388 case -ENODEV: /* disconnected */
Alan Stern9da21502006-05-22 16:47:13 -04001389 case -ESHUTDOWN: /* endpoint disabled */
1390 ctx->submit_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 break;
1392 }
1393 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 ctx->pending--;
1396 if (ctx->pending == 0) {
1397 if (ctx->errors)
David Brownell28ffd792008-04-25 18:51:10 -07001398 dev_err(&ctx->dev->intf->dev,
Alan Stern9da21502006-05-22 16:47:13 -04001399 "iso test, %lu errors out of %lu\n",
1400 ctx->errors, ctx->packet_count);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001401 complete(&ctx->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 }
1403done:
1404 spin_unlock(&ctx->lock);
1405}
1406
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001407static struct urb *iso_alloc_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 struct usb_device *udev,
1409 int pipe,
1410 struct usb_endpoint_descriptor *desc,
1411 long bytes
1412)
1413{
1414 struct urb *urb;
1415 unsigned i, maxp, packets;
1416
1417 if (bytes < 0 || !desc)
1418 return NULL;
1419 maxp = 0x7ff & le16_to_cpu(desc->wMaxPacketSize);
1420 maxp *= 1 + (0x3 & (le16_to_cpu(desc->wMaxPacketSize) >> 11));
Julia Lawalldfa5ec72008-03-04 15:25:11 -08001421 packets = DIV_ROUND_UP(bytes, maxp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001423 urb = usb_alloc_urb(packets, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (!urb)
1425 return urb;
1426 urb->dev = udev;
1427 urb->pipe = pipe;
1428
1429 urb->number_of_packets = packets;
1430 urb->transfer_buffer_length = bytes;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001431 urb->transfer_buffer = usb_alloc_coherent(udev, bytes, GFP_KERNEL,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 &urb->transfer_dma);
1433 if (!urb->transfer_buffer) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001434 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return NULL;
1436 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001437 memset(urb->transfer_buffer, 0, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 for (i = 0; i < packets; i++) {
1439 /* here, only the last packet will be short */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001440 urb->iso_frame_desc[i].length = min((unsigned) bytes, maxp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 bytes -= urb->iso_frame_desc[i].length;
1442
1443 urb->iso_frame_desc[i].offset = maxp * i;
1444 }
1445
1446 urb->complete = iso_callback;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001447 /* urb->context = SET BY CALLER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 urb->interval = 1 << (desc->bInterval - 1);
1449 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
1450 return urb;
1451}
1452
1453static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001454test_iso_queue(struct usbtest_dev *dev, struct usbtest_param *param,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 int pipe, struct usb_endpoint_descriptor *desc)
1456{
1457 struct iso_context context;
1458 struct usb_device *udev;
1459 unsigned i;
1460 unsigned long packets = 0;
Alan Stern9da21502006-05-22 16:47:13 -04001461 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 struct urb *urbs[10]; /* FIXME no limit */
1463
1464 if (param->sglen > 10)
1465 return -EDOM;
1466
Alan Stern9da21502006-05-22 16:47:13 -04001467 memset(&context, 0, sizeof context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 context.count = param->iterations * param->sglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 context.dev = dev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001470 init_completion(&context.done);
1471 spin_lock_init(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001473 memset(urbs, 0, sizeof urbs);
1474 udev = testdev_to_usbdev(dev);
David Brownell28ffd792008-04-25 18:51:10 -07001475 dev_info(&dev->intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 "... iso period %d %sframes, wMaxPacket %04x\n",
1477 1 << (desc->bInterval - 1),
1478 (udev->speed == USB_SPEED_HIGH) ? "micro" : "",
1479 le16_to_cpu(desc->wMaxPacketSize));
1480
1481 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001482 urbs[i] = iso_alloc_urb(udev, pipe, desc,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001484 if (!urbs[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 status = -ENOMEM;
1486 goto fail;
1487 }
1488 packets += urbs[i]->number_of_packets;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001489 urbs[i]->context = &context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 }
1491 packets *= param->iterations;
David Brownell28ffd792008-04-25 18:51:10 -07001492 dev_info(&dev->intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 "... total %lu msec (%lu packets)\n",
1494 (packets * (1 << (desc->bInterval - 1)))
1495 / ((udev->speed == USB_SPEED_HIGH) ? 8 : 1),
1496 packets);
1497
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001498 spin_lock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 for (i = 0; i < param->sglen; i++) {
Alan Stern9da21502006-05-22 16:47:13 -04001500 ++context.pending;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001501 status = usb_submit_urb(urbs[i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 if (status < 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001503 ERROR(dev, "submit iso[%d], error %d\n", i, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (i == 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001505 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 goto fail;
1507 }
1508
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001509 simple_free_urb(urbs[i]);
Ming Leie10e1be2010-08-02 22:09:01 +08001510 urbs[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 context.pending--;
Alan Stern9da21502006-05-22 16:47:13 -04001512 context.submit_error = 1;
1513 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
1515 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001516 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001518 wait_for_completion(&context.done);
Alan Stern9da21502006-05-22 16:47:13 -04001519
Ming Leie10e1be2010-08-02 22:09:01 +08001520 for (i = 0; i < param->sglen; i++) {
1521 if (urbs[i])
1522 simple_free_urb(urbs[i]);
1523 }
Alan Stern9da21502006-05-22 16:47:13 -04001524 /*
1525 * Isochronous transfers are expected to fail sometimes. As an
1526 * arbitrary limit, we will report an error if any submissions
1527 * fail or if the transfer failure rate is > 10%.
1528 */
1529 if (status != 0)
1530 ;
1531 else if (context.submit_error)
1532 status = -EACCES;
1533 else if (context.errors > context.packet_count / 10)
1534 status = -EIO;
1535 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537fail:
1538 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001539 if (urbs[i])
1540 simple_free_urb(urbs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
1542 return status;
1543}
1544
1545/*-------------------------------------------------------------------------*/
1546
1547/* We only have this one interface to user space, through usbfs.
1548 * User mode code can scan usbfs to find N different devices (maybe on
1549 * different busses) to use when testing, and allocate one thread per
1550 * test. So discovery is simplified, and we have no device naming issues.
1551 *
1552 * Don't use these only as stress/load tests. Use them along with with
1553 * other USB bus activity: plugging, unplugging, mousing, mp3 playback,
1554 * video capture, and so on. Run different tests at different times, in
1555 * different sequences. Nothing here should interact with other devices,
1556 * except indirectly by consuming USB bandwidth and CPU resources for test
1557 * threads and request completion. But the only way to know that for sure
1558 * is to test when HC queues are in use by many devices.
David Brownell28ffd792008-04-25 18:51:10 -07001559 *
1560 * WARNING: Because usbfs grabs udev->dev.sem before calling this ioctl(),
1561 * it locks out usbcore in certain code paths. Notably, if you disconnect
1562 * the device-under-test, khubd will wait block forever waiting for the
1563 * ioctl to complete ... so that usb_disconnect() can abort the pending
1564 * urbs and then call usbtest_disconnect(). To abort a test, you're best
1565 * off just killing the userspace task and waiting for it to exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 */
1567
Andi Kleenc532b292010-06-01 23:04:41 +02001568/* No BKL needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001570usbtest_ioctl(struct usb_interface *intf, unsigned int code, void *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001572 struct usbtest_dev *dev = usb_get_intfdata(intf);
1573 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 struct usbtest_param *param = buf;
1575 int retval = -EOPNOTSUPP;
1576 struct urb *urb;
1577 struct scatterlist *sg;
1578 struct usb_sg_request req;
1579 struct timeval start;
1580 unsigned i;
1581
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001582 /* FIXME USBDEVFS_CONNECTINFO doesn't say how fast the device is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Vikram Pandita7f4e9852009-11-09 21:24:32 -06001584 pattern = mod_pattern;
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 if (code != USBTEST_REQUEST)
1587 return -EOPNOTSUPP;
1588
roel kluin8aafdf62008-10-21 00:36:44 -04001589 if (param->iterations <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 return -EINVAL;
1591
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08001592 if (mutex_lock_interruptible(&dev->lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 return -ERESTARTSYS;
1594
Alan Stern70a1c9e2008-03-06 17:00:58 -05001595 /* FIXME: What if a system sleep starts while a test is running? */
David Brownellff7c79e2005-04-22 13:17:00 -07001596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 /* some devices, like ez-usb default devices, need a non-default
1598 * altsetting to have any active endpoints. some tests change
1599 * altsettings; force a default so most tests don't need to check.
1600 */
1601 if (dev->info->alt >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001602 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604 if (intf->altsetting->desc.bInterfaceNumber) {
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08001605 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 return -ENODEV;
1607 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001608 res = set_altsetting(dev, dev->info->alt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if (res) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001610 dev_err(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 "set altsetting to %d failed, %d\n",
1612 dev->info->alt, res);
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08001613 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 return res;
1615 }
1616 }
1617
1618 /*
1619 * Just a bunch of test cases that every HCD is expected to handle.
1620 *
1621 * Some may need specific firmware, though it'd be good to have
1622 * one firmware image to handle all the test cases.
1623 *
1624 * FIXME add more tests! cancel requests, verify the data, control
1625 * queueing, concurrent read+write threads, and so on.
1626 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001627 do_gettimeofday(&start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 switch (param->test_num) {
1629
1630 case 0:
David Brownell28ffd792008-04-25 18:51:10 -07001631 dev_info(&intf->dev, "TEST 0: NOP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 retval = 0;
1633 break;
1634
1635 /* Simple non-queued bulk I/O tests */
1636 case 1:
1637 if (dev->out_pipe == 0)
1638 break;
David Brownell28ffd792008-04-25 18:51:10 -07001639 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 "TEST 1: write %d bytes %u times\n",
1641 param->length, param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001642 urb = simple_alloc_urb(udev, dev->out_pipe, param->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 if (!urb) {
1644 retval = -ENOMEM;
1645 break;
1646 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001647 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001648 retval = simple_io(dev, urb, param->iterations, 0, 0, "test1");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001649 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 break;
1651 case 2:
1652 if (dev->in_pipe == 0)
1653 break;
David Brownell28ffd792008-04-25 18:51:10 -07001654 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 "TEST 2: read %d bytes %u times\n",
1656 param->length, param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001657 urb = simple_alloc_urb(udev, dev->in_pipe, param->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 if (!urb) {
1659 retval = -ENOMEM;
1660 break;
1661 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001662 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001663 retval = simple_io(dev, urb, param->iterations, 0, 0, "test2");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001664 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 break;
1666 case 3:
1667 if (dev->out_pipe == 0 || param->vary == 0)
1668 break;
David Brownell28ffd792008-04-25 18:51:10 -07001669 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 "TEST 3: write/%d 0..%d bytes %u times\n",
1671 param->vary, param->length, param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001672 urb = simple_alloc_urb(udev, dev->out_pipe, param->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 if (!urb) {
1674 retval = -ENOMEM;
1675 break;
1676 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001677 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001678 retval = simple_io(dev, urb, param->iterations, param->vary,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 0, "test3");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001680 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 break;
1682 case 4:
1683 if (dev->in_pipe == 0 || param->vary == 0)
1684 break;
David Brownell28ffd792008-04-25 18:51:10 -07001685 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 "TEST 4: read/%d 0..%d bytes %u times\n",
1687 param->vary, param->length, param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001688 urb = simple_alloc_urb(udev, dev->in_pipe, param->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 if (!urb) {
1690 retval = -ENOMEM;
1691 break;
1692 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001693 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001694 retval = simple_io(dev, urb, param->iterations, param->vary,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 0, "test4");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001696 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 break;
1698
1699 /* Queued bulk I/O tests */
1700 case 5:
1701 if (dev->out_pipe == 0 || param->sglen == 0)
1702 break;
David Brownell28ffd792008-04-25 18:51:10 -07001703 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 "TEST 5: write %d sglists %d entries of %d bytes\n",
1705 param->iterations,
1706 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001707 sg = alloc_sglist(param->sglen, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 if (!sg) {
1709 retval = -ENOMEM;
1710 break;
1711 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001712 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001713 retval = perform_sglist(dev, param->iterations, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001715 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 break;
1717
1718 case 6:
1719 if (dev->in_pipe == 0 || param->sglen == 0)
1720 break;
David Brownell28ffd792008-04-25 18:51:10 -07001721 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 "TEST 6: read %d sglists %d entries of %d bytes\n",
1723 param->iterations,
1724 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001725 sg = alloc_sglist(param->sglen, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (!sg) {
1727 retval = -ENOMEM;
1728 break;
1729 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001730 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001731 retval = perform_sglist(dev, param->iterations, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001733 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 break;
1735 case 7:
1736 if (dev->out_pipe == 0 || param->sglen == 0 || param->vary == 0)
1737 break;
David Brownell28ffd792008-04-25 18:51:10 -07001738 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 "TEST 7: write/%d %d sglists %d entries 0..%d bytes\n",
1740 param->vary, param->iterations,
1741 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001742 sg = alloc_sglist(param->sglen, param->length, param->vary);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 if (!sg) {
1744 retval = -ENOMEM;
1745 break;
1746 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001747 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001748 retval = perform_sglist(dev, param->iterations, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001750 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 break;
1752 case 8:
1753 if (dev->in_pipe == 0 || param->sglen == 0 || param->vary == 0)
1754 break;
David Brownell28ffd792008-04-25 18:51:10 -07001755 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 "TEST 8: read/%d %d sglists %d entries 0..%d bytes\n",
1757 param->vary, param->iterations,
1758 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001759 sg = alloc_sglist(param->sglen, param->length, param->vary);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (!sg) {
1761 retval = -ENOMEM;
1762 break;
1763 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001764 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07001765 retval = perform_sglist(dev, param->iterations, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001767 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 break;
1769
1770 /* non-queued sanity tests for control (chapter 9 subset) */
1771 case 9:
1772 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07001773 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 "TEST 9: ch9 (subset) control tests, %d times\n",
1775 param->iterations);
1776 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001777 retval = ch9_postconfig(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07001779 dev_err(&intf->dev, "ch9 subset failed, "
1780 "iterations left %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 break;
1782
1783 /* queued control messaging */
1784 case 10:
1785 if (param->sglen == 0)
1786 break;
1787 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07001788 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 "TEST 10: queue %d control calls, %d times\n",
1790 param->sglen,
1791 param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001792 retval = test_ctrl_queue(dev, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 break;
1794
1795 /* simple non-queued unlinks (ring with one urb) */
1796 case 11:
1797 if (dev->in_pipe == 0 || !param->length)
1798 break;
1799 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07001800 dev_info(&intf->dev, "TEST 11: unlink %d reads of %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 param->iterations, param->length);
1802 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001803 retval = unlink_simple(dev, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 param->length);
1805 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07001806 dev_err(&intf->dev, "unlink reads failed %d, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 "iterations left %d\n", retval, i);
1808 break;
1809 case 12:
1810 if (dev->out_pipe == 0 || !param->length)
1811 break;
1812 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07001813 dev_info(&intf->dev, "TEST 12: unlink %d writes of %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 param->iterations, param->length);
1815 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001816 retval = unlink_simple(dev, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 param->length);
1818 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07001819 dev_err(&intf->dev, "unlink writes failed %d, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 "iterations left %d\n", retval, i);
1821 break;
1822
1823 /* ep halt tests */
1824 case 13:
1825 if (dev->out_pipe == 0 && dev->in_pipe == 0)
1826 break;
1827 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07001828 dev_info(&intf->dev, "TEST 13: set/clear %d halts\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 param->iterations);
1830 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001831 retval = halt_simple(dev);
David Brownell28ffd792008-04-25 18:51:10 -07001832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07001834 ERROR(dev, "halts failed, iterations left %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 break;
1836
1837 /* control write tests */
1838 case 14:
1839 if (!dev->info->ctrl_out)
1840 break;
David Brownell28ffd792008-04-25 18:51:10 -07001841 dev_info(&intf->dev, "TEST 14: %d ep0out, %d..%d vary %d\n",
David Brownellff7c79e2005-04-22 13:17:00 -07001842 param->iterations,
1843 realworld ? 1 : 0, param->length,
1844 param->vary);
David Brownell28ffd792008-04-25 18:51:10 -07001845 retval = ctrl_out(dev, param->iterations,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 param->length, param->vary);
1847 break;
1848
1849 /* iso write tests */
1850 case 15:
1851 if (dev->out_iso_pipe == 0 || param->sglen == 0)
1852 break;
David Brownell28ffd792008-04-25 18:51:10 -07001853 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 "TEST 15: write %d iso, %d entries of %d bytes\n",
1855 param->iterations,
1856 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001857 /* FIRMWARE: iso sink */
1858 retval = test_iso_queue(dev, param,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 dev->out_iso_pipe, dev->iso_out);
1860 break;
1861
1862 /* iso read tests */
1863 case 16:
1864 if (dev->in_iso_pipe == 0 || param->sglen == 0)
1865 break;
David Brownell28ffd792008-04-25 18:51:10 -07001866 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 "TEST 16: read %d iso, %d entries of %d bytes\n",
1868 param->iterations,
1869 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001870 /* FIRMWARE: iso source */
1871 retval = test_iso_queue(dev, param,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 dev->in_iso_pipe, dev->iso_in);
1873 break;
1874
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001875 /* FIXME unlink from queue (ring with N urbs) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001877 /* FIXME scatterlist cancel (needs helper thread) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001880 do_gettimeofday(&param->duration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 param->duration.tv_sec -= start.tv_sec;
1882 param->duration.tv_usec -= start.tv_usec;
1883 if (param->duration.tv_usec < 0) {
1884 param->duration.tv_usec += 1000 * 1000;
1885 param->duration.tv_sec -= 1;
1886 }
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08001887 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return retval;
1889}
1890
1891/*-------------------------------------------------------------------------*/
1892
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001893static unsigned force_interrupt;
1894module_param(force_interrupt, uint, 0);
1895MODULE_PARM_DESC(force_interrupt, "0 = test default; else interrupt");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897#ifdef GENERIC
1898static unsigned short vendor;
1899module_param(vendor, ushort, 0);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001900MODULE_PARM_DESC(vendor, "vendor code (from usb-if)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
1902static unsigned short product;
1903module_param(product, ushort, 0);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001904MODULE_PARM_DESC(product, "product code (from vendor)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905#endif
1906
1907static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001908usbtest_probe(struct usb_interface *intf, const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
1910 struct usb_device *udev;
1911 struct usbtest_dev *dev;
1912 struct usbtest_info *info;
1913 char *rtest, *wtest;
1914 char *irtest, *iwtest;
1915
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001916 udev = interface_to_usbdev(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
1918#ifdef GENERIC
1919 /* specify devices by module parameters? */
1920 if (id->match_flags == 0) {
1921 /* vendor match required, product match optional */
1922 if (!vendor || le16_to_cpu(udev->descriptor.idVendor) != (u16)vendor)
1923 return -ENODEV;
1924 if (product && le16_to_cpu(udev->descriptor.idProduct) != (u16)product)
1925 return -ENODEV;
David Brownell28ffd792008-04-25 18:51:10 -07001926 dev_info(&intf->dev, "matched module params, "
1927 "vend=0x%04x prod=0x%04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 le16_to_cpu(udev->descriptor.idVendor),
1929 le16_to_cpu(udev->descriptor.idProduct));
1930 }
1931#endif
1932
Christoph Lametere94b1762006-12-06 20:33:17 -08001933 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 if (!dev)
1935 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 info = (struct usbtest_info *) id->driver_info;
1937 dev->info = info;
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08001938 mutex_init(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 dev->intf = intf;
1941
1942 /* cacheline-aligned scratch for i/o */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001943 dev->buf = kmalloc(TBUF_SIZE, GFP_KERNEL);
1944 if (dev->buf == NULL) {
1945 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 return -ENOMEM;
1947 }
1948
1949 /* NOTE this doesn't yet test the handful of difference that are
1950 * visible with high speed interrupts: bigger maxpacket (1K) and
1951 * "high bandwidth" modes (up to 3 packets/uframe).
1952 */
1953 rtest = wtest = "";
1954 irtest = iwtest = "";
1955 if (force_interrupt || udev->speed == USB_SPEED_LOW) {
1956 if (info->ep_in) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001957 dev->in_pipe = usb_rcvintpipe(udev, info->ep_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 rtest = " intr-in";
1959 }
1960 if (info->ep_out) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001961 dev->out_pipe = usb_sndintpipe(udev, info->ep_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 wtest = " intr-out";
1963 }
1964 } else {
1965 if (info->autoconf) {
1966 int status;
1967
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001968 status = get_endpoints(dev, intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (status < 0) {
Arjan van de Venb6c63932008-07-25 01:45:52 -07001970 WARNING(dev, "couldn't get endpoints, %d\n",
David Brownell28ffd792008-04-25 18:51:10 -07001971 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 return status;
1973 }
1974 /* may find bulk or ISO pipes */
1975 } else {
1976 if (info->ep_in)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001977 dev->in_pipe = usb_rcvbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 info->ep_in);
1979 if (info->ep_out)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001980 dev->out_pipe = usb_sndbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 info->ep_out);
1982 }
1983 if (dev->in_pipe)
1984 rtest = " bulk-in";
1985 if (dev->out_pipe)
1986 wtest = " bulk-out";
1987 if (dev->in_iso_pipe)
1988 irtest = " iso-in";
1989 if (dev->out_iso_pipe)
1990 iwtest = " iso-out";
1991 }
1992
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001993 usb_set_intfdata(intf, dev);
1994 dev_info(&intf->dev, "%s\n", info->name);
1995 dev_info(&intf->dev, "%s speed {control%s%s%s%s%s} tests%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 ({ char *tmp;
1997 switch (udev->speed) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001998 case USB_SPEED_LOW:
1999 tmp = "low";
2000 break;
2001 case USB_SPEED_FULL:
2002 tmp = "full";
2003 break;
2004 case USB_SPEED_HIGH:
2005 tmp = "high";
2006 break;
2007 default:
2008 tmp = "unknown";
2009 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 }; tmp; }),
2011 info->ctrl_out ? " in/out" : "",
2012 rtest, wtest,
2013 irtest, iwtest,
2014 info->alt >= 0 ? " (+alt)" : "");
2015 return 0;
2016}
2017
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002018static int usbtest_suspend(struct usb_interface *intf, pm_message_t message)
David Brownellff7c79e2005-04-22 13:17:00 -07002019{
David Brownellff7c79e2005-04-22 13:17:00 -07002020 return 0;
2021}
2022
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002023static int usbtest_resume(struct usb_interface *intf)
David Brownellff7c79e2005-04-22 13:17:00 -07002024{
David Brownellff7c79e2005-04-22 13:17:00 -07002025 return 0;
2026}
2027
2028
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002029static void usbtest_disconnect(struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002031 struct usbtest_dev *dev = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002033 usb_set_intfdata(intf, NULL);
2034 dev_dbg(&intf->dev, "disconnect\n");
2035 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036}
2037
2038/* Basic testing only needs a device that can source or sink bulk traffic.
2039 * Any device can test control transfers (default with GENERIC binding).
2040 *
2041 * Several entries work with the default EP0 implementation that's built
2042 * into EZ-USB chips. There's a default vendor ID which can be overridden
2043 * by (very) small config EEPROMS, but otherwise all these devices act
2044 * identically until firmware is loaded: only EP0 works. It turns out
2045 * to be easy to make other endpoints work, without modifying that EP0
2046 * behavior. For now, we expect that kind of firmware.
2047 */
2048
2049/* an21xx or fx versions of ez-usb */
2050static struct usbtest_info ez1_info = {
2051 .name = "EZ-USB device",
2052 .ep_in = 2,
2053 .ep_out = 2,
2054 .alt = 1,
2055};
2056
2057/* fx2 version of ez-usb */
2058static struct usbtest_info ez2_info = {
2059 .name = "FX2 device",
2060 .ep_in = 6,
2061 .ep_out = 2,
2062 .alt = 1,
2063};
2064
2065/* ezusb family device with dedicated usb test firmware,
2066 */
2067static struct usbtest_info fw_info = {
2068 .name = "usb test device",
2069 .ep_in = 2,
2070 .ep_out = 2,
2071 .alt = 1,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002072 .autoconf = 1, /* iso and ctrl_out need autoconf */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 .ctrl_out = 1,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002074 .iso = 1, /* iso_ep's are #8 in/out */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075};
2076
2077/* peripheral running Linux and 'zero.c' test firmware, or
2078 * its user-mode cousin. different versions of this use
2079 * different hardware with the same vendor/product codes.
2080 * host side MUST rely on the endpoint descriptors.
2081 */
2082static struct usbtest_info gz_info = {
2083 .name = "Linux gadget zero",
2084 .autoconf = 1,
2085 .ctrl_out = 1,
2086 .alt = 0,
2087};
2088
2089static struct usbtest_info um_info = {
2090 .name = "Linux user mode test driver",
2091 .autoconf = 1,
2092 .alt = -1,
2093};
2094
2095static struct usbtest_info um2_info = {
2096 .name = "Linux user mode ISO test driver",
2097 .autoconf = 1,
2098 .iso = 1,
2099 .alt = -1,
2100};
2101
2102#ifdef IBOT2
2103/* this is a nice source of high speed bulk data;
2104 * uses an FX2, with firmware provided in the device
2105 */
2106static struct usbtest_info ibot2_info = {
2107 .name = "iBOT2 webcam",
2108 .ep_in = 2,
2109 .alt = -1,
2110};
2111#endif
2112
2113#ifdef GENERIC
2114/* we can use any device to test control traffic */
2115static struct usbtest_info generic_info = {
2116 .name = "Generic USB device",
2117 .alt = -1,
2118};
2119#endif
2120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Németh Márton33b9e162010-01-10 15:34:45 +01002122static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 /*-------------------------------------------------------------*/
2125
2126 /* EZ-USB devices which download firmware to replace (or in our
2127 * case augment) the default device implementation.
2128 */
2129
2130 /* generic EZ-USB FX controller */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002131 { USB_DEVICE(0x0547, 0x2235),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002133 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
2135 /* CY3671 development board with EZ-USB FX */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002136 { USB_DEVICE(0x0547, 0x0080),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002138 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
2140 /* generic EZ-USB FX2 controller (or development board) */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002141 { USB_DEVICE(0x04b4, 0x8613),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 .driver_info = (unsigned long) &ez2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002143 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145 /* re-enumerated usb test device firmware */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002146 { USB_DEVICE(0xfff0, 0xfff0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 .driver_info = (unsigned long) &fw_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002148 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150 /* "Gadget Zero" firmware runs under Linux */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002151 { USB_DEVICE(0x0525, 0xa4a0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 .driver_info = (unsigned long) &gz_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002153 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
2155 /* so does a user-mode variant */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002156 { USB_DEVICE(0x0525, 0xa4a4),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 .driver_info = (unsigned long) &um_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002158 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 /* ... and a user-mode variant that talks iso */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002161 { USB_DEVICE(0x0525, 0xa4a3),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 .driver_info = (unsigned long) &um2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002163 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165#ifdef KEYSPAN_19Qi
2166 /* Keyspan 19qi uses an21xx (original EZ-USB) */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002167 /* this does not coexist with the real Keyspan 19qi driver! */
2168 { USB_DEVICE(0x06cd, 0x010b),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002170 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171#endif
2172
2173 /*-------------------------------------------------------------*/
2174
2175#ifdef IBOT2
2176 /* iBOT2 makes a nice source of high speed bulk-in data */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002177 /* this does not coexist with a real iBOT2 driver! */
2178 { USB_DEVICE(0x0b62, 0x0059),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 .driver_info = (unsigned long) &ibot2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002180 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181#endif
2182
2183 /*-------------------------------------------------------------*/
2184
2185#ifdef GENERIC
2186 /* module params can specify devices to use for control tests */
2187 { .driver_info = (unsigned long) &generic_info, },
2188#endif
2189
2190 /*-------------------------------------------------------------*/
2191
2192 { }
2193};
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002194MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196static struct usb_driver usbtest_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 .name = "usbtest",
2198 .id_table = id_table,
2199 .probe = usbtest_probe,
Andi Kleenc532b292010-06-01 23:04:41 +02002200 .unlocked_ioctl = usbtest_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 .disconnect = usbtest_disconnect,
David Brownellff7c79e2005-04-22 13:17:00 -07002202 .suspend = usbtest_suspend,
2203 .resume = usbtest_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204};
2205
2206/*-------------------------------------------------------------------------*/
2207
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002208static int __init usbtest_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
2210#ifdef GENERIC
2211 if (vendor)
David Brownell28ffd792008-04-25 18:51:10 -07002212 pr_debug("params: vend=0x%04x prod=0x%04x\n", vendor, product);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213#endif
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002214 return usb_register(&usbtest_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215}
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002216module_init(usbtest_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002218static void __exit usbtest_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002220 usb_deregister(&usbtest_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221}
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002222module_exit(usbtest_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002224MODULE_DESCRIPTION("USB Core/HCD Testing Driver");
2225MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226