blob: cac93b77f9a74c41d2e3cc14155ae194ec571db3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/kernel.h>
2#include <linux/errno.h>
3#include <linux/init.h>
4#include <linux/slab.h>
5#include <linux/mm.h>
6#include <linux/module.h>
7#include <linux/moduleparam.h>
David Hardeman378f0582005-09-17 17:55:31 +10008#include <linux/scatterlist.h>
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08009#include <linux/mutex.h>
Alan Stern32b36ee2014-06-03 11:11:34 -040010#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/usb.h>
12
Roger Quadrose5e47462013-12-18 15:40:10 +053013#define SIMPLE_IO_TIMEOUT 10000 /* in milliseconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15/*-------------------------------------------------------------------------*/
16
Alan Sternd0b46522013-01-30 16:38:11 -050017static int override_alt = -1;
18module_param_named(alt, override_alt, int, 0644);
19MODULE_PARM_DESC(alt, ">= 0 to override altsetting selection");
20
21/*-------------------------------------------------------------------------*/
22
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020023/* FIXME make these public somewhere; usbdevfs.h? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024struct usbtest_param {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020025 /* inputs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 unsigned test_num; /* 0..(TEST_CASES-1) */
27 unsigned iterations;
28 unsigned length;
29 unsigned vary;
30 unsigned sglen;
31
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020032 /* outputs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 struct timeval duration;
34};
35#define USBTEST_REQUEST _IOWR('U', 100, struct usbtest_param)
36
37/*-------------------------------------------------------------------------*/
38
39#define GENERIC /* let probe() bind using module params */
40
41/* Some devices that can be used for testing will have "real" drivers.
42 * Entries for those need to be enabled here by hand, after disabling
43 * that "real" driver.
44 */
45//#define IBOT2 /* grab iBOT2 webcams */
46//#define KEYSPAN_19Qi /* grab un-renumerated serial adapter */
47
48/*-------------------------------------------------------------------------*/
49
50struct usbtest_info {
51 const char *name;
52 u8 ep_in; /* bulk/intr source */
53 u8 ep_out; /* bulk/intr sink */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020054 unsigned autoconf:1;
55 unsigned ctrl_out:1;
56 unsigned iso:1; /* try iso in/out */
Amit Virdi457a0952014-08-22 14:36:37 +053057 unsigned intr:1; /* try interrupt in/out */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 int alt;
59};
60
61/* this is accessed only through usbfs ioctl calls.
62 * one ioctl to issue a test ... one lock per device.
63 * tests create other threads if they need them.
64 * urbs and buffers are allocated dynamically,
65 * and data generated deterministically.
66 */
67struct usbtest_dev {
68 struct usb_interface *intf;
69 struct usbtest_info *info;
70 int in_pipe;
71 int out_pipe;
72 int in_iso_pipe;
73 int out_iso_pipe;
Amit Virdi457a0952014-08-22 14:36:37 +053074 int in_int_pipe;
75 int out_int_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 struct usb_endpoint_descriptor *iso_in, *iso_out;
Amit Virdi457a0952014-08-22 14:36:37 +053077 struct usb_endpoint_descriptor *int_in, *int_out;
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -080078 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80#define TBUF_SIZE 256
81 u8 *buf;
82};
83
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020084static struct usb_device *testdev_to_usbdev(struct usbtest_dev *test)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020086 return interface_to_usbdev(test->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
89/* set up all urbs so they can be used with either bulk or interrupt */
90#define INTERRUPT_RATE 1 /* msec/transfer */
91
David Brownell28ffd792008-04-25 18:51:10 -070092#define ERROR(tdev, fmt, args...) \
93 dev_err(&(tdev)->intf->dev , fmt , ## args)
Arjan van de Venb6c63932008-07-25 01:45:52 -070094#define WARNING(tdev, fmt, args...) \
David Brownell28ffd792008-04-25 18:51:10 -070095 dev_warn(&(tdev)->intf->dev , fmt , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Martin Fuzzey084fb202011-01-16 19:17:11 +010097#define GUARD_BYTE 0xA5
Peter Chen41d3c0b2015-09-01 09:47:58 +080098#define MAX_SGLEN 128
Martin Fuzzey084fb202011-01-16 19:17:11 +010099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/*-------------------------------------------------------------------------*/
101
102static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200103get_endpoints(struct usbtest_dev *dev, struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 int tmp;
106 struct usb_host_interface *alt;
107 struct usb_host_endpoint *in, *out;
108 struct usb_host_endpoint *iso_in, *iso_out;
Amit Virdi457a0952014-08-22 14:36:37 +0530109 struct usb_host_endpoint *int_in, *int_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 struct usb_device *udev;
111
112 for (tmp = 0; tmp < intf->num_altsetting; tmp++) {
113 unsigned ep;
114
115 in = out = NULL;
116 iso_in = iso_out = NULL;
Amit Virdi457a0952014-08-22 14:36:37 +0530117 int_in = int_out = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 alt = intf->altsetting + tmp;
119
Alan Sternd0b46522013-01-30 16:38:11 -0500120 if (override_alt >= 0 &&
121 override_alt != alt->desc.bAlternateSetting)
122 continue;
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 /* take the first altsetting with in-bulk + out-bulk;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +0200125 * ignore other endpoints and altsettings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 */
127 for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) {
128 struct usb_host_endpoint *e;
129
130 e = alt->endpoint + ep;
Huang Rui9a37a502013-09-24 00:03:43 +0800131 switch (usb_endpoint_type(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 case USB_ENDPOINT_XFER_BULK:
133 break;
Amit Virdi457a0952014-08-22 14:36:37 +0530134 case USB_ENDPOINT_XFER_INT:
135 if (dev->info->intr)
136 goto try_intr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 case USB_ENDPOINT_XFER_ISOC:
138 if (dev->info->iso)
139 goto try_iso;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200140 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 default:
142 continue;
143 }
Luiz Fernando N. Capitulino4d823dd2006-10-26 13:03:02 -0300144 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (!in)
146 in = e;
147 } else {
148 if (!out)
149 out = e;
150 }
151 continue;
Amit Virdi457a0952014-08-22 14:36:37 +0530152try_intr:
153 if (usb_endpoint_dir_in(&e->desc)) {
154 if (!int_in)
155 int_in = e;
156 } else {
157 if (!int_out)
158 int_out = e;
159 }
160 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161try_iso:
Luiz Fernando N. Capitulino4d823dd2006-10-26 13:03:02 -0300162 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 if (!iso_in)
164 iso_in = e;
165 } else {
166 if (!iso_out)
167 iso_out = e;
168 }
169 }
Amit Virdi457a0952014-08-22 14:36:37 +0530170 if ((in && out) || iso_in || iso_out || int_in || int_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 goto found;
172 }
173 return -EINVAL;
174
175found:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200176 udev = testdev_to_usbdev(dev);
Alan Sternd0b46522013-01-30 16:38:11 -0500177 dev->info->alt = alt->desc.bAlternateSetting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (alt->desc.bAlternateSetting != 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200179 tmp = usb_set_interface(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 alt->desc.bInterfaceNumber,
181 alt->desc.bAlternateSetting);
182 if (tmp < 0)
183 return tmp;
184 }
185
186 if (in) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200187 dev->in_pipe = usb_rcvbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200189 dev->out_pipe = usb_sndbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 out->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
191 }
192 if (iso_in) {
193 dev->iso_in = &iso_in->desc;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200194 dev->in_iso_pipe = usb_rcvisocpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 iso_in->desc.bEndpointAddress
196 & USB_ENDPOINT_NUMBER_MASK);
Ming Lei951fd8e2010-08-02 22:09:17 +0800197 }
198
199 if (iso_out) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 dev->iso_out = &iso_out->desc;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200201 dev->out_iso_pipe = usb_sndisocpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 iso_out->desc.bEndpointAddress
203 & USB_ENDPOINT_NUMBER_MASK);
204 }
Amit Virdi457a0952014-08-22 14:36:37 +0530205
206 if (int_in) {
207 dev->int_in = &int_in->desc;
208 dev->in_int_pipe = usb_rcvintpipe(udev,
209 int_in->desc.bEndpointAddress
210 & USB_ENDPOINT_NUMBER_MASK);
211 }
212
213 if (int_out) {
214 dev->int_out = &int_out->desc;
215 dev->out_int_pipe = usb_sndintpipe(udev,
216 int_out->desc.bEndpointAddress
217 & USB_ENDPOINT_NUMBER_MASK);
218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return 0;
220}
221
222/*-------------------------------------------------------------------------*/
223
224/* Support for testing basic non-queued I/O streams.
225 *
226 * These just package urbs as requests that can be easily canceled.
227 * Each urb's data buffer is dynamically allocated; callers can fill
228 * them with non-zero test data (or test for it) when appropriate.
229 */
230
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200231static void simple_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
Ming Leicdc97792008-02-24 18:41:47 +0800233 complete(urb->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Martin Fuzzey084fb202011-01-16 19:17:11 +0100236static struct urb *usbtest_alloc_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 struct usb_device *udev,
238 int pipe,
Martin Fuzzey084fb202011-01-16 19:17:11 +0100239 unsigned long bytes,
240 unsigned transfer_flags,
Amit Virdi457a0952014-08-22 14:36:37 +0530241 unsigned offset,
242 u8 bInterval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 struct urb *urb;
245
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200246 urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (!urb)
248 return urb;
Amit Virdi457a0952014-08-22 14:36:37 +0530249
250 if (bInterval)
251 usb_fill_int_urb(urb, udev, pipe, NULL, bytes, simple_callback,
252 NULL, bInterval);
253 else
254 usb_fill_bulk_urb(urb, udev, pipe, NULL, bytes, simple_callback,
255 NULL);
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 urb->interval = (udev->speed == USB_SPEED_HIGH)
258 ? (INTERRUPT_RATE << 3)
259 : INTERRUPT_RATE;
Martin Fuzzey084fb202011-01-16 19:17:11 +0100260 urb->transfer_flags = transfer_flags;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200261 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 urb->transfer_flags |= URB_SHORT_NOT_OK;
Martin Fuzzey084fb202011-01-16 19:17:11 +0100263
264 if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
265 urb->transfer_buffer = usb_alloc_coherent(udev, bytes + offset,
266 GFP_KERNEL, &urb->transfer_dma);
267 else
268 urb->transfer_buffer = kmalloc(bytes + offset, GFP_KERNEL);
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (!urb->transfer_buffer) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200271 usb_free_urb(urb);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100272 return NULL;
273 }
274
275 /* To test unaligned transfers add an offset and fill the
276 unused memory with a guard value */
277 if (offset) {
278 memset(urb->transfer_buffer, GUARD_BYTE, offset);
279 urb->transfer_buffer += offset;
280 if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
281 urb->transfer_dma += offset;
282 }
283
284 /* For inbound transfers use guard byte so that test fails if
285 data not correctly copied */
286 memset(urb->transfer_buffer,
287 usb_pipein(urb->pipe) ? GUARD_BYTE : 0,
288 bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return urb;
290}
291
Martin Fuzzey084fb202011-01-16 19:17:11 +0100292static struct urb *simple_alloc_urb(
293 struct usb_device *udev,
294 int pipe,
Amit Virdi457a0952014-08-22 14:36:37 +0530295 unsigned long bytes,
296 u8 bInterval)
Martin Fuzzey084fb202011-01-16 19:17:11 +0100297{
Amit Virdi457a0952014-08-22 14:36:37 +0530298 return usbtest_alloc_urb(udev, pipe, bytes, URB_NO_TRANSFER_DMA_MAP, 0,
299 bInterval);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100300}
301
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200302static unsigned pattern;
Vikram Pandita7f4e9852009-11-09 21:24:32 -0600303static unsigned mod_pattern;
304module_param_named(pattern, mod_pattern, uint, S_IRUGO | S_IWUSR);
305MODULE_PARM_DESC(mod_pattern, "i/o pattern (0 == zeroes)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200307static inline void simple_fill_buf(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 unsigned i;
310 u8 *buf = urb->transfer_buffer;
311 unsigned len = urb->transfer_buffer_length;
312
313 switch (pattern) {
314 default:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200315 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 case 0:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200317 memset(buf, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 break;
319 case 1: /* mod63 */
320 for (i = 0; i < len; i++)
321 *buf++ = (u8) (i % 63);
322 break;
323 }
324}
325
Greg Dietsche304b0b52011-05-08 22:51:43 -0500326static inline unsigned long buffer_offset(void *buf)
Martin Fuzzey084fb202011-01-16 19:17:11 +0100327{
Greg Dietsche304b0b52011-05-08 22:51:43 -0500328 return (unsigned long)buf & (ARCH_KMALLOC_MINALIGN - 1);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100329}
330
331static int check_guard_bytes(struct usbtest_dev *tdev, struct urb *urb)
332{
333 u8 *buf = urb->transfer_buffer;
334 u8 *guard = buf - buffer_offset(buf);
335 unsigned i;
336
337 for (i = 0; guard < buf; i++, guard++) {
338 if (*guard != GUARD_BYTE) {
339 ERROR(tdev, "guard byte[%d] %d (not %d)\n",
340 i, *guard, GUARD_BYTE);
341 return -EINVAL;
342 }
343 }
344 return 0;
345}
346
347static int simple_check_buf(struct usbtest_dev *tdev, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 unsigned i;
350 u8 expected;
351 u8 *buf = urb->transfer_buffer;
352 unsigned len = urb->actual_length;
353
Martin Fuzzey084fb202011-01-16 19:17:11 +0100354 int ret = check_guard_bytes(tdev, urb);
355 if (ret)
356 return ret;
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 for (i = 0; i < len; i++, buf++) {
359 switch (pattern) {
360 /* all-zeroes has no synchronization issues */
361 case 0:
362 expected = 0;
363 break;
364 /* mod63 stays in sync with short-terminated transfers,
365 * or otherwise when host and gadget agree on how large
366 * each usb transfer request should be. resync is done
367 * with set_interface or set_config.
368 */
369 case 1: /* mod63 */
370 expected = i % 63;
371 break;
372 /* always fail unsupported patterns */
373 default:
374 expected = !*buf;
375 break;
376 }
377 if (*buf == expected)
378 continue;
David Brownell28ffd792008-04-25 18:51:10 -0700379 ERROR(tdev, "buf[%d] = %d (not %d)\n", i, *buf, expected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return -EINVAL;
381 }
382 return 0;
383}
384
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200385static void simple_free_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Greg Dietsche304b0b52011-05-08 22:51:43 -0500387 unsigned long offset = buffer_offset(urb->transfer_buffer);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100388
389 if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
390 usb_free_coherent(
391 urb->dev,
392 urb->transfer_buffer_length + offset,
393 urb->transfer_buffer - offset,
394 urb->transfer_dma - offset);
395 else
396 kfree(urb->transfer_buffer - offset);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200397 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200400static int simple_io(
David Brownell28ffd792008-04-25 18:51:10 -0700401 struct usbtest_dev *tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 struct urb *urb,
403 int iterations,
404 int vary,
405 int expected,
406 const char *label
407)
408{
409 struct usb_device *udev = urb->dev;
410 int max = urb->transfer_buffer_length;
411 struct completion completion;
412 int retval = 0;
Roger Quadrose5e47462013-12-18 15:40:10 +0530413 unsigned long expire;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 urb->context = &completion;
416 while (retval == 0 && iterations-- > 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200417 init_completion(&completion);
Sebastian Andrzej Siewior7c79d092011-08-23 10:44:54 +0200418 if (usb_pipeout(urb->pipe)) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200419 simple_fill_buf(urb);
Sebastian Andrzej Siewior7c79d092011-08-23 10:44:54 +0200420 urb->transfer_flags |= URB_ZERO_PACKET;
421 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200422 retval = usb_submit_urb(urb, GFP_KERNEL);
423 if (retval != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 break;
425
Roger Quadrose5e47462013-12-18 15:40:10 +0530426 expire = msecs_to_jiffies(SIMPLE_IO_TIMEOUT);
427 if (!wait_for_completion_timeout(&completion, expire)) {
428 usb_kill_urb(urb);
429 retval = (urb->status == -ENOENT ?
430 -ETIMEDOUT : urb->status);
431 } else {
432 retval = urb->status;
433 }
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 urb->dev = udev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200436 if (retval == 0 && usb_pipein(urb->pipe))
David Brownell28ffd792008-04-25 18:51:10 -0700437 retval = simple_check_buf(tdev, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 if (vary) {
440 int len = urb->transfer_buffer_length;
441
442 len += vary;
443 len %= max;
444 if (len == 0)
445 len = (vary < max) ? vary : max;
446 urb->transfer_buffer_length = len;
447 }
448
449 /* FIXME if endpoint halted, clear halt (and log) */
450 }
451 urb->transfer_buffer_length = max;
452
453 if (expected != retval)
David Brownell28ffd792008-04-25 18:51:10 -0700454 dev_err(&udev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 "%s failed, iterations left %d, status %d (not %d)\n",
456 label, iterations, retval, expected);
457 return retval;
458}
459
460
461/*-------------------------------------------------------------------------*/
462
463/* We use scatterlist primitives to test queued I/O.
464 * Yes, this also tests the scatterlist primitives.
465 */
466
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200467static void free_sglist(struct scatterlist *sg, int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 unsigned i;
David Brownell28ffd792008-04-25 18:51:10 -0700470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (!sg)
472 return;
473 for (i = 0; i < nents; i++) {
Jens Axboe45711f12007-10-22 21:19:53 +0200474 if (!sg_page(&sg[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 continue;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200476 kfree(sg_virt(&sg[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200478 kfree(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
481static struct scatterlist *
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200482alloc_sglist(int nents, int max, int vary)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 struct scatterlist *sg;
485 unsigned i;
486 unsigned size = max;
487
Dan Carpenter564e6982012-11-17 18:06:11 +0300488 if (max == 0)
489 return NULL;
490
Huang Ruif55055b2013-10-21 23:15:30 +0800491 sg = kmalloc_array(nents, sizeof(*sg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (!sg)
493 return NULL;
Alan Stern4756feb2008-03-27 10:15:22 -0400494 sg_init_table(sg, nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 for (i = 0; i < nents; i++) {
497 char *buf;
David Brownell8b524902006-04-02 10:20:15 -0800498 unsigned j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200500 buf = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 if (!buf) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200502 free_sglist(sg, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return NULL;
504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 /* kmalloc pages are always physically contiguous! */
Alan Stern4756feb2008-03-27 10:15:22 -0400507 sg_set_buf(&sg[i], buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
David Brownell8b524902006-04-02 10:20:15 -0800509 switch (pattern) {
510 case 0:
511 /* already zeroed */
512 break;
513 case 1:
514 for (j = 0; j < size; j++)
515 *buf++ = (u8) (j % 63);
516 break;
517 }
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (vary) {
520 size += vary;
521 size %= max;
522 if (size == 0)
523 size = (vary < max) ? vary : max;
524 }
525 }
526
527 return sg;
528}
529
Alan Stern32b36ee2014-06-03 11:11:34 -0400530static void sg_timeout(unsigned long _req)
531{
532 struct usb_sg_request *req = (struct usb_sg_request *) _req;
533
534 req->status = -ETIMEDOUT;
535 usb_sg_cancel(req);
536}
537
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200538static int perform_sglist(
David Brownell28ffd792008-04-25 18:51:10 -0700539 struct usbtest_dev *tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 unsigned iterations,
541 int pipe,
542 struct usb_sg_request *req,
543 struct scatterlist *sg,
544 int nents
545)
546{
David Brownell28ffd792008-04-25 18:51:10 -0700547 struct usb_device *udev = testdev_to_usbdev(tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 int retval = 0;
Alan Stern32b36ee2014-06-03 11:11:34 -0400549 struct timer_list sg_timer;
550
551 setup_timer_on_stack(&sg_timer, sg_timeout, (unsigned long) req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 while (retval == 0 && iterations-- > 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200554 retval = usb_sg_init(req, udev, pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 (udev->speed == USB_SPEED_HIGH)
556 ? (INTERRUPT_RATE << 3)
557 : INTERRUPT_RATE,
Christoph Lametere94b1762006-12-06 20:33:17 -0800558 sg, nents, 0, GFP_KERNEL);
David Brownell28ffd792008-04-25 18:51:10 -0700559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (retval)
561 break;
Alan Stern32b36ee2014-06-03 11:11:34 -0400562 mod_timer(&sg_timer, jiffies +
563 msecs_to_jiffies(SIMPLE_IO_TIMEOUT));
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200564 usb_sg_wait(req);
Alan Stern32b36ee2014-06-03 11:11:34 -0400565 del_timer_sync(&sg_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 retval = req->status;
567
David Brownell8b524902006-04-02 10:20:15 -0800568 /* FIXME check resulting data pattern */
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 /* FIXME if endpoint halted, clear halt (and log) */
571 }
572
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200573 /* FIXME for unlink or fault handling tests, don't report
574 * failure if retval is as we expected ...
575 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -0700577 ERROR(tdev, "perform_sglist failed, "
578 "iterations left %d, status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 iterations, retval);
580 return retval;
581}
582
583
584/*-------------------------------------------------------------------------*/
585
586/* unqueued control message testing
587 *
588 * there's a nice set of device functional requirements in chapter 9 of the
589 * usb 2.0 spec, which we can apply to ANY device, even ones that don't use
590 * special test firmware.
591 *
592 * we know the device is configured (or suspended) by the time it's visible
593 * through usbfs. we can't change that, so we won't test enumeration (which
594 * worked 'well enough' to get here, this time), power management (ditto),
595 * or remote wakeup (which needs human interaction).
596 */
597
598static unsigned realworld = 1;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200599module_param(realworld, uint, 0);
600MODULE_PARM_DESC(realworld, "clear to demand stricter spec compliance");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200602static int get_altsetting(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 struct usb_interface *iface = dev->intf;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200605 struct usb_device *udev = interface_to_usbdev(iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 int retval;
607
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200608 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 USB_REQ_GET_INTERFACE, USB_DIR_IN|USB_RECIP_INTERFACE,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200610 0, iface->altsetting[0].desc.bInterfaceNumber,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 dev->buf, 1, USB_CTRL_GET_TIMEOUT);
612 switch (retval) {
613 case 1:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200614 return dev->buf[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 case 0:
616 retval = -ERANGE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200617 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 default:
619 return retval;
620 }
621}
622
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200623static int set_altsetting(struct usbtest_dev *dev, int alternate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 struct usb_interface *iface = dev->intf;
626 struct usb_device *udev;
627
628 if (alternate < 0 || alternate >= 256)
629 return -EINVAL;
630
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200631 udev = interface_to_usbdev(iface);
632 return usb_set_interface(udev,
633 iface->altsetting[0].desc.bInterfaceNumber,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 alternate);
635}
636
David Brownell28ffd792008-04-25 18:51:10 -0700637static int is_good_config(struct usbtest_dev *tdev, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 struct usb_config_descriptor *config;
David Brownell28ffd792008-04-25 18:51:10 -0700640
Huang Ruif55055b2013-10-21 23:15:30 +0800641 if (len < sizeof(*config))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return 0;
David Brownell28ffd792008-04-25 18:51:10 -0700643 config = (struct usb_config_descriptor *) tdev->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 switch (config->bDescriptorType) {
646 case USB_DT_CONFIG:
647 case USB_DT_OTHER_SPEED_CONFIG:
648 if (config->bLength != 9) {
David Brownell28ffd792008-04-25 18:51:10 -0700649 ERROR(tdev, "bogus config descriptor length\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return 0;
651 }
652 /* this bit 'must be 1' but often isn't */
653 if (!realworld && !(config->bmAttributes & 0x80)) {
David Brownell28ffd792008-04-25 18:51:10 -0700654 ERROR(tdev, "high bit of config attributes not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return 0;
656 }
657 if (config->bmAttributes & 0x1f) { /* reserved == 0 */
David Brownell28ffd792008-04-25 18:51:10 -0700658 ERROR(tdev, "reserved config bits set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return 0;
660 }
661 break;
662 default:
663 return 0;
664 }
665
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200666 if (le16_to_cpu(config->wTotalLength) == len) /* read it all */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return 1;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200668 if (le16_to_cpu(config->wTotalLength) >= TBUF_SIZE) /* max partial read */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return 1;
David Brownell28ffd792008-04-25 18:51:10 -0700670 ERROR(tdev, "bogus config descriptor read size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return 0;
672}
673
Huang Rui82f92672013-10-30 11:27:38 +0800674static int is_good_ext(struct usbtest_dev *tdev, u8 *buf)
675{
676 struct usb_ext_cap_descriptor *ext;
677 u32 attr;
678
679 ext = (struct usb_ext_cap_descriptor *) buf;
680
681 if (ext->bLength != USB_DT_USB_EXT_CAP_SIZE) {
682 ERROR(tdev, "bogus usb 2.0 extension descriptor length\n");
683 return 0;
684 }
685
686 attr = le32_to_cpu(ext->bmAttributes);
Huang Rui875bc232013-11-13 22:35:14 +0800687 /* bits[1:15] is used and others are reserved */
688 if (attr & ~0xfffe) { /* reserved == 0 */
Huang Rui82f92672013-10-30 11:27:38 +0800689 ERROR(tdev, "reserved bits set\n");
690 return 0;
691 }
692
693 return 1;
694}
695
Huang Ruib8fef792013-10-30 11:27:39 +0800696static int is_good_ss_cap(struct usbtest_dev *tdev, u8 *buf)
697{
698 struct usb_ss_cap_descriptor *ss;
699
700 ss = (struct usb_ss_cap_descriptor *) buf;
701
702 if (ss->bLength != USB_DT_USB_SS_CAP_SIZE) {
703 ERROR(tdev, "bogus superspeed device capability descriptor length\n");
704 return 0;
705 }
706
707 /*
708 * only bit[1] of bmAttributes is used for LTM and others are
709 * reserved
710 */
711 if (ss->bmAttributes & ~0x02) { /* reserved == 0 */
712 ERROR(tdev, "reserved bits set in bmAttributes\n");
713 return 0;
714 }
715
716 /* bits[0:3] of wSpeedSupported is used and others are reserved */
717 if (le16_to_cpu(ss->wSpeedSupported) & ~0x0f) { /* reserved == 0 */
718 ERROR(tdev, "reserved bits set in wSpeedSupported\n");
719 return 0;
720 }
721
722 return 1;
723}
724
Huang Rui8e292172013-10-30 11:27:40 +0800725static int is_good_con_id(struct usbtest_dev *tdev, u8 *buf)
726{
727 struct usb_ss_container_id_descriptor *con_id;
728
729 con_id = (struct usb_ss_container_id_descriptor *) buf;
730
731 if (con_id->bLength != USB_DT_USB_SS_CONTN_ID_SIZE) {
732 ERROR(tdev, "bogus container id descriptor length\n");
733 return 0;
734 }
735
736 if (con_id->bReserved) { /* reserved == 0 */
737 ERROR(tdev, "reserved bits set\n");
738 return 0;
739 }
740
741 return 1;
742}
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744/* sanity test for standard requests working with usb_control_mesg() and some
745 * of the utility functions which use it.
746 *
747 * this doesn't test how endpoint halts behave or data toggles get set, since
748 * we won't do I/O to bulk/interrupt endpoints here (which is how to change
749 * halt or toggle). toggle testing is impractical without support from hcds.
750 *
751 * this avoids failing devices linux would normally work with, by not testing
752 * config/altsetting operations for devices that only support their defaults.
753 * such devices rarely support those needless operations.
754 *
755 * NOTE that since this is a sanity test, it's not examining boundary cases
756 * to see if usbcore, hcd, and device all behave right. such testing would
757 * involve varied read sizes and other operation sequences.
758 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200759static int ch9_postconfig(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
761 struct usb_interface *iface = dev->intf;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200762 struct usb_device *udev = interface_to_usbdev(iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 int i, alt, retval;
764
765 /* [9.2.3] if there's more than one altsetting, we need to be able to
766 * set and get each one. mostly trusts the descriptors from usbcore.
767 */
768 for (i = 0; i < iface->num_altsetting; i++) {
769
770 /* 9.2.3 constrains the range here */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200771 alt = iface->altsetting[i].desc.bAlternateSetting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (alt < 0 || alt >= iface->num_altsetting) {
David Brownell28ffd792008-04-25 18:51:10 -0700773 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 "invalid alt [%d].bAltSetting = %d\n",
775 i, alt);
776 }
777
778 /* [real world] get/set unimplemented if there's only one */
779 if (realworld && iface->num_altsetting == 1)
780 continue;
781
782 /* [9.4.10] set_interface */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200783 retval = set_altsetting(dev, alt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -0700785 dev_err(&iface->dev, "can't set_interface = %d, %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 alt, retval);
787 return retval;
788 }
789
790 /* [9.4.4] get_interface always works */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200791 retval = get_altsetting(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (retval != alt) {
David Brownell28ffd792008-04-25 18:51:10 -0700793 dev_err(&iface->dev, "get alt should be %d, was %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 alt, retval);
795 return (retval < 0) ? retval : -EDOM;
796 }
797
798 }
799
800 /* [real world] get_config unimplemented if there's only one */
801 if (!realworld || udev->descriptor.bNumConfigurations != 1) {
802 int expected = udev->actconfig->desc.bConfigurationValue;
803
804 /* [9.4.2] get_configuration always works
805 * ... although some cheap devices (like one TI Hub I've got)
806 * won't return config descriptors except before set_config.
807 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200808 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 USB_REQ_GET_CONFIGURATION,
810 USB_DIR_IN | USB_RECIP_DEVICE,
811 0, 0, dev->buf, 1, USB_CTRL_GET_TIMEOUT);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200812 if (retval != 1 || dev->buf[0] != expected) {
David Brownell28ffd792008-04-25 18:51:10 -0700813 dev_err(&iface->dev, "get config --> %d %d (1 %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -0700814 retval, dev->buf[0], expected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 return (retval < 0) ? retval : -EDOM;
816 }
817 }
818
819 /* there's always [9.4.3] a device descriptor [9.6.1] */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200820 retval = usb_get_descriptor(udev, USB_DT_DEVICE, 0,
Huang Ruif55055b2013-10-21 23:15:30 +0800821 dev->buf, sizeof(udev->descriptor));
822 if (retval != sizeof(udev->descriptor)) {
David Brownell28ffd792008-04-25 18:51:10 -0700823 dev_err(&iface->dev, "dev descriptor --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return (retval < 0) ? retval : -EDOM;
825 }
826
Huang Rui9d3bd762013-10-28 23:31:32 +0800827 /*
828 * there's always [9.4.3] a bos device descriptor [9.6.2] in USB
829 * 3.0 spec
830 */
Huang Ruif6250992013-11-13 22:35:13 +0800831 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0210) {
Huang Rui82f92672013-10-30 11:27:38 +0800832 struct usb_bos_descriptor *bos = NULL;
833 struct usb_dev_cap_header *header = NULL;
834 unsigned total, num, length;
835 u8 *buf;
836
Huang Rui9d3bd762013-10-28 23:31:32 +0800837 retval = usb_get_descriptor(udev, USB_DT_BOS, 0, dev->buf,
838 sizeof(*udev->bos->desc));
839 if (retval != sizeof(*udev->bos->desc)) {
840 dev_err(&iface->dev, "bos descriptor --> %d\n", retval);
841 return (retval < 0) ? retval : -EDOM;
842 }
Huang Rui82f92672013-10-30 11:27:38 +0800843
844 bos = (struct usb_bos_descriptor *)dev->buf;
845 total = le16_to_cpu(bos->wTotalLength);
846 num = bos->bNumDeviceCaps;
847
848 if (total > TBUF_SIZE)
849 total = TBUF_SIZE;
850
851 /*
852 * get generic device-level capability descriptors [9.6.2]
853 * in USB 3.0 spec
854 */
855 retval = usb_get_descriptor(udev, USB_DT_BOS, 0, dev->buf,
856 total);
857 if (retval != total) {
858 dev_err(&iface->dev, "bos descriptor set --> %d\n",
859 retval);
860 return (retval < 0) ? retval : -EDOM;
861 }
862
863 length = sizeof(*udev->bos->desc);
864 buf = dev->buf;
865 for (i = 0; i < num; i++) {
866 buf += length;
867 if (buf + sizeof(struct usb_dev_cap_header) >
868 dev->buf + total)
869 break;
870
871 header = (struct usb_dev_cap_header *)buf;
872 length = header->bLength;
873
874 if (header->bDescriptorType !=
875 USB_DT_DEVICE_CAPABILITY) {
876 dev_warn(&udev->dev, "not device capability descriptor, skip\n");
877 continue;
878 }
879
880 switch (header->bDevCapabilityType) {
881 case USB_CAP_TYPE_EXT:
882 if (buf + USB_DT_USB_EXT_CAP_SIZE >
883 dev->buf + total ||
884 !is_good_ext(dev, buf)) {
885 dev_err(&iface->dev, "bogus usb 2.0 extension descriptor\n");
886 return -EDOM;
887 }
888 break;
Huang Ruib8fef792013-10-30 11:27:39 +0800889 case USB_SS_CAP_TYPE:
890 if (buf + USB_DT_USB_SS_CAP_SIZE >
891 dev->buf + total ||
892 !is_good_ss_cap(dev, buf)) {
893 dev_err(&iface->dev, "bogus superspeed device capability descriptor\n");
894 return -EDOM;
895 }
896 break;
Huang Rui8e292172013-10-30 11:27:40 +0800897 case CONTAINER_ID_TYPE:
898 if (buf + USB_DT_USB_SS_CONTN_ID_SIZE >
899 dev->buf + total ||
900 !is_good_con_id(dev, buf)) {
901 dev_err(&iface->dev, "bogus container id descriptor\n");
902 return -EDOM;
903 }
904 break;
Huang Rui82f92672013-10-30 11:27:38 +0800905 default:
906 break;
907 }
908 }
Huang Rui9d3bd762013-10-28 23:31:32 +0800909 }
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* there's always [9.4.3] at least one config descriptor [9.6.3] */
912 for (i = 0; i < udev->descriptor.bNumConfigurations; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200913 retval = usb_get_descriptor(udev, USB_DT_CONFIG, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 dev->buf, TBUF_SIZE);
David Brownell28ffd792008-04-25 18:51:10 -0700915 if (!is_good_config(dev, retval)) {
916 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 "config [%d] descriptor --> %d\n",
918 i, retval);
919 return (retval < 0) ? retval : -EDOM;
920 }
921
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200922 /* FIXME cross-checking udev->config[i] to make sure usbcore
923 * parsed it right (etc) would be good testing paranoia
924 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
926
927 /* and sometimes [9.2.6.6] speed dependent descriptors */
928 if (le16_to_cpu(udev->descriptor.bcdUSB) == 0x0200) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200929 struct usb_qualifier_descriptor *d = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 /* device qualifier [9.6.2] */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200932 retval = usb_get_descriptor(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 USB_DT_DEVICE_QUALIFIER, 0, dev->buf,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200934 sizeof(struct usb_qualifier_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (retval == -EPIPE) {
936 if (udev->speed == USB_SPEED_HIGH) {
David Brownell28ffd792008-04-25 18:51:10 -0700937 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 "hs dev qualifier --> %d\n",
939 retval);
940 return (retval < 0) ? retval : -EDOM;
941 }
942 /* usb2.0 but not high-speed capable; fine */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200943 } else if (retval != sizeof(struct usb_qualifier_descriptor)) {
David Brownell28ffd792008-04-25 18:51:10 -0700944 dev_err(&iface->dev, "dev qualifier --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return (retval < 0) ? retval : -EDOM;
946 } else
947 d = (struct usb_qualifier_descriptor *) dev->buf;
948
949 /* might not have [9.6.2] any other-speed configs [9.6.4] */
950 if (d) {
951 unsigned max = d->bNumConfigurations;
952 for (i = 0; i < max; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200953 retval = usb_get_descriptor(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 USB_DT_OTHER_SPEED_CONFIG, i,
955 dev->buf, TBUF_SIZE);
David Brownell28ffd792008-04-25 18:51:10 -0700956 if (!is_good_config(dev, retval)) {
957 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 "other speed config --> %d\n",
959 retval);
960 return (retval < 0) ? retval : -EDOM;
961 }
962 }
963 }
964 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200965 /* FIXME fetch strings from at least the device descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 /* [9.4.5] get_status always works */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200968 retval = usb_get_status(udev, USB_RECIP_DEVICE, 0, dev->buf);
Alan Stern15b73362013-07-30 15:35:40 -0400969 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -0700970 dev_err(&iface->dev, "get dev status --> %d\n", retval);
Alan Stern15b73362013-07-30 15:35:40 -0400971 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
973
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200974 /* FIXME configuration.bmAttributes says if we could try to set/clear
975 * the device's remote wakeup feature ... if we can, test that here
976 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200978 retval = usb_get_status(udev, USB_RECIP_INTERFACE,
979 iface->altsetting[0].desc.bInterfaceNumber, dev->buf);
Alan Stern15b73362013-07-30 15:35:40 -0400980 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -0700981 dev_err(&iface->dev, "get interface status --> %d\n", retval);
Alan Stern15b73362013-07-30 15:35:40 -0400982 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200984 /* FIXME get status for each endpoint in the interface */
David Brownell28ffd792008-04-25 18:51:10 -0700985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return 0;
987}
988
989/*-------------------------------------------------------------------------*/
990
991/* use ch9 requests to test whether:
992 * (a) queues work for control, keeping N subtests queued and
993 * active (auto-resubmit) for M loops through the queue.
994 * (b) protocol stalls (control-only) will autorecover.
995 * it's not like bulk/intr; no halt clearing.
996 * (c) short control reads are reported and handled.
997 * (d) queues are always processed in-order
998 */
999
1000struct ctrl_ctx {
1001 spinlock_t lock;
1002 struct usbtest_dev *dev;
1003 struct completion complete;
1004 unsigned count;
1005 unsigned pending;
1006 int status;
1007 struct urb **urb;
1008 struct usbtest_param *param;
1009 int last;
1010};
1011
Huang Ruic952a8b2013-11-04 21:11:53 +08001012#define NUM_SUBCASES 16 /* how many test subcases here? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014struct subcase {
1015 struct usb_ctrlrequest setup;
1016 int number;
1017 int expected;
1018};
1019
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001020static void ctrl_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 struct ctrl_ctx *ctx = urb->context;
1023 struct usb_ctrlrequest *reqp;
1024 struct subcase *subcase;
1025 int status = urb->status;
1026
1027 reqp = (struct usb_ctrlrequest *)urb->setup_packet;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001028 subcase = container_of(reqp, struct subcase, setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001030 spin_lock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 ctx->count--;
1032 ctx->pending--;
1033
1034 /* queue must transfer and complete in fifo order, unless
1035 * usb_unlink_urb() is used to unlink something not at the
1036 * physical queue head (not tested).
1037 */
1038 if (subcase->number > 0) {
1039 if ((subcase->number - ctx->last) != 1) {
David Brownell28ffd792008-04-25 18:51:10 -07001040 ERROR(ctx->dev,
1041 "subcase %d completed out of order, last %d\n",
1042 subcase->number, ctx->last);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 status = -EDOM;
1044 ctx->last = subcase->number;
1045 goto error;
1046 }
1047 }
1048 ctx->last = subcase->number;
1049
1050 /* succeed or fault in only one way? */
1051 if (status == subcase->expected)
1052 status = 0;
1053
1054 /* async unlink for cleanup? */
1055 else if (status != -ECONNRESET) {
1056
1057 /* some faults are allowed, not required */
1058 if (subcase->expected > 0 && (
Greg Kroah-Hartman59d99782007-07-18 10:58:02 -07001059 ((status == -subcase->expected /* happened */
1060 || status == 0)))) /* didn't */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 status = 0;
1062 /* sometimes more than one fault is allowed */
1063 else if (subcase->number == 12 && status == -EPIPE)
1064 status = 0;
1065 else
David Brownell28ffd792008-04-25 18:51:10 -07001066 ERROR(ctx->dev, "subtest %d error, status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 subcase->number, status);
1068 }
1069
1070 /* unexpected status codes mean errors; ideally, in hardware */
1071 if (status) {
1072error:
1073 if (ctx->status == 0) {
1074 int i;
1075
1076 ctx->status = status;
David Brownell28ffd792008-04-25 18:51:10 -07001077 ERROR(ctx->dev, "control queue %02x.%02x, err %d, "
1078 "%d left, subcase %d, len %d/%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 reqp->bRequestType, reqp->bRequest,
David Brownell28ffd792008-04-25 18:51:10 -07001080 status, ctx->count, subcase->number,
1081 urb->actual_length,
1082 urb->transfer_buffer_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084 /* FIXME this "unlink everything" exit route should
1085 * be a separate test case.
1086 */
1087
1088 /* unlink whatever's still pending */
1089 for (i = 1; i < ctx->param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001090 struct urb *u = ctx->urb[
1091 (i + subcase->number)
1092 % ctx->param->sglen];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 if (u == urb || !u->dev)
1095 continue;
Franck Bui-Huucaa2a122006-05-15 19:23:53 +02001096 spin_unlock(&ctx->lock);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001097 status = usb_unlink_urb(u);
Franck Bui-Huucaa2a122006-05-15 19:23:53 +02001098 spin_lock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 switch (status) {
1100 case -EINPROGRESS:
1101 case -EBUSY:
1102 case -EIDRM:
1103 continue;
1104 default:
David Brownell28ffd792008-04-25 18:51:10 -07001105 ERROR(ctx->dev, "urb unlink --> %d\n",
1106 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 }
1108 }
1109 status = ctx->status;
1110 }
1111 }
1112
1113 /* resubmit if we need to, else mark this as done */
1114 if ((status == 0) && (ctx->pending < ctx->count)) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001115 status = usb_submit_urb(urb, GFP_ATOMIC);
1116 if (status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001117 ERROR(ctx->dev,
1118 "can't resubmit ctrl %02x.%02x, err %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 reqp->bRequestType, reqp->bRequest, status);
1120 urb->dev = NULL;
1121 } else
1122 ctx->pending++;
1123 } else
1124 urb->dev = NULL;
David Brownell28ffd792008-04-25 18:51:10 -07001125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 /* signal completion when nothing's queued */
1127 if (ctx->pending == 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001128 complete(&ctx->complete);
1129 spin_unlock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
1132static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001133test_ctrl_queue(struct usbtest_dev *dev, struct usbtest_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001135 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 struct urb **urb;
1137 struct ctrl_ctx context;
1138 int i;
1139
Xi Wange65cdfa2012-04-09 15:48:55 -04001140 if (param->sglen == 0 || param->iterations > UINT_MAX / param->sglen)
1141 return -EOPNOTSUPP;
1142
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001143 spin_lock_init(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 context.dev = dev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001145 init_completion(&context.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 context.count = param->sglen * param->iterations;
1147 context.pending = 0;
1148 context.status = -ENOMEM;
1149 context.param = param;
1150 context.last = -1;
1151
1152 /* allocate and init the urbs we'll queue.
1153 * as with bulk/intr sglists, sglen is the queue depth; it also
1154 * controls which subtests run (more tests than sglen) or rerun.
1155 */
Christoph Lametere94b1762006-12-06 20:33:17 -08001156 urb = kcalloc(param->sglen, sizeof(struct urb *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 if (!urb)
1158 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001160 int pipe = usb_rcvctrlpipe(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 unsigned len;
1162 struct urb *u;
1163 struct usb_ctrlrequest req;
1164 struct subcase *reqp;
Marcin Slusarz6def7552008-05-12 20:17:25 +02001165
1166 /* sign of this variable means:
1167 * -: tested code must return this (negative) error code
1168 * +: tested code may return this (negative too) error code
1169 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 int expected = 0;
1171
1172 /* requests here are mostly expected to succeed on any
1173 * device, but some are chosen to trigger protocol stalls
1174 * or short reads.
1175 */
Huang Ruif55055b2013-10-21 23:15:30 +08001176 memset(&req, 0, sizeof(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 req.bRequest = USB_REQ_GET_DESCRIPTOR;
1178 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
1179
1180 switch (i % NUM_SUBCASES) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001181 case 0: /* get device descriptor */
1182 req.wValue = cpu_to_le16(USB_DT_DEVICE << 8);
1183 len = sizeof(struct usb_device_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001185 case 1: /* get first config descriptor (only) */
1186 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1187 len = sizeof(struct usb_config_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001189 case 2: /* get altsetting (OFTEN STALLS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 req.bRequest = USB_REQ_GET_INTERFACE;
1191 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001192 /* index = 0 means first interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 len = 1;
1194 expected = EPIPE;
1195 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001196 case 3: /* get interface status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 req.bRequest = USB_REQ_GET_STATUS;
1198 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001199 /* interface 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 len = 2;
1201 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001202 case 4: /* get device status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 req.bRequest = USB_REQ_GET_STATUS;
1204 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
1205 len = 2;
1206 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001207 case 5: /* get device qualifier (MAY STALL) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 req.wValue = cpu_to_le16 (USB_DT_DEVICE_QUALIFIER << 8);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001209 len = sizeof(struct usb_qualifier_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 if (udev->speed != USB_SPEED_HIGH)
1211 expected = EPIPE;
1212 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001213 case 6: /* get first config descriptor, plus interface */
1214 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1215 len = sizeof(struct usb_config_descriptor);
1216 len += sizeof(struct usb_interface_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001218 case 7: /* get interface descriptor (ALWAYS STALLS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 req.wValue = cpu_to_le16 (USB_DT_INTERFACE << 8);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001220 /* interface == 0 */
1221 len = sizeof(struct usb_interface_descriptor);
David Brownell28ffd792008-04-25 18:51:10 -07001222 expected = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001224 /* NOTE: two consecutive stalls in the queue here.
1225 * that tests fault recovery a bit more aggressively. */
1226 case 8: /* clear endpoint halt (MAY STALL) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 req.bRequest = USB_REQ_CLEAR_FEATURE;
1228 req.bRequestType = USB_RECIP_ENDPOINT;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001229 /* wValue 0 == ep halt */
1230 /* wIndex 0 == ep0 (shouldn't halt!) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 len = 0;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001232 pipe = usb_sndctrlpipe(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 expected = EPIPE;
1234 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001235 case 9: /* get endpoint status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 req.bRequest = USB_REQ_GET_STATUS;
1237 req.bRequestType = USB_DIR_IN|USB_RECIP_ENDPOINT;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001238 /* endpoint 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 len = 2;
1240 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001241 case 10: /* trigger short read (EREMOTEIO) */
1242 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 len = 1024;
1244 expected = -EREMOTEIO;
1245 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001246 /* NOTE: two consecutive _different_ faults in the queue. */
1247 case 11: /* get endpoint descriptor (ALWAYS STALLS) */
1248 req.wValue = cpu_to_le16(USB_DT_ENDPOINT << 8);
1249 /* endpoint == 0 */
1250 len = sizeof(struct usb_interface_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 expected = EPIPE;
1252 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001253 /* NOTE: sometimes even a third fault in the queue! */
1254 case 12: /* get string 0 descriptor (MAY STALL) */
1255 req.wValue = cpu_to_le16(USB_DT_STRING << 8);
1256 /* string == 0, for language IDs */
1257 len = sizeof(struct usb_interface_descriptor);
1258 /* may succeed when > 4 languages */
1259 expected = EREMOTEIO; /* or EPIPE, if no strings */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001261 case 13: /* short read, resembling case 10 */
1262 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1263 /* last data packet "should" be DATA1, not DATA0 */
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001264 if (udev->speed == USB_SPEED_SUPER)
1265 len = 1024 - 512;
1266 else
1267 len = 1024 - udev->descriptor.bMaxPacketSize0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 expected = -EREMOTEIO;
1269 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001270 case 14: /* short read; try to fill the last packet */
1271 req.wValue = cpu_to_le16((USB_DT_DEVICE << 8) | 0);
David Brownell28ffd792008-04-25 18:51:10 -07001272 /* device descriptor size == 18 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 len = udev->descriptor.bMaxPacketSize0;
Sebastian Andrzej Siewior67e7d642011-04-14 16:17:21 +02001274 if (udev->speed == USB_SPEED_SUPER)
1275 len = 512;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 switch (len) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001277 case 8:
1278 len = 24;
1279 break;
1280 case 16:
1281 len = 32;
1282 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
1284 expected = -EREMOTEIO;
1285 break;
Huang Ruic952a8b2013-11-04 21:11:53 +08001286 case 15:
1287 req.wValue = cpu_to_le16(USB_DT_BOS << 8);
1288 if (udev->bos)
1289 len = le16_to_cpu(udev->bos->desc->wTotalLength);
1290 else
1291 len = sizeof(struct usb_bos_descriptor);
Sarah Sharp8cf43282013-12-13 13:44:17 -08001292 if (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0201)
Huang Ruic952a8b2013-11-04 21:11:53 +08001293 expected = -EPIPE;
1294 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 default:
David Brownell28ffd792008-04-25 18:51:10 -07001296 ERROR(dev, "bogus number of ctrl queue testcases!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 context.status = -EINVAL;
1298 goto cleanup;
1299 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001300 req.wLength = cpu_to_le16(len);
Amit Virdi457a0952014-08-22 14:36:37 +05301301 urb[i] = u = simple_alloc_urb(udev, pipe, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 if (!u)
1303 goto cleanup;
1304
Huang Ruif55055b2013-10-21 23:15:30 +08001305 reqp = kmalloc(sizeof(*reqp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if (!reqp)
1307 goto cleanup;
1308 reqp->setup = req;
1309 reqp->number = i % NUM_SUBCASES;
1310 reqp->expected = expected;
1311 u->setup_packet = (char *) &reqp->setup;
1312
1313 u->context = &context;
1314 u->complete = ctrl_complete;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 }
1316
1317 /* queue the urbs */
1318 context.urb = urb;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001319 spin_lock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001321 context.status = usb_submit_urb(urb[i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if (context.status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001323 ERROR(dev, "can't submit urb[%d], status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 i, context.status);
1325 context.count = context.pending;
1326 break;
1327 }
1328 context.pending++;
1329 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001330 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 /* FIXME set timer and time out; provide a disconnect hook */
1333
1334 /* wait for the last one to complete */
1335 if (context.pending > 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001336 wait_for_completion(&context.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
1338cleanup:
1339 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001340 if (!urb[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 continue;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001342 urb[i]->dev = udev;
Alan Stern0ede76f2010-03-05 15:10:17 -05001343 kfree(urb[i]->setup_packet);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001344 simple_free_urb(urb[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001346 kfree(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 return context.status;
1348}
1349#undef NUM_SUBCASES
1350
1351
1352/*-------------------------------------------------------------------------*/
1353
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001354static void unlink1_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
1356 int status = urb->status;
1357
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001358 /* we "know" -EPIPE (stall) never happens */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 if (!status)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001360 status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 if (status) {
1362 urb->status = status;
Ming Leicdc97792008-02-24 18:41:47 +08001363 complete(urb->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 }
1365}
1366
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001367static int unlink1(struct usbtest_dev *dev, int pipe, int size, int async)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
1369 struct urb *urb;
1370 struct completion completion;
1371 int retval = 0;
1372
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001373 init_completion(&completion);
Amit Virdi457a0952014-08-22 14:36:37 +05301374 urb = simple_alloc_urb(testdev_to_usbdev(dev), pipe, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 if (!urb)
1376 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 urb->context = &completion;
1378 urb->complete = unlink1_callback;
1379
Huang Ruie4d58f52014-05-26 10:55:36 +08001380 if (usb_pipeout(urb->pipe)) {
1381 simple_fill_buf(urb);
1382 urb->transfer_flags |= URB_ZERO_PACKET;
1383 }
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /* keep the endpoint busy. there are lots of hc/hcd-internal
1386 * states, and testing should get to all of them over time.
1387 *
1388 * FIXME want additional tests for when endpoint is STALLing
1389 * due to errors, or is just NAKing requests.
1390 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001391 retval = usb_submit_urb(urb, GFP_KERNEL);
1392 if (retval != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001393 dev_err(&dev->intf->dev, "submit fail %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 return retval;
1395 }
1396
1397 /* unlinking that should always work. variable delay tests more
1398 * hcd states and code paths, even with little other system load.
1399 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001400 msleep(jiffies % (2 * INTERRUPT_RATE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 if (async) {
Martin Fuzzey3b6c0232009-06-04 23:20:38 +02001402 while (!completion_done(&completion)) {
1403 retval = usb_unlink_urb(urb);
1404
Huang Ruia7683eb2014-05-22 18:06:14 +08001405 if (retval == 0 && usb_pipein(urb->pipe))
1406 retval = simple_check_buf(dev, urb);
1407
Martin Fuzzey3b6c0232009-06-04 23:20:38 +02001408 switch (retval) {
1409 case -EBUSY:
1410 case -EIDRM:
1411 /* we can't unlink urbs while they're completing
1412 * or if they've completed, and we haven't
1413 * resubmitted. "normal" drivers would prevent
1414 * resubmission, but since we're testing unlink
1415 * paths, we can't.
1416 */
1417 ERROR(dev, "unlink retry\n");
1418 continue;
1419 case 0:
1420 case -EINPROGRESS:
1421 break;
1422
1423 default:
1424 dev_err(&dev->intf->dev,
1425 "unlink fail %d\n", retval);
1426 return retval;
1427 }
1428
1429 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431 } else
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001432 usb_kill_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001434 wait_for_completion(&completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 retval = urb->status;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001436 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 if (async)
1439 return (retval == -ECONNRESET) ? 0 : retval - 1000;
1440 else
1441 return (retval == -ENOENT || retval == -EPERM) ?
1442 0 : retval - 2000;
1443}
1444
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001445static int unlink_simple(struct usbtest_dev *dev, int pipe, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
1447 int retval = 0;
1448
1449 /* test sync and async paths */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001450 retval = unlink1(dev, pipe, len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (!retval)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001452 retval = unlink1(dev, pipe, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 return retval;
1454}
1455
1456/*-------------------------------------------------------------------------*/
1457
Alan Stern869410f2011-04-14 11:21:04 -04001458struct queued_ctx {
1459 struct completion complete;
1460 atomic_t pending;
1461 unsigned num;
1462 int status;
1463 struct urb **urbs;
1464};
1465
1466static void unlink_queued_callback(struct urb *urb)
1467{
1468 int status = urb->status;
1469 struct queued_ctx *ctx = urb->context;
1470
1471 if (ctx->status)
1472 goto done;
1473 if (urb == ctx->urbs[ctx->num - 4] || urb == ctx->urbs[ctx->num - 2]) {
1474 if (status == -ECONNRESET)
1475 goto done;
1476 /* What error should we report if the URB completed normally? */
1477 }
1478 if (status != 0)
1479 ctx->status = status;
1480
1481 done:
1482 if (atomic_dec_and_test(&ctx->pending))
1483 complete(&ctx->complete);
1484}
1485
1486static int unlink_queued(struct usbtest_dev *dev, int pipe, unsigned num,
1487 unsigned size)
1488{
1489 struct queued_ctx ctx;
1490 struct usb_device *udev = testdev_to_usbdev(dev);
1491 void *buf;
1492 dma_addr_t buf_dma;
1493 int i;
1494 int retval = -ENOMEM;
1495
1496 init_completion(&ctx.complete);
1497 atomic_set(&ctx.pending, 1); /* One more than the actual value */
1498 ctx.num = num;
1499 ctx.status = 0;
1500
1501 buf = usb_alloc_coherent(udev, size, GFP_KERNEL, &buf_dma);
1502 if (!buf)
1503 return retval;
1504 memset(buf, 0, size);
1505
1506 /* Allocate and init the urbs we'll queue */
1507 ctx.urbs = kcalloc(num, sizeof(struct urb *), GFP_KERNEL);
1508 if (!ctx.urbs)
1509 goto free_buf;
1510 for (i = 0; i < num; i++) {
1511 ctx.urbs[i] = usb_alloc_urb(0, GFP_KERNEL);
1512 if (!ctx.urbs[i])
1513 goto free_urbs;
1514 usb_fill_bulk_urb(ctx.urbs[i], udev, pipe, buf, size,
1515 unlink_queued_callback, &ctx);
1516 ctx.urbs[i]->transfer_dma = buf_dma;
1517 ctx.urbs[i]->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
Huang Ruie4d58f52014-05-26 10:55:36 +08001518
1519 if (usb_pipeout(ctx.urbs[i]->pipe)) {
1520 simple_fill_buf(ctx.urbs[i]);
1521 ctx.urbs[i]->transfer_flags |= URB_ZERO_PACKET;
1522 }
Alan Stern869410f2011-04-14 11:21:04 -04001523 }
1524
1525 /* Submit all the URBs and then unlink URBs num - 4 and num - 2. */
1526 for (i = 0; i < num; i++) {
1527 atomic_inc(&ctx.pending);
1528 retval = usb_submit_urb(ctx.urbs[i], GFP_KERNEL);
1529 if (retval != 0) {
1530 dev_err(&dev->intf->dev, "submit urbs[%d] fail %d\n",
1531 i, retval);
1532 atomic_dec(&ctx.pending);
1533 ctx.status = retval;
1534 break;
1535 }
1536 }
1537 if (i == num) {
1538 usb_unlink_urb(ctx.urbs[num - 4]);
1539 usb_unlink_urb(ctx.urbs[num - 2]);
1540 } else {
1541 while (--i >= 0)
1542 usb_unlink_urb(ctx.urbs[i]);
1543 }
1544
1545 if (atomic_dec_and_test(&ctx.pending)) /* The extra count */
1546 complete(&ctx.complete);
1547 wait_for_completion(&ctx.complete);
1548 retval = ctx.status;
1549
1550 free_urbs:
1551 for (i = 0; i < num; i++)
1552 usb_free_urb(ctx.urbs[i]);
1553 kfree(ctx.urbs);
1554 free_buf:
1555 usb_free_coherent(udev, size, buf, buf_dma);
1556 return retval;
1557}
1558
1559/*-------------------------------------------------------------------------*/
1560
David Brownell28ffd792008-04-25 18:51:10 -07001561static int verify_not_halted(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
1563 int retval;
1564 u16 status;
1565
1566 /* shouldn't look or act halted */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001567 retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001569 ERROR(tdev, "ep %02x couldn't get no-halt status, %d\n",
1570 ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 return retval;
1572 }
1573 if (status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001574 ERROR(tdev, "ep %02x bogus status: %04x != 0\n", ep, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 return -EINVAL;
1576 }
David Brownell28ffd792008-04-25 18:51:10 -07001577 retval = simple_io(tdev, urb, 1, 0, 0, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 if (retval != 0)
1579 return -EINVAL;
1580 return 0;
1581}
1582
David Brownell28ffd792008-04-25 18:51:10 -07001583static int verify_halted(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
1585 int retval;
1586 u16 status;
1587
1588 /* should look and act halted */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001589 retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001591 ERROR(tdev, "ep %02x couldn't get halt status, %d\n",
1592 ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 return retval;
1594 }
1595 if (status != 1) {
David Brownell28ffd792008-04-25 18:51:10 -07001596 ERROR(tdev, "ep %02x bogus status: %04x != 1\n", ep, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 return -EINVAL;
1598 }
David Brownell28ffd792008-04-25 18:51:10 -07001599 retval = simple_io(tdev, urb, 1, 0, -EPIPE, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if (retval != -EPIPE)
1601 return -EINVAL;
David Brownell28ffd792008-04-25 18:51:10 -07001602 retval = simple_io(tdev, urb, 1, 0, -EPIPE, "verify_still_halted");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (retval != -EPIPE)
1604 return -EINVAL;
1605 return 0;
1606}
1607
David Brownell28ffd792008-04-25 18:51:10 -07001608static int test_halt(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
1610 int retval;
1611
1612 /* shouldn't look or act halted now */
David Brownell28ffd792008-04-25 18:51:10 -07001613 retval = verify_not_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 if (retval < 0)
1615 return retval;
1616
1617 /* set halt (protocol test only), verify it worked */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001618 retval = usb_control_msg(urb->dev, usb_sndctrlpipe(urb->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 USB_REQ_SET_FEATURE, USB_RECIP_ENDPOINT,
1620 USB_ENDPOINT_HALT, ep,
1621 NULL, 0, USB_CTRL_SET_TIMEOUT);
1622 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001623 ERROR(tdev, "ep %02x couldn't set halt, %d\n", ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 return retval;
1625 }
David Brownell28ffd792008-04-25 18:51:10 -07001626 retval = verify_halted(tdev, ep, urb);
Roger Quadros824d7522013-12-18 15:40:11 +05301627 if (retval < 0) {
1628 int ret;
1629
1630 /* clear halt anyways, else further tests will fail */
1631 ret = usb_clear_halt(urb->dev, urb->pipe);
1632 if (ret)
1633 ERROR(tdev, "ep %02x couldn't clear halt, %d\n",
1634 ep, ret);
1635
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 return retval;
Roger Quadros824d7522013-12-18 15:40:11 +05301637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 /* clear halt (tests API + protocol), verify it worked */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001640 retval = usb_clear_halt(urb->dev, urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001642 ERROR(tdev, "ep %02x couldn't clear halt, %d\n", ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 return retval;
1644 }
David Brownell28ffd792008-04-25 18:51:10 -07001645 retval = verify_not_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 if (retval < 0)
1647 return retval;
1648
1649 /* NOTE: could also verify SET_INTERFACE clear halts ... */
1650
1651 return 0;
1652}
1653
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001654static int halt_simple(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655{
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001656 int ep;
1657 int retval = 0;
1658 struct urb *urb;
1659 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001661 if (udev->speed == USB_SPEED_SUPER)
Amit Virdi457a0952014-08-22 14:36:37 +05301662 urb = simple_alloc_urb(udev, 0, 1024, 0);
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001663 else
Amit Virdi457a0952014-08-22 14:36:37 +05301664 urb = simple_alloc_urb(udev, 0, 512, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 if (urb == NULL)
1666 return -ENOMEM;
1667
1668 if (dev->in_pipe) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001669 ep = usb_pipeendpoint(dev->in_pipe) | USB_DIR_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 urb->pipe = dev->in_pipe;
David Brownell28ffd792008-04-25 18:51:10 -07001671 retval = test_halt(dev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 if (retval < 0)
1673 goto done;
1674 }
1675
1676 if (dev->out_pipe) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001677 ep = usb_pipeendpoint(dev->out_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 urb->pipe = dev->out_pipe;
David Brownell28ffd792008-04-25 18:51:10 -07001679 retval = test_halt(dev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 }
1681done:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001682 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return retval;
1684}
1685
1686/*-------------------------------------------------------------------------*/
1687
1688/* Control OUT tests use the vendor control requests from Intel's
1689 * USB 2.0 compliance test device: write a buffer, read it back.
1690 *
1691 * Intel's spec only _requires_ that it work for one packet, which
1692 * is pretty weak. Some HCDs place limits here; most devices will
1693 * need to be able to handle more than one OUT data packet. We'll
1694 * try whatever we're told to try.
1695 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001696static int ctrl_out(struct usbtest_dev *dev,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001697 unsigned count, unsigned length, unsigned vary, unsigned offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
Orjan Fribergf54fa842006-08-08 23:31:40 -07001699 unsigned i, j, len;
1700 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 u8 *buf;
1702 char *what = "?";
1703 struct usb_device *udev;
Orjan Fribergf54fa842006-08-08 23:31:40 -07001704
David Brownellff7c79e2005-04-22 13:17:00 -07001705 if (length < 1 || length > 0xffff || vary >= length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 return -EINVAL;
1707
Martin Fuzzey084fb202011-01-16 19:17:11 +01001708 buf = kmalloc(length + offset, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 if (!buf)
1710 return -ENOMEM;
1711
Martin Fuzzey084fb202011-01-16 19:17:11 +01001712 buf += offset;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001713 udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 len = length;
1715 retval = 0;
1716
1717 /* NOTE: hardware might well act differently if we pushed it
1718 * with lots back-to-back queued requests.
1719 */
1720 for (i = 0; i < count; i++) {
1721 /* write patterned data */
1722 for (j = 0; j < len; j++)
Peter Chen169900f2015-09-01 09:48:00 +08001723 buf[j] = (u8)(i + j);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001724 retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 0x5b, USB_DIR_OUT|USB_TYPE_VENDOR,
1726 0, 0, buf, len, USB_CTRL_SET_TIMEOUT);
1727 if (retval != len) {
1728 what = "write";
David Brownellff7c79e2005-04-22 13:17:00 -07001729 if (retval >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001730 ERROR(dev, "ctrl_out, wlen %d (expected %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -07001731 retval, len);
1732 retval = -EBADMSG;
1733 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 break;
1735 }
1736
1737 /* read it back -- assuming nothing intervened!! */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001738 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 0x5c, USB_DIR_IN|USB_TYPE_VENDOR,
1740 0, 0, buf, len, USB_CTRL_GET_TIMEOUT);
1741 if (retval != len) {
1742 what = "read";
David Brownellff7c79e2005-04-22 13:17:00 -07001743 if (retval >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001744 ERROR(dev, "ctrl_out, rlen %d (expected %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -07001745 retval, len);
1746 retval = -EBADMSG;
1747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 break;
1749 }
1750
1751 /* fail if we can't verify */
1752 for (j = 0; j < len; j++) {
Peter Chen169900f2015-09-01 09:48:00 +08001753 if (buf[j] != (u8)(i + j)) {
David Brownell28ffd792008-04-25 18:51:10 -07001754 ERROR(dev, "ctrl_out, byte %d is %d not %d\n",
Peter Chen169900f2015-09-01 09:48:00 +08001755 j, buf[j], (u8)(i + j));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 retval = -EBADMSG;
1757 break;
1758 }
1759 }
1760 if (retval < 0) {
1761 what = "verify";
1762 break;
1763 }
1764
1765 len += vary;
David Brownellff7c79e2005-04-22 13:17:00 -07001766
1767 /* [real world] the "zero bytes IN" case isn't really used.
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001768 * hardware can easily trip up in this weird case, since its
David Brownellff7c79e2005-04-22 13:17:00 -07001769 * status stage is IN, not OUT like other ep0in transfers.
1770 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 if (len > length)
David Brownellff7c79e2005-04-22 13:17:00 -07001772 len = realworld ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 }
1774
1775 if (retval < 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001776 ERROR(dev, "ctrl_out %s failed, code %d, count %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 what, retval, i);
1778
Martin Fuzzey084fb202011-01-16 19:17:11 +01001779 kfree(buf - offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 return retval;
1781}
1782
1783/*-------------------------------------------------------------------------*/
1784
1785/* ISO tests ... mimics common usage
1786 * - buffer length is split into N packets (mostly maxpacket sized)
1787 * - multi-buffers according to sglen
1788 */
1789
1790struct iso_context {
1791 unsigned count;
1792 unsigned pending;
1793 spinlock_t lock;
1794 struct completion done;
Alan Stern9da21502006-05-22 16:47:13 -04001795 int submit_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 unsigned long errors;
Alan Stern9da21502006-05-22 16:47:13 -04001797 unsigned long packet_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 struct usbtest_dev *dev;
1799};
1800
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001801static void iso_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802{
1803 struct iso_context *ctx = urb->context;
1804
1805 spin_lock(&ctx->lock);
1806 ctx->count--;
1807
Alan Stern9da21502006-05-22 16:47:13 -04001808 ctx->packet_count += urb->number_of_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 if (urb->error_count > 0)
1810 ctx->errors += urb->error_count;
Alan Stern9da21502006-05-22 16:47:13 -04001811 else if (urb->status != 0)
1812 ctx->errors += urb->number_of_packets;
Martin Fuzzey40aed522010-10-01 00:20:48 +02001813 else if (urb->actual_length != urb->transfer_buffer_length)
1814 ctx->errors++;
Martin Fuzzey084fb202011-01-16 19:17:11 +01001815 else if (check_guard_bytes(ctx->dev, urb) != 0)
1816 ctx->errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Alan Stern9da21502006-05-22 16:47:13 -04001818 if (urb->status == 0 && ctx->count > (ctx->pending - 1)
1819 && !ctx->submit_error) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001820 int status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 switch (status) {
1822 case 0:
1823 goto done;
1824 default:
David Brownell28ffd792008-04-25 18:51:10 -07001825 dev_err(&ctx->dev->intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 "iso resubmit err %d\n",
1827 status);
1828 /* FALLTHROUGH */
1829 case -ENODEV: /* disconnected */
Alan Stern9da21502006-05-22 16:47:13 -04001830 case -ESHUTDOWN: /* endpoint disabled */
1831 ctx->submit_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 break;
1833 }
1834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
1836 ctx->pending--;
1837 if (ctx->pending == 0) {
1838 if (ctx->errors)
David Brownell28ffd792008-04-25 18:51:10 -07001839 dev_err(&ctx->dev->intf->dev,
Alan Stern9da21502006-05-22 16:47:13 -04001840 "iso test, %lu errors out of %lu\n",
1841 ctx->errors, ctx->packet_count);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001842 complete(&ctx->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
1844done:
1845 spin_unlock(&ctx->lock);
1846}
1847
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001848static struct urb *iso_alloc_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 struct usb_device *udev,
1850 int pipe,
1851 struct usb_endpoint_descriptor *desc,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001852 long bytes,
1853 unsigned offset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854)
1855{
1856 struct urb *urb;
1857 unsigned i, maxp, packets;
1858
1859 if (bytes < 0 || !desc)
1860 return NULL;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001861 maxp = 0x7ff & usb_endpoint_maxp(desc);
1862 maxp *= 1 + (0x3 & (usb_endpoint_maxp(desc) >> 11));
Julia Lawalldfa5ec72008-03-04 15:25:11 -08001863 packets = DIV_ROUND_UP(bytes, maxp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001865 urb = usb_alloc_urb(packets, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 if (!urb)
1867 return urb;
1868 urb->dev = udev;
1869 urb->pipe = pipe;
1870
1871 urb->number_of_packets = packets;
1872 urb->transfer_buffer_length = bytes;
Martin Fuzzey084fb202011-01-16 19:17:11 +01001873 urb->transfer_buffer = usb_alloc_coherent(udev, bytes + offset,
1874 GFP_KERNEL,
1875 &urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 if (!urb->transfer_buffer) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001877 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 return NULL;
1879 }
Martin Fuzzey084fb202011-01-16 19:17:11 +01001880 if (offset) {
1881 memset(urb->transfer_buffer, GUARD_BYTE, offset);
1882 urb->transfer_buffer += offset;
1883 urb->transfer_dma += offset;
1884 }
1885 /* For inbound transfers use guard byte so that test fails if
1886 data not correctly copied */
1887 memset(urb->transfer_buffer,
1888 usb_pipein(urb->pipe) ? GUARD_BYTE : 0,
1889 bytes);
1890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 for (i = 0; i < packets; i++) {
1892 /* here, only the last packet will be short */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001893 urb->iso_frame_desc[i].length = min((unsigned) bytes, maxp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 bytes -= urb->iso_frame_desc[i].length;
1895
1896 urb->iso_frame_desc[i].offset = maxp * i;
1897 }
1898
1899 urb->complete = iso_callback;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001900 /* urb->context = SET BY CALLER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 urb->interval = 1 << (desc->bInterval - 1);
1902 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
1903 return urb;
1904}
1905
1906static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001907test_iso_queue(struct usbtest_dev *dev, struct usbtest_param *param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001908 int pipe, struct usb_endpoint_descriptor *desc, unsigned offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
1910 struct iso_context context;
1911 struct usb_device *udev;
1912 unsigned i;
1913 unsigned long packets = 0;
Alan Stern9da21502006-05-22 16:47:13 -04001914 int status = 0;
Peter Chen41d3c0b2015-09-01 09:47:58 +08001915 struct urb *urbs[param->sglen];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Huang Ruif55055b2013-10-21 23:15:30 +08001917 memset(&context, 0, sizeof(context));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 context.count = param->iterations * param->sglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 context.dev = dev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001920 init_completion(&context.done);
1921 spin_lock_init(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001923 udev = testdev_to_usbdev(dev);
David Brownell28ffd792008-04-25 18:51:10 -07001924 dev_info(&dev->intf->dev,
Peter Chena0c9d0d2015-08-17 16:36:53 +08001925 "iso period %d %sframes, wMaxPacket %d, transactions: %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 1 << (desc->bInterval - 1),
1927 (udev->speed == USB_SPEED_HIGH) ? "micro" : "",
Peter Chena0c9d0d2015-08-17 16:36:53 +08001928 usb_endpoint_maxp(desc) & 0x7ff,
1929 1 + (0x3 & (usb_endpoint_maxp(desc) >> 11)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001932 urbs[i] = iso_alloc_urb(udev, pipe, desc,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001933 param->length, offset);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001934 if (!urbs[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 status = -ENOMEM;
1936 goto fail;
1937 }
1938 packets += urbs[i]->number_of_packets;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001939 urbs[i]->context = &context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 }
1941 packets *= param->iterations;
David Brownell28ffd792008-04-25 18:51:10 -07001942 dev_info(&dev->intf->dev,
Peter Chena0c9d0d2015-08-17 16:36:53 +08001943 "total %lu msec (%lu packets)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 (packets * (1 << (desc->bInterval - 1)))
1945 / ((udev->speed == USB_SPEED_HIGH) ? 8 : 1),
1946 packets);
1947
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001948 spin_lock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 for (i = 0; i < param->sglen; i++) {
Alan Stern9da21502006-05-22 16:47:13 -04001950 ++context.pending;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001951 status = usb_submit_urb(urbs[i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 if (status < 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001953 ERROR(dev, "submit iso[%d], error %d\n", i, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 if (i == 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001955 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 goto fail;
1957 }
1958
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001959 simple_free_urb(urbs[i]);
Ming Leie10e1be2010-08-02 22:09:01 +08001960 urbs[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 context.pending--;
Alan Stern9da21502006-05-22 16:47:13 -04001962 context.submit_error = 1;
1963 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
1965 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001966 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001968 wait_for_completion(&context.done);
Alan Stern9da21502006-05-22 16:47:13 -04001969
Ming Leie10e1be2010-08-02 22:09:01 +08001970 for (i = 0; i < param->sglen; i++) {
1971 if (urbs[i])
1972 simple_free_urb(urbs[i]);
1973 }
Alan Stern9da21502006-05-22 16:47:13 -04001974 /*
1975 * Isochronous transfers are expected to fail sometimes. As an
1976 * arbitrary limit, we will report an error if any submissions
1977 * fail or if the transfer failure rate is > 10%.
1978 */
1979 if (status != 0)
1980 ;
1981 else if (context.submit_error)
1982 status = -EACCES;
1983 else if (context.errors > context.packet_count / 10)
1984 status = -EIO;
1985 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987fail:
1988 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001989 if (urbs[i])
1990 simple_free_urb(urbs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 }
1992 return status;
1993}
1994
Martin Fuzzey084fb202011-01-16 19:17:11 +01001995static int test_unaligned_bulk(
1996 struct usbtest_dev *tdev,
1997 int pipe,
1998 unsigned length,
1999 int iterations,
2000 unsigned transfer_flags,
2001 const char *label)
2002{
2003 int retval;
2004 struct urb *urb = usbtest_alloc_urb(
Amit Virdi457a0952014-08-22 14:36:37 +05302005 testdev_to_usbdev(tdev), pipe, length, transfer_flags, 1, 0);
Martin Fuzzey084fb202011-01-16 19:17:11 +01002006
2007 if (!urb)
2008 return -ENOMEM;
2009
2010 retval = simple_io(tdev, urb, iterations, 0, 0, label);
2011 simple_free_urb(urb);
2012 return retval;
2013}
2014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015/*-------------------------------------------------------------------------*/
2016
2017/* We only have this one interface to user space, through usbfs.
2018 * User mode code can scan usbfs to find N different devices (maybe on
2019 * different busses) to use when testing, and allocate one thread per
2020 * test. So discovery is simplified, and we have no device naming issues.
2021 *
2022 * Don't use these only as stress/load tests. Use them along with with
2023 * other USB bus activity: plugging, unplugging, mousing, mp3 playback,
2024 * video capture, and so on. Run different tests at different times, in
2025 * different sequences. Nothing here should interact with other devices,
2026 * except indirectly by consuming USB bandwidth and CPU resources for test
2027 * threads and request completion. But the only way to know that for sure
2028 * is to test when HC queues are in use by many devices.
David Brownell28ffd792008-04-25 18:51:10 -07002029 *
2030 * WARNING: Because usbfs grabs udev->dev.sem before calling this ioctl(),
2031 * it locks out usbcore in certain code paths. Notably, if you disconnect
Petr Mladek37ebb542014-09-19 17:32:23 +02002032 * the device-under-test, hub_wq will wait block forever waiting for the
David Brownell28ffd792008-04-25 18:51:10 -07002033 * ioctl to complete ... so that usb_disconnect() can abort the pending
2034 * urbs and then call usbtest_disconnect(). To abort a test, you're best
2035 * off just killing the userspace task and waiting for it to exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 */
2037
2038static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002039usbtest_ioctl(struct usb_interface *intf, unsigned int code, void *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002041 struct usbtest_dev *dev = usb_get_intfdata(intf);
2042 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 struct usbtest_param *param = buf;
2044 int retval = -EOPNOTSUPP;
2045 struct urb *urb;
2046 struct scatterlist *sg;
2047 struct usb_sg_request req;
2048 struct timeval start;
2049 unsigned i;
2050
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002051 /* FIXME USBDEVFS_CONNECTINFO doesn't say how fast the device is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Vikram Pandita7f4e9852009-11-09 21:24:32 -06002053 pattern = mod_pattern;
2054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 if (code != USBTEST_REQUEST)
2056 return -EOPNOTSUPP;
2057
roel kluin8aafdf62008-10-21 00:36:44 -04002058 if (param->iterations <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 return -EINVAL;
2060
Peter Chen41d3c0b2015-09-01 09:47:58 +08002061 if (param->sglen > MAX_SGLEN)
2062 return -EINVAL;
2063
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002064 if (mutex_lock_interruptible(&dev->lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 return -ERESTARTSYS;
2066
Alan Stern70a1c9e2008-03-06 17:00:58 -05002067 /* FIXME: What if a system sleep starts while a test is running? */
David Brownellff7c79e2005-04-22 13:17:00 -07002068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 /* some devices, like ez-usb default devices, need a non-default
2070 * altsetting to have any active endpoints. some tests change
2071 * altsettings; force a default so most tests don't need to check.
2072 */
2073 if (dev->info->alt >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07002074 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 if (intf->altsetting->desc.bInterfaceNumber) {
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002077 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 return -ENODEV;
2079 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002080 res = set_altsetting(dev, dev->info->alt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 if (res) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002082 dev_err(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 "set altsetting to %d failed, %d\n",
2084 dev->info->alt, res);
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002085 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 return res;
2087 }
2088 }
2089
2090 /*
2091 * Just a bunch of test cases that every HCD is expected to handle.
2092 *
2093 * Some may need specific firmware, though it'd be good to have
2094 * one firmware image to handle all the test cases.
2095 *
2096 * FIXME add more tests! cancel requests, verify the data, control
2097 * queueing, concurrent read+write threads, and so on.
2098 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002099 do_gettimeofday(&start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 switch (param->test_num) {
2101
2102 case 0:
David Brownell28ffd792008-04-25 18:51:10 -07002103 dev_info(&intf->dev, "TEST 0: NOP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 retval = 0;
2105 break;
2106
2107 /* Simple non-queued bulk I/O tests */
2108 case 1:
2109 if (dev->out_pipe == 0)
2110 break;
David Brownell28ffd792008-04-25 18:51:10 -07002111 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 "TEST 1: write %d bytes %u times\n",
2113 param->length, param->iterations);
Amit Virdi457a0952014-08-22 14:36:37 +05302114 urb = simple_alloc_urb(udev, dev->out_pipe, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 if (!urb) {
2116 retval = -ENOMEM;
2117 break;
2118 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002119 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002120 retval = simple_io(dev, urb, param->iterations, 0, 0, "test1");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002121 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 break;
2123 case 2:
2124 if (dev->in_pipe == 0)
2125 break;
David Brownell28ffd792008-04-25 18:51:10 -07002126 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 "TEST 2: read %d bytes %u times\n",
2128 param->length, param->iterations);
Amit Virdi457a0952014-08-22 14:36:37 +05302129 urb = simple_alloc_urb(udev, dev->in_pipe, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 if (!urb) {
2131 retval = -ENOMEM;
2132 break;
2133 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002134 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002135 retval = simple_io(dev, urb, param->iterations, 0, 0, "test2");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002136 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 break;
2138 case 3:
2139 if (dev->out_pipe == 0 || param->vary == 0)
2140 break;
David Brownell28ffd792008-04-25 18:51:10 -07002141 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 "TEST 3: write/%d 0..%d bytes %u times\n",
2143 param->vary, param->length, param->iterations);
Amit Virdi457a0952014-08-22 14:36:37 +05302144 urb = simple_alloc_urb(udev, dev->out_pipe, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 if (!urb) {
2146 retval = -ENOMEM;
2147 break;
2148 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002149 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002150 retval = simple_io(dev, urb, param->iterations, param->vary,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 0, "test3");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002152 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 break;
2154 case 4:
2155 if (dev->in_pipe == 0 || param->vary == 0)
2156 break;
David Brownell28ffd792008-04-25 18:51:10 -07002157 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 "TEST 4: read/%d 0..%d bytes %u times\n",
2159 param->vary, param->length, param->iterations);
Amit Virdi457a0952014-08-22 14:36:37 +05302160 urb = simple_alloc_urb(udev, dev->in_pipe, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 if (!urb) {
2162 retval = -ENOMEM;
2163 break;
2164 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002165 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002166 retval = simple_io(dev, urb, param->iterations, param->vary,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 0, "test4");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002168 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 break;
2170
2171 /* Queued bulk I/O tests */
2172 case 5:
2173 if (dev->out_pipe == 0 || param->sglen == 0)
2174 break;
David Brownell28ffd792008-04-25 18:51:10 -07002175 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 "TEST 5: write %d sglists %d entries of %d bytes\n",
2177 param->iterations,
2178 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002179 sg = alloc_sglist(param->sglen, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 if (!sg) {
2181 retval = -ENOMEM;
2182 break;
2183 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002184 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002185 retval = perform_sglist(dev, param->iterations, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002187 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 break;
2189
2190 case 6:
2191 if (dev->in_pipe == 0 || param->sglen == 0)
2192 break;
David Brownell28ffd792008-04-25 18:51:10 -07002193 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 "TEST 6: read %d sglists %d entries of %d bytes\n",
2195 param->iterations,
2196 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002197 sg = alloc_sglist(param->sglen, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 if (!sg) {
2199 retval = -ENOMEM;
2200 break;
2201 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002202 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002203 retval = perform_sglist(dev, param->iterations, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002205 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 break;
2207 case 7:
2208 if (dev->out_pipe == 0 || param->sglen == 0 || param->vary == 0)
2209 break;
David Brownell28ffd792008-04-25 18:51:10 -07002210 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 "TEST 7: write/%d %d sglists %d entries 0..%d bytes\n",
2212 param->vary, param->iterations,
2213 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002214 sg = alloc_sglist(param->sglen, param->length, param->vary);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 if (!sg) {
2216 retval = -ENOMEM;
2217 break;
2218 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002219 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002220 retval = perform_sglist(dev, param->iterations, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002222 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 break;
2224 case 8:
2225 if (dev->in_pipe == 0 || param->sglen == 0 || param->vary == 0)
2226 break;
David Brownell28ffd792008-04-25 18:51:10 -07002227 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 "TEST 8: read/%d %d sglists %d entries 0..%d bytes\n",
2229 param->vary, param->iterations,
2230 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002231 sg = alloc_sglist(param->sglen, param->length, param->vary);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 if (!sg) {
2233 retval = -ENOMEM;
2234 break;
2235 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002236 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002237 retval = perform_sglist(dev, param->iterations, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002239 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 break;
2241
2242 /* non-queued sanity tests for control (chapter 9 subset) */
2243 case 9:
2244 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002245 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 "TEST 9: ch9 (subset) control tests, %d times\n",
2247 param->iterations);
2248 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002249 retval = ch9_postconfig(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002251 dev_err(&intf->dev, "ch9 subset failed, "
2252 "iterations left %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 break;
2254
2255 /* queued control messaging */
2256 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002258 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 "TEST 10: queue %d control calls, %d times\n",
2260 param->sglen,
2261 param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002262 retval = test_ctrl_queue(dev, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 break;
2264
2265 /* simple non-queued unlinks (ring with one urb) */
2266 case 11:
2267 if (dev->in_pipe == 0 || !param->length)
2268 break;
2269 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002270 dev_info(&intf->dev, "TEST 11: unlink %d reads of %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 param->iterations, param->length);
2272 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002273 retval = unlink_simple(dev, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 param->length);
2275 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002276 dev_err(&intf->dev, "unlink reads failed %d, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 "iterations left %d\n", retval, i);
2278 break;
2279 case 12:
2280 if (dev->out_pipe == 0 || !param->length)
2281 break;
2282 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002283 dev_info(&intf->dev, "TEST 12: unlink %d writes of %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 param->iterations, param->length);
2285 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002286 retval = unlink_simple(dev, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 param->length);
2288 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002289 dev_err(&intf->dev, "unlink writes failed %d, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 "iterations left %d\n", retval, i);
2291 break;
2292
2293 /* ep halt tests */
2294 case 13:
2295 if (dev->out_pipe == 0 && dev->in_pipe == 0)
2296 break;
2297 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002298 dev_info(&intf->dev, "TEST 13: set/clear %d halts\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 param->iterations);
2300 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002301 retval = halt_simple(dev);
David Brownell28ffd792008-04-25 18:51:10 -07002302
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002304 ERROR(dev, "halts failed, iterations left %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 break;
2306
2307 /* control write tests */
2308 case 14:
2309 if (!dev->info->ctrl_out)
2310 break;
David Brownell28ffd792008-04-25 18:51:10 -07002311 dev_info(&intf->dev, "TEST 14: %d ep0out, %d..%d vary %d\n",
David Brownellff7c79e2005-04-22 13:17:00 -07002312 param->iterations,
2313 realworld ? 1 : 0, param->length,
2314 param->vary);
David Brownell28ffd792008-04-25 18:51:10 -07002315 retval = ctrl_out(dev, param->iterations,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002316 param->length, param->vary, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 break;
2318
2319 /* iso write tests */
2320 case 15:
2321 if (dev->out_iso_pipe == 0 || param->sglen == 0)
2322 break;
David Brownell28ffd792008-04-25 18:51:10 -07002323 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 "TEST 15: write %d iso, %d entries of %d bytes\n",
2325 param->iterations,
2326 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002327 /* FIRMWARE: iso sink */
2328 retval = test_iso_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002329 dev->out_iso_pipe, dev->iso_out, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 break;
2331
2332 /* iso read tests */
2333 case 16:
2334 if (dev->in_iso_pipe == 0 || param->sglen == 0)
2335 break;
David Brownell28ffd792008-04-25 18:51:10 -07002336 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 "TEST 16: read %d iso, %d entries of %d bytes\n",
2338 param->iterations,
2339 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002340 /* FIRMWARE: iso source */
2341 retval = test_iso_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002342 dev->in_iso_pipe, dev->iso_in, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 break;
2344
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002345 /* FIXME scatterlist cancel (needs helper thread) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
Martin Fuzzey084fb202011-01-16 19:17:11 +01002347 /* Tests for bulk I/O using DMA mapping by core and odd address */
2348 case 17:
2349 if (dev->out_pipe == 0)
2350 break;
2351 dev_info(&intf->dev,
2352 "TEST 17: write odd addr %d bytes %u times core map\n",
2353 param->length, param->iterations);
2354
2355 retval = test_unaligned_bulk(
2356 dev, dev->out_pipe,
2357 param->length, param->iterations,
2358 0, "test17");
2359 break;
2360
2361 case 18:
2362 if (dev->in_pipe == 0)
2363 break;
2364 dev_info(&intf->dev,
2365 "TEST 18: read odd addr %d bytes %u times core map\n",
2366 param->length, param->iterations);
2367
2368 retval = test_unaligned_bulk(
2369 dev, dev->in_pipe,
2370 param->length, param->iterations,
2371 0, "test18");
2372 break;
2373
2374 /* Tests for bulk I/O using premapped coherent buffer and odd address */
2375 case 19:
2376 if (dev->out_pipe == 0)
2377 break;
2378 dev_info(&intf->dev,
2379 "TEST 19: write odd addr %d bytes %u times premapped\n",
2380 param->length, param->iterations);
2381
2382 retval = test_unaligned_bulk(
2383 dev, dev->out_pipe,
2384 param->length, param->iterations,
2385 URB_NO_TRANSFER_DMA_MAP, "test19");
2386 break;
2387
2388 case 20:
2389 if (dev->in_pipe == 0)
2390 break;
2391 dev_info(&intf->dev,
2392 "TEST 20: read odd addr %d bytes %u times premapped\n",
2393 param->length, param->iterations);
2394
2395 retval = test_unaligned_bulk(
2396 dev, dev->in_pipe,
2397 param->length, param->iterations,
2398 URB_NO_TRANSFER_DMA_MAP, "test20");
2399 break;
2400
2401 /* control write tests with unaligned buffer */
2402 case 21:
2403 if (!dev->info->ctrl_out)
2404 break;
2405 dev_info(&intf->dev,
2406 "TEST 21: %d ep0out odd addr, %d..%d vary %d\n",
2407 param->iterations,
2408 realworld ? 1 : 0, param->length,
2409 param->vary);
2410 retval = ctrl_out(dev, param->iterations,
2411 param->length, param->vary, 1);
2412 break;
2413
2414 /* unaligned iso tests */
2415 case 22:
2416 if (dev->out_iso_pipe == 0 || param->sglen == 0)
2417 break;
2418 dev_info(&intf->dev,
2419 "TEST 22: write %d iso odd, %d entries of %d bytes\n",
2420 param->iterations,
2421 param->sglen, param->length);
2422 retval = test_iso_queue(dev, param,
2423 dev->out_iso_pipe, dev->iso_out, 1);
2424 break;
2425
2426 case 23:
2427 if (dev->in_iso_pipe == 0 || param->sglen == 0)
2428 break;
2429 dev_info(&intf->dev,
2430 "TEST 23: read %d iso odd, %d entries of %d bytes\n",
2431 param->iterations,
2432 param->sglen, param->length);
2433 retval = test_iso_queue(dev, param,
2434 dev->in_iso_pipe, dev->iso_in, 1);
2435 break;
2436
Alan Stern869410f2011-04-14 11:21:04 -04002437 /* unlink URBs from a bulk-OUT queue */
2438 case 24:
2439 if (dev->out_pipe == 0 || !param->length || param->sglen < 4)
2440 break;
2441 retval = 0;
Alan Stern2cb50002013-01-02 13:58:18 -05002442 dev_info(&intf->dev, "TEST 24: unlink from %d queues of "
Alan Stern869410f2011-04-14 11:21:04 -04002443 "%d %d-byte writes\n",
2444 param->iterations, param->sglen, param->length);
2445 for (i = param->iterations; retval == 0 && i > 0; --i) {
2446 retval = unlink_queued(dev, dev->out_pipe,
2447 param->sglen, param->length);
2448 if (retval) {
2449 dev_err(&intf->dev,
2450 "unlink queued writes failed %d, "
2451 "iterations left %d\n", retval, i);
2452 break;
2453 }
2454 }
2455 break;
2456
Amit Virdi457a0952014-08-22 14:36:37 +05302457 /* Simple non-queued interrupt I/O tests */
2458 case 25:
2459 if (dev->out_int_pipe == 0)
2460 break;
2461 dev_info(&intf->dev,
2462 "TEST 25: write %d bytes %u times\n",
2463 param->length, param->iterations);
2464 urb = simple_alloc_urb(udev, dev->out_int_pipe, param->length,
2465 dev->int_out->bInterval);
2466 if (!urb) {
2467 retval = -ENOMEM;
2468 break;
2469 }
2470 /* FIRMWARE: interrupt sink (maybe accepts short writes) */
2471 retval = simple_io(dev, urb, param->iterations, 0, 0, "test25");
2472 simple_free_urb(urb);
2473 break;
2474 case 26:
2475 if (dev->in_int_pipe == 0)
2476 break;
2477 dev_info(&intf->dev,
2478 "TEST 26: read %d bytes %u times\n",
2479 param->length, param->iterations);
2480 urb = simple_alloc_urb(udev, dev->in_int_pipe, param->length,
2481 dev->int_in->bInterval);
2482 if (!urb) {
2483 retval = -ENOMEM;
2484 break;
2485 }
2486 /* FIRMWARE: interrupt source (maybe generates short writes) */
2487 retval = simple_io(dev, urb, param->iterations, 0, 0, "test26");
2488 simple_free_urb(urb);
2489 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002491 do_gettimeofday(&param->duration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 param->duration.tv_sec -= start.tv_sec;
2493 param->duration.tv_usec -= start.tv_usec;
2494 if (param->duration.tv_usec < 0) {
2495 param->duration.tv_usec += 1000 * 1000;
2496 param->duration.tv_sec -= 1;
2497 }
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002498 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 return retval;
2500}
2501
2502/*-------------------------------------------------------------------------*/
2503
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002504static unsigned force_interrupt;
2505module_param(force_interrupt, uint, 0);
2506MODULE_PARM_DESC(force_interrupt, "0 = test default; else interrupt");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
2508#ifdef GENERIC
2509static unsigned short vendor;
2510module_param(vendor, ushort, 0);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002511MODULE_PARM_DESC(vendor, "vendor code (from usb-if)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
2513static unsigned short product;
2514module_param(product, ushort, 0);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002515MODULE_PARM_DESC(product, "product code (from vendor)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516#endif
2517
2518static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002519usbtest_probe(struct usb_interface *intf, const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520{
2521 struct usb_device *udev;
2522 struct usbtest_dev *dev;
2523 struct usbtest_info *info;
2524 char *rtest, *wtest;
2525 char *irtest, *iwtest;
Amit Virdi457a0952014-08-22 14:36:37 +05302526 char *intrtest, *intwtest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002528 udev = interface_to_usbdev(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
2530#ifdef GENERIC
2531 /* specify devices by module parameters? */
2532 if (id->match_flags == 0) {
2533 /* vendor match required, product match optional */
2534 if (!vendor || le16_to_cpu(udev->descriptor.idVendor) != (u16)vendor)
2535 return -ENODEV;
2536 if (product && le16_to_cpu(udev->descriptor.idProduct) != (u16)product)
2537 return -ENODEV;
David Brownell28ffd792008-04-25 18:51:10 -07002538 dev_info(&intf->dev, "matched module params, "
2539 "vend=0x%04x prod=0x%04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 le16_to_cpu(udev->descriptor.idVendor),
2541 le16_to_cpu(udev->descriptor.idProduct));
2542 }
2543#endif
2544
Christoph Lametere94b1762006-12-06 20:33:17 -08002545 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 if (!dev)
2547 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 info = (struct usbtest_info *) id->driver_info;
2549 dev->info = info;
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002550 mutex_init(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
2552 dev->intf = intf;
2553
2554 /* cacheline-aligned scratch for i/o */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002555 dev->buf = kmalloc(TBUF_SIZE, GFP_KERNEL);
2556 if (dev->buf == NULL) {
2557 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 return -ENOMEM;
2559 }
2560
2561 /* NOTE this doesn't yet test the handful of difference that are
2562 * visible with high speed interrupts: bigger maxpacket (1K) and
2563 * "high bandwidth" modes (up to 3 packets/uframe).
2564 */
2565 rtest = wtest = "";
2566 irtest = iwtest = "";
Amit Virdi457a0952014-08-22 14:36:37 +05302567 intrtest = intwtest = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 if (force_interrupt || udev->speed == USB_SPEED_LOW) {
2569 if (info->ep_in) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002570 dev->in_pipe = usb_rcvintpipe(udev, info->ep_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 rtest = " intr-in";
2572 }
2573 if (info->ep_out) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002574 dev->out_pipe = usb_sndintpipe(udev, info->ep_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 wtest = " intr-out";
2576 }
2577 } else {
Alan Sternd0b46522013-01-30 16:38:11 -05002578 if (override_alt >= 0 || info->autoconf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 int status;
2580
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002581 status = get_endpoints(dev, intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 if (status < 0) {
Arjan van de Venb6c63932008-07-25 01:45:52 -07002583 WARNING(dev, "couldn't get endpoints, %d\n",
David Brownell28ffd792008-04-25 18:51:10 -07002584 status);
Julia Lawallf4a728d2012-03-25 21:08:32 +02002585 kfree(dev->buf);
2586 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 return status;
2588 }
2589 /* may find bulk or ISO pipes */
2590 } else {
2591 if (info->ep_in)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002592 dev->in_pipe = usb_rcvbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 info->ep_in);
2594 if (info->ep_out)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002595 dev->out_pipe = usb_sndbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 info->ep_out);
2597 }
2598 if (dev->in_pipe)
2599 rtest = " bulk-in";
2600 if (dev->out_pipe)
2601 wtest = " bulk-out";
2602 if (dev->in_iso_pipe)
2603 irtest = " iso-in";
2604 if (dev->out_iso_pipe)
2605 iwtest = " iso-out";
Amit Virdi457a0952014-08-22 14:36:37 +05302606 if (dev->in_int_pipe)
2607 intrtest = " int-in";
2608 if (dev->out_int_pipe)
2609 intwtest = " int-out";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 }
2611
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002612 usb_set_intfdata(intf, dev);
2613 dev_info(&intf->dev, "%s\n", info->name);
Amit Virdi457a0952014-08-22 14:36:37 +05302614 dev_info(&intf->dev, "%s {control%s%s%s%s%s%s%s} tests%s\n",
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02002615 usb_speed_string(udev->speed),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 info->ctrl_out ? " in/out" : "",
2617 rtest, wtest,
2618 irtest, iwtest,
Amit Virdi457a0952014-08-22 14:36:37 +05302619 intrtest, intwtest,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 info->alt >= 0 ? " (+alt)" : "");
2621 return 0;
2622}
2623
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002624static int usbtest_suspend(struct usb_interface *intf, pm_message_t message)
David Brownellff7c79e2005-04-22 13:17:00 -07002625{
David Brownellff7c79e2005-04-22 13:17:00 -07002626 return 0;
2627}
2628
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002629static int usbtest_resume(struct usb_interface *intf)
David Brownellff7c79e2005-04-22 13:17:00 -07002630{
David Brownellff7c79e2005-04-22 13:17:00 -07002631 return 0;
2632}
2633
2634
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002635static void usbtest_disconnect(struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002637 struct usbtest_dev *dev = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002639 usb_set_intfdata(intf, NULL);
2640 dev_dbg(&intf->dev, "disconnect\n");
2641 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642}
2643
2644/* Basic testing only needs a device that can source or sink bulk traffic.
2645 * Any device can test control transfers (default with GENERIC binding).
2646 *
2647 * Several entries work with the default EP0 implementation that's built
2648 * into EZ-USB chips. There's a default vendor ID which can be overridden
2649 * by (very) small config EEPROMS, but otherwise all these devices act
2650 * identically until firmware is loaded: only EP0 works. It turns out
2651 * to be easy to make other endpoints work, without modifying that EP0
2652 * behavior. For now, we expect that kind of firmware.
2653 */
2654
2655/* an21xx or fx versions of ez-usb */
2656static struct usbtest_info ez1_info = {
2657 .name = "EZ-USB device",
2658 .ep_in = 2,
2659 .ep_out = 2,
2660 .alt = 1,
2661};
2662
2663/* fx2 version of ez-usb */
2664static struct usbtest_info ez2_info = {
2665 .name = "FX2 device",
2666 .ep_in = 6,
2667 .ep_out = 2,
2668 .alt = 1,
2669};
2670
2671/* ezusb family device with dedicated usb test firmware,
2672 */
2673static struct usbtest_info fw_info = {
2674 .name = "usb test device",
2675 .ep_in = 2,
2676 .ep_out = 2,
2677 .alt = 1,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002678 .autoconf = 1, /* iso and ctrl_out need autoconf */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 .ctrl_out = 1,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002680 .iso = 1, /* iso_ep's are #8 in/out */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681};
2682
2683/* peripheral running Linux and 'zero.c' test firmware, or
2684 * its user-mode cousin. different versions of this use
2685 * different hardware with the same vendor/product codes.
2686 * host side MUST rely on the endpoint descriptors.
2687 */
2688static struct usbtest_info gz_info = {
2689 .name = "Linux gadget zero",
2690 .autoconf = 1,
2691 .ctrl_out = 1,
Boyan Nedeltchev4b85c622012-11-12 13:06:06 +02002692 .iso = 1,
Amit Virdi457a0952014-08-22 14:36:37 +05302693 .intr = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 .alt = 0,
2695};
2696
2697static struct usbtest_info um_info = {
2698 .name = "Linux user mode test driver",
2699 .autoconf = 1,
2700 .alt = -1,
2701};
2702
2703static struct usbtest_info um2_info = {
2704 .name = "Linux user mode ISO test driver",
2705 .autoconf = 1,
2706 .iso = 1,
2707 .alt = -1,
2708};
2709
2710#ifdef IBOT2
2711/* this is a nice source of high speed bulk data;
2712 * uses an FX2, with firmware provided in the device
2713 */
2714static struct usbtest_info ibot2_info = {
2715 .name = "iBOT2 webcam",
2716 .ep_in = 2,
2717 .alt = -1,
2718};
2719#endif
2720
2721#ifdef GENERIC
2722/* we can use any device to test control traffic */
2723static struct usbtest_info generic_info = {
2724 .name = "Generic USB device",
2725 .alt = -1,
2726};
2727#endif
2728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
Németh Márton33b9e162010-01-10 15:34:45 +01002730static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 /*-------------------------------------------------------------*/
2733
2734 /* EZ-USB devices which download firmware to replace (or in our
2735 * case augment) the default device implementation.
2736 */
2737
2738 /* generic EZ-USB FX controller */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002739 { USB_DEVICE(0x0547, 0x2235),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002741 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
2743 /* CY3671 development board with EZ-USB FX */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002744 { USB_DEVICE(0x0547, 0x0080),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002746 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
2748 /* generic EZ-USB FX2 controller (or development board) */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002749 { USB_DEVICE(0x04b4, 0x8613),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 .driver_info = (unsigned long) &ez2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002751 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
2753 /* re-enumerated usb test device firmware */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002754 { USB_DEVICE(0xfff0, 0xfff0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 .driver_info = (unsigned long) &fw_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002756 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
2758 /* "Gadget Zero" firmware runs under Linux */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002759 { USB_DEVICE(0x0525, 0xa4a0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 .driver_info = (unsigned long) &gz_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002761 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
2763 /* so does a user-mode variant */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002764 { USB_DEVICE(0x0525, 0xa4a4),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 .driver_info = (unsigned long) &um_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002766 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768 /* ... and a user-mode variant that talks iso */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002769 { USB_DEVICE(0x0525, 0xa4a3),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 .driver_info = (unsigned long) &um2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002771 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
2773#ifdef KEYSPAN_19Qi
2774 /* Keyspan 19qi uses an21xx (original EZ-USB) */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002775 /* this does not coexist with the real Keyspan 19qi driver! */
2776 { USB_DEVICE(0x06cd, 0x010b),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002778 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779#endif
2780
2781 /*-------------------------------------------------------------*/
2782
2783#ifdef IBOT2
2784 /* iBOT2 makes a nice source of high speed bulk-in data */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002785 /* this does not coexist with a real iBOT2 driver! */
2786 { USB_DEVICE(0x0b62, 0x0059),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 .driver_info = (unsigned long) &ibot2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002788 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789#endif
2790
2791 /*-------------------------------------------------------------*/
2792
2793#ifdef GENERIC
2794 /* module params can specify devices to use for control tests */
2795 { .driver_info = (unsigned long) &generic_info, },
2796#endif
2797
2798 /*-------------------------------------------------------------*/
2799
2800 { }
2801};
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002802MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
2804static struct usb_driver usbtest_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 .name = "usbtest",
2806 .id_table = id_table,
2807 .probe = usbtest_probe,
Andi Kleenc532b292010-06-01 23:04:41 +02002808 .unlocked_ioctl = usbtest_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 .disconnect = usbtest_disconnect,
David Brownellff7c79e2005-04-22 13:17:00 -07002810 .suspend = usbtest_suspend,
2811 .resume = usbtest_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812};
2813
2814/*-------------------------------------------------------------------------*/
2815
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002816static int __init usbtest_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817{
2818#ifdef GENERIC
2819 if (vendor)
David Brownell28ffd792008-04-25 18:51:10 -07002820 pr_debug("params: vend=0x%04x prod=0x%04x\n", vendor, product);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821#endif
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002822 return usb_register(&usbtest_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823}
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002824module_init(usbtest_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002826static void __exit usbtest_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002828 usb_deregister(&usbtest_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829}
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002830module_exit(usbtest_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002832MODULE_DESCRIPTION("USB Core/HCD Testing Driver");
2833MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834