1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* $(CROSS_COMPILE)cc -Wall -Wextra -g -lpthread -o testusb testusb.c */
5 * Copyright (c) 2002 by David Brownell
6 * Copyright (c) 2010 by Samsung Electronics
7 * Author: Michal Nazarewicz <mina86@mina86.com>
11 * This program issues ioctls to perform the tests implemented by the
12 * kernel driver. It can generate a variety of transfer patterns; you
13 * should make sure to test both regular streaming and mixes of
14 * transfer sizes (including short transfers).
16 * For more information on how this can be used and on USB testing
17 * refer to <URL:http://www.linux-usb.org/usbtest/>.
29 #include <sys/types.h>
33 #include <sys/ioctl.h>
34 #include <linux/usbdevice_fs.h>
36 /*-------------------------------------------------------------------------*/
40 // FIXME make these public somewhere; usbdevfs.h?
42 struct usbtest_param {
44 unsigned test_num; /* 0..(TEST_CASES-1) */
51 struct timeval duration;
53 #define USBTEST_REQUEST _IOWR('U', 100, struct usbtest_param)
55 /*-------------------------------------------------------------------------*/
57 /* #include <linux/usb_ch9.h> */
59 #define USB_DT_DEVICE 0x01
60 #define USB_DT_INTERFACE 0x04
62 #define USB_CLASS_PER_INTERFACE 0 /* for DeviceClass */
63 #define USB_CLASS_VENDOR_SPEC 0xff
66 struct usb_device_descriptor {
80 __u8 bNumConfigurations;
81 } __attribute__ ((packed));
83 struct usb_interface_descriptor {
87 __u8 bInterfaceNumber;
88 __u8 bAlternateSetting;
91 __u8 bInterfaceSubClass;
92 __u8 bInterfaceProtocol;
94 } __attribute__ ((packed));
96 enum usb_device_speed {
97 USB_SPEED_UNKNOWN = 0, /* enumerating */
98 USB_SPEED_LOW, USB_SPEED_FULL, /* usb 1.1 */
99 USB_SPEED_HIGH /* usb 2.0 */
102 /*-------------------------------------------------------------------------*/
104 static char *speed (enum usb_device_speed s)
107 case USB_SPEED_UNKNOWN: return "unknown";
108 case USB_SPEED_LOW: return "low";
109 case USB_SPEED_FULL: return "full";
110 case USB_SPEED_HIGH: return "high";
111 default: return "??";
116 struct testdev *next;
119 enum usb_device_speed speed;
121 unsigned forever : 1;
124 struct usbtest_param param;
126 static struct testdev *testdevs;
128 static int testdev_ffs_ifnum(FILE *fd)
132 struct usb_interface_descriptor intf;
136 if (fread(u.buf, 1, 1, fd) != 1)
138 if (fread(u.buf + 1, (unsigned char)u.buf[0] - 1, 1, fd) != 1)
141 if (u.intf.bLength == sizeof u.intf
142 && u.intf.bDescriptorType == USB_DT_INTERFACE
143 && u.intf.bNumEndpoints == 2
144 && u.intf.bInterfaceClass == USB_CLASS_VENDOR_SPEC
145 && u.intf.bInterfaceSubClass == 0
146 && u.intf.bInterfaceProtocol == 0)
147 return (unsigned char)u.intf.bInterfaceNumber;
151 static int testdev_ifnum(FILE *fd)
153 struct usb_device_descriptor dev;
155 if (fread(&dev, sizeof dev, 1, fd) != 1)
158 if (dev.bLength != sizeof dev || dev.bDescriptorType != USB_DT_DEVICE)
161 /* FX2 with (tweaked) bulksrc firmware */
162 if (dev.idVendor == 0x0547 && dev.idProduct == 0x1002)
165 /*----------------------------------------------------*/
167 /* devices that start up using the EZ-USB default device and
168 * which we can use after loading simple firmware. hotplug
169 * can fxload it, and then run this test driver.
171 * we return false positives in two cases:
172 * - the device has a "real" driver (maybe usb-serial) that
173 * renumerates. the device should vanish quickly.
174 * - the device doesn't have the test firmware installed.
177 /* generic EZ-USB FX controller */
178 if (dev.idVendor == 0x0547 && dev.idProduct == 0x2235)
181 /* generic EZ-USB FX2 controller */
182 if (dev.idVendor == 0x04b4 && dev.idProduct == 0x8613)
185 /* CY3671 development board with EZ-USB FX */
186 if (dev.idVendor == 0x0547 && dev.idProduct == 0x0080)
189 /* Keyspan 19Qi uses an21xx (original EZ-USB) */
190 if (dev.idVendor == 0x06cd && dev.idProduct == 0x010b)
193 /*----------------------------------------------------*/
195 /* "gadget zero", Linux-USB test software */
196 if (dev.idVendor == 0x0525 && dev.idProduct == 0xa4a0)
199 /* user mode subset of that */
200 if (dev.idVendor == 0x0525 && dev.idProduct == 0xa4a4)
201 return testdev_ffs_ifnum(fd);
204 /* iso version of usermode code */
205 if (dev.idVendor == 0x0525 && dev.idProduct == 0xa4a3)
208 /* some GPL'd test firmware uses these IDs */
210 if (dev.idVendor == 0xfff0 && dev.idProduct == 0xfff0)
213 /*----------------------------------------------------*/
215 /* iBOT2 high speed webcam */
216 if (dev.idVendor == 0x0b62 && dev.idProduct == 0x0059)
219 /*----------------------------------------------------*/
221 /* the FunctionFS gadget can have the source/sink interface
222 * anywhere. We look for an interface descriptor that match
223 * what we expect. We ignore configuratiens thou. */
225 if (dev.idVendor == 0x0525 && dev.idProduct == 0xa4ac
226 && (dev.bDeviceClass == USB_CLASS_PER_INTERFACE
227 || dev.bDeviceClass == USB_CLASS_VENDOR_SPEC))
228 return testdev_ffs_ifnum(fd);
233 static int find_testdev(const char *name, const struct stat *sb, int flag)
237 struct testdev *entry;
239 (void)sb; /* unused */
244 fd = fopen(name, "rb");
250 ifnum = testdev_ifnum(fd);
255 entry = calloc(1, sizeof *entry);
259 entry->name = strdup(name);
267 entry->ifnum = ifnum;
269 /* FIXME update USBDEVFS_CONNECTINFO so it tells about high speed etc */
271 fprintf(stderr, "%s speed\t%s\t%u\n",
272 speed(entry->speed), entry->name, entry->ifnum);
274 entry->next = testdevs;
280 usbdev_ioctl (int fd, int ifno, unsigned request, void *param)
282 struct usbdevfs_ioctl wrapper;
285 wrapper.ioctl_code = request;
286 wrapper.data = param;
288 return ioctl (fd, USBDEVFS_IOCTL, &wrapper);
291 static void *handle_testdev (void *arg)
293 struct testdev *dev = arg;
297 if ((fd = open (dev->name, O_RDWR)) < 0) {
298 perror ("can't open dev file r/w");
303 for (i = 0; i < TEST_CASES; i++) {
304 if (dev->test != -1 && dev->test != i)
306 dev->param.test_num = i;
308 status = usbdev_ioctl (fd, dev->ifnum,
309 USBTEST_REQUEST, &dev->param);
310 if (status < 0 && errno == EOPNOTSUPP)
313 /* FIXME need a "syslog it" option for background testing */
315 /* NOTE: each thread emits complete lines; no fragments! */
320 if (strerror_r (errno, buf, sizeof buf)) {
321 snprintf (buf, sizeof buf, "error %d", err);
324 printf ("%s test %d --> %d (%s)\n",
325 dev->name, i, errno, buf);
327 printf ("%s test %d, %4d.%.06d secs\n", dev->name, i,
328 (int) dev->param.duration.tv_sec,
329 (int) dev->param.duration.tv_usec);
340 static const char *usb_dir_find(void)
342 static char udev_usb_path[] = "/dev/bus/usb";
344 if (access(udev_usb_path, F_OK) == 0)
345 return udev_usb_path;
350 static int parse_num(unsigned *num, const char *str)
356 val = strtoul(str, &end, 0);
357 if (errno || *end || val > UINT_MAX)
363 int main (int argc, char **argv)
367 struct testdev *entry;
369 const char *usb_dir = NULL;
370 int all = 0, forever = 0, not = 0;
371 int test = -1 /* all */;
372 struct usbtest_param param;
374 /* pick defaults that works with all speeds, without short packets.
376 * Best per-frame data rates:
377 * super speed,bulk 1024 * 16 * 8 = 131072
378 * interrupt 1024 * 3 * 8 = 24576
379 * high speed, bulk 512 * 13 * 8 = 53248
380 * interrupt 1024 * 3 * 8 = 24576
381 * full speed, bulk/intr 64 * 19 = 1216
382 * interrupt 64 * 1 = 64
383 * low speed, interrupt 8 * 1 = 8
385 param.iterations = 1000;
390 /* for easy use when hotplugging */
391 device = getenv ("DEVICE");
393 while ((c = getopt (argc, argv, "D:aA:c:g:hlns:t:v:")) != EOF)
395 case 'D': /* device, if only one */
398 case 'A': /* use all devices with specified USB dir */
401 case 'a': /* use all devices */
405 case 'c': /* count iterations */
406 if (parse_num(¶m.iterations, optarg))
409 case 'g': /* scatter/gather entries */
410 if (parse_num(¶m.sglen, optarg))
413 case 'l': /* loop forever */
416 case 'n': /* no test running! */
419 case 's': /* size of packet */
420 if (parse_num(¶m.length, optarg))
423 case 't': /* run just one test */
424 test = atoi (optarg);
428 case 'v': /* vary packet size by ... */
429 if (parse_num(¶m.vary, optarg))
437 "usage: %s [options]\n"
439 "\t-D dev only test specific device\n"
441 "\t-a test all recognized devices\n"
442 "\t-l loop forever(for stress test)\n"
443 "\t-t testnum only run specified case\n"
444 "\t-n no test running, show devices to be tested\n"
446 "\t-c iterations default 1000\n"
447 "\t-s transfer length default 1024\n"
448 "\t-g sglen default 32\n"
449 "\t-v vary default 1024\n",
455 if (!all && !device) {
456 fprintf (stderr, "must specify '-a' or '-D dev', "
457 "or DEVICE=/dev/bus/usb/BBB/DDD in env\n");
461 /* Find usb device subdirectory */
463 usb_dir = usb_dir_find();
465 fputs ("USB device files are missing\n", stderr);
470 /* collect and list the test devices */
471 if (ftw (usb_dir, find_testdev, 3) != 0) {
472 fputs ("ftw failed; are USB device files missing?\n", stderr);
476 /* quit, run single test, or create test threads */
477 if (!testdevs && !device) {
478 fputs ("no test devices recognized\n", stderr);
483 if (testdevs && testdevs->next == 0 && !device)
484 device = testdevs->name;
485 for (entry = testdevs; entry; entry = entry->next) {
488 entry->param = param;
489 entry->forever = forever;
493 if (strcmp (entry->name, device))
495 return handle_testdev (entry) != entry;
497 status = pthread_create (&entry->thread, 0, handle_testdev, entry);
499 perror ("pthread_create");
504 /* kernel can recognize test devices we don't */
505 fprintf (stderr, "%s: %s may see only control tests\n",
508 memset (&dev, 0, sizeof dev);
511 dev.forever = forever;
513 return handle_testdev (&dev) != &dev;
516 /* wait for tests to complete */
517 for (entry = testdevs; entry; entry = entry->next) {
520 if (pthread_join (entry->thread, &retval))
521 perror ("pthread_join");
522 /* testing errors discarded! */