1 /* $(CROSS_COMPILE)cc -Wall -Wextra -g -lpthread -o testusb testusb.c */
4 * Copyright (c) 2002 by David Brownell
5 * Copyright (c) 2010 by Samsung Electronics
6 * Author: Michal Nazarewicz <m.nazarewicz@samsung.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 * This program issues ioctls to perform the tests implemented by the
25 * kernel driver. It can generate a variety of transfer patterns; you
26 * should make sure to test both regular streaming and mixes of
27 * transfer sizes (including short transfers).
29 * For more information on how this can be used and on USB testing
30 * refer to <URL:http://www.linux-usb.org/usbtest/>.
42 #include <sys/types.h>
46 #include <sys/ioctl.h>
47 #include <linux/usbdevice_fs.h>
49 /*-------------------------------------------------------------------------*/
53 // FIXME make these public somewhere; usbdevfs.h?
55 struct usbtest_param
{
57 unsigned test_num
; /* 0..(TEST_CASES-1) */
64 struct timeval duration
;
66 #define USBTEST_REQUEST _IOWR('U', 100, struct usbtest_param)
68 /*-------------------------------------------------------------------------*/
70 /* #include <linux/usb_ch9.h> */
72 #define USB_DT_DEVICE 0x01
73 #define USB_DT_INTERFACE 0x04
75 #define USB_CLASS_PER_INTERFACE 0 /* for DeviceClass */
76 #define USB_CLASS_VENDOR_SPEC 0xff
79 struct usb_device_descriptor
{
93 __u8 bNumConfigurations
;
94 } __attribute__ ((packed
));
96 struct usb_interface_descriptor
{
100 __u8 bInterfaceNumber
;
101 __u8 bAlternateSetting
;
103 __u8 bInterfaceClass
;
104 __u8 bInterfaceSubClass
;
105 __u8 bInterfaceProtocol
;
107 } __attribute__ ((packed
));
109 enum usb_device_speed
{
110 USB_SPEED_UNKNOWN
= 0, /* enumerating */
111 USB_SPEED_LOW
, USB_SPEED_FULL
, /* usb 1.1 */
112 USB_SPEED_HIGH
/* usb 2.0 */
115 /*-------------------------------------------------------------------------*/
117 static char *speed (enum usb_device_speed s
)
120 case USB_SPEED_UNKNOWN
: return "unknown";
121 case USB_SPEED_LOW
: return "low";
122 case USB_SPEED_FULL
: return "full";
123 case USB_SPEED_HIGH
: return "high";
124 default: return "??";
129 struct testdev
*next
;
132 enum usb_device_speed speed
;
134 unsigned forever
: 1;
137 struct usbtest_param param
;
139 static struct testdev
*testdevs
;
141 static int testdev_ffs_ifnum(FILE *fd
)
145 struct usb_interface_descriptor intf
;
149 if (fread(u
.buf
, 1, 1, fd
) != 1)
151 if (fread(u
.buf
+ 1, (unsigned char)u
.buf
[0] - 1, 1, fd
) != 1)
154 if (u
.intf
.bLength
== sizeof u
.intf
155 && u
.intf
.bDescriptorType
== USB_DT_INTERFACE
156 && u
.intf
.bNumEndpoints
== 2
157 && u
.intf
.bInterfaceClass
== USB_CLASS_VENDOR_SPEC
158 && u
.intf
.bInterfaceSubClass
== 0
159 && u
.intf
.bInterfaceProtocol
== 0)
160 return (unsigned char)u
.intf
.bInterfaceNumber
;
164 static int testdev_ifnum(FILE *fd
)
166 struct usb_device_descriptor dev
;
168 if (fread(&dev
, sizeof dev
, 1, fd
) != 1)
171 if (dev
.bLength
!= sizeof dev
|| dev
.bDescriptorType
!= USB_DT_DEVICE
)
174 /* FX2 with (tweaked) bulksrc firmware */
175 if (dev
.idVendor
== 0x0547 && dev
.idProduct
== 0x1002)
178 /*----------------------------------------------------*/
180 /* devices that start up using the EZ-USB default device and
181 * which we can use after loading simple firmware. hotplug
182 * can fxload it, and then run this test driver.
184 * we return false positives in two cases:
185 * - the device has a "real" driver (maybe usb-serial) that
186 * renumerates. the device should vanish quickly.
187 * - the device doesn't have the test firmware installed.
190 /* generic EZ-USB FX controller */
191 if (dev
.idVendor
== 0x0547 && dev
.idProduct
== 0x2235)
194 /* generic EZ-USB FX2 controller */
195 if (dev
.idVendor
== 0x04b4 && dev
.idProduct
== 0x8613)
198 /* CY3671 development board with EZ-USB FX */
199 if (dev
.idVendor
== 0x0547 && dev
.idProduct
== 0x0080)
202 /* Keyspan 19Qi uses an21xx (original EZ-USB) */
203 if (dev
.idVendor
== 0x06cd && dev
.idProduct
== 0x010b)
206 /*----------------------------------------------------*/
208 /* "gadget zero", Linux-USB test software */
209 if (dev
.idVendor
== 0x0525 && dev
.idProduct
== 0xa4a0)
212 /* user mode subset of that */
213 if (dev
.idVendor
== 0x0525 && dev
.idProduct
== 0xa4a4)
214 return testdev_ffs_ifnum(fd
);
217 /* iso version of usermode code */
218 if (dev
.idVendor
== 0x0525 && dev
.idProduct
== 0xa4a3)
221 /* some GPL'd test firmware uses these IDs */
223 if (dev
.idVendor
== 0xfff0 && dev
.idProduct
== 0xfff0)
226 /*----------------------------------------------------*/
228 /* iBOT2 high speed webcam */
229 if (dev
.idVendor
== 0x0b62 && dev
.idProduct
== 0x0059)
232 /*----------------------------------------------------*/
234 /* the FunctionFS gadget can have the source/sink interface
235 * anywhere. We look for an interface descriptor that match
236 * what we expect. We ignore configuratiens thou. */
238 if (dev
.idVendor
== 0x0525 && dev
.idProduct
== 0xa4ac
239 && (dev
.bDeviceClass
== USB_CLASS_PER_INTERFACE
240 || dev
.bDeviceClass
== USB_CLASS_VENDOR_SPEC
))
241 return testdev_ffs_ifnum(fd
);
246 static int find_testdev(const char *name
, const struct stat
*sb
, int flag
)
250 struct testdev
*entry
;
252 (void)sb
; /* unused */
256 /* ignore /proc/bus/usb/{devices,drivers} */
257 if (strrchr(name
, '/')[1] == 'd')
260 fd
= fopen(name
, "rb");
266 ifnum
= testdev_ifnum(fd
);
271 entry
= calloc(1, sizeof *entry
);
275 entry
->name
= strdup(name
);
283 entry
->ifnum
= ifnum
;
285 /* FIXME ask usbfs what speed; update USBDEVFS_CONNECTINFO so
286 * it tells about high speed etc */
288 fprintf(stderr
, "%s speed\t%s\t%u\n",
289 speed(entry
->speed
), entry
->name
, entry
->ifnum
);
291 entry
->next
= testdevs
;
297 usbdev_ioctl (int fd
, int ifno
, unsigned request
, void *param
)
299 struct usbdevfs_ioctl wrapper
;
302 wrapper
.ioctl_code
= request
;
303 wrapper
.data
= param
;
305 return ioctl (fd
, USBDEVFS_IOCTL
, &wrapper
);
308 static void *handle_testdev (void *arg
)
310 struct testdev
*dev
= arg
;
314 if ((fd
= open (dev
->name
, O_RDWR
)) < 0) {
315 perror ("can't open dev file r/w");
320 for (i
= 0; i
< TEST_CASES
; i
++) {
321 if (dev
->test
!= -1 && dev
->test
!= i
)
323 dev
->param
.test_num
= i
;
325 status
= usbdev_ioctl (fd
, dev
->ifnum
,
326 USBTEST_REQUEST
, &dev
->param
);
327 if (status
< 0 && errno
== EOPNOTSUPP
)
330 /* FIXME need a "syslog it" option for background testing */
332 /* NOTE: each thread emits complete lines; no fragments! */
337 if (strerror_r (errno
, buf
, sizeof buf
)) {
338 snprintf (buf
, sizeof buf
, "error %d", err
);
341 printf ("%s test %d --> %d (%s)\n",
342 dev
->name
, i
, errno
, buf
);
344 printf ("%s test %d, %4d.%.06d secs\n", dev
->name
, i
,
345 (int) dev
->param
.duration
.tv_sec
,
346 (int) dev
->param
.duration
.tv_usec
);
357 static const char *usbfs_dir_find(void)
359 static char usbfs_path_0
[] = "/dev/usb/devices";
360 static char usbfs_path_1
[] = "/proc/bus/usb/devices";
362 static char *const usbfs_paths
[] = {
363 usbfs_path_0
, usbfs_path_1
367 end
= usbfs_paths
+ sizeof usbfs_paths
/ sizeof *usbfs_paths
;
369 char *const *it
= usbfs_paths
;
371 int fd
= open(*it
, O_RDONLY
);
374 strrchr(*it
, '/')[0] = '\0';
377 } while (++it
!= end
);
382 static int parse_num(unsigned *num
, const char *str
)
388 val
= strtoul(str
, &end
, 0);
389 if (errno
|| *end
|| val
> UINT_MAX
)
395 int main (int argc
, char **argv
)
399 struct testdev
*entry
;
401 const char *usbfs_dir
= NULL
;
402 int all
= 0, forever
= 0, not = 0;
403 int test
= -1 /* all */;
404 struct usbtest_param param
;
406 /* pick defaults that works with all speeds, without short packets.
408 * Best per-frame data rates:
409 * high speed, bulk 512 * 13 * 8 = 53248
410 * interrupt 1024 * 3 * 8 = 24576
411 * full speed, bulk/intr 64 * 19 = 1216
412 * interrupt 64 * 1 = 64
413 * low speed, interrupt 8 * 1 = 8
415 param
.iterations
= 1000;
420 /* for easy use when hotplugging */
421 device
= getenv ("DEVICE");
423 while ((c
= getopt (argc
, argv
, "D:aA:c:g:hns:t:v:")) != EOF
)
425 case 'D': /* device, if only one */
428 case 'A': /* use all devices with specified usbfs dir */
431 case 'a': /* use all devices */
435 case 'c': /* count iterations */
436 if (parse_num(¶m
.iterations
, optarg
))
439 case 'g': /* scatter/gather entries */
440 if (parse_num(¶m
.sglen
, optarg
))
443 case 'l': /* loop forever */
446 case 'n': /* no test running! */
449 case 's': /* size of packet */
450 if (parse_num(¶m
.length
, optarg
))
453 case 't': /* run just one test */
454 test
= atoi (optarg
);
458 case 'v': /* vary packet size by ... */
459 if (parse_num(¶m
.vary
, optarg
))
466 fprintf (stderr
, "usage: %s [-n] [-D dev | -a | -A usbfs-dir]\n"
467 "\t[-c iterations] [-t testnum]\n"
468 "\t[-s packetsize] [-g sglen] [-v vary]\n",
474 if (!all
&& !device
) {
475 fprintf (stderr
, "must specify '-a' or '-D dev', "
476 "or DEVICE=/proc/bus/usb/BBB/DDD in env\n");
480 /* Find usbfs mount point */
482 usbfs_dir
= usbfs_dir_find();
484 fputs ("usbfs files are missing\n", stderr
);
489 /* collect and list the test devices */
490 if (ftw (usbfs_dir
, find_testdev
, 3) != 0) {
491 fputs ("ftw failed; is usbfs missing?\n", stderr
);
495 /* quit, run single test, or create test threads */
496 if (!testdevs
&& !device
) {
497 fputs ("no test devices recognized\n", stderr
);
502 if (testdevs
&& testdevs
->next
== 0 && !device
)
503 device
= testdevs
->name
;
504 for (entry
= testdevs
; entry
; entry
= entry
->next
) {
507 entry
->param
= param
;
508 entry
->forever
= forever
;
512 if (strcmp (entry
->name
, device
))
514 return handle_testdev (entry
) != entry
;
516 status
= pthread_create (&entry
->thread
, 0, handle_testdev
, entry
);
518 perror ("pthread_create");
525 /* kernel can recognize test devices we don't */
526 fprintf (stderr
, "%s: %s may see only control tests\n",
529 memset (&dev
, 0, sizeof dev
);
532 dev
.forever
= forever
;
534 return handle_testdev (&dev
) != &dev
;
537 /* wait for tests to complete */
538 for (entry
= testdevs
; entry
; entry
= entry
->next
) {
541 if (pthread_join (entry
->thread
, &retval
))
542 perror ("pthread_join");
543 /* testing errors discarded! */