blob: dd9ac0bc9761d1fbb593256f042b2a2d7b20ba64 [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
Ismael Luceno Cortes51f60a82019-04-01 16:09:13 +0000319static inline const char *portspeed(int speed)
Stefan Roesef1c1f542009-01-22 10:11:21 +0100320{
Vivek Gautam6497c662013-04-12 16:34:38 +0530321 switch (speed) {
322 case USB_SPEED_SUPER:
Ismael Luceno Cortes51f60a82019-04-01 16:09:13 +0000323 return "5 Gb/s";
Vivek Gautam6497c662013-04-12 16:34:38 +0530324 case USB_SPEED_HIGH:
Ismael Luceno Cortes51f60a82019-04-01 16:09:13 +0000325 return "480 Mb/s";
Vivek Gautam6497c662013-04-12 16:34:38 +0530326 case USB_SPEED_LOW:
Ismael Luceno Cortes51f60a82019-04-01 16:09:13 +0000327 return "1.5 Mb/s";
Vivek Gautam6497c662013-04-12 16:34:38 +0530328 default:
Ismael Luceno Cortes51f60a82019-04-01 16:09:13 +0000329 return "12 Mb/s";
Vivek Gautam6497c662013-04-12 16:34:38 +0530330 }
Stefan Roesef1c1f542009-01-22 10:11:21 +0100331}
332
wdenke887afc2002-08-27 09:44:07 +0000333/* shows the device tree recursively */
Kim Phillips088f1b12012-10-29 13:34:31 +0000334static void usb_show_tree_graph(struct usb_device *dev, char *pre)
wdenke887afc2002-08-27 09:44:07 +0000335{
Simon Glass6a1b2062015-03-25 12:22:02 -0600336 int index;
Wolfgang Denk10f4dd72011-10-05 23:01:59 +0200337 int has_child, last_child;
wdenke887afc2002-08-27 09:44:07 +0000338
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100339 index = strlen(pre);
340 printf(" %s", pre);
Simon Glass6a1b2062015-03-25 12:22:02 -0600341#ifdef CONFIG_DM_USB
342 has_child = device_has_active_children(dev->dev);
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700343 if (device_get_uclass_id(dev->dev) == UCLASS_MASS_STORAGE) {
344 struct udevice *child;
345
346 for (device_find_first_child(dev->dev, &child);
347 child;
348 device_find_next_child(&child)) {
349 if (device_get_uclass_id(child) == UCLASS_BLK)
350 has_child = 0;
351 }
352 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600353#else
wdenke887afc2002-08-27 09:44:07 +0000354 /* check if the device has connected children */
Simon Glass6a1b2062015-03-25 12:22:02 -0600355 int i;
356
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100357 has_child = 0;
358 for (i = 0; i < dev->maxchild; i++) {
359 if (dev->children[i] != NULL)
360 has_child = 1;
wdenke887afc2002-08-27 09:44:07 +0000361 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600362#endif
wdenke887afc2002-08-27 09:44:07 +0000363 /* check if we are the last one */
Simon Glass6a1b2062015-03-25 12:22:02 -0600364#ifdef CONFIG_DM_USB
Hans de Goedec27b3292015-06-17 21:33:50 +0200365 /* Not the root of the usb tree? */
366 if (device_get_uclass_id(dev->dev->parent) != UCLASS_USB) {
367 last_child = device_is_last_sibling(dev->dev);
Simon Glass6a1b2062015-03-25 12:22:02 -0600368#else
Hans de Goedec27b3292015-06-17 21:33:50 +0200369 if (dev->parent != NULL) { /* not root? */
370 last_child = 1;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100371 for (i = 0; i < dev->parent->maxchild; i++) {
wdenke887afc2002-08-27 09:44:07 +0000372 /* search for children */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100373 if (dev->parent->children[i] == dev) {
374 /* found our pointer, see if we have a
375 * little sister
376 */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100377 while (i++ < dev->parent->maxchild) {
378 if (dev->parent->children[i] != NULL) {
wdenke887afc2002-08-27 09:44:07 +0000379 /* found a sister */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100380 last_child = 0;
wdenke887afc2002-08-27 09:44:07 +0000381 break;
382 } /* if */
383 } /* while */
384 } /* device found */
385 } /* for all children of the parent */
Simon Glass6a1b2062015-03-25 12:22:02 -0600386#endif
wdenke887afc2002-08-27 09:44:07 +0000387 printf("\b+-");
388 /* correct last child */
Simon Glasscad42912015-03-25 12:22:00 -0600389 if (last_child && index)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100390 pre[index-1] = ' ';
wdenke887afc2002-08-27 09:44:07 +0000391 } /* if not root hub */
392 else
393 printf(" ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100394 printf("%d ", dev->devnum);
395 pre[index++] = ' ';
396 pre[index++] = has_child ? '|' : ' ';
397 pre[index] = 0;
398 printf(" %s (%s, %dmA)\n", usb_get_class_desc(
Tom Rix8f8bd562009-10-31 12:37:38 -0500399 dev->config.if_desc[0].desc.bInterfaceClass),
Stefan Roesef1c1f542009-01-22 10:11:21 +0100400 portspeed(dev->speed),
Tom Rix8f8bd562009-10-31 12:37:38 -0500401 dev->config.desc.bMaxPower * 2);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100402 if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial))
403 printf(" %s %s %s %s\n", pre, dev->mf, dev->prod, dev->serial);
404 printf(" %s\n", pre);
Simon Glass6a1b2062015-03-25 12:22:02 -0600405#ifdef CONFIG_DM_USB
406 struct udevice *child;
407
408 for (device_find_first_child(dev->dev, &child);
409 child;
410 device_find_next_child(&child)) {
411 struct usb_device *udev;
412
413 if (!device_active(child))
414 continue;
415
Simon Glassbcbe3d12015-09-28 23:32:01 -0600416 udev = dev_get_parent_priv(child);
Simon Glass6a1b2062015-03-25 12:22:02 -0600417
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700418 /*
419 * Ignore emulators and block child devices, we only want
420 * real devices
421 */
422 if ((device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
423 (device_get_uclass_id(child) != UCLASS_BLK)) {
Simon Glass6a1b2062015-03-25 12:22:02 -0600424 usb_show_tree_graph(udev, pre);
425 pre[index] = 0;
426 }
427 }
428#else
Michael Trimarchide39f8c2008-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 Glass6a1b2062015-03-25 12:22:02 -0600437#endif
wdenke887afc2002-08-27 09:44:07 +0000438}
439
440/* main routine for the tree command */
Simon Glass45bfa472015-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 Glasscad42912015-03-25 12:22:00 -0600445 memset(preamble, '\0', sizeof(preamble));
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100446 usb_show_tree_graph(dev, &preamble[0]);
wdenke887afc2002-08-27 09:44:07 +0000447}
448
Simon Glass45bfa472015-11-08 23:47:51 -0700449#ifdef CONFIG_DM_USB
Hans de Goede2138fd62016-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 Glass45bfa472015-11-08 23:47:51 -0700454 struct udevice *bus;
455
Hans de Goede192eab92016-04-03 00:04:39 +0200456 for (uclass_find_first_device(UCLASS_USB, &bus);
Simon Glass45bfa472015-11-08 23:47:51 -0700457 bus;
Hans de Goede192eab92016-04-03 00:04:39 +0200458 uclass_find_next_device(&bus)) {
Simon Glass45bfa472015-11-08 23:47:51 -0700459 struct usb_device *udev;
460 struct udevice *dev;
461
Hans de Goede192eab92016-04-03 00:04:39 +0200462 if (!device_active(bus))
463 continue;
464
Simon Glass45bfa472015-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 Goede2138fd62016-07-03 20:22:04 +0200468 func(udev);
Simon Glass45bfa472015-11-08 23:47:51 -0700469 }
470 }
Hans de Goede2138fd62016-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 Glass45bfa472015-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 Werner7d9aa8f2013-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
wdenke887afc2002-08-27 09:44:07 +0000553/******************************************************************************
554 * usb boot command intepreter. Derived from diskboot
555 */
556#ifdef CONFIG_USB_STORAGE
Kim Phillips088f1b12012-10-29 13:34:31 +0000557static int do_usbboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000558{
Rob Herring7405a132012-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 Goede8a8a2252014-09-20 16:54:38 +0200563static int do_usb_stop_keyboard(int force)
Hans de Goede6e78c742014-09-20 16:54:35 +0200564{
Hans de Goede9a80e712016-04-03 09:18:53 +0200565#if !defined CONFIG_DM_USB && defined CONFIG_USB_KEYBOARD
Hans de Goede8a8a2252014-09-20 16:54:38 +0200566 if (usb_kbd_deregister(force) != 0) {
Hans de Goede6e78c742014-09-20 16:54:35 +0200567 printf("USB not stopped: usbkbd still using USB\n");
568 return 1;
569 }
570#endif
571 return 0;
572}
wdenke887afc2002-08-27 09:44:07 +0000573
Hans de Goedeb5072262015-01-06 14:27:41 +0100574static void do_usb_start(void)
575{
576 bootstage_mark_name(BOOTSTAGE_ID_USB_START, "usb_start");
577
578 if (usb_init() < 0)
579 return;
580
Simon Glass6a1b2062015-03-25 12:22:02 -0600581 /* Driver model will probe the devices as they are found */
Simon Glass34ab37e2015-09-08 11:15:11 -0600582# ifdef CONFIG_USB_STORAGE
Hans de Goedeb5072262015-01-06 14:27:41 +0100583 /* try to recognize storage devices immediately */
584 usb_stor_curr_dev = usb_stor_scan(1);
Simon Glass34ab37e2015-09-08 11:15:11 -0600585# endif
Michal Simekb9847002016-12-21 09:35:08 +0100586#ifndef CONFIG_DM_USB
Simon Glass34ab37e2015-09-08 11:15:11 -0600587# ifdef CONFIG_USB_KEYBOARD
588 drv_usb_kbd_init();
589# endif
590#endif /* !CONFIG_DM_USB */
Hans de Goedeb5072262015-01-06 14:27:41 +0100591#ifdef CONFIG_USB_HOST_ETHER
Simon Glass69559092015-07-06 16:47:48 -0600592# ifdef CONFIG_DM_ETH
Marcel Ziswiler389f1852015-08-05 16:58:17 +0200593# ifndef CONFIG_DM_USB
594# error "You must use CONFIG_DM_USB if you want to use CONFIG_USB_HOST_ETHER with CONFIG_DM_ETH"
595# endif
596# else
Hans de Goedeb5072262015-01-06 14:27:41 +0100597 /* try to recognize ethernet devices immediately */
598 usb_ether_curr_dev = usb_host_eth_scan(1);
Marcel Ziswiler389f1852015-08-05 16:58:17 +0200599# endif
Simon Glass69559092015-07-06 16:47:48 -0600600#endif
Hans de Goedeb5072262015-01-06 14:27:41 +0100601}
602
Simon Glass6a1b2062015-03-25 12:22:02 -0600603#ifdef CONFIG_DM_USB
Hans de Goedee6e188f2016-07-03 20:22:05 +0200604static void usb_show_info(struct usb_device *udev)
Simon Glass6a1b2062015-03-25 12:22:02 -0600605{
606 struct udevice *child;
Simon Glass6a1b2062015-03-25 12:22:02 -0600607
Simon Glass6a1b2062015-03-25 12:22:02 -0600608 usb_display_desc(udev);
609 usb_display_config(udev);
Hans de Goedee6e188f2016-07-03 20:22:05 +0200610 for (device_find_first_child(udev->dev, &child);
Simon Glass6a1b2062015-03-25 12:22:02 -0600611 child;
612 device_find_next_child(&child)) {
Suneel Garapatiabd7ced2017-10-23 17:28:40 -0700613 if (device_active(child) &&
614 (device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
615 (device_get_uclass_id(child) != UCLASS_BLK)) {
Hans de Goedee6e188f2016-07-03 20:22:05 +0200616 udev = dev_get_parent_priv(child);
617 usb_show_info(udev);
Simon Glass6a1b2062015-03-25 12:22:02 -0600618 }
619 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600620}
621#endif
622
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100623/******************************************************************************
wdenke887afc2002-08-27 09:44:07 +0000624 * usb command intepreter
625 */
Kim Phillips088f1b12012-10-29 13:34:31 +0000626static int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000627{
Simon Glasscad42912015-03-25 12:22:00 -0600628 struct usb_device *udev = NULL;
wdenke887afc2002-08-27 09:44:07 +0000629 int i;
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200630 extern char usb_started;
wdenke887afc2002-08-27 09:44:07 +0000631
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200632 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000633 return CMD_RET_USAGE;
Serge Ziryukin65d34252010-04-25 21:32:36 +0300634
Hans de Goedeb5072262015-01-06 14:27:41 +0100635 if (strncmp(argv[1], "start", 5) == 0) {
636 if (usb_started)
637 return 0; /* Already started */
638 printf("starting USB...\n");
639 do_usb_start();
640 return 0;
641 }
642
643 if (strncmp(argv[1], "reset", 5) == 0) {
644 printf("resetting USB...\n");
Hans de Goede8a8a2252014-09-20 16:54:38 +0200645 if (do_usb_stop_keyboard(1) != 0)
Hans de Goede6e78c742014-09-20 16:54:35 +0200646 return 1;
wdenke887afc2002-08-27 09:44:07 +0000647 usb_stop();
Hans de Goedeb5072262015-01-06 14:27:41 +0100648 do_usb_start();
wdenke887afc2002-08-27 09:44:07 +0000649 return 0;
650 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100651 if (strncmp(argv[1], "stop", 4) == 0) {
Hans de Goede6e78c742014-09-20 16:54:35 +0200652 if (argc != 2)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100653 console_assign(stdin, "serial");
Hans de Goede8a8a2252014-09-20 16:54:38 +0200654 if (do_usb_stop_keyboard(0) != 0)
Hans de Goede6e78c742014-09-20 16:54:35 +0200655 return 1;
wdenke887afc2002-08-27 09:44:07 +0000656 printf("stopping USB..\n");
657 usb_stop();
658 return 0;
659 }
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200660 if (!usb_started) {
661 printf("USB is stopped. Please issue 'usb start' first.\n");
662 return 1;
663 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100664 if (strncmp(argv[1], "tree", 4) == 0) {
Lucas Stach93c25822012-09-26 00:14:36 +0200665 puts("USB device tree:\n");
Simon Glass45bfa472015-11-08 23:47:51 -0700666 usb_show_tree();
wdenke887afc2002-08-27 09:44:07 +0000667 return 0;
668 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100669 if (strncmp(argv[1], "inf", 3) == 0) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100670 if (argc == 2) {
Simon Glass6a1b2062015-03-25 12:22:02 -0600671#ifdef CONFIG_DM_USB
Hans de Goedee6e188f2016-07-03 20:22:05 +0200672 usb_for_each_root_dev(usb_show_info);
Simon Glass6a1b2062015-03-25 12:22:02 -0600673#else
674 int d;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100675 for (d = 0; d < USB_MAX_DEVICE; d++) {
Simon Glasscad42912015-03-25 12:22:00 -0600676 udev = usb_get_dev_index(d);
677 if (udev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000678 break;
Simon Glasscad42912015-03-25 12:22:00 -0600679 usb_display_desc(udev);
680 usb_display_config(udev);
wdenke887afc2002-08-27 09:44:07 +0000681 }
Simon Glass6a1b2062015-03-25 12:22:02 -0600682#endif
wdenke887afc2002-08-27 09:44:07 +0000683 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100684 } else {
Simon Glass6a1b2062015-03-25 12:22:02 -0600685 /*
686 * With driver model this isn't right since we can
687 * have multiple controllers and the device numbering
688 * starts at 1 on each bus.
689 */
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000690 i = simple_strtoul(argv[2], NULL, 10);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100691 printf("config for device %d\n", i);
Simon Glasscad42912015-03-25 12:22:00 -0600692 udev = usb_find_device(i);
693 if (udev == NULL) {
Loïc Minier6052cba2011-02-03 22:04:26 +0100694 printf("*** No device available ***\n");
wdenke887afc2002-08-27 09:44:07 +0000695 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100696 } else {
Simon Glasscad42912015-03-25 12:22:00 -0600697 usb_display_desc(udev);
698 usb_display_config(udev);
wdenke887afc2002-08-27 09:44:07 +0000699 }
700 }
701 return 0;
702 }
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000703 if (strncmp(argv[1], "test", 4) == 0) {
704 if (argc < 5)
705 return CMD_RET_USAGE;
706 i = simple_strtoul(argv[2], NULL, 10);
Simon Glasscad42912015-03-25 12:22:00 -0600707 udev = usb_find_device(i);
708 if (udev == NULL) {
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000709 printf("Device %d does not exist.\n", i);
710 return 1;
711 }
712 i = simple_strtoul(argv[3], NULL, 10);
Simon Glasscad42912015-03-25 12:22:00 -0600713 return usb_test(udev, i, argv[4]);
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000714 }
wdenke887afc2002-08-27 09:44:07 +0000715#ifdef CONFIG_USB_STORAGE
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100716 if (strncmp(argv[1], "stor", 4) == 0)
Aras Vaichasf6b44e02008-03-25 12:09:07 +1100717 return usb_stor_info();
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200718
Simon Glassc16ad672017-07-29 11:34:58 -0600719 return blk_common_cmd(argc, argv, IF_TYPE_USB, &usb_stor_curr_dev);
720#else
Simon Glass4c12eeb2011-12-10 08:44:01 +0000721 return CMD_RET_USAGE;
Simon Glassc16ad672017-07-29 11:34:58 -0600722#endif /* CONFIG_USB_STORAGE */
wdenke887afc2002-08-27 09:44:07 +0000723}
724
wdenk0d498392003-07-01 21:06:45 +0000725U_BOOT_CMD(
726 usb, 5, 1, do_usb,
Peter Tyser2fb26042009-01-27 18:03:12 -0600727 "USB sub-system",
Veli-Pekka Peltola1af9f962011-11-02 16:59:56 +0200728 "start - start (scan) USB controller\n"
729 "usb reset - reset (rescan) USB controller\n"
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200730 "usb stop [f] - stop USB [f]=force stop\n"
731 "usb tree - show USB device tree\n"
wdenk5cf91d62004-04-23 20:32:05 +0000732 "usb info [dev] - show available USB devices\n"
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000733 "usb test [dev] [port] [mode] - set USB 2.0 test mode\n"
734 " (specify port 0 to indicate the device's upstream port)\n"
735 " Available modes: J, K, S[E0_NAK], P[acket], F[orce_Enable]\n"
736#ifdef CONFIG_USB_STORAGE
Veli-Pekka Peltolab3813a22011-11-02 16:59:55 +0200737 "usb storage - show details of USB storage devices\n"
wdenk342717f2005-06-27 13:30:03 +0000738 "usb dev [dev] - show or set current USB storage device\n"
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100739 "usb part [dev] - print partition table of one or all USB storage"
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000740 " devices\n"
wdenk5cf91d62004-04-23 20:32:05 +0000741 "usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
Sergei Poselenov842404e2010-08-09 16:01:42 +0400742 " to memory address `addr'\n"
Mahavir Jain127e1082009-11-03 12:22:10 +0530743 "usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'\n"
744 " from memory address `addr'"
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000745#endif /* CONFIG_USB_STORAGE */
wdenk8bde7f72003-06-27 21:31:46 +0000746);
747
748
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000749#ifdef CONFIG_USB_STORAGE
wdenk0d498392003-07-01 21:06:45 +0000750U_BOOT_CMD(
751 usbboot, 3, 1, do_usbboot,
Peter Tyser2fb26042009-01-27 18:03:12 -0600752 "boot from USB device",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200753 "loadAddr dev:part"
wdenk8bde7f72003-06-27 21:31:46 +0000754);
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000755#endif /* CONFIG_USB_STORAGE */