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