blob: 907debe30f12b08098b10e499d70353c7d0d1751 [file] [log] [blame]
wdenke887afc2002-08-27 09:44:07 +00001/*
2 * (C) Copyright 2001
3 * Denis Peter, MPL AG Switzerland
4 *
Simon Glass6a1b2062015-03-25 12:22:02 -06005 * Adapted for U-Boot driver model
6 * (C) Copyright 2015 Google, Inc
7 *
wdenke887afc2002-08-27 09:44:07 +00008 * Most of this source has been derived from the Linux USB
9 * project.
10 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020011 * SPDX-License-Identifier: GPL-2.0+
wdenke887afc2002-08-27 09:44:07 +000012 */
13
14#include <common.h>
15#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -070016#include <console.h>
Simon Glass6a1b2062015-03-25 12:22:02 -060017#include <dm.h>
Hans de Goede192eab92016-04-03 00:04:39 +020018#include <dm/uclass-internal.h>
Simon Glasscf92e052015-09-02 17:24:58 -060019#include <memalign.h>
wdenk414eec32005-04-02 22:37:54 +000020#include <asm/byteorder.h>
Tom Rinib2fb47f2011-12-15 08:40:51 -070021#include <asm/unaligned.h>
Grant Likely735dd972007-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
wdenk1968e612005-02-24 23:23:29 +000025#ifdef CONFIG_USB_STORAGE
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +020026static int usb_stor_curr_dev = -1; /* current device */
wdenk1968e612005-02-24 23:23:29 +000027#endif
Simon Glassc8c27972015-07-06 16:47:50 -060028#if defined(CONFIG_USB_HOST_ETHER) && !defined(CONFIG_DM_ETH)
Simon Glass69559092015-07-06 16:47:48 -060029static int __maybe_unused usb_ether_curr_dev = -1; /* current ethernet device */
Simon Glass89d48362011-02-16 11:14:33 -080030#endif
wdenke887afc2002-08-27 09:44:07 +000031
wdenka2663ea2003-12-07 18:32:37 +000032/* some display routines (info command) */
Kim Phillips088f1b12012-10-29 13:34:31 +000033static char *usb_get_class_desc(unsigned char dclass)
wdenke887afc2002-08-27 09:44:07 +000034{
Michael Trimarchide39f8c2008-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 Phillips088f1b12012-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 Trimarchide39f8c2008-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 Trimarchide39f8c2008-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;
89 default:
Michael Trimarchide39f8c2008-11-26 17:41:34 +010090 printf("reserved");
91 break;
92 }
93 break;
94 case USB_CLASS_MASS_STORAGE:
95 printf("Mass Storage, ");
96 switch (subclass) {
97 case US_SC_RBC:
98 printf("RBC ");
99 break;
100 case US_SC_8020:
101 printf("SFF-8020i (ATAPI)");
102 break;
103 case US_SC_QIC:
104 printf("QIC-157 (Tape)");
105 break;
106 case US_SC_UFI:
107 printf("UFI");
108 break;
109 case US_SC_8070:
110 printf("SFF-8070");
111 break;
112 case US_SC_SCSI:
113 printf("Transp. SCSI");
114 break;
115 default:
116 printf("reserved");
117 break;
118 }
119 printf(", ");
120 switch (proto) {
121 case US_PR_CB:
122 printf("Command/Bulk");
123 break;
124 case US_PR_CBI:
125 printf("Command/Bulk/Int");
126 break;
127 case US_PR_BULK:
128 printf("Bulk only");
129 break;
130 default:
131 printf("reserved");
132 break;
133 }
134 break;
135 default:
136 printf("%s", usb_get_class_desc(dclass));
137 break;
wdenke887afc2002-08-27 09:44:07 +0000138 }
139}
140
Kim Phillips088f1b12012-10-29 13:34:31 +0000141static void usb_display_string(struct usb_device *dev, int index)
wdenke887afc2002-08-27 09:44:07 +0000142{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530143 ALLOC_CACHE_ALIGN_BUFFER(char, buffer, 256);
144
Michael Trimarchide39f8c2008-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 Phillips088f1b12012-10-29 13:34:31 +0000151static void usb_display_desc(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000152{
Bin Meng78abf142017-07-19 21:50:07 +0800153 uint packet_size = dev->descriptor.bMaxPacketSize0;
154
Michael Trimarchide39f8c2008-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 Rix8f8bd562009-10-31 12:37:38 -0500157 usb_get_class_desc(dev->config.if_desc[0].desc.bInterfaceClass),
Michael Trimarchide39f8c2008-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 Trimarchide39f8c2008-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 Trimarchide39f8c2008-11-26 17:41:34 +0100171 } else {
172 printf(" - Class: (from Interface) %s\n",
173 usb_get_class_desc(
Tom Rix8f8bd562009-10-31 12:37:38 -0500174 dev->config.if_desc[0].desc.bInterfaceClass));
wdenke887afc2002-08-27 09:44:07 +0000175 }
Bin Meng78abf142017-07-19 21:50:07 +0800176 if (dev->descriptor.bcdUSB >= cpu_to_le16(0x0300))
177 packet_size = 1 << packet_size;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100178 printf(" - PacketSize: %d Configurations: %d\n",
Bin Meng78abf142017-07-19 21:50:07 +0800179 packet_size, dev->descriptor.bNumConfigurations);
Michael Trimarchide39f8c2008-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 Yanokc60795f2012-11-06 13:48:20 +0000188static void usb_display_conf_desc(struct usb_config_descriptor *config,
Kim Phillips088f1b12012-10-29 13:34:31 +0000189 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000190{
Michael Trimarchide39f8c2008-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 Rix8f8bd562009-10-31 12:37:38 -0500195 config->bMaxPower*2);
wdenke887afc2002-08-27 09:44:07 +0000196 if (config->iConfiguration) {
197 printf(" - ");
Michael Trimarchide39f8c2008-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 Phillips088f1b12012-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 Trimarchide39f8c2008-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 Trimarchide39f8c2008-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 Trimarchide39f8c2008-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 Phillips088f1b12012-10-29 13:34:31 +0000220static void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc)
wdenke887afc2002-08-27 09:44:07 +0000221{
Michael Trimarchide39f8c2008-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 Rinib2fb47f2011-12-15 08:40:51 -0700238 printf(" MaxPacket %d", get_unaligned(&epdesc->wMaxPacketSize));
Michael Trimarchide39f8c2008-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 Phillips088f1b12012-10-29 13:34:31 +0000245static void usb_display_config(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000246{
Tom Rix8f8bd562009-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 Trimarchide39f8c2008-11-26 17:41:34 +0100250 int i, ii;
wdenke887afc2002-08-27 09:44:07 +0000251
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100252 config = &dev->config;
Tom Rix8f8bd562009-10-31 12:37:38 -0500253 usb_display_conf_desc(&config->desc, dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100254 for (i = 0; i < config->no_of_if; i++) {
255 ifdesc = &config->if_desc[i];
Tom Rix8f8bd562009-10-31 12:37:38 -0500256 usb_display_if_desc(&ifdesc->desc, dev);
Michael Trimarchide39f8c2008-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 Glass6a1b2062015-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 Werner7d9aa8f2013-02-28 18:08:40 +0000270static struct usb_device *usb_find_device(int devnum)
271{
Simon Glass6a1b2062015-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 Glassbcbe3d12015-09-28 23:32:01 -0600289 udev = dev_get_parent_priv(hub);
Simon Glass6a1b2062015-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 Glassbcbe3d12015-09-28 23:32:01 -0600299 udev = dev_get_parent_priv(dev);
Simon Glass6a1b2062015-03-25 12:22:02 -0600300 if (udev->devnum == devnum)
301 return udev;
302 }
303 }
304#else
Simon Glasscad42912015-03-25 12:22:00 -0600305 struct usb_device *udev;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000306 int d;
307
308 for (d = 0; d < USB_MAX_DEVICE; d++) {
Simon Glasscad42912015-03-25 12:22:00 -0600309 udev = usb_get_dev_index(d);
310 if (udev == NULL)
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000311 return NULL;
Simon Glasscad42912015-03-25 12:22:00 -0600312 if (udev->devnum == devnum)
313 return udev;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000314 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600315#endif
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000316
317 return NULL;
318}
319
Stefan Roesef1c1f542009-01-22 10:11:21 +0100320static inline char *portspeed(int speed)
321{
Vivek Gautam6497c662013-04-12 16:34:38 +0530322 char *speed_str;
323
324 switch (speed) {
325 case USB_SPEED_SUPER:
326 speed_str = "5 Gb/s";
327 break;
328 case USB_SPEED_HIGH:
329 speed_str = "480 Mb/s";
330 break;
331 case USB_SPEED_LOW:
332 speed_str = "1.5 Mb/s";
333 break;
334 default:
335 speed_str = "12 Mb/s";
336 break;
337 }
338
339 return speed_str;
Stefan Roesef1c1f542009-01-22 10:11:21 +0100340}
341
wdenke887afc2002-08-27 09:44:07 +0000342/* shows the device tree recursively */
Kim Phillips088f1b12012-10-29 13:34:31 +0000343static void usb_show_tree_graph(struct usb_device *dev, char *pre)
wdenke887afc2002-08-27 09:44:07 +0000344{
Simon Glass6a1b2062015-03-25 12:22:02 -0600345 int index;
Wolfgang Denk10f4dd72011-10-05 23:01:59 +0200346 int has_child, last_child;
wdenke887afc2002-08-27 09:44:07 +0000347
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100348 index = strlen(pre);
349 printf(" %s", pre);
Simon Glass6a1b2062015-03-25 12:22:02 -0600350#ifdef CONFIG_DM_USB
351 has_child = device_has_active_children(dev->dev);
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700352 if (device_get_uclass_id(dev->dev) == UCLASS_MASS_STORAGE) {
353 struct udevice *child;
354
355 for (device_find_first_child(dev->dev, &child);
356 child;
357 device_find_next_child(&child)) {
358 if (device_get_uclass_id(child) == UCLASS_BLK)
359 has_child = 0;
360 }
361 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600362#else
wdenke887afc2002-08-27 09:44:07 +0000363 /* check if the device has connected children */
Simon Glass6a1b2062015-03-25 12:22:02 -0600364 int i;
365
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100366 has_child = 0;
367 for (i = 0; i < dev->maxchild; i++) {
368 if (dev->children[i] != NULL)
369 has_child = 1;
wdenke887afc2002-08-27 09:44:07 +0000370 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600371#endif
wdenke887afc2002-08-27 09:44:07 +0000372 /* check if we are the last one */
Simon Glass6a1b2062015-03-25 12:22:02 -0600373#ifdef CONFIG_DM_USB
Hans de Goedec27b3292015-06-17 21:33:50 +0200374 /* Not the root of the usb tree? */
375 if (device_get_uclass_id(dev->dev->parent) != UCLASS_USB) {
376 last_child = device_is_last_sibling(dev->dev);
Simon Glass6a1b2062015-03-25 12:22:02 -0600377#else
Hans de Goedec27b3292015-06-17 21:33:50 +0200378 if (dev->parent != NULL) { /* not root? */
379 last_child = 1;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100380 for (i = 0; i < dev->parent->maxchild; i++) {
wdenke887afc2002-08-27 09:44:07 +0000381 /* search for children */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100382 if (dev->parent->children[i] == dev) {
383 /* found our pointer, see if we have a
384 * little sister
385 */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100386 while (i++ < dev->parent->maxchild) {
387 if (dev->parent->children[i] != NULL) {
wdenke887afc2002-08-27 09:44:07 +0000388 /* found a sister */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100389 last_child = 0;
wdenke887afc2002-08-27 09:44:07 +0000390 break;
391 } /* if */
392 } /* while */
393 } /* device found */
394 } /* for all children of the parent */
Simon Glass6a1b2062015-03-25 12:22:02 -0600395#endif
wdenke887afc2002-08-27 09:44:07 +0000396 printf("\b+-");
397 /* correct last child */
Simon Glasscad42912015-03-25 12:22:00 -0600398 if (last_child && index)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100399 pre[index-1] = ' ';
wdenke887afc2002-08-27 09:44:07 +0000400 } /* if not root hub */
401 else
402 printf(" ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100403 printf("%d ", dev->devnum);
404 pre[index++] = ' ';
405 pre[index++] = has_child ? '|' : ' ';
406 pre[index] = 0;
407 printf(" %s (%s, %dmA)\n", usb_get_class_desc(
Tom Rix8f8bd562009-10-31 12:37:38 -0500408 dev->config.if_desc[0].desc.bInterfaceClass),
Stefan Roesef1c1f542009-01-22 10:11:21 +0100409 portspeed(dev->speed),
Tom Rix8f8bd562009-10-31 12:37:38 -0500410 dev->config.desc.bMaxPower * 2);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100411 if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial))
412 printf(" %s %s %s %s\n", pre, dev->mf, dev->prod, dev->serial);
413 printf(" %s\n", pre);
Simon Glass6a1b2062015-03-25 12:22:02 -0600414#ifdef CONFIG_DM_USB
415 struct udevice *child;
416
417 for (device_find_first_child(dev->dev, &child);
418 child;
419 device_find_next_child(&child)) {
420 struct usb_device *udev;
421
422 if (!device_active(child))
423 continue;
424
Simon Glassbcbe3d12015-09-28 23:32:01 -0600425 udev = dev_get_parent_priv(child);
Simon Glass6a1b2062015-03-25 12:22:02 -0600426
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700427 /*
428 * Ignore emulators and block child devices, we only want
429 * real devices
430 */
431 if ((device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
432 (device_get_uclass_id(child) != UCLASS_BLK)) {
Simon Glass6a1b2062015-03-25 12:22:02 -0600433 usb_show_tree_graph(udev, pre);
434 pre[index] = 0;
435 }
436 }
437#else
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100438 if (dev->maxchild > 0) {
439 for (i = 0; i < dev->maxchild; i++) {
440 if (dev->children[i] != NULL) {
441 usb_show_tree_graph(dev->children[i], pre);
442 pre[index] = 0;
wdenke887afc2002-08-27 09:44:07 +0000443 }
444 }
445 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600446#endif
wdenke887afc2002-08-27 09:44:07 +0000447}
448
449/* main routine for the tree command */
Simon Glass45bfa472015-11-08 23:47:51 -0700450static void usb_show_subtree(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000451{
452 char preamble[32];
453
Simon Glasscad42912015-03-25 12:22:00 -0600454 memset(preamble, '\0', sizeof(preamble));
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100455 usb_show_tree_graph(dev, &preamble[0]);
wdenke887afc2002-08-27 09:44:07 +0000456}
457
Simon Glass45bfa472015-11-08 23:47:51 -0700458#ifdef CONFIG_DM_USB
Hans de Goede2138fd62016-07-03 20:22:04 +0200459typedef void (*usb_dev_func_t)(struct usb_device *udev);
460
461static void usb_for_each_root_dev(usb_dev_func_t func)
462{
Simon Glass45bfa472015-11-08 23:47:51 -0700463 struct udevice *bus;
464
Hans de Goede192eab92016-04-03 00:04:39 +0200465 for (uclass_find_first_device(UCLASS_USB, &bus);
Simon Glass45bfa472015-11-08 23:47:51 -0700466 bus;
Hans de Goede192eab92016-04-03 00:04:39 +0200467 uclass_find_next_device(&bus)) {
Simon Glass45bfa472015-11-08 23:47:51 -0700468 struct usb_device *udev;
469 struct udevice *dev;
470
Hans de Goede192eab92016-04-03 00:04:39 +0200471 if (!device_active(bus))
472 continue;
473
Simon Glass45bfa472015-11-08 23:47:51 -0700474 device_find_first_child(bus, &dev);
475 if (dev && device_active(dev)) {
476 udev = dev_get_parent_priv(dev);
Hans de Goede2138fd62016-07-03 20:22:04 +0200477 func(udev);
Simon Glass45bfa472015-11-08 23:47:51 -0700478 }
479 }
Hans de Goede2138fd62016-07-03 20:22:04 +0200480}
481#endif
482
483void usb_show_tree(void)
484{
485#ifdef CONFIG_DM_USB
486 usb_for_each_root_dev(usb_show_subtree);
Simon Glass45bfa472015-11-08 23:47:51 -0700487#else
488 struct usb_device *udev;
489 int i;
490
491 for (i = 0; i < USB_MAX_DEVICE; i++) {
492 udev = usb_get_dev_index(i);
493 if (udev == NULL)
494 break;
495 if (udev->parent == NULL)
496 usb_show_subtree(udev);
497 }
498#endif
499}
500
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000501static int usb_test(struct usb_device *dev, int port, char* arg)
502{
503 int mode;
504
505 if (port > dev->maxchild) {
506 printf("Device is no hub or does not have %d ports.\n", port);
507 return 1;
508 }
509
510 switch (arg[0]) {
511 case 'J':
512 case 'j':
513 printf("Setting Test_J mode");
514 mode = USB_TEST_MODE_J;
515 break;
516 case 'K':
517 case 'k':
518 printf("Setting Test_K mode");
519 mode = USB_TEST_MODE_K;
520 break;
521 case 'S':
522 case 's':
523 printf("Setting Test_SE0_NAK mode");
524 mode = USB_TEST_MODE_SE0_NAK;
525 break;
526 case 'P':
527 case 'p':
528 printf("Setting Test_Packet mode");
529 mode = USB_TEST_MODE_PACKET;
530 break;
531 case 'F':
532 case 'f':
533 printf("Setting Test_Force_Enable mode");
534 mode = USB_TEST_MODE_FORCE_ENABLE;
535 break;
536 default:
537 printf("Unrecognized test mode: %s\nAvailable modes: "
538 "J, K, S[E0_NAK], P[acket], F[orce_Enable]\n", arg);
539 return 1;
540 }
541
542 if (port)
543 printf(" on downstream facing port %d...\n", port);
544 else
545 printf(" on upstream facing port...\n");
546
547 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_FEATURE,
548 port ? USB_RT_PORT : USB_RECIP_DEVICE,
549 port ? USB_PORT_FEAT_TEST : USB_FEAT_TEST,
550 (mode << 8) | port,
551 NULL, 0, USB_CNTL_TIMEOUT) == -1) {
552 printf("Error during SET_FEATURE.\n");
553 return 1;
554 } else {
555 printf("Test mode successfully set. Use 'usb start' "
556 "to return to normal operation.\n");
557 return 0;
558 }
559}
560
wdenke887afc2002-08-27 09:44:07 +0000561
wdenke887afc2002-08-27 09:44:07 +0000562/******************************************************************************
563 * usb boot command intepreter. Derived from diskboot
564 */
565#ifdef CONFIG_USB_STORAGE
Kim Phillips088f1b12012-10-29 13:34:31 +0000566static int do_usbboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000567{
Rob Herring7405a132012-09-21 04:02:30 +0000568 return common_diskboot(cmdtp, "usb", argc, argv);
wdenke887afc2002-08-27 09:44:07 +0000569}
570#endif /* CONFIG_USB_STORAGE */
571
Hans de Goede8a8a2252014-09-20 16:54:38 +0200572static int do_usb_stop_keyboard(int force)
Hans de Goede6e78c742014-09-20 16:54:35 +0200573{
Hans de Goede9a80e712016-04-03 09:18:53 +0200574#if !defined CONFIG_DM_USB && defined CONFIG_USB_KEYBOARD
Hans de Goede8a8a2252014-09-20 16:54:38 +0200575 if (usb_kbd_deregister(force) != 0) {
Hans de Goede6e78c742014-09-20 16:54:35 +0200576 printf("USB not stopped: usbkbd still using USB\n");
577 return 1;
578 }
579#endif
580 return 0;
581}
wdenke887afc2002-08-27 09:44:07 +0000582
Hans de Goedeb5072262015-01-06 14:27:41 +0100583static void do_usb_start(void)
584{
585 bootstage_mark_name(BOOTSTAGE_ID_USB_START, "usb_start");
586
587 if (usb_init() < 0)
588 return;
589
Simon Glass6a1b2062015-03-25 12:22:02 -0600590 /* Driver model will probe the devices as they are found */
Simon Glass34ab37e2015-09-08 11:15:11 -0600591# ifdef CONFIG_USB_STORAGE
Hans de Goedeb5072262015-01-06 14:27:41 +0100592 /* try to recognize storage devices immediately */
593 usb_stor_curr_dev = usb_stor_scan(1);
Simon Glass34ab37e2015-09-08 11:15:11 -0600594# endif
Michal Simekb9847002016-12-21 09:35:08 +0100595#ifndef CONFIG_DM_USB
Simon Glass34ab37e2015-09-08 11:15:11 -0600596# ifdef CONFIG_USB_KEYBOARD
597 drv_usb_kbd_init();
598# endif
599#endif /* !CONFIG_DM_USB */
Hans de Goedeb5072262015-01-06 14:27:41 +0100600#ifdef CONFIG_USB_HOST_ETHER
Simon Glass69559092015-07-06 16:47:48 -0600601# ifdef CONFIG_DM_ETH
Marcel Ziswiler389f1852015-08-05 16:58:17 +0200602# ifndef CONFIG_DM_USB
603# error "You must use CONFIG_DM_USB if you want to use CONFIG_USB_HOST_ETHER with CONFIG_DM_ETH"
604# endif
605# else
Hans de Goedeb5072262015-01-06 14:27:41 +0100606 /* try to recognize ethernet devices immediately */
607 usb_ether_curr_dev = usb_host_eth_scan(1);
Marcel Ziswiler389f1852015-08-05 16:58:17 +0200608# endif
Simon Glass69559092015-07-06 16:47:48 -0600609#endif
Hans de Goedeb5072262015-01-06 14:27:41 +0100610}
611
Simon Glass6a1b2062015-03-25 12:22:02 -0600612#ifdef CONFIG_DM_USB
Hans de Goedee6e188f2016-07-03 20:22:05 +0200613static void usb_show_info(struct usb_device *udev)
Simon Glass6a1b2062015-03-25 12:22:02 -0600614{
615 struct udevice *child;
Simon Glass6a1b2062015-03-25 12:22:02 -0600616
Simon Glass6a1b2062015-03-25 12:22:02 -0600617 usb_display_desc(udev);
618 usb_display_config(udev);
Hans de Goedee6e188f2016-07-03 20:22:05 +0200619 for (device_find_first_child(udev->dev, &child);
Simon Glass6a1b2062015-03-25 12:22:02 -0600620 child;
621 device_find_next_child(&child)) {
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700622 if (device_active(child) &&
623 (device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
624 (device_get_uclass_id(child) != UCLASS_BLK)) {
Hans de Goedee6e188f2016-07-03 20:22:05 +0200625 udev = dev_get_parent_priv(child);
626 usb_show_info(udev);
Simon Glass6a1b2062015-03-25 12:22:02 -0600627 }
628 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600629}
630#endif
631
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100632/******************************************************************************
wdenke887afc2002-08-27 09:44:07 +0000633 * usb command intepreter
634 */
Kim Phillips088f1b12012-10-29 13:34:31 +0000635static int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000636{
Simon Glasscad42912015-03-25 12:22:00 -0600637 struct usb_device *udev = NULL;
wdenke887afc2002-08-27 09:44:07 +0000638 int i;
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200639 extern char usb_started;
wdenke887afc2002-08-27 09:44:07 +0000640
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200641 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000642 return CMD_RET_USAGE;
Serge Ziryukin65d34252010-04-25 21:32:36 +0300643
Hans de Goedeb5072262015-01-06 14:27:41 +0100644 if (strncmp(argv[1], "start", 5) == 0) {
645 if (usb_started)
646 return 0; /* Already started */
647 printf("starting USB...\n");
648 do_usb_start();
649 return 0;
650 }
651
652 if (strncmp(argv[1], "reset", 5) == 0) {
653 printf("resetting USB...\n");
Hans de Goede8a8a2252014-09-20 16:54:38 +0200654 if (do_usb_stop_keyboard(1) != 0)
Hans de Goede6e78c742014-09-20 16:54:35 +0200655 return 1;
wdenke887afc2002-08-27 09:44:07 +0000656 usb_stop();
Hans de Goedeb5072262015-01-06 14:27:41 +0100657 do_usb_start();
wdenke887afc2002-08-27 09:44:07 +0000658 return 0;
659 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100660 if (strncmp(argv[1], "stop", 4) == 0) {
Hans de Goede6e78c742014-09-20 16:54:35 +0200661 if (argc != 2)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100662 console_assign(stdin, "serial");
Hans de Goede8a8a2252014-09-20 16:54:38 +0200663 if (do_usb_stop_keyboard(0) != 0)
Hans de Goede6e78c742014-09-20 16:54:35 +0200664 return 1;
wdenke887afc2002-08-27 09:44:07 +0000665 printf("stopping USB..\n");
666 usb_stop();
667 return 0;
668 }
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200669 if (!usb_started) {
670 printf("USB is stopped. Please issue 'usb start' first.\n");
671 return 1;
672 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100673 if (strncmp(argv[1], "tree", 4) == 0) {
Lucas Stach93c25822012-09-26 00:14:36 +0200674 puts("USB device tree:\n");
Simon Glass45bfa472015-11-08 23:47:51 -0700675 usb_show_tree();
wdenke887afc2002-08-27 09:44:07 +0000676 return 0;
677 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100678 if (strncmp(argv[1], "inf", 3) == 0) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100679 if (argc == 2) {
Simon Glass6a1b2062015-03-25 12:22:02 -0600680#ifdef CONFIG_DM_USB
Hans de Goedee6e188f2016-07-03 20:22:05 +0200681 usb_for_each_root_dev(usb_show_info);
Simon Glass6a1b2062015-03-25 12:22:02 -0600682#else
683 int d;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100684 for (d = 0; d < USB_MAX_DEVICE; d++) {
Simon Glasscad42912015-03-25 12:22:00 -0600685 udev = usb_get_dev_index(d);
686 if (udev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000687 break;
Simon Glasscad42912015-03-25 12:22:00 -0600688 usb_display_desc(udev);
689 usb_display_config(udev);
wdenke887afc2002-08-27 09:44:07 +0000690 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600691#endif
wdenke887afc2002-08-27 09:44:07 +0000692 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100693 } else {
Simon Glass6a1b2062015-03-25 12:22:02 -0600694 /*
695 * With driver model this isn't right since we can
696 * have multiple controllers and the device numbering
697 * starts at 1 on each bus.
698 */
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000699 i = simple_strtoul(argv[2], NULL, 10);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100700 printf("config for device %d\n", i);
Simon Glasscad42912015-03-25 12:22:00 -0600701 udev = usb_find_device(i);
702 if (udev == NULL) {
Loïc Minier6052cba2011-02-03 22:04:26 +0100703 printf("*** No device available ***\n");
wdenke887afc2002-08-27 09:44:07 +0000704 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100705 } else {
Simon Glasscad42912015-03-25 12:22:00 -0600706 usb_display_desc(udev);
707 usb_display_config(udev);
wdenke887afc2002-08-27 09:44:07 +0000708 }
709 }
710 return 0;
711 }
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000712 if (strncmp(argv[1], "test", 4) == 0) {
713 if (argc < 5)
714 return CMD_RET_USAGE;
715 i = simple_strtoul(argv[2], NULL, 10);
Simon Glasscad42912015-03-25 12:22:00 -0600716 udev = usb_find_device(i);
717 if (udev == NULL) {
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000718 printf("Device %d does not exist.\n", i);
719 return 1;
720 }
721 i = simple_strtoul(argv[3], NULL, 10);
Simon Glasscad42912015-03-25 12:22:00 -0600722 return usb_test(udev, i, argv[4]);
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000723 }
wdenke887afc2002-08-27 09:44:07 +0000724#ifdef CONFIG_USB_STORAGE
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100725 if (strncmp(argv[1], "stor", 4) == 0)
Aras Vaichasf6b44e02008-03-25 12:09:07 +1100726 return usb_stor_info();
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200727
Simon Glassc16ad672017-07-29 11:34:58 -0600728 return blk_common_cmd(argc, argv, IF_TYPE_USB, &usb_stor_curr_dev);
729#else
Simon Glass4c12eeb2011-12-10 08:44:01 +0000730 return CMD_RET_USAGE;
Simon Glassc16ad672017-07-29 11:34:58 -0600731#endif /* CONFIG_USB_STORAGE */
wdenke887afc2002-08-27 09:44:07 +0000732}
733
wdenk0d498392003-07-01 21:06:45 +0000734U_BOOT_CMD(
735 usb, 5, 1, do_usb,
Peter Tyser2fb26042009-01-27 18:03:12 -0600736 "USB sub-system",
Veli-Pekka Peltola1af9f962011-11-02 16:59:56 +0200737 "start - start (scan) USB controller\n"
738 "usb reset - reset (rescan) USB controller\n"
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200739 "usb stop [f] - stop USB [f]=force stop\n"
740 "usb tree - show USB device tree\n"
wdenk5cf91d62004-04-23 20:32:05 +0000741 "usb info [dev] - show available USB devices\n"
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000742 "usb test [dev] [port] [mode] - set USB 2.0 test mode\n"
743 " (specify port 0 to indicate the device's upstream port)\n"
744 " Available modes: J, K, S[E0_NAK], P[acket], F[orce_Enable]\n"
745#ifdef CONFIG_USB_STORAGE
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200746 "usb storage - show details of USB storage devices\n"
wdenk342717f2005-06-27 13:30:03 +0000747 "usb dev [dev] - show or set current USB storage device\n"
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100748 "usb part [dev] - print partition table of one or all USB storage"
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000749 " devices\n"
wdenk5cf91d62004-04-23 20:32:05 +0000750 "usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
Sergei Poselenov842404e2010-08-09 16:01:42 +0400751 " to memory address `addr'\n"
Mahavir Jain127e1082009-11-03 12:22:10 +0530752 "usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'\n"
753 " from memory address `addr'"
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000754#endif /* CONFIG_USB_STORAGE */
wdenk8bde7f72003-06-27 21:31:46 +0000755);
756
757
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000758#ifdef CONFIG_USB_STORAGE
wdenk0d498392003-07-01 21:06:45 +0000759U_BOOT_CMD(
760 usbboot, 3, 1, do_usbboot,
Peter Tyser2fb26042009-01-27 18:03:12 -0600761 "boot from USB device",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200762 "loadAddr dev:part"
wdenk8bde7f72003-06-27 21:31:46 +0000763);
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000764#endif /* CONFIG_USB_STORAGE */