blob: 3a3764a5b8623dbfe42d1620ac11cb7fc8e91079 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenke887afc2002-08-27 09:44:07 +00002/*
3 * (C) Copyright 2001
4 * Denis Peter, MPL AG Switzerland
5 *
Simon Glass19e81512015-03-25 12:22:02 -06006 * Adapted for U-Boot driver model
7 * (C) Copyright 2015 Google, Inc
8 *
wdenke887afc2002-08-27 09:44:07 +00009 * Most of this source has been derived from the Linux USB
10 * project.
wdenke887afc2002-08-27 09:44:07 +000011 */
12
Simon Glass655306c2020-05-10 11:39:58 -060013#include <blk.h>
Simon Glass1ea97892020-05-10 11:40:00 -060014#include <bootstage.h>
wdenke887afc2002-08-27 09:44:07 +000015#include <command.h>
Simon Glassa73bda42015-11-08 23:47:45 -070016#include <console.h>
Simon Glass19e81512015-03-25 12:22:02 -060017#include <dm.h>
Hans de Goedeee705fc2016-04-03 00:04:39 +020018#include <dm/uclass-internal.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060019#include <memalign.h>
wdenk8d5d28a2005-04-02 22:37:54 +000020#include <asm/byteorder.h>
Tom Rini73424522011-12-15 08:40:51 -070021#include <asm/unaligned.h>
Grant Likelyffc2dd72007-02-20 09:04:34 +010022#include <part.h>
wdenke887afc2002-08-27 09:44:07 +000023#include <usb.h>
wdenke887afc2002-08-27 09:44:07 +000024
wdenkacd05362005-02-24 23:23:29 +000025#ifdef CONFIG_USB_STORAGE
Wolfgang Denkdc770c72008-07-14 15:19:07 +020026static int usb_stor_curr_dev = -1; /* current device */
wdenkacd05362005-02-24 23:23:29 +000027#endif
Simon Glass5b026f92015-07-06 16:47:50 -060028#if defined(CONFIG_USB_HOST_ETHER) && !defined(CONFIG_DM_ETH)
Simon Glassdb19dc52015-07-06 16:47:48 -060029static int __maybe_unused usb_ether_curr_dev = -1; /* current ethernet device */
Simon Glass1e9961d2011-02-16 11:14:33 -080030#endif
wdenke887afc2002-08-27 09:44:07 +000031
wdenk4ea537d2003-12-07 18:32:37 +000032/* some display routines (info command) */
Kim Phillipsdc00a682012-10-29 13:34:31 +000033static char *usb_get_class_desc(unsigned char dclass)
wdenke887afc2002-08-27 09:44:07 +000034{
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +010035 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 "";
wdenke887afc2002-08-27 09:44:07 +000056 }
57}
58
Kim Phillipsdc00a682012-10-29 13:34:31 +000059static void usb_display_class_sub(unsigned char dclass, unsigned char subclass,
60 unsigned char proto)
wdenke887afc2002-08-27 09:44:07 +000061{
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +010062 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");
wdenke887afc2002-08-27 09:44:07 +000071 break;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +010072 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;
wdenke887afc2002-08-27 09:44:07 +000087 }
88 break;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +010089 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");
wdenke887afc2002-08-27 09:44:07 +0000114 break;
115 default:
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100116 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;
wdenke887afc2002-08-27 09:44:07 +0000138 }
139}
140
Kim Phillipsdc00a682012-10-29 13:34:31 +0000141static void usb_display_string(struct usb_device *dev, int index)
wdenke887afc2002-08-27 09:44:07 +0000142{
Puneet Saxena6c9bb602012-04-03 14:56:06 +0530143 ALLOC_CACHE_ALIGN_BUFFER(char, buffer, 256);
144
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100145 if (index != 0) {
146 if (usb_string(dev, index, &buffer[0], 256) > 0)
147 printf("String: \"%s\"", buffer);
wdenke887afc2002-08-27 09:44:07 +0000148 }
149}
150
Kim Phillipsdc00a682012-10-29 13:34:31 +0000151static void usb_display_desc(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000152{
Bin Mengaec8af32017-07-19 21:50:07 +0800153 uint packet_size = dev->descriptor.bMaxPacketSize0;
154
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100155 if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) {
156 printf("%d: %s, USB Revision %x.%x\n", dev->devnum,
Tom Rix83b9e1d2009-10-31 12:37:38 -0500157 usb_get_class_desc(dev->config.if_desc[0].desc.bInterfaceClass),
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100158 (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);
wdenke887afc2002-08-27 09:44:07 +0000165 if (dev->descriptor.bDeviceClass) {
166 printf(" - Class: ");
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100167 usb_display_class_sub(dev->descriptor.bDeviceClass,
168 dev->descriptor.bDeviceSubClass,
169 dev->descriptor.bDeviceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000170 printf("\n");
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100171 } else {
172 printf(" - Class: (from Interface) %s\n",
173 usb_get_class_desc(
Tom Rix83b9e1d2009-10-31 12:37:38 -0500174 dev->config.if_desc[0].desc.bInterfaceClass));
wdenke887afc2002-08-27 09:44:07 +0000175 }
Bin Mengaec8af32017-07-19 21:50:07 +0800176 if (dev->descriptor.bcdUSB >= cpu_to_le16(0x0300))
177 packet_size = 1 << packet_size;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100178 printf(" - PacketSize: %d Configurations: %d\n",
Bin Mengaec8af32017-07-19 21:50:07 +0800179 packet_size, dev->descriptor.bNumConfigurations);
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100180 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);
wdenke887afc2002-08-27 09:44:07 +0000184 }
185
186}
187
Ilya Yanoka1cf10f2012-11-06 13:48:20 +0000188static void usb_display_conf_desc(struct usb_config_descriptor *config,
Kim Phillipsdc00a682012-10-29 13:34:31 +0000189 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000190{
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100191 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 " : "",
Tom Rix83b9e1d2009-10-31 12:37:38 -0500195 config->bMaxPower*2);
wdenke887afc2002-08-27 09:44:07 +0000196 if (config->iConfiguration) {
197 printf(" - ");
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100198 usb_display_string(dev, config->iConfiguration);
wdenke887afc2002-08-27 09:44:07 +0000199 printf("\n");
200 }
201}
202
Kim Phillipsdc00a682012-10-29 13:34:31 +0000203static void usb_display_if_desc(struct usb_interface_descriptor *ifdesc,
204 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000205{
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100206 printf(" Interface: %d\n", ifdesc->bInterfaceNumber);
207 printf(" - Alternate Setting %d, Endpoints: %d\n",
208 ifdesc->bAlternateSetting, ifdesc->bNumEndpoints);
wdenke887afc2002-08-27 09:44:07 +0000209 printf(" - Class ");
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100210 usb_display_class_sub(ifdesc->bInterfaceClass,
211 ifdesc->bInterfaceSubClass, ifdesc->bInterfaceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000212 printf("\n");
213 if (ifdesc->iInterface) {
214 printf(" - ");
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100215 usb_display_string(dev, ifdesc->iInterface);
wdenke887afc2002-08-27 09:44:07 +0000216 printf("\n");
217 }
218}
219
Kim Phillipsdc00a682012-10-29 13:34:31 +0000220static void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc)
wdenke887afc2002-08-27 09:44:07 +0000221{
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100222 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;
wdenke887afc2002-08-27 09:44:07 +0000237 }
Tom Rini73424522011-12-15 08:40:51 -0700238 printf(" MaxPacket %d", get_unaligned(&epdesc->wMaxPacketSize));
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100239 if ((epdesc->bmAttributes & 0x03) == 0x3)
240 printf(" Interval %dms", epdesc->bInterval);
wdenke887afc2002-08-27 09:44:07 +0000241 printf("\n");
242}
243
244/* main routine to diasplay the configs, interfaces and endpoints */
Kim Phillipsdc00a682012-10-29 13:34:31 +0000245static void usb_display_config(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000246{
Tom Rix83b9e1d2009-10-31 12:37:38 -0500247 struct usb_config *config;
248 struct usb_interface *ifdesc;
wdenke887afc2002-08-27 09:44:07 +0000249 struct usb_endpoint_descriptor *epdesc;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100250 int i, ii;
wdenke887afc2002-08-27 09:44:07 +0000251
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100252 config = &dev->config;
Tom Rix83b9e1d2009-10-31 12:37:38 -0500253 usb_display_conf_desc(&config->desc, dev);
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100254 for (i = 0; i < config->no_of_if; i++) {
255 ifdesc = &config->if_desc[i];
Tom Rix83b9e1d2009-10-31 12:37:38 -0500256 usb_display_if_desc(&ifdesc->desc, dev);
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100257 for (ii = 0; ii < ifdesc->no_of_ep; ii++) {
258 epdesc = &ifdesc->ep_desc[ii];
wdenke887afc2002-08-27 09:44:07 +0000259 usb_display_ep_desc(epdesc);
260 }
261 }
262 printf("\n");
263}
264
Simon Glass19e81512015-03-25 12:22:02 -0600265/*
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 */
Julius Wernerd4046702013-02-28 18:08:40 +0000270static struct usb_device *usb_find_device(int devnum)
271{
Simon Glass19e81512015-03-25 12:22:02 -0600272#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;
Simon Glassde44acf2015-09-28 23:32:01 -0600289 udev = dev_get_parent_priv(hub);
Simon Glass19e81512015-03-25 12:22:02 -0600290 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
Simon Glassde44acf2015-09-28 23:32:01 -0600299 udev = dev_get_parent_priv(dev);
Simon Glass19e81512015-03-25 12:22:02 -0600300 if (udev->devnum == devnum)
301 return udev;
302 }
303 }
304#else
Simon Glass729e2572015-03-25 12:22:00 -0600305 struct usb_device *udev;
Julius Wernerd4046702013-02-28 18:08:40 +0000306 int d;
307
308 for (d = 0; d < USB_MAX_DEVICE; d++) {
Simon Glass729e2572015-03-25 12:22:00 -0600309 udev = usb_get_dev_index(d);
310 if (udev == NULL)
Julius Wernerd4046702013-02-28 18:08:40 +0000311 return NULL;
Simon Glass729e2572015-03-25 12:22:00 -0600312 if (udev->devnum == devnum)
313 return udev;
Julius Wernerd4046702013-02-28 18:08:40 +0000314 }
Simon Glass19e81512015-03-25 12:22:02 -0600315#endif
Julius Wernerd4046702013-02-28 18:08:40 +0000316
317 return NULL;
318}
319
Ismael Luceno Cortes93431a82019-04-01 16:09:13 +0000320static inline const char *portspeed(int speed)
Stefan Roese6a6d9d12009-01-22 10:11:21 +0100321{
Vivek Gautamdf3f2212013-04-12 16:34:38 +0530322 switch (speed) {
323 case USB_SPEED_SUPER:
Ismael Luceno Cortes93431a82019-04-01 16:09:13 +0000324 return "5 Gb/s";
Vivek Gautamdf3f2212013-04-12 16:34:38 +0530325 case USB_SPEED_HIGH:
Ismael Luceno Cortes93431a82019-04-01 16:09:13 +0000326 return "480 Mb/s";
Vivek Gautamdf3f2212013-04-12 16:34:38 +0530327 case USB_SPEED_LOW:
Ismael Luceno Cortes93431a82019-04-01 16:09:13 +0000328 return "1.5 Mb/s";
Vivek Gautamdf3f2212013-04-12 16:34:38 +0530329 default:
Ismael Luceno Cortes93431a82019-04-01 16:09:13 +0000330 return "12 Mb/s";
Vivek Gautamdf3f2212013-04-12 16:34:38 +0530331 }
Stefan Roese6a6d9d12009-01-22 10:11:21 +0100332}
333
wdenke887afc2002-08-27 09:44:07 +0000334/* shows the device tree recursively */
Kim Phillipsdc00a682012-10-29 13:34:31 +0000335static void usb_show_tree_graph(struct usb_device *dev, char *pre)
wdenke887afc2002-08-27 09:44:07 +0000336{
Simon Glass19e81512015-03-25 12:22:02 -0600337 int index;
Wolfgang Denk6c7c5582011-10-05 23:01:59 +0200338 int has_child, last_child;
wdenke887afc2002-08-27 09:44:07 +0000339
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100340 index = strlen(pre);
341 printf(" %s", pre);
Simon Glass19e81512015-03-25 12:22:02 -0600342#ifdef CONFIG_DM_USB
343 has_child = device_has_active_children(dev->dev);
Suneel Garapatie7728fe2017-10-23 17:28:40 -0700344 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 }
Simon Glass19e81512015-03-25 12:22:02 -0600354#else
wdenke887afc2002-08-27 09:44:07 +0000355 /* check if the device has connected children */
Simon Glass19e81512015-03-25 12:22:02 -0600356 int i;
357
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100358 has_child = 0;
359 for (i = 0; i < dev->maxchild; i++) {
360 if (dev->children[i] != NULL)
361 has_child = 1;
wdenke887afc2002-08-27 09:44:07 +0000362 }
Simon Glass19e81512015-03-25 12:22:02 -0600363#endif
wdenke887afc2002-08-27 09:44:07 +0000364 /* check if we are the last one */
Simon Glass19e81512015-03-25 12:22:02 -0600365#ifdef CONFIG_DM_USB
Hans de Goedef97c8e22015-06-17 21:33:50 +0200366 /* 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);
Simon Glass19e81512015-03-25 12:22:02 -0600369#else
Hans de Goedef97c8e22015-06-17 21:33:50 +0200370 if (dev->parent != NULL) { /* not root? */
371 last_child = 1;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100372 for (i = 0; i < dev->parent->maxchild; i++) {
wdenke887afc2002-08-27 09:44:07 +0000373 /* search for children */
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100374 if (dev->parent->children[i] == dev) {
375 /* found our pointer, see if we have a
376 * little sister
377 */
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100378 while (i++ < dev->parent->maxchild) {
379 if (dev->parent->children[i] != NULL) {
wdenke887afc2002-08-27 09:44:07 +0000380 /* found a sister */
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100381 last_child = 0;
wdenke887afc2002-08-27 09:44:07 +0000382 break;
383 } /* if */
384 } /* while */
385 } /* device found */
386 } /* for all children of the parent */
Simon Glass19e81512015-03-25 12:22:02 -0600387#endif
wdenke887afc2002-08-27 09:44:07 +0000388 printf("\b+-");
389 /* correct last child */
Simon Glass729e2572015-03-25 12:22:00 -0600390 if (last_child && index)
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100391 pre[index-1] = ' ';
wdenke887afc2002-08-27 09:44:07 +0000392 } /* if not root hub */
393 else
394 printf(" ");
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100395 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(
Tom Rix83b9e1d2009-10-31 12:37:38 -0500400 dev->config.if_desc[0].desc.bInterfaceClass),
Stefan Roese6a6d9d12009-01-22 10:11:21 +0100401 portspeed(dev->speed),
Tom Rix83b9e1d2009-10-31 12:37:38 -0500402 dev->config.desc.bMaxPower * 2);
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100403 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);
Simon Glass19e81512015-03-25 12:22:02 -0600406#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
Simon Glassde44acf2015-09-28 23:32:01 -0600417 udev = dev_get_parent_priv(child);
Simon Glass19e81512015-03-25 12:22:02 -0600418
Suneel Garapatie7728fe2017-10-23 17:28:40 -0700419 /*
420 * Ignore emulators and block child devices, we only want
421 * real devices
422 */
Xavier Drudis Ferran914b1192023-06-21 09:13:07 +0200423 if (udev &&
424 (device_get_uclass_id(child) != UCLASS_BOOTDEV) &&
425 (device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
Suneel Garapatie7728fe2017-10-23 17:28:40 -0700426 (device_get_uclass_id(child) != UCLASS_BLK)) {
Simon Glass19e81512015-03-25 12:22:02 -0600427 usb_show_tree_graph(udev, pre);
428 pre[index] = 0;
429 }
430 }
431#else
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100432 if (dev->maxchild > 0) {
433 for (i = 0; i < dev->maxchild; i++) {
434 if (dev->children[i] != NULL) {
435 usb_show_tree_graph(dev->children[i], pre);
436 pre[index] = 0;
wdenke887afc2002-08-27 09:44:07 +0000437 }
438 }
439 }
Simon Glass19e81512015-03-25 12:22:02 -0600440#endif
wdenke887afc2002-08-27 09:44:07 +0000441}
442
443/* main routine for the tree command */
Simon Glass09def3a2015-11-08 23:47:51 -0700444static void usb_show_subtree(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000445{
446 char preamble[32];
447
Simon Glass729e2572015-03-25 12:22:00 -0600448 memset(preamble, '\0', sizeof(preamble));
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100449 usb_show_tree_graph(dev, &preamble[0]);
wdenke887afc2002-08-27 09:44:07 +0000450}
451
Simon Glass09def3a2015-11-08 23:47:51 -0700452#ifdef CONFIG_DM_USB
Hans de Goedef4451d92016-07-03 20:22:04 +0200453typedef void (*usb_dev_func_t)(struct usb_device *udev);
454
455static void usb_for_each_root_dev(usb_dev_func_t func)
456{
Simon Glass09def3a2015-11-08 23:47:51 -0700457 struct udevice *bus;
458
Hans de Goedeee705fc2016-04-03 00:04:39 +0200459 for (uclass_find_first_device(UCLASS_USB, &bus);
Simon Glass09def3a2015-11-08 23:47:51 -0700460 bus;
Hans de Goedeee705fc2016-04-03 00:04:39 +0200461 uclass_find_next_device(&bus)) {
Simon Glass09def3a2015-11-08 23:47:51 -0700462 struct usb_device *udev;
463 struct udevice *dev;
464
Hans de Goedeee705fc2016-04-03 00:04:39 +0200465 if (!device_active(bus))
466 continue;
467
Simon Glass09def3a2015-11-08 23:47:51 -0700468 device_find_first_child(bus, &dev);
469 if (dev && device_active(dev)) {
470 udev = dev_get_parent_priv(dev);
Hans de Goedef4451d92016-07-03 20:22:04 +0200471 func(udev);
Simon Glass09def3a2015-11-08 23:47:51 -0700472 }
473 }
Hans de Goedef4451d92016-07-03 20:22:04 +0200474}
475#endif
476
477void usb_show_tree(void)
478{
479#ifdef CONFIG_DM_USB
480 usb_for_each_root_dev(usb_show_subtree);
Simon Glass09def3a2015-11-08 23:47:51 -0700481#else
482 struct usb_device *udev;
483 int i;
484
485 for (i = 0; i < USB_MAX_DEVICE; i++) {
486 udev = usb_get_dev_index(i);
487 if (udev == NULL)
488 break;
489 if (udev->parent == NULL)
490 usb_show_subtree(udev);
491 }
492#endif
493}
494
Julius Wernerd4046702013-02-28 18:08:40 +0000495static int usb_test(struct usb_device *dev, int port, char* arg)
496{
497 int mode;
498
499 if (port > dev->maxchild) {
500 printf("Device is no hub or does not have %d ports.\n", port);
501 return 1;
502 }
503
504 switch (arg[0]) {
505 case 'J':
506 case 'j':
507 printf("Setting Test_J mode");
508 mode = USB_TEST_MODE_J;
509 break;
510 case 'K':
511 case 'k':
512 printf("Setting Test_K mode");
513 mode = USB_TEST_MODE_K;
514 break;
515 case 'S':
516 case 's':
517 printf("Setting Test_SE0_NAK mode");
518 mode = USB_TEST_MODE_SE0_NAK;
519 break;
520 case 'P':
521 case 'p':
522 printf("Setting Test_Packet mode");
523 mode = USB_TEST_MODE_PACKET;
524 break;
525 case 'F':
526 case 'f':
527 printf("Setting Test_Force_Enable mode");
528 mode = USB_TEST_MODE_FORCE_ENABLE;
529 break;
530 default:
531 printf("Unrecognized test mode: %s\nAvailable modes: "
532 "J, K, S[E0_NAK], P[acket], F[orce_Enable]\n", arg);
533 return 1;
534 }
535
536 if (port)
537 printf(" on downstream facing port %d...\n", port);
538 else
539 printf(" on upstream facing port...\n");
540
541 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_FEATURE,
542 port ? USB_RT_PORT : USB_RECIP_DEVICE,
543 port ? USB_PORT_FEAT_TEST : USB_FEAT_TEST,
544 (mode << 8) | port,
545 NULL, 0, USB_CNTL_TIMEOUT) == -1) {
546 printf("Error during SET_FEATURE.\n");
547 return 1;
548 } else {
549 printf("Test mode successfully set. Use 'usb start' "
550 "to return to normal operation.\n");
551 return 0;
552 }
553}
554
wdenke887afc2002-08-27 09:44:07 +0000555
wdenke887afc2002-08-27 09:44:07 +0000556/******************************************************************************
557 * usb boot command intepreter. Derived from diskboot
558 */
559#ifdef CONFIG_USB_STORAGE
Simon Glassed38aef2020-05-10 11:40:03 -0600560static int do_usbboot(struct cmd_tbl *cmdtp, int flag, int argc,
561 char *const argv[])
wdenke887afc2002-08-27 09:44:07 +0000562{
Rob Herringa20cbf92012-09-21 04:02:30 +0000563 return common_diskboot(cmdtp, "usb", argc, argv);
wdenke887afc2002-08-27 09:44:07 +0000564}
565#endif /* CONFIG_USB_STORAGE */
566
Hans de Goede3e51df02014-09-20 16:54:38 +0200567static int do_usb_stop_keyboard(int force)
Hans de Goedec7c11742014-09-20 16:54:35 +0200568{
Hans de Goedea88d4372016-04-03 09:18:53 +0200569#if !defined CONFIG_DM_USB && defined CONFIG_USB_KEYBOARD
Hans de Goede3e51df02014-09-20 16:54:38 +0200570 if (usb_kbd_deregister(force) != 0) {
Hans de Goedec7c11742014-09-20 16:54:35 +0200571 printf("USB not stopped: usbkbd still using USB\n");
572 return 1;
573 }
574#endif
575 return 0;
576}
wdenke887afc2002-08-27 09:44:07 +0000577
Hans de Goede2af82562015-01-06 14:27:41 +0100578static void do_usb_start(void)
579{
580 bootstage_mark_name(BOOTSTAGE_ID_USB_START, "usb_start");
581
582 if (usb_init() < 0)
583 return;
584
Simon Glass19e81512015-03-25 12:22:02 -0600585 /* Driver model will probe the devices as they are found */
Simon Glass02f0c282015-09-08 11:15:11 -0600586# ifdef CONFIG_USB_STORAGE
Hans de Goede2af82562015-01-06 14:27:41 +0100587 /* try to recognize storage devices immediately */
588 usb_stor_curr_dev = usb_stor_scan(1);
Simon Glass02f0c282015-09-08 11:15:11 -0600589# endif
Michal Simekcd8f86f2016-12-21 09:35:08 +0100590#ifndef CONFIG_DM_USB
Simon Glass02f0c282015-09-08 11:15:11 -0600591# ifdef CONFIG_USB_KEYBOARD
592 drv_usb_kbd_init();
593# endif
594#endif /* !CONFIG_DM_USB */
Hans de Goede2af82562015-01-06 14:27:41 +0100595}
Simon Glass19e81512015-03-25 12:22:02 -0600596
597#ifdef CONFIG_DM_USB
Hans de Goedef88d6fa2016-07-03 20:22:05 +0200598static void usb_show_info(struct usb_device *udev)
Simon Glass19e81512015-03-25 12:22:02 -0600599{
600 struct udevice *child;
Simon Glass19e81512015-03-25 12:22:02 -0600601
Simon Glass19e81512015-03-25 12:22:02 -0600602 usb_display_desc(udev);
603 usb_display_config(udev);
Hans de Goedef88d6fa2016-07-03 20:22:05 +0200604 for (device_find_first_child(udev->dev, &child);
Simon Glass19e81512015-03-25 12:22:02 -0600605 child;
606 device_find_next_child(&child)) {
Suneel Garapatie7728fe2017-10-23 17:28:40 -0700607 if (device_active(child) &&
Xavier Drudis Ferran914b1192023-06-21 09:13:07 +0200608 (device_get_uclass_id(child) != UCLASS_BOOTDEV) &&
Suneel Garapatie7728fe2017-10-23 17:28:40 -0700609 (device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
610 (device_get_uclass_id(child) != UCLASS_BLK)) {
Hans de Goedef88d6fa2016-07-03 20:22:05 +0200611 udev = dev_get_parent_priv(child);
Xavier Drudis Ferran914b1192023-06-21 09:13:07 +0200612 if (udev)
613 usb_show_info(udev);
Simon Glass19e81512015-03-25 12:22:02 -0600614 }
615 }
Simon Glass19e81512015-03-25 12:22:02 -0600616}
617#endif
Hans de Goede2af82562015-01-06 14:27:41 +0100618
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100619/******************************************************************************
wdenke887afc2002-08-27 09:44:07 +0000620 * usb command intepreter
621 */
Simon Glassed38aef2020-05-10 11:40:03 -0600622static int do_usb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
wdenke887afc2002-08-27 09:44:07 +0000623{
Simon Glass729e2572015-03-25 12:22:00 -0600624 struct usb_device *udev = NULL;
wdenke887afc2002-08-27 09:44:07 +0000625 int i;
wdenke887afc2002-08-27 09:44:07 +0000626
Wolfgang Denk3b683112010-07-17 01:06:04 +0200627 if (argc < 2)
Simon Glassa06dfc72011-12-10 08:44:01 +0000628 return CMD_RET_USAGE;
Serge Ziryukin84e20a22010-04-25 21:32:36 +0300629
Hans de Goede2af82562015-01-06 14:27:41 +0100630 if (strncmp(argv[1], "start", 5) == 0) {
631 if (usb_started)
632 return 0; /* Already started */
633 printf("starting USB...\n");
634 do_usb_start();
635 return 0;
636 }
637
638 if (strncmp(argv[1], "reset", 5) == 0) {
639 printf("resetting USB...\n");
Hans de Goede3e51df02014-09-20 16:54:38 +0200640 if (do_usb_stop_keyboard(1) != 0)
Hans de Goedec7c11742014-09-20 16:54:35 +0200641 return 1;
wdenke887afc2002-08-27 09:44:07 +0000642 usb_stop();
Hans de Goede2af82562015-01-06 14:27:41 +0100643 do_usb_start();
wdenke887afc2002-08-27 09:44:07 +0000644 return 0;
645 }
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100646 if (strncmp(argv[1], "stop", 4) == 0) {
Hans de Goedec7c11742014-09-20 16:54:35 +0200647 if (argc != 2)
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100648 console_assign(stdin, "serial");
Hans de Goede3e51df02014-09-20 16:54:38 +0200649 if (do_usb_stop_keyboard(0) != 0)
Hans de Goedec7c11742014-09-20 16:54:35 +0200650 return 1;
wdenke887afc2002-08-27 09:44:07 +0000651 printf("stopping USB..\n");
652 usb_stop();
653 return 0;
654 }
Bartlomiej Siekae39589f2006-08-03 23:20:13 +0200655 if (!usb_started) {
656 printf("USB is stopped. Please issue 'usb start' first.\n");
657 return 1;
658 }
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100659 if (strncmp(argv[1], "tree", 4) == 0) {
Lucas Stache6d33452012-09-26 00:14:36 +0200660 puts("USB device tree:\n");
Simon Glass09def3a2015-11-08 23:47:51 -0700661 usb_show_tree();
wdenke887afc2002-08-27 09:44:07 +0000662 return 0;
663 }
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100664 if (strncmp(argv[1], "inf", 3) == 0) {
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100665 if (argc == 2) {
Simon Glass19e81512015-03-25 12:22:02 -0600666#ifdef CONFIG_DM_USB
Hans de Goedef88d6fa2016-07-03 20:22:05 +0200667 usb_for_each_root_dev(usb_show_info);
Simon Glass19e81512015-03-25 12:22:02 -0600668#else
669 int d;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100670 for (d = 0; d < USB_MAX_DEVICE; d++) {
Simon Glass729e2572015-03-25 12:22:00 -0600671 udev = usb_get_dev_index(d);
672 if (udev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000673 break;
Simon Glass729e2572015-03-25 12:22:00 -0600674 usb_display_desc(udev);
675 usb_display_config(udev);
wdenke887afc2002-08-27 09:44:07 +0000676 }
Simon Glass19e81512015-03-25 12:22:02 -0600677#endif
wdenke887afc2002-08-27 09:44:07 +0000678 return 0;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100679 } else {
Simon Glass19e81512015-03-25 12:22:02 -0600680 /*
681 * With driver model this isn't right since we can
682 * have multiple controllers and the device numbering
683 * starts at 1 on each bus.
684 */
Simon Glassff9b9032021-07-24 09:03:30 -0600685 i = dectoul(argv[2], NULL);
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100686 printf("config for device %d\n", i);
Simon Glass729e2572015-03-25 12:22:00 -0600687 udev = usb_find_device(i);
688 if (udev == NULL) {
Loïc Minier5d0569a2011-02-03 22:04:26 +0100689 printf("*** No device available ***\n");
wdenke887afc2002-08-27 09:44:07 +0000690 return 0;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100691 } else {
Simon Glass729e2572015-03-25 12:22:00 -0600692 usb_display_desc(udev);
693 usb_display_config(udev);
wdenke887afc2002-08-27 09:44:07 +0000694 }
695 }
696 return 0;
697 }
Julius Wernerd4046702013-02-28 18:08:40 +0000698 if (strncmp(argv[1], "test", 4) == 0) {
699 if (argc < 5)
700 return CMD_RET_USAGE;
Simon Glassff9b9032021-07-24 09:03:30 -0600701 i = dectoul(argv[2], NULL);
Simon Glass729e2572015-03-25 12:22:00 -0600702 udev = usb_find_device(i);
703 if (udev == NULL) {
Julius Wernerd4046702013-02-28 18:08:40 +0000704 printf("Device %d does not exist.\n", i);
705 return 1;
706 }
Simon Glassff9b9032021-07-24 09:03:30 -0600707 i = dectoul(argv[3], NULL);
Simon Glass729e2572015-03-25 12:22:00 -0600708 return usb_test(udev, i, argv[4]);
Julius Wernerd4046702013-02-28 18:08:40 +0000709 }
wdenke887afc2002-08-27 09:44:07 +0000710#ifdef CONFIG_USB_STORAGE
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100711 if (strncmp(argv[1], "stor", 4) == 0)
Aras Vaichas7ede1862008-03-25 12:09:07 +1100712 return usb_stor_info();
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200713
Simon Glassdbfa32c2022-08-11 19:34:59 -0600714 return blk_common_cmd(argc, argv, UCLASS_USB, &usb_stor_curr_dev);
Simon Glassd9289f32017-07-29 11:34:58 -0600715#else
Simon Glassa06dfc72011-12-10 08:44:01 +0000716 return CMD_RET_USAGE;
Simon Glassd9289f32017-07-29 11:34:58 -0600717#endif /* CONFIG_USB_STORAGE */
wdenke887afc2002-08-27 09:44:07 +0000718}
719
wdenkf287a242003-07-01 21:06:45 +0000720U_BOOT_CMD(
721 usb, 5, 1, do_usb,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600722 "USB sub-system",
Veli-Pekka Peltoladdb90d32011-11-02 16:59:56 +0200723 "start - start (scan) USB controller\n"
724 "usb reset - reset (rescan) USB controller\n"
Veli-Pekka Peltola1f47a4d2011-11-02 16:59:55 +0200725 "usb stop [f] - stop USB [f]=force stop\n"
726 "usb tree - show USB device tree\n"
wdenk20c98a62004-04-23 20:32:05 +0000727 "usb info [dev] - show available USB devices\n"
Julius Wernerd4046702013-02-28 18:08:40 +0000728 "usb test [dev] [port] [mode] - set USB 2.0 test mode\n"
729 " (specify port 0 to indicate the device's upstream port)\n"
730 " Available modes: J, K, S[E0_NAK], P[acket], F[orce_Enable]\n"
731#ifdef CONFIG_USB_STORAGE
Veli-Pekka Peltola1f47a4d2011-11-02 16:59:55 +0200732 "usb storage - show details of USB storage devices\n"
wdenka2b932d2005-06-27 13:30:03 +0000733 "usb dev [dev] - show or set current USB storage device\n"
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100734 "usb part [dev] - print partition table of one or all USB storage"
Julius Wernerd4046702013-02-28 18:08:40 +0000735 " devices\n"
wdenk20c98a62004-04-23 20:32:05 +0000736 "usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
Sergei Poselenov95b57aa2010-08-09 16:01:42 +0400737 " to memory address `addr'\n"
Mahavir Jaind43a0b82009-11-03 12:22:10 +0530738 "usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'\n"
739 " from memory address `addr'"
Julius Wernerd4046702013-02-28 18:08:40 +0000740#endif /* CONFIG_USB_STORAGE */
wdenk57b2d802003-06-27 21:31:46 +0000741);
742
743
Julius Wernerd4046702013-02-28 18:08:40 +0000744#ifdef CONFIG_USB_STORAGE
wdenkf287a242003-07-01 21:06:45 +0000745U_BOOT_CMD(
746 usbboot, 3, 1, do_usbboot,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600747 "boot from USB device",
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200748 "loadAddr dev:part"
wdenk57b2d802003-06-27 21:31:46 +0000749);
Julius Wernerd4046702013-02-28 18:08:40 +0000750#endif /* CONFIG_USB_STORAGE */