Blame view

cmd/usb.c 20 KB
e887afc9d   wdenk   Initial revision
1
2
3
4
  /*
   * (C) Copyright 2001
   * Denis Peter, MPL AG Switzerland
   *
6a1b206dc   Simon Glass   dm: usb: Convert ...
5
6
7
   * Adapted for U-Boot driver model
   * (C) Copyright 2015 Google, Inc
   *
e887afc9d   wdenk   Initial revision
8
9
10
   * Most of this source has been derived from the Linux USB
   * project.
   *
1a4596601   Wolfgang Denk   Add GPL-2.0+ SPDX...
11
   * SPDX-License-Identifier:	GPL-2.0+
e887afc9d   wdenk   Initial revision
12
13
14
15
   */
  
  #include <common.h>
  #include <command.h>
24b852a7a   Simon Glass   Move console defi...
16
  #include <console.h>
6a1b206dc   Simon Glass   dm: usb: Convert ...
17
  #include <dm.h>
192eab935   Hans de Goede   dm: usb: Do not r...
18
  #include <dm/uclass-internal.h>
cf92e05c0   Simon Glass   Move ALLOC_CACHE_...
19
  #include <memalign.h>
414eec35e   wdenk   Fix problems with...
20
  #include <asm/byteorder.h>
b2fb47f18   Tom Rini   USB: Use (get|put...
21
  #include <asm/unaligned.h>
735dd97b1   Grant Likely   [PATCH 1_4] Merge...
22
  #include <part.h>
e887afc9d   wdenk   Initial revision
23
  #include <usb.h>
e887afc9d   wdenk   Initial revision
24

1968e615d   wdenk   Cleanup USB and p...
25
  #ifdef CONFIG_USB_STORAGE
d0ff51ba5   Wolfgang Denk   Code cleanup: fix...
26
  static int usb_stor_curr_dev = -1; /* current device */
1968e615d   wdenk   Cleanup USB and p...
27
  #endif
c8c2797c3   Simon Glass   dm: usb: eth: Sup...
28
  #if defined(CONFIG_USB_HOST_ETHER) && !defined(CONFIG_DM_ETH)
69559093f   Simon Glass   dm: usb: Avoid us...
29
  static int __maybe_unused usb_ether_curr_dev = -1; /* current ethernet device */
89d48367e   Simon Glass   Add USB host ethe...
30
  #endif
e887afc9d   wdenk   Initial revision
31

a2663ea4f   wdenk   * Patches by Davi...
32
  /* some display routines (info command) */
088f1b199   Kim Phillips   common/cmd_*.c: s...
33
  static char *usb_get_class_desc(unsigned char dclass)
e887afc9d   wdenk   Initial revision
34
  {
de39f8c19   Michael Trimarchi   USB style patch, ...
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  	switch (dclass) {
  	case USB_CLASS_PER_INTERFACE:
  		return "See Interface";
  	case USB_CLASS_AUDIO:
  		return "Audio";
  	case USB_CLASS_COMM:
  		return "Communication";
  	case USB_CLASS_HID:
  		return "Human Interface";
  	case USB_CLASS_PRINTER:
  		return "Printer";
  	case USB_CLASS_MASS_STORAGE:
  		return "Mass Storage";
  	case USB_CLASS_HUB:
  		return "Hub";
  	case USB_CLASS_DATA:
  		return "CDC Data";
  	case USB_CLASS_VENDOR_SPEC:
  		return "Vendor specific";
  	default:
  		return "";
e887afc9d   wdenk   Initial revision
56
57
  	}
  }
088f1b199   Kim Phillips   common/cmd_*.c: s...
58
59
  static void usb_display_class_sub(unsigned char dclass, unsigned char subclass,
  				  unsigned char proto)
e887afc9d   wdenk   Initial revision
60
  {
de39f8c19   Michael Trimarchi   USB style patch, ...
61
62
63
64
65
66
67
68
69
  	switch (dclass) {
  	case USB_CLASS_PER_INTERFACE:
  		printf("See Interface");
  		break;
  	case USB_CLASS_HID:
  		printf("Human Interface, Subclass: ");
  		switch (subclass) {
  		case USB_SUB_HID_NONE:
  			printf("None");
e887afc9d   wdenk   Initial revision
70
  			break;
de39f8c19   Michael Trimarchi   USB style patch, ...
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
  		case USB_SUB_HID_BOOT:
  			printf("Boot ");
  			switch (proto) {
  			case USB_PROT_HID_NONE:
  				printf("None");
  				break;
  			case USB_PROT_HID_KEYBOARD:
  				printf("Keyboard");
  				break;
  			case USB_PROT_HID_MOUSE:
  				printf("Mouse");
  				break;
  			default:
  				printf("reserved");
  				break;
e887afc9d   wdenk   Initial revision
86
87
  			}
  			break;
de39f8c19   Michael Trimarchi   USB style patch, ...
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
  		default:
  			printf("reserved");
  			break;
  		}
  		break;
  	case USB_CLASS_MASS_STORAGE:
  		printf("Mass Storage, ");
  		switch (subclass) {
  		case US_SC_RBC:
  			printf("RBC ");
  			break;
  		case US_SC_8020:
  			printf("SFF-8020i (ATAPI)");
  			break;
  		case US_SC_QIC:
  			printf("QIC-157 (Tape)");
  			break;
  		case US_SC_UFI:
  			printf("UFI");
  			break;
  		case US_SC_8070:
  			printf("SFF-8070");
  			break;
  		case US_SC_SCSI:
  			printf("Transp. SCSI");
  			break;
  		default:
  			printf("reserved");
  			break;
  		}
  		printf(", ");
  		switch (proto) {
  		case US_PR_CB:
  			printf("Command/Bulk");
  			break;
  		case US_PR_CBI:
  			printf("Command/Bulk/Int");
  			break;
  		case US_PR_BULK:
  			printf("Bulk only");
e887afc9d   wdenk   Initial revision
128
129
  			break;
  		default:
de39f8c19   Michael Trimarchi   USB style patch, ...
130
131
132
133
134
135
136
  			printf("reserved");
  			break;
  		}
  		break;
  	default:
  		printf("%s", usb_get_class_desc(dclass));
  		break;
e887afc9d   wdenk   Initial revision
137
138
  	}
  }
088f1b199   Kim Phillips   common/cmd_*.c: s...
139
  static void usb_display_string(struct usb_device *dev, int index)
e887afc9d   wdenk   Initial revision
140
  {
f57661394   Puneet Saxena   USB: Align buffer...
141
  	ALLOC_CACHE_ALIGN_BUFFER(char, buffer, 256);
de39f8c19   Michael Trimarchi   USB style patch, ...
142
143
144
  	if (index != 0) {
  		if (usb_string(dev, index, &buffer[0], 256) > 0)
  			printf("String: \"%s\"", buffer);
e887afc9d   wdenk   Initial revision
145
146
  	}
  }
088f1b199   Kim Phillips   common/cmd_*.c: s...
147
  static void usb_display_desc(struct usb_device *dev)
e887afc9d   wdenk   Initial revision
148
  {
de39f8c19   Michael Trimarchi   USB style patch, ...
149
150
151
  	if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) {
  		printf("%d: %s,  USB Revision %x.%x
  ", dev->devnum,
8f8bd565f   Tom Rix   USB Consolidate d...
152
  		usb_get_class_desc(dev->config.if_desc[0].desc.bInterfaceClass),
de39f8c19   Michael Trimarchi   USB style patch, ...
153
154
155
156
157
158
159
160
  				   (dev->descriptor.bcdUSB>>8) & 0xff,
  				   dev->descriptor.bcdUSB & 0xff);
  
  		if (strlen(dev->mf) || strlen(dev->prod) ||
  		    strlen(dev->serial))
  			printf(" - %s %s %s
  ", dev->mf, dev->prod,
  				dev->serial);
e887afc9d   wdenk   Initial revision
161
162
  		if (dev->descriptor.bDeviceClass) {
  			printf(" - Class: ");
de39f8c19   Michael Trimarchi   USB style patch, ...
163
164
165
  			usb_display_class_sub(dev->descriptor.bDeviceClass,
  					      dev->descriptor.bDeviceSubClass,
  					      dev->descriptor.bDeviceProtocol);
e887afc9d   wdenk   Initial revision
166
167
  			printf("
  ");
de39f8c19   Michael Trimarchi   USB style patch, ...
168
169
170
171
  		} else {
  			printf(" - Class: (from Interface) %s
  ",
  			       usb_get_class_desc(
8f8bd565f   Tom Rix   USB Consolidate d...
172
  				dev->config.if_desc[0].desc.bInterfaceClass));
e887afc9d   wdenk   Initial revision
173
  		}
de39f8c19   Michael Trimarchi   USB style patch, ...
174
175
176
177
178
179
180
181
182
  		printf(" - PacketSize: %d  Configurations: %d
  ",
  			dev->descriptor.bMaxPacketSize0,
  			dev->descriptor.bNumConfigurations);
  		printf(" - Vendor: 0x%04x  Product 0x%04x Version %d.%d
  ",
  			dev->descriptor.idVendor, dev->descriptor.idProduct,
  			(dev->descriptor.bcdDevice>>8) & 0xff,
  			dev->descriptor.bcdDevice & 0xff);
e887afc9d   wdenk   Initial revision
183
184
185
  	}
  
  }
c60795f41   Ilya Yanok   usb: use linux/us...
186
  static void usb_display_conf_desc(struct usb_config_descriptor *config,
088f1b199   Kim Phillips   common/cmd_*.c: s...
187
  				  struct usb_device *dev)
e887afc9d   wdenk   Initial revision
188
  {
de39f8c19   Michael Trimarchi   USB style patch, ...
189
190
191
192
193
194
  	printf("   Configuration: %d
  ", config->bConfigurationValue);
  	printf("   - Interfaces: %d %s%s%dmA
  ", config->bNumInterfaces,
  	       (config->bmAttributes & 0x40) ? "Self Powered " : "Bus Powered ",
  	       (config->bmAttributes & 0x20) ? "Remote Wakeup " : "",
8f8bd565f   Tom Rix   USB Consolidate d...
195
  		config->bMaxPower*2);
e887afc9d   wdenk   Initial revision
196
197
  	if (config->iConfiguration) {
  		printf("   - ");
de39f8c19   Michael Trimarchi   USB style patch, ...
198
  		usb_display_string(dev, config->iConfiguration);
e887afc9d   wdenk   Initial revision
199
200
201
202
  		printf("
  ");
  	}
  }
088f1b199   Kim Phillips   common/cmd_*.c: s...
203
204
  static void usb_display_if_desc(struct usb_interface_descriptor *ifdesc,
  				struct usb_device *dev)
e887afc9d   wdenk   Initial revision
205
  {
de39f8c19   Michael Trimarchi   USB style patch, ...
206
207
208
209
210
  	printf("     Interface: %d
  ", ifdesc->bInterfaceNumber);
  	printf("     - Alternate Setting %d, Endpoints: %d
  ",
  		ifdesc->bAlternateSetting, ifdesc->bNumEndpoints);
e887afc9d   wdenk   Initial revision
211
  	printf("     - Class ");
de39f8c19   Michael Trimarchi   USB style patch, ...
212
213
  	usb_display_class_sub(ifdesc->bInterfaceClass,
  		ifdesc->bInterfaceSubClass, ifdesc->bInterfaceProtocol);
e887afc9d   wdenk   Initial revision
214
215
216
217
  	printf("
  ");
  	if (ifdesc->iInterface) {
  		printf("     - ");
de39f8c19   Michael Trimarchi   USB style patch, ...
218
  		usb_display_string(dev, ifdesc->iInterface);
e887afc9d   wdenk   Initial revision
219
220
221
222
  		printf("
  ");
  	}
  }
088f1b199   Kim Phillips   common/cmd_*.c: s...
223
  static void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc)
e887afc9d   wdenk   Initial revision
224
  {
de39f8c19   Michael Trimarchi   USB style patch, ...
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
  	printf("     - Endpoint %d %s ", epdesc->bEndpointAddress & 0xf,
  		(epdesc->bEndpointAddress & 0x80) ? "In" : "Out");
  	switch ((epdesc->bmAttributes & 0x03)) {
  	case 0:
  		printf("Control");
  		break;
  	case 1:
  		printf("Isochronous");
  		break;
  	case 2:
  		printf("Bulk");
  		break;
  	case 3:
  		printf("Interrupt");
  		break;
e887afc9d   wdenk   Initial revision
240
  	}
b2fb47f18   Tom Rini   USB: Use (get|put...
241
  	printf(" MaxPacket %d", get_unaligned(&epdesc->wMaxPacketSize));
de39f8c19   Michael Trimarchi   USB style patch, ...
242
243
  	if ((epdesc->bmAttributes & 0x03) == 0x3)
  		printf(" Interval %dms", epdesc->bInterval);
e887afc9d   wdenk   Initial revision
244
245
246
247
248
  	printf("
  ");
  }
  
  /* main routine to diasplay the configs, interfaces and endpoints */
088f1b199   Kim Phillips   common/cmd_*.c: s...
249
  static void usb_display_config(struct usb_device *dev)
e887afc9d   wdenk   Initial revision
250
  {
8f8bd565f   Tom Rix   USB Consolidate d...
251
252
  	struct usb_config *config;
  	struct usb_interface *ifdesc;
e887afc9d   wdenk   Initial revision
253
  	struct usb_endpoint_descriptor *epdesc;
de39f8c19   Michael Trimarchi   USB style patch, ...
254
255
256
  	int i, ii;
  
  	config = &dev->config;
8f8bd565f   Tom Rix   USB Consolidate d...
257
  	usb_display_conf_desc(&config->desc, dev);
de39f8c19   Michael Trimarchi   USB style patch, ...
258
259
  	for (i = 0; i < config->no_of_if; i++) {
  		ifdesc = &config->if_desc[i];
8f8bd565f   Tom Rix   USB Consolidate d...
260
  		usb_display_if_desc(&ifdesc->desc, dev);
de39f8c19   Michael Trimarchi   USB style patch, ...
261
262
  		for (ii = 0; ii < ifdesc->no_of_ep; ii++) {
  			epdesc = &ifdesc->ep_desc[ii];
e887afc9d   wdenk   Initial revision
263
264
265
266
267
268
  			usb_display_ep_desc(epdesc);
  		}
  	}
  	printf("
  ");
  }
6a1b206dc   Simon Glass   dm: usb: Convert ...
269
270
271
272
273
  /*
   * With driver model this isn't right since we can have multiple controllers
   * and the device numbering starts at 1 on each bus.
   * TODO(sjg@chromium.org): Add a way to specify the controller/bus.
   */
7d9aa8fd8   Julius Werner   usb: Add new comm...
274
275
  static struct usb_device *usb_find_device(int devnum)
  {
6a1b206dc   Simon Glass   dm: usb: Convert ...
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
  #ifdef CONFIG_DM_USB
  	struct usb_device *udev;
  	struct udevice *hub;
  	struct uclass *uc;
  	int ret;
  
  	/* Device addresses start at 1 */
  	devnum++;
  	ret = uclass_get(UCLASS_USB_HUB, &uc);
  	if (ret)
  		return NULL;
  
  	uclass_foreach_dev(hub, uc) {
  		struct udevice *dev;
  
  		if (!device_active(hub))
  			continue;
bcbe3d157   Simon Glass   dm: Rename dev_ge...
293
  		udev = dev_get_parent_priv(hub);
6a1b206dc   Simon Glass   dm: usb: Convert ...
294
295
296
297
298
299
300
301
  		if (udev->devnum == devnum)
  			return udev;
  
  		for (device_find_first_child(hub, &dev);
  		     dev;
  		     device_find_next_child(&dev)) {
  			if (!device_active(hub))
  				continue;
bcbe3d157   Simon Glass   dm: Rename dev_ge...
302
  			udev = dev_get_parent_priv(dev);
6a1b206dc   Simon Glass   dm: usb: Convert ...
303
304
305
306
307
  			if (udev->devnum == devnum)
  				return udev;
  		}
  	}
  #else
cad4291cd   Simon Glass   dm: usb: Adjust u...
308
  	struct usb_device *udev;
7d9aa8fd8   Julius Werner   usb: Add new comm...
309
310
311
  	int d;
  
  	for (d = 0; d < USB_MAX_DEVICE; d++) {
cad4291cd   Simon Glass   dm: usb: Adjust u...
312
313
  		udev = usb_get_dev_index(d);
  		if (udev == NULL)
7d9aa8fd8   Julius Werner   usb: Add new comm...
314
  			return NULL;
cad4291cd   Simon Glass   dm: usb: Adjust u...
315
316
  		if (udev->devnum == devnum)
  			return udev;
7d9aa8fd8   Julius Werner   usb: Add new comm...
317
  	}
6a1b206dc   Simon Glass   dm: usb: Convert ...
318
  #endif
7d9aa8fd8   Julius Werner   usb: Add new comm...
319
320
321
  
  	return NULL;
  }
f1c1f5402   Stefan Roese   USB: Add high-spe...
322
323
  static inline char *portspeed(int speed)
  {
6497c6670   Vivek Gautam   USB: SS: Add supp...
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
  	char *speed_str;
  
  	switch (speed) {
  	case USB_SPEED_SUPER:
  		speed_str = "5 Gb/s";
  		break;
  	case USB_SPEED_HIGH:
  		speed_str = "480 Mb/s";
  		break;
  	case USB_SPEED_LOW:
  		speed_str = "1.5 Mb/s";
  		break;
  	default:
  		speed_str = "12 Mb/s";
  		break;
  	}
  
  	return speed_str;
f1c1f5402   Stefan Roese   USB: Add high-spe...
342
  }
e887afc9d   wdenk   Initial revision
343
  /* shows the device tree recursively */
088f1b199   Kim Phillips   common/cmd_*.c: s...
344
  static void usb_show_tree_graph(struct usb_device *dev, char *pre)
e887afc9d   wdenk   Initial revision
345
  {
6a1b206dc   Simon Glass   dm: usb: Convert ...
346
  	int index;
10f4dd784   Wolfgang Denk   common/cmd_usb.c:...
347
  	int has_child, last_child;
e887afc9d   wdenk   Initial revision
348

de39f8c19   Michael Trimarchi   USB style patch, ...
349
350
  	index = strlen(pre);
  	printf(" %s", pre);
6a1b206dc   Simon Glass   dm: usb: Convert ...
351
352
353
  #ifdef CONFIG_DM_USB
  	has_child = device_has_active_children(dev->dev);
  #else
e887afc9d   wdenk   Initial revision
354
  	/* check if the device has connected children */
6a1b206dc   Simon Glass   dm: usb: Convert ...
355
  	int i;
de39f8c19   Michael Trimarchi   USB style patch, ...
356
357
358
359
  	has_child = 0;
  	for (i = 0; i < dev->maxchild; i++) {
  		if (dev->children[i] != NULL)
  			has_child = 1;
e887afc9d   wdenk   Initial revision
360
  	}
6a1b206dc   Simon Glass   dm: usb: Convert ...
361
  #endif
e887afc9d   wdenk   Initial revision
362
  	/* check if we are the last one */
6a1b206dc   Simon Glass   dm: usb: Convert ...
363
  #ifdef CONFIG_DM_USB
c27b32905   Hans de Goede   dm: usb: Fix "usb...
364
365
366
  	/* Not the root of the usb tree? */
  	if (device_get_uclass_id(dev->dev->parent) != UCLASS_USB) {
  		last_child = device_is_last_sibling(dev->dev);
6a1b206dc   Simon Glass   dm: usb: Convert ...
367
  #else
c27b32905   Hans de Goede   dm: usb: Fix "usb...
368
369
  	if (dev->parent != NULL) { /* not root? */
  		last_child = 1;
de39f8c19   Michael Trimarchi   USB style patch, ...
370
  		for (i = 0; i < dev->parent->maxchild; i++) {
e887afc9d   wdenk   Initial revision
371
  			/* search for children */
de39f8c19   Michael Trimarchi   USB style patch, ...
372
373
374
375
  			if (dev->parent->children[i] == dev) {
  				/* found our pointer, see if we have a
  				 * little sister
  				 */
de39f8c19   Michael Trimarchi   USB style patch, ...
376
377
  				while (i++ < dev->parent->maxchild) {
  					if (dev->parent->children[i] != NULL) {
e887afc9d   wdenk   Initial revision
378
  						/* found a sister */
de39f8c19   Michael Trimarchi   USB style patch, ...
379
  						last_child = 0;
e887afc9d   wdenk   Initial revision
380
381
382
383
384
  						break;
  					} /* if */
  				} /* while */
  			} /* device found */
  		} /* for all children of the parent */
6a1b206dc   Simon Glass   dm: usb: Convert ...
385
  #endif
e887afc9d   wdenk   Initial revision
386
387
  		printf("\b+-");
  		/* correct last child */
cad4291cd   Simon Glass   dm: usb: Adjust u...
388
  		if (last_child && index)
de39f8c19   Michael Trimarchi   USB style patch, ...
389
  			pre[index-1] = ' ';
e887afc9d   wdenk   Initial revision
390
391
392
  	} /* if not root hub */
  	else
  		printf(" ");
de39f8c19   Michael Trimarchi   USB style patch, ...
393
394
395
396
397
398
  	printf("%d ", dev->devnum);
  	pre[index++] = ' ';
  	pre[index++] = has_child ? '|' : ' ';
  	pre[index] = 0;
  	printf(" %s (%s, %dmA)
  ", usb_get_class_desc(
8f8bd565f   Tom Rix   USB Consolidate d...
399
  					dev->config.if_desc[0].desc.bInterfaceClass),
f1c1f5402   Stefan Roese   USB: Add high-spe...
400
  					portspeed(dev->speed),
8f8bd565f   Tom Rix   USB Consolidate d...
401
  					dev->config.desc.bMaxPower * 2);
de39f8c19   Michael Trimarchi   USB style patch, ...
402
403
404
405
406
  	if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial))
  		printf(" %s  %s %s %s
  ", pre, dev->mf, dev->prod, dev->serial);
  	printf(" %s
  ", pre);
6a1b206dc   Simon Glass   dm: usb: Convert ...
407
408
409
410
411
412
413
414
415
416
  #ifdef CONFIG_DM_USB
  	struct udevice *child;
  
  	for (device_find_first_child(dev->dev, &child);
  	     child;
  	     device_find_next_child(&child)) {
  		struct usb_device *udev;
  
  		if (!device_active(child))
  			continue;
bcbe3d157   Simon Glass   dm: Rename dev_ge...
417
  		udev = dev_get_parent_priv(child);
6a1b206dc   Simon Glass   dm: usb: Convert ...
418
419
420
421
422
423
424
425
  
  		/* Ignore emulators, we only want real devices */
  		if (device_get_uclass_id(child) != UCLASS_USB_EMUL) {
  			usb_show_tree_graph(udev, pre);
  			pre[index] = 0;
  		}
  	}
  #else
de39f8c19   Michael Trimarchi   USB style patch, ...
426
427
428
429
430
  	if (dev->maxchild > 0) {
  		for (i = 0; i < dev->maxchild; i++) {
  			if (dev->children[i] != NULL) {
  				usb_show_tree_graph(dev->children[i], pre);
  				pre[index] = 0;
e887afc9d   wdenk   Initial revision
431
432
433
  			}
  		}
  	}
6a1b206dc   Simon Glass   dm: usb: Convert ...
434
  #endif
e887afc9d   wdenk   Initial revision
435
436
437
  }
  
  /* main routine for the tree command */
45bfa47e1   Simon Glass   usb: Refactor USB...
438
  static void usb_show_subtree(struct usb_device *dev)
e887afc9d   wdenk   Initial revision
439
440
  {
  	char preamble[32];
cad4291cd   Simon Glass   dm: usb: Adjust u...
441
  	memset(preamble, '\0', sizeof(preamble));
de39f8c19   Michael Trimarchi   USB style patch, ...
442
  	usb_show_tree_graph(dev, &preamble[0]);
e887afc9d   wdenk   Initial revision
443
  }
45bfa47e1   Simon Glass   usb: Refactor USB...
444
  #ifdef CONFIG_DM_USB
2138fd6d5   Hans de Goede   usb: dm: Add a us...
445
446
447
448
  typedef void (*usb_dev_func_t)(struct usb_device *udev);
  
  static void usb_for_each_root_dev(usb_dev_func_t func)
  {
45bfa47e1   Simon Glass   usb: Refactor USB...
449
  	struct udevice *bus;
192eab935   Hans de Goede   dm: usb: Do not r...
450
  	for (uclass_find_first_device(UCLASS_USB, &bus);
45bfa47e1   Simon Glass   usb: Refactor USB...
451
  		bus;
192eab935   Hans de Goede   dm: usb: Do not r...
452
  		uclass_find_next_device(&bus)) {
45bfa47e1   Simon Glass   usb: Refactor USB...
453
454
  		struct usb_device *udev;
  		struct udevice *dev;
192eab935   Hans de Goede   dm: usb: Do not r...
455
456
  		if (!device_active(bus))
  			continue;
45bfa47e1   Simon Glass   usb: Refactor USB...
457
458
459
  		device_find_first_child(bus, &dev);
  		if (dev && device_active(dev)) {
  			udev = dev_get_parent_priv(dev);
2138fd6d5   Hans de Goede   usb: dm: Add a us...
460
  			func(udev);
45bfa47e1   Simon Glass   usb: Refactor USB...
461
462
  		}
  	}
2138fd6d5   Hans de Goede   usb: dm: Add a us...
463
464
465
466
467
468
469
  }
  #endif
  
  void usb_show_tree(void)
  {
  #ifdef CONFIG_DM_USB
  	usb_for_each_root_dev(usb_show_subtree);
45bfa47e1   Simon Glass   usb: Refactor USB...
470
471
472
473
474
475
476
477
478
479
480
481
482
  #else
  	struct usb_device *udev;
  	int i;
  
  	for (i = 0; i < USB_MAX_DEVICE; i++) {
  		udev = usb_get_dev_index(i);
  		if (udev == NULL)
  			break;
  		if (udev->parent == NULL)
  			usb_show_subtree(udev);
  	}
  #endif
  }
7d9aa8fd8   Julius Werner   usb: Add new comm...
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
  static int usb_test(struct usb_device *dev, int port, char* arg)
  {
  	int mode;
  
  	if (port > dev->maxchild) {
  		printf("Device is no hub or does not have %d ports.
  ", port);
  		return 1;
  	}
  
  	switch (arg[0]) {
  	case 'J':
  	case 'j':
  		printf("Setting Test_J mode");
  		mode = USB_TEST_MODE_J;
  		break;
  	case 'K':
  	case 'k':
  		printf("Setting Test_K mode");
  		mode = USB_TEST_MODE_K;
  		break;
  	case 'S':
  	case 's':
  		printf("Setting Test_SE0_NAK mode");
  		mode = USB_TEST_MODE_SE0_NAK;
  		break;
  	case 'P':
  	case 'p':
  		printf("Setting Test_Packet mode");
  		mode = USB_TEST_MODE_PACKET;
  		break;
  	case 'F':
  	case 'f':
  		printf("Setting Test_Force_Enable mode");
  		mode = USB_TEST_MODE_FORCE_ENABLE;
  		break;
  	default:
  		printf("Unrecognized test mode: %s
  Available modes: "
  		       "J, K, S[E0_NAK], P[acket], F[orce_Enable]
  ", arg);
  		return 1;
  	}
  
  	if (port)
  		printf(" on downstream facing port %d...
  ", port);
  	else
  		printf(" on upstream facing port...
  ");
  
  	if (usb_control_msg(dev, usb_sndctrlpipe(dev, 0), USB_REQ_SET_FEATURE,
  			    port ? USB_RT_PORT : USB_RECIP_DEVICE,
  			    port ? USB_PORT_FEAT_TEST : USB_FEAT_TEST,
  			    (mode << 8) | port,
  			    NULL, 0, USB_CNTL_TIMEOUT) == -1) {
  		printf("Error during SET_FEATURE.
  ");
  		return 1;
  	} else {
  		printf("Test mode successfully set. Use 'usb start' "
  		       "to return to normal operation.
  ");
  		return 0;
  	}
  }
e887afc9d   wdenk   Initial revision
549

e887afc9d   wdenk   Initial revision
550
551
552
553
  /******************************************************************************
   * usb boot command intepreter. Derived from diskboot
   */
  #ifdef CONFIG_USB_STORAGE
088f1b199   Kim Phillips   common/cmd_*.c: s...
554
  static int do_usbboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
e887afc9d   wdenk   Initial revision
555
  {
7405a1331   Rob Herring   combine block dev...
556
  	return common_diskboot(cmdtp, "usb", argc, argv);
e887afc9d   wdenk   Initial revision
557
558
  }
  #endif /* CONFIG_USB_STORAGE */
8a8a2257e   Hans de Goede   usb: kbd: Allow "...
559
  static int do_usb_stop_keyboard(int force)
6e78c74f6   Hans de Goede   usb: kbd: On a "u...
560
  {
9a80e7143   Hans de Goede   usb: kbd: Do not ...
561
  #if !defined CONFIG_DM_USB && defined CONFIG_USB_KEYBOARD
8a8a2257e   Hans de Goede   usb: kbd: Allow "...
562
  	if (usb_kbd_deregister(force) != 0) {
6e78c74f6   Hans de Goede   usb: kbd: On a "u...
563
564
565
566
567
568
569
  		printf("USB not stopped: usbkbd still using USB
  ");
  		return 1;
  	}
  #endif
  	return 0;
  }
e887afc9d   wdenk   Initial revision
570

b50722640   Hans de Goede   USB: make "usb st...
571
572
573
574
575
576
  static void do_usb_start(void)
  {
  	bootstage_mark_name(BOOTSTAGE_ID_USB_START, "usb_start");
  
  	if (usb_init() < 0)
  		return;
6a1b206dc   Simon Glass   dm: usb: Convert ...
577
578
  	/* Driver model will probe the devices as they are found */
  #ifndef CONFIG_DM_USB
34ab37eef   Simon Glass   dm: usb: Add supp...
579
  # ifdef CONFIG_USB_STORAGE
b50722640   Hans de Goede   USB: make "usb st...
580
581
  	/* try to recognize storage devices immediately */
  	usb_stor_curr_dev = usb_stor_scan(1);
34ab37eef   Simon Glass   dm: usb: Add supp...
582
583
584
585
586
  # endif
  # ifdef CONFIG_USB_KEYBOARD
  	drv_usb_kbd_init();
  # endif
  #endif /* !CONFIG_DM_USB */
b50722640   Hans de Goede   USB: make "usb st...
587
  #ifdef CONFIG_USB_HOST_ETHER
69559093f   Simon Glass   dm: usb: Avoid us...
588
  # ifdef CONFIG_DM_ETH
389f1856b   Marcel Ziswiler   dm: usb: fix USB ...
589
590
591
592
  #  ifndef CONFIG_DM_USB
  #   error "You must use CONFIG_DM_USB if you want to use CONFIG_USB_HOST_ETHER with CONFIG_DM_ETH"
  #  endif
  # else
b50722640   Hans de Goede   USB: make "usb st...
593
594
  	/* try to recognize ethernet devices immediately */
  	usb_ether_curr_dev = usb_host_eth_scan(1);
389f1856b   Marcel Ziswiler   dm: usb: fix USB ...
595
  # endif
69559093f   Simon Glass   dm: usb: Avoid us...
596
  #endif
b50722640   Hans de Goede   USB: make "usb st...
597
  }
6a1b206dc   Simon Glass   dm: usb: Convert ...
598
  #ifdef CONFIG_DM_USB
e6e188f56   Hans de Goede   usb: dm: Make "us...
599
  static void usb_show_info(struct usb_device *udev)
6a1b206dc   Simon Glass   dm: usb: Convert ...
600
601
  {
  	struct udevice *child;
6a1b206dc   Simon Glass   dm: usb: Convert ...
602

6a1b206dc   Simon Glass   dm: usb: Convert ...
603
604
  	usb_display_desc(udev);
  	usb_display_config(udev);
e6e188f56   Hans de Goede   usb: dm: Make "us...
605
  	for (device_find_first_child(udev->dev, &child);
6a1b206dc   Simon Glass   dm: usb: Convert ...
606
607
  	     child;
  	     device_find_next_child(&child)) {
e6e188f56   Hans de Goede   usb: dm: Make "us...
608
609
610
  		if (device_active(child)) {
  			udev = dev_get_parent_priv(child);
  			usb_show_info(udev);
6a1b206dc   Simon Glass   dm: usb: Convert ...
611
612
  		}
  	}
6a1b206dc   Simon Glass   dm: usb: Convert ...
613
614
  }
  #endif
de39f8c19   Michael Trimarchi   USB style patch, ...
615
  /******************************************************************************
e887afc9d   wdenk   Initial revision
616
617
   * usb command intepreter
   */
088f1b199   Kim Phillips   common/cmd_*.c: s...
618
  static int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
e887afc9d   wdenk   Initial revision
619
  {
cad4291cd   Simon Glass   dm: usb: Adjust u...
620
  	struct usb_device *udev = NULL;
e887afc9d   wdenk   Initial revision
621
  	int i;
e51aae382   Bartlomiej Sieka   Prevent USB comma...
622
  	extern char usb_started;
1968e615d   wdenk   Cleanup USB and p...
623
  #ifdef CONFIG_USB_STORAGE
4101f6879   Simon Glass   dm: Drop the bloc...
624
  	struct blk_desc *stor_dev;
1968e615d   wdenk   Cleanup USB and p...
625
  #endif
e887afc9d   wdenk   Initial revision
626

47e26b1bf   Wolfgang Denk   cmd_usage(): simp...
627
  	if (argc < 2)
4c12eeb8b   Simon Glass   Convert cmd_usage...
628
  		return CMD_RET_USAGE;
65d342541   Serge Ziryukin   cmd_usb.c: show c...
629

b50722640   Hans de Goede   USB: make "usb st...
630
631
632
633
634
635
636
637
638
639
640
641
  	if (strncmp(argv[1], "start", 5) == 0) {
  		if (usb_started)
  			return 0; /* Already started */
  		printf("starting USB...
  ");
  		do_usb_start();
  		return 0;
  	}
  
  	if (strncmp(argv[1], "reset", 5) == 0) {
  		printf("resetting USB...
  ");
8a8a2257e   Hans de Goede   usb: kbd: Allow "...
642
  		if (do_usb_stop_keyboard(1) != 0)
6e78c74f6   Hans de Goede   usb: kbd: On a "u...
643
  			return 1;
e887afc9d   wdenk   Initial revision
644
  		usb_stop();
b50722640   Hans de Goede   USB: make "usb st...
645
  		do_usb_start();
e887afc9d   wdenk   Initial revision
646
647
  		return 0;
  	}
de39f8c19   Michael Trimarchi   USB style patch, ...
648
  	if (strncmp(argv[1], "stop", 4) == 0) {
6e78c74f6   Hans de Goede   usb: kbd: On a "u...
649
  		if (argc != 2)
de39f8c19   Michael Trimarchi   USB style patch, ...
650
  			console_assign(stdin, "serial");
8a8a2257e   Hans de Goede   usb: kbd: Allow "...
651
  		if (do_usb_stop_keyboard(0) != 0)
6e78c74f6   Hans de Goede   usb: kbd: On a "u...
652
  			return 1;
e887afc9d   wdenk   Initial revision
653
654
655
656
657
  		printf("stopping USB..
  ");
  		usb_stop();
  		return 0;
  	}
e51aae382   Bartlomiej Sieka   Prevent USB comma...
658
659
660
661
662
  	if (!usb_started) {
  		printf("USB is stopped. Please issue 'usb start' first.
  ");
  		return 1;
  	}
de39f8c19   Michael Trimarchi   USB style patch, ...
663
  	if (strncmp(argv[1], "tree", 4) == 0) {
93c2582fe   Lucas Stach   usb: add support ...
664
665
  		puts("USB device tree:
  ");
45bfa47e1   Simon Glass   usb: Refactor USB...
666
  		usb_show_tree();
e887afc9d   wdenk   Initial revision
667
668
  		return 0;
  	}
de39f8c19   Michael Trimarchi   USB style patch, ...
669
  	if (strncmp(argv[1], "inf", 3) == 0) {
de39f8c19   Michael Trimarchi   USB style patch, ...
670
  		if (argc == 2) {
6a1b206dc   Simon Glass   dm: usb: Convert ...
671
  #ifdef CONFIG_DM_USB
e6e188f56   Hans de Goede   usb: dm: Make "us...
672
  			usb_for_each_root_dev(usb_show_info);
6a1b206dc   Simon Glass   dm: usb: Convert ...
673
674
  #else
  			int d;
de39f8c19   Michael Trimarchi   USB style patch, ...
675
  			for (d = 0; d < USB_MAX_DEVICE; d++) {
cad4291cd   Simon Glass   dm: usb: Adjust u...
676
677
  				udev = usb_get_dev_index(d);
  				if (udev == NULL)
e887afc9d   wdenk   Initial revision
678
  					break;
cad4291cd   Simon Glass   dm: usb: Adjust u...
679
680
  				usb_display_desc(udev);
  				usb_display_config(udev);
e887afc9d   wdenk   Initial revision
681
  			}
6a1b206dc   Simon Glass   dm: usb: Convert ...
682
  #endif
e887afc9d   wdenk   Initial revision
683
  			return 0;
de39f8c19   Michael Trimarchi   USB style patch, ...
684
  		} else {
6a1b206dc   Simon Glass   dm: usb: Convert ...
685
686
687
688
689
  			/*
  			 * With driver model this isn't right since we can
  			 * have multiple controllers and the device numbering
  			 * starts at 1 on each bus.
  			 */
7d9aa8fd8   Julius Werner   usb: Add new comm...
690
  			i = simple_strtoul(argv[2], NULL, 10);
de39f8c19   Michael Trimarchi   USB style patch, ...
691
692
  			printf("config for device %d
  ", i);
cad4291cd   Simon Glass   dm: usb: Adjust u...
693
694
  			udev = usb_find_device(i);
  			if (udev == NULL) {
6052cbab4   Loïc Minier   Fix misc spelling...
695
696
  				printf("*** No device available ***
  ");
e887afc9d   wdenk   Initial revision
697
  				return 0;
de39f8c19   Michael Trimarchi   USB style patch, ...
698
  			} else {
cad4291cd   Simon Glass   dm: usb: Adjust u...
699
700
  				usb_display_desc(udev);
  				usb_display_config(udev);
e887afc9d   wdenk   Initial revision
701
702
703
704
  			}
  		}
  		return 0;
  	}
7d9aa8fd8   Julius Werner   usb: Add new comm...
705
706
707
708
  	if (strncmp(argv[1], "test", 4) == 0) {
  		if (argc < 5)
  			return CMD_RET_USAGE;
  		i = simple_strtoul(argv[2], NULL, 10);
cad4291cd   Simon Glass   dm: usb: Adjust u...
709
710
  		udev = usb_find_device(i);
  		if (udev == NULL) {
7d9aa8fd8   Julius Werner   usb: Add new comm...
711
712
713
714
715
  			printf("Device %d does not exist.
  ", i);
  			return 1;
  		}
  		i = simple_strtoul(argv[3], NULL, 10);
cad4291cd   Simon Glass   dm: usb: Adjust u...
716
  		return usb_test(udev, i, argv[4]);
7d9aa8fd8   Julius Werner   usb: Add new comm...
717
  	}
e887afc9d   wdenk   Initial revision
718
  #ifdef CONFIG_USB_STORAGE
de39f8c19   Michael Trimarchi   USB style patch, ...
719
  	if (strncmp(argv[1], "stor", 4) == 0)
f6b44e0e4   Aras Vaichas   USB Storage, add ...
720
  		return usb_stor_info();
9c998aa83   Wolfgang Denk   Fix low-level OHC...
721

de39f8c19   Michael Trimarchi   USB style patch, ...
722
  	if (strncmp(argv[1], "part", 4) == 0) {
d4b5f3fa0   Christian Eggers   Fix "usb part" co...
723
  		int devno, ok = 0;
de39f8c19   Michael Trimarchi   USB style patch, ...
724
  		if (argc == 2) {
aaad108b8   Kim B. Heino   USB storage count
725
  			for (devno = 0; ; ++devno) {
57ebf67ba   Simon Glass   dm: usb: Drop the...
726
727
  				stor_dev = blk_get_devnum_by_type(IF_TYPE_USB,
  								  devno);
aaad108b8   Kim B. Heino   USB storage count
728
729
  				if (stor_dev == NULL)
  					break;
de39f8c19   Michael Trimarchi   USB style patch, ...
730
  				if (stor_dev->type != DEV_TYPE_UNKNOWN) {
d4b5f3fa0   Christian Eggers   Fix "usb part" co...
731
732
733
734
  					ok++;
  					if (devno)
  						printf("
  ");
060f28532   Wolfgang Denk   cmd_usb.c: print ...
735
736
  					debug("print_part of %x
  ", devno);
3e8bd4695   Simon Glass   dm: part: Rename ...
737
  					part_print(stor_dev);
d4b5f3fa0   Christian Eggers   Fix "usb part" co...
738
739
  				}
  			}
de39f8c19   Michael Trimarchi   USB style patch, ...
740
741
  		} else {
  			devno = simple_strtoul(argv[2], NULL, 16);
57ebf67ba   Simon Glass   dm: usb: Drop the...
742
  			stor_dev = blk_get_devnum_by_type(IF_TYPE_USB, devno);
aaad108b8   Kim B. Heino   USB storage count
743
744
  			if (stor_dev != NULL &&
  			    stor_dev->type != DEV_TYPE_UNKNOWN) {
e887afc9d   wdenk   Initial revision
745
  				ok++;
060f28532   Wolfgang Denk   cmd_usb.c: print ...
746
747
  				debug("print_part of %x
  ", devno);
3e8bd4695   Simon Glass   dm: part: Rename ...
748
  				part_print(stor_dev);
e887afc9d   wdenk   Initial revision
749
750
751
752
753
754
755
756
757
758
  			}
  		}
  		if (!ok) {
  			printf("
  no USB devices available
  ");
  			return 1;
  		}
  		return 0;
  	}
de39f8c19   Michael Trimarchi   USB style patch, ...
759
760
  	if (strcmp(argv[1], "read") == 0) {
  		if (usb_stor_curr_dev < 0) {
e887afc9d   wdenk   Initial revision
761
762
763
764
  			printf("no current device selected
  ");
  			return 1;
  		}
de39f8c19   Michael Trimarchi   USB style patch, ...
765
  		if (argc == 5) {
e887afc9d   wdenk   Initial revision
766
767
768
769
  			unsigned long addr = simple_strtoul(argv[2], NULL, 16);
  			unsigned long blk  = simple_strtoul(argv[3], NULL, 16);
  			unsigned long cnt  = simple_strtoul(argv[4], NULL, 16);
  			unsigned long n;
de39f8c19   Michael Trimarchi   USB style patch, ...
770
771
772
  			printf("
  USB read: device %d block # %ld, count %ld"
  				" ... ", usb_stor_curr_dev, blk, cnt);
57ebf67ba   Simon Glass   dm: usb: Drop the...
773
774
  			stor_dev = blk_get_devnum_by_type(IF_TYPE_USB,
  							  usb_stor_curr_dev);
2a981dc2c   Simon Glass   dm: block: Adjust...
775
  			n = blk_dread(stor_dev, blk, cnt, (ulong *)addr);
de39f8c19   Michael Trimarchi   USB style patch, ...
776
777
778
779
  			printf("%ld blocks read: %s
  ", n,
  				(n == cnt) ? "OK" : "ERROR");
  			if (n == cnt)
e887afc9d   wdenk   Initial revision
780
781
782
783
  				return 0;
  			return 1;
  		}
  	}
127e10842   Mahavir Jain   usb: write comman...
784
785
786
787
788
789
790
791
792
793
794
795
796
797
  	if (strcmp(argv[1], "write") == 0) {
  		if (usb_stor_curr_dev < 0) {
  			printf("no current device selected
  ");
  			return 1;
  		}
  		if (argc == 5) {
  			unsigned long addr = simple_strtoul(argv[2], NULL, 16);
  			unsigned long blk  = simple_strtoul(argv[3], NULL, 16);
  			unsigned long cnt  = simple_strtoul(argv[4], NULL, 16);
  			unsigned long n;
  			printf("
  USB write: device %d block # %ld, count %ld"
  				" ... ", usb_stor_curr_dev, blk, cnt);
57ebf67ba   Simon Glass   dm: usb: Drop the...
798
799
  			stor_dev = blk_get_devnum_by_type(IF_TYPE_USB,
  							  usb_stor_curr_dev);
2a981dc2c   Simon Glass   dm: block: Adjust...
800
  			n = blk_dwrite(stor_dev, blk, cnt, (ulong *)addr);
127e10842   Mahavir Jain   usb: write comman...
801
802
803
804
805
806
807
808
  			printf("%ld blocks write: %s
  ", n,
  				(n == cnt) ? "OK" : "ERROR");
  			if (n == cnt)
  				return 0;
  			return 1;
  		}
  	}
9c998aa83   Wolfgang Denk   Fix low-level OHC...
809
810
  	if (strncmp(argv[1], "dev", 3) == 0) {
  		if (argc == 3) {
e887afc9d   wdenk   Initial revision
811
  			int dev = (int)simple_strtoul(argv[2], NULL, 10);
de39f8c19   Michael Trimarchi   USB style patch, ...
812
813
  			printf("
  USB device %d: ", dev);
57ebf67ba   Simon Glass   dm: usb: Drop the...
814
  			stor_dev = blk_get_devnum_by_type(IF_TYPE_USB, dev);
7839f5f80   Peng Fan   cmd: usb: check i...
815
816
  			if ((stor_dev == NULL) ||
  			    (stor_dev->if_type == IF_TYPE_UNKNOWN)) {
e887afc9d   wdenk   Initial revision
817
818
819
820
  				printf("unknown device
  ");
  				return 1;
  			}
de39f8c19   Michael Trimarchi   USB style patch, ...
821
822
  			printf("
      Device %d: ", dev);
e887afc9d   wdenk   Initial revision
823
  			dev_print(stor_dev);
de39f8c19   Michael Trimarchi   USB style patch, ...
824
  			if (stor_dev->type == DEV_TYPE_UNKNOWN)
e887afc9d   wdenk   Initial revision
825
  				return 1;
e887afc9d   wdenk   Initial revision
826
827
828
829
  			usb_stor_curr_dev = dev;
  			printf("... is now current device
  ");
  			return 0;
de39f8c19   Michael Trimarchi   USB style patch, ...
830
831
832
  		} else {
  			printf("
  USB device %d: ", usb_stor_curr_dev);
57ebf67ba   Simon Glass   dm: usb: Drop the...
833
834
  			stor_dev = blk_get_devnum_by_type(IF_TYPE_USB,
  							  usb_stor_curr_dev);
e887afc9d   wdenk   Initial revision
835
  			dev_print(stor_dev);
de39f8c19   Michael Trimarchi   USB style patch, ...
836
  			if (stor_dev->type == DEV_TYPE_UNKNOWN)
e887afc9d   wdenk   Initial revision
837
  				return 1;
e887afc9d   wdenk   Initial revision
838
839
840
841
842
  			return 0;
  		}
  		return 0;
  	}
  #endif /* CONFIG_USB_STORAGE */
4c12eeb8b   Simon Glass   Convert cmd_usage...
843
  	return CMD_RET_USAGE;
e887afc9d   wdenk   Initial revision
844
  }
0d4983930   wdenk   Patch by Kenneth ...
845
846
  U_BOOT_CMD(
  	usb,	5,	1,	do_usb,
2fb2604d5   Peter Tyser   Command usage cle...
847
  	"USB sub-system",
1af9f9633   Veli-Pekka Peltola   usb: add help for...
848
849
850
851
  	"start - start (scan) USB controller
  "
  	"usb reset - reset (rescan) USB controller
  "
b3813a221   Veli-Pekka Peltola   cosmetic: remove ...
852
853
854
855
  	"usb stop [f] - stop USB [f]=force stop
  "
  	"usb tree - show USB device tree
  "
5cf91d6bd   wdenk   * Modify KUP4X bo...
856
857
  	"usb info [dev] - show available USB devices
  "
7d9aa8fd8   Julius Werner   usb: Add new comm...
858
859
860
861
862
863
864
  	"usb test [dev] [port] [mode] - set USB 2.0 test mode
  "
  	"    (specify port 0 to indicate the device's upstream port)
  "
  	"    Available modes: J, K, S[E0_NAK], P[acket], F[orce_Enable]
  "
  #ifdef CONFIG_USB_STORAGE
b3813a221   Veli-Pekka Peltola   cosmetic: remove ...
865
866
  	"usb storage - show details of USB storage devices
  "
342717f72   wdenk   * Fix baudrate ca...
867
868
  	"usb dev [dev] - show or set current USB storage device
  "
de39f8c19   Michael Trimarchi   USB style patch, ...
869
  	"usb part [dev] - print partition table of one or all USB storage"
7d9aa8fd8   Julius Werner   usb: Add new comm...
870
871
  	"    devices
  "
5cf91d6bd   wdenk   * Modify KUP4X bo...
872
873
  	"usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'
  "
842404ea0   Sergei Poselenov   Fixed clobbered o...
874
875
  	"    to memory address `addr'
  "
127e10842   Mahavir Jain   usb: write comman...
876
877
878
  	"usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'
  "
  	"    from memory address `addr'"
7d9aa8fd8   Julius Werner   usb: Add new comm...
879
  #endif /* CONFIG_USB_STORAGE */
8bde7f776   wdenk   * Code cleanup:
880
  );
7d9aa8fd8   Julius Werner   usb: Add new comm...
881
  #ifdef CONFIG_USB_STORAGE
0d4983930   wdenk   Patch by Kenneth ...
882
883
  U_BOOT_CMD(
  	usbboot,	3,	1,	do_usbboot,
2fb2604d5   Peter Tyser   Command usage cle...
884
  	"boot from USB device",
a89c33db9   Wolfgang Denk   General help mess...
885
  	"loadAddr dev:part"
8bde7f776   wdenk   * Code cleanup:
886
  );
7d9aa8fd8   Julius Werner   usb: Add new comm...
887
  #endif /* CONFIG_USB_STORAGE */