blob: 0ccb1b51483cb57d5c69cf995e8e468bceaf6548 [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
13#include <common.h>
14#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -070015#include <console.h>
Simon Glass6a1b2062015-03-25 12:22:02 -060016#include <dm.h>
Hans de Goede192eab92016-04-03 00:04:39 +020017#include <dm/uclass-internal.h>
Simon Glasscf92e052015-09-02 17:24:58 -060018#include <memalign.h>
wdenk414eec32005-04-02 22:37:54 +000019#include <asm/byteorder.h>
Tom Rinib2fb47f2011-12-15 08:40:51 -070020#include <asm/unaligned.h>
Grant Likely735dd972007-02-20 09:04:34 +010021#include <part.h>
wdenke887afc2002-08-27 09:44:07 +000022#include <usb.h>
wdenke887afc2002-08-27 09:44:07 +000023
wdenk1968e612005-02-24 23:23:29 +000024#ifdef CONFIG_USB_STORAGE
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +020025static int usb_stor_curr_dev = -1; /* current device */
wdenk1968e612005-02-24 23:23:29 +000026#endif
Simon Glassc8c27972015-07-06 16:47:50 -060027#if defined(CONFIG_USB_HOST_ETHER) && !defined(CONFIG_DM_ETH)
Simon Glass69559092015-07-06 16:47:48 -060028static int __maybe_unused usb_ether_curr_dev = -1; /* current ethernet device */
Simon Glass89d48362011-02-16 11:14:33 -080029#endif
wdenke887afc2002-08-27 09:44:07 +000030
wdenka2663ea2003-12-07 18:32:37 +000031/* some display routines (info command) */
Kim Phillips088f1b12012-10-29 13:34:31 +000032static char *usb_get_class_desc(unsigned char dclass)
wdenke887afc2002-08-27 09:44:07 +000033{
Michael Trimarchide39f8c2008-11-26 17:41:34 +010034 switch (dclass) {
35 case USB_CLASS_PER_INTERFACE:
36 return "See Interface";
37 case USB_CLASS_AUDIO:
38 return "Audio";
39 case USB_CLASS_COMM:
40 return "Communication";
41 case USB_CLASS_HID:
42 return "Human Interface";
43 case USB_CLASS_PRINTER:
44 return "Printer";
45 case USB_CLASS_MASS_STORAGE:
46 return "Mass Storage";
47 case USB_CLASS_HUB:
48 return "Hub";
49 case USB_CLASS_DATA:
50 return "CDC Data";
51 case USB_CLASS_VENDOR_SPEC:
52 return "Vendor specific";
53 default:
54 return "";
wdenke887afc2002-08-27 09:44:07 +000055 }
56}
57
Kim Phillips088f1b12012-10-29 13:34:31 +000058static void usb_display_class_sub(unsigned char dclass, unsigned char subclass,
59 unsigned char proto)
wdenke887afc2002-08-27 09:44:07 +000060{
Michael Trimarchide39f8c2008-11-26 17:41:34 +010061 switch (dclass) {
62 case USB_CLASS_PER_INTERFACE:
63 printf("See Interface");
64 break;
65 case USB_CLASS_HID:
66 printf("Human Interface, Subclass: ");
67 switch (subclass) {
68 case USB_SUB_HID_NONE:
69 printf("None");
wdenke887afc2002-08-27 09:44:07 +000070 break;
Michael Trimarchide39f8c2008-11-26 17:41:34 +010071 case USB_SUB_HID_BOOT:
72 printf("Boot ");
73 switch (proto) {
74 case USB_PROT_HID_NONE:
75 printf("None");
76 break;
77 case USB_PROT_HID_KEYBOARD:
78 printf("Keyboard");
79 break;
80 case USB_PROT_HID_MOUSE:
81 printf("Mouse");
82 break;
83 default:
84 printf("reserved");
85 break;
wdenke887afc2002-08-27 09:44:07 +000086 }
87 break;
88 default:
Michael Trimarchide39f8c2008-11-26 17:41:34 +010089 printf("reserved");
90 break;
91 }
92 break;
93 case USB_CLASS_MASS_STORAGE:
94 printf("Mass Storage, ");
95 switch (subclass) {
96 case US_SC_RBC:
97 printf("RBC ");
98 break;
99 case US_SC_8020:
100 printf("SFF-8020i (ATAPI)");
101 break;
102 case US_SC_QIC:
103 printf("QIC-157 (Tape)");
104 break;
105 case US_SC_UFI:
106 printf("UFI");
107 break;
108 case US_SC_8070:
109 printf("SFF-8070");
110 break;
111 case US_SC_SCSI:
112 printf("Transp. SCSI");
113 break;
114 default:
115 printf("reserved");
116 break;
117 }
118 printf(", ");
119 switch (proto) {
120 case US_PR_CB:
121 printf("Command/Bulk");
122 break;
123 case US_PR_CBI:
124 printf("Command/Bulk/Int");
125 break;
126 case US_PR_BULK:
127 printf("Bulk only");
128 break;
129 default:
130 printf("reserved");
131 break;
132 }
133 break;
134 default:
135 printf("%s", usb_get_class_desc(dclass));
136 break;
wdenke887afc2002-08-27 09:44:07 +0000137 }
138}
139
Kim Phillips088f1b12012-10-29 13:34:31 +0000140static void usb_display_string(struct usb_device *dev, int index)
wdenke887afc2002-08-27 09:44:07 +0000141{
Puneet Saxenaf5766132012-04-03 14:56:06 +0530142 ALLOC_CACHE_ALIGN_BUFFER(char, buffer, 256);
143
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100144 if (index != 0) {
145 if (usb_string(dev, index, &buffer[0], 256) > 0)
146 printf("String: \"%s\"", buffer);
wdenke887afc2002-08-27 09:44:07 +0000147 }
148}
149
Kim Phillips088f1b12012-10-29 13:34:31 +0000150static void usb_display_desc(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000151{
Bin Meng78abf142017-07-19 21:50:07 +0800152 uint packet_size = dev->descriptor.bMaxPacketSize0;
153
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100154 if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) {
155 printf("%d: %s, USB Revision %x.%x\n", dev->devnum,
Tom Rix8f8bd562009-10-31 12:37:38 -0500156 usb_get_class_desc(dev->config.if_desc[0].desc.bInterfaceClass),
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100157 (dev->descriptor.bcdUSB>>8) & 0xff,
158 dev->descriptor.bcdUSB & 0xff);
159
160 if (strlen(dev->mf) || strlen(dev->prod) ||
161 strlen(dev->serial))
162 printf(" - %s %s %s\n", dev->mf, dev->prod,
163 dev->serial);
wdenke887afc2002-08-27 09:44:07 +0000164 if (dev->descriptor.bDeviceClass) {
165 printf(" - Class: ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100166 usb_display_class_sub(dev->descriptor.bDeviceClass,
167 dev->descriptor.bDeviceSubClass,
168 dev->descriptor.bDeviceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000169 printf("\n");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100170 } else {
171 printf(" - Class: (from Interface) %s\n",
172 usb_get_class_desc(
Tom Rix8f8bd562009-10-31 12:37:38 -0500173 dev->config.if_desc[0].desc.bInterfaceClass));
wdenke887afc2002-08-27 09:44:07 +0000174 }
Bin Meng78abf142017-07-19 21:50:07 +0800175 if (dev->descriptor.bcdUSB >= cpu_to_le16(0x0300))
176 packet_size = 1 << packet_size;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100177 printf(" - PacketSize: %d Configurations: %d\n",
Bin Meng78abf142017-07-19 21:50:07 +0800178 packet_size, dev->descriptor.bNumConfigurations);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100179 printf(" - Vendor: 0x%04x Product 0x%04x Version %d.%d\n",
180 dev->descriptor.idVendor, dev->descriptor.idProduct,
181 (dev->descriptor.bcdDevice>>8) & 0xff,
182 dev->descriptor.bcdDevice & 0xff);
wdenke887afc2002-08-27 09:44:07 +0000183 }
184
185}
186
Ilya Yanokc60795f2012-11-06 13:48:20 +0000187static void usb_display_conf_desc(struct usb_config_descriptor *config,
Kim Phillips088f1b12012-10-29 13:34:31 +0000188 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000189{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100190 printf(" Configuration: %d\n", config->bConfigurationValue);
191 printf(" - Interfaces: %d %s%s%dmA\n", config->bNumInterfaces,
192 (config->bmAttributes & 0x40) ? "Self Powered " : "Bus Powered ",
193 (config->bmAttributes & 0x20) ? "Remote Wakeup " : "",
Tom Rix8f8bd562009-10-31 12:37:38 -0500194 config->bMaxPower*2);
wdenke887afc2002-08-27 09:44:07 +0000195 if (config->iConfiguration) {
196 printf(" - ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100197 usb_display_string(dev, config->iConfiguration);
wdenke887afc2002-08-27 09:44:07 +0000198 printf("\n");
199 }
200}
201
Kim Phillips088f1b12012-10-29 13:34:31 +0000202static void usb_display_if_desc(struct usb_interface_descriptor *ifdesc,
203 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000204{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100205 printf(" Interface: %d\n", ifdesc->bInterfaceNumber);
206 printf(" - Alternate Setting %d, Endpoints: %d\n",
207 ifdesc->bAlternateSetting, ifdesc->bNumEndpoints);
wdenke887afc2002-08-27 09:44:07 +0000208 printf(" - Class ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100209 usb_display_class_sub(ifdesc->bInterfaceClass,
210 ifdesc->bInterfaceSubClass, ifdesc->bInterfaceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000211 printf("\n");
212 if (ifdesc->iInterface) {
213 printf(" - ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100214 usb_display_string(dev, ifdesc->iInterface);
wdenke887afc2002-08-27 09:44:07 +0000215 printf("\n");
216 }
217}
218
Kim Phillips088f1b12012-10-29 13:34:31 +0000219static void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc)
wdenke887afc2002-08-27 09:44:07 +0000220{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100221 printf(" - Endpoint %d %s ", epdesc->bEndpointAddress & 0xf,
222 (epdesc->bEndpointAddress & 0x80) ? "In" : "Out");
223 switch ((epdesc->bmAttributes & 0x03)) {
224 case 0:
225 printf("Control");
226 break;
227 case 1:
228 printf("Isochronous");
229 break;
230 case 2:
231 printf("Bulk");
232 break;
233 case 3:
234 printf("Interrupt");
235 break;
wdenke887afc2002-08-27 09:44:07 +0000236 }
Tom Rinib2fb47f2011-12-15 08:40:51 -0700237 printf(" MaxPacket %d", get_unaligned(&epdesc->wMaxPacketSize));
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100238 if ((epdesc->bmAttributes & 0x03) == 0x3)
239 printf(" Interval %dms", epdesc->bInterval);
wdenke887afc2002-08-27 09:44:07 +0000240 printf("\n");
241}
242
243/* main routine to diasplay the configs, interfaces and endpoints */
Kim Phillips088f1b12012-10-29 13:34:31 +0000244static void usb_display_config(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000245{
Tom Rix8f8bd562009-10-31 12:37:38 -0500246 struct usb_config *config;
247 struct usb_interface *ifdesc;
wdenke887afc2002-08-27 09:44:07 +0000248 struct usb_endpoint_descriptor *epdesc;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100249 int i, ii;
wdenke887afc2002-08-27 09:44:07 +0000250
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100251 config = &dev->config;
Tom Rix8f8bd562009-10-31 12:37:38 -0500252 usb_display_conf_desc(&config->desc, dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100253 for (i = 0; i < config->no_of_if; i++) {
254 ifdesc = &config->if_desc[i];
Tom Rix8f8bd562009-10-31 12:37:38 -0500255 usb_display_if_desc(&ifdesc->desc, dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100256 for (ii = 0; ii < ifdesc->no_of_ep; ii++) {
257 epdesc = &ifdesc->ep_desc[ii];
wdenke887afc2002-08-27 09:44:07 +0000258 usb_display_ep_desc(epdesc);
259 }
260 }
261 printf("\n");
262}
263
Simon Glass6a1b2062015-03-25 12:22:02 -0600264/*
265 * With driver model this isn't right since we can have multiple controllers
266 * and the device numbering starts at 1 on each bus.
267 * TODO(sjg@chromium.org): Add a way to specify the controller/bus.
268 */
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000269static struct usb_device *usb_find_device(int devnum)
270{
Simon Glass6a1b2062015-03-25 12:22:02 -0600271#ifdef CONFIG_DM_USB
272 struct usb_device *udev;
273 struct udevice *hub;
274 struct uclass *uc;
275 int ret;
276
277 /* Device addresses start at 1 */
278 devnum++;
279 ret = uclass_get(UCLASS_USB_HUB, &uc);
280 if (ret)
281 return NULL;
282
283 uclass_foreach_dev(hub, uc) {
284 struct udevice *dev;
285
286 if (!device_active(hub))
287 continue;
Simon Glassbcbe3d12015-09-28 23:32:01 -0600288 udev = dev_get_parent_priv(hub);
Simon Glass6a1b2062015-03-25 12:22:02 -0600289 if (udev->devnum == devnum)
290 return udev;
291
292 for (device_find_first_child(hub, &dev);
293 dev;
294 device_find_next_child(&dev)) {
295 if (!device_active(hub))
296 continue;
297
Simon Glassbcbe3d12015-09-28 23:32:01 -0600298 udev = dev_get_parent_priv(dev);
Simon Glass6a1b2062015-03-25 12:22:02 -0600299 if (udev->devnum == devnum)
300 return udev;
301 }
302 }
303#else
Simon Glasscad42912015-03-25 12:22:00 -0600304 struct usb_device *udev;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000305 int d;
306
307 for (d = 0; d < USB_MAX_DEVICE; d++) {
Simon Glasscad42912015-03-25 12:22:00 -0600308 udev = usb_get_dev_index(d);
309 if (udev == NULL)
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000310 return NULL;
Simon Glasscad42912015-03-25 12:22:00 -0600311 if (udev->devnum == devnum)
312 return udev;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000313 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600314#endif
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000315
316 return NULL;
317}
318
Stefan Roesef1c1f542009-01-22 10:11:21 +0100319static inline char *portspeed(int speed)
320{
Vivek Gautam6497c662013-04-12 16:34:38 +0530321 char *speed_str;
322
323 switch (speed) {
324 case USB_SPEED_SUPER:
325 speed_str = "5 Gb/s";
326 break;
327 case USB_SPEED_HIGH:
328 speed_str = "480 Mb/s";
329 break;
330 case USB_SPEED_LOW:
331 speed_str = "1.5 Mb/s";
332 break;
333 default:
334 speed_str = "12 Mb/s";
335 break;
336 }
337
338 return speed_str;
Stefan Roesef1c1f542009-01-22 10:11:21 +0100339}
340
wdenke887afc2002-08-27 09:44:07 +0000341/* shows the device tree recursively */
Kim Phillips088f1b12012-10-29 13:34:31 +0000342static void usb_show_tree_graph(struct usb_device *dev, char *pre)
wdenke887afc2002-08-27 09:44:07 +0000343{
Simon Glass6a1b2062015-03-25 12:22:02 -0600344 int index;
Wolfgang Denk10f4dd72011-10-05 23:01:59 +0200345 int has_child, last_child;
wdenke887afc2002-08-27 09:44:07 +0000346
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100347 index = strlen(pre);
348 printf(" %s", pre);
Simon Glass6a1b2062015-03-25 12:22:02 -0600349#ifdef CONFIG_DM_USB
350 has_child = device_has_active_children(dev->dev);
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700351 if (device_get_uclass_id(dev->dev) == UCLASS_MASS_STORAGE) {
352 struct udevice *child;
353
354 for (device_find_first_child(dev->dev, &child);
355 child;
356 device_find_next_child(&child)) {
357 if (device_get_uclass_id(child) == UCLASS_BLK)
358 has_child = 0;
359 }
360 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600361#else
wdenke887afc2002-08-27 09:44:07 +0000362 /* check if the device has connected children */
Simon Glass6a1b2062015-03-25 12:22:02 -0600363 int i;
364
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100365 has_child = 0;
366 for (i = 0; i < dev->maxchild; i++) {
367 if (dev->children[i] != NULL)
368 has_child = 1;
wdenke887afc2002-08-27 09:44:07 +0000369 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600370#endif
wdenke887afc2002-08-27 09:44:07 +0000371 /* check if we are the last one */
Simon Glass6a1b2062015-03-25 12:22:02 -0600372#ifdef CONFIG_DM_USB
Hans de Goedec27b3292015-06-17 21:33:50 +0200373 /* Not the root of the usb tree? */
374 if (device_get_uclass_id(dev->dev->parent) != UCLASS_USB) {
375 last_child = device_is_last_sibling(dev->dev);
Simon Glass6a1b2062015-03-25 12:22:02 -0600376#else
Hans de Goedec27b3292015-06-17 21:33:50 +0200377 if (dev->parent != NULL) { /* not root? */
378 last_child = 1;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100379 for (i = 0; i < dev->parent->maxchild; i++) {
wdenke887afc2002-08-27 09:44:07 +0000380 /* search for children */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100381 if (dev->parent->children[i] == dev) {
382 /* found our pointer, see if we have a
383 * little sister
384 */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100385 while (i++ < dev->parent->maxchild) {
386 if (dev->parent->children[i] != NULL) {
wdenke887afc2002-08-27 09:44:07 +0000387 /* found a sister */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100388 last_child = 0;
wdenke887afc2002-08-27 09:44:07 +0000389 break;
390 } /* if */
391 } /* while */
392 } /* device found */
393 } /* for all children of the parent */
Simon Glass6a1b2062015-03-25 12:22:02 -0600394#endif
wdenke887afc2002-08-27 09:44:07 +0000395 printf("\b+-");
396 /* correct last child */
Simon Glasscad42912015-03-25 12:22:00 -0600397 if (last_child && index)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100398 pre[index-1] = ' ';
wdenke887afc2002-08-27 09:44:07 +0000399 } /* if not root hub */
400 else
401 printf(" ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100402 printf("%d ", dev->devnum);
403 pre[index++] = ' ';
404 pre[index++] = has_child ? '|' : ' ';
405 pre[index] = 0;
406 printf(" %s (%s, %dmA)\n", usb_get_class_desc(
Tom Rix8f8bd562009-10-31 12:37:38 -0500407 dev->config.if_desc[0].desc.bInterfaceClass),
Stefan Roesef1c1f542009-01-22 10:11:21 +0100408 portspeed(dev->speed),
Tom Rix8f8bd562009-10-31 12:37:38 -0500409 dev->config.desc.bMaxPower * 2);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100410 if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial))
411 printf(" %s %s %s %s\n", pre, dev->mf, dev->prod, dev->serial);
412 printf(" %s\n", pre);
Simon Glass6a1b2062015-03-25 12:22:02 -0600413#ifdef CONFIG_DM_USB
414 struct udevice *child;
415
416 for (device_find_first_child(dev->dev, &child);
417 child;
418 device_find_next_child(&child)) {
419 struct usb_device *udev;
420
421 if (!device_active(child))
422 continue;
423
Simon Glassbcbe3d12015-09-28 23:32:01 -0600424 udev = dev_get_parent_priv(child);
Simon Glass6a1b2062015-03-25 12:22:02 -0600425
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700426 /*
427 * Ignore emulators and block child devices, we only want
428 * real devices
429 */
430 if ((device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
431 (device_get_uclass_id(child) != UCLASS_BLK)) {
Simon Glass6a1b2062015-03-25 12:22:02 -0600432 usb_show_tree_graph(udev, pre);
433 pre[index] = 0;
434 }
435 }
436#else
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100437 if (dev->maxchild > 0) {
438 for (i = 0; i < dev->maxchild; i++) {
439 if (dev->children[i] != NULL) {
440 usb_show_tree_graph(dev->children[i], pre);
441 pre[index] = 0;
wdenke887afc2002-08-27 09:44:07 +0000442 }
443 }
444 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600445#endif
wdenke887afc2002-08-27 09:44:07 +0000446}
447
448/* main routine for the tree command */
Simon Glass45bfa472015-11-08 23:47:51 -0700449static void usb_show_subtree(struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000450{
451 char preamble[32];
452
Simon Glasscad42912015-03-25 12:22:00 -0600453 memset(preamble, '\0', sizeof(preamble));
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100454 usb_show_tree_graph(dev, &preamble[0]);
wdenke887afc2002-08-27 09:44:07 +0000455}
456
Simon Glass45bfa472015-11-08 23:47:51 -0700457#ifdef CONFIG_DM_USB
Hans de Goede2138fd62016-07-03 20:22:04 +0200458typedef void (*usb_dev_func_t)(struct usb_device *udev);
459
460static void usb_for_each_root_dev(usb_dev_func_t func)
461{
Simon Glass45bfa472015-11-08 23:47:51 -0700462 struct udevice *bus;
463
Hans de Goede192eab92016-04-03 00:04:39 +0200464 for (uclass_find_first_device(UCLASS_USB, &bus);
Simon Glass45bfa472015-11-08 23:47:51 -0700465 bus;
Hans de Goede192eab92016-04-03 00:04:39 +0200466 uclass_find_next_device(&bus)) {
Simon Glass45bfa472015-11-08 23:47:51 -0700467 struct usb_device *udev;
468 struct udevice *dev;
469
Hans de Goede192eab92016-04-03 00:04:39 +0200470 if (!device_active(bus))
471 continue;
472
Simon Glass45bfa472015-11-08 23:47:51 -0700473 device_find_first_child(bus, &dev);
474 if (dev && device_active(dev)) {
475 udev = dev_get_parent_priv(dev);
Hans de Goede2138fd62016-07-03 20:22:04 +0200476 func(udev);
Simon Glass45bfa472015-11-08 23:47:51 -0700477 }
478 }
Hans de Goede2138fd62016-07-03 20:22:04 +0200479}
480#endif
481
482void usb_show_tree(void)
483{
484#ifdef CONFIG_DM_USB
485 usb_for_each_root_dev(usb_show_subtree);
Simon Glass45bfa472015-11-08 23:47:51 -0700486#else
487 struct usb_device *udev;
488 int i;
489
490 for (i = 0; i < USB_MAX_DEVICE; i++) {
491 udev = usb_get_dev_index(i);
492 if (udev == NULL)
493 break;
494 if (udev->parent == NULL)
495 usb_show_subtree(udev);
496 }
497#endif
498}
499
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000500static int usb_test(struct usb_device *dev, int port, char* arg)
501{
502 int mode;
503
504 if (port > dev->maxchild) {
505 printf("Device is no hub or does not have %d ports.\n", port);
506 return 1;
507 }
508
509 switch (arg[0]) {
510 case 'J':
511 case 'j':
512 printf("Setting Test_J mode");
513 mode = USB_TEST_MODE_J;
514 break;
515 case 'K':
516 case 'k':
517 printf("Setting Test_K mode");
518 mode = USB_TEST_MODE_K;
519 break;
520 case 'S':
521 case 's':
522 printf("Setting Test_SE0_NAK mode");
523 mode = USB_TEST_MODE_SE0_NAK;
524 break;
525 case 'P':
526 case 'p':
527 printf("Setting Test_Packet mode");
528 mode = USB_TEST_MODE_PACKET;
529 break;
530 case 'F':
531 case 'f':
532 printf("Setting Test_Force_Enable mode");
533 mode = USB_TEST_MODE_FORCE_ENABLE;
534 break;
535 default:
536 printf("Unrecognized test mode: %s\nAvailable modes: "
537 "J, K, S[E0_NAK], P[acket], F[orce_Enable]\n", arg);
538 return 1;
539 }
540
541 if (port)
542 printf(" on downstream facing port %d...\n", port);
543 else
544 printf(" on upstream facing port...\n");
545
546 if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_FEATURE,
547 port ? USB_RT_PORT : USB_RECIP_DEVICE,
548 port ? USB_PORT_FEAT_TEST : USB_FEAT_TEST,
549 (mode << 8) | port,
550 NULL, 0, USB_CNTL_TIMEOUT) == -1) {
551 printf("Error during SET_FEATURE.\n");
552 return 1;
553 } else {
554 printf("Test mode successfully set. Use 'usb start' "
555 "to return to normal operation.\n");
556 return 0;
557 }
558}
559
wdenke887afc2002-08-27 09:44:07 +0000560
wdenke887afc2002-08-27 09:44:07 +0000561/******************************************************************************
562 * usb boot command intepreter. Derived from diskboot
563 */
564#ifdef CONFIG_USB_STORAGE
Kim Phillips088f1b12012-10-29 13:34:31 +0000565static int do_usbboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000566{
Rob Herring7405a132012-09-21 04:02:30 +0000567 return common_diskboot(cmdtp, "usb", argc, argv);
wdenke887afc2002-08-27 09:44:07 +0000568}
569#endif /* CONFIG_USB_STORAGE */
570
Hans de Goede8a8a2252014-09-20 16:54:38 +0200571static int do_usb_stop_keyboard(int force)
Hans de Goede6e78c742014-09-20 16:54:35 +0200572{
Hans de Goede9a80e712016-04-03 09:18:53 +0200573#if !defined CONFIG_DM_USB && defined CONFIG_USB_KEYBOARD
Hans de Goede8a8a2252014-09-20 16:54:38 +0200574 if (usb_kbd_deregister(force) != 0) {
Hans de Goede6e78c742014-09-20 16:54:35 +0200575 printf("USB not stopped: usbkbd still using USB\n");
576 return 1;
577 }
578#endif
579 return 0;
580}
wdenke887afc2002-08-27 09:44:07 +0000581
Hans de Goedeb5072262015-01-06 14:27:41 +0100582static void do_usb_start(void)
583{
584 bootstage_mark_name(BOOTSTAGE_ID_USB_START, "usb_start");
585
586 if (usb_init() < 0)
587 return;
588
Simon Glass6a1b2062015-03-25 12:22:02 -0600589 /* Driver model will probe the devices as they are found */
Simon Glass34ab37e2015-09-08 11:15:11 -0600590# ifdef CONFIG_USB_STORAGE
Hans de Goedeb5072262015-01-06 14:27:41 +0100591 /* try to recognize storage devices immediately */
592 usb_stor_curr_dev = usb_stor_scan(1);
Simon Glass34ab37e2015-09-08 11:15:11 -0600593# endif
Michal Simekb9847002016-12-21 09:35:08 +0100594#ifndef CONFIG_DM_USB
Simon Glass34ab37e2015-09-08 11:15:11 -0600595# ifdef CONFIG_USB_KEYBOARD
596 drv_usb_kbd_init();
597# endif
598#endif /* !CONFIG_DM_USB */
Hans de Goedeb5072262015-01-06 14:27:41 +0100599#ifdef CONFIG_USB_HOST_ETHER
Simon Glass69559092015-07-06 16:47:48 -0600600# ifdef CONFIG_DM_ETH
Marcel Ziswiler389f1852015-08-05 16:58:17 +0200601# ifndef CONFIG_DM_USB
602# error "You must use CONFIG_DM_USB if you want to use CONFIG_USB_HOST_ETHER with CONFIG_DM_ETH"
603# endif
604# else
Hans de Goedeb5072262015-01-06 14:27:41 +0100605 /* try to recognize ethernet devices immediately */
606 usb_ether_curr_dev = usb_host_eth_scan(1);
Marcel Ziswiler389f1852015-08-05 16:58:17 +0200607# endif
Simon Glass69559092015-07-06 16:47:48 -0600608#endif
Hans de Goedeb5072262015-01-06 14:27:41 +0100609}
610
Simon Glass6a1b2062015-03-25 12:22:02 -0600611#ifdef CONFIG_DM_USB
Hans de Goedee6e188f2016-07-03 20:22:05 +0200612static void usb_show_info(struct usb_device *udev)
Simon Glass6a1b2062015-03-25 12:22:02 -0600613{
614 struct udevice *child;
Simon Glass6a1b2062015-03-25 12:22:02 -0600615
Simon Glass6a1b2062015-03-25 12:22:02 -0600616 usb_display_desc(udev);
617 usb_display_config(udev);
Hans de Goedee6e188f2016-07-03 20:22:05 +0200618 for (device_find_first_child(udev->dev, &child);
Simon Glass6a1b2062015-03-25 12:22:02 -0600619 child;
620 device_find_next_child(&child)) {
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700621 if (device_active(child) &&
622 (device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
623 (device_get_uclass_id(child) != UCLASS_BLK)) {
Hans de Goedee6e188f2016-07-03 20:22:05 +0200624 udev = dev_get_parent_priv(child);
625 usb_show_info(udev);
Simon Glass6a1b2062015-03-25 12:22:02 -0600626 }
627 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600628}
629#endif
630
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100631/******************************************************************************
wdenke887afc2002-08-27 09:44:07 +0000632 * usb command intepreter
633 */
Kim Phillips088f1b12012-10-29 13:34:31 +0000634static int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000635{
Simon Glasscad42912015-03-25 12:22:00 -0600636 struct usb_device *udev = NULL;
wdenke887afc2002-08-27 09:44:07 +0000637 int i;
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200638 extern char usb_started;
wdenke887afc2002-08-27 09:44:07 +0000639
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200640 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000641 return CMD_RET_USAGE;
Serge Ziryukin65d34252010-04-25 21:32:36 +0300642
Hans de Goedeb5072262015-01-06 14:27:41 +0100643 if (strncmp(argv[1], "start", 5) == 0) {
644 if (usb_started)
645 return 0; /* Already started */
646 printf("starting USB...\n");
647 do_usb_start();
648 return 0;
649 }
650
651 if (strncmp(argv[1], "reset", 5) == 0) {
652 printf("resetting USB...\n");
Hans de Goede8a8a2252014-09-20 16:54:38 +0200653 if (do_usb_stop_keyboard(1) != 0)
Hans de Goede6e78c742014-09-20 16:54:35 +0200654 return 1;
wdenke887afc2002-08-27 09:44:07 +0000655 usb_stop();
Hans de Goedeb5072262015-01-06 14:27:41 +0100656 do_usb_start();
wdenke887afc2002-08-27 09:44:07 +0000657 return 0;
658 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100659 if (strncmp(argv[1], "stop", 4) == 0) {
Hans de Goede6e78c742014-09-20 16:54:35 +0200660 if (argc != 2)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100661 console_assign(stdin, "serial");
Hans de Goede8a8a2252014-09-20 16:54:38 +0200662 if (do_usb_stop_keyboard(0) != 0)
Hans de Goede6e78c742014-09-20 16:54:35 +0200663 return 1;
wdenke887afc2002-08-27 09:44:07 +0000664 printf("stopping USB..\n");
665 usb_stop();
666 return 0;
667 }
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200668 if (!usb_started) {
669 printf("USB is stopped. Please issue 'usb start' first.\n");
670 return 1;
671 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100672 if (strncmp(argv[1], "tree", 4) == 0) {
Lucas Stach93c25822012-09-26 00:14:36 +0200673 puts("USB device tree:\n");
Simon Glass45bfa472015-11-08 23:47:51 -0700674 usb_show_tree();
wdenke887afc2002-08-27 09:44:07 +0000675 return 0;
676 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100677 if (strncmp(argv[1], "inf", 3) == 0) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100678 if (argc == 2) {
Simon Glass6a1b2062015-03-25 12:22:02 -0600679#ifdef CONFIG_DM_USB
Hans de Goedee6e188f2016-07-03 20:22:05 +0200680 usb_for_each_root_dev(usb_show_info);
Simon Glass6a1b2062015-03-25 12:22:02 -0600681#else
682 int d;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100683 for (d = 0; d < USB_MAX_DEVICE; d++) {
Simon Glasscad42912015-03-25 12:22:00 -0600684 udev = usb_get_dev_index(d);
685 if (udev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000686 break;
Simon Glasscad42912015-03-25 12:22:00 -0600687 usb_display_desc(udev);
688 usb_display_config(udev);
wdenke887afc2002-08-27 09:44:07 +0000689 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600690#endif
wdenke887afc2002-08-27 09:44:07 +0000691 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100692 } else {
Simon Glass6a1b2062015-03-25 12:22:02 -0600693 /*
694 * With driver model this isn't right since we can
695 * have multiple controllers and the device numbering
696 * starts at 1 on each bus.
697 */
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000698 i = simple_strtoul(argv[2], NULL, 10);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100699 printf("config for device %d\n", i);
Simon Glasscad42912015-03-25 12:22:00 -0600700 udev = usb_find_device(i);
701 if (udev == NULL) {
Loïc Minier6052cba2011-02-03 22:04:26 +0100702 printf("*** No device available ***\n");
wdenke887afc2002-08-27 09:44:07 +0000703 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100704 } else {
Simon Glasscad42912015-03-25 12:22:00 -0600705 usb_display_desc(udev);
706 usb_display_config(udev);
wdenke887afc2002-08-27 09:44:07 +0000707 }
708 }
709 return 0;
710 }
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000711 if (strncmp(argv[1], "test", 4) == 0) {
712 if (argc < 5)
713 return CMD_RET_USAGE;
714 i = simple_strtoul(argv[2], NULL, 10);
Simon Glasscad42912015-03-25 12:22:00 -0600715 udev = usb_find_device(i);
716 if (udev == NULL) {
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000717 printf("Device %d does not exist.\n", i);
718 return 1;
719 }
720 i = simple_strtoul(argv[3], NULL, 10);
Simon Glasscad42912015-03-25 12:22:00 -0600721 return usb_test(udev, i, argv[4]);
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000722 }
wdenke887afc2002-08-27 09:44:07 +0000723#ifdef CONFIG_USB_STORAGE
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100724 if (strncmp(argv[1], "stor", 4) == 0)
Aras Vaichasf6b44e02008-03-25 12:09:07 +1100725 return usb_stor_info();
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200726
Simon Glassc16ad672017-07-29 11:34:58 -0600727 return blk_common_cmd(argc, argv, IF_TYPE_USB, &usb_stor_curr_dev);
728#else
Simon Glass4c12eeb2011-12-10 08:44:01 +0000729 return CMD_RET_USAGE;
Simon Glassc16ad672017-07-29 11:34:58 -0600730#endif /* CONFIG_USB_STORAGE */
wdenke887afc2002-08-27 09:44:07 +0000731}
732
wdenk0d498392003-07-01 21:06:45 +0000733U_BOOT_CMD(
734 usb, 5, 1, do_usb,
Peter Tyser2fb26042009-01-27 18:03:12 -0600735 "USB sub-system",
Veli-Pekka Peltola1af9f962011-11-02 16:59:56 +0200736 "start - start (scan) USB controller\n"
737 "usb reset - reset (rescan) USB controller\n"
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200738 "usb stop [f] - stop USB [f]=force stop\n"
739 "usb tree - show USB device tree\n"
wdenk5cf91d62004-04-23 20:32:05 +0000740 "usb info [dev] - show available USB devices\n"
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000741 "usb test [dev] [port] [mode] - set USB 2.0 test mode\n"
742 " (specify port 0 to indicate the device's upstream port)\n"
743 " Available modes: J, K, S[E0_NAK], P[acket], F[orce_Enable]\n"
744#ifdef CONFIG_USB_STORAGE
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200745 "usb storage - show details of USB storage devices\n"
wdenk342717f2005-06-27 13:30:03 +0000746 "usb dev [dev] - show or set current USB storage device\n"
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100747 "usb part [dev] - print partition table of one or all USB storage"
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000748 " devices\n"
wdenk5cf91d62004-04-23 20:32:05 +0000749 "usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
Sergei Poselenov842404e2010-08-09 16:01:42 +0400750 " to memory address `addr'\n"
Mahavir Jain127e1082009-11-03 12:22:10 +0530751 "usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'\n"
752 " from memory address `addr'"
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000753#endif /* CONFIG_USB_STORAGE */
wdenk8bde7f72003-06-27 21:31:46 +0000754);
755
756
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000757#ifdef CONFIG_USB_STORAGE
wdenk0d498392003-07-01 21:06:45 +0000758U_BOOT_CMD(
759 usbboot, 3, 1, do_usbboot,
Peter Tyser2fb26042009-01-27 18:03:12 -0600760 "boot from USB device",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200761 "loadAddr dev:part"
wdenk8bde7f72003-06-27 21:31:46 +0000762);
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000763#endif /* CONFIG_USB_STORAGE */