1 #include <linux/kernel.h>
2 #include <linux/errno.h>
3 #include <linux/init.h>
4 #include <linux/slab.h>
6 #include <linux/module.h>
7 #include <linux/moduleparam.h>
8 #include <linux/scatterlist.h>
9 #include <linux/mutex.h>
10 #include <linux/timer.h>
11 #include <linux/usb.h>
13 #define SIMPLE_IO_TIMEOUT 10000 /* in milliseconds */
15 /*-------------------------------------------------------------------------*/
17 static int override_alt
= -1;
18 module_param_named(alt
, override_alt
, int, 0644);
19 MODULE_PARM_DESC(alt
, ">= 0 to override altsetting selection");
21 /*-------------------------------------------------------------------------*/
23 /* FIXME make these public somewhere; usbdevfs.h? */
24 struct usbtest_param
{
26 unsigned test_num
; /* 0..(TEST_CASES-1) */
33 struct timeval duration
;
35 #define USBTEST_REQUEST _IOWR('U', 100, struct usbtest_param)
37 /*-------------------------------------------------------------------------*/
39 #define GENERIC /* let probe() bind using module params */
41 /* Some devices that can be used for testing will have "real" drivers.
42 * Entries for those need to be enabled here by hand, after disabling
45 //#define IBOT2 /* grab iBOT2 webcams */
46 //#define KEYSPAN_19Qi /* grab un-renumerated serial adapter */
48 /*-------------------------------------------------------------------------*/
52 u8 ep_in
; /* bulk/intr source */
53 u8 ep_out
; /* bulk/intr sink */
56 unsigned iso
:1; /* try iso in/out */
60 /* this is accessed only through usbfs ioctl calls.
61 * one ioctl to issue a test ... one lock per device.
62 * tests create other threads if they need them.
63 * urbs and buffers are allocated dynamically,
64 * and data generated deterministically.
67 struct usb_interface
*intf
;
68 struct usbtest_info
*info
;
73 struct usb_endpoint_descriptor
*iso_in
, *iso_out
;
80 static struct usb_device
*testdev_to_usbdev(struct usbtest_dev
*test
)
82 return interface_to_usbdev(test
->intf
);
85 /* set up all urbs so they can be used with either bulk or interrupt */
86 #define INTERRUPT_RATE 1 /* msec/transfer */
88 #define ERROR(tdev, fmt, args...) \
89 dev_err(&(tdev)->intf->dev , fmt , ## args)
90 #define WARNING(tdev, fmt, args...) \
91 dev_warn(&(tdev)->intf->dev , fmt , ## args)
93 #define GUARD_BYTE 0xA5
95 /*-------------------------------------------------------------------------*/
98 get_endpoints(struct usbtest_dev
*dev
, struct usb_interface
*intf
)
101 struct usb_host_interface
*alt
;
102 struct usb_host_endpoint
*in
, *out
;
103 struct usb_host_endpoint
*iso_in
, *iso_out
;
104 struct usb_device
*udev
;
106 for (tmp
= 0; tmp
< intf
->num_altsetting
; tmp
++) {
110 iso_in
= iso_out
= NULL
;
111 alt
= intf
->altsetting
+ tmp
;
113 if (override_alt
>= 0 &&
114 override_alt
!= alt
->desc
.bAlternateSetting
)
117 /* take the first altsetting with in-bulk + out-bulk;
118 * ignore other endpoints and altsettings.
120 for (ep
= 0; ep
< alt
->desc
.bNumEndpoints
; ep
++) {
121 struct usb_host_endpoint
*e
;
123 e
= alt
->endpoint
+ ep
;
124 switch (e
->desc
.bmAttributes
) {
125 case USB_ENDPOINT_XFER_BULK
:
127 case USB_ENDPOINT_XFER_ISOC
:
134 if (usb_endpoint_dir_in(&e
->desc
)) {
143 if (usb_endpoint_dir_in(&e
->desc
)) {
151 if ((in
&& out
) || iso_in
|| iso_out
)
157 udev
= testdev_to_usbdev(dev
);
158 dev
->info
->alt
= alt
->desc
.bAlternateSetting
;
159 if (alt
->desc
.bAlternateSetting
!= 0) {
160 tmp
= usb_set_interface(udev
,
161 alt
->desc
.bInterfaceNumber
,
162 alt
->desc
.bAlternateSetting
);
168 dev
->in_pipe
= usb_rcvbulkpipe(udev
,
169 in
->desc
.bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
);
170 dev
->out_pipe
= usb_sndbulkpipe(udev
,
171 out
->desc
.bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
);
174 dev
->iso_in
= &iso_in
->desc
;
175 dev
->in_iso_pipe
= usb_rcvisocpipe(udev
,
176 iso_in
->desc
.bEndpointAddress
177 & USB_ENDPOINT_NUMBER_MASK
);
181 dev
->iso_out
= &iso_out
->desc
;
182 dev
->out_iso_pipe
= usb_sndisocpipe(udev
,
183 iso_out
->desc
.bEndpointAddress
184 & USB_ENDPOINT_NUMBER_MASK
);
189 /*-------------------------------------------------------------------------*/
191 /* Support for testing basic non-queued I/O streams.
193 * These just package urbs as requests that can be easily canceled.
194 * Each urb's data buffer is dynamically allocated; callers can fill
195 * them with non-zero test data (or test for it) when appropriate.
198 static void simple_callback(struct urb
*urb
)
200 complete(urb
->context
);
203 static struct urb
*usbtest_alloc_urb(
204 struct usb_device
*udev
,
207 unsigned transfer_flags
,
212 urb
= usb_alloc_urb(0, GFP_KERNEL
);
215 usb_fill_bulk_urb(urb
, udev
, pipe
, NULL
, bytes
, simple_callback
, NULL
);
216 urb
->interval
= (udev
->speed
== USB_SPEED_HIGH
)
217 ? (INTERRUPT_RATE
<< 3)
219 urb
->transfer_flags
= transfer_flags
;
220 if (usb_pipein(pipe
))
221 urb
->transfer_flags
|= URB_SHORT_NOT_OK
;
223 if (urb
->transfer_flags
& URB_NO_TRANSFER_DMA_MAP
)
224 urb
->transfer_buffer
= usb_alloc_coherent(udev
, bytes
+ offset
,
225 GFP_KERNEL
, &urb
->transfer_dma
);
227 urb
->transfer_buffer
= kmalloc(bytes
+ offset
, GFP_KERNEL
);
229 if (!urb
->transfer_buffer
) {
234 /* To test unaligned transfers add an offset and fill the
235 unused memory with a guard value */
237 memset(urb
->transfer_buffer
, GUARD_BYTE
, offset
);
238 urb
->transfer_buffer
+= offset
;
239 if (urb
->transfer_flags
& URB_NO_TRANSFER_DMA_MAP
)
240 urb
->transfer_dma
+= offset
;
243 /* For inbound transfers use guard byte so that test fails if
244 data not correctly copied */
245 memset(urb
->transfer_buffer
,
246 usb_pipein(urb
->pipe
) ? GUARD_BYTE
: 0,
251 static struct urb
*simple_alloc_urb(
252 struct usb_device
*udev
,
256 return usbtest_alloc_urb(udev
, pipe
, bytes
, URB_NO_TRANSFER_DMA_MAP
, 0);
259 static unsigned pattern
;
260 static unsigned mod_pattern
;
261 module_param_named(pattern
, mod_pattern
, uint
, S_IRUGO
| S_IWUSR
);
262 MODULE_PARM_DESC(mod_pattern
, "i/o pattern (0 == zeroes)");
264 static inline void simple_fill_buf(struct urb
*urb
)
267 u8
*buf
= urb
->transfer_buffer
;
268 unsigned len
= urb
->transfer_buffer_length
;
277 for (i
= 0; i
< len
; i
++)
278 *buf
++ = (u8
) (i
% 63);
283 static inline unsigned long buffer_offset(void *buf
)
285 return (unsigned long)buf
& (ARCH_KMALLOC_MINALIGN
- 1);
288 static int check_guard_bytes(struct usbtest_dev
*tdev
, struct urb
*urb
)
290 u8
*buf
= urb
->transfer_buffer
;
291 u8
*guard
= buf
- buffer_offset(buf
);
294 for (i
= 0; guard
< buf
; i
++, guard
++) {
295 if (*guard
!= GUARD_BYTE
) {
296 ERROR(tdev
, "guard byte[%d] %d (not %d)\n",
297 i
, *guard
, GUARD_BYTE
);
304 static int simple_check_buf(struct usbtest_dev
*tdev
, struct urb
*urb
)
308 u8
*buf
= urb
->transfer_buffer
;
309 unsigned len
= urb
->actual_length
;
311 int ret
= check_guard_bytes(tdev
, urb
);
315 for (i
= 0; i
< len
; i
++, buf
++) {
317 /* all-zeroes has no synchronization issues */
321 /* mod63 stays in sync with short-terminated transfers,
322 * or otherwise when host and gadget agree on how large
323 * each usb transfer request should be. resync is done
324 * with set_interface or set_config.
329 /* always fail unsupported patterns */
334 if (*buf
== expected
)
336 ERROR(tdev
, "buf[%d] = %d (not %d)\n", i
, *buf
, expected
);
342 static void simple_free_urb(struct urb
*urb
)
344 unsigned long offset
= buffer_offset(urb
->transfer_buffer
);
346 if (urb
->transfer_flags
& URB_NO_TRANSFER_DMA_MAP
)
349 urb
->transfer_buffer_length
+ offset
,
350 urb
->transfer_buffer
- offset
,
351 urb
->transfer_dma
- offset
);
353 kfree(urb
->transfer_buffer
- offset
);
357 static int simple_io(
358 struct usbtest_dev
*tdev
,
366 struct usb_device
*udev
= urb
->dev
;
367 int max
= urb
->transfer_buffer_length
;
368 struct completion completion
;
370 unsigned long expire
;
372 urb
->context
= &completion
;
373 while (retval
== 0 && iterations
-- > 0) {
374 init_completion(&completion
);
375 if (usb_pipeout(urb
->pipe
)) {
376 simple_fill_buf(urb
);
377 urb
->transfer_flags
|= URB_ZERO_PACKET
;
379 retval
= usb_submit_urb(urb
, GFP_KERNEL
);
383 expire
= msecs_to_jiffies(SIMPLE_IO_TIMEOUT
);
384 if (!wait_for_completion_timeout(&completion
, expire
)) {
386 retval
= (urb
->status
== -ENOENT
?
387 -ETIMEDOUT
: urb
->status
);
389 retval
= urb
->status
;
393 if (retval
== 0 && usb_pipein(urb
->pipe
))
394 retval
= simple_check_buf(tdev
, urb
);
397 int len
= urb
->transfer_buffer_length
;
402 len
= (vary
< max
) ? vary
: max
;
403 urb
->transfer_buffer_length
= len
;
406 /* FIXME if endpoint halted, clear halt (and log) */
408 urb
->transfer_buffer_length
= max
;
410 if (expected
!= retval
)
412 "%s failed, iterations left %d, status %d (not %d)\n",
413 label
, iterations
, retval
, expected
);
418 /*-------------------------------------------------------------------------*/
420 /* We use scatterlist primitives to test queued I/O.
421 * Yes, this also tests the scatterlist primitives.
424 static void free_sglist(struct scatterlist
*sg
, int nents
)
430 for (i
= 0; i
< nents
; i
++) {
431 if (!sg_page(&sg
[i
]))
433 kfree(sg_virt(&sg
[i
]));
438 static struct scatterlist
*
439 alloc_sglist(int nents
, int max
, int vary
)
441 struct scatterlist
*sg
;
448 sg
= kmalloc_array(nents
, sizeof *sg
, GFP_KERNEL
);
451 sg_init_table(sg
, nents
);
453 for (i
= 0; i
< nents
; i
++) {
457 buf
= kzalloc(size
, GFP_KERNEL
);
463 /* kmalloc pages are always physically contiguous! */
464 sg_set_buf(&sg
[i
], buf
, size
);
471 for (j
= 0; j
< size
; j
++)
472 *buf
++ = (u8
) (j
% 63);
480 size
= (vary
< max
) ? vary
: max
;
487 static void sg_timeout(unsigned long _req
)
489 struct usb_sg_request
*req
= (struct usb_sg_request
*) _req
;
491 req
->status
= -ETIMEDOUT
;
495 static int perform_sglist(
496 struct usbtest_dev
*tdev
,
499 struct usb_sg_request
*req
,
500 struct scatterlist
*sg
,
504 struct usb_device
*udev
= testdev_to_usbdev(tdev
);
506 struct timer_list sg_timer
;
508 setup_timer_on_stack(&sg_timer
, sg_timeout
, (unsigned long) req
);
510 while (retval
== 0 && iterations
-- > 0) {
511 retval
= usb_sg_init(req
, udev
, pipe
,
512 (udev
->speed
== USB_SPEED_HIGH
)
513 ? (INTERRUPT_RATE
<< 3)
515 sg
, nents
, 0, GFP_KERNEL
);
519 mod_timer(&sg_timer
, jiffies
+
520 msecs_to_jiffies(SIMPLE_IO_TIMEOUT
));
522 del_timer_sync(&sg_timer
);
523 retval
= req
->status
;
525 /* FIXME check resulting data pattern */
527 /* FIXME if endpoint halted, clear halt (and log) */
530 /* FIXME for unlink or fault handling tests, don't report
531 * failure if retval is as we expected ...
534 ERROR(tdev
, "perform_sglist failed, "
535 "iterations left %d, status %d\n",
541 /*-------------------------------------------------------------------------*/
543 /* unqueued control message testing
545 * there's a nice set of device functional requirements in chapter 9 of the
546 * usb 2.0 spec, which we can apply to ANY device, even ones that don't use
547 * special test firmware.
549 * we know the device is configured (or suspended) by the time it's visible
550 * through usbfs. we can't change that, so we won't test enumeration (which
551 * worked 'well enough' to get here, this time), power management (ditto),
552 * or remote wakeup (which needs human interaction).
555 static unsigned realworld
= 1;
556 module_param(realworld
, uint
, 0);
557 MODULE_PARM_DESC(realworld
, "clear to demand stricter spec compliance");
559 static int get_altsetting(struct usbtest_dev
*dev
)
561 struct usb_interface
*iface
= dev
->intf
;
562 struct usb_device
*udev
= interface_to_usbdev(iface
);
565 retval
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0),
566 USB_REQ_GET_INTERFACE
, USB_DIR_IN
|USB_RECIP_INTERFACE
,
567 0, iface
->altsetting
[0].desc
.bInterfaceNumber
,
568 dev
->buf
, 1, USB_CTRL_GET_TIMEOUT
);
580 static int set_altsetting(struct usbtest_dev
*dev
, int alternate
)
582 struct usb_interface
*iface
= dev
->intf
;
583 struct usb_device
*udev
;
585 if (alternate
< 0 || alternate
>= 256)
588 udev
= interface_to_usbdev(iface
);
589 return usb_set_interface(udev
,
590 iface
->altsetting
[0].desc
.bInterfaceNumber
,
594 static int is_good_config(struct usbtest_dev
*tdev
, int len
)
596 struct usb_config_descriptor
*config
;
598 if (len
< sizeof *config
)
600 config
= (struct usb_config_descriptor
*) tdev
->buf
;
602 switch (config
->bDescriptorType
) {
604 case USB_DT_OTHER_SPEED_CONFIG
:
605 if (config
->bLength
!= 9) {
606 ERROR(tdev
, "bogus config descriptor length\n");
609 /* this bit 'must be 1' but often isn't */
610 if (!realworld
&& !(config
->bmAttributes
& 0x80)) {
611 ERROR(tdev
, "high bit of config attributes not set\n");
614 if (config
->bmAttributes
& 0x1f) { /* reserved == 0 */
615 ERROR(tdev
, "reserved config bits set\n");
623 if (le16_to_cpu(config
->wTotalLength
) == len
) /* read it all */
625 if (le16_to_cpu(config
->wTotalLength
) >= TBUF_SIZE
) /* max partial read */
627 ERROR(tdev
, "bogus config descriptor read size\n");
631 /* sanity test for standard requests working with usb_control_mesg() and some
632 * of the utility functions which use it.
634 * this doesn't test how endpoint halts behave or data toggles get set, since
635 * we won't do I/O to bulk/interrupt endpoints here (which is how to change
636 * halt or toggle). toggle testing is impractical without support from hcds.
638 * this avoids failing devices linux would normally work with, by not testing
639 * config/altsetting operations for devices that only support their defaults.
640 * such devices rarely support those needless operations.
642 * NOTE that since this is a sanity test, it's not examining boundary cases
643 * to see if usbcore, hcd, and device all behave right. such testing would
644 * involve varied read sizes and other operation sequences.
646 static int ch9_postconfig(struct usbtest_dev
*dev
)
648 struct usb_interface
*iface
= dev
->intf
;
649 struct usb_device
*udev
= interface_to_usbdev(iface
);
652 /* [9.2.3] if there's more than one altsetting, we need to be able to
653 * set and get each one. mostly trusts the descriptors from usbcore.
655 for (i
= 0; i
< iface
->num_altsetting
; i
++) {
657 /* 9.2.3 constrains the range here */
658 alt
= iface
->altsetting
[i
].desc
.bAlternateSetting
;
659 if (alt
< 0 || alt
>= iface
->num_altsetting
) {
661 "invalid alt [%d].bAltSetting = %d\n",
665 /* [real world] get/set unimplemented if there's only one */
666 if (realworld
&& iface
->num_altsetting
== 1)
669 /* [9.4.10] set_interface */
670 retval
= set_altsetting(dev
, alt
);
672 dev_err(&iface
->dev
, "can't set_interface = %d, %d\n",
677 /* [9.4.4] get_interface always works */
678 retval
= get_altsetting(dev
);
680 dev_err(&iface
->dev
, "get alt should be %d, was %d\n",
682 return (retval
< 0) ? retval
: -EDOM
;
687 /* [real world] get_config unimplemented if there's only one */
688 if (!realworld
|| udev
->descriptor
.bNumConfigurations
!= 1) {
689 int expected
= udev
->actconfig
->desc
.bConfigurationValue
;
691 /* [9.4.2] get_configuration always works
692 * ... although some cheap devices (like one TI Hub I've got)
693 * won't return config descriptors except before set_config.
695 retval
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0),
696 USB_REQ_GET_CONFIGURATION
,
697 USB_DIR_IN
| USB_RECIP_DEVICE
,
698 0, 0, dev
->buf
, 1, USB_CTRL_GET_TIMEOUT
);
699 if (retval
!= 1 || dev
->buf
[0] != expected
) {
700 dev_err(&iface
->dev
, "get config --> %d %d (1 %d)\n",
701 retval
, dev
->buf
[0], expected
);
702 return (retval
< 0) ? retval
: -EDOM
;
706 /* there's always [9.4.3] a device descriptor [9.6.1] */
707 retval
= usb_get_descriptor(udev
, USB_DT_DEVICE
, 0,
708 dev
->buf
, sizeof udev
->descriptor
);
709 if (retval
!= sizeof udev
->descriptor
) {
710 dev_err(&iface
->dev
, "dev descriptor --> %d\n", retval
);
711 return (retval
< 0) ? retval
: -EDOM
;
714 /* there's always [9.4.3] at least one config descriptor [9.6.3] */
715 for (i
= 0; i
< udev
->descriptor
.bNumConfigurations
; i
++) {
716 retval
= usb_get_descriptor(udev
, USB_DT_CONFIG
, i
,
717 dev
->buf
, TBUF_SIZE
);
718 if (!is_good_config(dev
, retval
)) {
720 "config [%d] descriptor --> %d\n",
722 return (retval
< 0) ? retval
: -EDOM
;
725 /* FIXME cross-checking udev->config[i] to make sure usbcore
726 * parsed it right (etc) would be good testing paranoia
730 /* and sometimes [9.2.6.6] speed dependent descriptors */
731 if (le16_to_cpu(udev
->descriptor
.bcdUSB
) == 0x0200) {
732 struct usb_qualifier_descriptor
*d
= NULL
;
734 /* device qualifier [9.6.2] */
735 retval
= usb_get_descriptor(udev
,
736 USB_DT_DEVICE_QUALIFIER
, 0, dev
->buf
,
737 sizeof(struct usb_qualifier_descriptor
));
738 if (retval
== -EPIPE
) {
739 if (udev
->speed
== USB_SPEED_HIGH
) {
741 "hs dev qualifier --> %d\n",
743 return (retval
< 0) ? retval
: -EDOM
;
745 /* usb2.0 but not high-speed capable; fine */
746 } else if (retval
!= sizeof(struct usb_qualifier_descriptor
)) {
747 dev_err(&iface
->dev
, "dev qualifier --> %d\n", retval
);
748 return (retval
< 0) ? retval
: -EDOM
;
750 d
= (struct usb_qualifier_descriptor
*) dev
->buf
;
752 /* might not have [9.6.2] any other-speed configs [9.6.4] */
754 unsigned max
= d
->bNumConfigurations
;
755 for (i
= 0; i
< max
; i
++) {
756 retval
= usb_get_descriptor(udev
,
757 USB_DT_OTHER_SPEED_CONFIG
, i
,
758 dev
->buf
, TBUF_SIZE
);
759 if (!is_good_config(dev
, retval
)) {
761 "other speed config --> %d\n",
763 return (retval
< 0) ? retval
: -EDOM
;
768 /* FIXME fetch strings from at least the device descriptor */
770 /* [9.4.5] get_status always works */
771 retval
= usb_get_status(udev
, USB_RECIP_DEVICE
, 0, dev
->buf
);
773 dev_err(&iface
->dev
, "get dev status --> %d\n", retval
);
777 /* FIXME configuration.bmAttributes says if we could try to set/clear
778 * the device's remote wakeup feature ... if we can, test that here
781 retval
= usb_get_status(udev
, USB_RECIP_INTERFACE
,
782 iface
->altsetting
[0].desc
.bInterfaceNumber
, dev
->buf
);
784 dev_err(&iface
->dev
, "get interface status --> %d\n", retval
);
787 /* FIXME get status for each endpoint in the interface */
792 /*-------------------------------------------------------------------------*/
794 /* use ch9 requests to test whether:
795 * (a) queues work for control, keeping N subtests queued and
796 * active (auto-resubmit) for M loops through the queue.
797 * (b) protocol stalls (control-only) will autorecover.
798 * it's not like bulk/intr; no halt clearing.
799 * (c) short control reads are reported and handled.
800 * (d) queues are always processed in-order
805 struct usbtest_dev
*dev
;
806 struct completion complete
;
811 struct usbtest_param
*param
;
815 #define NUM_SUBCASES 15 /* how many test subcases here? */
818 struct usb_ctrlrequest setup
;
823 static void ctrl_complete(struct urb
*urb
)
825 struct ctrl_ctx
*ctx
= urb
->context
;
826 struct usb_ctrlrequest
*reqp
;
827 struct subcase
*subcase
;
828 int status
= urb
->status
;
830 reqp
= (struct usb_ctrlrequest
*)urb
->setup_packet
;
831 subcase
= container_of(reqp
, struct subcase
, setup
);
833 spin_lock(&ctx
->lock
);
837 /* queue must transfer and complete in fifo order, unless
838 * usb_unlink_urb() is used to unlink something not at the
839 * physical queue head (not tested).
841 if (subcase
->number
> 0) {
842 if ((subcase
->number
- ctx
->last
) != 1) {
844 "subcase %d completed out of order, last %d\n",
845 subcase
->number
, ctx
->last
);
847 ctx
->last
= subcase
->number
;
851 ctx
->last
= subcase
->number
;
853 /* succeed or fault in only one way? */
854 if (status
== subcase
->expected
)
857 /* async unlink for cleanup? */
858 else if (status
!= -ECONNRESET
) {
860 /* some faults are allowed, not required */
861 if (subcase
->expected
> 0 && (
862 ((status
== -subcase
->expected
/* happened */
863 || status
== 0)))) /* didn't */
865 /* sometimes more than one fault is allowed */
866 else if (subcase
->number
== 12 && status
== -EPIPE
)
869 ERROR(ctx
->dev
, "subtest %d error, status %d\n",
870 subcase
->number
, status
);
873 /* unexpected status codes mean errors; ideally, in hardware */
876 if (ctx
->status
== 0) {
879 ctx
->status
= status
;
880 ERROR(ctx
->dev
, "control queue %02x.%02x, err %d, "
881 "%d left, subcase %d, len %d/%d\n",
882 reqp
->bRequestType
, reqp
->bRequest
,
883 status
, ctx
->count
, subcase
->number
,
885 urb
->transfer_buffer_length
);
887 /* FIXME this "unlink everything" exit route should
888 * be a separate test case.
891 /* unlink whatever's still pending */
892 for (i
= 1; i
< ctx
->param
->sglen
; i
++) {
893 struct urb
*u
= ctx
->urb
[
894 (i
+ subcase
->number
)
895 % ctx
->param
->sglen
];
897 if (u
== urb
|| !u
->dev
)
899 spin_unlock(&ctx
->lock
);
900 status
= usb_unlink_urb(u
);
901 spin_lock(&ctx
->lock
);
908 ERROR(ctx
->dev
, "urb unlink --> %d\n",
912 status
= ctx
->status
;
916 /* resubmit if we need to, else mark this as done */
917 if ((status
== 0) && (ctx
->pending
< ctx
->count
)) {
918 status
= usb_submit_urb(urb
, GFP_ATOMIC
);
921 "can't resubmit ctrl %02x.%02x, err %d\n",
922 reqp
->bRequestType
, reqp
->bRequest
, status
);
929 /* signal completion when nothing's queued */
930 if (ctx
->pending
== 0)
931 complete(&ctx
->complete
);
932 spin_unlock(&ctx
->lock
);
936 test_ctrl_queue(struct usbtest_dev
*dev
, struct usbtest_param
*param
)
938 struct usb_device
*udev
= testdev_to_usbdev(dev
);
940 struct ctrl_ctx context
;
943 if (param
->sglen
== 0 || param
->iterations
> UINT_MAX
/ param
->sglen
)
946 spin_lock_init(&context
.lock
);
948 init_completion(&context
.complete
);
949 context
.count
= param
->sglen
* param
->iterations
;
951 context
.status
= -ENOMEM
;
952 context
.param
= param
;
955 /* allocate and init the urbs we'll queue.
956 * as with bulk/intr sglists, sglen is the queue depth; it also
957 * controls which subtests run (more tests than sglen) or rerun.
959 urb
= kcalloc(param
->sglen
, sizeof(struct urb
*), GFP_KERNEL
);
962 for (i
= 0; i
< param
->sglen
; i
++) {
963 int pipe
= usb_rcvctrlpipe(udev
, 0);
966 struct usb_ctrlrequest req
;
967 struct subcase
*reqp
;
969 /* sign of this variable means:
970 * -: tested code must return this (negative) error code
971 * +: tested code may return this (negative too) error code
975 /* requests here are mostly expected to succeed on any
976 * device, but some are chosen to trigger protocol stalls
979 memset(&req
, 0, sizeof req
);
980 req
.bRequest
= USB_REQ_GET_DESCRIPTOR
;
981 req
.bRequestType
= USB_DIR_IN
|USB_RECIP_DEVICE
;
983 switch (i
% NUM_SUBCASES
) {
984 case 0: /* get device descriptor */
985 req
.wValue
= cpu_to_le16(USB_DT_DEVICE
<< 8);
986 len
= sizeof(struct usb_device_descriptor
);
988 case 1: /* get first config descriptor (only) */
989 req
.wValue
= cpu_to_le16((USB_DT_CONFIG
<< 8) | 0);
990 len
= sizeof(struct usb_config_descriptor
);
992 case 2: /* get altsetting (OFTEN STALLS) */
993 req
.bRequest
= USB_REQ_GET_INTERFACE
;
994 req
.bRequestType
= USB_DIR_IN
|USB_RECIP_INTERFACE
;
995 /* index = 0 means first interface */
999 case 3: /* get interface status */
1000 req
.bRequest
= USB_REQ_GET_STATUS
;
1001 req
.bRequestType
= USB_DIR_IN
|USB_RECIP_INTERFACE
;
1005 case 4: /* get device status */
1006 req
.bRequest
= USB_REQ_GET_STATUS
;
1007 req
.bRequestType
= USB_DIR_IN
|USB_RECIP_DEVICE
;
1010 case 5: /* get device qualifier (MAY STALL) */
1011 req
.wValue
= cpu_to_le16 (USB_DT_DEVICE_QUALIFIER
<< 8);
1012 len
= sizeof(struct usb_qualifier_descriptor
);
1013 if (udev
->speed
!= USB_SPEED_HIGH
)
1016 case 6: /* get first config descriptor, plus interface */
1017 req
.wValue
= cpu_to_le16((USB_DT_CONFIG
<< 8) | 0);
1018 len
= sizeof(struct usb_config_descriptor
);
1019 len
+= sizeof(struct usb_interface_descriptor
);
1021 case 7: /* get interface descriptor (ALWAYS STALLS) */
1022 req
.wValue
= cpu_to_le16 (USB_DT_INTERFACE
<< 8);
1023 /* interface == 0 */
1024 len
= sizeof(struct usb_interface_descriptor
);
1027 /* NOTE: two consecutive stalls in the queue here.
1028 * that tests fault recovery a bit more aggressively. */
1029 case 8: /* clear endpoint halt (MAY STALL) */
1030 req
.bRequest
= USB_REQ_CLEAR_FEATURE
;
1031 req
.bRequestType
= USB_RECIP_ENDPOINT
;
1032 /* wValue 0 == ep halt */
1033 /* wIndex 0 == ep0 (shouldn't halt!) */
1035 pipe
= usb_sndctrlpipe(udev
, 0);
1038 case 9: /* get endpoint status */
1039 req
.bRequest
= USB_REQ_GET_STATUS
;
1040 req
.bRequestType
= USB_DIR_IN
|USB_RECIP_ENDPOINT
;
1044 case 10: /* trigger short read (EREMOTEIO) */
1045 req
.wValue
= cpu_to_le16((USB_DT_CONFIG
<< 8) | 0);
1047 expected
= -EREMOTEIO
;
1049 /* NOTE: two consecutive _different_ faults in the queue. */
1050 case 11: /* get endpoint descriptor (ALWAYS STALLS) */
1051 req
.wValue
= cpu_to_le16(USB_DT_ENDPOINT
<< 8);
1053 len
= sizeof(struct usb_interface_descriptor
);
1056 /* NOTE: sometimes even a third fault in the queue! */
1057 case 12: /* get string 0 descriptor (MAY STALL) */
1058 req
.wValue
= cpu_to_le16(USB_DT_STRING
<< 8);
1059 /* string == 0, for language IDs */
1060 len
= sizeof(struct usb_interface_descriptor
);
1061 /* may succeed when > 4 languages */
1062 expected
= EREMOTEIO
; /* or EPIPE, if no strings */
1064 case 13: /* short read, resembling case 10 */
1065 req
.wValue
= cpu_to_le16((USB_DT_CONFIG
<< 8) | 0);
1066 /* last data packet "should" be DATA1, not DATA0 */
1067 if (udev
->speed
== USB_SPEED_SUPER
)
1070 len
= 1024 - udev
->descriptor
.bMaxPacketSize0
;
1071 expected
= -EREMOTEIO
;
1073 case 14: /* short read; try to fill the last packet */
1074 req
.wValue
= cpu_to_le16((USB_DT_DEVICE
<< 8) | 0);
1075 /* device descriptor size == 18 bytes */
1076 len
= udev
->descriptor
.bMaxPacketSize0
;
1077 if (udev
->speed
== USB_SPEED_SUPER
)
1087 expected
= -EREMOTEIO
;
1090 ERROR(dev
, "bogus number of ctrl queue testcases!\n");
1091 context
.status
= -EINVAL
;
1094 req
.wLength
= cpu_to_le16(len
);
1095 urb
[i
] = u
= simple_alloc_urb(udev
, pipe
, len
);
1099 reqp
= kmalloc(sizeof *reqp
, GFP_KERNEL
);
1103 reqp
->number
= i
% NUM_SUBCASES
;
1104 reqp
->expected
= expected
;
1105 u
->setup_packet
= (char *) &reqp
->setup
;
1107 u
->context
= &context
;
1108 u
->complete
= ctrl_complete
;
1111 /* queue the urbs */
1113 spin_lock_irq(&context
.lock
);
1114 for (i
= 0; i
< param
->sglen
; i
++) {
1115 context
.status
= usb_submit_urb(urb
[i
], GFP_ATOMIC
);
1116 if (context
.status
!= 0) {
1117 ERROR(dev
, "can't submit urb[%d], status %d\n",
1119 context
.count
= context
.pending
;
1124 spin_unlock_irq(&context
.lock
);
1126 /* FIXME set timer and time out; provide a disconnect hook */
1128 /* wait for the last one to complete */
1129 if (context
.pending
> 0)
1130 wait_for_completion(&context
.complete
);
1133 for (i
= 0; i
< param
->sglen
; i
++) {
1137 kfree(urb
[i
]->setup_packet
);
1138 simple_free_urb(urb
[i
]);
1141 return context
.status
;
1146 /*-------------------------------------------------------------------------*/
1148 static void unlink1_callback(struct urb
*urb
)
1150 int status
= urb
->status
;
1152 /* we "know" -EPIPE (stall) never happens */
1154 status
= usb_submit_urb(urb
, GFP_ATOMIC
);
1156 urb
->status
= status
;
1157 complete(urb
->context
);
1161 static int unlink1(struct usbtest_dev
*dev
, int pipe
, int size
, int async
)
1164 struct completion completion
;
1167 init_completion(&completion
);
1168 urb
= simple_alloc_urb(testdev_to_usbdev(dev
), pipe
, size
);
1171 urb
->context
= &completion
;
1172 urb
->complete
= unlink1_callback
;
1174 if (usb_pipeout(urb
->pipe
)) {
1175 simple_fill_buf(urb
);
1176 urb
->transfer_flags
|= URB_ZERO_PACKET
;
1179 /* keep the endpoint busy. there are lots of hc/hcd-internal
1180 * states, and testing should get to all of them over time.
1182 * FIXME want additional tests for when endpoint is STALLing
1183 * due to errors, or is just NAKing requests.
1185 retval
= usb_submit_urb(urb
, GFP_KERNEL
);
1187 dev_err(&dev
->intf
->dev
, "submit fail %d\n", retval
);
1191 /* unlinking that should always work. variable delay tests more
1192 * hcd states and code paths, even with little other system load.
1194 msleep(jiffies
% (2 * INTERRUPT_RATE
));
1196 while (!completion_done(&completion
)) {
1197 retval
= usb_unlink_urb(urb
);
1202 /* we can't unlink urbs while they're completing
1203 * or if they've completed, and we haven't
1204 * resubmitted. "normal" drivers would prevent
1205 * resubmission, but since we're testing unlink
1208 ERROR(dev
, "unlink retry\n");
1215 dev_err(&dev
->intf
->dev
,
1216 "unlink fail %d\n", retval
);
1225 wait_for_completion(&completion
);
1226 retval
= urb
->status
;
1227 simple_free_urb(urb
);
1230 return (retval
== -ECONNRESET
) ? 0 : retval
- 1000;
1232 return (retval
== -ENOENT
|| retval
== -EPERM
) ?
1236 static int unlink_simple(struct usbtest_dev
*dev
, int pipe
, int len
)
1240 /* test sync and async paths */
1241 retval
= unlink1(dev
, pipe
, len
, 1);
1243 retval
= unlink1(dev
, pipe
, len
, 0);
1247 /*-------------------------------------------------------------------------*/
1250 struct completion complete
;
1257 static void unlink_queued_callback(struct urb
*urb
)
1259 int status
= urb
->status
;
1260 struct queued_ctx
*ctx
= urb
->context
;
1264 if (urb
== ctx
->urbs
[ctx
->num
- 4] || urb
== ctx
->urbs
[ctx
->num
- 2]) {
1265 if (status
== -ECONNRESET
)
1267 /* What error should we report if the URB completed normally? */
1270 ctx
->status
= status
;
1273 if (atomic_dec_and_test(&ctx
->pending
))
1274 complete(&ctx
->complete
);
1277 static int unlink_queued(struct usbtest_dev
*dev
, int pipe
, unsigned num
,
1280 struct queued_ctx ctx
;
1281 struct usb_device
*udev
= testdev_to_usbdev(dev
);
1285 int retval
= -ENOMEM
;
1287 init_completion(&ctx
.complete
);
1288 atomic_set(&ctx
.pending
, 1); /* One more than the actual value */
1292 buf
= usb_alloc_coherent(udev
, size
, GFP_KERNEL
, &buf_dma
);
1295 memset(buf
, 0, size
);
1297 /* Allocate and init the urbs we'll queue */
1298 ctx
.urbs
= kcalloc(num
, sizeof(struct urb
*), GFP_KERNEL
);
1301 for (i
= 0; i
< num
; i
++) {
1302 ctx
.urbs
[i
] = usb_alloc_urb(0, GFP_KERNEL
);
1305 usb_fill_bulk_urb(ctx
.urbs
[i
], udev
, pipe
, buf
, size
,
1306 unlink_queued_callback
, &ctx
);
1307 ctx
.urbs
[i
]->transfer_dma
= buf_dma
;
1308 ctx
.urbs
[i
]->transfer_flags
= URB_NO_TRANSFER_DMA_MAP
;
1310 if (usb_pipeout(ctx
.urbs
[i
]->pipe
)) {
1311 simple_fill_buf(ctx
.urbs
[i
]);
1312 ctx
.urbs
[i
]->transfer_flags
|= URB_ZERO_PACKET
;
1316 /* Submit all the URBs and then unlink URBs num - 4 and num - 2. */
1317 for (i
= 0; i
< num
; i
++) {
1318 atomic_inc(&ctx
.pending
);
1319 retval
= usb_submit_urb(ctx
.urbs
[i
], GFP_KERNEL
);
1321 dev_err(&dev
->intf
->dev
, "submit urbs[%d] fail %d\n",
1323 atomic_dec(&ctx
.pending
);
1324 ctx
.status
= retval
;
1329 usb_unlink_urb(ctx
.urbs
[num
- 4]);
1330 usb_unlink_urb(ctx
.urbs
[num
- 2]);
1333 usb_unlink_urb(ctx
.urbs
[i
]);
1336 if (atomic_dec_and_test(&ctx
.pending
)) /* The extra count */
1337 complete(&ctx
.complete
);
1338 wait_for_completion(&ctx
.complete
);
1339 retval
= ctx
.status
;
1342 for (i
= 0; i
< num
; i
++)
1343 usb_free_urb(ctx
.urbs
[i
]);
1346 usb_free_coherent(udev
, size
, buf
, buf_dma
);
1350 /*-------------------------------------------------------------------------*/
1352 static int verify_not_halted(struct usbtest_dev
*tdev
, int ep
, struct urb
*urb
)
1357 /* shouldn't look or act halted */
1358 retval
= usb_get_status(urb
->dev
, USB_RECIP_ENDPOINT
, ep
, &status
);
1360 ERROR(tdev
, "ep %02x couldn't get no-halt status, %d\n",
1365 ERROR(tdev
, "ep %02x bogus status: %04x != 0\n", ep
, status
);
1368 retval
= simple_io(tdev
, urb
, 1, 0, 0, __func__
);
1374 static int verify_halted(struct usbtest_dev
*tdev
, int ep
, struct urb
*urb
)
1379 /* should look and act halted */
1380 retval
= usb_get_status(urb
->dev
, USB_RECIP_ENDPOINT
, ep
, &status
);
1382 ERROR(tdev
, "ep %02x couldn't get halt status, %d\n",
1387 ERROR(tdev
, "ep %02x bogus status: %04x != 1\n", ep
, status
);
1390 retval
= simple_io(tdev
, urb
, 1, 0, -EPIPE
, __func__
);
1391 if (retval
!= -EPIPE
)
1393 retval
= simple_io(tdev
, urb
, 1, 0, -EPIPE
, "verify_still_halted");
1394 if (retval
!= -EPIPE
)
1399 static int test_halt(struct usbtest_dev
*tdev
, int ep
, struct urb
*urb
)
1403 /* shouldn't look or act halted now */
1404 retval
= verify_not_halted(tdev
, ep
, urb
);
1408 /* set halt (protocol test only), verify it worked */
1409 retval
= usb_control_msg(urb
->dev
, usb_sndctrlpipe(urb
->dev
, 0),
1410 USB_REQ_SET_FEATURE
, USB_RECIP_ENDPOINT
,
1411 USB_ENDPOINT_HALT
, ep
,
1412 NULL
, 0, USB_CTRL_SET_TIMEOUT
);
1414 ERROR(tdev
, "ep %02x couldn't set halt, %d\n", ep
, retval
);
1417 retval
= verify_halted(tdev
, ep
, urb
);
1421 /* clear halt (tests API + protocol), verify it worked */
1422 retval
= usb_clear_halt(urb
->dev
, urb
->pipe
);
1424 ERROR(tdev
, "ep %02x couldn't clear halt, %d\n", ep
, retval
);
1427 retval
= verify_not_halted(tdev
, ep
, urb
);
1431 /* NOTE: could also verify SET_INTERFACE clear halts ... */
1436 static int halt_simple(struct usbtest_dev
*dev
)
1441 struct usb_device
*udev
= testdev_to_usbdev(dev
);
1443 if (udev
->speed
== USB_SPEED_SUPER
)
1444 urb
= simple_alloc_urb(udev
, 0, 1024);
1446 urb
= simple_alloc_urb(udev
, 0, 512);
1451 ep
= usb_pipeendpoint(dev
->in_pipe
) | USB_DIR_IN
;
1452 urb
->pipe
= dev
->in_pipe
;
1453 retval
= test_halt(dev
, ep
, urb
);
1458 if (dev
->out_pipe
) {
1459 ep
= usb_pipeendpoint(dev
->out_pipe
);
1460 urb
->pipe
= dev
->out_pipe
;
1461 retval
= test_halt(dev
, ep
, urb
);
1464 simple_free_urb(urb
);
1468 /*-------------------------------------------------------------------------*/
1470 /* Control OUT tests use the vendor control requests from Intel's
1471 * USB 2.0 compliance test device: write a buffer, read it back.
1473 * Intel's spec only _requires_ that it work for one packet, which
1474 * is pretty weak. Some HCDs place limits here; most devices will
1475 * need to be able to handle more than one OUT data packet. We'll
1476 * try whatever we're told to try.
1478 static int ctrl_out(struct usbtest_dev
*dev
,
1479 unsigned count
, unsigned length
, unsigned vary
, unsigned offset
)
1485 struct usb_device
*udev
;
1487 if (length
< 1 || length
> 0xffff || vary
>= length
)
1490 buf
= kmalloc(length
+ offset
, GFP_KERNEL
);
1495 udev
= testdev_to_usbdev(dev
);
1499 /* NOTE: hardware might well act differently if we pushed it
1500 * with lots back-to-back queued requests.
1502 for (i
= 0; i
< count
; i
++) {
1503 /* write patterned data */
1504 for (j
= 0; j
< len
; j
++)
1506 retval
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0),
1507 0x5b, USB_DIR_OUT
|USB_TYPE_VENDOR
,
1508 0, 0, buf
, len
, USB_CTRL_SET_TIMEOUT
);
1509 if (retval
!= len
) {
1512 ERROR(dev
, "ctrl_out, wlen %d (expected %d)\n",
1519 /* read it back -- assuming nothing intervened!! */
1520 retval
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0),
1521 0x5c, USB_DIR_IN
|USB_TYPE_VENDOR
,
1522 0, 0, buf
, len
, USB_CTRL_GET_TIMEOUT
);
1523 if (retval
!= len
) {
1526 ERROR(dev
, "ctrl_out, rlen %d (expected %d)\n",
1533 /* fail if we can't verify */
1534 for (j
= 0; j
< len
; j
++) {
1535 if (buf
[j
] != (u8
) (i
+ j
)) {
1536 ERROR(dev
, "ctrl_out, byte %d is %d not %d\n",
1537 j
, buf
[j
], (u8
) i
+ j
);
1549 /* [real world] the "zero bytes IN" case isn't really used.
1550 * hardware can easily trip up in this weird case, since its
1551 * status stage is IN, not OUT like other ep0in transfers.
1554 len
= realworld
? 1 : 0;
1558 ERROR(dev
, "ctrl_out %s failed, code %d, count %d\n",
1561 kfree(buf
- offset
);
1565 /*-------------------------------------------------------------------------*/
1567 /* ISO tests ... mimics common usage
1568 * - buffer length is split into N packets (mostly maxpacket sized)
1569 * - multi-buffers according to sglen
1572 struct iso_context
{
1576 struct completion done
;
1578 unsigned long errors
;
1579 unsigned long packet_count
;
1580 struct usbtest_dev
*dev
;
1583 static void iso_callback(struct urb
*urb
)
1585 struct iso_context
*ctx
= urb
->context
;
1587 spin_lock(&ctx
->lock
);
1590 ctx
->packet_count
+= urb
->number_of_packets
;
1591 if (urb
->error_count
> 0)
1592 ctx
->errors
+= urb
->error_count
;
1593 else if (urb
->status
!= 0)
1594 ctx
->errors
+= urb
->number_of_packets
;
1595 else if (urb
->actual_length
!= urb
->transfer_buffer_length
)
1597 else if (check_guard_bytes(ctx
->dev
, urb
) != 0)
1600 if (urb
->status
== 0 && ctx
->count
> (ctx
->pending
- 1)
1601 && !ctx
->submit_error
) {
1602 int status
= usb_submit_urb(urb
, GFP_ATOMIC
);
1607 dev_err(&ctx
->dev
->intf
->dev
,
1608 "iso resubmit err %d\n",
1611 case -ENODEV
: /* disconnected */
1612 case -ESHUTDOWN
: /* endpoint disabled */
1613 ctx
->submit_error
= 1;
1619 if (ctx
->pending
== 0) {
1621 dev_err(&ctx
->dev
->intf
->dev
,
1622 "iso test, %lu errors out of %lu\n",
1623 ctx
->errors
, ctx
->packet_count
);
1624 complete(&ctx
->done
);
1627 spin_unlock(&ctx
->lock
);
1630 static struct urb
*iso_alloc_urb(
1631 struct usb_device
*udev
,
1633 struct usb_endpoint_descriptor
*desc
,
1639 unsigned i
, maxp
, packets
;
1641 if (bytes
< 0 || !desc
)
1643 maxp
= 0x7ff & usb_endpoint_maxp(desc
);
1644 maxp
*= 1 + (0x3 & (usb_endpoint_maxp(desc
) >> 11));
1645 packets
= DIV_ROUND_UP(bytes
, maxp
);
1647 urb
= usb_alloc_urb(packets
, GFP_KERNEL
);
1653 urb
->number_of_packets
= packets
;
1654 urb
->transfer_buffer_length
= bytes
;
1655 urb
->transfer_buffer
= usb_alloc_coherent(udev
, bytes
+ offset
,
1657 &urb
->transfer_dma
);
1658 if (!urb
->transfer_buffer
) {
1663 memset(urb
->transfer_buffer
, GUARD_BYTE
, offset
);
1664 urb
->transfer_buffer
+= offset
;
1665 urb
->transfer_dma
+= offset
;
1667 /* For inbound transfers use guard byte so that test fails if
1668 data not correctly copied */
1669 memset(urb
->transfer_buffer
,
1670 usb_pipein(urb
->pipe
) ? GUARD_BYTE
: 0,
1673 for (i
= 0; i
< packets
; i
++) {
1674 /* here, only the last packet will be short */
1675 urb
->iso_frame_desc
[i
].length
= min((unsigned) bytes
, maxp
);
1676 bytes
-= urb
->iso_frame_desc
[i
].length
;
1678 urb
->iso_frame_desc
[i
].offset
= maxp
* i
;
1681 urb
->complete
= iso_callback
;
1682 /* urb->context = SET BY CALLER */
1683 urb
->interval
= 1 << (desc
->bInterval
- 1);
1684 urb
->transfer_flags
= URB_ISO_ASAP
| URB_NO_TRANSFER_DMA_MAP
;
1689 test_iso_queue(struct usbtest_dev
*dev
, struct usbtest_param
*param
,
1690 int pipe
, struct usb_endpoint_descriptor
*desc
, unsigned offset
)
1692 struct iso_context context
;
1693 struct usb_device
*udev
;
1695 unsigned long packets
= 0;
1697 struct urb
*urbs
[10]; /* FIXME no limit */
1699 if (param
->sglen
> 10)
1702 memset(&context
, 0, sizeof context
);
1703 context
.count
= param
->iterations
* param
->sglen
;
1705 init_completion(&context
.done
);
1706 spin_lock_init(&context
.lock
);
1708 memset(urbs
, 0, sizeof urbs
);
1709 udev
= testdev_to_usbdev(dev
);
1710 dev_info(&dev
->intf
->dev
,
1711 "... iso period %d %sframes, wMaxPacket %04x\n",
1712 1 << (desc
->bInterval
- 1),
1713 (udev
->speed
== USB_SPEED_HIGH
) ? "micro" : "",
1714 usb_endpoint_maxp(desc
));
1716 for (i
= 0; i
< param
->sglen
; i
++) {
1717 urbs
[i
] = iso_alloc_urb(udev
, pipe
, desc
,
1718 param
->length
, offset
);
1723 packets
+= urbs
[i
]->number_of_packets
;
1724 urbs
[i
]->context
= &context
;
1726 packets
*= param
->iterations
;
1727 dev_info(&dev
->intf
->dev
,
1728 "... total %lu msec (%lu packets)\n",
1729 (packets
* (1 << (desc
->bInterval
- 1)))
1730 / ((udev
->speed
== USB_SPEED_HIGH
) ? 8 : 1),
1733 spin_lock_irq(&context
.lock
);
1734 for (i
= 0; i
< param
->sglen
; i
++) {
1736 status
= usb_submit_urb(urbs
[i
], GFP_ATOMIC
);
1738 ERROR(dev
, "submit iso[%d], error %d\n", i
, status
);
1740 spin_unlock_irq(&context
.lock
);
1744 simple_free_urb(urbs
[i
]);
1747 context
.submit_error
= 1;
1751 spin_unlock_irq(&context
.lock
);
1753 wait_for_completion(&context
.done
);
1755 for (i
= 0; i
< param
->sglen
; i
++) {
1757 simple_free_urb(urbs
[i
]);
1760 * Isochronous transfers are expected to fail sometimes. As an
1761 * arbitrary limit, we will report an error if any submissions
1762 * fail or if the transfer failure rate is > 10%.
1766 else if (context
.submit_error
)
1768 else if (context
.errors
> context
.packet_count
/ 10)
1773 for (i
= 0; i
< param
->sglen
; i
++) {
1775 simple_free_urb(urbs
[i
]);
1780 static int test_unaligned_bulk(
1781 struct usbtest_dev
*tdev
,
1785 unsigned transfer_flags
,
1789 struct urb
*urb
= usbtest_alloc_urb(
1790 testdev_to_usbdev(tdev
), pipe
, length
, transfer_flags
, 1);
1795 retval
= simple_io(tdev
, urb
, iterations
, 0, 0, label
);
1796 simple_free_urb(urb
);
1800 /*-------------------------------------------------------------------------*/
1802 /* We only have this one interface to user space, through usbfs.
1803 * User mode code can scan usbfs to find N different devices (maybe on
1804 * different busses) to use when testing, and allocate one thread per
1805 * test. So discovery is simplified, and we have no device naming issues.
1807 * Don't use these only as stress/load tests. Use them along with with
1808 * other USB bus activity: plugging, unplugging, mousing, mp3 playback,
1809 * video capture, and so on. Run different tests at different times, in
1810 * different sequences. Nothing here should interact with other devices,
1811 * except indirectly by consuming USB bandwidth and CPU resources for test
1812 * threads and request completion. But the only way to know that for sure
1813 * is to test when HC queues are in use by many devices.
1815 * WARNING: Because usbfs grabs udev->dev.sem before calling this ioctl(),
1816 * it locks out usbcore in certain code paths. Notably, if you disconnect
1817 * the device-under-test, khubd will wait block forever waiting for the
1818 * ioctl to complete ... so that usb_disconnect() can abort the pending
1819 * urbs and then call usbtest_disconnect(). To abort a test, you're best
1820 * off just killing the userspace task and waiting for it to exit.
1824 usbtest_ioctl(struct usb_interface
*intf
, unsigned int code
, void *buf
)
1826 struct usbtest_dev
*dev
= usb_get_intfdata(intf
);
1827 struct usb_device
*udev
= testdev_to_usbdev(dev
);
1828 struct usbtest_param
*param
= buf
;
1829 int retval
= -EOPNOTSUPP
;
1831 struct scatterlist
*sg
;
1832 struct usb_sg_request req
;
1833 struct timeval start
;
1836 /* FIXME USBDEVFS_CONNECTINFO doesn't say how fast the device is. */
1838 pattern
= mod_pattern
;
1840 if (code
!= USBTEST_REQUEST
)
1843 if (param
->iterations
<= 0)
1846 if (mutex_lock_interruptible(&dev
->lock
))
1847 return -ERESTARTSYS
;
1849 /* FIXME: What if a system sleep starts while a test is running? */
1851 /* some devices, like ez-usb default devices, need a non-default
1852 * altsetting to have any active endpoints. some tests change
1853 * altsettings; force a default so most tests don't need to check.
1855 if (dev
->info
->alt
>= 0) {
1858 if (intf
->altsetting
->desc
.bInterfaceNumber
) {
1859 mutex_unlock(&dev
->lock
);
1862 res
= set_altsetting(dev
, dev
->info
->alt
);
1865 "set altsetting to %d failed, %d\n",
1866 dev
->info
->alt
, res
);
1867 mutex_unlock(&dev
->lock
);
1873 * Just a bunch of test cases that every HCD is expected to handle.
1875 * Some may need specific firmware, though it'd be good to have
1876 * one firmware image to handle all the test cases.
1878 * FIXME add more tests! cancel requests, verify the data, control
1879 * queueing, concurrent read+write threads, and so on.
1881 do_gettimeofday(&start
);
1882 switch (param
->test_num
) {
1885 dev_info(&intf
->dev
, "TEST 0: NOP\n");
1889 /* Simple non-queued bulk I/O tests */
1891 if (dev
->out_pipe
== 0)
1893 dev_info(&intf
->dev
,
1894 "TEST 1: write %d bytes %u times\n",
1895 param
->length
, param
->iterations
);
1896 urb
= simple_alloc_urb(udev
, dev
->out_pipe
, param
->length
);
1901 /* FIRMWARE: bulk sink (maybe accepts short writes) */
1902 retval
= simple_io(dev
, urb
, param
->iterations
, 0, 0, "test1");
1903 simple_free_urb(urb
);
1906 if (dev
->in_pipe
== 0)
1908 dev_info(&intf
->dev
,
1909 "TEST 2: read %d bytes %u times\n",
1910 param
->length
, param
->iterations
);
1911 urb
= simple_alloc_urb(udev
, dev
->in_pipe
, param
->length
);
1916 /* FIRMWARE: bulk source (maybe generates short writes) */
1917 retval
= simple_io(dev
, urb
, param
->iterations
, 0, 0, "test2");
1918 simple_free_urb(urb
);
1921 if (dev
->out_pipe
== 0 || param
->vary
== 0)
1923 dev_info(&intf
->dev
,
1924 "TEST 3: write/%d 0..%d bytes %u times\n",
1925 param
->vary
, param
->length
, param
->iterations
);
1926 urb
= simple_alloc_urb(udev
, dev
->out_pipe
, param
->length
);
1931 /* FIRMWARE: bulk sink (maybe accepts short writes) */
1932 retval
= simple_io(dev
, urb
, param
->iterations
, param
->vary
,
1934 simple_free_urb(urb
);
1937 if (dev
->in_pipe
== 0 || param
->vary
== 0)
1939 dev_info(&intf
->dev
,
1940 "TEST 4: read/%d 0..%d bytes %u times\n",
1941 param
->vary
, param
->length
, param
->iterations
);
1942 urb
= simple_alloc_urb(udev
, dev
->in_pipe
, param
->length
);
1947 /* FIRMWARE: bulk source (maybe generates short writes) */
1948 retval
= simple_io(dev
, urb
, param
->iterations
, param
->vary
,
1950 simple_free_urb(urb
);
1953 /* Queued bulk I/O tests */
1955 if (dev
->out_pipe
== 0 || param
->sglen
== 0)
1957 dev_info(&intf
->dev
,
1958 "TEST 5: write %d sglists %d entries of %d bytes\n",
1960 param
->sglen
, param
->length
);
1961 sg
= alloc_sglist(param
->sglen
, param
->length
, 0);
1966 /* FIRMWARE: bulk sink (maybe accepts short writes) */
1967 retval
= perform_sglist(dev
, param
->iterations
, dev
->out_pipe
,
1968 &req
, sg
, param
->sglen
);
1969 free_sglist(sg
, param
->sglen
);
1973 if (dev
->in_pipe
== 0 || param
->sglen
== 0)
1975 dev_info(&intf
->dev
,
1976 "TEST 6: read %d sglists %d entries of %d bytes\n",
1978 param
->sglen
, param
->length
);
1979 sg
= alloc_sglist(param
->sglen
, param
->length
, 0);
1984 /* FIRMWARE: bulk source (maybe generates short writes) */
1985 retval
= perform_sglist(dev
, param
->iterations
, dev
->in_pipe
,
1986 &req
, sg
, param
->sglen
);
1987 free_sglist(sg
, param
->sglen
);
1990 if (dev
->out_pipe
== 0 || param
->sglen
== 0 || param
->vary
== 0)
1992 dev_info(&intf
->dev
,
1993 "TEST 7: write/%d %d sglists %d entries 0..%d bytes\n",
1994 param
->vary
, param
->iterations
,
1995 param
->sglen
, param
->length
);
1996 sg
= alloc_sglist(param
->sglen
, param
->length
, param
->vary
);
2001 /* FIRMWARE: bulk sink (maybe accepts short writes) */
2002 retval
= perform_sglist(dev
, param
->iterations
, dev
->out_pipe
,
2003 &req
, sg
, param
->sglen
);
2004 free_sglist(sg
, param
->sglen
);
2007 if (dev
->in_pipe
== 0 || param
->sglen
== 0 || param
->vary
== 0)
2009 dev_info(&intf
->dev
,
2010 "TEST 8: read/%d %d sglists %d entries 0..%d bytes\n",
2011 param
->vary
, param
->iterations
,
2012 param
->sglen
, param
->length
);
2013 sg
= alloc_sglist(param
->sglen
, param
->length
, param
->vary
);
2018 /* FIRMWARE: bulk source (maybe generates short writes) */
2019 retval
= perform_sglist(dev
, param
->iterations
, dev
->in_pipe
,
2020 &req
, sg
, param
->sglen
);
2021 free_sglist(sg
, param
->sglen
);
2024 /* non-queued sanity tests for control (chapter 9 subset) */
2027 dev_info(&intf
->dev
,
2028 "TEST 9: ch9 (subset) control tests, %d times\n",
2030 for (i
= param
->iterations
; retval
== 0 && i
--; /* NOP */)
2031 retval
= ch9_postconfig(dev
);
2033 dev_err(&intf
->dev
, "ch9 subset failed, "
2034 "iterations left %d\n", i
);
2037 /* queued control messaging */
2040 dev_info(&intf
->dev
,
2041 "TEST 10: queue %d control calls, %d times\n",
2044 retval
= test_ctrl_queue(dev
, param
);
2047 /* simple non-queued unlinks (ring with one urb) */
2049 if (dev
->in_pipe
== 0 || !param
->length
)
2052 dev_info(&intf
->dev
, "TEST 11: unlink %d reads of %d\n",
2053 param
->iterations
, param
->length
);
2054 for (i
= param
->iterations
; retval
== 0 && i
--; /* NOP */)
2055 retval
= unlink_simple(dev
, dev
->in_pipe
,
2058 dev_err(&intf
->dev
, "unlink reads failed %d, "
2059 "iterations left %d\n", retval
, i
);
2062 if (dev
->out_pipe
== 0 || !param
->length
)
2065 dev_info(&intf
->dev
, "TEST 12: unlink %d writes of %d\n",
2066 param
->iterations
, param
->length
);
2067 for (i
= param
->iterations
; retval
== 0 && i
--; /* NOP */)
2068 retval
= unlink_simple(dev
, dev
->out_pipe
,
2071 dev_err(&intf
->dev
, "unlink writes failed %d, "
2072 "iterations left %d\n", retval
, i
);
2077 if (dev
->out_pipe
== 0 && dev
->in_pipe
== 0)
2080 dev_info(&intf
->dev
, "TEST 13: set/clear %d halts\n",
2082 for (i
= param
->iterations
; retval
== 0 && i
--; /* NOP */)
2083 retval
= halt_simple(dev
);
2086 ERROR(dev
, "halts failed, iterations left %d\n", i
);
2089 /* control write tests */
2091 if (!dev
->info
->ctrl_out
)
2093 dev_info(&intf
->dev
, "TEST 14: %d ep0out, %d..%d vary %d\n",
2095 realworld
? 1 : 0, param
->length
,
2097 retval
= ctrl_out(dev
, param
->iterations
,
2098 param
->length
, param
->vary
, 0);
2101 /* iso write tests */
2103 if (dev
->out_iso_pipe
== 0 || param
->sglen
== 0)
2105 dev_info(&intf
->dev
,
2106 "TEST 15: write %d iso, %d entries of %d bytes\n",
2108 param
->sglen
, param
->length
);
2109 /* FIRMWARE: iso sink */
2110 retval
= test_iso_queue(dev
, param
,
2111 dev
->out_iso_pipe
, dev
->iso_out
, 0);
2114 /* iso read tests */
2116 if (dev
->in_iso_pipe
== 0 || param
->sglen
== 0)
2118 dev_info(&intf
->dev
,
2119 "TEST 16: read %d iso, %d entries of %d bytes\n",
2121 param
->sglen
, param
->length
);
2122 /* FIRMWARE: iso source */
2123 retval
= test_iso_queue(dev
, param
,
2124 dev
->in_iso_pipe
, dev
->iso_in
, 0);
2127 /* FIXME scatterlist cancel (needs helper thread) */
2129 /* Tests for bulk I/O using DMA mapping by core and odd address */
2131 if (dev
->out_pipe
== 0)
2133 dev_info(&intf
->dev
,
2134 "TEST 17: write odd addr %d bytes %u times core map\n",
2135 param
->length
, param
->iterations
);
2137 retval
= test_unaligned_bulk(
2139 param
->length
, param
->iterations
,
2144 if (dev
->in_pipe
== 0)
2146 dev_info(&intf
->dev
,
2147 "TEST 18: read odd addr %d bytes %u times core map\n",
2148 param
->length
, param
->iterations
);
2150 retval
= test_unaligned_bulk(
2152 param
->length
, param
->iterations
,
2156 /* Tests for bulk I/O using premapped coherent buffer and odd address */
2158 if (dev
->out_pipe
== 0)
2160 dev_info(&intf
->dev
,
2161 "TEST 19: write odd addr %d bytes %u times premapped\n",
2162 param
->length
, param
->iterations
);
2164 retval
= test_unaligned_bulk(
2166 param
->length
, param
->iterations
,
2167 URB_NO_TRANSFER_DMA_MAP
, "test19");
2171 if (dev
->in_pipe
== 0)
2173 dev_info(&intf
->dev
,
2174 "TEST 20: read odd addr %d bytes %u times premapped\n",
2175 param
->length
, param
->iterations
);
2177 retval
= test_unaligned_bulk(
2179 param
->length
, param
->iterations
,
2180 URB_NO_TRANSFER_DMA_MAP
, "test20");
2183 /* control write tests with unaligned buffer */
2185 if (!dev
->info
->ctrl_out
)
2187 dev_info(&intf
->dev
,
2188 "TEST 21: %d ep0out odd addr, %d..%d vary %d\n",
2190 realworld
? 1 : 0, param
->length
,
2192 retval
= ctrl_out(dev
, param
->iterations
,
2193 param
->length
, param
->vary
, 1);
2196 /* unaligned iso tests */
2198 if (dev
->out_iso_pipe
== 0 || param
->sglen
== 0)
2200 dev_info(&intf
->dev
,
2201 "TEST 22: write %d iso odd, %d entries of %d bytes\n",
2203 param
->sglen
, param
->length
);
2204 retval
= test_iso_queue(dev
, param
,
2205 dev
->out_iso_pipe
, dev
->iso_out
, 1);
2209 if (dev
->in_iso_pipe
== 0 || param
->sglen
== 0)
2211 dev_info(&intf
->dev
,
2212 "TEST 23: read %d iso odd, %d entries of %d bytes\n",
2214 param
->sglen
, param
->length
);
2215 retval
= test_iso_queue(dev
, param
,
2216 dev
->in_iso_pipe
, dev
->iso_in
, 1);
2219 /* unlink URBs from a bulk-OUT queue */
2221 if (dev
->out_pipe
== 0 || !param
->length
|| param
->sglen
< 4)
2224 dev_info(&intf
->dev
, "TEST 24: unlink from %d queues of "
2225 "%d %d-byte writes\n",
2226 param
->iterations
, param
->sglen
, param
->length
);
2227 for (i
= param
->iterations
; retval
== 0 && i
> 0; --i
) {
2228 retval
= unlink_queued(dev
, dev
->out_pipe
,
2229 param
->sglen
, param
->length
);
2232 "unlink queued writes failed %d, "
2233 "iterations left %d\n", retval
, i
);
2240 do_gettimeofday(¶m
->duration
);
2241 param
->duration
.tv_sec
-= start
.tv_sec
;
2242 param
->duration
.tv_usec
-= start
.tv_usec
;
2243 if (param
->duration
.tv_usec
< 0) {
2244 param
->duration
.tv_usec
+= 1000 * 1000;
2245 param
->duration
.tv_sec
-= 1;
2247 mutex_unlock(&dev
->lock
);
2251 /*-------------------------------------------------------------------------*/
2253 static unsigned force_interrupt
;
2254 module_param(force_interrupt
, uint
, 0);
2255 MODULE_PARM_DESC(force_interrupt
, "0 = test default; else interrupt");
2258 static unsigned short vendor
;
2259 module_param(vendor
, ushort
, 0);
2260 MODULE_PARM_DESC(vendor
, "vendor code (from usb-if)");
2262 static unsigned short product
;
2263 module_param(product
, ushort
, 0);
2264 MODULE_PARM_DESC(product
, "product code (from vendor)");
2268 usbtest_probe(struct usb_interface
*intf
, const struct usb_device_id
*id
)
2270 struct usb_device
*udev
;
2271 struct usbtest_dev
*dev
;
2272 struct usbtest_info
*info
;
2273 char *rtest
, *wtest
;
2274 char *irtest
, *iwtest
;
2276 udev
= interface_to_usbdev(intf
);
2279 /* specify devices by module parameters? */
2280 if (id
->match_flags
== 0) {
2281 /* vendor match required, product match optional */
2282 if (!vendor
|| le16_to_cpu(udev
->descriptor
.idVendor
) != (u16
)vendor
)
2284 if (product
&& le16_to_cpu(udev
->descriptor
.idProduct
) != (u16
)product
)
2286 dev_info(&intf
->dev
, "matched module params, "
2287 "vend=0x%04x prod=0x%04x\n",
2288 le16_to_cpu(udev
->descriptor
.idVendor
),
2289 le16_to_cpu(udev
->descriptor
.idProduct
));
2293 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
2296 info
= (struct usbtest_info
*) id
->driver_info
;
2298 mutex_init(&dev
->lock
);
2302 /* cacheline-aligned scratch for i/o */
2303 dev
->buf
= kmalloc(TBUF_SIZE
, GFP_KERNEL
);
2304 if (dev
->buf
== NULL
) {
2309 /* NOTE this doesn't yet test the handful of difference that are
2310 * visible with high speed interrupts: bigger maxpacket (1K) and
2311 * "high bandwidth" modes (up to 3 packets/uframe).
2314 irtest
= iwtest
= "";
2315 if (force_interrupt
|| udev
->speed
== USB_SPEED_LOW
) {
2317 dev
->in_pipe
= usb_rcvintpipe(udev
, info
->ep_in
);
2321 dev
->out_pipe
= usb_sndintpipe(udev
, info
->ep_out
);
2322 wtest
= " intr-out";
2325 if (override_alt
>= 0 || info
->autoconf
) {
2328 status
= get_endpoints(dev
, intf
);
2330 WARNING(dev
, "couldn't get endpoints, %d\n",
2336 /* may find bulk or ISO pipes */
2339 dev
->in_pipe
= usb_rcvbulkpipe(udev
,
2342 dev
->out_pipe
= usb_sndbulkpipe(udev
,
2348 wtest
= " bulk-out";
2349 if (dev
->in_iso_pipe
)
2351 if (dev
->out_iso_pipe
)
2352 iwtest
= " iso-out";
2355 usb_set_intfdata(intf
, dev
);
2356 dev_info(&intf
->dev
, "%s\n", info
->name
);
2357 dev_info(&intf
->dev
, "%s {control%s%s%s%s%s} tests%s\n",
2358 usb_speed_string(udev
->speed
),
2359 info
->ctrl_out
? " in/out" : "",
2362 info
->alt
>= 0 ? " (+alt)" : "");
2366 static int usbtest_suspend(struct usb_interface
*intf
, pm_message_t message
)
2371 static int usbtest_resume(struct usb_interface
*intf
)
2377 static void usbtest_disconnect(struct usb_interface
*intf
)
2379 struct usbtest_dev
*dev
= usb_get_intfdata(intf
);
2381 usb_set_intfdata(intf
, NULL
);
2382 dev_dbg(&intf
->dev
, "disconnect\n");
2386 /* Basic testing only needs a device that can source or sink bulk traffic.
2387 * Any device can test control transfers (default with GENERIC binding).
2389 * Several entries work with the default EP0 implementation that's built
2390 * into EZ-USB chips. There's a default vendor ID which can be overridden
2391 * by (very) small config EEPROMS, but otherwise all these devices act
2392 * identically until firmware is loaded: only EP0 works. It turns out
2393 * to be easy to make other endpoints work, without modifying that EP0
2394 * behavior. For now, we expect that kind of firmware.
2397 /* an21xx or fx versions of ez-usb */
2398 static struct usbtest_info ez1_info
= {
2399 .name
= "EZ-USB device",
2405 /* fx2 version of ez-usb */
2406 static struct usbtest_info ez2_info
= {
2407 .name
= "FX2 device",
2413 /* ezusb family device with dedicated usb test firmware,
2415 static struct usbtest_info fw_info
= {
2416 .name
= "usb test device",
2420 .autoconf
= 1, /* iso and ctrl_out need autoconf */
2422 .iso
= 1, /* iso_ep's are #8 in/out */
2425 /* peripheral running Linux and 'zero.c' test firmware, or
2426 * its user-mode cousin. different versions of this use
2427 * different hardware with the same vendor/product codes.
2428 * host side MUST rely on the endpoint descriptors.
2430 static struct usbtest_info gz_info
= {
2431 .name
= "Linux gadget zero",
2438 static struct usbtest_info um_info
= {
2439 .name
= "Linux user mode test driver",
2444 static struct usbtest_info um2_info
= {
2445 .name
= "Linux user mode ISO test driver",
2452 /* this is a nice source of high speed bulk data;
2453 * uses an FX2, with firmware provided in the device
2455 static struct usbtest_info ibot2_info
= {
2456 .name
= "iBOT2 webcam",
2463 /* we can use any device to test control traffic */
2464 static struct usbtest_info generic_info
= {
2465 .name
= "Generic USB device",
2471 static const struct usb_device_id id_table
[] = {
2473 /*-------------------------------------------------------------*/
2475 /* EZ-USB devices which download firmware to replace (or in our
2476 * case augment) the default device implementation.
2479 /* generic EZ-USB FX controller */
2480 { USB_DEVICE(0x0547, 0x2235),
2481 .driver_info
= (unsigned long) &ez1_info
,
2484 /* CY3671 development board with EZ-USB FX */
2485 { USB_DEVICE(0x0547, 0x0080),
2486 .driver_info
= (unsigned long) &ez1_info
,
2489 /* generic EZ-USB FX2 controller (or development board) */
2490 { USB_DEVICE(0x04b4, 0x8613),
2491 .driver_info
= (unsigned long) &ez2_info
,
2494 /* re-enumerated usb test device firmware */
2495 { USB_DEVICE(0xfff0, 0xfff0),
2496 .driver_info
= (unsigned long) &fw_info
,
2499 /* "Gadget Zero" firmware runs under Linux */
2500 { USB_DEVICE(0x0525, 0xa4a0),
2501 .driver_info
= (unsigned long) &gz_info
,
2504 /* so does a user-mode variant */
2505 { USB_DEVICE(0x0525, 0xa4a4),
2506 .driver_info
= (unsigned long) &um_info
,
2509 /* ... and a user-mode variant that talks iso */
2510 { USB_DEVICE(0x0525, 0xa4a3),
2511 .driver_info
= (unsigned long) &um2_info
,
2515 /* Keyspan 19qi uses an21xx (original EZ-USB) */
2516 /* this does not coexist with the real Keyspan 19qi driver! */
2517 { USB_DEVICE(0x06cd, 0x010b),
2518 .driver_info
= (unsigned long) &ez1_info
,
2522 /*-------------------------------------------------------------*/
2525 /* iBOT2 makes a nice source of high speed bulk-in data */
2526 /* this does not coexist with a real iBOT2 driver! */
2527 { USB_DEVICE(0x0b62, 0x0059),
2528 .driver_info
= (unsigned long) &ibot2_info
,
2532 /*-------------------------------------------------------------*/
2535 /* module params can specify devices to use for control tests */
2536 { .driver_info
= (unsigned long) &generic_info
, },
2539 /*-------------------------------------------------------------*/
2543 MODULE_DEVICE_TABLE(usb
, id_table
);
2545 static struct usb_driver usbtest_driver
= {
2547 .id_table
= id_table
,
2548 .probe
= usbtest_probe
,
2549 .unlocked_ioctl
= usbtest_ioctl
,
2550 .disconnect
= usbtest_disconnect
,
2551 .suspend
= usbtest_suspend
,
2552 .resume
= usbtest_resume
,
2555 /*-------------------------------------------------------------------------*/
2557 static int __init
usbtest_init(void)
2561 pr_debug("params: vend=0x%04x prod=0x%04x\n", vendor
, product
);
2563 return usb_register(&usbtest_driver
);
2565 module_init(usbtest_init
);
2567 static void __exit
usbtest_exit(void)
2569 usb_deregister(&usbtest_driver
);
2571 module_exit(usbtest_exit
);
2573 MODULE_DESCRIPTION("USB Core/HCD Testing Driver");
2574 MODULE_LICENSE("GPL");