blob: 637f3f7cfce8b884167ccd6e25c9d6de9cd0eaf6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/kernel.h>
2#include <linux/errno.h>
3#include <linux/init.h>
4#include <linux/slab.h>
5#include <linux/mm.h>
6#include <linux/module.h>
7#include <linux/moduleparam.h>
David Hardeman378f0582005-09-17 17:55:31 +10008#include <linux/scatterlist.h>
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08009#include <linux/mutex.h>
Alan Stern32b36ee2014-06-03 11:11:34 -040010#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/usb.h>
12
Roger Quadrose5e47462013-12-18 15:40:10 +053013#define SIMPLE_IO_TIMEOUT 10000 /* in milliseconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15/*-------------------------------------------------------------------------*/
16
Alan Sternd0b46522013-01-30 16:38:11 -050017static int override_alt = -1;
18module_param_named(alt, override_alt, int, 0644);
19MODULE_PARM_DESC(alt, ">= 0 to override altsetting selection");
Peter Chen145f48c2015-10-13 15:18:21 +080020static void complicated_callback(struct urb *urb);
Alan Sternd0b46522013-01-30 16:38:11 -050021
22/*-------------------------------------------------------------------------*/
23
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020024/* FIXME make these public somewhere; usbdevfs.h? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025struct usbtest_param {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020026 /* inputs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 unsigned test_num; /* 0..(TEST_CASES-1) */
28 unsigned iterations;
29 unsigned length;
30 unsigned vary;
31 unsigned sglen;
32
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020033 /* outputs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 struct timeval duration;
35};
36#define USBTEST_REQUEST _IOWR('U', 100, struct usbtest_param)
37
38/*-------------------------------------------------------------------------*/
39
40#define GENERIC /* let probe() bind using module params */
41
42/* Some devices that can be used for testing will have "real" drivers.
43 * Entries for those need to be enabled here by hand, after disabling
44 * that "real" driver.
45 */
46//#define IBOT2 /* grab iBOT2 webcams */
47//#define KEYSPAN_19Qi /* grab un-renumerated serial adapter */
48
49/*-------------------------------------------------------------------------*/
50
51struct usbtest_info {
52 const char *name;
53 u8 ep_in; /* bulk/intr source */
54 u8 ep_out; /* bulk/intr sink */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020055 unsigned autoconf:1;
56 unsigned ctrl_out:1;
57 unsigned iso:1; /* try iso in/out */
Amit Virdi457a0952014-08-22 14:36:37 +053058 unsigned intr:1; /* try interrupt in/out */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 int alt;
60};
61
62/* this is accessed only through usbfs ioctl calls.
63 * one ioctl to issue a test ... one lock per device.
64 * tests create other threads if they need them.
65 * urbs and buffers are allocated dynamically,
66 * and data generated deterministically.
67 */
68struct usbtest_dev {
69 struct usb_interface *intf;
70 struct usbtest_info *info;
71 int in_pipe;
72 int out_pipe;
73 int in_iso_pipe;
74 int out_iso_pipe;
Amit Virdi457a0952014-08-22 14:36:37 +053075 int in_int_pipe;
76 int out_int_pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 struct usb_endpoint_descriptor *iso_in, *iso_out;
Amit Virdi457a0952014-08-22 14:36:37 +053078 struct usb_endpoint_descriptor *int_in, *int_out;
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -080079 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81#define TBUF_SIZE 256
82 u8 *buf;
83};
84
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020085static struct usb_device *testdev_to_usbdev(struct usbtest_dev *test)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +020087 return interface_to_usbdev(test->intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
90/* set up all urbs so they can be used with either bulk or interrupt */
91#define INTERRUPT_RATE 1 /* msec/transfer */
92
David Brownell28ffd792008-04-25 18:51:10 -070093#define ERROR(tdev, fmt, args...) \
94 dev_err(&(tdev)->intf->dev , fmt , ## args)
Arjan van de Venb6c63932008-07-25 01:45:52 -070095#define WARNING(tdev, fmt, args...) \
David Brownell28ffd792008-04-25 18:51:10 -070096 dev_warn(&(tdev)->intf->dev , fmt , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Martin Fuzzey084fb202011-01-16 19:17:11 +010098#define GUARD_BYTE 0xA5
Peter Chen41d3c0b2015-09-01 09:47:58 +080099#define MAX_SGLEN 128
Martin Fuzzey084fb202011-01-16 19:17:11 +0100100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101/*-------------------------------------------------------------------------*/
102
103static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200104get_endpoints(struct usbtest_dev *dev, struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 int tmp;
107 struct usb_host_interface *alt;
108 struct usb_host_endpoint *in, *out;
109 struct usb_host_endpoint *iso_in, *iso_out;
Amit Virdi457a0952014-08-22 14:36:37 +0530110 struct usb_host_endpoint *int_in, *int_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 struct usb_device *udev;
112
113 for (tmp = 0; tmp < intf->num_altsetting; tmp++) {
114 unsigned ep;
115
116 in = out = NULL;
117 iso_in = iso_out = NULL;
Amit Virdi457a0952014-08-22 14:36:37 +0530118 int_in = int_out = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 alt = intf->altsetting + tmp;
120
Alan Sternd0b46522013-01-30 16:38:11 -0500121 if (override_alt >= 0 &&
122 override_alt != alt->desc.bAlternateSetting)
123 continue;
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /* take the first altsetting with in-bulk + out-bulk;
Justin P. Mattock70f23fd2011-05-10 10:16:21 +0200126 * ignore other endpoints and altsettings.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 */
128 for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) {
129 struct usb_host_endpoint *e;
130
131 e = alt->endpoint + ep;
Huang Rui9a37a502013-09-24 00:03:43 +0800132 switch (usb_endpoint_type(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 case USB_ENDPOINT_XFER_BULK:
134 break;
Amit Virdi457a0952014-08-22 14:36:37 +0530135 case USB_ENDPOINT_XFER_INT:
136 if (dev->info->intr)
137 goto try_intr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 case USB_ENDPOINT_XFER_ISOC:
139 if (dev->info->iso)
140 goto try_iso;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200141 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 default:
143 continue;
144 }
Luiz Fernando N. Capitulino4d823dd2006-10-26 13:03:02 -0300145 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 if (!in)
147 in = e;
148 } else {
149 if (!out)
150 out = e;
151 }
152 continue;
Amit Virdi457a0952014-08-22 14:36:37 +0530153try_intr:
154 if (usb_endpoint_dir_in(&e->desc)) {
155 if (!int_in)
156 int_in = e;
157 } else {
158 if (!int_out)
159 int_out = e;
160 }
161 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162try_iso:
Luiz Fernando N. Capitulino4d823dd2006-10-26 13:03:02 -0300163 if (usb_endpoint_dir_in(&e->desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if (!iso_in)
165 iso_in = e;
166 } else {
167 if (!iso_out)
168 iso_out = e;
169 }
170 }
Amit Virdi457a0952014-08-22 14:36:37 +0530171 if ((in && out) || iso_in || iso_out || int_in || int_out)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 goto found;
173 }
174 return -EINVAL;
175
176found:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200177 udev = testdev_to_usbdev(dev);
Alan Sternd0b46522013-01-30 16:38:11 -0500178 dev->info->alt = alt->desc.bAlternateSetting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 if (alt->desc.bAlternateSetting != 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200180 tmp = usb_set_interface(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 alt->desc.bInterfaceNumber,
182 alt->desc.bAlternateSetting);
183 if (tmp < 0)
184 return tmp;
185 }
186
187 if (in) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200188 dev->in_pipe = usb_rcvbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200190 dev->out_pipe = usb_sndbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 out->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
192 }
193 if (iso_in) {
194 dev->iso_in = &iso_in->desc;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200195 dev->in_iso_pipe = usb_rcvisocpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 iso_in->desc.bEndpointAddress
197 & USB_ENDPOINT_NUMBER_MASK);
Ming Lei951fd8e2010-08-02 22:09:17 +0800198 }
199
200 if (iso_out) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 dev->iso_out = &iso_out->desc;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200202 dev->out_iso_pipe = usb_sndisocpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 iso_out->desc.bEndpointAddress
204 & USB_ENDPOINT_NUMBER_MASK);
205 }
Amit Virdi457a0952014-08-22 14:36:37 +0530206
207 if (int_in) {
208 dev->int_in = &int_in->desc;
209 dev->in_int_pipe = usb_rcvintpipe(udev,
210 int_in->desc.bEndpointAddress
211 & USB_ENDPOINT_NUMBER_MASK);
212 }
213
214 if (int_out) {
215 dev->int_out = &int_out->desc;
216 dev->out_int_pipe = usb_sndintpipe(udev,
217 int_out->desc.bEndpointAddress
218 & USB_ENDPOINT_NUMBER_MASK);
219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return 0;
221}
222
223/*-------------------------------------------------------------------------*/
224
225/* Support for testing basic non-queued I/O streams.
226 *
227 * These just package urbs as requests that can be easily canceled.
228 * Each urb's data buffer is dynamically allocated; callers can fill
229 * them with non-zero test data (or test for it) when appropriate.
230 */
231
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200232static void simple_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Ming Leicdc97792008-02-24 18:41:47 +0800234 complete(urb->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
Martin Fuzzey084fb202011-01-16 19:17:11 +0100237static struct urb *usbtest_alloc_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 struct usb_device *udev,
239 int pipe,
Martin Fuzzey084fb202011-01-16 19:17:11 +0100240 unsigned long bytes,
241 unsigned transfer_flags,
Amit Virdi457a0952014-08-22 14:36:37 +0530242 unsigned offset,
Peter Chen145f48c2015-10-13 15:18:21 +0800243 u8 bInterval,
244 usb_complete_t complete_fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 struct urb *urb;
247
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200248 urb = usb_alloc_urb(0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (!urb)
250 return urb;
Amit Virdi457a0952014-08-22 14:36:37 +0530251
252 if (bInterval)
Peter Chen145f48c2015-10-13 15:18:21 +0800253 usb_fill_int_urb(urb, udev, pipe, NULL, bytes, complete_fn,
Amit Virdi457a0952014-08-22 14:36:37 +0530254 NULL, bInterval);
255 else
Peter Chen145f48c2015-10-13 15:18:21 +0800256 usb_fill_bulk_urb(urb, udev, pipe, NULL, bytes, complete_fn,
Amit Virdi457a0952014-08-22 14:36:37 +0530257 NULL);
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 urb->interval = (udev->speed == USB_SPEED_HIGH)
260 ? (INTERRUPT_RATE << 3)
261 : INTERRUPT_RATE;
Martin Fuzzey084fb202011-01-16 19:17:11 +0100262 urb->transfer_flags = transfer_flags;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200263 if (usb_pipein(pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 urb->transfer_flags |= URB_SHORT_NOT_OK;
Martin Fuzzey084fb202011-01-16 19:17:11 +0100265
266 if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
267 urb->transfer_buffer = usb_alloc_coherent(udev, bytes + offset,
268 GFP_KERNEL, &urb->transfer_dma);
269 else
270 urb->transfer_buffer = kmalloc(bytes + offset, GFP_KERNEL);
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (!urb->transfer_buffer) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200273 usb_free_urb(urb);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100274 return NULL;
275 }
276
277 /* To test unaligned transfers add an offset and fill the
278 unused memory with a guard value */
279 if (offset) {
280 memset(urb->transfer_buffer, GUARD_BYTE, offset);
281 urb->transfer_buffer += offset;
282 if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
283 urb->transfer_dma += offset;
284 }
285
286 /* For inbound transfers use guard byte so that test fails if
287 data not correctly copied */
288 memset(urb->transfer_buffer,
289 usb_pipein(urb->pipe) ? GUARD_BYTE : 0,
290 bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return urb;
292}
293
Martin Fuzzey084fb202011-01-16 19:17:11 +0100294static struct urb *simple_alloc_urb(
295 struct usb_device *udev,
296 int pipe,
Amit Virdi457a0952014-08-22 14:36:37 +0530297 unsigned long bytes,
298 u8 bInterval)
Martin Fuzzey084fb202011-01-16 19:17:11 +0100299{
Amit Virdi457a0952014-08-22 14:36:37 +0530300 return usbtest_alloc_urb(udev, pipe, bytes, URB_NO_TRANSFER_DMA_MAP, 0,
Peter Chen145f48c2015-10-13 15:18:21 +0800301 bInterval, simple_callback);
302}
303
304static struct urb *complicated_alloc_urb(
305 struct usb_device *udev,
306 int pipe,
307 unsigned long bytes,
308 u8 bInterval)
309{
310 return usbtest_alloc_urb(udev, pipe, bytes, URB_NO_TRANSFER_DMA_MAP, 0,
311 bInterval, complicated_callback);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100312}
313
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200314static unsigned pattern;
Vikram Pandita7f4e9852009-11-09 21:24:32 -0600315static unsigned mod_pattern;
316module_param_named(pattern, mod_pattern, uint, S_IRUGO | S_IWUSR);
317MODULE_PARM_DESC(mod_pattern, "i/o pattern (0 == zeroes)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800319static unsigned get_maxpacket(struct usb_device *udev, int pipe)
320{
321 struct usb_host_endpoint *ep;
322
323 ep = usb_pipe_endpoint(udev, pipe);
324 return le16_to_cpup(&ep->desc.wMaxPacketSize);
325}
326
327static void simple_fill_buf(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 unsigned i;
330 u8 *buf = urb->transfer_buffer;
331 unsigned len = urb->transfer_buffer_length;
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800332 unsigned maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 switch (pattern) {
335 default:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200336 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 case 0:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200338 memset(buf, 0, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 break;
340 case 1: /* mod63 */
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800341 maxpacket = get_maxpacket(urb->dev, urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 for (i = 0; i < len; i++)
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800343 *buf++ = (u8) ((i % maxpacket) % 63);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 break;
345 }
346}
347
Greg Dietsche304b0b52011-05-08 22:51:43 -0500348static inline unsigned long buffer_offset(void *buf)
Martin Fuzzey084fb202011-01-16 19:17:11 +0100349{
Greg Dietsche304b0b52011-05-08 22:51:43 -0500350 return (unsigned long)buf & (ARCH_KMALLOC_MINALIGN - 1);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100351}
352
353static int check_guard_bytes(struct usbtest_dev *tdev, struct urb *urb)
354{
355 u8 *buf = urb->transfer_buffer;
356 u8 *guard = buf - buffer_offset(buf);
357 unsigned i;
358
359 for (i = 0; guard < buf; i++, guard++) {
360 if (*guard != GUARD_BYTE) {
361 ERROR(tdev, "guard byte[%d] %d (not %d)\n",
362 i, *guard, GUARD_BYTE);
363 return -EINVAL;
364 }
365 }
366 return 0;
367}
368
369static int simple_check_buf(struct usbtest_dev *tdev, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 unsigned i;
372 u8 expected;
373 u8 *buf = urb->transfer_buffer;
374 unsigned len = urb->actual_length;
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800375 unsigned maxpacket = get_maxpacket(urb->dev, urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Martin Fuzzey084fb202011-01-16 19:17:11 +0100377 int ret = check_guard_bytes(tdev, urb);
378 if (ret)
379 return ret;
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 for (i = 0; i < len; i++, buf++) {
382 switch (pattern) {
383 /* all-zeroes has no synchronization issues */
384 case 0:
385 expected = 0;
386 break;
387 /* mod63 stays in sync with short-terminated transfers,
388 * or otherwise when host and gadget agree on how large
389 * each usb transfer request should be. resync is done
390 * with set_interface or set_config.
391 */
392 case 1: /* mod63 */
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800393 expected = (i % maxpacket) % 63;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 break;
395 /* always fail unsupported patterns */
396 default:
397 expected = !*buf;
398 break;
399 }
400 if (*buf == expected)
401 continue;
David Brownell28ffd792008-04-25 18:51:10 -0700402 ERROR(tdev, "buf[%d] = %d (not %d)\n", i, *buf, expected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return -EINVAL;
404 }
405 return 0;
406}
407
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200408static void simple_free_urb(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Greg Dietsche304b0b52011-05-08 22:51:43 -0500410 unsigned long offset = buffer_offset(urb->transfer_buffer);
Martin Fuzzey084fb202011-01-16 19:17:11 +0100411
412 if (urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)
413 usb_free_coherent(
414 urb->dev,
415 urb->transfer_buffer_length + offset,
416 urb->transfer_buffer - offset,
417 urb->transfer_dma - offset);
418 else
419 kfree(urb->transfer_buffer - offset);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200420 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200423static int simple_io(
David Brownell28ffd792008-04-25 18:51:10 -0700424 struct usbtest_dev *tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 struct urb *urb,
426 int iterations,
427 int vary,
428 int expected,
429 const char *label
430)
431{
432 struct usb_device *udev = urb->dev;
433 int max = urb->transfer_buffer_length;
434 struct completion completion;
435 int retval = 0;
Roger Quadrose5e47462013-12-18 15:40:10 +0530436 unsigned long expire;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 urb->context = &completion;
439 while (retval == 0 && iterations-- > 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200440 init_completion(&completion);
Sebastian Andrzej Siewior7c79d092011-08-23 10:44:54 +0200441 if (usb_pipeout(urb->pipe)) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200442 simple_fill_buf(urb);
Sebastian Andrzej Siewior7c79d092011-08-23 10:44:54 +0200443 urb->transfer_flags |= URB_ZERO_PACKET;
444 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200445 retval = usb_submit_urb(urb, GFP_KERNEL);
446 if (retval != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 break;
448
Roger Quadrose5e47462013-12-18 15:40:10 +0530449 expire = msecs_to_jiffies(SIMPLE_IO_TIMEOUT);
450 if (!wait_for_completion_timeout(&completion, expire)) {
451 usb_kill_urb(urb);
452 retval = (urb->status == -ENOENT ?
453 -ETIMEDOUT : urb->status);
454 } else {
455 retval = urb->status;
456 }
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 urb->dev = udev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200459 if (retval == 0 && usb_pipein(urb->pipe))
David Brownell28ffd792008-04-25 18:51:10 -0700460 retval = simple_check_buf(tdev, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 if (vary) {
463 int len = urb->transfer_buffer_length;
464
465 len += vary;
466 len %= max;
467 if (len == 0)
468 len = (vary < max) ? vary : max;
469 urb->transfer_buffer_length = len;
470 }
471
472 /* FIXME if endpoint halted, clear halt (and log) */
473 }
474 urb->transfer_buffer_length = max;
475
476 if (expected != retval)
David Brownell28ffd792008-04-25 18:51:10 -0700477 dev_err(&udev->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 "%s failed, iterations left %d, status %d (not %d)\n",
479 label, iterations, retval, expected);
480 return retval;
481}
482
483
484/*-------------------------------------------------------------------------*/
485
486/* We use scatterlist primitives to test queued I/O.
487 * Yes, this also tests the scatterlist primitives.
488 */
489
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200490static void free_sglist(struct scatterlist *sg, int nents)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
492 unsigned i;
David Brownell28ffd792008-04-25 18:51:10 -0700493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (!sg)
495 return;
496 for (i = 0; i < nents; i++) {
Jens Axboe45711f12007-10-22 21:19:53 +0200497 if (!sg_page(&sg[i]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 continue;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200499 kfree(sg_virt(&sg[i]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200501 kfree(sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
504static struct scatterlist *
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800505alloc_sglist(int nents, int max, int vary, struct usbtest_dev *dev, int pipe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
507 struct scatterlist *sg;
508 unsigned i;
509 unsigned size = max;
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800510 unsigned maxpacket =
511 get_maxpacket(interface_to_usbdev(dev->intf), pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Dan Carpenter564e6982012-11-17 18:06:11 +0300513 if (max == 0)
514 return NULL;
515
Huang Ruif55055b2013-10-21 23:15:30 +0800516 sg = kmalloc_array(nents, sizeof(*sg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (!sg)
518 return NULL;
Alan Stern4756feb2008-03-27 10:15:22 -0400519 sg_init_table(sg, nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 for (i = 0; i < nents; i++) {
522 char *buf;
David Brownell8b524902006-04-02 10:20:15 -0800523 unsigned j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200525 buf = kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (!buf) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200527 free_sglist(sg, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return NULL;
529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 /* kmalloc pages are always physically contiguous! */
Alan Stern4756feb2008-03-27 10:15:22 -0400532 sg_set_buf(&sg[i], buf, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
David Brownell8b524902006-04-02 10:20:15 -0800534 switch (pattern) {
535 case 0:
536 /* already zeroed */
537 break;
538 case 1:
539 for (j = 0; j < size; j++)
Alan Sternb9a6e8e2015-09-01 09:48:01 +0800540 *buf++ = (u8) ((j % maxpacket) % 63);
David Brownell8b524902006-04-02 10:20:15 -0800541 break;
542 }
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (vary) {
545 size += vary;
546 size %= max;
547 if (size == 0)
548 size = (vary < max) ? vary : max;
549 }
550 }
551
552 return sg;
553}
554
Alan Stern32b36ee2014-06-03 11:11:34 -0400555static void sg_timeout(unsigned long _req)
556{
557 struct usb_sg_request *req = (struct usb_sg_request *) _req;
558
559 req->status = -ETIMEDOUT;
560 usb_sg_cancel(req);
561}
562
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200563static int perform_sglist(
David Brownell28ffd792008-04-25 18:51:10 -0700564 struct usbtest_dev *tdev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 unsigned iterations,
566 int pipe,
567 struct usb_sg_request *req,
568 struct scatterlist *sg,
569 int nents
570)
571{
David Brownell28ffd792008-04-25 18:51:10 -0700572 struct usb_device *udev = testdev_to_usbdev(tdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 int retval = 0;
Alan Stern32b36ee2014-06-03 11:11:34 -0400574 struct timer_list sg_timer;
575
576 setup_timer_on_stack(&sg_timer, sg_timeout, (unsigned long) req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 while (retval == 0 && iterations-- > 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200579 retval = usb_sg_init(req, udev, pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 (udev->speed == USB_SPEED_HIGH)
581 ? (INTERRUPT_RATE << 3)
582 : INTERRUPT_RATE,
Christoph Lametere94b1762006-12-06 20:33:17 -0800583 sg, nents, 0, GFP_KERNEL);
David Brownell28ffd792008-04-25 18:51:10 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (retval)
586 break;
Alan Stern32b36ee2014-06-03 11:11:34 -0400587 mod_timer(&sg_timer, jiffies +
588 msecs_to_jiffies(SIMPLE_IO_TIMEOUT));
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200589 usb_sg_wait(req);
Alan Stern32b36ee2014-06-03 11:11:34 -0400590 del_timer_sync(&sg_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 retval = req->status;
592
David Brownell8b524902006-04-02 10:20:15 -0800593 /* FIXME check resulting data pattern */
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 /* FIXME if endpoint halted, clear halt (and log) */
596 }
597
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200598 /* FIXME for unlink or fault handling tests, don't report
599 * failure if retval is as we expected ...
600 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -0700602 ERROR(tdev, "perform_sglist failed, "
603 "iterations left %d, status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 iterations, retval);
605 return retval;
606}
607
608
609/*-------------------------------------------------------------------------*/
610
611/* unqueued control message testing
612 *
613 * there's a nice set of device functional requirements in chapter 9 of the
614 * usb 2.0 spec, which we can apply to ANY device, even ones that don't use
615 * special test firmware.
616 *
617 * we know the device is configured (or suspended) by the time it's visible
618 * through usbfs. we can't change that, so we won't test enumeration (which
619 * worked 'well enough' to get here, this time), power management (ditto),
620 * or remote wakeup (which needs human interaction).
621 */
622
623static unsigned realworld = 1;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200624module_param(realworld, uint, 0);
625MODULE_PARM_DESC(realworld, "clear to demand stricter spec compliance");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200627static int get_altsetting(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
629 struct usb_interface *iface = dev->intf;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200630 struct usb_device *udev = interface_to_usbdev(iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 int retval;
632
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200633 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 USB_REQ_GET_INTERFACE, USB_DIR_IN|USB_RECIP_INTERFACE,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200635 0, iface->altsetting[0].desc.bInterfaceNumber,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 dev->buf, 1, USB_CTRL_GET_TIMEOUT);
637 switch (retval) {
638 case 1:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200639 return dev->buf[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 case 0:
641 retval = -ERANGE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200642 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 default:
644 return retval;
645 }
646}
647
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200648static int set_altsetting(struct usbtest_dev *dev, int alternate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
650 struct usb_interface *iface = dev->intf;
651 struct usb_device *udev;
652
653 if (alternate < 0 || alternate >= 256)
654 return -EINVAL;
655
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200656 udev = interface_to_usbdev(iface);
657 return usb_set_interface(udev,
658 iface->altsetting[0].desc.bInterfaceNumber,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 alternate);
660}
661
David Brownell28ffd792008-04-25 18:51:10 -0700662static int is_good_config(struct usbtest_dev *tdev, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
664 struct usb_config_descriptor *config;
David Brownell28ffd792008-04-25 18:51:10 -0700665
Huang Ruif55055b2013-10-21 23:15:30 +0800666 if (len < sizeof(*config))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return 0;
David Brownell28ffd792008-04-25 18:51:10 -0700668 config = (struct usb_config_descriptor *) tdev->buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 switch (config->bDescriptorType) {
671 case USB_DT_CONFIG:
672 case USB_DT_OTHER_SPEED_CONFIG:
673 if (config->bLength != 9) {
David Brownell28ffd792008-04-25 18:51:10 -0700674 ERROR(tdev, "bogus config descriptor length\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return 0;
676 }
677 /* this bit 'must be 1' but often isn't */
678 if (!realworld && !(config->bmAttributes & 0x80)) {
David Brownell28ffd792008-04-25 18:51:10 -0700679 ERROR(tdev, "high bit of config attributes not set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return 0;
681 }
682 if (config->bmAttributes & 0x1f) { /* reserved == 0 */
David Brownell28ffd792008-04-25 18:51:10 -0700683 ERROR(tdev, "reserved config bits set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return 0;
685 }
686 break;
687 default:
688 return 0;
689 }
690
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200691 if (le16_to_cpu(config->wTotalLength) == len) /* read it all */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return 1;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200693 if (le16_to_cpu(config->wTotalLength) >= TBUF_SIZE) /* max partial read */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return 1;
David Brownell28ffd792008-04-25 18:51:10 -0700695 ERROR(tdev, "bogus config descriptor read size\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return 0;
697}
698
Huang Rui82f92672013-10-30 11:27:38 +0800699static int is_good_ext(struct usbtest_dev *tdev, u8 *buf)
700{
701 struct usb_ext_cap_descriptor *ext;
702 u32 attr;
703
704 ext = (struct usb_ext_cap_descriptor *) buf;
705
706 if (ext->bLength != USB_DT_USB_EXT_CAP_SIZE) {
707 ERROR(tdev, "bogus usb 2.0 extension descriptor length\n");
708 return 0;
709 }
710
711 attr = le32_to_cpu(ext->bmAttributes);
Huang Rui875bc232013-11-13 22:35:14 +0800712 /* bits[1:15] is used and others are reserved */
713 if (attr & ~0xfffe) { /* reserved == 0 */
Huang Rui82f92672013-10-30 11:27:38 +0800714 ERROR(tdev, "reserved bits set\n");
715 return 0;
716 }
717
718 return 1;
719}
720
Huang Ruib8fef792013-10-30 11:27:39 +0800721static int is_good_ss_cap(struct usbtest_dev *tdev, u8 *buf)
722{
723 struct usb_ss_cap_descriptor *ss;
724
725 ss = (struct usb_ss_cap_descriptor *) buf;
726
727 if (ss->bLength != USB_DT_USB_SS_CAP_SIZE) {
728 ERROR(tdev, "bogus superspeed device capability descriptor length\n");
729 return 0;
730 }
731
732 /*
733 * only bit[1] of bmAttributes is used for LTM and others are
734 * reserved
735 */
736 if (ss->bmAttributes & ~0x02) { /* reserved == 0 */
737 ERROR(tdev, "reserved bits set in bmAttributes\n");
738 return 0;
739 }
740
741 /* bits[0:3] of wSpeedSupported is used and others are reserved */
742 if (le16_to_cpu(ss->wSpeedSupported) & ~0x0f) { /* reserved == 0 */
743 ERROR(tdev, "reserved bits set in wSpeedSupported\n");
744 return 0;
745 }
746
747 return 1;
748}
749
Huang Rui8e292172013-10-30 11:27:40 +0800750static int is_good_con_id(struct usbtest_dev *tdev, u8 *buf)
751{
752 struct usb_ss_container_id_descriptor *con_id;
753
754 con_id = (struct usb_ss_container_id_descriptor *) buf;
755
756 if (con_id->bLength != USB_DT_USB_SS_CONTN_ID_SIZE) {
757 ERROR(tdev, "bogus container id descriptor length\n");
758 return 0;
759 }
760
761 if (con_id->bReserved) { /* reserved == 0 */
762 ERROR(tdev, "reserved bits set\n");
763 return 0;
764 }
765
766 return 1;
767}
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769/* sanity test for standard requests working with usb_control_mesg() and some
770 * of the utility functions which use it.
771 *
772 * this doesn't test how endpoint halts behave or data toggles get set, since
773 * we won't do I/O to bulk/interrupt endpoints here (which is how to change
774 * halt or toggle). toggle testing is impractical without support from hcds.
775 *
776 * this avoids failing devices linux would normally work with, by not testing
777 * config/altsetting operations for devices that only support their defaults.
778 * such devices rarely support those needless operations.
779 *
780 * NOTE that since this is a sanity test, it's not examining boundary cases
781 * to see if usbcore, hcd, and device all behave right. such testing would
782 * involve varied read sizes and other operation sequences.
783 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200784static int ch9_postconfig(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
786 struct usb_interface *iface = dev->intf;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200787 struct usb_device *udev = interface_to_usbdev(iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 int i, alt, retval;
789
790 /* [9.2.3] if there's more than one altsetting, we need to be able to
791 * set and get each one. mostly trusts the descriptors from usbcore.
792 */
793 for (i = 0; i < iface->num_altsetting; i++) {
794
795 /* 9.2.3 constrains the range here */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200796 alt = iface->altsetting[i].desc.bAlternateSetting;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (alt < 0 || alt >= iface->num_altsetting) {
David Brownell28ffd792008-04-25 18:51:10 -0700798 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 "invalid alt [%d].bAltSetting = %d\n",
800 i, alt);
801 }
802
803 /* [real world] get/set unimplemented if there's only one */
804 if (realworld && iface->num_altsetting == 1)
805 continue;
806
807 /* [9.4.10] set_interface */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200808 retval = set_altsetting(dev, alt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -0700810 dev_err(&iface->dev, "can't set_interface = %d, %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 alt, retval);
812 return retval;
813 }
814
815 /* [9.4.4] get_interface always works */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200816 retval = get_altsetting(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (retval != alt) {
David Brownell28ffd792008-04-25 18:51:10 -0700818 dev_err(&iface->dev, "get alt should be %d, was %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 alt, retval);
820 return (retval < 0) ? retval : -EDOM;
821 }
822
823 }
824
825 /* [real world] get_config unimplemented if there's only one */
826 if (!realworld || udev->descriptor.bNumConfigurations != 1) {
827 int expected = udev->actconfig->desc.bConfigurationValue;
828
829 /* [9.4.2] get_configuration always works
830 * ... although some cheap devices (like one TI Hub I've got)
831 * won't return config descriptors except before set_config.
832 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200833 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 USB_REQ_GET_CONFIGURATION,
835 USB_DIR_IN | USB_RECIP_DEVICE,
836 0, 0, dev->buf, 1, USB_CTRL_GET_TIMEOUT);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200837 if (retval != 1 || dev->buf[0] != expected) {
David Brownell28ffd792008-04-25 18:51:10 -0700838 dev_err(&iface->dev, "get config --> %d %d (1 %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -0700839 retval, dev->buf[0], expected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return (retval < 0) ? retval : -EDOM;
841 }
842 }
843
844 /* there's always [9.4.3] a device descriptor [9.6.1] */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200845 retval = usb_get_descriptor(udev, USB_DT_DEVICE, 0,
Huang Ruif55055b2013-10-21 23:15:30 +0800846 dev->buf, sizeof(udev->descriptor));
847 if (retval != sizeof(udev->descriptor)) {
David Brownell28ffd792008-04-25 18:51:10 -0700848 dev_err(&iface->dev, "dev descriptor --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return (retval < 0) ? retval : -EDOM;
850 }
851
Huang Rui9d3bd762013-10-28 23:31:32 +0800852 /*
853 * there's always [9.4.3] a bos device descriptor [9.6.2] in USB
854 * 3.0 spec
855 */
Huang Ruif6250992013-11-13 22:35:13 +0800856 if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0210) {
Huang Rui82f92672013-10-30 11:27:38 +0800857 struct usb_bos_descriptor *bos = NULL;
858 struct usb_dev_cap_header *header = NULL;
859 unsigned total, num, length;
860 u8 *buf;
861
Huang Rui9d3bd762013-10-28 23:31:32 +0800862 retval = usb_get_descriptor(udev, USB_DT_BOS, 0, dev->buf,
863 sizeof(*udev->bos->desc));
864 if (retval != sizeof(*udev->bos->desc)) {
865 dev_err(&iface->dev, "bos descriptor --> %d\n", retval);
866 return (retval < 0) ? retval : -EDOM;
867 }
Huang Rui82f92672013-10-30 11:27:38 +0800868
869 bos = (struct usb_bos_descriptor *)dev->buf;
870 total = le16_to_cpu(bos->wTotalLength);
871 num = bos->bNumDeviceCaps;
872
873 if (total > TBUF_SIZE)
874 total = TBUF_SIZE;
875
876 /*
877 * get generic device-level capability descriptors [9.6.2]
878 * in USB 3.0 spec
879 */
880 retval = usb_get_descriptor(udev, USB_DT_BOS, 0, dev->buf,
881 total);
882 if (retval != total) {
883 dev_err(&iface->dev, "bos descriptor set --> %d\n",
884 retval);
885 return (retval < 0) ? retval : -EDOM;
886 }
887
888 length = sizeof(*udev->bos->desc);
889 buf = dev->buf;
890 for (i = 0; i < num; i++) {
891 buf += length;
892 if (buf + sizeof(struct usb_dev_cap_header) >
893 dev->buf + total)
894 break;
895
896 header = (struct usb_dev_cap_header *)buf;
897 length = header->bLength;
898
899 if (header->bDescriptorType !=
900 USB_DT_DEVICE_CAPABILITY) {
901 dev_warn(&udev->dev, "not device capability descriptor, skip\n");
902 continue;
903 }
904
905 switch (header->bDevCapabilityType) {
906 case USB_CAP_TYPE_EXT:
907 if (buf + USB_DT_USB_EXT_CAP_SIZE >
908 dev->buf + total ||
909 !is_good_ext(dev, buf)) {
910 dev_err(&iface->dev, "bogus usb 2.0 extension descriptor\n");
911 return -EDOM;
912 }
913 break;
Huang Ruib8fef792013-10-30 11:27:39 +0800914 case USB_SS_CAP_TYPE:
915 if (buf + USB_DT_USB_SS_CAP_SIZE >
916 dev->buf + total ||
917 !is_good_ss_cap(dev, buf)) {
918 dev_err(&iface->dev, "bogus superspeed device capability descriptor\n");
919 return -EDOM;
920 }
921 break;
Huang Rui8e292172013-10-30 11:27:40 +0800922 case CONTAINER_ID_TYPE:
923 if (buf + USB_DT_USB_SS_CONTN_ID_SIZE >
924 dev->buf + total ||
925 !is_good_con_id(dev, buf)) {
926 dev_err(&iface->dev, "bogus container id descriptor\n");
927 return -EDOM;
928 }
929 break;
Huang Rui82f92672013-10-30 11:27:38 +0800930 default:
931 break;
932 }
933 }
Huang Rui9d3bd762013-10-28 23:31:32 +0800934 }
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 /* there's always [9.4.3] at least one config descriptor [9.6.3] */
937 for (i = 0; i < udev->descriptor.bNumConfigurations; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200938 retval = usb_get_descriptor(udev, USB_DT_CONFIG, i,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 dev->buf, TBUF_SIZE);
David Brownell28ffd792008-04-25 18:51:10 -0700940 if (!is_good_config(dev, retval)) {
941 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 "config [%d] descriptor --> %d\n",
943 i, retval);
944 return (retval < 0) ? retval : -EDOM;
945 }
946
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200947 /* FIXME cross-checking udev->config[i] to make sure usbcore
948 * parsed it right (etc) would be good testing paranoia
949 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
951
952 /* and sometimes [9.2.6.6] speed dependent descriptors */
953 if (le16_to_cpu(udev->descriptor.bcdUSB) == 0x0200) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200954 struct usb_qualifier_descriptor *d = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 /* device qualifier [9.6.2] */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200957 retval = usb_get_descriptor(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 USB_DT_DEVICE_QUALIFIER, 0, dev->buf,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200959 sizeof(struct usb_qualifier_descriptor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (retval == -EPIPE) {
961 if (udev->speed == USB_SPEED_HIGH) {
David Brownell28ffd792008-04-25 18:51:10 -0700962 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 "hs dev qualifier --> %d\n",
964 retval);
965 return (retval < 0) ? retval : -EDOM;
966 }
967 /* usb2.0 but not high-speed capable; fine */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200968 } else if (retval != sizeof(struct usb_qualifier_descriptor)) {
David Brownell28ffd792008-04-25 18:51:10 -0700969 dev_err(&iface->dev, "dev qualifier --> %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 return (retval < 0) ? retval : -EDOM;
971 } else
972 d = (struct usb_qualifier_descriptor *) dev->buf;
973
974 /* might not have [9.6.2] any other-speed configs [9.6.4] */
975 if (d) {
976 unsigned max = d->bNumConfigurations;
977 for (i = 0; i < max; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200978 retval = usb_get_descriptor(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 USB_DT_OTHER_SPEED_CONFIG, i,
980 dev->buf, TBUF_SIZE);
David Brownell28ffd792008-04-25 18:51:10 -0700981 if (!is_good_config(dev, retval)) {
982 dev_err(&iface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 "other speed config --> %d\n",
984 retval);
985 return (retval < 0) ? retval : -EDOM;
986 }
987 }
988 }
989 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200990 /* FIXME fetch strings from at least the device descriptor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 /* [9.4.5] get_status always works */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200993 retval = usb_get_status(udev, USB_RECIP_DEVICE, 0, dev->buf);
Alan Stern15b73362013-07-30 15:35:40 -0400994 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -0700995 dev_err(&iface->dev, "get dev status --> %d\n", retval);
Alan Stern15b73362013-07-30 15:35:40 -0400996 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
998
Martin Fuzzeyfabbf212010-10-01 00:20:42 +0200999 /* FIXME configuration.bmAttributes says if we could try to set/clear
1000 * the device's remote wakeup feature ... if we can, test that here
1001 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001003 retval = usb_get_status(udev, USB_RECIP_INTERFACE,
1004 iface->altsetting[0].desc.bInterfaceNumber, dev->buf);
Alan Stern15b73362013-07-30 15:35:40 -04001005 if (retval) {
David Brownell28ffd792008-04-25 18:51:10 -07001006 dev_err(&iface->dev, "get interface status --> %d\n", retval);
Alan Stern15b73362013-07-30 15:35:40 -04001007 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001009 /* FIXME get status for each endpoint in the interface */
David Brownell28ffd792008-04-25 18:51:10 -07001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 return 0;
1012}
1013
1014/*-------------------------------------------------------------------------*/
1015
1016/* use ch9 requests to test whether:
1017 * (a) queues work for control, keeping N subtests queued and
1018 * active (auto-resubmit) for M loops through the queue.
1019 * (b) protocol stalls (control-only) will autorecover.
1020 * it's not like bulk/intr; no halt clearing.
1021 * (c) short control reads are reported and handled.
1022 * (d) queues are always processed in-order
1023 */
1024
1025struct ctrl_ctx {
1026 spinlock_t lock;
1027 struct usbtest_dev *dev;
1028 struct completion complete;
1029 unsigned count;
1030 unsigned pending;
1031 int status;
1032 struct urb **urb;
1033 struct usbtest_param *param;
1034 int last;
1035};
1036
Huang Ruic952a8b2013-11-04 21:11:53 +08001037#define NUM_SUBCASES 16 /* how many test subcases here? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039struct subcase {
1040 struct usb_ctrlrequest setup;
1041 int number;
1042 int expected;
1043};
1044
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001045static void ctrl_complete(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
1047 struct ctrl_ctx *ctx = urb->context;
1048 struct usb_ctrlrequest *reqp;
1049 struct subcase *subcase;
1050 int status = urb->status;
1051
1052 reqp = (struct usb_ctrlrequest *)urb->setup_packet;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001053 subcase = container_of(reqp, struct subcase, setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001055 spin_lock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 ctx->count--;
1057 ctx->pending--;
1058
1059 /* queue must transfer and complete in fifo order, unless
1060 * usb_unlink_urb() is used to unlink something not at the
1061 * physical queue head (not tested).
1062 */
1063 if (subcase->number > 0) {
1064 if ((subcase->number - ctx->last) != 1) {
David Brownell28ffd792008-04-25 18:51:10 -07001065 ERROR(ctx->dev,
1066 "subcase %d completed out of order, last %d\n",
1067 subcase->number, ctx->last);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 status = -EDOM;
1069 ctx->last = subcase->number;
1070 goto error;
1071 }
1072 }
1073 ctx->last = subcase->number;
1074
1075 /* succeed or fault in only one way? */
1076 if (status == subcase->expected)
1077 status = 0;
1078
1079 /* async unlink for cleanup? */
1080 else if (status != -ECONNRESET) {
1081
1082 /* some faults are allowed, not required */
1083 if (subcase->expected > 0 && (
Greg Kroah-Hartman59d99782007-07-18 10:58:02 -07001084 ((status == -subcase->expected /* happened */
1085 || status == 0)))) /* didn't */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 status = 0;
1087 /* sometimes more than one fault is allowed */
1088 else if (subcase->number == 12 && status == -EPIPE)
1089 status = 0;
1090 else
David Brownell28ffd792008-04-25 18:51:10 -07001091 ERROR(ctx->dev, "subtest %d error, status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 subcase->number, status);
1093 }
1094
1095 /* unexpected status codes mean errors; ideally, in hardware */
1096 if (status) {
1097error:
1098 if (ctx->status == 0) {
1099 int i;
1100
1101 ctx->status = status;
David Brownell28ffd792008-04-25 18:51:10 -07001102 ERROR(ctx->dev, "control queue %02x.%02x, err %d, "
1103 "%d left, subcase %d, len %d/%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 reqp->bRequestType, reqp->bRequest,
David Brownell28ffd792008-04-25 18:51:10 -07001105 status, ctx->count, subcase->number,
1106 urb->actual_length,
1107 urb->transfer_buffer_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 /* FIXME this "unlink everything" exit route should
1110 * be a separate test case.
1111 */
1112
1113 /* unlink whatever's still pending */
1114 for (i = 1; i < ctx->param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001115 struct urb *u = ctx->urb[
1116 (i + subcase->number)
1117 % ctx->param->sglen];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119 if (u == urb || !u->dev)
1120 continue;
Franck Bui-Huucaa2a122006-05-15 19:23:53 +02001121 spin_unlock(&ctx->lock);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001122 status = usb_unlink_urb(u);
Franck Bui-Huucaa2a122006-05-15 19:23:53 +02001123 spin_lock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 switch (status) {
1125 case -EINPROGRESS:
1126 case -EBUSY:
1127 case -EIDRM:
1128 continue;
1129 default:
David Brownell28ffd792008-04-25 18:51:10 -07001130 ERROR(ctx->dev, "urb unlink --> %d\n",
1131 status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 }
1133 }
1134 status = ctx->status;
1135 }
1136 }
1137
1138 /* resubmit if we need to, else mark this as done */
1139 if ((status == 0) && (ctx->pending < ctx->count)) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001140 status = usb_submit_urb(urb, GFP_ATOMIC);
1141 if (status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001142 ERROR(ctx->dev,
1143 "can't resubmit ctrl %02x.%02x, err %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 reqp->bRequestType, reqp->bRequest, status);
1145 urb->dev = NULL;
1146 } else
1147 ctx->pending++;
1148 } else
1149 urb->dev = NULL;
David Brownell28ffd792008-04-25 18:51:10 -07001150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 /* signal completion when nothing's queued */
1152 if (ctx->pending == 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001153 complete(&ctx->complete);
1154 spin_unlock(&ctx->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
1157static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001158test_ctrl_queue(struct usbtest_dev *dev, struct usbtest_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001160 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 struct urb **urb;
1162 struct ctrl_ctx context;
1163 int i;
1164
Xi Wange65cdfa2012-04-09 15:48:55 -04001165 if (param->sglen == 0 || param->iterations > UINT_MAX / param->sglen)
1166 return -EOPNOTSUPP;
1167
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001168 spin_lock_init(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 context.dev = dev;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001170 init_completion(&context.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 context.count = param->sglen * param->iterations;
1172 context.pending = 0;
1173 context.status = -ENOMEM;
1174 context.param = param;
1175 context.last = -1;
1176
1177 /* allocate and init the urbs we'll queue.
1178 * as with bulk/intr sglists, sglen is the queue depth; it also
1179 * controls which subtests run (more tests than sglen) or rerun.
1180 */
Christoph Lametere94b1762006-12-06 20:33:17 -08001181 urb = kcalloc(param->sglen, sizeof(struct urb *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (!urb)
1183 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001185 int pipe = usb_rcvctrlpipe(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 unsigned len;
1187 struct urb *u;
1188 struct usb_ctrlrequest req;
1189 struct subcase *reqp;
Marcin Slusarz6def7552008-05-12 20:17:25 +02001190
1191 /* sign of this variable means:
1192 * -: tested code must return this (negative) error code
1193 * +: tested code may return this (negative too) error code
1194 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 int expected = 0;
1196
1197 /* requests here are mostly expected to succeed on any
1198 * device, but some are chosen to trigger protocol stalls
1199 * or short reads.
1200 */
Huang Ruif55055b2013-10-21 23:15:30 +08001201 memset(&req, 0, sizeof(req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 req.bRequest = USB_REQ_GET_DESCRIPTOR;
1203 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
1204
1205 switch (i % NUM_SUBCASES) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001206 case 0: /* get device descriptor */
1207 req.wValue = cpu_to_le16(USB_DT_DEVICE << 8);
1208 len = sizeof(struct usb_device_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001210 case 1: /* get first config descriptor (only) */
1211 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1212 len = sizeof(struct usb_config_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001214 case 2: /* get altsetting (OFTEN STALLS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 req.bRequest = USB_REQ_GET_INTERFACE;
1216 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001217 /* index = 0 means first interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 len = 1;
1219 expected = EPIPE;
1220 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001221 case 3: /* get interface status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 req.bRequest = USB_REQ_GET_STATUS;
1223 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001224 /* interface 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 len = 2;
1226 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001227 case 4: /* get device status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 req.bRequest = USB_REQ_GET_STATUS;
1229 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
1230 len = 2;
1231 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001232 case 5: /* get device qualifier (MAY STALL) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 req.wValue = cpu_to_le16 (USB_DT_DEVICE_QUALIFIER << 8);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001234 len = sizeof(struct usb_qualifier_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 if (udev->speed != USB_SPEED_HIGH)
1236 expected = EPIPE;
1237 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001238 case 6: /* get first config descriptor, plus interface */
1239 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1240 len = sizeof(struct usb_config_descriptor);
1241 len += sizeof(struct usb_interface_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001243 case 7: /* get interface descriptor (ALWAYS STALLS) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 req.wValue = cpu_to_le16 (USB_DT_INTERFACE << 8);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001245 /* interface == 0 */
1246 len = sizeof(struct usb_interface_descriptor);
David Brownell28ffd792008-04-25 18:51:10 -07001247 expected = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001249 /* NOTE: two consecutive stalls in the queue here.
1250 * that tests fault recovery a bit more aggressively. */
1251 case 8: /* clear endpoint halt (MAY STALL) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 req.bRequest = USB_REQ_CLEAR_FEATURE;
1253 req.bRequestType = USB_RECIP_ENDPOINT;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001254 /* wValue 0 == ep halt */
1255 /* wIndex 0 == ep0 (shouldn't halt!) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 len = 0;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001257 pipe = usb_sndctrlpipe(udev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 expected = EPIPE;
1259 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001260 case 9: /* get endpoint status */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 req.bRequest = USB_REQ_GET_STATUS;
1262 req.bRequestType = USB_DIR_IN|USB_RECIP_ENDPOINT;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001263 /* endpoint 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 len = 2;
1265 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001266 case 10: /* trigger short read (EREMOTEIO) */
1267 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 len = 1024;
1269 expected = -EREMOTEIO;
1270 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001271 /* NOTE: two consecutive _different_ faults in the queue. */
1272 case 11: /* get endpoint descriptor (ALWAYS STALLS) */
1273 req.wValue = cpu_to_le16(USB_DT_ENDPOINT << 8);
1274 /* endpoint == 0 */
1275 len = sizeof(struct usb_interface_descriptor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 expected = EPIPE;
1277 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001278 /* NOTE: sometimes even a third fault in the queue! */
1279 case 12: /* get string 0 descriptor (MAY STALL) */
1280 req.wValue = cpu_to_le16(USB_DT_STRING << 8);
1281 /* string == 0, for language IDs */
1282 len = sizeof(struct usb_interface_descriptor);
1283 /* may succeed when > 4 languages */
1284 expected = EREMOTEIO; /* or EPIPE, if no strings */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001286 case 13: /* short read, resembling case 10 */
1287 req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0);
1288 /* last data packet "should" be DATA1, not DATA0 */
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001289 if (udev->speed == USB_SPEED_SUPER)
1290 len = 1024 - 512;
1291 else
1292 len = 1024 - udev->descriptor.bMaxPacketSize0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 expected = -EREMOTEIO;
1294 break;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001295 case 14: /* short read; try to fill the last packet */
1296 req.wValue = cpu_to_le16((USB_DT_DEVICE << 8) | 0);
David Brownell28ffd792008-04-25 18:51:10 -07001297 /* device descriptor size == 18 bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 len = udev->descriptor.bMaxPacketSize0;
Sebastian Andrzej Siewior67e7d642011-04-14 16:17:21 +02001299 if (udev->speed == USB_SPEED_SUPER)
1300 len = 512;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 switch (len) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001302 case 8:
1303 len = 24;
1304 break;
1305 case 16:
1306 len = 32;
1307 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 }
1309 expected = -EREMOTEIO;
1310 break;
Huang Ruic952a8b2013-11-04 21:11:53 +08001311 case 15:
1312 req.wValue = cpu_to_le16(USB_DT_BOS << 8);
1313 if (udev->bos)
1314 len = le16_to_cpu(udev->bos->desc->wTotalLength);
1315 else
1316 len = sizeof(struct usb_bos_descriptor);
Sarah Sharp8cf43282013-12-13 13:44:17 -08001317 if (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0201)
Huang Ruic952a8b2013-11-04 21:11:53 +08001318 expected = -EPIPE;
1319 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 default:
David Brownell28ffd792008-04-25 18:51:10 -07001321 ERROR(dev, "bogus number of ctrl queue testcases!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 context.status = -EINVAL;
1323 goto cleanup;
1324 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001325 req.wLength = cpu_to_le16(len);
Amit Virdi457a0952014-08-22 14:36:37 +05301326 urb[i] = u = simple_alloc_urb(udev, pipe, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (!u)
1328 goto cleanup;
1329
Huang Ruif55055b2013-10-21 23:15:30 +08001330 reqp = kmalloc(sizeof(*reqp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (!reqp)
1332 goto cleanup;
1333 reqp->setup = req;
1334 reqp->number = i % NUM_SUBCASES;
1335 reqp->expected = expected;
1336 u->setup_packet = (char *) &reqp->setup;
1337
1338 u->context = &context;
1339 u->complete = ctrl_complete;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
1341
1342 /* queue the urbs */
1343 context.urb = urb;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001344 spin_lock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001346 context.status = usb_submit_urb(urb[i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 if (context.status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001348 ERROR(dev, "can't submit urb[%d], status %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 i, context.status);
1350 context.count = context.pending;
1351 break;
1352 }
1353 context.pending++;
1354 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001355 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 /* FIXME set timer and time out; provide a disconnect hook */
1358
1359 /* wait for the last one to complete */
1360 if (context.pending > 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001361 wait_for_completion(&context.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363cleanup:
1364 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001365 if (!urb[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 continue;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001367 urb[i]->dev = udev;
Alan Stern0ede76f2010-03-05 15:10:17 -05001368 kfree(urb[i]->setup_packet);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001369 simple_free_urb(urb[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001371 kfree(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 return context.status;
1373}
1374#undef NUM_SUBCASES
1375
1376
1377/*-------------------------------------------------------------------------*/
1378
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001379static void unlink1_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
1381 int status = urb->status;
1382
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001383 /* we "know" -EPIPE (stall) never happens */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 if (!status)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001385 status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 if (status) {
1387 urb->status = status;
Ming Leicdc97792008-02-24 18:41:47 +08001388 complete(urb->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 }
1390}
1391
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001392static int unlink1(struct usbtest_dev *dev, int pipe, int size, int async)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
1394 struct urb *urb;
1395 struct completion completion;
1396 int retval = 0;
1397
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001398 init_completion(&completion);
Amit Virdi457a0952014-08-22 14:36:37 +05301399 urb = simple_alloc_urb(testdev_to_usbdev(dev), pipe, size, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 if (!urb)
1401 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 urb->context = &completion;
1403 urb->complete = unlink1_callback;
1404
Huang Ruie4d58f52014-05-26 10:55:36 +08001405 if (usb_pipeout(urb->pipe)) {
1406 simple_fill_buf(urb);
1407 urb->transfer_flags |= URB_ZERO_PACKET;
1408 }
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 /* keep the endpoint busy. there are lots of hc/hcd-internal
1411 * states, and testing should get to all of them over time.
1412 *
1413 * FIXME want additional tests for when endpoint is STALLing
1414 * due to errors, or is just NAKing requests.
1415 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001416 retval = usb_submit_urb(urb, GFP_KERNEL);
1417 if (retval != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001418 dev_err(&dev->intf->dev, "submit fail %d\n", retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 return retval;
1420 }
1421
1422 /* unlinking that should always work. variable delay tests more
1423 * hcd states and code paths, even with little other system load.
1424 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001425 msleep(jiffies % (2 * INTERRUPT_RATE));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 if (async) {
Martin Fuzzey3b6c0232009-06-04 23:20:38 +02001427 while (!completion_done(&completion)) {
1428 retval = usb_unlink_urb(urb);
1429
Huang Ruia7683eb2014-05-22 18:06:14 +08001430 if (retval == 0 && usb_pipein(urb->pipe))
1431 retval = simple_check_buf(dev, urb);
1432
Martin Fuzzey3b6c0232009-06-04 23:20:38 +02001433 switch (retval) {
1434 case -EBUSY:
1435 case -EIDRM:
1436 /* we can't unlink urbs while they're completing
1437 * or if they've completed, and we haven't
1438 * resubmitted. "normal" drivers would prevent
1439 * resubmission, but since we're testing unlink
1440 * paths, we can't.
1441 */
1442 ERROR(dev, "unlink retry\n");
1443 continue;
1444 case 0:
1445 case -EINPROGRESS:
1446 break;
1447
1448 default:
1449 dev_err(&dev->intf->dev,
1450 "unlink fail %d\n", retval);
1451 return retval;
1452 }
1453
1454 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
1456 } else
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001457 usb_kill_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001459 wait_for_completion(&completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 retval = urb->status;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001461 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 if (async)
1464 return (retval == -ECONNRESET) ? 0 : retval - 1000;
1465 else
1466 return (retval == -ENOENT || retval == -EPERM) ?
1467 0 : retval - 2000;
1468}
1469
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001470static int unlink_simple(struct usbtest_dev *dev, int pipe, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
1472 int retval = 0;
1473
1474 /* test sync and async paths */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001475 retval = unlink1(dev, pipe, len, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (!retval)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001477 retval = unlink1(dev, pipe, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return retval;
1479}
1480
1481/*-------------------------------------------------------------------------*/
1482
Alan Stern869410f2011-04-14 11:21:04 -04001483struct queued_ctx {
1484 struct completion complete;
1485 atomic_t pending;
1486 unsigned num;
1487 int status;
1488 struct urb **urbs;
1489};
1490
1491static void unlink_queued_callback(struct urb *urb)
1492{
1493 int status = urb->status;
1494 struct queued_ctx *ctx = urb->context;
1495
1496 if (ctx->status)
1497 goto done;
1498 if (urb == ctx->urbs[ctx->num - 4] || urb == ctx->urbs[ctx->num - 2]) {
1499 if (status == -ECONNRESET)
1500 goto done;
1501 /* What error should we report if the URB completed normally? */
1502 }
1503 if (status != 0)
1504 ctx->status = status;
1505
1506 done:
1507 if (atomic_dec_and_test(&ctx->pending))
1508 complete(&ctx->complete);
1509}
1510
1511static int unlink_queued(struct usbtest_dev *dev, int pipe, unsigned num,
1512 unsigned size)
1513{
1514 struct queued_ctx ctx;
1515 struct usb_device *udev = testdev_to_usbdev(dev);
1516 void *buf;
1517 dma_addr_t buf_dma;
1518 int i;
1519 int retval = -ENOMEM;
1520
1521 init_completion(&ctx.complete);
1522 atomic_set(&ctx.pending, 1); /* One more than the actual value */
1523 ctx.num = num;
1524 ctx.status = 0;
1525
1526 buf = usb_alloc_coherent(udev, size, GFP_KERNEL, &buf_dma);
1527 if (!buf)
1528 return retval;
1529 memset(buf, 0, size);
1530
1531 /* Allocate and init the urbs we'll queue */
1532 ctx.urbs = kcalloc(num, sizeof(struct urb *), GFP_KERNEL);
1533 if (!ctx.urbs)
1534 goto free_buf;
1535 for (i = 0; i < num; i++) {
1536 ctx.urbs[i] = usb_alloc_urb(0, GFP_KERNEL);
1537 if (!ctx.urbs[i])
1538 goto free_urbs;
1539 usb_fill_bulk_urb(ctx.urbs[i], udev, pipe, buf, size,
1540 unlink_queued_callback, &ctx);
1541 ctx.urbs[i]->transfer_dma = buf_dma;
1542 ctx.urbs[i]->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
Huang Ruie4d58f52014-05-26 10:55:36 +08001543
1544 if (usb_pipeout(ctx.urbs[i]->pipe)) {
1545 simple_fill_buf(ctx.urbs[i]);
1546 ctx.urbs[i]->transfer_flags |= URB_ZERO_PACKET;
1547 }
Alan Stern869410f2011-04-14 11:21:04 -04001548 }
1549
1550 /* Submit all the URBs and then unlink URBs num - 4 and num - 2. */
1551 for (i = 0; i < num; i++) {
1552 atomic_inc(&ctx.pending);
1553 retval = usb_submit_urb(ctx.urbs[i], GFP_KERNEL);
1554 if (retval != 0) {
1555 dev_err(&dev->intf->dev, "submit urbs[%d] fail %d\n",
1556 i, retval);
1557 atomic_dec(&ctx.pending);
1558 ctx.status = retval;
1559 break;
1560 }
1561 }
1562 if (i == num) {
1563 usb_unlink_urb(ctx.urbs[num - 4]);
1564 usb_unlink_urb(ctx.urbs[num - 2]);
1565 } else {
1566 while (--i >= 0)
1567 usb_unlink_urb(ctx.urbs[i]);
1568 }
1569
1570 if (atomic_dec_and_test(&ctx.pending)) /* The extra count */
1571 complete(&ctx.complete);
1572 wait_for_completion(&ctx.complete);
1573 retval = ctx.status;
1574
1575 free_urbs:
1576 for (i = 0; i < num; i++)
1577 usb_free_urb(ctx.urbs[i]);
1578 kfree(ctx.urbs);
1579 free_buf:
1580 usb_free_coherent(udev, size, buf, buf_dma);
1581 return retval;
1582}
1583
1584/*-------------------------------------------------------------------------*/
1585
David Brownell28ffd792008-04-25 18:51:10 -07001586static int verify_not_halted(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
1588 int retval;
1589 u16 status;
1590
1591 /* shouldn't look or act halted */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001592 retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001594 ERROR(tdev, "ep %02x couldn't get no-halt status, %d\n",
1595 ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 return retval;
1597 }
1598 if (status != 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001599 ERROR(tdev, "ep %02x bogus status: %04x != 0\n", ep, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 return -EINVAL;
1601 }
David Brownell28ffd792008-04-25 18:51:10 -07001602 retval = simple_io(tdev, urb, 1, 0, 0, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (retval != 0)
1604 return -EINVAL;
1605 return 0;
1606}
1607
David Brownell28ffd792008-04-25 18:51:10 -07001608static int verify_halted(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
1610 int retval;
1611 u16 status;
1612
1613 /* should look and act halted */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001614 retval = usb_get_status(urb->dev, USB_RECIP_ENDPOINT, ep, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001616 ERROR(tdev, "ep %02x couldn't get halt status, %d\n",
1617 ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 return retval;
1619 }
1620 if (status != 1) {
David Brownell28ffd792008-04-25 18:51:10 -07001621 ERROR(tdev, "ep %02x bogus status: %04x != 1\n", ep, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 return -EINVAL;
1623 }
David Brownell28ffd792008-04-25 18:51:10 -07001624 retval = simple_io(tdev, urb, 1, 0, -EPIPE, __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 if (retval != -EPIPE)
1626 return -EINVAL;
David Brownell28ffd792008-04-25 18:51:10 -07001627 retval = simple_io(tdev, urb, 1, 0, -EPIPE, "verify_still_halted");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (retval != -EPIPE)
1629 return -EINVAL;
1630 return 0;
1631}
1632
David Brownell28ffd792008-04-25 18:51:10 -07001633static int test_halt(struct usbtest_dev *tdev, int ep, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
1635 int retval;
1636
1637 /* shouldn't look or act halted now */
David Brownell28ffd792008-04-25 18:51:10 -07001638 retval = verify_not_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (retval < 0)
1640 return retval;
1641
1642 /* set halt (protocol test only), verify it worked */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001643 retval = usb_control_msg(urb->dev, usb_sndctrlpipe(urb->dev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 USB_REQ_SET_FEATURE, USB_RECIP_ENDPOINT,
1645 USB_ENDPOINT_HALT, ep,
1646 NULL, 0, USB_CTRL_SET_TIMEOUT);
1647 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001648 ERROR(tdev, "ep %02x couldn't set halt, %d\n", ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 return retval;
1650 }
David Brownell28ffd792008-04-25 18:51:10 -07001651 retval = verify_halted(tdev, ep, urb);
Roger Quadros824d7522013-12-18 15:40:11 +05301652 if (retval < 0) {
1653 int ret;
1654
1655 /* clear halt anyways, else further tests will fail */
1656 ret = usb_clear_halt(urb->dev, urb->pipe);
1657 if (ret)
1658 ERROR(tdev, "ep %02x couldn't clear halt, %d\n",
1659 ep, ret);
1660
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 return retval;
Roger Quadros824d7522013-12-18 15:40:11 +05301662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664 /* clear halt (tests API + protocol), verify it worked */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001665 retval = usb_clear_halt(urb->dev, urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 if (retval < 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001667 ERROR(tdev, "ep %02x couldn't clear halt, %d\n", ep, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 return retval;
1669 }
David Brownell28ffd792008-04-25 18:51:10 -07001670 retval = verify_not_halted(tdev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 if (retval < 0)
1672 return retval;
1673
1674 /* NOTE: could also verify SET_INTERFACE clear halts ... */
1675
1676 return 0;
1677}
1678
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001679static int halt_simple(struct usbtest_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001681 int ep;
1682 int retval = 0;
1683 struct urb *urb;
1684 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001686 if (udev->speed == USB_SPEED_SUPER)
Amit Virdi457a0952014-08-22 14:36:37 +05301687 urb = simple_alloc_urb(udev, 0, 1024, 0);
Paul Zimmerman6a23ccd2012-04-16 14:19:07 -07001688 else
Amit Virdi457a0952014-08-22 14:36:37 +05301689 urb = simple_alloc_urb(udev, 0, 512, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 if (urb == NULL)
1691 return -ENOMEM;
1692
1693 if (dev->in_pipe) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001694 ep = usb_pipeendpoint(dev->in_pipe) | USB_DIR_IN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 urb->pipe = dev->in_pipe;
David Brownell28ffd792008-04-25 18:51:10 -07001696 retval = test_halt(dev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 if (retval < 0)
1698 goto done;
1699 }
1700
1701 if (dev->out_pipe) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001702 ep = usb_pipeendpoint(dev->out_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 urb->pipe = dev->out_pipe;
David Brownell28ffd792008-04-25 18:51:10 -07001704 retval = test_halt(dev, ep, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 }
1706done:
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001707 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 return retval;
1709}
1710
1711/*-------------------------------------------------------------------------*/
1712
1713/* Control OUT tests use the vendor control requests from Intel's
1714 * USB 2.0 compliance test device: write a buffer, read it back.
1715 *
1716 * Intel's spec only _requires_ that it work for one packet, which
1717 * is pretty weak. Some HCDs place limits here; most devices will
1718 * need to be able to handle more than one OUT data packet. We'll
1719 * try whatever we're told to try.
1720 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001721static int ctrl_out(struct usbtest_dev *dev,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001722 unsigned count, unsigned length, unsigned vary, unsigned offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
Orjan Fribergf54fa842006-08-08 23:31:40 -07001724 unsigned i, j, len;
1725 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 u8 *buf;
1727 char *what = "?";
1728 struct usb_device *udev;
Orjan Fribergf54fa842006-08-08 23:31:40 -07001729
David Brownellff7c79e2005-04-22 13:17:00 -07001730 if (length < 1 || length > 0xffff || vary >= length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 return -EINVAL;
1732
Martin Fuzzey084fb202011-01-16 19:17:11 +01001733 buf = kmalloc(length + offset, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 if (!buf)
1735 return -ENOMEM;
1736
Martin Fuzzey084fb202011-01-16 19:17:11 +01001737 buf += offset;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001738 udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 len = length;
1740 retval = 0;
1741
1742 /* NOTE: hardware might well act differently if we pushed it
1743 * with lots back-to-back queued requests.
1744 */
1745 for (i = 0; i < count; i++) {
1746 /* write patterned data */
1747 for (j = 0; j < len; j++)
Peter Chen169900f2015-09-01 09:48:00 +08001748 buf[j] = (u8)(i + j);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001749 retval = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 0x5b, USB_DIR_OUT|USB_TYPE_VENDOR,
1751 0, 0, buf, len, USB_CTRL_SET_TIMEOUT);
1752 if (retval != len) {
1753 what = "write";
David Brownellff7c79e2005-04-22 13:17:00 -07001754 if (retval >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001755 ERROR(dev, "ctrl_out, wlen %d (expected %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -07001756 retval, len);
1757 retval = -EBADMSG;
1758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 break;
1760 }
1761
1762 /* read it back -- assuming nothing intervened!! */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001763 retval = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 0x5c, USB_DIR_IN|USB_TYPE_VENDOR,
1765 0, 0, buf, len, USB_CTRL_GET_TIMEOUT);
1766 if (retval != len) {
1767 what = "read";
David Brownellff7c79e2005-04-22 13:17:00 -07001768 if (retval >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07001769 ERROR(dev, "ctrl_out, rlen %d (expected %d)\n",
David Brownellff7c79e2005-04-22 13:17:00 -07001770 retval, len);
1771 retval = -EBADMSG;
1772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 break;
1774 }
1775
1776 /* fail if we can't verify */
1777 for (j = 0; j < len; j++) {
Peter Chen169900f2015-09-01 09:48:00 +08001778 if (buf[j] != (u8)(i + j)) {
David Brownell28ffd792008-04-25 18:51:10 -07001779 ERROR(dev, "ctrl_out, byte %d is %d not %d\n",
Peter Chen169900f2015-09-01 09:48:00 +08001780 j, buf[j], (u8)(i + j));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 retval = -EBADMSG;
1782 break;
1783 }
1784 }
1785 if (retval < 0) {
1786 what = "verify";
1787 break;
1788 }
1789
1790 len += vary;
David Brownellff7c79e2005-04-22 13:17:00 -07001791
1792 /* [real world] the "zero bytes IN" case isn't really used.
Joe Perchesdc0d5c12007-12-17 11:40:18 -08001793 * hardware can easily trip up in this weird case, since its
David Brownellff7c79e2005-04-22 13:17:00 -07001794 * status stage is IN, not OUT like other ep0in transfers.
1795 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 if (len > length)
David Brownellff7c79e2005-04-22 13:17:00 -07001797 len = realworld ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
1799
1800 if (retval < 0)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001801 ERROR(dev, "ctrl_out %s failed, code %d, count %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 what, retval, i);
1803
Martin Fuzzey084fb202011-01-16 19:17:11 +01001804 kfree(buf - offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 return retval;
1806}
1807
1808/*-------------------------------------------------------------------------*/
1809
Peter Chen145f48c2015-10-13 15:18:21 +08001810/* ISO/BULK tests ... mimics common usage
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 * - buffer length is split into N packets (mostly maxpacket sized)
1812 * - multi-buffers according to sglen
1813 */
1814
Peter Chen145f48c2015-10-13 15:18:21 +08001815struct transfer_context {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 unsigned count;
1817 unsigned pending;
1818 spinlock_t lock;
1819 struct completion done;
Alan Stern9da21502006-05-22 16:47:13 -04001820 int submit_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 unsigned long errors;
Alan Stern9da21502006-05-22 16:47:13 -04001822 unsigned long packet_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 struct usbtest_dev *dev;
Peter Chen145f48c2015-10-13 15:18:21 +08001824 bool is_iso;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825};
1826
Peter Chen145f48c2015-10-13 15:18:21 +08001827static void complicated_callback(struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
Peter Chen145f48c2015-10-13 15:18:21 +08001829 struct transfer_context *ctx = urb->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831 spin_lock(&ctx->lock);
1832 ctx->count--;
1833
Alan Stern9da21502006-05-22 16:47:13 -04001834 ctx->packet_count += urb->number_of_packets;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 if (urb->error_count > 0)
1836 ctx->errors += urb->error_count;
Alan Stern9da21502006-05-22 16:47:13 -04001837 else if (urb->status != 0)
Peter Chen145f48c2015-10-13 15:18:21 +08001838 ctx->errors += (ctx->is_iso ? urb->number_of_packets : 1);
Martin Fuzzey40aed522010-10-01 00:20:48 +02001839 else if (urb->actual_length != urb->transfer_buffer_length)
1840 ctx->errors++;
Martin Fuzzey084fb202011-01-16 19:17:11 +01001841 else if (check_guard_bytes(ctx->dev, urb) != 0)
1842 ctx->errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Alan Stern9da21502006-05-22 16:47:13 -04001844 if (urb->status == 0 && ctx->count > (ctx->pending - 1)
1845 && !ctx->submit_error) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001846 int status = usb_submit_urb(urb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 switch (status) {
1848 case 0:
1849 goto done;
1850 default:
David Brownell28ffd792008-04-25 18:51:10 -07001851 dev_err(&ctx->dev->intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 "iso resubmit err %d\n",
1853 status);
1854 /* FALLTHROUGH */
1855 case -ENODEV: /* disconnected */
Alan Stern9da21502006-05-22 16:47:13 -04001856 case -ESHUTDOWN: /* endpoint disabled */
1857 ctx->submit_error = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 break;
1859 }
1860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
1862 ctx->pending--;
1863 if (ctx->pending == 0) {
1864 if (ctx->errors)
David Brownell28ffd792008-04-25 18:51:10 -07001865 dev_err(&ctx->dev->intf->dev,
Alan Stern9da21502006-05-22 16:47:13 -04001866 "iso test, %lu errors out of %lu\n",
1867 ctx->errors, ctx->packet_count);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001868 complete(&ctx->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
1870done:
1871 spin_unlock(&ctx->lock);
1872}
1873
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001874static struct urb *iso_alloc_urb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 struct usb_device *udev,
1876 int pipe,
1877 struct usb_endpoint_descriptor *desc,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001878 long bytes,
1879 unsigned offset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880)
1881{
1882 struct urb *urb;
1883 unsigned i, maxp, packets;
1884
1885 if (bytes < 0 || !desc)
1886 return NULL;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001887 maxp = 0x7ff & usb_endpoint_maxp(desc);
1888 maxp *= 1 + (0x3 & (usb_endpoint_maxp(desc) >> 11));
Julia Lawalldfa5ec72008-03-04 15:25:11 -08001889 packets = DIV_ROUND_UP(bytes, maxp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001891 urb = usb_alloc_urb(packets, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 if (!urb)
1893 return urb;
1894 urb->dev = udev;
1895 urb->pipe = pipe;
1896
1897 urb->number_of_packets = packets;
1898 urb->transfer_buffer_length = bytes;
Martin Fuzzey084fb202011-01-16 19:17:11 +01001899 urb->transfer_buffer = usb_alloc_coherent(udev, bytes + offset,
1900 GFP_KERNEL,
1901 &urb->transfer_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 if (!urb->transfer_buffer) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001903 usb_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 return NULL;
1905 }
Martin Fuzzey084fb202011-01-16 19:17:11 +01001906 if (offset) {
1907 memset(urb->transfer_buffer, GUARD_BYTE, offset);
1908 urb->transfer_buffer += offset;
1909 urb->transfer_dma += offset;
1910 }
1911 /* For inbound transfers use guard byte so that test fails if
1912 data not correctly copied */
1913 memset(urb->transfer_buffer,
1914 usb_pipein(urb->pipe) ? GUARD_BYTE : 0,
1915 bytes);
1916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 for (i = 0; i < packets; i++) {
1918 /* here, only the last packet will be short */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001919 urb->iso_frame_desc[i].length = min((unsigned) bytes, maxp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 bytes -= urb->iso_frame_desc[i].length;
1921
1922 urb->iso_frame_desc[i].offset = maxp * i;
1923 }
1924
Peter Chen145f48c2015-10-13 15:18:21 +08001925 urb->complete = complicated_callback;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001926 /* urb->context = SET BY CALLER */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 urb->interval = 1 << (desc->bInterval - 1);
1928 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
1929 return urb;
1930}
1931
1932static int
Peter Chen145f48c2015-10-13 15:18:21 +08001933test_queue(struct usbtest_dev *dev, struct usbtest_param *param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001934 int pipe, struct usb_endpoint_descriptor *desc, unsigned offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935{
Peter Chen145f48c2015-10-13 15:18:21 +08001936 struct transfer_context context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 struct usb_device *udev;
1938 unsigned i;
1939 unsigned long packets = 0;
Alan Stern9da21502006-05-22 16:47:13 -04001940 int status = 0;
Peter Chen41d3c0b2015-09-01 09:47:58 +08001941 struct urb *urbs[param->sglen];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Huang Ruif55055b2013-10-21 23:15:30 +08001943 memset(&context, 0, sizeof(context));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 context.count = param->iterations * param->sglen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 context.dev = dev;
Peter Chen145f48c2015-10-13 15:18:21 +08001946 context.is_iso = !!desc;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001947 init_completion(&context.done);
1948 spin_lock_init(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001950 udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
1952 for (i = 0; i < param->sglen; i++) {
Peter Chen145f48c2015-10-13 15:18:21 +08001953 if (context.is_iso)
1954 urbs[i] = iso_alloc_urb(udev, pipe, desc,
Martin Fuzzey084fb202011-01-16 19:17:11 +01001955 param->length, offset);
Peter Chen145f48c2015-10-13 15:18:21 +08001956 else
1957 urbs[i] = complicated_alloc_urb(udev, pipe,
1958 param->length, 0);
1959
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001960 if (!urbs[i]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 status = -ENOMEM;
1962 goto fail;
1963 }
1964 packets += urbs[i]->number_of_packets;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001965 urbs[i]->context = &context;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 }
1967 packets *= param->iterations;
Peter Chen145f48c2015-10-13 15:18:21 +08001968
1969 if (context.is_iso) {
1970 dev_info(&dev->intf->dev,
1971 "iso period %d %sframes, wMaxPacket %d, transactions: %d\n",
1972 1 << (desc->bInterval - 1),
1973 (udev->speed == USB_SPEED_HIGH) ? "micro" : "",
1974 usb_endpoint_maxp(desc) & 0x7ff,
1975 1 + (0x3 & (usb_endpoint_maxp(desc) >> 11)));
1976
1977 dev_info(&dev->intf->dev,
1978 "total %lu msec (%lu packets)\n",
1979 (packets * (1 << (desc->bInterval - 1)))
1980 / ((udev->speed == USB_SPEED_HIGH) ? 8 : 1),
1981 packets);
1982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001984 spin_lock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 for (i = 0; i < param->sglen; i++) {
Alan Stern9da21502006-05-22 16:47:13 -04001986 ++context.pending;
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001987 status = usb_submit_urb(urbs[i], GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 if (status < 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001989 ERROR(dev, "submit iso[%d], error %d\n", i, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 if (i == 0) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001991 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 goto fail;
1993 }
1994
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02001995 simple_free_urb(urbs[i]);
Ming Leie10e1be2010-08-02 22:09:01 +08001996 urbs[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 context.pending--;
Alan Stern9da21502006-05-22 16:47:13 -04001998 context.submit_error = 1;
1999 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 }
2001 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002002 spin_unlock_irq(&context.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002004 wait_for_completion(&context.done);
Alan Stern9da21502006-05-22 16:47:13 -04002005
Ming Leie10e1be2010-08-02 22:09:01 +08002006 for (i = 0; i < param->sglen; i++) {
2007 if (urbs[i])
2008 simple_free_urb(urbs[i]);
2009 }
Alan Stern9da21502006-05-22 16:47:13 -04002010 /*
2011 * Isochronous transfers are expected to fail sometimes. As an
2012 * arbitrary limit, we will report an error if any submissions
2013 * fail or if the transfer failure rate is > 10%.
2014 */
2015 if (status != 0)
2016 ;
2017 else if (context.submit_error)
2018 status = -EACCES;
Peter Chen145f48c2015-10-13 15:18:21 +08002019 else if (context.errors >
2020 (context.is_iso ? context.packet_count / 10 : 0))
Alan Stern9da21502006-05-22 16:47:13 -04002021 status = -EIO;
2022 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
2024fail:
2025 for (i = 0; i < param->sglen; i++) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002026 if (urbs[i])
2027 simple_free_urb(urbs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
2029 return status;
2030}
2031
Martin Fuzzey084fb202011-01-16 19:17:11 +01002032static int test_unaligned_bulk(
2033 struct usbtest_dev *tdev,
2034 int pipe,
2035 unsigned length,
2036 int iterations,
2037 unsigned transfer_flags,
2038 const char *label)
2039{
2040 int retval;
Peter Chen145f48c2015-10-13 15:18:21 +08002041 struct urb *urb = usbtest_alloc_urb(testdev_to_usbdev(tdev),
2042 pipe, length, transfer_flags, 1, 0, simple_callback);
Martin Fuzzey084fb202011-01-16 19:17:11 +01002043
2044 if (!urb)
2045 return -ENOMEM;
2046
2047 retval = simple_io(tdev, urb, iterations, 0, 0, label);
2048 simple_free_urb(urb);
2049 return retval;
2050}
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052/*-------------------------------------------------------------------------*/
2053
2054/* We only have this one interface to user space, through usbfs.
2055 * User mode code can scan usbfs to find N different devices (maybe on
2056 * different busses) to use when testing, and allocate one thread per
2057 * test. So discovery is simplified, and we have no device naming issues.
2058 *
2059 * Don't use these only as stress/load tests. Use them along with with
2060 * other USB bus activity: plugging, unplugging, mousing, mp3 playback,
2061 * video capture, and so on. Run different tests at different times, in
2062 * different sequences. Nothing here should interact with other devices,
2063 * except indirectly by consuming USB bandwidth and CPU resources for test
2064 * threads and request completion. But the only way to know that for sure
2065 * is to test when HC queues are in use by many devices.
David Brownell28ffd792008-04-25 18:51:10 -07002066 *
2067 * WARNING: Because usbfs grabs udev->dev.sem before calling this ioctl(),
2068 * it locks out usbcore in certain code paths. Notably, if you disconnect
Petr Mladek37ebb542014-09-19 17:32:23 +02002069 * the device-under-test, hub_wq will wait block forever waiting for the
David Brownell28ffd792008-04-25 18:51:10 -07002070 * ioctl to complete ... so that usb_disconnect() can abort the pending
2071 * urbs and then call usbtest_disconnect(). To abort a test, you're best
2072 * off just killing the userspace task and waiting for it to exit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 */
2074
2075static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002076usbtest_ioctl(struct usb_interface *intf, unsigned int code, void *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002078 struct usbtest_dev *dev = usb_get_intfdata(intf);
2079 struct usb_device *udev = testdev_to_usbdev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 struct usbtest_param *param = buf;
2081 int retval = -EOPNOTSUPP;
2082 struct urb *urb;
2083 struct scatterlist *sg;
2084 struct usb_sg_request req;
2085 struct timeval start;
2086 unsigned i;
2087
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002088 /* FIXME USBDEVFS_CONNECTINFO doesn't say how fast the device is. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Vikram Pandita7f4e9852009-11-09 21:24:32 -06002090 pattern = mod_pattern;
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 if (code != USBTEST_REQUEST)
2093 return -EOPNOTSUPP;
2094
roel kluin8aafdf62008-10-21 00:36:44 -04002095 if (param->iterations <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 return -EINVAL;
2097
Peter Chen41d3c0b2015-09-01 09:47:58 +08002098 if (param->sglen > MAX_SGLEN)
2099 return -EINVAL;
2100
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002101 if (mutex_lock_interruptible(&dev->lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 return -ERESTARTSYS;
2103
Alan Stern70a1c9e2008-03-06 17:00:58 -05002104 /* FIXME: What if a system sleep starts while a test is running? */
David Brownellff7c79e2005-04-22 13:17:00 -07002105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 /* some devices, like ez-usb default devices, need a non-default
2107 * altsetting to have any active endpoints. some tests change
2108 * altsettings; force a default so most tests don't need to check.
2109 */
2110 if (dev->info->alt >= 0) {
David Brownell28ffd792008-04-25 18:51:10 -07002111 int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
2113 if (intf->altsetting->desc.bInterfaceNumber) {
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002114 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 return -ENODEV;
2116 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002117 res = set_altsetting(dev, dev->info->alt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 if (res) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002119 dev_err(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 "set altsetting to %d failed, %d\n",
2121 dev->info->alt, res);
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002122 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 return res;
2124 }
2125 }
2126
2127 /*
2128 * Just a bunch of test cases that every HCD is expected to handle.
2129 *
2130 * Some may need specific firmware, though it'd be good to have
2131 * one firmware image to handle all the test cases.
2132 *
2133 * FIXME add more tests! cancel requests, verify the data, control
2134 * queueing, concurrent read+write threads, and so on.
2135 */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002136 do_gettimeofday(&start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 switch (param->test_num) {
2138
2139 case 0:
David Brownell28ffd792008-04-25 18:51:10 -07002140 dev_info(&intf->dev, "TEST 0: NOP\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 retval = 0;
2142 break;
2143
2144 /* Simple non-queued bulk I/O tests */
2145 case 1:
2146 if (dev->out_pipe == 0)
2147 break;
David Brownell28ffd792008-04-25 18:51:10 -07002148 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 "TEST 1: write %d bytes %u times\n",
2150 param->length, param->iterations);
Amit Virdi457a0952014-08-22 14:36:37 +05302151 urb = simple_alloc_urb(udev, dev->out_pipe, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 if (!urb) {
2153 retval = -ENOMEM;
2154 break;
2155 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002156 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002157 retval = simple_io(dev, urb, param->iterations, 0, 0, "test1");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002158 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 break;
2160 case 2:
2161 if (dev->in_pipe == 0)
2162 break;
David Brownell28ffd792008-04-25 18:51:10 -07002163 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 "TEST 2: read %d bytes %u times\n",
2165 param->length, param->iterations);
Amit Virdi457a0952014-08-22 14:36:37 +05302166 urb = simple_alloc_urb(udev, dev->in_pipe, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 if (!urb) {
2168 retval = -ENOMEM;
2169 break;
2170 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002171 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002172 retval = simple_io(dev, urb, param->iterations, 0, 0, "test2");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002173 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 break;
2175 case 3:
2176 if (dev->out_pipe == 0 || param->vary == 0)
2177 break;
David Brownell28ffd792008-04-25 18:51:10 -07002178 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 "TEST 3: write/%d 0..%d bytes %u times\n",
2180 param->vary, param->length, param->iterations);
Amit Virdi457a0952014-08-22 14:36:37 +05302181 urb = simple_alloc_urb(udev, dev->out_pipe, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 if (!urb) {
2183 retval = -ENOMEM;
2184 break;
2185 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002186 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002187 retval = simple_io(dev, urb, param->iterations, param->vary,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 0, "test3");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002189 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 break;
2191 case 4:
2192 if (dev->in_pipe == 0 || param->vary == 0)
2193 break;
David Brownell28ffd792008-04-25 18:51:10 -07002194 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 "TEST 4: read/%d 0..%d bytes %u times\n",
2196 param->vary, param->length, param->iterations);
Amit Virdi457a0952014-08-22 14:36:37 +05302197 urb = simple_alloc_urb(udev, dev->in_pipe, param->length, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 if (!urb) {
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 = simple_io(dev, urb, param->iterations, param->vary,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 0, "test4");
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002205 simple_free_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 break;
2207
2208 /* Queued bulk I/O tests */
2209 case 5:
2210 if (dev->out_pipe == 0 || param->sglen == 0)
2211 break;
David Brownell28ffd792008-04-25 18:51:10 -07002212 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 "TEST 5: write %d sglists %d entries of %d bytes\n",
2214 param->iterations,
2215 param->sglen, param->length);
Alan Sternb9a6e8e2015-09-01 09:48:01 +08002216 sg = alloc_sglist(param->sglen, param->length,
2217 0, dev, dev->out_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 if (!sg) {
2219 retval = -ENOMEM;
2220 break;
2221 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002222 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002223 retval = perform_sglist(dev, param->iterations, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002225 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 break;
2227
2228 case 6:
2229 if (dev->in_pipe == 0 || param->sglen == 0)
2230 break;
David Brownell28ffd792008-04-25 18:51:10 -07002231 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 "TEST 6: read %d sglists %d entries of %d bytes\n",
2233 param->iterations,
2234 param->sglen, param->length);
Alan Sternb9a6e8e2015-09-01 09:48:01 +08002235 sg = alloc_sglist(param->sglen, param->length,
2236 0, dev, dev->in_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 if (!sg) {
2238 retval = -ENOMEM;
2239 break;
2240 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002241 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002242 retval = perform_sglist(dev, param->iterations, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002244 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 break;
2246 case 7:
2247 if (dev->out_pipe == 0 || param->sglen == 0 || param->vary == 0)
2248 break;
David Brownell28ffd792008-04-25 18:51:10 -07002249 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 "TEST 7: write/%d %d sglists %d entries 0..%d bytes\n",
2251 param->vary, param->iterations,
2252 param->sglen, param->length);
Alan Sternb9a6e8e2015-09-01 09:48:01 +08002253 sg = alloc_sglist(param->sglen, param->length,
2254 param->vary, dev, dev->out_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 if (!sg) {
2256 retval = -ENOMEM;
2257 break;
2258 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002259 /* FIRMWARE: bulk sink (maybe accepts short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002260 retval = perform_sglist(dev, param->iterations, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002262 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 break;
2264 case 8:
2265 if (dev->in_pipe == 0 || param->sglen == 0 || param->vary == 0)
2266 break;
David Brownell28ffd792008-04-25 18:51:10 -07002267 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 "TEST 8: read/%d %d sglists %d entries 0..%d bytes\n",
2269 param->vary, param->iterations,
2270 param->sglen, param->length);
Alan Sternb9a6e8e2015-09-01 09:48:01 +08002271 sg = alloc_sglist(param->sglen, param->length,
2272 param->vary, dev, dev->in_pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 if (!sg) {
2274 retval = -ENOMEM;
2275 break;
2276 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002277 /* FIRMWARE: bulk source (maybe generates short writes) */
David Brownell28ffd792008-04-25 18:51:10 -07002278 retval = perform_sglist(dev, param->iterations, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 &req, sg, param->sglen);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002280 free_sglist(sg, param->sglen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 break;
2282
2283 /* non-queued sanity tests for control (chapter 9 subset) */
2284 case 9:
2285 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002286 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 "TEST 9: ch9 (subset) control tests, %d times\n",
2288 param->iterations);
2289 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002290 retval = ch9_postconfig(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002292 dev_err(&intf->dev, "ch9 subset failed, "
2293 "iterations left %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 break;
2295
2296 /* queued control messaging */
2297 case 10:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002299 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 "TEST 10: queue %d control calls, %d times\n",
2301 param->sglen,
2302 param->iterations);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002303 retval = test_ctrl_queue(dev, param);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 break;
2305
2306 /* simple non-queued unlinks (ring with one urb) */
2307 case 11:
2308 if (dev->in_pipe == 0 || !param->length)
2309 break;
2310 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002311 dev_info(&intf->dev, "TEST 11: unlink %d reads of %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 param->iterations, param->length);
2313 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002314 retval = unlink_simple(dev, dev->in_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 param->length);
2316 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002317 dev_err(&intf->dev, "unlink reads failed %d, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 "iterations left %d\n", retval, i);
2319 break;
2320 case 12:
2321 if (dev->out_pipe == 0 || !param->length)
2322 break;
2323 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002324 dev_info(&intf->dev, "TEST 12: unlink %d writes of %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 param->iterations, param->length);
2326 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002327 retval = unlink_simple(dev, dev->out_pipe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 param->length);
2329 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002330 dev_err(&intf->dev, "unlink writes failed %d, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 "iterations left %d\n", retval, i);
2332 break;
2333
2334 /* ep halt tests */
2335 case 13:
2336 if (dev->out_pipe == 0 && dev->in_pipe == 0)
2337 break;
2338 retval = 0;
David Brownell28ffd792008-04-25 18:51:10 -07002339 dev_info(&intf->dev, "TEST 13: set/clear %d halts\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 param->iterations);
2341 for (i = param->iterations; retval == 0 && i--; /* NOP */)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002342 retval = halt_simple(dev);
David Brownell28ffd792008-04-25 18:51:10 -07002343
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 if (retval)
David Brownell28ffd792008-04-25 18:51:10 -07002345 ERROR(dev, "halts failed, iterations left %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 break;
2347
2348 /* control write tests */
2349 case 14:
2350 if (!dev->info->ctrl_out)
2351 break;
David Brownell28ffd792008-04-25 18:51:10 -07002352 dev_info(&intf->dev, "TEST 14: %d ep0out, %d..%d vary %d\n",
David Brownellff7c79e2005-04-22 13:17:00 -07002353 param->iterations,
2354 realworld ? 1 : 0, param->length,
2355 param->vary);
David Brownell28ffd792008-04-25 18:51:10 -07002356 retval = ctrl_out(dev, param->iterations,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002357 param->length, param->vary, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 break;
2359
2360 /* iso write tests */
2361 case 15:
2362 if (dev->out_iso_pipe == 0 || param->sglen == 0)
2363 break;
David Brownell28ffd792008-04-25 18:51:10 -07002364 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 "TEST 15: write %d iso, %d entries of %d bytes\n",
2366 param->iterations,
2367 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002368 /* FIRMWARE: iso sink */
Peter Chen145f48c2015-10-13 15:18:21 +08002369 retval = test_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002370 dev->out_iso_pipe, dev->iso_out, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 break;
2372
2373 /* iso read tests */
2374 case 16:
2375 if (dev->in_iso_pipe == 0 || param->sglen == 0)
2376 break;
David Brownell28ffd792008-04-25 18:51:10 -07002377 dev_info(&intf->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 "TEST 16: read %d iso, %d entries of %d bytes\n",
2379 param->iterations,
2380 param->sglen, param->length);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002381 /* FIRMWARE: iso source */
Peter Chen145f48c2015-10-13 15:18:21 +08002382 retval = test_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002383 dev->in_iso_pipe, dev->iso_in, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 break;
2385
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002386 /* FIXME scatterlist cancel (needs helper thread) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
Martin Fuzzey084fb202011-01-16 19:17:11 +01002388 /* Tests for bulk I/O using DMA mapping by core and odd address */
2389 case 17:
2390 if (dev->out_pipe == 0)
2391 break;
2392 dev_info(&intf->dev,
2393 "TEST 17: write odd addr %d bytes %u times core map\n",
2394 param->length, param->iterations);
2395
2396 retval = test_unaligned_bulk(
2397 dev, dev->out_pipe,
2398 param->length, param->iterations,
2399 0, "test17");
2400 break;
2401
2402 case 18:
2403 if (dev->in_pipe == 0)
2404 break;
2405 dev_info(&intf->dev,
2406 "TEST 18: read odd addr %d bytes %u times core map\n",
2407 param->length, param->iterations);
2408
2409 retval = test_unaligned_bulk(
2410 dev, dev->in_pipe,
2411 param->length, param->iterations,
2412 0, "test18");
2413 break;
2414
2415 /* Tests for bulk I/O using premapped coherent buffer and odd address */
2416 case 19:
2417 if (dev->out_pipe == 0)
2418 break;
2419 dev_info(&intf->dev,
2420 "TEST 19: write odd addr %d bytes %u times premapped\n",
2421 param->length, param->iterations);
2422
2423 retval = test_unaligned_bulk(
2424 dev, dev->out_pipe,
2425 param->length, param->iterations,
2426 URB_NO_TRANSFER_DMA_MAP, "test19");
2427 break;
2428
2429 case 20:
2430 if (dev->in_pipe == 0)
2431 break;
2432 dev_info(&intf->dev,
2433 "TEST 20: read odd addr %d bytes %u times premapped\n",
2434 param->length, param->iterations);
2435
2436 retval = test_unaligned_bulk(
2437 dev, dev->in_pipe,
2438 param->length, param->iterations,
2439 URB_NO_TRANSFER_DMA_MAP, "test20");
2440 break;
2441
2442 /* control write tests with unaligned buffer */
2443 case 21:
2444 if (!dev->info->ctrl_out)
2445 break;
2446 dev_info(&intf->dev,
2447 "TEST 21: %d ep0out odd addr, %d..%d vary %d\n",
2448 param->iterations,
2449 realworld ? 1 : 0, param->length,
2450 param->vary);
2451 retval = ctrl_out(dev, param->iterations,
2452 param->length, param->vary, 1);
2453 break;
2454
2455 /* unaligned iso tests */
2456 case 22:
2457 if (dev->out_iso_pipe == 0 || param->sglen == 0)
2458 break;
2459 dev_info(&intf->dev,
2460 "TEST 22: write %d iso odd, %d entries of %d bytes\n",
2461 param->iterations,
2462 param->sglen, param->length);
Peter Chen145f48c2015-10-13 15:18:21 +08002463 retval = test_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002464 dev->out_iso_pipe, dev->iso_out, 1);
2465 break;
2466
2467 case 23:
2468 if (dev->in_iso_pipe == 0 || param->sglen == 0)
2469 break;
2470 dev_info(&intf->dev,
2471 "TEST 23: read %d iso odd, %d entries of %d bytes\n",
2472 param->iterations,
2473 param->sglen, param->length);
Peter Chen145f48c2015-10-13 15:18:21 +08002474 retval = test_queue(dev, param,
Martin Fuzzey084fb202011-01-16 19:17:11 +01002475 dev->in_iso_pipe, dev->iso_in, 1);
2476 break;
2477
Alan Stern869410f2011-04-14 11:21:04 -04002478 /* unlink URBs from a bulk-OUT queue */
2479 case 24:
2480 if (dev->out_pipe == 0 || !param->length || param->sglen < 4)
2481 break;
2482 retval = 0;
Alan Stern2cb50002013-01-02 13:58:18 -05002483 dev_info(&intf->dev, "TEST 24: unlink from %d queues of "
Alan Stern869410f2011-04-14 11:21:04 -04002484 "%d %d-byte writes\n",
2485 param->iterations, param->sglen, param->length);
2486 for (i = param->iterations; retval == 0 && i > 0; --i) {
2487 retval = unlink_queued(dev, dev->out_pipe,
2488 param->sglen, param->length);
2489 if (retval) {
2490 dev_err(&intf->dev,
2491 "unlink queued writes failed %d, "
2492 "iterations left %d\n", retval, i);
2493 break;
2494 }
2495 }
2496 break;
2497
Amit Virdi457a0952014-08-22 14:36:37 +05302498 /* Simple non-queued interrupt I/O tests */
2499 case 25:
2500 if (dev->out_int_pipe == 0)
2501 break;
2502 dev_info(&intf->dev,
2503 "TEST 25: write %d bytes %u times\n",
2504 param->length, param->iterations);
2505 urb = simple_alloc_urb(udev, dev->out_int_pipe, param->length,
2506 dev->int_out->bInterval);
2507 if (!urb) {
2508 retval = -ENOMEM;
2509 break;
2510 }
2511 /* FIRMWARE: interrupt sink (maybe accepts short writes) */
2512 retval = simple_io(dev, urb, param->iterations, 0, 0, "test25");
2513 simple_free_urb(urb);
2514 break;
2515 case 26:
2516 if (dev->in_int_pipe == 0)
2517 break;
2518 dev_info(&intf->dev,
2519 "TEST 26: read %d bytes %u times\n",
2520 param->length, param->iterations);
2521 urb = simple_alloc_urb(udev, dev->in_int_pipe, param->length,
2522 dev->int_in->bInterval);
2523 if (!urb) {
2524 retval = -ENOMEM;
2525 break;
2526 }
2527 /* FIRMWARE: interrupt source (maybe generates short writes) */
2528 retval = simple_io(dev, urb, param->iterations, 0, 0, "test26");
2529 simple_free_urb(urb);
2530 break;
Peter Chen145f48c2015-10-13 15:18:21 +08002531 case 27:
2532 /* We do performance test, so ignore data compare */
2533 if (dev->out_pipe == 0 || param->sglen == 0 || pattern != 0)
2534 break;
2535 dev_info(&intf->dev,
2536 "TEST 27: bulk write %dMbytes\n", (param->iterations *
2537 param->sglen * param->length) / (1024 * 1024));
2538 retval = test_queue(dev, param,
2539 dev->out_pipe, NULL, 0);
2540 break;
2541 case 28:
2542 if (dev->in_pipe == 0 || param->sglen == 0 || pattern != 0)
2543 break;
2544 dev_info(&intf->dev,
2545 "TEST 28: bulk read %dMbytes\n", (param->iterations *
2546 param->sglen * param->length) / (1024 * 1024));
2547 retval = test_queue(dev, param,
2548 dev->in_pipe, NULL, 0);
2549 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 }
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002551 do_gettimeofday(&param->duration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 param->duration.tv_sec -= start.tv_sec;
2553 param->duration.tv_usec -= start.tv_usec;
2554 if (param->duration.tv_usec < 0) {
2555 param->duration.tv_usec += 1000 * 1000;
2556 param->duration.tv_sec -= 1;
2557 }
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002558 mutex_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 return retval;
2560}
2561
2562/*-------------------------------------------------------------------------*/
2563
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002564static unsigned force_interrupt;
2565module_param(force_interrupt, uint, 0);
2566MODULE_PARM_DESC(force_interrupt, "0 = test default; else interrupt");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
2568#ifdef GENERIC
2569static unsigned short vendor;
2570module_param(vendor, ushort, 0);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002571MODULE_PARM_DESC(vendor, "vendor code (from usb-if)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
2573static unsigned short product;
2574module_param(product, ushort, 0);
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002575MODULE_PARM_DESC(product, "product code (from vendor)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576#endif
2577
2578static int
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002579usbtest_probe(struct usb_interface *intf, const struct usb_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580{
2581 struct usb_device *udev;
2582 struct usbtest_dev *dev;
2583 struct usbtest_info *info;
2584 char *rtest, *wtest;
2585 char *irtest, *iwtest;
Amit Virdi457a0952014-08-22 14:36:37 +05302586 char *intrtest, *intwtest;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002588 udev = interface_to_usbdev(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
2590#ifdef GENERIC
2591 /* specify devices by module parameters? */
2592 if (id->match_flags == 0) {
2593 /* vendor match required, product match optional */
2594 if (!vendor || le16_to_cpu(udev->descriptor.idVendor) != (u16)vendor)
2595 return -ENODEV;
2596 if (product && le16_to_cpu(udev->descriptor.idProduct) != (u16)product)
2597 return -ENODEV;
David Brownell28ffd792008-04-25 18:51:10 -07002598 dev_info(&intf->dev, "matched module params, "
2599 "vend=0x%04x prod=0x%04x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 le16_to_cpu(udev->descriptor.idVendor),
2601 le16_to_cpu(udev->descriptor.idProduct));
2602 }
2603#endif
2604
Christoph Lametere94b1762006-12-06 20:33:17 -08002605 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 if (!dev)
2607 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 info = (struct usbtest_info *) id->driver_info;
2609 dev->info = info;
Matthias Kaehlcke1cfab022007-12-13 16:15:33 -08002610 mutex_init(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
2612 dev->intf = intf;
2613
2614 /* cacheline-aligned scratch for i/o */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002615 dev->buf = kmalloc(TBUF_SIZE, GFP_KERNEL);
2616 if (dev->buf == NULL) {
2617 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 return -ENOMEM;
2619 }
2620
2621 /* NOTE this doesn't yet test the handful of difference that are
2622 * visible with high speed interrupts: bigger maxpacket (1K) and
2623 * "high bandwidth" modes (up to 3 packets/uframe).
2624 */
2625 rtest = wtest = "";
2626 irtest = iwtest = "";
Amit Virdi457a0952014-08-22 14:36:37 +05302627 intrtest = intwtest = "";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 if (force_interrupt || udev->speed == USB_SPEED_LOW) {
2629 if (info->ep_in) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002630 dev->in_pipe = usb_rcvintpipe(udev, info->ep_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 rtest = " intr-in";
2632 }
2633 if (info->ep_out) {
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002634 dev->out_pipe = usb_sndintpipe(udev, info->ep_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 wtest = " intr-out";
2636 }
2637 } else {
Alan Sternd0b46522013-01-30 16:38:11 -05002638 if (override_alt >= 0 || info->autoconf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 int status;
2640
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002641 status = get_endpoints(dev, intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 if (status < 0) {
Arjan van de Venb6c63932008-07-25 01:45:52 -07002643 WARNING(dev, "couldn't get endpoints, %d\n",
David Brownell28ffd792008-04-25 18:51:10 -07002644 status);
Julia Lawallf4a728d2012-03-25 21:08:32 +02002645 kfree(dev->buf);
2646 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 return status;
2648 }
2649 /* may find bulk or ISO pipes */
2650 } else {
2651 if (info->ep_in)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002652 dev->in_pipe = usb_rcvbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 info->ep_in);
2654 if (info->ep_out)
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002655 dev->out_pipe = usb_sndbulkpipe(udev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 info->ep_out);
2657 }
2658 if (dev->in_pipe)
2659 rtest = " bulk-in";
2660 if (dev->out_pipe)
2661 wtest = " bulk-out";
2662 if (dev->in_iso_pipe)
2663 irtest = " iso-in";
2664 if (dev->out_iso_pipe)
2665 iwtest = " iso-out";
Amit Virdi457a0952014-08-22 14:36:37 +05302666 if (dev->in_int_pipe)
2667 intrtest = " int-in";
2668 if (dev->out_int_pipe)
2669 intwtest = " int-out";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 }
2671
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002672 usb_set_intfdata(intf, dev);
2673 dev_info(&intf->dev, "%s\n", info->name);
Amit Virdi457a0952014-08-22 14:36:37 +05302674 dev_info(&intf->dev, "%s {control%s%s%s%s%s%s%s} tests%s\n",
Michal Nazarewicze538dfd2011-08-30 17:11:19 +02002675 usb_speed_string(udev->speed),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 info->ctrl_out ? " in/out" : "",
2677 rtest, wtest,
2678 irtest, iwtest,
Amit Virdi457a0952014-08-22 14:36:37 +05302679 intrtest, intwtest,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 info->alt >= 0 ? " (+alt)" : "");
2681 return 0;
2682}
2683
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002684static int usbtest_suspend(struct usb_interface *intf, pm_message_t message)
David Brownellff7c79e2005-04-22 13:17:00 -07002685{
David Brownellff7c79e2005-04-22 13:17:00 -07002686 return 0;
2687}
2688
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002689static int usbtest_resume(struct usb_interface *intf)
David Brownellff7c79e2005-04-22 13:17:00 -07002690{
David Brownellff7c79e2005-04-22 13:17:00 -07002691 return 0;
2692}
2693
2694
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002695static void usbtest_disconnect(struct usb_interface *intf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002697 struct usbtest_dev *dev = usb_get_intfdata(intf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002699 usb_set_intfdata(intf, NULL);
2700 dev_dbg(&intf->dev, "disconnect\n");
2701 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702}
2703
2704/* Basic testing only needs a device that can source or sink bulk traffic.
2705 * Any device can test control transfers (default with GENERIC binding).
2706 *
2707 * Several entries work with the default EP0 implementation that's built
2708 * into EZ-USB chips. There's a default vendor ID which can be overridden
2709 * by (very) small config EEPROMS, but otherwise all these devices act
2710 * identically until firmware is loaded: only EP0 works. It turns out
2711 * to be easy to make other endpoints work, without modifying that EP0
2712 * behavior. For now, we expect that kind of firmware.
2713 */
2714
2715/* an21xx or fx versions of ez-usb */
2716static struct usbtest_info ez1_info = {
2717 .name = "EZ-USB device",
2718 .ep_in = 2,
2719 .ep_out = 2,
2720 .alt = 1,
2721};
2722
2723/* fx2 version of ez-usb */
2724static struct usbtest_info ez2_info = {
2725 .name = "FX2 device",
2726 .ep_in = 6,
2727 .ep_out = 2,
2728 .alt = 1,
2729};
2730
2731/* ezusb family device with dedicated usb test firmware,
2732 */
2733static struct usbtest_info fw_info = {
2734 .name = "usb test device",
2735 .ep_in = 2,
2736 .ep_out = 2,
2737 .alt = 1,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002738 .autoconf = 1, /* iso and ctrl_out need autoconf */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 .ctrl_out = 1,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002740 .iso = 1, /* iso_ep's are #8 in/out */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741};
2742
2743/* peripheral running Linux and 'zero.c' test firmware, or
2744 * its user-mode cousin. different versions of this use
2745 * different hardware with the same vendor/product codes.
2746 * host side MUST rely on the endpoint descriptors.
2747 */
2748static struct usbtest_info gz_info = {
2749 .name = "Linux gadget zero",
2750 .autoconf = 1,
2751 .ctrl_out = 1,
Boyan Nedeltchev4b85c622012-11-12 13:06:06 +02002752 .iso = 1,
Amit Virdi457a0952014-08-22 14:36:37 +05302753 .intr = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 .alt = 0,
2755};
2756
2757static struct usbtest_info um_info = {
2758 .name = "Linux user mode test driver",
2759 .autoconf = 1,
2760 .alt = -1,
2761};
2762
2763static struct usbtest_info um2_info = {
2764 .name = "Linux user mode ISO test driver",
2765 .autoconf = 1,
2766 .iso = 1,
2767 .alt = -1,
2768};
2769
2770#ifdef IBOT2
2771/* this is a nice source of high speed bulk data;
2772 * uses an FX2, with firmware provided in the device
2773 */
2774static struct usbtest_info ibot2_info = {
2775 .name = "iBOT2 webcam",
2776 .ep_in = 2,
2777 .alt = -1,
2778};
2779#endif
2780
2781#ifdef GENERIC
2782/* we can use any device to test control traffic */
2783static struct usbtest_info generic_info = {
2784 .name = "Generic USB device",
2785 .alt = -1,
2786};
2787#endif
2788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Németh Márton33b9e162010-01-10 15:34:45 +01002790static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 /*-------------------------------------------------------------*/
2793
2794 /* EZ-USB devices which download firmware to replace (or in our
2795 * case augment) the default device implementation.
2796 */
2797
2798 /* generic EZ-USB FX controller */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002799 { USB_DEVICE(0x0547, 0x2235),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002801 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
2803 /* CY3671 development board with EZ-USB FX */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002804 { USB_DEVICE(0x0547, 0x0080),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002806 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
2808 /* generic EZ-USB FX2 controller (or development board) */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002809 { USB_DEVICE(0x04b4, 0x8613),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 .driver_info = (unsigned long) &ez2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002811 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
2813 /* re-enumerated usb test device firmware */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002814 { USB_DEVICE(0xfff0, 0xfff0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 .driver_info = (unsigned long) &fw_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002816 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
2818 /* "Gadget Zero" firmware runs under Linux */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002819 { USB_DEVICE(0x0525, 0xa4a0),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 .driver_info = (unsigned long) &gz_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002821 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
2823 /* so does a user-mode variant */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002824 { USB_DEVICE(0x0525, 0xa4a4),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 .driver_info = (unsigned long) &um_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002826 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
2828 /* ... and a user-mode variant that talks iso */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002829 { USB_DEVICE(0x0525, 0xa4a3),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 .driver_info = (unsigned long) &um2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002831 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
2833#ifdef KEYSPAN_19Qi
2834 /* Keyspan 19qi uses an21xx (original EZ-USB) */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002835 /* this does not coexist with the real Keyspan 19qi driver! */
2836 { USB_DEVICE(0x06cd, 0x010b),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 .driver_info = (unsigned long) &ez1_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002838 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839#endif
2840
2841 /*-------------------------------------------------------------*/
2842
2843#ifdef IBOT2
2844 /* iBOT2 makes a nice source of high speed bulk-in data */
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002845 /* this does not coexist with a real iBOT2 driver! */
2846 { USB_DEVICE(0x0b62, 0x0059),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 .driver_info = (unsigned long) &ibot2_info,
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002848 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849#endif
2850
2851 /*-------------------------------------------------------------*/
2852
2853#ifdef GENERIC
2854 /* module params can specify devices to use for control tests */
2855 { .driver_info = (unsigned long) &generic_info, },
2856#endif
2857
2858 /*-------------------------------------------------------------*/
2859
2860 { }
2861};
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002862MODULE_DEVICE_TABLE(usb, id_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
2864static struct usb_driver usbtest_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 .name = "usbtest",
2866 .id_table = id_table,
2867 .probe = usbtest_probe,
Andi Kleenc532b292010-06-01 23:04:41 +02002868 .unlocked_ioctl = usbtest_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 .disconnect = usbtest_disconnect,
David Brownellff7c79e2005-04-22 13:17:00 -07002870 .suspend = usbtest_suspend,
2871 .resume = usbtest_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872};
2873
2874/*-------------------------------------------------------------------------*/
2875
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002876static int __init usbtest_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877{
2878#ifdef GENERIC
2879 if (vendor)
David Brownell28ffd792008-04-25 18:51:10 -07002880 pr_debug("params: vend=0x%04x prod=0x%04x\n", vendor, product);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881#endif
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002882 return usb_register(&usbtest_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883}
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002884module_init(usbtest_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002886static void __exit usbtest_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887{
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002888 usb_deregister(&usbtest_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889}
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002890module_exit(usbtest_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Martin Fuzzeyfabbf212010-10-01 00:20:42 +02002892MODULE_DESCRIPTION("USB Core/HCD Testing Driver");
2893MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894