blob: 13a2996c1f007c322884d2f93d36d1512f5fc8f6 [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
wdenke887afc2002-08-27 09:44:07 +000028
wdenk4ea537d2003-12-07 18:32:37 +000029/* some display routines (info command) */
Kim Phillipsdc00a682012-10-29 13:34:31 +000030static char *usb_get_class_desc(unsigned char dclass)
wdenke887afc2002-08-27 09:44:07 +000031{
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +010032 switch (dclass) {
33 case USB_CLASS_PER_INTERFACE:
34 return "See Interface";
35 case USB_CLASS_AUDIO:
36 return "Audio";
37 case USB_CLASS_COMM:
38 return "Communication";
39 case USB_CLASS_HID:
40 return "Human Interface";
41 case USB_CLASS_PRINTER:
42 return "Printer";
43 case USB_CLASS_MASS_STORAGE:
44 return "Mass Storage";
45 case USB_CLASS_HUB:
46 return "Hub";
47 case USB_CLASS_DATA:
48 return "CDC Data";
49 case USB_CLASS_VENDOR_SPEC:
50 return "Vendor specific";
51 default:
52 return "";
wdenke887afc2002-08-27 09:44:07 +000053 }
54}
55
Kim Phillipsdc00a682012-10-29 13:34:31 +000056static void usb_display_class_sub(unsigned char dclass, unsigned char subclass,
57 unsigned char proto)
wdenke887afc2002-08-27 09:44:07 +000058{
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +010059 switch (dclass) {
60 case USB_CLASS_PER_INTERFACE:
61 printf("See Interface");
62 break;
63 case USB_CLASS_HID:
64 printf("Human Interface, Subclass: ");
65 switch (subclass) {
66 case USB_SUB_HID_NONE:
67 printf("None");
wdenke887afc2002-08-27 09:44:07 +000068 break;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +010069 case USB_SUB_HID_BOOT:
70 printf("Boot ");
71 switch (proto) {
72 case USB_PROT_HID_NONE:
73 printf("None");
74 break;
75 case USB_PROT_HID_KEYBOARD:
76 printf("Keyboard");
77 break;
78 case USB_PROT_HID_MOUSE:
79 printf("Mouse");
80 break;
81 default:
82 printf("reserved");
83 break;
wdenke887afc2002-08-27 09:44:07 +000084 }
85 break;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +010086 default:
87 printf("reserved");
88 break;
89 }
90 break;
91 case USB_CLASS_MASS_STORAGE:
92 printf("Mass Storage, ");
93 switch (subclass) {
94 case US_SC_RBC:
95 printf("RBC ");
96 break;
97 case US_SC_8020:
98 printf("SFF-8020i (ATAPI)");
99 break;
100 case US_SC_QIC:
101 printf("QIC-157 (Tape)");
102 break;
103 case US_SC_UFI:
104 printf("UFI");
105 break;
106 case US_SC_8070:
107 printf("SFF-8070");
108 break;
109 case US_SC_SCSI:
110 printf("Transp. SCSI");
wdenke887afc2002-08-27 09:44:07 +0000111 break;
112 default:
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100113 printf("reserved");
114 break;
115 }
116 printf(", ");
117 switch (proto) {
118 case US_PR_CB:
119 printf("Command/Bulk");
120 break;
121 case US_PR_CBI:
122 printf("Command/Bulk/Int");
123 break;
124 case US_PR_BULK:
125 printf("Bulk only");
126 break;
127 default:
128 printf("reserved");
129 break;
130 }
131 break;
132 default:
133 printf("%s", usb_get_class_desc(dclass));
134 break;
wdenke887afc2002-08-27 09:44:07 +0000135 }
136}
137
Kim Phillipsdc00a682012-10-29 13:34:31 +0000138static void usb_display_string(struct usb_device *dev, int index)
wdenke887afc2002-08-27 09:44:07 +0000139{
Puneet Saxena6c9bb602012-04-03 14:56:06 +0530140 ALLOC_CACHE_ALIGN_BUFFER(char, buffer, 256);
141
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100142 if (index != 0) {
143 if (usb_string(dev, index, &buffer[0], 256) > 0)
144 printf("String: \"%s\"", buffer);
wdenke887afc2002-08-27 09:44:07 +0000145 }
146}
147
Kim Phillipsdc00a682012-10-29 13:34:31 +0000148static void usb_display_desc(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000149{
Bin Mengaec8af32017-07-19 21:50:07 +0800150 uint packet_size = dev->descriptor.bMaxPacketSize0;
151
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100152 if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) {
153 printf("%d: %s, USB Revision %x.%x\n", dev->devnum,
Tom Rix83b9e1d2009-10-31 12:37:38 -0500154 usb_get_class_desc(dev->config.if_desc[0].desc.bInterfaceClass),
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100155 (dev->descriptor.bcdUSB>>8) & 0xff,
156 dev->descriptor.bcdUSB & 0xff);
157
158 if (strlen(dev->mf) || strlen(dev->prod) ||
159 strlen(dev->serial))
160 printf(" - %s %s %s\n", dev->mf, dev->prod,
161 dev->serial);
wdenke887afc2002-08-27 09:44:07 +0000162 if (dev->descriptor.bDeviceClass) {
163 printf(" - Class: ");
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100164 usb_display_class_sub(dev->descriptor.bDeviceClass,
165 dev->descriptor.bDeviceSubClass,
166 dev->descriptor.bDeviceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000167 printf("\n");
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100168 } else {
169 printf(" - Class: (from Interface) %s\n",
170 usb_get_class_desc(
Tom Rix83b9e1d2009-10-31 12:37:38 -0500171 dev->config.if_desc[0].desc.bInterfaceClass));
wdenke887afc2002-08-27 09:44:07 +0000172 }
Bin Mengaec8af32017-07-19 21:50:07 +0800173 if (dev->descriptor.bcdUSB >= cpu_to_le16(0x0300))
174 packet_size = 1 << packet_size;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100175 printf(" - PacketSize: %d Configurations: %d\n",
Bin Mengaec8af32017-07-19 21:50:07 +0800176 packet_size, dev->descriptor.bNumConfigurations);
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100177 printf(" - Vendor: 0x%04x Product 0x%04x Version %d.%d\n",
178 dev->descriptor.idVendor, dev->descriptor.idProduct,
179 (dev->descriptor.bcdDevice>>8) & 0xff,
180 dev->descriptor.bcdDevice & 0xff);
wdenke887afc2002-08-27 09:44:07 +0000181 }
182
183}
184
Ilya Yanoka1cf10f2012-11-06 13:48:20 +0000185static void usb_display_conf_desc(struct usb_config_descriptor *config,
Kim Phillipsdc00a682012-10-29 13:34:31 +0000186 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000187{
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100188 printf(" Configuration: %d\n", config->bConfigurationValue);
189 printf(" - Interfaces: %d %s%s%dmA\n", config->bNumInterfaces,
190 (config->bmAttributes & 0x40) ? "Self Powered " : "Bus Powered ",
191 (config->bmAttributes & 0x20) ? "Remote Wakeup " : "",
Tom Rix83b9e1d2009-10-31 12:37:38 -0500192 config->bMaxPower*2);
wdenke887afc2002-08-27 09:44:07 +0000193 if (config->iConfiguration) {
194 printf(" - ");
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100195 usb_display_string(dev, config->iConfiguration);
wdenke887afc2002-08-27 09:44:07 +0000196 printf("\n");
197 }
198}
199
Kim Phillipsdc00a682012-10-29 13:34:31 +0000200static void usb_display_if_desc(struct usb_interface_descriptor *ifdesc,
201 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000202{
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100203 printf(" Interface: %d\n", ifdesc->bInterfaceNumber);
204 printf(" - Alternate Setting %d, Endpoints: %d\n",
205 ifdesc->bAlternateSetting, ifdesc->bNumEndpoints);
wdenke887afc2002-08-27 09:44:07 +0000206 printf(" - Class ");
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100207 usb_display_class_sub(ifdesc->bInterfaceClass,
208 ifdesc->bInterfaceSubClass, ifdesc->bInterfaceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000209 printf("\n");
210 if (ifdesc->iInterface) {
211 printf(" - ");
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100212 usb_display_string(dev, ifdesc->iInterface);
wdenke887afc2002-08-27 09:44:07 +0000213 printf("\n");
214 }
215}
216
Kim Phillipsdc00a682012-10-29 13:34:31 +0000217static void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc)
wdenke887afc2002-08-27 09:44:07 +0000218{
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100219 printf(" - Endpoint %d %s ", epdesc->bEndpointAddress & 0xf,
220 (epdesc->bEndpointAddress & 0x80) ? "In" : "Out");
221 switch ((epdesc->bmAttributes & 0x03)) {
222 case 0:
223 printf("Control");
224 break;
225 case 1:
226 printf("Isochronous");
227 break;
228 case 2:
229 printf("Bulk");
230 break;
231 case 3:
232 printf("Interrupt");
233 break;
wdenke887afc2002-08-27 09:44:07 +0000234 }
Tom Rini73424522011-12-15 08:40:51 -0700235 printf(" MaxPacket %d", get_unaligned(&epdesc->wMaxPacketSize));
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100236 if ((epdesc->bmAttributes & 0x03) == 0x3)
237 printf(" Interval %dms", epdesc->bInterval);
wdenke887afc2002-08-27 09:44:07 +0000238 printf("\n");
239}
240
241/* main routine to diasplay the configs, interfaces and endpoints */
Kim Phillipsdc00a682012-10-29 13:34:31 +0000242static void usb_display_config(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000243{
Tom Rix83b9e1d2009-10-31 12:37:38 -0500244 struct usb_config *config;
245 struct usb_interface *ifdesc;
wdenke887afc2002-08-27 09:44:07 +0000246 struct usb_endpoint_descriptor *epdesc;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100247 int i, ii;
wdenke887afc2002-08-27 09:44:07 +0000248
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100249 config = &dev->config;
Tom Rix83b9e1d2009-10-31 12:37:38 -0500250 usb_display_conf_desc(&config->desc, dev);
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100251 for (i = 0; i < config->no_of_if; i++) {
252 ifdesc = &config->if_desc[i];
Tom Rix83b9e1d2009-10-31 12:37:38 -0500253 usb_display_if_desc(&ifdesc->desc, dev);
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100254 for (ii = 0; ii < ifdesc->no_of_ep; ii++) {
255 epdesc = &ifdesc->ep_desc[ii];
wdenke887afc2002-08-27 09:44:07 +0000256 usb_display_ep_desc(epdesc);
257 }
258 }
259 printf("\n");
260}
261
Simon Glass19e81512015-03-25 12:22:02 -0600262/*
263 * With driver model this isn't right since we can have multiple controllers
264 * and the device numbering starts at 1 on each bus.
265 * TODO(sjg@chromium.org): Add a way to specify the controller/bus.
266 */
Julius Wernerd4046702013-02-28 18:08:40 +0000267static struct usb_device *usb_find_device(int devnum)
268{
Simon Glass19e81512015-03-25 12:22:02 -0600269#ifdef CONFIG_DM_USB
270 struct usb_device *udev;
271 struct udevice *hub;
272 struct uclass *uc;
273 int ret;
274
275 /* Device addresses start at 1 */
276 devnum++;
277 ret = uclass_get(UCLASS_USB_HUB, &uc);
278 if (ret)
279 return NULL;
280
281 uclass_foreach_dev(hub, uc) {
282 struct udevice *dev;
283
284 if (!device_active(hub))
285 continue;
Simon Glassde44acf2015-09-28 23:32:01 -0600286 udev = dev_get_parent_priv(hub);
Simon Glass19e81512015-03-25 12:22:02 -0600287 if (udev->devnum == devnum)
288 return udev;
289
290 for (device_find_first_child(hub, &dev);
291 dev;
292 device_find_next_child(&dev)) {
293 if (!device_active(hub))
294 continue;
295
Simon Glassde44acf2015-09-28 23:32:01 -0600296 udev = dev_get_parent_priv(dev);
Simon Glass19e81512015-03-25 12:22:02 -0600297 if (udev->devnum == devnum)
298 return udev;
299 }
300 }
301#else
Simon Glass729e2572015-03-25 12:22:00 -0600302 struct usb_device *udev;
Julius Wernerd4046702013-02-28 18:08:40 +0000303 int d;
304
305 for (d = 0; d < USB_MAX_DEVICE; d++) {
Simon Glass729e2572015-03-25 12:22:00 -0600306 udev = usb_get_dev_index(d);
307 if (udev == NULL)
Julius Wernerd4046702013-02-28 18:08:40 +0000308 return NULL;
Simon Glass729e2572015-03-25 12:22:00 -0600309 if (udev->devnum == devnum)
310 return udev;
Julius Wernerd4046702013-02-28 18:08:40 +0000311 }
Simon Glass19e81512015-03-25 12:22:02 -0600312#endif
Julius Wernerd4046702013-02-28 18:08:40 +0000313
314 return NULL;
315}
316
Ismael Luceno Cortes93431a82019-04-01 16:09:13 +0000317static inline const char *portspeed(int speed)
Stefan Roese6a6d9d12009-01-22 10:11:21 +0100318{
Vivek Gautamdf3f2212013-04-12 16:34:38 +0530319 switch (speed) {
320 case USB_SPEED_SUPER:
Ismael Luceno Cortes93431a82019-04-01 16:09:13 +0000321 return "5 Gb/s";
Vivek Gautamdf3f2212013-04-12 16:34:38 +0530322 case USB_SPEED_HIGH:
Ismael Luceno Cortes93431a82019-04-01 16:09:13 +0000323 return "480 Mb/s";
Vivek Gautamdf3f2212013-04-12 16:34:38 +0530324 case USB_SPEED_LOW:
Ismael Luceno Cortes93431a82019-04-01 16:09:13 +0000325 return "1.5 Mb/s";
Vivek Gautamdf3f2212013-04-12 16:34:38 +0530326 default:
Ismael Luceno Cortes93431a82019-04-01 16:09:13 +0000327 return "12 Mb/s";
Vivek Gautamdf3f2212013-04-12 16:34:38 +0530328 }
Stefan Roese6a6d9d12009-01-22 10:11:21 +0100329}
330
wdenke887afc2002-08-27 09:44:07 +0000331/* shows the device tree recursively */
Kim Phillipsdc00a682012-10-29 13:34:31 +0000332static void usb_show_tree_graph(struct usb_device *dev, char *pre)
wdenke887afc2002-08-27 09:44:07 +0000333{
Simon Glass19e81512015-03-25 12:22:02 -0600334 int index;
Wolfgang Denk6c7c5582011-10-05 23:01:59 +0200335 int has_child, last_child;
wdenke887afc2002-08-27 09:44:07 +0000336
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100337 index = strlen(pre);
338 printf(" %s", pre);
Simon Glass19e81512015-03-25 12:22:02 -0600339#ifdef CONFIG_DM_USB
340 has_child = device_has_active_children(dev->dev);
Suneel Garapatie7728fe2017-10-23 17:28:40 -0700341 if (device_get_uclass_id(dev->dev) == UCLASS_MASS_STORAGE) {
342 struct udevice *child;
343
344 for (device_find_first_child(dev->dev, &child);
345 child;
346 device_find_next_child(&child)) {
347 if (device_get_uclass_id(child) == UCLASS_BLK)
348 has_child = 0;
349 }
350 }
Simon Glass19e81512015-03-25 12:22:02 -0600351#else
wdenke887afc2002-08-27 09:44:07 +0000352 /* check if the device has connected children */
Simon Glass19e81512015-03-25 12:22:02 -0600353 int i;
354
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100355 has_child = 0;
356 for (i = 0; i < dev->maxchild; i++) {
357 if (dev->children[i] != NULL)
358 has_child = 1;
wdenke887afc2002-08-27 09:44:07 +0000359 }
Simon Glass19e81512015-03-25 12:22:02 -0600360#endif
wdenke887afc2002-08-27 09:44:07 +0000361 /* check if we are the last one */
Simon Glass19e81512015-03-25 12:22:02 -0600362#ifdef CONFIG_DM_USB
Hans de Goedef97c8e22015-06-17 21:33:50 +0200363 /* Not the root of the usb tree? */
364 if (device_get_uclass_id(dev->dev->parent) != UCLASS_USB) {
365 last_child = device_is_last_sibling(dev->dev);
Simon Glass19e81512015-03-25 12:22:02 -0600366#else
Hans de Goedef97c8e22015-06-17 21:33:50 +0200367 if (dev->parent != NULL) { /* not root? */
368 last_child = 1;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100369 for (i = 0; i < dev->parent->maxchild; i++) {
wdenke887afc2002-08-27 09:44:07 +0000370 /* search for children */
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100371 if (dev->parent->children[i] == dev) {
372 /* found our pointer, see if we have a
373 * little sister
374 */
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100375 while (i++ < dev->parent->maxchild) {
376 if (dev->parent->children[i] != NULL) {
wdenke887afc2002-08-27 09:44:07 +0000377 /* found a sister */
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100378 last_child = 0;
wdenke887afc2002-08-27 09:44:07 +0000379 break;
380 } /* if */
381 } /* while */
382 } /* device found */
383 } /* for all children of the parent */
Simon Glass19e81512015-03-25 12:22:02 -0600384#endif
wdenke887afc2002-08-27 09:44:07 +0000385 printf("\b+-");
386 /* correct last child */
Simon Glass729e2572015-03-25 12:22:00 -0600387 if (last_child && index)
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100388 pre[index-1] = ' ';
wdenke887afc2002-08-27 09:44:07 +0000389 } /* if not root hub */
390 else
391 printf(" ");
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100392 printf("%d ", dev->devnum);
393 pre[index++] = ' ';
394 pre[index++] = has_child ? '|' : ' ';
395 pre[index] = 0;
396 printf(" %s (%s, %dmA)\n", usb_get_class_desc(
Tom Rix83b9e1d2009-10-31 12:37:38 -0500397 dev->config.if_desc[0].desc.bInterfaceClass),
Stefan Roese6a6d9d12009-01-22 10:11:21 +0100398 portspeed(dev->speed),
Tom Rix83b9e1d2009-10-31 12:37:38 -0500399 dev->config.desc.bMaxPower * 2);
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100400 if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial))
401 printf(" %s %s %s %s\n", pre, dev->mf, dev->prod, dev->serial);
402 printf(" %s\n", pre);
Simon Glass19e81512015-03-25 12:22:02 -0600403#ifdef CONFIG_DM_USB
404 struct udevice *child;
405
406 for (device_find_first_child(dev->dev, &child);
407 child;
408 device_find_next_child(&child)) {
409 struct usb_device *udev;
410
411 if (!device_active(child))
412 continue;
413
Simon Glassde44acf2015-09-28 23:32:01 -0600414 udev = dev_get_parent_priv(child);
Simon Glass19e81512015-03-25 12:22:02 -0600415
Suneel Garapatie7728fe2017-10-23 17:28:40 -0700416 /*
417 * Ignore emulators and block child devices, we only want
418 * real devices
419 */
Xavier Drudis Ferran914b1192023-06-21 09:13:07 +0200420 if (udev &&
421 (device_get_uclass_id(child) != UCLASS_BOOTDEV) &&
422 (device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
Suneel Garapatie7728fe2017-10-23 17:28:40 -0700423 (device_get_uclass_id(child) != UCLASS_BLK)) {
Simon Glass19e81512015-03-25 12:22:02 -0600424 usb_show_tree_graph(udev, pre);
425 pre[index] = 0;
426 }
427 }
428#else
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100429 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;
wdenke887afc2002-08-27 09:44:07 +0000434 }
435 }
436 }
Simon Glass19e81512015-03-25 12:22:02 -0600437#endif
wdenke887afc2002-08-27 09:44:07 +0000438}
439
440/* main routine for the tree command */
Simon Glass09def3a2015-11-08 23:47:51 -0700441static void usb_show_subtree(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000442{
443 char preamble[32];
444
Simon Glass729e2572015-03-25 12:22:00 -0600445 memset(preamble, '\0', sizeof(preamble));
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100446 usb_show_tree_graph(dev, &preamble[0]);
wdenke887afc2002-08-27 09:44:07 +0000447}
448
Simon Glass09def3a2015-11-08 23:47:51 -0700449#ifdef CONFIG_DM_USB
Hans de Goedef4451d92016-07-03 20:22:04 +0200450typedef void (*usb_dev_func_t)(struct usb_device *udev);
451
452static void usb_for_each_root_dev(usb_dev_func_t func)
453{
Simon Glass09def3a2015-11-08 23:47:51 -0700454 struct udevice *bus;
455
Hans de Goedeee705fc2016-04-03 00:04:39 +0200456 for (uclass_find_first_device(UCLASS_USB, &bus);
Simon Glass09def3a2015-11-08 23:47:51 -0700457 bus;
Hans de Goedeee705fc2016-04-03 00:04:39 +0200458 uclass_find_next_device(&bus)) {
Simon Glass09def3a2015-11-08 23:47:51 -0700459 struct usb_device *udev;
460 struct udevice *dev;
461
Hans de Goedeee705fc2016-04-03 00:04:39 +0200462 if (!device_active(bus))
463 continue;
464
Simon Glass09def3a2015-11-08 23:47:51 -0700465 device_find_first_child(bus, &dev);
466 if (dev && device_active(dev)) {
467 udev = dev_get_parent_priv(dev);
Hans de Goedef4451d92016-07-03 20:22:04 +0200468 func(udev);
Simon Glass09def3a2015-11-08 23:47:51 -0700469 }
470 }
Hans de Goedef4451d92016-07-03 20:22:04 +0200471}
472#endif
473
474void usb_show_tree(void)
475{
476#ifdef CONFIG_DM_USB
477 usb_for_each_root_dev(usb_show_subtree);
Simon Glass09def3a2015-11-08 23:47:51 -0700478#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
Julius Wernerd4046702013-02-28 18:08:40 +0000492static 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
wdenke887afc2002-08-27 09:44:07 +0000552/******************************************************************************
553 * usb boot command intepreter. Derived from diskboot
554 */
555#ifdef CONFIG_USB_STORAGE
Simon Glassed38aef2020-05-10 11:40:03 -0600556static int do_usbboot(struct cmd_tbl *cmdtp, int flag, int argc,
557 char *const argv[])
wdenke887afc2002-08-27 09:44:07 +0000558{
Rob Herringa20cbf92012-09-21 04:02:30 +0000559 return common_diskboot(cmdtp, "usb", argc, argv);
wdenke887afc2002-08-27 09:44:07 +0000560}
561#endif /* CONFIG_USB_STORAGE */
562
Hans de Goede2af82562015-01-06 14:27:41 +0100563static void do_usb_start(void)
564{
565 bootstage_mark_name(BOOTSTAGE_ID_USB_START, "usb_start");
566
567 if (usb_init() < 0)
568 return;
569
Simon Glass19e81512015-03-25 12:22:02 -0600570 /* Driver model will probe the devices as they are found */
Simon Glass02f0c282015-09-08 11:15:11 -0600571# ifdef CONFIG_USB_STORAGE
Hans de Goede2af82562015-01-06 14:27:41 +0100572 /* try to recognize storage devices immediately */
573 usb_stor_curr_dev = usb_stor_scan(1);
Simon Glass02f0c282015-09-08 11:15:11 -0600574# endif
Hans de Goede2af82562015-01-06 14:27:41 +0100575}
Simon Glass19e81512015-03-25 12:22:02 -0600576
577#ifdef CONFIG_DM_USB
Hans de Goedef88d6fa2016-07-03 20:22:05 +0200578static void usb_show_info(struct usb_device *udev)
Simon Glass19e81512015-03-25 12:22:02 -0600579{
580 struct udevice *child;
Simon Glass19e81512015-03-25 12:22:02 -0600581
Simon Glass19e81512015-03-25 12:22:02 -0600582 usb_display_desc(udev);
583 usb_display_config(udev);
Hans de Goedef88d6fa2016-07-03 20:22:05 +0200584 for (device_find_first_child(udev->dev, &child);
Simon Glass19e81512015-03-25 12:22:02 -0600585 child;
586 device_find_next_child(&child)) {
Suneel Garapatie7728fe2017-10-23 17:28:40 -0700587 if (device_active(child) &&
Xavier Drudis Ferran914b1192023-06-21 09:13:07 +0200588 (device_get_uclass_id(child) != UCLASS_BOOTDEV) &&
Suneel Garapatie7728fe2017-10-23 17:28:40 -0700589 (device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
590 (device_get_uclass_id(child) != UCLASS_BLK)) {
Hans de Goedef88d6fa2016-07-03 20:22:05 +0200591 udev = dev_get_parent_priv(child);
Xavier Drudis Ferran914b1192023-06-21 09:13:07 +0200592 if (udev)
593 usb_show_info(udev);
Simon Glass19e81512015-03-25 12:22:02 -0600594 }
595 }
Simon Glass19e81512015-03-25 12:22:02 -0600596}
597#endif
Hans de Goede2af82562015-01-06 14:27:41 +0100598
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100599/******************************************************************************
wdenke887afc2002-08-27 09:44:07 +0000600 * usb command intepreter
601 */
Simon Glassed38aef2020-05-10 11:40:03 -0600602static int do_usb(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
wdenke887afc2002-08-27 09:44:07 +0000603{
Simon Glass729e2572015-03-25 12:22:00 -0600604 struct usb_device *udev = NULL;
wdenke887afc2002-08-27 09:44:07 +0000605 int i;
wdenke887afc2002-08-27 09:44:07 +0000606
Wolfgang Denk3b683112010-07-17 01:06:04 +0200607 if (argc < 2)
Simon Glassa06dfc72011-12-10 08:44:01 +0000608 return CMD_RET_USAGE;
Serge Ziryukin84e20a22010-04-25 21:32:36 +0300609
Hans de Goede2af82562015-01-06 14:27:41 +0100610 if (strncmp(argv[1], "start", 5) == 0) {
611 if (usb_started)
612 return 0; /* Already started */
613 printf("starting USB...\n");
614 do_usb_start();
615 return 0;
616 }
617
618 if (strncmp(argv[1], "reset", 5) == 0) {
619 printf("resetting USB...\n");
wdenke887afc2002-08-27 09:44:07 +0000620 usb_stop();
Hans de Goede2af82562015-01-06 14:27:41 +0100621 do_usb_start();
wdenke887afc2002-08-27 09:44:07 +0000622 return 0;
623 }
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100624 if (strncmp(argv[1], "stop", 4) == 0) {
Hans de Goedec7c11742014-09-20 16:54:35 +0200625 if (argc != 2)
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100626 console_assign(stdin, "serial");
wdenke887afc2002-08-27 09:44:07 +0000627 printf("stopping USB..\n");
628 usb_stop();
629 return 0;
630 }
Bartlomiej Siekae39589f2006-08-03 23:20:13 +0200631 if (!usb_started) {
632 printf("USB is stopped. Please issue 'usb start' first.\n");
633 return 1;
634 }
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100635 if (strncmp(argv[1], "tree", 4) == 0) {
Lucas Stache6d33452012-09-26 00:14:36 +0200636 puts("USB device tree:\n");
Simon Glass09def3a2015-11-08 23:47:51 -0700637 usb_show_tree();
wdenke887afc2002-08-27 09:44:07 +0000638 return 0;
639 }
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100640 if (strncmp(argv[1], "inf", 3) == 0) {
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100641 if (argc == 2) {
Simon Glass19e81512015-03-25 12:22:02 -0600642#ifdef CONFIG_DM_USB
Hans de Goedef88d6fa2016-07-03 20:22:05 +0200643 usb_for_each_root_dev(usb_show_info);
Simon Glass19e81512015-03-25 12:22:02 -0600644#else
645 int d;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100646 for (d = 0; d < USB_MAX_DEVICE; d++) {
Simon Glass729e2572015-03-25 12:22:00 -0600647 udev = usb_get_dev_index(d);
648 if (udev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000649 break;
Simon Glass729e2572015-03-25 12:22:00 -0600650 usb_display_desc(udev);
651 usb_display_config(udev);
wdenke887afc2002-08-27 09:44:07 +0000652 }
Simon Glass19e81512015-03-25 12:22:02 -0600653#endif
wdenke887afc2002-08-27 09:44:07 +0000654 return 0;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100655 } else {
Simon Glass19e81512015-03-25 12:22:02 -0600656 /*
657 * With driver model this isn't right since we can
658 * have multiple controllers and the device numbering
659 * starts at 1 on each bus.
660 */
Simon Glassff9b9032021-07-24 09:03:30 -0600661 i = dectoul(argv[2], NULL);
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100662 printf("config for device %d\n", i);
Simon Glass729e2572015-03-25 12:22:00 -0600663 udev = usb_find_device(i);
664 if (udev == NULL) {
Loïc Minier5d0569a2011-02-03 22:04:26 +0100665 printf("*** No device available ***\n");
wdenke887afc2002-08-27 09:44:07 +0000666 return 0;
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100667 } else {
Simon Glass729e2572015-03-25 12:22:00 -0600668 usb_display_desc(udev);
669 usb_display_config(udev);
wdenke887afc2002-08-27 09:44:07 +0000670 }
671 }
672 return 0;
673 }
Julius Wernerd4046702013-02-28 18:08:40 +0000674 if (strncmp(argv[1], "test", 4) == 0) {
675 if (argc < 5)
676 return CMD_RET_USAGE;
Simon Glassff9b9032021-07-24 09:03:30 -0600677 i = dectoul(argv[2], NULL);
Simon Glass729e2572015-03-25 12:22:00 -0600678 udev = usb_find_device(i);
679 if (udev == NULL) {
Julius Wernerd4046702013-02-28 18:08:40 +0000680 printf("Device %d does not exist.\n", i);
681 return 1;
682 }
Simon Glassff9b9032021-07-24 09:03:30 -0600683 i = dectoul(argv[3], NULL);
Simon Glass729e2572015-03-25 12:22:00 -0600684 return usb_test(udev, i, argv[4]);
Julius Wernerd4046702013-02-28 18:08:40 +0000685 }
wdenke887afc2002-08-27 09:44:07 +0000686#ifdef CONFIG_USB_STORAGE
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100687 if (strncmp(argv[1], "stor", 4) == 0)
Aras Vaichas7ede1862008-03-25 12:09:07 +1100688 return usb_stor_info();
Wolfgang Denkc7a4f7d2005-07-21 11:57:57 +0200689
Simon Glassdbfa32c2022-08-11 19:34:59 -0600690 return blk_common_cmd(argc, argv, UCLASS_USB, &usb_stor_curr_dev);
Simon Glassd9289f32017-07-29 11:34:58 -0600691#else
Simon Glassa06dfc72011-12-10 08:44:01 +0000692 return CMD_RET_USAGE;
Simon Glassd9289f32017-07-29 11:34:58 -0600693#endif /* CONFIG_USB_STORAGE */
wdenke887afc2002-08-27 09:44:07 +0000694}
695
wdenkf287a242003-07-01 21:06:45 +0000696U_BOOT_CMD(
697 usb, 5, 1, do_usb,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600698 "USB sub-system",
Veli-Pekka Peltoladdb90d32011-11-02 16:59:56 +0200699 "start - start (scan) USB controller\n"
700 "usb reset - reset (rescan) USB controller\n"
Veli-Pekka Peltola1f47a4d2011-11-02 16:59:55 +0200701 "usb stop [f] - stop USB [f]=force stop\n"
702 "usb tree - show USB device tree\n"
wdenk20c98a62004-04-23 20:32:05 +0000703 "usb info [dev] - show available USB devices\n"
Julius Wernerd4046702013-02-28 18:08:40 +0000704 "usb test [dev] [port] [mode] - set USB 2.0 test mode\n"
705 " (specify port 0 to indicate the device's upstream port)\n"
706 " Available modes: J, K, S[E0_NAK], P[acket], F[orce_Enable]\n"
707#ifdef CONFIG_USB_STORAGE
Veli-Pekka Peltola1f47a4d2011-11-02 16:59:55 +0200708 "usb storage - show details of USB storage devices\n"
wdenka2b932d2005-06-27 13:30:03 +0000709 "usb dev [dev] - show or set current USB storage device\n"
Michael Trimarchi5f2e7fc2008-11-26 17:41:34 +0100710 "usb part [dev] - print partition table of one or all USB storage"
Julius Wernerd4046702013-02-28 18:08:40 +0000711 " devices\n"
wdenk20c98a62004-04-23 20:32:05 +0000712 "usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
Sergei Poselenov95b57aa2010-08-09 16:01:42 +0400713 " to memory address `addr'\n"
Mahavir Jaind43a0b82009-11-03 12:22:10 +0530714 "usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'\n"
715 " from memory address `addr'"
Julius Wernerd4046702013-02-28 18:08:40 +0000716#endif /* CONFIG_USB_STORAGE */
wdenk57b2d802003-06-27 21:31:46 +0000717);
718
Julius Wernerd4046702013-02-28 18:08:40 +0000719#ifdef CONFIG_USB_STORAGE
wdenkf287a242003-07-01 21:06:45 +0000720U_BOOT_CMD(
721 usbboot, 3, 1, do_usbboot,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600722 "boot from USB device",
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200723 "loadAddr dev:part"
wdenk57b2d802003-06-27 21:31:46 +0000724);
Julius Wernerd4046702013-02-28 18:08:40 +0000725#endif /* CONFIG_USB_STORAGE */