common: Drop part.h from common header
[oweals/u-boot.git] / cmd / usb.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2001
4  * Denis Peter, MPL AG Switzerland
5  *
6  * Adapted for U-Boot driver model
7  * (C) Copyright 2015 Google, Inc
8  *
9  * Most of this source has been derived from the Linux USB
10  * project.
11  */
12
13 #include <common.h>
14 #include <blk.h>
15 #include <command.h>
16 #include <console.h>
17 #include <dm.h>
18 #include <dm/uclass-internal.h>
19 #include <memalign.h>
20 #include <asm/byteorder.h>
21 #include <asm/unaligned.h>
22 #include <part.h>
23 #include <usb.h>
24
25 #ifdef CONFIG_USB_STORAGE
26 static int usb_stor_curr_dev = -1; /* current device */
27 #endif
28 #if defined(CONFIG_USB_HOST_ETHER) && !defined(CONFIG_DM_ETH)
29 static int __maybe_unused usb_ether_curr_dev = -1; /* current ethernet device */
30 #endif
31
32 /* some display routines (info command) */
33 static char *usb_get_class_desc(unsigned char dclass)
34 {
35         switch (dclass) {
36         case USB_CLASS_PER_INTERFACE:
37                 return "See Interface";
38         case USB_CLASS_AUDIO:
39                 return "Audio";
40         case USB_CLASS_COMM:
41                 return "Communication";
42         case USB_CLASS_HID:
43                 return "Human Interface";
44         case USB_CLASS_PRINTER:
45                 return "Printer";
46         case USB_CLASS_MASS_STORAGE:
47                 return "Mass Storage";
48         case USB_CLASS_HUB:
49                 return "Hub";
50         case USB_CLASS_DATA:
51                 return "CDC Data";
52         case USB_CLASS_VENDOR_SPEC:
53                 return "Vendor specific";
54         default:
55                 return "";
56         }
57 }
58
59 static void usb_display_class_sub(unsigned char dclass, unsigned char subclass,
60                                   unsigned char proto)
61 {
62         switch (dclass) {
63         case USB_CLASS_PER_INTERFACE:
64                 printf("See Interface");
65                 break;
66         case USB_CLASS_HID:
67                 printf("Human Interface, Subclass: ");
68                 switch (subclass) {
69                 case USB_SUB_HID_NONE:
70                         printf("None");
71                         break;
72                 case USB_SUB_HID_BOOT:
73                         printf("Boot ");
74                         switch (proto) {
75                         case USB_PROT_HID_NONE:
76                                 printf("None");
77                                 break;
78                         case USB_PROT_HID_KEYBOARD:
79                                 printf("Keyboard");
80                                 break;
81                         case USB_PROT_HID_MOUSE:
82                                 printf("Mouse");
83                                 break;
84                         default:
85                                 printf("reserved");
86                                 break;
87                         }
88                         break;
89                 default:
90                         printf("reserved");
91                         break;
92                 }
93                 break;
94         case USB_CLASS_MASS_STORAGE:
95                 printf("Mass Storage, ");
96                 switch (subclass) {
97                 case US_SC_RBC:
98                         printf("RBC ");
99                         break;
100                 case US_SC_8020:
101                         printf("SFF-8020i (ATAPI)");
102                         break;
103                 case US_SC_QIC:
104                         printf("QIC-157 (Tape)");
105                         break;
106                 case US_SC_UFI:
107                         printf("UFI");
108                         break;
109                 case US_SC_8070:
110                         printf("SFF-8070");
111                         break;
112                 case US_SC_SCSI:
113                         printf("Transp. SCSI");
114                         break;
115                 default:
116                         printf("reserved");
117                         break;
118                 }
119                 printf(", ");
120                 switch (proto) {
121                 case US_PR_CB:
122                         printf("Command/Bulk");
123                         break;
124                 case US_PR_CBI:
125                         printf("Command/Bulk/Int");
126                         break;
127                 case US_PR_BULK:
128                         printf("Bulk only");
129                         break;
130                 default:
131                         printf("reserved");
132                         break;
133                 }
134                 break;
135         default:
136                 printf("%s", usb_get_class_desc(dclass));
137                 break;
138         }
139 }
140
141 static void usb_display_string(struct usb_device *dev, int index)
142 {
143         ALLOC_CACHE_ALIGN_BUFFER(char, buffer, 256);
144
145         if (index != 0) {
146                 if (usb_string(dev, index, &buffer[0], 256) > 0)
147                         printf("String: \"%s\"", buffer);
148         }
149 }
150
151 static void usb_display_desc(struct usb_device *dev)
152 {
153         uint packet_size = dev->descriptor.bMaxPacketSize0;
154
155         if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) {
156                 printf("%d: %s,  USB Revision %x.%x\n", dev->devnum,
157                 usb_get_class_desc(dev->config.if_desc[0].desc.bInterfaceClass),
158                                    (dev->descriptor.bcdUSB>>8) & 0xff,
159                                    dev->descriptor.bcdUSB & 0xff);
160
161                 if (strlen(dev->mf) || strlen(dev->prod) ||
162                     strlen(dev->serial))
163                         printf(" - %s %s %s\n", dev->mf, dev->prod,
164                                 dev->serial);
165                 if (dev->descriptor.bDeviceClass) {
166                         printf(" - Class: ");
167                         usb_display_class_sub(dev->descriptor.bDeviceClass,
168                                               dev->descriptor.bDeviceSubClass,
169                                               dev->descriptor.bDeviceProtocol);
170                         printf("\n");
171                 } else {
172                         printf(" - Class: (from Interface) %s\n",
173                                usb_get_class_desc(
174                                 dev->config.if_desc[0].desc.bInterfaceClass));
175                 }
176                 if (dev->descriptor.bcdUSB >= cpu_to_le16(0x0300))
177                         packet_size = 1 << packet_size;
178                 printf(" - PacketSize: %d  Configurations: %d\n",
179                         packet_size, dev->descriptor.bNumConfigurations);
180                 printf(" - Vendor: 0x%04x  Product 0x%04x Version %d.%d\n",
181                         dev->descriptor.idVendor, dev->descriptor.idProduct,
182                         (dev->descriptor.bcdDevice>>8) & 0xff,
183                         dev->descriptor.bcdDevice & 0xff);
184         }
185
186 }
187
188 static void usb_display_conf_desc(struct usb_config_descriptor *config,
189                                   struct usb_device *dev)
190 {
191         printf("   Configuration: %d\n", config->bConfigurationValue);
192         printf("   - Interfaces: %d %s%s%dmA\n", config->bNumInterfaces,
193                (config->bmAttributes & 0x40) ? "Self Powered " : "Bus Powered ",
194                (config->bmAttributes & 0x20) ? "Remote Wakeup " : "",
195                 config->bMaxPower*2);
196         if (config->iConfiguration) {
197                 printf("   - ");
198                 usb_display_string(dev, config->iConfiguration);
199                 printf("\n");
200         }
201 }
202
203 static void usb_display_if_desc(struct usb_interface_descriptor *ifdesc,
204                                 struct usb_device *dev)
205 {
206         printf("     Interface: %d\n", ifdesc->bInterfaceNumber);
207         printf("     - Alternate Setting %d, Endpoints: %d\n",
208                 ifdesc->bAlternateSetting, ifdesc->bNumEndpoints);
209         printf("     - Class ");
210         usb_display_class_sub(ifdesc->bInterfaceClass,
211                 ifdesc->bInterfaceSubClass, ifdesc->bInterfaceProtocol);
212         printf("\n");
213         if (ifdesc->iInterface) {
214                 printf("     - ");
215                 usb_display_string(dev, ifdesc->iInterface);
216                 printf("\n");
217         }
218 }
219
220 static void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc)
221 {
222         printf("     - Endpoint %d %s ", epdesc->bEndpointAddress & 0xf,
223                 (epdesc->bEndpointAddress & 0x80) ? "In" : "Out");
224         switch ((epdesc->bmAttributes & 0x03)) {
225         case 0:
226                 printf("Control");
227                 break;
228         case 1:
229                 printf("Isochronous");
230                 break;
231         case 2:
232                 printf("Bulk");
233                 break;
234         case 3:
235                 printf("Interrupt");
236                 break;
237         }
238         printf(" MaxPacket %d", get_unaligned(&epdesc->wMaxPacketSize));
239         if ((epdesc->bmAttributes & 0x03) == 0x3)
240                 printf(" Interval %dms", epdesc->bInterval);
241         printf("\n");
242 }
243
244 /* main routine to diasplay the configs, interfaces and endpoints */
245 static void usb_display_config(struct usb_device *dev)
246 {
247         struct usb_config *config;
248         struct usb_interface *ifdesc;
249         struct usb_endpoint_descriptor *epdesc;
250         int i, ii;
251
252         config = &dev->config;
253         usb_display_conf_desc(&config->desc, dev);
254         for (i = 0; i < config->no_of_if; i++) {
255                 ifdesc = &config->if_desc[i];
256                 usb_display_if_desc(&ifdesc->desc, dev);
257                 for (ii = 0; ii < ifdesc->no_of_ep; ii++) {
258                         epdesc = &ifdesc->ep_desc[ii];
259                         usb_display_ep_desc(epdesc);
260                 }
261         }
262         printf("\n");
263 }
264
265 /*
266  * With driver model this isn't right since we can have multiple controllers
267  * and the device numbering starts at 1 on each bus.
268  * TODO(sjg@chromium.org): Add a way to specify the controller/bus.
269  */
270 static struct usb_device *usb_find_device(int devnum)
271 {
272 #ifdef CONFIG_DM_USB
273         struct usb_device *udev;
274         struct udevice *hub;
275         struct uclass *uc;
276         int ret;
277
278         /* Device addresses start at 1 */
279         devnum++;
280         ret = uclass_get(UCLASS_USB_HUB, &uc);
281         if (ret)
282                 return NULL;
283
284         uclass_foreach_dev(hub, uc) {
285                 struct udevice *dev;
286
287                 if (!device_active(hub))
288                         continue;
289                 udev = dev_get_parent_priv(hub);
290                 if (udev->devnum == devnum)
291                         return udev;
292
293                 for (device_find_first_child(hub, &dev);
294                      dev;
295                      device_find_next_child(&dev)) {
296                         if (!device_active(hub))
297                                 continue;
298
299                         udev = dev_get_parent_priv(dev);
300                         if (udev->devnum == devnum)
301                                 return udev;
302                 }
303         }
304 #else
305         struct usb_device *udev;
306         int d;
307
308         for (d = 0; d < USB_MAX_DEVICE; d++) {
309                 udev = usb_get_dev_index(d);
310                 if (udev == NULL)
311                         return NULL;
312                 if (udev->devnum == devnum)
313                         return udev;
314         }
315 #endif
316
317         return NULL;
318 }
319
320 static inline const char *portspeed(int speed)
321 {
322         switch (speed) {
323         case USB_SPEED_SUPER:
324                 return "5 Gb/s";
325         case USB_SPEED_HIGH:
326                 return "480 Mb/s";
327         case USB_SPEED_LOW:
328                 return "1.5 Mb/s";
329         default:
330                 return "12 Mb/s";
331         }
332 }
333
334 /* shows the device tree recursively */
335 static void usb_show_tree_graph(struct usb_device *dev, char *pre)
336 {
337         int index;
338         int has_child, last_child;
339
340         index = strlen(pre);
341         printf(" %s", pre);
342 #ifdef CONFIG_DM_USB
343         has_child = device_has_active_children(dev->dev);
344         if (device_get_uclass_id(dev->dev) == UCLASS_MASS_STORAGE) {
345                 struct udevice *child;
346
347                 for (device_find_first_child(dev->dev, &child);
348                      child;
349                      device_find_next_child(&child)) {
350                         if (device_get_uclass_id(child) == UCLASS_BLK)
351                                 has_child = 0;
352                 }
353         }
354 #else
355         /* check if the device has connected children */
356         int i;
357
358         has_child = 0;
359         for (i = 0; i < dev->maxchild; i++) {
360                 if (dev->children[i] != NULL)
361                         has_child = 1;
362         }
363 #endif
364         /* check if we are the last one */
365 #ifdef CONFIG_DM_USB
366         /* Not the root of the usb tree? */
367         if (device_get_uclass_id(dev->dev->parent) != UCLASS_USB) {
368                 last_child = device_is_last_sibling(dev->dev);
369 #else
370         if (dev->parent != NULL) { /* not root? */
371                 last_child = 1;
372                 for (i = 0; i < dev->parent->maxchild; i++) {
373                         /* search for children */
374                         if (dev->parent->children[i] == dev) {
375                                 /* found our pointer, see if we have a
376                                  * little sister
377                                  */
378                                 while (i++ < dev->parent->maxchild) {
379                                         if (dev->parent->children[i] != NULL) {
380                                                 /* found a sister */
381                                                 last_child = 0;
382                                                 break;
383                                         } /* if */
384                                 } /* while */
385                         } /* device found */
386                 } /* for all children of the parent */
387 #endif
388                 printf("\b+-");
389                 /* correct last child */
390                 if (last_child && index)
391                         pre[index-1] = ' ';
392         } /* if not root hub */
393         else
394                 printf(" ");
395         printf("%d ", dev->devnum);
396         pre[index++] = ' ';
397         pre[index++] = has_child ? '|' : ' ';
398         pre[index] = 0;
399         printf(" %s (%s, %dmA)\n", usb_get_class_desc(
400                                         dev->config.if_desc[0].desc.bInterfaceClass),
401                                         portspeed(dev->speed),
402                                         dev->config.desc.bMaxPower * 2);
403         if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial))
404                 printf(" %s  %s %s %s\n", pre, dev->mf, dev->prod, dev->serial);
405         printf(" %s\n", pre);
406 #ifdef CONFIG_DM_USB
407         struct udevice *child;
408
409         for (device_find_first_child(dev->dev, &child);
410              child;
411              device_find_next_child(&child)) {
412                 struct usb_device *udev;
413
414                 if (!device_active(child))
415                         continue;
416
417                 udev = dev_get_parent_priv(child);
418
419                 /*
420                  * Ignore emulators and block child devices, we only want
421                  * real devices
422                  */
423                 if ((device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
424                     (device_get_uclass_id(child) != UCLASS_BLK)) {
425                         usb_show_tree_graph(udev, pre);
426                         pre[index] = 0;
427                 }
428         }
429 #else
430         if (dev->maxchild > 0) {
431                 for (i = 0; i < dev->maxchild; i++) {
432                         if (dev->children[i] != NULL) {
433                                 usb_show_tree_graph(dev->children[i], pre);
434                                 pre[index] = 0;
435                         }
436                 }
437         }
438 #endif
439 }
440
441 /* main routine for the tree command */
442 static void usb_show_subtree(struct usb_device *dev)
443 {
444         char preamble[32];
445
446         memset(preamble, '\0', sizeof(preamble));
447         usb_show_tree_graph(dev, &preamble[0]);
448 }
449
450 #ifdef CONFIG_DM_USB
451 typedef void (*usb_dev_func_t)(struct usb_device *udev);
452
453 static void usb_for_each_root_dev(usb_dev_func_t func)
454 {
455         struct udevice *bus;
456
457         for (uclass_find_first_device(UCLASS_USB, &bus);
458                 bus;
459                 uclass_find_next_device(&bus)) {
460                 struct usb_device *udev;
461                 struct udevice *dev;
462
463                 if (!device_active(bus))
464                         continue;
465
466                 device_find_first_child(bus, &dev);
467                 if (dev && device_active(dev)) {
468                         udev = dev_get_parent_priv(dev);
469                         func(udev);
470                 }
471         }
472 }
473 #endif
474
475 void usb_show_tree(void)
476 {
477 #ifdef CONFIG_DM_USB
478         usb_for_each_root_dev(usb_show_subtree);
479 #else
480         struct usb_device *udev;
481         int i;
482
483         for (i = 0; i < USB_MAX_DEVICE; i++) {
484                 udev = usb_get_dev_index(i);
485                 if (udev == NULL)
486                         break;
487                 if (udev->parent == NULL)
488                         usb_show_subtree(udev);
489         }
490 #endif
491 }
492
493 static int usb_test(struct usb_device *dev, int port, char* arg)
494 {
495         int mode;
496
497         if (port > dev->maxchild) {
498                 printf("Device is no hub or does not have %d ports.\n", port);
499                 return 1;
500         }
501
502         switch (arg[0]) {
503         case 'J':
504         case 'j':
505                 printf("Setting Test_J mode");
506                 mode = USB_TEST_MODE_J;
507                 break;
508         case 'K':
509         case 'k':
510                 printf("Setting Test_K mode");
511                 mode = USB_TEST_MODE_K;
512                 break;
513         case 'S':
514         case 's':
515                 printf("Setting Test_SE0_NAK mode");
516                 mode = USB_TEST_MODE_SE0_NAK;
517                 break;
518         case 'P':
519         case 'p':
520                 printf("Setting Test_Packet mode");
521                 mode = USB_TEST_MODE_PACKET;
522                 break;
523         case 'F':
524         case 'f':
525                 printf("Setting Test_Force_Enable mode");
526                 mode = USB_TEST_MODE_FORCE_ENABLE;
527                 break;
528         default:
529                 printf("Unrecognized test mode: %s\nAvailable modes: "
530                        "J, K, S[E0_NAK], P[acket], F[orce_Enable]\n", arg);
531                 return 1;
532         }
533
534         if (port)
535                 printf(" on downstream facing port %d...\n", port);
536         else
537                 printf(" on upstream facing port...\n");
538
539         if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_FEATURE,
540                             port ? USB_RT_PORT : USB_RECIP_DEVICE,
541                             port ? USB_PORT_FEAT_TEST : USB_FEAT_TEST,
542                             (mode << 8) | port,
543                             NULL, 0, USB_CNTL_TIMEOUT) == -1) {
544                 printf("Error during SET_FEATURE.\n");
545                 return 1;
546         } else {
547                 printf("Test mode successfully set. Use 'usb start' "
548                        "to return to normal operation.\n");
549                 return 0;
550         }
551 }
552
553
554 /******************************************************************************
555  * usb boot command intepreter. Derived from diskboot
556  */
557 #ifdef CONFIG_USB_STORAGE
558 static int do_usbboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
559 {
560         return common_diskboot(cmdtp, "usb", argc, argv);
561 }
562 #endif /* CONFIG_USB_STORAGE */
563
564 static int do_usb_stop_keyboard(int force)
565 {
566 #if !defined CONFIG_DM_USB && defined CONFIG_USB_KEYBOARD
567         if (usb_kbd_deregister(force) != 0) {
568                 printf("USB not stopped: usbkbd still using USB\n");
569                 return 1;
570         }
571 #endif
572         return 0;
573 }
574
575 static void do_usb_start(void)
576 {
577         bootstage_mark_name(BOOTSTAGE_ID_USB_START, "usb_start");
578
579         if (usb_init() < 0)
580                 return;
581
582         /* Driver model will probe the devices as they are found */
583 # ifdef CONFIG_USB_STORAGE
584         /* try to recognize storage devices immediately */
585         usb_stor_curr_dev = usb_stor_scan(1);
586 # endif
587 #ifndef CONFIG_DM_USB
588 # ifdef CONFIG_USB_KEYBOARD
589         drv_usb_kbd_init();
590 # endif
591 #endif /* !CONFIG_DM_USB */
592 #ifdef CONFIG_USB_HOST_ETHER
593 # ifdef CONFIG_DM_ETH
594 #  ifndef CONFIG_DM_USB
595 #   error "You must use CONFIG_DM_USB if you want to use CONFIG_USB_HOST_ETHER with CONFIG_DM_ETH"
596 #  endif
597 # else
598         /* try to recognize ethernet devices immediately */
599         usb_ether_curr_dev = usb_host_eth_scan(1);
600 # endif
601 #endif
602 }
603
604 #ifdef CONFIG_DM_USB
605 static void usb_show_info(struct usb_device *udev)
606 {
607         struct udevice *child;
608
609         usb_display_desc(udev);
610         usb_display_config(udev);
611         for (device_find_first_child(udev->dev, &child);
612              child;
613              device_find_next_child(&child)) {
614                 if (device_active(child) &&
615                     (device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
616                     (device_get_uclass_id(child) != UCLASS_BLK)) {
617                         udev = dev_get_parent_priv(child);
618                         usb_show_info(udev);
619                 }
620         }
621 }
622 #endif
623
624 /******************************************************************************
625  * usb command intepreter
626  */
627 static int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
628 {
629         struct usb_device *udev = NULL;
630         int i;
631         extern char usb_started;
632
633         if (argc < 2)
634                 return CMD_RET_USAGE;
635
636         if (strncmp(argv[1], "start", 5) == 0) {
637                 if (usb_started)
638                         return 0; /* Already started */
639                 printf("starting USB...\n");
640                 do_usb_start();
641                 return 0;
642         }
643
644         if (strncmp(argv[1], "reset", 5) == 0) {
645                 printf("resetting USB...\n");
646                 if (do_usb_stop_keyboard(1) != 0)
647                         return 1;
648                 usb_stop();
649                 do_usb_start();
650                 return 0;
651         }
652         if (strncmp(argv[1], "stop", 4) == 0) {
653                 if (argc != 2)
654                         console_assign(stdin, "serial");
655                 if (do_usb_stop_keyboard(0) != 0)
656                         return 1;
657                 printf("stopping USB..\n");
658                 usb_stop();
659                 return 0;
660         }
661         if (!usb_started) {
662                 printf("USB is stopped. Please issue 'usb start' first.\n");
663                 return 1;
664         }
665         if (strncmp(argv[1], "tree", 4) == 0) {
666                 puts("USB device tree:\n");
667                 usb_show_tree();
668                 return 0;
669         }
670         if (strncmp(argv[1], "inf", 3) == 0) {
671                 if (argc == 2) {
672 #ifdef CONFIG_DM_USB
673                         usb_for_each_root_dev(usb_show_info);
674 #else
675                         int d;
676                         for (d = 0; d < USB_MAX_DEVICE; d++) {
677                                 udev = usb_get_dev_index(d);
678                                 if (udev == NULL)
679                                         break;
680                                 usb_display_desc(udev);
681                                 usb_display_config(udev);
682                         }
683 #endif
684                         return 0;
685                 } else {
686                         /*
687                          * With driver model this isn't right since we can
688                          * have multiple controllers and the device numbering
689                          * starts at 1 on each bus.
690                          */
691                         i = simple_strtoul(argv[2], NULL, 10);
692                         printf("config for device %d\n", i);
693                         udev = usb_find_device(i);
694                         if (udev == NULL) {
695                                 printf("*** No device available ***\n");
696                                 return 0;
697                         } else {
698                                 usb_display_desc(udev);
699                                 usb_display_config(udev);
700                         }
701                 }
702                 return 0;
703         }
704         if (strncmp(argv[1], "test", 4) == 0) {
705                 if (argc < 5)
706                         return CMD_RET_USAGE;
707                 i = simple_strtoul(argv[2], NULL, 10);
708                 udev = usb_find_device(i);
709                 if (udev == NULL) {
710                         printf("Device %d does not exist.\n", i);
711                         return 1;
712                 }
713                 i = simple_strtoul(argv[3], NULL, 10);
714                 return usb_test(udev, i, argv[4]);
715         }
716 #ifdef CONFIG_USB_STORAGE
717         if (strncmp(argv[1], "stor", 4) == 0)
718                 return usb_stor_info();
719
720         return blk_common_cmd(argc, argv, IF_TYPE_USB, &usb_stor_curr_dev);
721 #else
722         return CMD_RET_USAGE;
723 #endif /* CONFIG_USB_STORAGE */
724 }
725
726 U_BOOT_CMD(
727         usb,    5,      1,      do_usb,
728         "USB sub-system",
729         "start - start (scan) USB controller\n"
730         "usb reset - reset (rescan) USB controller\n"
731         "usb stop [f] - stop USB [f]=force stop\n"
732         "usb tree - show USB device tree\n"
733         "usb info [dev] - show available USB devices\n"
734         "usb test [dev] [port] [mode] - set USB 2.0 test mode\n"
735         "    (specify port 0 to indicate the device's upstream port)\n"
736         "    Available modes: J, K, S[E0_NAK], P[acket], F[orce_Enable]\n"
737 #ifdef CONFIG_USB_STORAGE
738         "usb storage - show details of USB storage devices\n"
739         "usb dev [dev] - show or set current USB storage device\n"
740         "usb part [dev] - print partition table of one or all USB storage"
741         "    devices\n"
742         "usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
743         "    to memory address `addr'\n"
744         "usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'\n"
745         "    from memory address `addr'"
746 #endif /* CONFIG_USB_STORAGE */
747 );
748
749
750 #ifdef CONFIG_USB_STORAGE
751 U_BOOT_CMD(
752         usbboot,        3,      1,      do_usbboot,
753         "boot from USB device",
754         "loadAddr dev:part"
755 );
756 #endif /* CONFIG_USB_STORAGE */