blob: 8ddda5a0d89b81d68f7e244ed00d743ae1f14b4c [file] [log] [blame]
Tom Rini83d290c2018-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 Glass6a1b2062015-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
Tom Rinid678a592024-05-18 20:20:43 -060013#include <common.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060014#include <blk.h>
Simon Glass52f24232020-05-10 11:40:00 -060015#include <bootstage.h>
wdenke887afc2002-08-27 09:44:07 +000016#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -070017#include <console.h>
Simon Glass6a1b2062015-03-25 12:22:02 -060018#include <dm.h>
Hans de Goede192eab92016-04-03 00:04:39 +020019#include <dm/uclass-internal.h>
Simon Glasscf92e052015-09-02 17:24:58 -060020#include <memalign.h>
wdenk414eec32005-04-02 22:37:54 +000021#include <asm/byteorder.h>
Tom Rinib2fb47f2011-12-15 08:40:51 -070022#include <asm/unaligned.h>
Grant Likely735dd972007-02-20 09:04:34 +010023#include <part.h>
wdenke887afc2002-08-27 09:44:07 +000024#include <usb.h>
wdenke887afc2002-08-27 09:44:07 +000025
wdenk1968e612005-02-24 23:23:29 +000026#ifdef CONFIG_USB_STORAGE
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +020027static int usb_stor_curr_dev = -1; /* current device */
wdenk1968e612005-02-24 23:23:29 +000028#endif
wdenke887afc2002-08-27 09:44:07 +000029
wdenka2663ea2003-12-07 18:32:37 +000030/* some display routines (info command) */
Kim Phillips088f1b12012-10-29 13:34:31 +000031static char *usb_get_class_desc(unsigned char dclass)
wdenke887afc2002-08-27 09:44:07 +000032{
Michael Trimarchide39f8c2008-11-26 17:41:34 +010033 switch (dclass) {
34 case USB_CLASS_PER_INTERFACE:
35 return "See Interface";
36 case USB_CLASS_AUDIO:
37 return "Audio";
38 case USB_CLASS_COMM:
39 return "Communication";
40 case USB_CLASS_HID:
41 return "Human Interface";
42 case USB_CLASS_PRINTER:
43 return "Printer";
44 case USB_CLASS_MASS_STORAGE:
45 return "Mass Storage";
46 case USB_CLASS_HUB:
47 return "Hub";
48 case USB_CLASS_DATA:
49 return "CDC Data";
50 case USB_CLASS_VENDOR_SPEC:
51 return "Vendor specific";
52 default:
53 return "";
wdenke887afc2002-08-27 09:44:07 +000054 }
55}
56
Kim Phillips088f1b12012-10-29 13:34:31 +000057static void usb_display_class_sub(unsigned char dclass, unsigned char subclass,
58 unsigned char proto)
wdenke887afc2002-08-27 09:44:07 +000059{
Michael Trimarchide39f8c2008-11-26 17:41:34 +010060 switch (dclass) {
61 case USB_CLASS_PER_INTERFACE:
62 printf("See Interface");
63 break;
64 case USB_CLASS_HID:
65 printf("Human Interface, Subclass: ");
66 switch (subclass) {
67 case USB_SUB_HID_NONE:
68 printf("None");
wdenke887afc2002-08-27 09:44:07 +000069 break;
Michael Trimarchide39f8c2008-11-26 17:41:34 +010070 case USB_SUB_HID_BOOT:
71 printf("Boot ");
72 switch (proto) {
73 case USB_PROT_HID_NONE:
74 printf("None");
75 break;
76 case USB_PROT_HID_KEYBOARD:
77 printf("Keyboard");
78 break;
79 case USB_PROT_HID_MOUSE:
80 printf("Mouse");
81 break;
82 default:
83 printf("reserved");
84 break;
wdenke887afc2002-08-27 09:44:07 +000085 }
86 break;
87 default:
Michael Trimarchide39f8c2008-11-26 17:41:34 +010088 printf("reserved");
89 break;
90 }
91 break;
92 case USB_CLASS_MASS_STORAGE:
93 printf("Mass Storage, ");
94 switch (subclass) {
95 case US_SC_RBC:
96 printf("RBC ");
97 break;
98 case US_SC_8020:
99 printf("SFF-8020i (ATAPI)");
100 break;
101 case US_SC_QIC:
102 printf("QIC-157 (Tape)");
103 break;
104 case US_SC_UFI:
105 printf("UFI");
106 break;
107 case US_SC_8070:
108 printf("SFF-8070");
109 break;
110 case US_SC_SCSI:
111 printf("Transp. SCSI");
112 break;
113 default:
114 printf("reserved");
115 break;
116 }
117 printf(", ");
118 switch (proto) {
119 case US_PR_CB:
120 printf("Command/Bulk");
121 break;
122 case US_PR_CBI:
123 printf("Command/Bulk/Int");
124 break;
125 case US_PR_BULK:
126 printf("Bulk only");
127 break;
128 default:
129 printf("reserved");
130 break;
131 }
132 break;
133 default:
134 printf("%s", usb_get_class_desc(dclass));
135 break;
wdenke887afc2002-08-27 09:44:07 +0000136 }
137}
138
Kim Phillips088f1b12012-10-29 13:34:31 +0000139static void usb_display_string(struct usb_device *dev, int index)
wdenke887afc2002-08-27 09:44:07 +0000140{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530141 ALLOC_CACHE_ALIGN_BUFFER(char, buffer, 256);
142
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100143 if (index != 0) {
144 if (usb_string(dev, index, &buffer[0], 256) > 0)
145 printf("String: \"%s\"", buffer);
wdenke887afc2002-08-27 09:44:07 +0000146 }
147}
148
Kim Phillips088f1b12012-10-29 13:34:31 +0000149static void usb_display_desc(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000150{
Bin Meng78abf142017-07-19 21:50:07 +0800151 uint packet_size = dev->descriptor.bMaxPacketSize0;
152
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100153 if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) {
154 printf("%d: %s, USB Revision %x.%x\n", dev->devnum,
Tom Rix8f8bd562009-10-31 12:37:38 -0500155 usb_get_class_desc(dev->config.if_desc[0].desc.bInterfaceClass),
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100156 (dev->descriptor.bcdUSB>>8) & 0xff,
157 dev->descriptor.bcdUSB & 0xff);
158
159 if (strlen(dev->mf) || strlen(dev->prod) ||
160 strlen(dev->serial))
161 printf(" - %s %s %s\n", dev->mf, dev->prod,
162 dev->serial);
wdenke887afc2002-08-27 09:44:07 +0000163 if (dev->descriptor.bDeviceClass) {
164 printf(" - Class: ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100165 usb_display_class_sub(dev->descriptor.bDeviceClass,
166 dev->descriptor.bDeviceSubClass,
167 dev->descriptor.bDeviceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000168 printf("\n");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100169 } else {
170 printf(" - Class: (from Interface) %s\n",
171 usb_get_class_desc(
Tom Rix8f8bd562009-10-31 12:37:38 -0500172 dev->config.if_desc[0].desc.bInterfaceClass));
wdenke887afc2002-08-27 09:44:07 +0000173 }
Bin Meng78abf142017-07-19 21:50:07 +0800174 if (dev->descriptor.bcdUSB >= cpu_to_le16(0x0300))
175 packet_size = 1 << packet_size;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100176 printf(" - PacketSize: %d Configurations: %d\n",
Bin Meng78abf142017-07-19 21:50:07 +0800177 packet_size, dev->descriptor.bNumConfigurations);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100178 printf(" - Vendor: 0x%04x Product 0x%04x Version %d.%d\n",
179 dev->descriptor.idVendor, dev->descriptor.idProduct,
180 (dev->descriptor.bcdDevice>>8) & 0xff,
181 dev->descriptor.bcdDevice & 0xff);
wdenke887afc2002-08-27 09:44:07 +0000182 }
183
184}
185
Ilya Yanokc60795f2012-11-06 13:48:20 +0000186static void usb_display_conf_desc(struct usb_config_descriptor *config,
Kim Phillips088f1b12012-10-29 13:34:31 +0000187 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000188{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100189 printf(" Configuration: %d\n", config->bConfigurationValue);
190 printf(" - Interfaces: %d %s%s%dmA\n", config->bNumInterfaces,
191 (config->bmAttributes & 0x40) ? "Self Powered " : "Bus Powered ",
192 (config->bmAttributes & 0x20) ? "Remote Wakeup " : "",
Tom Rix8f8bd562009-10-31 12:37:38 -0500193 config->bMaxPower*2);
wdenke887afc2002-08-27 09:44:07 +0000194 if (config->iConfiguration) {
195 printf(" - ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100196 usb_display_string(dev, config->iConfiguration);
wdenke887afc2002-08-27 09:44:07 +0000197 printf("\n");
198 }
199}
200
Kim Phillips088f1b12012-10-29 13:34:31 +0000201static void usb_display_if_desc(struct usb_interface_descriptor *ifdesc,
202 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000203{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100204 printf(" Interface: %d\n", ifdesc->bInterfaceNumber);
205 printf(" - Alternate Setting %d, Endpoints: %d\n",
206 ifdesc->bAlternateSetting, ifdesc->bNumEndpoints);
wdenke887afc2002-08-27 09:44:07 +0000207 printf(" - Class ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100208 usb_display_class_sub(ifdesc->bInterfaceClass,
209 ifdesc->bInterfaceSubClass, ifdesc->bInterfaceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000210 printf("\n");
211 if (ifdesc->iInterface) {
212 printf(" - ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100213 usb_display_string(dev, ifdesc->iInterface);
wdenke887afc2002-08-27 09:44:07 +0000214 printf("\n");
215 }
216}
217
Kim Phillips088f1b12012-10-29 13:34:31 +0000218static void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc)
wdenke887afc2002-08-27 09:44:07 +0000219{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100220 printf(" - Endpoint %d %s ", epdesc->bEndpointAddress & 0xf,
221 (epdesc->bEndpointAddress & 0x80) ? "In" : "Out");
222 switch ((epdesc->bmAttributes & 0x03)) {
223 case 0:
224 printf("Control");
225 break;
226 case 1:
227 printf("Isochronous");
228 break;
229 case 2:
230 printf("Bulk");
231 break;
232 case 3:
233 printf("Interrupt");
234 break;
wdenke887afc2002-08-27 09:44:07 +0000235 }
Tom Rinib2fb47f2011-12-15 08:40:51 -0700236 printf(" MaxPacket %d", get_unaligned(&epdesc->wMaxPacketSize));
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100237 if ((epdesc->bmAttributes & 0x03) == 0x3)
238 printf(" Interval %dms", epdesc->bInterval);
wdenke887afc2002-08-27 09:44:07 +0000239 printf("\n");
240}
241
242/* main routine to diasplay the configs, interfaces and endpoints */
Kim Phillips088f1b12012-10-29 13:34:31 +0000243static void usb_display_config(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000244{
Tom Rix8f8bd562009-10-31 12:37:38 -0500245 struct usb_config *config;
246 struct usb_interface *ifdesc;
wdenke887afc2002-08-27 09:44:07 +0000247 struct usb_endpoint_descriptor *epdesc;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100248 int i, ii;
wdenke887afc2002-08-27 09:44:07 +0000249
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100250 config = &dev->config;
Tom Rix8f8bd562009-10-31 12:37:38 -0500251 usb_display_conf_desc(&config->desc, dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100252 for (i = 0; i < config->no_of_if; i++) {
253 ifdesc = &config->if_desc[i];
Tom Rix8f8bd562009-10-31 12:37:38 -0500254 usb_display_if_desc(&ifdesc->desc, dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100255 for (ii = 0; ii < ifdesc->no_of_ep; ii++) {
256 epdesc = &ifdesc->ep_desc[ii];
wdenke887afc2002-08-27 09:44:07 +0000257 usb_display_ep_desc(epdesc);
258 }
259 }
260 printf("\n");
261}
262
Simon Glass6a1b2062015-03-25 12:22:02 -0600263/*
264 * With driver model this isn't right since we can have multiple controllers
265 * and the device numbering starts at 1 on each bus.
266 * TODO(sjg@chromium.org): Add a way to specify the controller/bus.
267 */
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000268static struct usb_device *usb_find_device(int devnum)
269{
Simon Glass6a1b2062015-03-25 12:22:02 -0600270#ifdef CONFIG_DM_USB
271 struct usb_device *udev;
272 struct udevice *hub;
273 struct uclass *uc;
274 int ret;
275
276 /* Device addresses start at 1 */
277 devnum++;
278 ret = uclass_get(UCLASS_USB_HUB, &uc);
279 if (ret)
280 return NULL;
281
282 uclass_foreach_dev(hub, uc) {
283 struct udevice *dev;
284
285 if (!device_active(hub))
286 continue;
Simon Glassbcbe3d12015-09-28 23:32:01 -0600287 udev = dev_get_parent_priv(hub);
Simon Glass6a1b2062015-03-25 12:22:02 -0600288 if (udev->devnum == devnum)
289 return udev;
290
291 for (device_find_first_child(hub, &dev);
292 dev;
293 device_find_next_child(&dev)) {
294 if (!device_active(hub))
295 continue;
296
Simon Glassbcbe3d12015-09-28 23:32:01 -0600297 udev = dev_get_parent_priv(dev);
Simon Glass6a1b2062015-03-25 12:22:02 -0600298 if (udev->devnum == devnum)
299 return udev;
300 }
301 }
302#else
Simon Glasscad42912015-03-25 12:22:00 -0600303 struct usb_device *udev;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000304 int d;
305
306 for (d = 0; d < USB_MAX_DEVICE; d++) {
Simon Glasscad42912015-03-25 12:22:00 -0600307 udev = usb_get_dev_index(d);
308 if (udev == NULL)
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000309 return NULL;
Simon Glasscad42912015-03-25 12:22:00 -0600310 if (udev->devnum == devnum)
311 return udev;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000312 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600313#endif
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000314
315 return NULL;
316}
317
Ismael Luceno Cortes51f60a82019-04-01 16:09:13 +0000318static inline const char *portspeed(int speed)
Stefan Roesef1c1f542009-01-22 10:11:21 +0100319{
Vivek Gautam6497c662013-04-12 16:34:38 +0530320 switch (speed) {
321 case USB_SPEED_SUPER:
Ismael Luceno Cortes51f60a82019-04-01 16:09:13 +0000322 return "5 Gb/s";
Vivek Gautam6497c662013-04-12 16:34:38 +0530323 case USB_SPEED_HIGH:
Ismael Luceno Cortes51f60a82019-04-01 16:09:13 +0000324 return "480 Mb/s";
Vivek Gautam6497c662013-04-12 16:34:38 +0530325 case USB_SPEED_LOW:
Ismael Luceno Cortes51f60a82019-04-01 16:09:13 +0000326 return "1.5 Mb/s";
Vivek Gautam6497c662013-04-12 16:34:38 +0530327 default:
Ismael Luceno Cortes51f60a82019-04-01 16:09:13 +0000328 return "12 Mb/s";
Vivek Gautam6497c662013-04-12 16:34:38 +0530329 }
Stefan Roesef1c1f542009-01-22 10:11:21 +0100330}
331
wdenke887afc2002-08-27 09:44:07 +0000332/* shows the device tree recursively */
Kim Phillips088f1b12012-10-29 13:34:31 +0000333static void usb_show_tree_graph(struct usb_device *dev, char *pre)
wdenke887afc2002-08-27 09:44:07 +0000334{
Simon Glass6a1b2062015-03-25 12:22:02 -0600335 int index;
Wolfgang Denk10f4dd72011-10-05 23:01:59 +0200336 int has_child, last_child;
wdenke887afc2002-08-27 09:44:07 +0000337
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100338 index = strlen(pre);
339 printf(" %s", pre);
Simon Glass6a1b2062015-03-25 12:22:02 -0600340#ifdef CONFIG_DM_USB
341 has_child = device_has_active_children(dev->dev);
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700342 if (device_get_uclass_id(dev->dev) == UCLASS_MASS_STORAGE) {
343 struct udevice *child;
344
345 for (device_find_first_child(dev->dev, &child);
346 child;
347 device_find_next_child(&child)) {
348 if (device_get_uclass_id(child) == UCLASS_BLK)
349 has_child = 0;
350 }
351 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600352#else
wdenke887afc2002-08-27 09:44:07 +0000353 /* check if the device has connected children */
Simon Glass6a1b2062015-03-25 12:22:02 -0600354 int i;
355
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100356 has_child = 0;
357 for (i = 0; i < dev->maxchild; i++) {
358 if (dev->children[i] != NULL)
359 has_child = 1;
wdenke887afc2002-08-27 09:44:07 +0000360 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600361#endif
wdenke887afc2002-08-27 09:44:07 +0000362 /* check if we are the last one */
Simon Glass6a1b2062015-03-25 12:22:02 -0600363#ifdef CONFIG_DM_USB
Hans de Goedec27b3292015-06-17 21:33:50 +0200364 /* Not the root of the usb tree? */
365 if (device_get_uclass_id(dev->dev->parent) != UCLASS_USB) {
366 last_child = device_is_last_sibling(dev->dev);
Simon Glass6a1b2062015-03-25 12:22:02 -0600367#else
Hans de Goedec27b3292015-06-17 21:33:50 +0200368 if (dev->parent != NULL) { /* not root? */
369 last_child = 1;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100370 for (i = 0; i < dev->parent->maxchild; i++) {
wdenke887afc2002-08-27 09:44:07 +0000371 /* search for children */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100372 if (dev->parent->children[i] == dev) {
373 /* found our pointer, see if we have a
374 * little sister
375 */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100376 while (i++ < dev->parent->maxchild) {
377 if (dev->parent->children[i] != NULL) {
wdenke887afc2002-08-27 09:44:07 +0000378 /* found a sister */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100379 last_child = 0;
wdenke887afc2002-08-27 09:44:07 +0000380 break;
381 } /* if */
382 } /* while */
383 } /* device found */
384 } /* for all children of the parent */
Simon Glass6a1b2062015-03-25 12:22:02 -0600385#endif
wdenke887afc2002-08-27 09:44:07 +0000386 printf("\b+-");
387 /* correct last child */
Simon Glasscad42912015-03-25 12:22:00 -0600388 if (last_child && index)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100389 pre[index-1] = ' ';
wdenke887afc2002-08-27 09:44:07 +0000390 } /* if not root hub */
391 else
392 printf(" ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100393 printf("%d ", dev->devnum);
394 pre[index++] = ' ';
395 pre[index++] = has_child ? '|' : ' ';
396 pre[index] = 0;
397 printf(" %s (%s, %dmA)\n", usb_get_class_desc(
Tom Rix8f8bd562009-10-31 12:37:38 -0500398 dev->config.if_desc[0].desc.bInterfaceClass),
Stefan Roesef1c1f542009-01-22 10:11:21 +0100399 portspeed(dev->speed),
Tom Rix8f8bd562009-10-31 12:37:38 -0500400 dev->config.desc.bMaxPower * 2);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100401 if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial))
402 printf(" %s %s %s %s\n", pre, dev->mf, dev->prod, dev->serial);
403 printf(" %s\n", pre);
Simon Glass6a1b2062015-03-25 12:22:02 -0600404#ifdef CONFIG_DM_USB
405 struct udevice *child;
406
407 for (device_find_first_child(dev->dev, &child);
408 child;
409 device_find_next_child(&child)) {
410 struct usb_device *udev;
411
412 if (!device_active(child))
413 continue;
414
Simon Glassbcbe3d12015-09-28 23:32:01 -0600415 udev = dev_get_parent_priv(child);
Simon Glass6a1b2062015-03-25 12:22:02 -0600416
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700417 /*
418 * Ignore emulators and block child devices, we only want
419 * real devices
420 */
Xavier Drudis Ferran7a875a82023-06-21 09:13:07 +0200421 if (udev &&
422 (device_get_uclass_id(child) != UCLASS_BOOTDEV) &&
423 (device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700424 (device_get_uclass_id(child) != UCLASS_BLK)) {
Simon Glass6a1b2062015-03-25 12:22:02 -0600425 usb_show_tree_graph(udev, pre);
426 pre[index] = 0;
427 }
428 }
429#else
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100430 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;
wdenke887afc2002-08-27 09:44:07 +0000435 }
436 }
437 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600438#endif
wdenke887afc2002-08-27 09:44:07 +0000439}
440
441/* main routine for the tree command */
Simon Glass45bfa472015-11-08 23:47:51 -0700442static void usb_show_subtree(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000443{
444 char preamble[32];
445
Simon Glasscad42912015-03-25 12:22:00 -0600446 memset(preamble, '\0', sizeof(preamble));
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100447 usb_show_tree_graph(dev, &preamble[0]);
wdenke887afc2002-08-27 09:44:07 +0000448}
449
Simon Glass45bfa472015-11-08 23:47:51 -0700450#ifdef CONFIG_DM_USB
Hans de Goede2138fd62016-07-03 20:22:04 +0200451typedef void (*usb_dev_func_t)(struct usb_device *udev);
452
453static void usb_for_each_root_dev(usb_dev_func_t func)
454{
Simon Glass45bfa472015-11-08 23:47:51 -0700455 struct udevice *bus;
456
Hans de Goede192eab92016-04-03 00:04:39 +0200457 for (uclass_find_first_device(UCLASS_USB, &bus);
Simon Glass45bfa472015-11-08 23:47:51 -0700458 bus;
Hans de Goede192eab92016-04-03 00:04:39 +0200459 uclass_find_next_device(&bus)) {
Simon Glass45bfa472015-11-08 23:47:51 -0700460 struct usb_device *udev;
461 struct udevice *dev;
462
Hans de Goede192eab92016-04-03 00:04:39 +0200463 if (!device_active(bus))
464 continue;
465
Simon Glass45bfa472015-11-08 23:47:51 -0700466 device_find_first_child(bus, &dev);
467 if (dev && device_active(dev)) {
468 udev = dev_get_parent_priv(dev);
Hans de Goede2138fd62016-07-03 20:22:04 +0200469 func(udev);
Simon Glass45bfa472015-11-08 23:47:51 -0700470 }
471 }
Hans de Goede2138fd62016-07-03 20:22:04 +0200472}
473#endif
474
475void usb_show_tree(void)
476{
477#ifdef CONFIG_DM_USB
478 usb_for_each_root_dev(usb_show_subtree);
Simon Glass45bfa472015-11-08 23:47:51 -0700479#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
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000493static 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
wdenke887afc2002-08-27 09:44:07 +0000553
wdenke887afc2002-08-27 09:44:07 +0000554/******************************************************************************
555 * usb boot command intepreter. Derived from diskboot
556 */
557#ifdef CONFIG_USB_STORAGE
Simon Glass09140112020-05-10 11:40:03 -0600558static int do_usbboot(struct cmd_tbl *cmdtp, int flag, int argc,
559 char *const argv[])
wdenke887afc2002-08-27 09:44:07 +0000560{
Rob Herring7405a132012-09-21 04:02:30 +0000561 return common_diskboot(cmdtp, "usb", argc, argv);
wdenke887afc2002-08-27 09:44:07 +0000562}
563#endif /* CONFIG_USB_STORAGE */
564
Hans de Goede8a8a2252014-09-20 16:54:38 +0200565static int do_usb_stop_keyboard(int force)
Hans de Goede6e78c742014-09-20 16:54:35 +0200566{
Hans de Goede9a80e712016-04-03 09:18:53 +0200567#if !defined CONFIG_DM_USB && defined CONFIG_USB_KEYBOARD
Hans de Goede8a8a2252014-09-20 16:54:38 +0200568 if (usb_kbd_deregister(force) != 0) {
Hans de Goede6e78c742014-09-20 16:54:35 +0200569 printf("USB not stopped: usbkbd still using USB\n");
570 return 1;
571 }
572#endif
573 return 0;
574}
wdenke887afc2002-08-27 09:44:07 +0000575
Hans de Goedeb5072262015-01-06 14:27:41 +0100576static void do_usb_start(void)
577{
578 bootstage_mark_name(BOOTSTAGE_ID_USB_START, "usb_start");
579
580 if (usb_init() < 0)
581 return;
582
Simon Glass6a1b2062015-03-25 12:22:02 -0600583 /* Driver model will probe the devices as they are found */
Simon Glass34ab37e2015-09-08 11:15:11 -0600584# ifdef CONFIG_USB_STORAGE
Hans de Goedeb5072262015-01-06 14:27:41 +0100585 /* try to recognize storage devices immediately */
586 usb_stor_curr_dev = usb_stor_scan(1);
Simon Glass34ab37e2015-09-08 11:15:11 -0600587# endif
Michal Simekb9847002016-12-21 09:35:08 +0100588#ifndef CONFIG_DM_USB
Simon Glass34ab37e2015-09-08 11:15:11 -0600589# ifdef CONFIG_USB_KEYBOARD
590 drv_usb_kbd_init();
591# endif
592#endif /* !CONFIG_DM_USB */
Hans de Goedeb5072262015-01-06 14:27:41 +0100593}
594
Simon Glass6a1b2062015-03-25 12:22:02 -0600595#ifdef CONFIG_DM_USB
Hans de Goedee6e188f2016-07-03 20:22:05 +0200596static void usb_show_info(struct usb_device *udev)
Simon Glass6a1b2062015-03-25 12:22:02 -0600597{
598 struct udevice *child;
Simon Glass6a1b2062015-03-25 12:22:02 -0600599
Simon Glass6a1b2062015-03-25 12:22:02 -0600600 usb_display_desc(udev);
601 usb_display_config(udev);
Hans de Goedee6e188f2016-07-03 20:22:05 +0200602 for (device_find_first_child(udev->dev, &child);
Simon Glass6a1b2062015-03-25 12:22:02 -0600603 child;
604 device_find_next_child(&child)) {
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700605 if (device_active(child) &&
Xavier Drudis Ferran7a875a82023-06-21 09:13:07 +0200606 (device_get_uclass_id(child) != UCLASS_BOOTDEV) &&
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700607 (device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
608 (device_get_uclass_id(child) != UCLASS_BLK)) {
Hans de Goedee6e188f2016-07-03 20:22:05 +0200609 udev = dev_get_parent_priv(child);
Xavier Drudis Ferran7a875a82023-06-21 09:13:07 +0200610 if (udev)
611 usb_show_info(udev);
Simon Glass6a1b2062015-03-25 12:22:02 -0600612 }
613 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600614}
615#endif
616
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100617/******************************************************************************
wdenke887afc2002-08-27 09:44:07 +0000618 * usb command intepreter
619 */
Simon Glass09140112020-05-10 11:40:03 -0600620static int do_usb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
wdenke887afc2002-08-27 09:44:07 +0000621{
Simon Glasscad42912015-03-25 12:22:00 -0600622 struct usb_device *udev = NULL;
wdenke887afc2002-08-27 09:44:07 +0000623 int i;
wdenke887afc2002-08-27 09:44:07 +0000624
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200625 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000626 return CMD_RET_USAGE;
Serge Ziryukin65d34252010-04-25 21:32:36 +0300627
Hans de Goedeb5072262015-01-06 14:27:41 +0100628 if (strncmp(argv[1], "start", 5) == 0) {
629 if (usb_started)
630 return 0; /* Already started */
631 printf("starting USB...\n");
632 do_usb_start();
633 return 0;
634 }
635
636 if (strncmp(argv[1], "reset", 5) == 0) {
637 printf("resetting USB...\n");
Hans de Goede8a8a2252014-09-20 16:54:38 +0200638 if (do_usb_stop_keyboard(1) != 0)
Hans de Goede6e78c742014-09-20 16:54:35 +0200639 return 1;
wdenke887afc2002-08-27 09:44:07 +0000640 usb_stop();
Hans de Goedeb5072262015-01-06 14:27:41 +0100641 do_usb_start();
wdenke887afc2002-08-27 09:44:07 +0000642 return 0;
643 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100644 if (strncmp(argv[1], "stop", 4) == 0) {
Hans de Goede6e78c742014-09-20 16:54:35 +0200645 if (argc != 2)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100646 console_assign(stdin, "serial");
Hans de Goede8a8a2252014-09-20 16:54:38 +0200647 if (do_usb_stop_keyboard(0) != 0)
Hans de Goede6e78c742014-09-20 16:54:35 +0200648 return 1;
wdenke887afc2002-08-27 09:44:07 +0000649 printf("stopping USB..\n");
650 usb_stop();
651 return 0;
652 }
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200653 if (!usb_started) {
654 printf("USB is stopped. Please issue 'usb start' first.\n");
655 return 1;
656 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100657 if (strncmp(argv[1], "tree", 4) == 0) {
Lucas Stach93c25822012-09-26 00:14:36 +0200658 puts("USB device tree:\n");
Simon Glass45bfa472015-11-08 23:47:51 -0700659 usb_show_tree();
wdenke887afc2002-08-27 09:44:07 +0000660 return 0;
661 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100662 if (strncmp(argv[1], "inf", 3) == 0) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100663 if (argc == 2) {
Simon Glass6a1b2062015-03-25 12:22:02 -0600664#ifdef CONFIG_DM_USB
Hans de Goedee6e188f2016-07-03 20:22:05 +0200665 usb_for_each_root_dev(usb_show_info);
Simon Glass6a1b2062015-03-25 12:22:02 -0600666#else
667 int d;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100668 for (d = 0; d < USB_MAX_DEVICE; d++) {
Simon Glasscad42912015-03-25 12:22:00 -0600669 udev = usb_get_dev_index(d);
670 if (udev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000671 break;
Simon Glasscad42912015-03-25 12:22:00 -0600672 usb_display_desc(udev);
673 usb_display_config(udev);
wdenke887afc2002-08-27 09:44:07 +0000674 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600675#endif
wdenke887afc2002-08-27 09:44:07 +0000676 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100677 } else {
Simon Glass6a1b2062015-03-25 12:22:02 -0600678 /*
679 * With driver model this isn't right since we can
680 * have multiple controllers and the device numbering
681 * starts at 1 on each bus.
682 */
Simon Glass0b1284e2021-07-24 09:03:30 -0600683 i = dectoul(argv[2], NULL);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100684 printf("config for device %d\n", i);
Simon Glasscad42912015-03-25 12:22:00 -0600685 udev = usb_find_device(i);
686 if (udev == NULL) {
Loïc Minier6052cba2011-02-03 22:04:26 +0100687 printf("*** No device available ***\n");
wdenke887afc2002-08-27 09:44:07 +0000688 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100689 } else {
Simon Glasscad42912015-03-25 12:22:00 -0600690 usb_display_desc(udev);
691 usb_display_config(udev);
wdenke887afc2002-08-27 09:44:07 +0000692 }
693 }
694 return 0;
695 }
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000696 if (strncmp(argv[1], "test", 4) == 0) {
697 if (argc < 5)
698 return CMD_RET_USAGE;
Simon Glass0b1284e2021-07-24 09:03:30 -0600699 i = dectoul(argv[2], NULL);
Simon Glasscad42912015-03-25 12:22:00 -0600700 udev = usb_find_device(i);
701 if (udev == NULL) {
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000702 printf("Device %d does not exist.\n", i);
703 return 1;
704 }
Simon Glass0b1284e2021-07-24 09:03:30 -0600705 i = dectoul(argv[3], NULL);
Simon Glasscad42912015-03-25 12:22:00 -0600706 return usb_test(udev, i, argv[4]);
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000707 }
wdenke887afc2002-08-27 09:44:07 +0000708#ifdef CONFIG_USB_STORAGE
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100709 if (strncmp(argv[1], "stor", 4) == 0)
Aras Vaichasf6b44e02008-03-25 12:09:07 +1100710 return usb_stor_info();
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200711
Simon Glasse33a5c62022-08-11 19:34:59 -0600712 return blk_common_cmd(argc, argv, UCLASS_USB, &usb_stor_curr_dev);
Simon Glassc16ad672017-07-29 11:34:58 -0600713#else
Simon Glass4c12eeb2011-12-10 08:44:01 +0000714 return CMD_RET_USAGE;
Simon Glassc16ad672017-07-29 11:34:58 -0600715#endif /* CONFIG_USB_STORAGE */
wdenke887afc2002-08-27 09:44:07 +0000716}
717
wdenk0d498392003-07-01 21:06:45 +0000718U_BOOT_CMD(
719 usb, 5, 1, do_usb,
Peter Tyser2fb26042009-01-27 18:03:12 -0600720 "USB sub-system",
Veli-Pekka Peltola1af9f962011-11-02 16:59:56 +0200721 "start - start (scan) USB controller\n"
722 "usb reset - reset (rescan) USB controller\n"
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200723 "usb stop [f] - stop USB [f]=force stop\n"
724 "usb tree - show USB device tree\n"
wdenk5cf91d62004-04-23 20:32:05 +0000725 "usb info [dev] - show available USB devices\n"
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000726 "usb test [dev] [port] [mode] - set USB 2.0 test mode\n"
727 " (specify port 0 to indicate the device's upstream port)\n"
728 " Available modes: J, K, S[E0_NAK], P[acket], F[orce_Enable]\n"
729#ifdef CONFIG_USB_STORAGE
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200730 "usb storage - show details of USB storage devices\n"
wdenk342717f2005-06-27 13:30:03 +0000731 "usb dev [dev] - show or set current USB storage device\n"
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100732 "usb part [dev] - print partition table of one or all USB storage"
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000733 " devices\n"
wdenk5cf91d62004-04-23 20:32:05 +0000734 "usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
Sergei Poselenov842404e2010-08-09 16:01:42 +0400735 " to memory address `addr'\n"
Mahavir Jain127e1082009-11-03 12:22:10 +0530736 "usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'\n"
737 " from memory address `addr'"
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000738#endif /* CONFIG_USB_STORAGE */
wdenk8bde7f72003-06-27 21:31:46 +0000739);
740
741
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000742#ifdef CONFIG_USB_STORAGE
wdenk0d498392003-07-01 21:06:45 +0000743U_BOOT_CMD(
744 usbboot, 3, 1, do_usbboot,
Peter Tyser2fb26042009-01-27 18:03:12 -0600745 "boot from USB device",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200746 "loadAddr dev:part"
wdenk8bde7f72003-06-27 21:31:46 +0000747);
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000748#endif /* CONFIG_USB_STORAGE */