1 #include <linux/config.h>
2 #if !defined (DEBUG) && defined (CONFIG_USB_DEBUG)
5 #include <linux/kernel.h>
6 #include <linux/errno.h>
7 #include <linux/init.h>
8 #include <linux/slab.h>
10 #include <linux/module.h>
11 #include <linux/moduleparam.h>
12 #include <asm/scatterlist.h>
14 #include <linux/usb.h>
17 /*-------------------------------------------------------------------------*/
19 // FIXME make these public somewhere; usbdevfs.h?
21 struct usbtest_param {
23 unsigned test_num; /* 0..(TEST_CASES-1) */
30 struct timeval duration;
32 #define USBTEST_REQUEST _IOWR('U', 100, struct usbtest_param)
34 /*-------------------------------------------------------------------------*/
36 #define GENERIC /* let probe() bind using module params */
38 /* Some devices that can be used for testing will have "real" drivers.
39 * Entries for those need to be enabled here by hand, after disabling
42 //#define IBOT2 /* grab iBOT2 webcams */
43 //#define KEYSPAN_19Qi /* grab un-renumerated serial adapter */
45 /*-------------------------------------------------------------------------*/
49 u8 ep_in; /* bulk/intr source */
50 u8 ep_out; /* bulk/intr sink */
51 unsigned autoconf : 1;
52 unsigned ctrl_out : 1;
53 unsigned iso : 1; /* try iso in/out */
57 /* this is accessed only through usbfs ioctl calls.
58 * one ioctl to issue a test ... one lock per device.
59 * tests create other threads if they need them.
60 * urbs and buffers are allocated dynamically,
61 * and data generated deterministically.
64 struct usb_interface *intf;
65 struct usbtest_info *info;
70 struct usb_endpoint_descriptor *iso_in, *iso_out;
77 static struct usb_device *testdev_to_usbdev (struct usbtest_dev *test)
79 return interface_to_usbdev (test->intf);
82 /* set up all urbs so they can be used with either bulk or interrupt */
83 #define INTERRUPT_RATE 1 /* msec/transfer */
85 #define xprintk(tdev,level,fmt,args...) \
86 dev_printk(level , &(tdev)->intf->dev , fmt , ## args)
89 #define DBG(dev,fmt,args...) \
90 xprintk(dev , KERN_DEBUG , fmt , ## args)
92 #define DBG(dev,fmt,args...) \
99 #define VDBG(dev,fmt,args...) \
103 #define ERROR(dev,fmt,args...) \
104 xprintk(dev , KERN_ERR , fmt , ## args)
105 #define WARN(dev,fmt,args...) \
106 xprintk(dev , KERN_WARNING , fmt , ## args)
107 #define INFO(dev,fmt,args...) \
108 xprintk(dev , KERN_INFO , fmt , ## args)
110 /*-------------------------------------------------------------------------*/
113 get_endpoints (struct usbtest_dev *dev, struct usb_interface *intf)
116 struct usb_host_interface *alt;
117 struct usb_host_endpoint *in, *out;
118 struct usb_host_endpoint *iso_in, *iso_out;
119 struct usb_device *udev;
121 for (tmp = 0; tmp < intf->num_altsetting; tmp++) {
125 iso_in = iso_out = NULL;
126 alt = intf->altsetting + tmp;
128 /* take the first altsetting with in-bulk + out-bulk;
129 * ignore other endpoints and altsetttings.
131 for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) {
132 struct usb_host_endpoint *e;
134 e = alt->endpoint + ep;
135 switch (e->desc.bmAttributes) {
136 case USB_ENDPOINT_XFER_BULK:
138 case USB_ENDPOINT_XFER_ISOC:
145 if (e->desc.bEndpointAddress & USB_DIR_IN) {
154 if (e->desc.bEndpointAddress & USB_DIR_IN) {
162 if ((in && out) || (iso_in && iso_out))
168 udev = testdev_to_usbdev (dev);
169 if (alt->desc.bAlternateSetting != 0) {
170 tmp = usb_set_interface (udev,
171 alt->desc.bInterfaceNumber,
172 alt->desc.bAlternateSetting);
178 dev->in_pipe = usb_rcvbulkpipe (udev,
179 in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
180 dev->out_pipe = usb_sndbulkpipe (udev,
181 out->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
184 dev->iso_in = &iso_in->desc;
185 dev->in_iso_pipe = usb_rcvisocpipe (udev,
186 iso_in->desc.bEndpointAddress
187 & USB_ENDPOINT_NUMBER_MASK);
188 dev->iso_out = &iso_out->desc;
189 dev->out_iso_pipe = usb_sndisocpipe (udev,
190 iso_out->desc.bEndpointAddress
191 & USB_ENDPOINT_NUMBER_MASK);
196 /*-------------------------------------------------------------------------*/
198 /* Support for testing basic non-queued I/O streams.
200 * These just package urbs as requests that can be easily canceled.
201 * Each urb's data buffer is dynamically allocated; callers can fill
202 * them with non-zero test data (or test for it) when appropriate.
205 static void simple_callback (struct urb *urb, struct pt_regs *regs)
207 complete ((struct completion *) urb->context);
210 static struct urb *simple_alloc_urb (
211 struct usb_device *udev,
220 urb = usb_alloc_urb (0, SLAB_KERNEL);
223 usb_fill_bulk_urb (urb, udev, pipe, NULL, bytes, simple_callback, NULL);
224 urb->interval = (udev->speed == USB_SPEED_HIGH)
225 ? (INTERRUPT_RATE << 3)
227 urb->transfer_flags = URB_NO_TRANSFER_DMA_MAP;
228 if (usb_pipein (pipe))
229 urb->transfer_flags |= URB_SHORT_NOT_OK;
230 urb->transfer_buffer = usb_buffer_alloc (udev, bytes, SLAB_KERNEL,
232 if (!urb->transfer_buffer) {
236 memset (urb->transfer_buffer, 0, bytes);
240 static unsigned pattern = 0;
241 module_param (pattern, uint, S_IRUGO);
242 // MODULE_PARM_DESC (pattern, "i/o pattern (0 == zeroes)");
244 static inline void simple_fill_buf (struct urb *urb)
247 u8 *buf = urb->transfer_buffer;
248 unsigned len = urb->transfer_buffer_length;
254 memset (buf, 0, len);
257 for (i = 0; i < len; i++)
258 *buf++ = (u8) (i % 63);
263 static inline int simple_check_buf (struct urb *urb)
267 u8 *buf = urb->transfer_buffer;
268 unsigned len = urb->actual_length;
270 for (i = 0; i < len; i++, buf++) {
272 /* all-zeroes has no synchronization issues */
276 /* mod63 stays in sync with short-terminated transfers,
277 * or otherwise when host and gadget agree on how large
278 * each usb transfer request should be. resync is done
279 * with set_interface or set_config.
284 /* always fail unsupported patterns */
289 if (*buf == expected)
291 dbg ("buf[%d] = %d (not %d)", i, *buf, expected);
297 static void simple_free_urb (struct urb *urb)
299 usb_buffer_free (urb->dev, urb->transfer_buffer_length,
300 urb->transfer_buffer, urb->transfer_dma);
304 static int simple_io (
312 struct usb_device *udev = urb->dev;
313 int max = urb->transfer_buffer_length;
314 struct completion completion;
317 urb->context = &completion;
318 while (retval == 0 && iterations-- > 0) {
319 init_completion (&completion);
320 if (usb_pipeout (urb->pipe))
321 simple_fill_buf (urb);
322 if ((retval = usb_submit_urb (urb, SLAB_KERNEL)) != 0)
325 /* NOTE: no timeouts; can't be broken out of by interrupt */
326 wait_for_completion (&completion);
327 retval = urb->status;
329 if (retval == 0 && usb_pipein (urb->pipe))
330 retval = simple_check_buf (urb);
333 int len = urb->transfer_buffer_length;
338 len = (vary < max) ? vary : max;
339 urb->transfer_buffer_length = len;
342 /* FIXME if endpoint halted, clear halt (and log) */
344 urb->transfer_buffer_length = max;
346 if (expected != retval)
348 "%s failed, iterations left %d, status %d (not %d)\n",
349 label, iterations, retval, expected);
354 /*-------------------------------------------------------------------------*/
356 /* We use scatterlist primitives to test queued I/O.
357 * Yes, this also tests the scatterlist primitives.
360 static void free_sglist (struct scatterlist *sg, int nents)
366 for (i = 0; i < nents; i++) {
369 kfree (page_address (sg [i].page) + sg [i].offset);
374 static struct scatterlist *
375 alloc_sglist (int nents, int max, int vary)
377 struct scatterlist *sg;
381 sg = kmalloc (nents * sizeof *sg, SLAB_KERNEL);
384 memset (sg, 0, nents * sizeof *sg);
386 for (i = 0; i < nents; i++) {
389 buf = kmalloc (size, SLAB_KERNEL);
394 memset (buf, 0, size);
396 /* kmalloc pages are always physically contiguous! */
397 sg [i].page = virt_to_page (buf);
398 sg [i].offset = offset_in_page (buf);
399 sg [i].length = size;
405 size = (vary < max) ? vary : max;
412 static int perform_sglist (
413 struct usb_device *udev,
416 struct usb_sg_request *req,
417 struct scatterlist *sg,
423 while (retval == 0 && iterations-- > 0) {
424 retval = usb_sg_init (req, udev, pipe,
425 (udev->speed == USB_SPEED_HIGH)
426 ? (INTERRUPT_RATE << 3)
428 sg, nents, 0, SLAB_KERNEL);
433 retval = req->status;
435 /* FIXME if endpoint halted, clear halt (and log) */
438 // FIXME for unlink or fault handling tests, don't report
439 // failure if retval is as we expected ...
442 dbg ("perform_sglist failed, iterations left %d, status %d",
448 /*-------------------------------------------------------------------------*/
450 /* unqueued control message testing
452 * there's a nice set of device functional requirements in chapter 9 of the
453 * usb 2.0 spec, which we can apply to ANY device, even ones that don't use
454 * special test firmware.
456 * we know the device is configured (or suspended) by the time it's visible
457 * through usbfs. we can't change that, so we won't test enumeration (which
458 * worked 'well enough' to get here, this time), power management (ditto),
459 * or remote wakeup (which needs human interaction).
462 static unsigned realworld = 1;
463 module_param (realworld, uint, 0);
464 MODULE_PARM_DESC (realworld, "clear to demand stricter spec compliance");
466 static int get_altsetting (struct usbtest_dev *dev)
468 struct usb_interface *iface = dev->intf;
469 struct usb_device *udev = interface_to_usbdev (iface);
472 retval = usb_control_msg (udev, usb_rcvctrlpipe (udev, 0),
473 USB_REQ_GET_INTERFACE, USB_DIR_IN|USB_RECIP_INTERFACE,
474 0, iface->altsetting [0].desc.bInterfaceNumber,
475 dev->buf, 1, USB_CTRL_GET_TIMEOUT);
487 static int set_altsetting (struct usbtest_dev *dev, int alternate)
489 struct usb_interface *iface = dev->intf;
490 struct usb_device *udev;
492 if (alternate < 0 || alternate >= 256)
495 udev = interface_to_usbdev (iface);
496 return usb_set_interface (udev,
497 iface->altsetting [0].desc.bInterfaceNumber,
501 static int is_good_config (char *buf, int len)
503 struct usb_config_descriptor *config;
505 if (len < sizeof *config)
507 config = (struct usb_config_descriptor *) buf;
509 switch (config->bDescriptorType) {
511 case USB_DT_OTHER_SPEED_CONFIG:
512 if (config->bLength != 9) {
513 dbg ("bogus config descriptor length");
516 /* this bit 'must be 1' but often isn't */
517 if (!realworld && !(config->bmAttributes & 0x80)) {
518 dbg ("high bit of config attributes not set");
521 if (config->bmAttributes & 0x1f) { /* reserved == 0 */
522 dbg ("reserved config bits set");
530 if (le16_to_cpu(config->wTotalLength) == len) /* read it all */
532 if (le16_to_cpu(config->wTotalLength) >= TBUF_SIZE) /* max partial read */
534 dbg ("bogus config descriptor read size");
538 /* sanity test for standard requests working with usb_control_mesg() and some
539 * of the utility functions which use it.
541 * this doesn't test how endpoint halts behave or data toggles get set, since
542 * we won't do I/O to bulk/interrupt endpoints here (which is how to change
543 * halt or toggle). toggle testing is impractical without support from hcds.
545 * this avoids failing devices linux would normally work with, by not testing
546 * config/altsetting operations for devices that only support their defaults.
547 * such devices rarely support those needless operations.
549 * NOTE that since this is a sanity test, it's not examining boundary cases
550 * to see if usbcore, hcd, and device all behave right. such testing would
551 * involve varied read sizes and other operation sequences.
553 static int ch9_postconfig (struct usbtest_dev *dev)
555 struct usb_interface *iface = dev->intf;
556 struct usb_device *udev = interface_to_usbdev (iface);
559 /* [9.2.3] if there's more than one altsetting, we need to be able to
560 * set and get each one. mostly trusts the descriptors from usbcore.
562 for (i = 0; i < iface->num_altsetting; i++) {
564 /* 9.2.3 constrains the range here */
565 alt = iface->altsetting [i].desc.bAlternateSetting;
566 if (alt < 0 || alt >= iface->num_altsetting) {
567 dev_dbg (&iface->dev,
568 "invalid alt [%d].bAltSetting = %d\n",
572 /* [real world] get/set unimplemented if there's only one */
573 if (realworld && iface->num_altsetting == 1)
576 /* [9.4.10] set_interface */
577 retval = set_altsetting (dev, alt);
579 dev_dbg (&iface->dev, "can't set_interface = %d, %d\n",
584 /* [9.4.4] get_interface always works */
585 retval = get_altsetting (dev);
587 dev_dbg (&iface->dev, "get alt should be %d, was %d\n",
589 return (retval < 0) ? retval : -EDOM;
594 /* [real world] get_config unimplemented if there's only one */
595 if (!realworld || udev->descriptor.bNumConfigurations != 1) {
596 int expected = udev->actconfig->desc.bConfigurationValue;
598 /* [9.4.2] get_configuration always works
599 * ... although some cheap devices (like one TI Hub I've got)
600 * won't return config descriptors except before set_config.
602 retval = usb_control_msg (udev, usb_rcvctrlpipe (udev, 0),
603 USB_REQ_GET_CONFIGURATION,
604 USB_DIR_IN | USB_RECIP_DEVICE,
605 0, 0, dev->buf, 1, USB_CTRL_GET_TIMEOUT);
606 if (retval != 1 || dev->buf [0] != expected) {
607 dev_dbg (&iface->dev, "get config --> %d %d (1 %d)\n",
608 retval, dev->buf[0], expected);
609 return (retval < 0) ? retval : -EDOM;
613 /* there's always [9.4.3] a device descriptor [9.6.1] */
614 retval = usb_get_descriptor (udev, USB_DT_DEVICE, 0,
615 dev->buf, sizeof udev->descriptor);
616 if (retval != sizeof udev->descriptor) {
617 dev_dbg (&iface->dev, "dev descriptor --> %d\n", retval);
618 return (retval < 0) ? retval : -EDOM;
621 /* there's always [9.4.3] at least one config descriptor [9.6.3] */
622 for (i = 0; i < udev->descriptor.bNumConfigurations; i++) {
623 retval = usb_get_descriptor (udev, USB_DT_CONFIG, i,
624 dev->buf, TBUF_SIZE);
625 if (!is_good_config (dev->buf, retval)) {
626 dev_dbg (&iface->dev,
627 "config [%d] descriptor --> %d\n",
629 return (retval < 0) ? retval : -EDOM;
632 // FIXME cross-checking udev->config[i] to make sure usbcore
633 // parsed it right (etc) would be good testing paranoia
636 /* and sometimes [9.2.6.6] speed dependent descriptors */
637 if (le16_to_cpu(udev->descriptor.bcdUSB) == 0x0200) {
638 struct usb_qualifier_descriptor *d = NULL;
640 /* device qualifier [9.6.2] */
641 retval = usb_get_descriptor (udev,
642 USB_DT_DEVICE_QUALIFIER, 0, dev->buf,
643 sizeof (struct usb_qualifier_descriptor));
644 if (retval == -EPIPE) {
645 if (udev->speed == USB_SPEED_HIGH) {
646 dev_dbg (&iface->dev,
647 "hs dev qualifier --> %d\n",
649 return (retval < 0) ? retval : -EDOM;
651 /* usb2.0 but not high-speed capable; fine */
652 } else if (retval != sizeof (struct usb_qualifier_descriptor)) {
653 dev_dbg (&iface->dev, "dev qualifier --> %d\n", retval);
654 return (retval < 0) ? retval : -EDOM;
656 d = (struct usb_qualifier_descriptor *) dev->buf;
658 /* might not have [9.6.2] any other-speed configs [9.6.4] */
660 unsigned max = d->bNumConfigurations;
661 for (i = 0; i < max; i++) {
662 retval = usb_get_descriptor (udev,
663 USB_DT_OTHER_SPEED_CONFIG, i,
664 dev->buf, TBUF_SIZE);
665 if (!is_good_config (dev->buf, retval)) {
666 dev_dbg (&iface->dev,
667 "other speed config --> %d\n",
669 return (retval < 0) ? retval : -EDOM;
674 // FIXME fetch strings from at least the device descriptor
676 /* [9.4.5] get_status always works */
677 retval = usb_get_status (udev, USB_RECIP_DEVICE, 0, dev->buf);
679 dev_dbg (&iface->dev, "get dev status --> %d\n", retval);
680 return (retval < 0) ? retval : -EDOM;
683 // FIXME configuration.bmAttributes says if we could try to set/clear
684 // the device's remote wakeup feature ... if we can, test that here
686 retval = usb_get_status (udev, USB_RECIP_INTERFACE,
687 iface->altsetting [0].desc.bInterfaceNumber, dev->buf);
689 dev_dbg (&iface->dev, "get interface status --> %d\n", retval);
690 return (retval < 0) ? retval : -EDOM;
692 // FIXME get status for each endpoint in the interface
697 /*-------------------------------------------------------------------------*/
699 /* use ch9 requests to test whether:
700 * (a) queues work for control, keeping N subtests queued and
701 * active (auto-resubmit) for M loops through the queue.
702 * (b) protocol stalls (control-only) will autorecover.
703 * it's not like bulk/intr; no halt clearing.
704 * (c) short control reads are reported and handled.
705 * (d) queues are always processed in-order
710 struct usbtest_dev *dev;
711 struct completion complete;
716 struct usbtest_param *param;
720 #define NUM_SUBCASES 15 /* how many test subcases here? */
723 struct usb_ctrlrequest setup;
728 static void ctrl_complete (struct urb *urb, struct pt_regs *regs)
730 struct ctrl_ctx *ctx = urb->context;
731 struct usb_ctrlrequest *reqp;
732 struct subcase *subcase;
733 int status = urb->status;
735 reqp = (struct usb_ctrlrequest *)urb->setup_packet;
736 subcase = container_of (reqp, struct subcase, setup);
738 spin_lock (&ctx->lock);
742 /* queue must transfer and complete in fifo order, unless
743 * usb_unlink_urb() is used to unlink something not at the
744 * physical queue head (not tested).
746 if (subcase->number > 0) {
747 if ((subcase->number - ctx->last) != 1) {
748 dbg ("subcase %d completed out of order, last %d",
749 subcase->number, ctx->last);
751 ctx->last = subcase->number;
755 ctx->last = subcase->number;
757 /* succeed or fault in only one way? */
758 if (status == subcase->expected)
761 /* async unlink for cleanup? */
762 else if (status != -ECONNRESET) {
764 /* some faults are allowed, not required */
765 if (subcase->expected > 0 && (
766 ((urb->status == -subcase->expected /* happened */
767 || urb->status == 0)))) /* didn't */
769 /* sometimes more than one fault is allowed */
770 else if (subcase->number == 12 && status == -EPIPE)
773 dbg ("subtest %d error, status %d",
774 subcase->number, status);
777 /* unexpected status codes mean errors; ideally, in hardware */
780 if (ctx->status == 0) {
783 ctx->status = status;
784 info ("control queue %02x.%02x, err %d, %d left",
785 reqp->bRequestType, reqp->bRequest,
788 /* FIXME this "unlink everything" exit route should
789 * be a separate test case.
792 /* unlink whatever's still pending */
793 for (i = 1; i < ctx->param->sglen; i++) {
794 struct urb *u = ctx->urb [
795 (i + subcase->number) % ctx->param->sglen];
797 if (u == urb || !u->dev)
799 status = usb_unlink_urb (u);
806 dbg ("urb unlink --> %d", status);
809 status = ctx->status;
813 /* resubmit if we need to, else mark this as done */
814 if ((status == 0) && (ctx->pending < ctx->count)) {
815 if ((status = usb_submit_urb (urb, SLAB_ATOMIC)) != 0) {
816 dbg ("can't resubmit ctrl %02x.%02x, err %d",
817 reqp->bRequestType, reqp->bRequest, status);
824 /* signal completion when nothing's queued */
825 if (ctx->pending == 0)
826 complete (&ctx->complete);
827 spin_unlock (&ctx->lock);
831 test_ctrl_queue (struct usbtest_dev *dev, struct usbtest_param *param)
833 struct usb_device *udev = testdev_to_usbdev (dev);
835 struct ctrl_ctx context;
838 spin_lock_init (&context.lock);
840 init_completion (&context.complete);
841 context.count = param->sglen * param->iterations;
843 context.status = -ENOMEM;
844 context.param = param;
847 /* allocate and init the urbs we'll queue.
848 * as with bulk/intr sglists, sglen is the queue depth; it also
849 * controls which subtests run (more tests than sglen) or rerun.
851 urb = kmalloc (param->sglen * sizeof (struct urb *), SLAB_KERNEL);
854 memset (urb, 0, param->sglen * sizeof (struct urb *));
855 for (i = 0; i < param->sglen; i++) {
856 int pipe = usb_rcvctrlpipe (udev, 0);
859 struct usb_ctrlrequest req;
860 struct subcase *reqp;
863 /* requests here are mostly expected to succeed on any
864 * device, but some are chosen to trigger protocol stalls
867 memset (&req, 0, sizeof req);
868 req.bRequest = USB_REQ_GET_DESCRIPTOR;
869 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
871 switch (i % NUM_SUBCASES) {
872 case 0: // get device descriptor
873 req.wValue = cpu_to_le16 (USB_DT_DEVICE << 8);
874 len = sizeof (struct usb_device_descriptor);
876 case 1: // get first config descriptor (only)
877 req.wValue = cpu_to_le16 ((USB_DT_CONFIG << 8) | 0);
878 len = sizeof (struct usb_config_descriptor);
880 case 2: // get altsetting (OFTEN STALLS)
881 req.bRequest = USB_REQ_GET_INTERFACE;
882 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
883 // index = 0 means first interface
887 case 3: // get interface status
888 req.bRequest = USB_REQ_GET_STATUS;
889 req.bRequestType = USB_DIR_IN|USB_RECIP_INTERFACE;
893 case 4: // get device status
894 req.bRequest = USB_REQ_GET_STATUS;
895 req.bRequestType = USB_DIR_IN|USB_RECIP_DEVICE;
898 case 5: // get device qualifier (MAY STALL)
899 req.wValue = cpu_to_le16 (USB_DT_DEVICE_QUALIFIER << 8);
900 len = sizeof (struct usb_qualifier_descriptor);
901 if (udev->speed != USB_SPEED_HIGH)
904 case 6: // get first config descriptor, plus interface
905 req.wValue = cpu_to_le16 ((USB_DT_CONFIG << 8) | 0);
906 len = sizeof (struct usb_config_descriptor);
907 len += sizeof (struct usb_interface_descriptor);
909 case 7: // get interface descriptor (ALWAYS STALLS)
910 req.wValue = cpu_to_le16 (USB_DT_INTERFACE << 8);
912 len = sizeof (struct usb_interface_descriptor);
915 // NOTE: two consecutive stalls in the queue here.
916 // that tests fault recovery a bit more aggressively.
917 case 8: // clear endpoint halt (USUALLY STALLS)
918 req.bRequest = USB_REQ_CLEAR_FEATURE;
919 req.bRequestType = USB_RECIP_ENDPOINT;
920 // wValue 0 == ep halt
921 // wIndex 0 == ep0 (shouldn't halt!)
923 pipe = usb_sndctrlpipe (udev, 0);
926 case 9: // get endpoint status
927 req.bRequest = USB_REQ_GET_STATUS;
928 req.bRequestType = USB_DIR_IN|USB_RECIP_ENDPOINT;
932 case 10: // trigger short read (EREMOTEIO)
933 req.wValue = cpu_to_le16 ((USB_DT_CONFIG << 8) | 0);
935 expected = -EREMOTEIO;
937 // NOTE: two consecutive _different_ faults in the queue.
938 case 11: // get endpoint descriptor (ALWAYS STALLS)
939 req.wValue = cpu_to_le16 (USB_DT_ENDPOINT << 8);
941 len = sizeof (struct usb_interface_descriptor);
944 // NOTE: sometimes even a third fault in the queue!
945 case 12: // get string 0 descriptor (MAY STALL)
946 req.wValue = cpu_to_le16 (USB_DT_STRING << 8);
947 // string == 0, for language IDs
948 len = sizeof (struct usb_interface_descriptor);
949 // may succeed when > 4 languages
950 expected = EREMOTEIO; // or EPIPE, if no strings
952 case 13: // short read, resembling case 10
953 req.wValue = cpu_to_le16 ((USB_DT_CONFIG << 8) | 0);
954 // last data packet "should" be DATA1, not DATA0
955 len = 1024 - udev->descriptor.bMaxPacketSize0;
956 expected = -EREMOTEIO;
958 case 14: // short read; try to fill the last packet
959 req.wValue = cpu_to_le16 ((USB_DT_DEVICE << 8) | 0);
960 // device descriptor size == 18 bytes
961 len = udev->descriptor.bMaxPacketSize0;
963 case 8: len = 24; break;
964 case 16: len = 32; break;
966 expected = -EREMOTEIO;
969 err ("bogus number of ctrl queue testcases!");
970 context.status = -EINVAL;
973 req.wLength = cpu_to_le16 (len);
974 urb [i] = u = simple_alloc_urb (udev, pipe, len);
978 reqp = usb_buffer_alloc (udev, sizeof *reqp, SLAB_KERNEL,
983 reqp->number = i % NUM_SUBCASES;
984 reqp->expected = expected;
985 u->setup_packet = (char *) &reqp->setup;
987 u->context = &context;
988 u->complete = ctrl_complete;
993 spin_lock_irq (&context.lock);
994 for (i = 0; i < param->sglen; i++) {
995 context.status = usb_submit_urb (urb [i], SLAB_ATOMIC);
996 if (context.status != 0) {
997 dbg ("can't submit urb[%d], status %d",
999 context.count = context.pending;
1004 spin_unlock_irq (&context.lock);
1006 /* FIXME set timer and time out; provide a disconnect hook */
1008 /* wait for the last one to complete */
1009 if (context.pending > 0)
1010 wait_for_completion (&context.complete);
1013 for (i = 0; i < param->sglen; i++) {
1016 urb [i]->dev = udev;
1017 if (urb [i]->setup_packet)
1018 usb_buffer_free (udev, sizeof (struct usb_ctrlrequest),
1019 urb [i]->setup_packet,
1020 urb [i]->setup_dma);
1021 simple_free_urb (urb [i]);
1024 return context.status;
1029 /*-------------------------------------------------------------------------*/
1031 static void unlink1_callback (struct urb *urb, struct pt_regs *regs)
1033 int status = urb->status;
1035 // we "know" -EPIPE (stall) never happens
1037 status = usb_submit_urb (urb, SLAB_ATOMIC);
1039 urb->status = status;
1040 complete ((struct completion *) urb->context);
1044 static int unlink1 (struct usbtest_dev *dev, int pipe, int size, int async)
1047 struct completion completion;
1050 init_completion (&completion);
1051 urb = simple_alloc_urb (testdev_to_usbdev (dev), pipe, size);
1054 urb->context = &completion;
1055 urb->complete = unlink1_callback;
1057 /* keep the endpoint busy. there are lots of hc/hcd-internal
1058 * states, and testing should get to all of them over time.
1060 * FIXME want additional tests for when endpoint is STALLing
1061 * due to errors, or is just NAKing requests.
1063 if ((retval = usb_submit_urb (urb, SLAB_KERNEL)) != 0) {
1064 dev_dbg (&dev->intf->dev, "submit fail %d\n", retval);
1068 /* unlinking that should always work. variable delay tests more
1069 * hcd states and code paths, even with little other system load.
1071 msleep (jiffies % (2 * INTERRUPT_RATE));
1074 retval = usb_unlink_urb (urb);
1075 if (retval == -EBUSY || retval == -EIDRM) {
1076 /* we can't unlink urbs while they're completing.
1077 * or if they've completed, and we haven't resubmitted.
1078 * "normal" drivers would prevent resubmission, but
1079 * since we're testing unlink paths, we can't.
1081 dev_dbg (&dev->intf->dev, "unlink retry\n");
1086 if (!(retval == 0 || retval == -EINPROGRESS)) {
1087 dev_dbg (&dev->intf->dev, "unlink fail %d\n", retval);
1091 wait_for_completion (&completion);
1092 retval = urb->status;
1093 simple_free_urb (urb);
1096 return (retval == -ECONNRESET) ? 0 : retval - 1000;
1098 return (retval == -ENOENT || retval == -EPERM) ?
1102 static int unlink_simple (struct usbtest_dev *dev, int pipe, int len)
1106 /* test sync and async paths */
1107 retval = unlink1 (dev, pipe, len, 1);
1109 retval = unlink1 (dev, pipe, len, 0);
1113 /*-------------------------------------------------------------------------*/
1115 static int verify_not_halted (int ep, struct urb *urb)
1120 /* shouldn't look or act halted */
1121 retval = usb_get_status (urb->dev, USB_RECIP_ENDPOINT, ep, &status);
1123 dbg ("ep %02x couldn't get no-halt status, %d", ep, retval);
1127 dbg ("ep %02x bogus status: %04x != 0", ep, status);
1130 retval = simple_io (urb, 1, 0, 0, __FUNCTION__);
1136 static int verify_halted (int ep, struct urb *urb)
1141 /* should look and act halted */
1142 retval = usb_get_status (urb->dev, USB_RECIP_ENDPOINT, ep, &status);
1144 dbg ("ep %02x couldn't get halt status, %d", ep, retval);
1148 dbg ("ep %02x bogus status: %04x != 1", ep, status);
1151 retval = simple_io (urb, 1, 0, -EPIPE, __FUNCTION__);
1152 if (retval != -EPIPE)
1154 retval = simple_io (urb, 1, 0, -EPIPE, "verify_still_halted");
1155 if (retval != -EPIPE)
1160 static int test_halt (int ep, struct urb *urb)
1164 /* shouldn't look or act halted now */
1165 retval = verify_not_halted (ep, urb);
1169 /* set halt (protocol test only), verify it worked */
1170 retval = usb_control_msg (urb->dev, usb_sndctrlpipe (urb->dev, 0),
1171 USB_REQ_SET_FEATURE, USB_RECIP_ENDPOINT,
1172 USB_ENDPOINT_HALT, ep,
1173 NULL, 0, USB_CTRL_SET_TIMEOUT);
1175 dbg ("ep %02x couldn't set halt, %d", ep, retval);
1178 retval = verify_halted (ep, urb);
1182 /* clear halt (tests API + protocol), verify it worked */
1183 retval = usb_clear_halt (urb->dev, urb->pipe);
1185 dbg ("ep %02x couldn't clear halt, %d", ep, retval);
1188 retval = verify_not_halted (ep, urb);
1192 /* NOTE: could also verify SET_INTERFACE clear halts ... */
1197 static int halt_simple (struct usbtest_dev *dev)
1203 urb = simple_alloc_urb (testdev_to_usbdev (dev), 0, 512);
1208 ep = usb_pipeendpoint (dev->in_pipe) | USB_DIR_IN;
1209 urb->pipe = dev->in_pipe;
1210 retval = test_halt (ep, urb);
1215 if (dev->out_pipe) {
1216 ep = usb_pipeendpoint (dev->out_pipe);
1217 urb->pipe = dev->out_pipe;
1218 retval = test_halt (ep, urb);
1221 simple_free_urb (urb);
1225 /*-------------------------------------------------------------------------*/
1227 /* Control OUT tests use the vendor control requests from Intel's
1228 * USB 2.0 compliance test device: write a buffer, read it back.
1230 * Intel's spec only _requires_ that it work for one packet, which
1231 * is pretty weak. Some HCDs place limits here; most devices will
1232 * need to be able to handle more than one OUT data packet. We'll
1233 * try whatever we're told to try.
1235 static int ctrl_out (struct usbtest_dev *dev,
1236 unsigned count, unsigned length, unsigned vary)
1238 unsigned i, j, len, retval;
1241 struct usb_device *udev;
1243 if (length < 1 || length > 0xffff || vary >= length)
1246 buf = kmalloc(length, SLAB_KERNEL);
1250 udev = testdev_to_usbdev (dev);
1254 /* NOTE: hardware might well act differently if we pushed it
1255 * with lots back-to-back queued requests.
1257 for (i = 0; i < count; i++) {
1258 /* write patterned data */
1259 for (j = 0; j < len; j++)
1261 retval = usb_control_msg (udev, usb_sndctrlpipe (udev,0),
1262 0x5b, USB_DIR_OUT|USB_TYPE_VENDOR,
1263 0, 0, buf, len, USB_CTRL_SET_TIMEOUT);
1264 if (retval != len) {
1267 INFO(dev, "ctrl_out, wlen %d (expected %d)\n",
1274 /* read it back -- assuming nothing intervened!! */
1275 retval = usb_control_msg (udev, usb_rcvctrlpipe (udev,0),
1276 0x5c, USB_DIR_IN|USB_TYPE_VENDOR,
1277 0, 0, buf, len, USB_CTRL_GET_TIMEOUT);
1278 if (retval != len) {
1281 INFO(dev, "ctrl_out, rlen %d (expected %d)\n",
1288 /* fail if we can't verify */
1289 for (j = 0; j < len; j++) {
1290 if (buf [j] != (u8) (i + j)) {
1291 INFO (dev, "ctrl_out, byte %d is %d not %d\n",
1292 j, buf [j], (u8) i + j);
1304 /* [real world] the "zero bytes IN" case isn't really used.
1305 * hardware can easily trip up in this wierd case, since its
1306 * status stage is IN, not OUT like other ep0in transfers.
1309 len = realworld ? 1 : 0;
1313 INFO (dev, "ctrl_out %s failed, code %d, count %d\n",
1320 /*-------------------------------------------------------------------------*/
1322 /* ISO tests ... mimics common usage
1323 * - buffer length is split into N packets (mostly maxpacket sized)
1324 * - multi-buffers according to sglen
1327 struct iso_context {
1331 struct completion done;
1332 unsigned long errors;
1333 struct usbtest_dev *dev;
1336 static void iso_callback (struct urb *urb, struct pt_regs *regs)
1338 struct iso_context *ctx = urb->context;
1340 spin_lock(&ctx->lock);
1343 if (urb->error_count > 0)
1344 ctx->errors += urb->error_count;
1346 if (urb->status == 0 && ctx->count > (ctx->pending - 1)) {
1347 int status = usb_submit_urb (urb, GFP_ATOMIC);
1352 dev_dbg (&ctx->dev->intf->dev,
1353 "iso resubmit err %d\n",
1356 case -ENODEV: /* disconnected */
1360 simple_free_urb (urb);
1363 if (ctx->pending == 0) {
1365 dev_dbg (&ctx->dev->intf->dev,
1366 "iso test, %lu errors\n",
1368 complete (&ctx->done);
1371 spin_unlock(&ctx->lock);
1374 static struct urb *iso_alloc_urb (
1375 struct usb_device *udev,
1377 struct usb_endpoint_descriptor *desc,
1382 unsigned i, maxp, packets;
1384 if (bytes < 0 || !desc)
1386 maxp = 0x7ff & le16_to_cpu(desc->wMaxPacketSize);
1387 maxp *= 1 + (0x3 & (le16_to_cpu(desc->wMaxPacketSize) >> 11));
1388 packets = (bytes + maxp - 1) / maxp;
1390 urb = usb_alloc_urb (packets, SLAB_KERNEL);
1396 urb->number_of_packets = packets;
1397 urb->transfer_buffer_length = bytes;
1398 urb->transfer_buffer = usb_buffer_alloc (udev, bytes, SLAB_KERNEL,
1399 &urb->transfer_dma);
1400 if (!urb->transfer_buffer) {
1404 memset (urb->transfer_buffer, 0, bytes);
1405 for (i = 0; i < packets; i++) {
1406 /* here, only the last packet will be short */
1407 urb->iso_frame_desc[i].length = min ((unsigned) bytes, maxp);
1408 bytes -= urb->iso_frame_desc[i].length;
1410 urb->iso_frame_desc[i].offset = maxp * i;
1413 urb->complete = iso_callback;
1414 // urb->context = SET BY CALLER
1415 urb->interval = 1 << (desc->bInterval - 1);
1416 urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
1421 test_iso_queue (struct usbtest_dev *dev, struct usbtest_param *param,
1422 int pipe, struct usb_endpoint_descriptor *desc)
1424 struct iso_context context;
1425 struct usb_device *udev;
1427 unsigned long packets = 0;
1429 struct urb *urbs[10]; /* FIXME no limit */
1431 if (param->sglen > 10)
1434 context.count = param->iterations * param->sglen;
1435 context.pending = param->sglen;
1438 init_completion (&context.done);
1439 spin_lock_init (&context.lock);
1441 memset (urbs, 0, sizeof urbs);
1442 udev = testdev_to_usbdev (dev);
1443 dev_dbg (&dev->intf->dev,
1444 "... iso period %d %sframes, wMaxPacket %04x\n",
1445 1 << (desc->bInterval - 1),
1446 (udev->speed == USB_SPEED_HIGH) ? "micro" : "",
1447 le16_to_cpu(desc->wMaxPacketSize));
1449 for (i = 0; i < param->sglen; i++) {
1450 urbs [i] = iso_alloc_urb (udev, pipe, desc,
1456 packets += urbs[i]->number_of_packets;
1457 urbs [i]->context = &context;
1459 packets *= param->iterations;
1460 dev_dbg (&dev->intf->dev,
1461 "... total %lu msec (%lu packets)\n",
1462 (packets * (1 << (desc->bInterval - 1)))
1463 / ((udev->speed == USB_SPEED_HIGH) ? 8 : 1),
1466 spin_lock_irq (&context.lock);
1467 for (i = 0; i < param->sglen; i++) {
1468 status = usb_submit_urb (urbs [i], SLAB_ATOMIC);
1470 ERROR (dev, "submit iso[%d], error %d\n", i, status);
1472 spin_unlock_irq (&context.lock);
1476 simple_free_urb (urbs [i]);
1480 spin_unlock_irq (&context.lock);
1482 wait_for_completion (&context.done);
1486 for (i = 0; i < param->sglen; i++) {
1488 simple_free_urb (urbs [i]);
1493 /*-------------------------------------------------------------------------*/
1495 /* We only have this one interface to user space, through usbfs.
1496 * User mode code can scan usbfs to find N different devices (maybe on
1497 * different busses) to use when testing, and allocate one thread per
1498 * test. So discovery is simplified, and we have no device naming issues.
1500 * Don't use these only as stress/load tests. Use them along with with
1501 * other USB bus activity: plugging, unplugging, mousing, mp3 playback,
1502 * video capture, and so on. Run different tests at different times, in
1503 * different sequences. Nothing here should interact with other devices,
1504 * except indirectly by consuming USB bandwidth and CPU resources for test
1505 * threads and request completion. But the only way to know that for sure
1506 * is to test when HC queues are in use by many devices.
1510 usbtest_ioctl (struct usb_interface *intf, unsigned int code, void *buf)
1512 struct usbtest_dev *dev = usb_get_intfdata (intf);
1513 struct usb_device *udev = testdev_to_usbdev (dev);
1514 struct usbtest_param *param = buf;
1515 int retval = -EOPNOTSUPP;
1517 struct scatterlist *sg;
1518 struct usb_sg_request req;
1519 struct timeval start;
1522 // FIXME USBDEVFS_CONNECTINFO doesn't say how fast the device is.
1524 if (code != USBTEST_REQUEST)
1527 if (param->iterations <= 0 || param->length < 0
1528 || param->sglen < 0 || param->vary < 0)
1531 if (down_interruptible (&dev->sem))
1532 return -ERESTARTSYS;
1534 if (intf->dev.power.power_state.event != PM_EVENT_ON) {
1536 return -EHOSTUNREACH;
1539 /* some devices, like ez-usb default devices, need a non-default
1540 * altsetting to have any active endpoints. some tests change
1541 * altsettings; force a default so most tests don't need to check.
1543 if (dev->info->alt >= 0) {
1546 if (intf->altsetting->desc.bInterfaceNumber) {
1550 res = set_altsetting (dev, dev->info->alt);
1552 dev_err (&intf->dev,
1553 "set altsetting to %d failed, %d\n",
1554 dev->info->alt, res);
1561 * Just a bunch of test cases that every HCD is expected to handle.
1563 * Some may need specific firmware, though it'd be good to have
1564 * one firmware image to handle all the test cases.
1566 * FIXME add more tests! cancel requests, verify the data, control
1567 * queueing, concurrent read+write threads, and so on.
1569 do_gettimeofday (&start);
1570 switch (param->test_num) {
1573 dev_dbg (&intf->dev, "TEST 0: NOP\n");
1577 /* Simple non-queued bulk I/O tests */
1579 if (dev->out_pipe == 0)
1581 dev_dbg (&intf->dev,
1582 "TEST 1: write %d bytes %u times\n",
1583 param->length, param->iterations);
1584 urb = simple_alloc_urb (udev, dev->out_pipe, param->length);
1589 // FIRMWARE: bulk sink (maybe accepts short writes)
1590 retval = simple_io (urb, param->iterations, 0, 0, "test1");
1591 simple_free_urb (urb);
1594 if (dev->in_pipe == 0)
1596 dev_dbg (&intf->dev,
1597 "TEST 2: read %d bytes %u times\n",
1598 param->length, param->iterations);
1599 urb = simple_alloc_urb (udev, dev->in_pipe, param->length);
1604 // FIRMWARE: bulk source (maybe generates short writes)
1605 retval = simple_io (urb, param->iterations, 0, 0, "test2");
1606 simple_free_urb (urb);
1609 if (dev->out_pipe == 0 || param->vary == 0)
1611 dev_dbg (&intf->dev,
1612 "TEST 3: write/%d 0..%d bytes %u times\n",
1613 param->vary, param->length, param->iterations);
1614 urb = simple_alloc_urb (udev, dev->out_pipe, param->length);
1619 // FIRMWARE: bulk sink (maybe accepts short writes)
1620 retval = simple_io (urb, param->iterations, param->vary,
1622 simple_free_urb (urb);
1625 if (dev->in_pipe == 0 || param->vary == 0)
1627 dev_dbg (&intf->dev,
1628 "TEST 4: read/%d 0..%d bytes %u times\n",
1629 param->vary, param->length, param->iterations);
1630 urb = simple_alloc_urb (udev, dev->in_pipe, param->length);
1635 // FIRMWARE: bulk source (maybe generates short writes)
1636 retval = simple_io (urb, param->iterations, param->vary,
1638 simple_free_urb (urb);
1641 /* Queued bulk I/O tests */
1643 if (dev->out_pipe == 0 || param->sglen == 0)
1645 dev_dbg (&intf->dev,
1646 "TEST 5: write %d sglists %d entries of %d bytes\n",
1648 param->sglen, param->length);
1649 sg = alloc_sglist (param->sglen, param->length, 0);
1654 // FIRMWARE: bulk sink (maybe accepts short writes)
1655 retval = perform_sglist (udev, param->iterations, dev->out_pipe,
1656 &req, sg, param->sglen);
1657 free_sglist (sg, param->sglen);
1661 if (dev->in_pipe == 0 || param->sglen == 0)
1663 dev_dbg (&intf->dev,
1664 "TEST 6: read %d sglists %d entries of %d bytes\n",
1666 param->sglen, param->length);
1667 sg = alloc_sglist (param->sglen, param->length, 0);
1672 // FIRMWARE: bulk source (maybe generates short writes)
1673 retval = perform_sglist (udev, param->iterations, dev->in_pipe,
1674 &req, sg, param->sglen);
1675 free_sglist (sg, param->sglen);
1678 if (dev->out_pipe == 0 || param->sglen == 0 || param->vary == 0)
1680 dev_dbg (&intf->dev,
1681 "TEST 7: write/%d %d sglists %d entries 0..%d bytes\n",
1682 param->vary, param->iterations,
1683 param->sglen, param->length);
1684 sg = alloc_sglist (param->sglen, param->length, param->vary);
1689 // FIRMWARE: bulk sink (maybe accepts short writes)
1690 retval = perform_sglist (udev, param->iterations, dev->out_pipe,
1691 &req, sg, param->sglen);
1692 free_sglist (sg, param->sglen);
1695 if (dev->in_pipe == 0 || param->sglen == 0 || param->vary == 0)
1697 dev_dbg (&intf->dev,
1698 "TEST 8: read/%d %d sglists %d entries 0..%d bytes\n",
1699 param->vary, param->iterations,
1700 param->sglen, param->length);
1701 sg = alloc_sglist (param->sglen, param->length, param->vary);
1706 // FIRMWARE: bulk source (maybe generates short writes)
1707 retval = perform_sglist (udev, param->iterations, dev->in_pipe,
1708 &req, sg, param->sglen);
1709 free_sglist (sg, param->sglen);
1712 /* non-queued sanity tests for control (chapter 9 subset) */
1715 dev_dbg (&intf->dev,
1716 "TEST 9: ch9 (subset) control tests, %d times\n",
1718 for (i = param->iterations; retval == 0 && i--; /* NOP */)
1719 retval = ch9_postconfig (dev);
1721 dbg ("ch9 subset failed, iterations left %d", i);
1724 /* queued control messaging */
1726 if (param->sglen == 0)
1729 dev_dbg (&intf->dev,
1730 "TEST 10: queue %d control calls, %d times\n",
1733 retval = test_ctrl_queue (dev, param);
1736 /* simple non-queued unlinks (ring with one urb) */
1738 if (dev->in_pipe == 0 || !param->length)
1741 dev_dbg (&intf->dev, "TEST 11: unlink %d reads of %d\n",
1742 param->iterations, param->length);
1743 for (i = param->iterations; retval == 0 && i--; /* NOP */)
1744 retval = unlink_simple (dev, dev->in_pipe,
1747 dev_dbg (&intf->dev, "unlink reads failed %d, "
1748 "iterations left %d\n", retval, i);
1751 if (dev->out_pipe == 0 || !param->length)
1754 dev_dbg (&intf->dev, "TEST 12: unlink %d writes of %d\n",
1755 param->iterations, param->length);
1756 for (i = param->iterations; retval == 0 && i--; /* NOP */)
1757 retval = unlink_simple (dev, dev->out_pipe,
1760 dev_dbg (&intf->dev, "unlink writes failed %d, "
1761 "iterations left %d\n", retval, i);
1766 if (dev->out_pipe == 0 && dev->in_pipe == 0)
1769 dev_dbg (&intf->dev, "TEST 13: set/clear %d halts\n",
1771 for (i = param->iterations; retval == 0 && i--; /* NOP */)
1772 retval = halt_simple (dev);
1775 DBG (dev, "halts failed, iterations left %d\n", i);
1778 /* control write tests */
1780 if (!dev->info->ctrl_out)
1782 dev_dbg (&intf->dev, "TEST 14: %d ep0out, %d..%d vary %d\n",
1784 realworld ? 1 : 0, param->length,
1786 retval = ctrl_out (dev, param->iterations,
1787 param->length, param->vary);
1790 /* iso write tests */
1792 if (dev->out_iso_pipe == 0 || param->sglen == 0)
1794 dev_dbg (&intf->dev,
1795 "TEST 15: write %d iso, %d entries of %d bytes\n",
1797 param->sglen, param->length);
1798 // FIRMWARE: iso sink
1799 retval = test_iso_queue (dev, param,
1800 dev->out_iso_pipe, dev->iso_out);
1803 /* iso read tests */
1805 if (dev->in_iso_pipe == 0 || param->sglen == 0)
1807 dev_dbg (&intf->dev,
1808 "TEST 16: read %d iso, %d entries of %d bytes\n",
1810 param->sglen, param->length);
1811 // FIRMWARE: iso source
1812 retval = test_iso_queue (dev, param,
1813 dev->in_iso_pipe, dev->iso_in);
1816 // FIXME unlink from queue (ring with N urbs)
1818 // FIXME scatterlist cancel (needs helper thread)
1821 do_gettimeofday (¶m->duration);
1822 param->duration.tv_sec -= start.tv_sec;
1823 param->duration.tv_usec -= start.tv_usec;
1824 if (param->duration.tv_usec < 0) {
1825 param->duration.tv_usec += 1000 * 1000;
1826 param->duration.tv_sec -= 1;
1832 /*-------------------------------------------------------------------------*/
1834 static unsigned force_interrupt = 0;
1835 module_param (force_interrupt, uint, 0);
1836 MODULE_PARM_DESC (force_interrupt, "0 = test default; else interrupt");
1839 static unsigned short vendor;
1840 module_param(vendor, ushort, 0);
1841 MODULE_PARM_DESC (vendor, "vendor code (from usb-if)");
1843 static unsigned short product;
1844 module_param(product, ushort, 0);
1845 MODULE_PARM_DESC (product, "product code (from vendor)");
1849 usbtest_probe (struct usb_interface *intf, const struct usb_device_id *id)
1851 struct usb_device *udev;
1852 struct usbtest_dev *dev;
1853 struct usbtest_info *info;
1854 char *rtest, *wtest;
1855 char *irtest, *iwtest;
1857 udev = interface_to_usbdev (intf);
1860 /* specify devices by module parameters? */
1861 if (id->match_flags == 0) {
1862 /* vendor match required, product match optional */
1863 if (!vendor || le16_to_cpu(udev->descriptor.idVendor) != (u16)vendor)
1865 if (product && le16_to_cpu(udev->descriptor.idProduct) != (u16)product)
1867 dbg ("matched module params, vend=0x%04x prod=0x%04x",
1868 le16_to_cpu(udev->descriptor.idVendor),
1869 le16_to_cpu(udev->descriptor.idProduct));
1873 dev = kmalloc (sizeof *dev, SLAB_KERNEL);
1876 memset (dev, 0, sizeof *dev);
1877 info = (struct usbtest_info *) id->driver_info;
1879 init_MUTEX (&dev->sem);
1883 /* cacheline-aligned scratch for i/o */
1884 if ((dev->buf = kmalloc (TBUF_SIZE, SLAB_KERNEL)) == NULL) {
1889 /* NOTE this doesn't yet test the handful of difference that are
1890 * visible with high speed interrupts: bigger maxpacket (1K) and
1891 * "high bandwidth" modes (up to 3 packets/uframe).
1894 irtest = iwtest = "";
1895 if (force_interrupt || udev->speed == USB_SPEED_LOW) {
1897 dev->in_pipe = usb_rcvintpipe (udev, info->ep_in);
1901 dev->out_pipe = usb_sndintpipe (udev, info->ep_out);
1902 wtest = " intr-out";
1905 if (info->autoconf) {
1908 status = get_endpoints (dev, intf);
1910 dbg ("couldn't get endpoints, %d\n", status);
1913 /* may find bulk or ISO pipes */
1916 dev->in_pipe = usb_rcvbulkpipe (udev,
1919 dev->out_pipe = usb_sndbulkpipe (udev,
1925 wtest = " bulk-out";
1926 if (dev->in_iso_pipe)
1928 if (dev->out_iso_pipe)
1929 iwtest = " iso-out";
1932 usb_set_intfdata (intf, dev);
1933 dev_info (&intf->dev, "%s\n", info->name);
1934 dev_info (&intf->dev, "%s speed {control%s%s%s%s%s} tests%s\n",
1936 switch (udev->speed) {
1937 case USB_SPEED_LOW: tmp = "low"; break;
1938 case USB_SPEED_FULL: tmp = "full"; break;
1939 case USB_SPEED_HIGH: tmp = "high"; break;
1940 default: tmp = "unknown"; break;
1942 info->ctrl_out ? " in/out" : "",
1945 info->alt >= 0 ? " (+alt)" : "");
1949 static int usbtest_suspend (struct usb_interface *intf, pm_message_t message)
1951 struct usbtest_dev *dev = usb_get_intfdata (intf);
1954 intf->dev.power.power_state = PMSG_SUSPEND;
1959 static int usbtest_resume (struct usb_interface *intf)
1961 struct usbtest_dev *dev = usb_get_intfdata (intf);
1964 intf->dev.power.power_state = PMSG_ON;
1970 static void usbtest_disconnect (struct usb_interface *intf)
1972 struct usbtest_dev *dev = usb_get_intfdata (intf);
1976 usb_set_intfdata (intf, NULL);
1977 dev_dbg (&intf->dev, "disconnect\n");
1981 /* Basic testing only needs a device that can source or sink bulk traffic.
1982 * Any device can test control transfers (default with GENERIC binding).
1984 * Several entries work with the default EP0 implementation that's built
1985 * into EZ-USB chips. There's a default vendor ID which can be overridden
1986 * by (very) small config EEPROMS, but otherwise all these devices act
1987 * identically until firmware is loaded: only EP0 works. It turns out
1988 * to be easy to make other endpoints work, without modifying that EP0
1989 * behavior. For now, we expect that kind of firmware.
1992 /* an21xx or fx versions of ez-usb */
1993 static struct usbtest_info ez1_info = {
1994 .name = "EZ-USB device",
2000 /* fx2 version of ez-usb */
2001 static struct usbtest_info ez2_info = {
2002 .name = "FX2 device",
2008 /* ezusb family device with dedicated usb test firmware,
2010 static struct usbtest_info fw_info = {
2011 .name = "usb test device",
2015 .autoconf = 1, // iso and ctrl_out need autoconf
2017 .iso = 1, // iso_ep's are #8 in/out
2020 /* peripheral running Linux and 'zero.c' test firmware, or
2021 * its user-mode cousin. different versions of this use
2022 * different hardware with the same vendor/product codes.
2023 * host side MUST rely on the endpoint descriptors.
2025 static struct usbtest_info gz_info = {
2026 .name = "Linux gadget zero",
2032 static struct usbtest_info um_info = {
2033 .name = "Linux user mode test driver",
2038 static struct usbtest_info um2_info = {
2039 .name = "Linux user mode ISO test driver",
2046 /* this is a nice source of high speed bulk data;
2047 * uses an FX2, with firmware provided in the device
2049 static struct usbtest_info ibot2_info = {
2050 .name = "iBOT2 webcam",
2057 /* we can use any device to test control traffic */
2058 static struct usbtest_info generic_info = {
2059 .name = "Generic USB device",
2064 // FIXME remove this
2065 static struct usbtest_info hact_info = {
2073 static struct usb_device_id id_table [] = {
2075 { USB_DEVICE (0x0547, 0x1002),
2076 .driver_info = (unsigned long) &hact_info,
2079 /*-------------------------------------------------------------*/
2081 /* EZ-USB devices which download firmware to replace (or in our
2082 * case augment) the default device implementation.
2085 /* generic EZ-USB FX controller */
2086 { USB_DEVICE (0x0547, 0x2235),
2087 .driver_info = (unsigned long) &ez1_info,
2090 /* CY3671 development board with EZ-USB FX */
2091 { USB_DEVICE (0x0547, 0x0080),
2092 .driver_info = (unsigned long) &ez1_info,
2095 /* generic EZ-USB FX2 controller (or development board) */
2096 { USB_DEVICE (0x04b4, 0x8613),
2097 .driver_info = (unsigned long) &ez2_info,
2100 /* re-enumerated usb test device firmware */
2101 { USB_DEVICE (0xfff0, 0xfff0),
2102 .driver_info = (unsigned long) &fw_info,
2105 /* "Gadget Zero" firmware runs under Linux */
2106 { USB_DEVICE (0x0525, 0xa4a0),
2107 .driver_info = (unsigned long) &gz_info,
2110 /* so does a user-mode variant */
2111 { USB_DEVICE (0x0525, 0xa4a4),
2112 .driver_info = (unsigned long) &um_info,
2115 /* ... and a user-mode variant that talks iso */
2116 { USB_DEVICE (0x0525, 0xa4a3),
2117 .driver_info = (unsigned long) &um2_info,
2121 /* Keyspan 19qi uses an21xx (original EZ-USB) */
2122 // this does not coexist with the real Keyspan 19qi driver!
2123 { USB_DEVICE (0x06cd, 0x010b),
2124 .driver_info = (unsigned long) &ez1_info,
2128 /*-------------------------------------------------------------*/
2131 /* iBOT2 makes a nice source of high speed bulk-in data */
2132 // this does not coexist with a real iBOT2 driver!
2133 { USB_DEVICE (0x0b62, 0x0059),
2134 .driver_info = (unsigned long) &ibot2_info,
2138 /*-------------------------------------------------------------*/
2141 /* module params can specify devices to use for control tests */
2142 { .driver_info = (unsigned long) &generic_info, },
2145 /*-------------------------------------------------------------*/
2149 MODULE_DEVICE_TABLE (usb, id_table);
2151 static struct usb_driver usbtest_driver = {
2152 .owner = THIS_MODULE,
2154 .id_table = id_table,
2155 .probe = usbtest_probe,
2156 .ioctl = usbtest_ioctl,
2157 .disconnect = usbtest_disconnect,
2158 .suspend = usbtest_suspend,
2159 .resume = usbtest_resume,
2162 /*-------------------------------------------------------------------------*/
2164 static int __init usbtest_init (void)
2168 dbg ("params: vend=0x%04x prod=0x%04x", vendor, product);
2170 return usb_register (&usbtest_driver);
2172 module_init (usbtest_init);
2174 static void __exit usbtest_exit (void)
2176 usb_deregister (&usbtest_driver);
2178 module_exit (usbtest_exit);
2180 MODULE_DESCRIPTION ("USB Core/HCD Testing Driver");
2181 MODULE_LICENSE ("GPL");