3 * Denis Peter, MPL AG Switzerland
5 * Adapted for U-Boot driver model
6 * (C) Copyright 2015 Google, Inc
8 * Most of this source has been derived from the Linux USB
11 * SPDX-License-Identifier: GPL-2.0+
18 #include <dm/uclass-internal.h>
20 #include <asm/byteorder.h>
21 #include <asm/unaligned.h>
25 #ifdef CONFIG_USB_STORAGE
26 static int usb_stor_curr_dev = -1; /* current device */
28 #if defined(CONFIG_USB_HOST_ETHER) && !defined(CONFIG_DM_ETH)
29 static int __maybe_unused usb_ether_curr_dev = -1; /* current ethernet device */
32 /* some display routines (info command) */
33 static char *usb_get_class_desc(unsigned char dclass)
36 case USB_CLASS_PER_INTERFACE:
37 return "See Interface";
41 return "Communication";
43 return "Human Interface";
44 case USB_CLASS_PRINTER:
46 case USB_CLASS_MASS_STORAGE:
47 return "Mass Storage";
52 case USB_CLASS_VENDOR_SPEC:
53 return "Vendor specific";
59 static void usb_display_class_sub(unsigned char dclass, unsigned char subclass,
63 case USB_CLASS_PER_INTERFACE:
64 printf("See Interface");
67 printf("Human Interface, Subclass: ");
69 case USB_SUB_HID_NONE:
72 case USB_SUB_HID_BOOT:
75 case USB_PROT_HID_NONE:
78 case USB_PROT_HID_KEYBOARD:
81 case USB_PROT_HID_MOUSE:
94 case USB_CLASS_MASS_STORAGE:
95 printf("Mass Storage, ");
101 printf("SFF-8020i (ATAPI)");
104 printf("QIC-157 (Tape)");
113 printf("Transp. SCSI");
122 printf("Command/Bulk");
125 printf("Command/Bulk/Int");
136 printf("%s", usb_get_class_desc(dclass));
141 static void usb_display_string(struct usb_device *dev, int index)
143 ALLOC_CACHE_ALIGN_BUFFER(char, buffer, 256);
146 if (usb_string(dev, index, &buffer[0], 256) > 0)
147 printf("String: \"%s\"", buffer);
151 static void usb_display_desc(struct usb_device *dev)
153 if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) {
154 printf("%d: %s, USB Revision %x.%x\n", dev->devnum,
155 usb_get_class_desc(dev->config.if_desc[0].desc.bInterfaceClass),
156 (dev->descriptor.bcdUSB>>8) & 0xff,
157 dev->descriptor.bcdUSB & 0xff);
159 if (strlen(dev->mf) || strlen(dev->prod) ||
161 printf(" - %s %s %s\n", dev->mf, dev->prod,
163 if (dev->descriptor.bDeviceClass) {
164 printf(" - Class: ");
165 usb_display_class_sub(dev->descriptor.bDeviceClass,
166 dev->descriptor.bDeviceSubClass,
167 dev->descriptor.bDeviceProtocol);
170 printf(" - Class: (from Interface) %s\n",
172 dev->config.if_desc[0].desc.bInterfaceClass));
174 printf(" - PacketSize: %d Configurations: %d\n",
175 dev->descriptor.bMaxPacketSize0,
176 dev->descriptor.bNumConfigurations);
177 printf(" - Vendor: 0x%04x Product 0x%04x Version %d.%d\n",
178 dev->descriptor.idVendor, dev->descriptor.idProduct,
179 (dev->descriptor.bcdDevice>>8) & 0xff,
180 dev->descriptor.bcdDevice & 0xff);
185 static void usb_display_conf_desc(struct usb_config_descriptor *config,
186 struct usb_device *dev)
188 printf(" Configuration: %d\n", config->bConfigurationValue);
189 printf(" - Interfaces: %d %s%s%dmA\n", config->bNumInterfaces,
190 (config->bmAttributes & 0x40) ? "Self Powered " : "Bus Powered ",
191 (config->bmAttributes & 0x20) ? "Remote Wakeup " : "",
192 config->bMaxPower*2);
193 if (config->iConfiguration) {
195 usb_display_string(dev, config->iConfiguration);
200 static void usb_display_if_desc(struct usb_interface_descriptor *ifdesc,
201 struct usb_device *dev)
203 printf(" Interface: %d\n", ifdesc->bInterfaceNumber);
204 printf(" - Alternate Setting %d, Endpoints: %d\n",
205 ifdesc->bAlternateSetting, ifdesc->bNumEndpoints);
207 usb_display_class_sub(ifdesc->bInterfaceClass,
208 ifdesc->bInterfaceSubClass, ifdesc->bInterfaceProtocol);
210 if (ifdesc->iInterface) {
212 usb_display_string(dev, ifdesc->iInterface);
217 static void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc)
219 printf(" - Endpoint %d %s ", epdesc->bEndpointAddress & 0xf,
220 (epdesc->bEndpointAddress & 0x80) ? "In" : "Out");
221 switch ((epdesc->bmAttributes & 0x03)) {
226 printf("Isochronous");
235 printf(" MaxPacket %d", get_unaligned(&epdesc->wMaxPacketSize));
236 if ((epdesc->bmAttributes & 0x03) == 0x3)
237 printf(" Interval %dms", epdesc->bInterval);
241 /* main routine to diasplay the configs, interfaces and endpoints */
242 static void usb_display_config(struct usb_device *dev)
244 struct usb_config *config;
245 struct usb_interface *ifdesc;
246 struct usb_endpoint_descriptor *epdesc;
249 config = &dev->config;
250 usb_display_conf_desc(&config->desc, dev);
251 for (i = 0; i < config->no_of_if; i++) {
252 ifdesc = &config->if_desc[i];
253 usb_display_if_desc(&ifdesc->desc, dev);
254 for (ii = 0; ii < ifdesc->no_of_ep; ii++) {
255 epdesc = &ifdesc->ep_desc[ii];
256 usb_display_ep_desc(epdesc);
263 * With driver model this isn't right since we can have multiple controllers
264 * and the device numbering starts at 1 on each bus.
265 * TODO(sjg@chromium.org): Add a way to specify the controller/bus.
267 static struct usb_device *usb_find_device(int devnum)
270 struct usb_device *udev;
275 /* Device addresses start at 1 */
277 ret = uclass_get(UCLASS_USB_HUB, &uc);
281 uclass_foreach_dev(hub, uc) {
284 if (!device_active(hub))
286 udev = dev_get_parent_priv(hub);
287 if (udev->devnum == devnum)
290 for (device_find_first_child(hub, &dev);
292 device_find_next_child(&dev)) {
293 if (!device_active(hub))
296 udev = dev_get_parent_priv(dev);
297 if (udev->devnum == devnum)
302 struct usb_device *udev;
305 for (d = 0; d < USB_MAX_DEVICE; d++) {
306 udev = usb_get_dev_index(d);
309 if (udev->devnum == devnum)
317 static inline char *portspeed(int speed)
322 case USB_SPEED_SUPER:
323 speed_str = "5 Gb/s";
326 speed_str = "480 Mb/s";
329 speed_str = "1.5 Mb/s";
332 speed_str = "12 Mb/s";
339 /* shows the device tree recursively */
340 static void usb_show_tree_graph(struct usb_device *dev, char *pre)
343 int has_child, last_child;
348 has_child = device_has_active_children(dev->dev);
350 /* check if the device has connected children */
354 for (i = 0; i < dev->maxchild; i++) {
355 if (dev->children[i] != NULL)
359 /* check if we are the last one */
361 /* Not the root of the usb tree? */
362 if (device_get_uclass_id(dev->dev->parent) != UCLASS_USB) {
363 last_child = device_is_last_sibling(dev->dev);
365 if (dev->parent != NULL) { /* not root? */
367 for (i = 0; i < dev->parent->maxchild; i++) {
368 /* search for children */
369 if (dev->parent->children[i] == dev) {
370 /* found our pointer, see if we have a
373 while (i++ < dev->parent->maxchild) {
374 if (dev->parent->children[i] != NULL) {
381 } /* for all children of the parent */
384 /* correct last child */
385 if (last_child && index)
387 } /* if not root hub */
390 printf("%d ", dev->devnum);
392 pre[index++] = has_child ? '|' : ' ';
394 printf(" %s (%s, %dmA)\n", usb_get_class_desc(
395 dev->config.if_desc[0].desc.bInterfaceClass),
396 portspeed(dev->speed),
397 dev->config.desc.bMaxPower * 2);
398 if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial))
399 printf(" %s %s %s %s\n", pre, dev->mf, dev->prod, dev->serial);
400 printf(" %s\n", pre);
402 struct udevice *child;
404 for (device_find_first_child(dev->dev, &child);
406 device_find_next_child(&child)) {
407 struct usb_device *udev;
409 if (!device_active(child))
412 udev = dev_get_parent_priv(child);
414 /* Ignore emulators, we only want real devices */
415 if (device_get_uclass_id(child) != UCLASS_USB_EMUL) {
416 usb_show_tree_graph(udev, pre);
421 if (dev->maxchild > 0) {
422 for (i = 0; i < dev->maxchild; i++) {
423 if (dev->children[i] != NULL) {
424 usb_show_tree_graph(dev->children[i], pre);
432 /* main routine for the tree command */
433 static void usb_show_subtree(struct usb_device *dev)
437 memset(preamble, '\0', sizeof(preamble));
438 usb_show_tree_graph(dev, &preamble[0]);
441 void usb_show_tree(void)
446 for (uclass_find_first_device(UCLASS_USB, &bus);
448 uclass_find_next_device(&bus)) {
449 struct usb_device *udev;
452 if (!device_active(bus))
455 device_find_first_child(bus, &dev);
456 if (dev && device_active(dev)) {
457 udev = dev_get_parent_priv(dev);
458 usb_show_subtree(udev);
462 struct usb_device *udev;
465 for (i = 0; i < USB_MAX_DEVICE; i++) {
466 udev = usb_get_dev_index(i);
469 if (udev->parent == NULL)
470 usb_show_subtree(udev);
475 static int usb_test(struct usb_device *dev, int port, char* arg)
479 if (port > dev->maxchild) {
480 printf("Device is no hub or does not have %d ports.\n", port);
487 printf("Setting Test_J mode");
488 mode = USB_TEST_MODE_J;
492 printf("Setting Test_K mode");
493 mode = USB_TEST_MODE_K;
497 printf("Setting Test_SE0_NAK mode");
498 mode = USB_TEST_MODE_SE0_NAK;
502 printf("Setting Test_Packet mode");
503 mode = USB_TEST_MODE_PACKET;
507 printf("Setting Test_Force_Enable mode");
508 mode = USB_TEST_MODE_FORCE_ENABLE;
511 printf("Unrecognized test mode: %s\nAvailable modes: "
512 "J, K, S[E0_NAK], P[acket], F[orce_Enable]\n", arg);
517 printf(" on downstream facing port %d...\n", port);
519 printf(" on upstream facing port...\n");
521 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_FEATURE,
522 port ? USB_RT_PORT : USB_RECIP_DEVICE,
523 port ? USB_PORT_FEAT_TEST : USB_FEAT_TEST,
525 NULL, 0, USB_CNTL_TIMEOUT) == -1) {
526 printf("Error during SET_FEATURE.\n");
529 printf("Test mode successfully set. Use 'usb start' "
530 "to return to normal operation.\n");
536 /******************************************************************************
537 * usb boot command intepreter. Derived from diskboot
539 #ifdef CONFIG_USB_STORAGE
540 static int do_usbboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
542 return common_diskboot(cmdtp, "usb", argc, argv);
544 #endif /* CONFIG_USB_STORAGE */
546 static int do_usb_stop_keyboard(int force)
548 #if !defined CONFIG_DM_USB && defined CONFIG_USB_KEYBOARD
549 if (usb_kbd_deregister(force) != 0) {
550 printf("USB not stopped: usbkbd still using USB\n");
557 static void do_usb_start(void)
559 bootstage_mark_name(BOOTSTAGE_ID_USB_START, "usb_start");
564 /* Driver model will probe the devices as they are found */
565 #ifndef CONFIG_DM_USB
566 # ifdef CONFIG_USB_STORAGE
567 /* try to recognize storage devices immediately */
568 usb_stor_curr_dev = usb_stor_scan(1);
570 # ifdef CONFIG_USB_KEYBOARD
573 #endif /* !CONFIG_DM_USB */
574 #ifdef CONFIG_USB_HOST_ETHER
575 # ifdef CONFIG_DM_ETH
576 # ifndef CONFIG_DM_USB
577 # error "You must use CONFIG_DM_USB if you want to use CONFIG_USB_HOST_ETHER with CONFIG_DM_ETH"
580 /* try to recognize ethernet devices immediately */
581 usb_ether_curr_dev = usb_host_eth_scan(1);
587 static void show_info(struct udevice *dev)
589 struct udevice *child;
590 struct usb_device *udev;
592 udev = dev_get_parent_priv(dev);
593 usb_display_desc(udev);
594 usb_display_config(udev);
595 for (device_find_first_child(dev, &child);
597 device_find_next_child(&child)) {
598 if (device_active(child))
603 static int usb_device_info(void)
607 for (uclass_first_device(UCLASS_USB, &bus);
609 uclass_next_device(&bus)) {
612 device_find_first_child(bus, &hub);
613 if (device_get_uclass_id(hub) == UCLASS_USB_HUB &&
614 device_active(hub)) {
623 /******************************************************************************
624 * usb command intepreter
626 static int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
628 struct usb_device *udev = NULL;
630 extern char usb_started;
631 #ifdef CONFIG_USB_STORAGE
632 struct blk_desc *stor_dev;
636 return CMD_RET_USAGE;
638 if (strncmp(argv[1], "start", 5) == 0) {
640 return 0; /* Already started */
641 printf("starting USB...\n");
646 if (strncmp(argv[1], "reset", 5) == 0) {
647 printf("resetting USB...\n");
648 if (do_usb_stop_keyboard(1) != 0)
654 if (strncmp(argv[1], "stop", 4) == 0) {
656 console_assign(stdin, "serial");
657 if (do_usb_stop_keyboard(0) != 0)
659 printf("stopping USB..\n");
664 printf("USB is stopped. Please issue 'usb start' first.\n");
667 if (strncmp(argv[1], "tree", 4) == 0) {
668 puts("USB device tree:\n");
672 if (strncmp(argv[1], "inf", 3) == 0) {
678 for (d = 0; d < USB_MAX_DEVICE; d++) {
679 udev = usb_get_dev_index(d);
682 usb_display_desc(udev);
683 usb_display_config(udev);
689 * With driver model this isn't right since we can
690 * have multiple controllers and the device numbering
691 * starts at 1 on each bus.
693 i = simple_strtoul(argv[2], NULL, 10);
694 printf("config for device %d\n", i);
695 udev = usb_find_device(i);
697 printf("*** No device available ***\n");
700 usb_display_desc(udev);
701 usb_display_config(udev);
706 if (strncmp(argv[1], "test", 4) == 0) {
708 return CMD_RET_USAGE;
709 i = simple_strtoul(argv[2], NULL, 10);
710 udev = usb_find_device(i);
712 printf("Device %d does not exist.\n", i);
715 i = simple_strtoul(argv[3], NULL, 10);
716 return usb_test(udev, i, argv[4]);
718 #ifdef CONFIG_USB_STORAGE
719 if (strncmp(argv[1], "stor", 4) == 0)
720 return usb_stor_info();
722 if (strncmp(argv[1], "part", 4) == 0) {
725 for (devno = 0; ; ++devno) {
726 stor_dev = blk_get_devnum_by_type(IF_TYPE_USB,
728 if (stor_dev == NULL)
730 if (stor_dev->type != DEV_TYPE_UNKNOWN) {
734 debug("print_part of %x\n", devno);
735 part_print(stor_dev);
739 devno = simple_strtoul(argv[2], NULL, 16);
740 stor_dev = blk_get_devnum_by_type(IF_TYPE_USB, devno);
741 if (stor_dev != NULL &&
742 stor_dev->type != DEV_TYPE_UNKNOWN) {
744 debug("print_part of %x\n", devno);
745 part_print(stor_dev);
749 printf("\nno USB devices available\n");
754 if (strcmp(argv[1], "read") == 0) {
755 if (usb_stor_curr_dev < 0) {
756 printf("no current device selected\n");
760 unsigned long addr = simple_strtoul(argv[2], NULL, 16);
761 unsigned long blk = simple_strtoul(argv[3], NULL, 16);
762 unsigned long cnt = simple_strtoul(argv[4], NULL, 16);
764 printf("\nUSB read: device %d block # %ld, count %ld"
765 " ... ", usb_stor_curr_dev, blk, cnt);
766 stor_dev = blk_get_devnum_by_type(IF_TYPE_USB,
768 n = blk_dread(stor_dev, blk, cnt, (ulong *)addr);
769 printf("%ld blocks read: %s\n", n,
770 (n == cnt) ? "OK" : "ERROR");
776 if (strcmp(argv[1], "write") == 0) {
777 if (usb_stor_curr_dev < 0) {
778 printf("no current device selected\n");
782 unsigned long addr = simple_strtoul(argv[2], NULL, 16);
783 unsigned long blk = simple_strtoul(argv[3], NULL, 16);
784 unsigned long cnt = simple_strtoul(argv[4], NULL, 16);
786 printf("\nUSB write: device %d block # %ld, count %ld"
787 " ... ", usb_stor_curr_dev, blk, cnt);
788 stor_dev = blk_get_devnum_by_type(IF_TYPE_USB,
790 n = blk_dwrite(stor_dev, blk, cnt, (ulong *)addr);
791 printf("%ld blocks write: %s\n", n,
792 (n == cnt) ? "OK" : "ERROR");
798 if (strncmp(argv[1], "dev", 3) == 0) {
800 int dev = (int)simple_strtoul(argv[2], NULL, 10);
801 printf("\nUSB device %d: ", dev);
802 stor_dev = blk_get_devnum_by_type(IF_TYPE_USB, dev);
803 if (stor_dev == NULL) {
804 printf("unknown device\n");
807 printf("\n Device %d: ", dev);
809 if (stor_dev->type == DEV_TYPE_UNKNOWN)
811 usb_stor_curr_dev = dev;
812 printf("... is now current device\n");
815 printf("\nUSB device %d: ", usb_stor_curr_dev);
816 stor_dev = blk_get_devnum_by_type(IF_TYPE_USB,
819 if (stor_dev->type == DEV_TYPE_UNKNOWN)
825 #endif /* CONFIG_USB_STORAGE */
826 return CMD_RET_USAGE;
832 "start - start (scan) USB controller\n"
833 "usb reset - reset (rescan) USB controller\n"
834 "usb stop [f] - stop USB [f]=force stop\n"
835 "usb tree - show USB device tree\n"
836 "usb info [dev] - show available USB devices\n"
837 "usb test [dev] [port] [mode] - set USB 2.0 test mode\n"
838 " (specify port 0 to indicate the device's upstream port)\n"
839 " Available modes: J, K, S[E0_NAK], P[acket], F[orce_Enable]\n"
840 #ifdef CONFIG_USB_STORAGE
841 "usb storage - show details of USB storage devices\n"
842 "usb dev [dev] - show or set current USB storage device\n"
843 "usb part [dev] - print partition table of one or all USB storage"
845 "usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
846 " to memory address `addr'\n"
847 "usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'\n"
848 " from memory address `addr'"
849 #endif /* CONFIG_USB_STORAGE */
853 #ifdef CONFIG_USB_STORAGE
855 usbboot, 3, 1, do_usbboot,
856 "boot from USB device",
859 #endif /* CONFIG_USB_STORAGE */