Blame view

cmd/usb.c 17.7 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
  {
78abf14fc   Bin Meng   usb: cmd: Print a...
149
  	uint packet_size = dev->descriptor.bMaxPacketSize0;
de39f8c19   Michael Trimarchi   USB style patch, ...
150
151
152
  	if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) {
  		printf("%d: %s,  USB Revision %x.%x
  ", dev->devnum,
8f8bd565f   Tom Rix   USB Consolidate d...
153
  		usb_get_class_desc(dev->config.if_desc[0].desc.bInterfaceClass),
de39f8c19   Michael Trimarchi   USB style patch, ...
154
155
156
157
158
159
160
161
  				   (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
162
163
  		if (dev->descriptor.bDeviceClass) {
  			printf(" - Class: ");
de39f8c19   Michael Trimarchi   USB style patch, ...
164
165
166
  			usb_display_class_sub(dev->descriptor.bDeviceClass,
  					      dev->descriptor.bDeviceSubClass,
  					      dev->descriptor.bDeviceProtocol);
e887afc9d   wdenk   Initial revision
167
168
  			printf("
  ");
de39f8c19   Michael Trimarchi   USB style patch, ...
169
170
171
172
  		} else {
  			printf(" - Class: (from Interface) %s
  ",
  			       usb_get_class_desc(
8f8bd565f   Tom Rix   USB Consolidate d...
173
  				dev->config.if_desc[0].desc.bInterfaceClass));
e887afc9d   wdenk   Initial revision
174
  		}
78abf14fc   Bin Meng   usb: cmd: Print a...
175
176
  		if (dev->descriptor.bcdUSB >= cpu_to_le16(0x0300))
  			packet_size = 1 << packet_size;
de39f8c19   Michael Trimarchi   USB style patch, ...
177
178
  		printf(" - PacketSize: %d  Configurations: %d
  ",
78abf14fc   Bin Meng   usb: cmd: Print a...
179
  			packet_size, dev->descriptor.bNumConfigurations);
de39f8c19   Michael Trimarchi   USB style patch, ...
180
181
182
183
184
  		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
185
186
187
  	}
  
  }
c60795f41   Ilya Yanok   usb: use linux/us...
188
  static void usb_display_conf_desc(struct usb_config_descriptor *config,
088f1b199   Kim Phillips   common/cmd_*.c: s...
189
  				  struct usb_device *dev)
e887afc9d   wdenk   Initial revision
190
  {
de39f8c19   Michael Trimarchi   USB style patch, ...
191
192
193
194
195
196
  	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...
197
  		config->bMaxPower*2);
e887afc9d   wdenk   Initial revision
198
199
  	if (config->iConfiguration) {
  		printf("   - ");
de39f8c19   Michael Trimarchi   USB style patch, ...
200
  		usb_display_string(dev, config->iConfiguration);
e887afc9d   wdenk   Initial revision
201
202
203
204
  		printf("
  ");
  	}
  }
088f1b199   Kim Phillips   common/cmd_*.c: s...
205
206
  static void usb_display_if_desc(struct usb_interface_descriptor *ifdesc,
  				struct usb_device *dev)
e887afc9d   wdenk   Initial revision
207
  {
de39f8c19   Michael Trimarchi   USB style patch, ...
208
209
210
211
212
  	printf("     Interface: %d
  ", ifdesc->bInterfaceNumber);
  	printf("     - Alternate Setting %d, Endpoints: %d
  ",
  		ifdesc->bAlternateSetting, ifdesc->bNumEndpoints);
e887afc9d   wdenk   Initial revision
213
  	printf("     - Class ");
de39f8c19   Michael Trimarchi   USB style patch, ...
214
215
  	usb_display_class_sub(ifdesc->bInterfaceClass,
  		ifdesc->bInterfaceSubClass, ifdesc->bInterfaceProtocol);
e887afc9d   wdenk   Initial revision
216
217
218
219
  	printf("
  ");
  	if (ifdesc->iInterface) {
  		printf("     - ");
de39f8c19   Michael Trimarchi   USB style patch, ...
220
  		usb_display_string(dev, ifdesc->iInterface);
e887afc9d   wdenk   Initial revision
221
222
223
224
  		printf("
  ");
  	}
  }
088f1b199   Kim Phillips   common/cmd_*.c: s...
225
  static void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc)
e887afc9d   wdenk   Initial revision
226
  {
de39f8c19   Michael Trimarchi   USB style patch, ...
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
  	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
242
  	}
b2fb47f18   Tom Rini   USB: Use (get|put...
243
  	printf(" MaxPacket %d", get_unaligned(&epdesc->wMaxPacketSize));
de39f8c19   Michael Trimarchi   USB style patch, ...
244
245
  	if ((epdesc->bmAttributes & 0x03) == 0x3)
  		printf(" Interval %dms", epdesc->bInterval);
e887afc9d   wdenk   Initial revision
246
247
248
249
250
  	printf("
  ");
  }
  
  /* main routine to diasplay the configs, interfaces and endpoints */
088f1b199   Kim Phillips   common/cmd_*.c: s...
251
  static void usb_display_config(struct usb_device *dev)
e887afc9d   wdenk   Initial revision
252
  {
8f8bd565f   Tom Rix   USB Consolidate d...
253
254
  	struct usb_config *config;
  	struct usb_interface *ifdesc;
e887afc9d   wdenk   Initial revision
255
  	struct usb_endpoint_descriptor *epdesc;
de39f8c19   Michael Trimarchi   USB style patch, ...
256
257
258
  	int i, ii;
  
  	config = &dev->config;
8f8bd565f   Tom Rix   USB Consolidate d...
259
  	usb_display_conf_desc(&config->desc, dev);
de39f8c19   Michael Trimarchi   USB style patch, ...
260
261
  	for (i = 0; i < config->no_of_if; i++) {
  		ifdesc = &config->if_desc[i];
8f8bd565f   Tom Rix   USB Consolidate d...
262
  		usb_display_if_desc(&ifdesc->desc, dev);
de39f8c19   Michael Trimarchi   USB style patch, ...
263
264
  		for (ii = 0; ii < ifdesc->no_of_ep; ii++) {
  			epdesc = &ifdesc->ep_desc[ii];
e887afc9d   wdenk   Initial revision
265
266
267
268
269
270
  			usb_display_ep_desc(epdesc);
  		}
  	}
  	printf("
  ");
  }
6a1b206dc   Simon Glass   dm: usb: Convert ...
271
272
273
274
275
  /*
   * 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...
276
277
  static struct usb_device *usb_find_device(int devnum)
  {
6a1b206dc   Simon Glass   dm: usb: Convert ...
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
  #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...
295
  		udev = dev_get_parent_priv(hub);
6a1b206dc   Simon Glass   dm: usb: Convert ...
296
297
298
299
300
301
302
303
  		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...
304
  			udev = dev_get_parent_priv(dev);
6a1b206dc   Simon Glass   dm: usb: Convert ...
305
306
307
308
309
  			if (udev->devnum == devnum)
  				return udev;
  		}
  	}
  #else
cad4291cd   Simon Glass   dm: usb: Adjust u...
310
  	struct usb_device *udev;
7d9aa8fd8   Julius Werner   usb: Add new comm...
311
312
313
  	int d;
  
  	for (d = 0; d < USB_MAX_DEVICE; d++) {
cad4291cd   Simon Glass   dm: usb: Adjust u...
314
315
  		udev = usb_get_dev_index(d);
  		if (udev == NULL)
7d9aa8fd8   Julius Werner   usb: Add new comm...
316
  			return NULL;
cad4291cd   Simon Glass   dm: usb: Adjust u...
317
318
  		if (udev->devnum == devnum)
  			return udev;
7d9aa8fd8   Julius Werner   usb: Add new comm...
319
  	}
6a1b206dc   Simon Glass   dm: usb: Convert ...
320
  #endif
7d9aa8fd8   Julius Werner   usb: Add new comm...
321
322
323
  
  	return NULL;
  }
f1c1f5402   Stefan Roese   USB: Add high-spe...
324
325
  static inline char *portspeed(int speed)
  {
6497c6670   Vivek Gautam   USB: SS: Add supp...
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
  	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...
344
  }
e887afc9d   wdenk   Initial revision
345
  /* shows the device tree recursively */
088f1b199   Kim Phillips   common/cmd_*.c: s...
346
  static void usb_show_tree_graph(struct usb_device *dev, char *pre)
e887afc9d   wdenk   Initial revision
347
  {
6a1b206dc   Simon Glass   dm: usb: Convert ...
348
  	int index;
10f4dd784   Wolfgang Denk   common/cmd_usb.c:...
349
  	int has_child, last_child;
e887afc9d   wdenk   Initial revision
350

de39f8c19   Michael Trimarchi   USB style patch, ...
351
352
  	index = strlen(pre);
  	printf(" %s", pre);
6a1b206dc   Simon Glass   dm: usb: Convert ...
353
354
  #ifdef CONFIG_DM_USB
  	has_child = device_has_active_children(dev->dev);
abd7cedb1   Suneel Garapati   cmd: usb: ignore ...
355
356
357
358
359
360
361
362
363
364
  	if (device_get_uclass_id(dev->dev) == UCLASS_MASS_STORAGE) {
  		struct udevice *child;
  
  		for (device_find_first_child(dev->dev, &child);
  		     child;
  		     device_find_next_child(&child)) {
  			if (device_get_uclass_id(child) == UCLASS_BLK)
  				has_child = 0;
  		}
  	}
6a1b206dc   Simon Glass   dm: usb: Convert ...
365
  #else
e887afc9d   wdenk   Initial revision
366
  	/* check if the device has connected children */
6a1b206dc   Simon Glass   dm: usb: Convert ...
367
  	int i;
de39f8c19   Michael Trimarchi   USB style patch, ...
368
369
370
371
  	has_child = 0;
  	for (i = 0; i < dev->maxchild; i++) {
  		if (dev->children[i] != NULL)
  			has_child = 1;
e887afc9d   wdenk   Initial revision
372
  	}
6a1b206dc   Simon Glass   dm: usb: Convert ...
373
  #endif
e887afc9d   wdenk   Initial revision
374
  	/* check if we are the last one */
6a1b206dc   Simon Glass   dm: usb: Convert ...
375
  #ifdef CONFIG_DM_USB
c27b32905   Hans de Goede   dm: usb: Fix "usb...
376
377
378
  	/* 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 ...
379
  #else
c27b32905   Hans de Goede   dm: usb: Fix "usb...
380
381
  	if (dev->parent != NULL) { /* not root? */
  		last_child = 1;
de39f8c19   Michael Trimarchi   USB style patch, ...
382
  		for (i = 0; i < dev->parent->maxchild; i++) {
e887afc9d   wdenk   Initial revision
383
  			/* search for children */
de39f8c19   Michael Trimarchi   USB style patch, ...
384
385
386
387
  			if (dev->parent->children[i] == dev) {
  				/* found our pointer, see if we have a
  				 * little sister
  				 */
de39f8c19   Michael Trimarchi   USB style patch, ...
388
389
  				while (i++ < dev->parent->maxchild) {
  					if (dev->parent->children[i] != NULL) {
e887afc9d   wdenk   Initial revision
390
  						/* found a sister */
de39f8c19   Michael Trimarchi   USB style patch, ...
391
  						last_child = 0;
e887afc9d   wdenk   Initial revision
392
393
394
395
396
  						break;
  					} /* if */
  				} /* while */
  			} /* device found */
  		} /* for all children of the parent */
6a1b206dc   Simon Glass   dm: usb: Convert ...
397
  #endif
e887afc9d   wdenk   Initial revision
398
399
  		printf("\b+-");
  		/* correct last child */
cad4291cd   Simon Glass   dm: usb: Adjust u...
400
  		if (last_child && index)
de39f8c19   Michael Trimarchi   USB style patch, ...
401
  			pre[index-1] = ' ';
e887afc9d   wdenk   Initial revision
402
403
404
  	} /* if not root hub */
  	else
  		printf(" ");
de39f8c19   Michael Trimarchi   USB style patch, ...
405
406
407
408
409
410
  	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...
411
  					dev->config.if_desc[0].desc.bInterfaceClass),
f1c1f5402   Stefan Roese   USB: Add high-spe...
412
  					portspeed(dev->speed),
8f8bd565f   Tom Rix   USB Consolidate d...
413
  					dev->config.desc.bMaxPower * 2);
de39f8c19   Michael Trimarchi   USB style patch, ...
414
415
416
417
418
  	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 ...
419
420
421
422
423
424
425
426
427
428
  #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...
429
  		udev = dev_get_parent_priv(child);
6a1b206dc   Simon Glass   dm: usb: Convert ...
430

abd7cedb1   Suneel Garapati   cmd: usb: ignore ...
431
432
433
434
435
436
  		/*
  		 * Ignore emulators and block child devices, we only want
  		 * real devices
  		 */
  		if ((device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
  		    (device_get_uclass_id(child) != UCLASS_BLK)) {
6a1b206dc   Simon Glass   dm: usb: Convert ...
437
438
439
440
441
  			usb_show_tree_graph(udev, pre);
  			pre[index] = 0;
  		}
  	}
  #else
de39f8c19   Michael Trimarchi   USB style patch, ...
442
443
444
445
446
  	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
447
448
449
  			}
  		}
  	}
6a1b206dc   Simon Glass   dm: usb: Convert ...
450
  #endif
e887afc9d   wdenk   Initial revision
451
452
453
  }
  
  /* main routine for the tree command */
45bfa47e1   Simon Glass   usb: Refactor USB...
454
  static void usb_show_subtree(struct usb_device *dev)
e887afc9d   wdenk   Initial revision
455
456
  {
  	char preamble[32];
cad4291cd   Simon Glass   dm: usb: Adjust u...
457
  	memset(preamble, '\0', sizeof(preamble));
de39f8c19   Michael Trimarchi   USB style patch, ...
458
  	usb_show_tree_graph(dev, &preamble[0]);
e887afc9d   wdenk   Initial revision
459
  }
45bfa47e1   Simon Glass   usb: Refactor USB...
460
  #ifdef CONFIG_DM_USB
2138fd6d5   Hans de Goede   usb: dm: Add a us...
461
462
463
464
  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...
465
  	struct udevice *bus;
192eab935   Hans de Goede   dm: usb: Do not r...
466
  	for (uclass_find_first_device(UCLASS_USB, &bus);
45bfa47e1   Simon Glass   usb: Refactor USB...
467
  		bus;
192eab935   Hans de Goede   dm: usb: Do not r...
468
  		uclass_find_next_device(&bus)) {
45bfa47e1   Simon Glass   usb: Refactor USB...
469
470
  		struct usb_device *udev;
  		struct udevice *dev;
192eab935   Hans de Goede   dm: usb: Do not r...
471
472
  		if (!device_active(bus))
  			continue;
45bfa47e1   Simon Glass   usb: Refactor USB...
473
474
475
  		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...
476
  			func(udev);
45bfa47e1   Simon Glass   usb: Refactor USB...
477
478
  		}
  	}
2138fd6d5   Hans de Goede   usb: dm: Add a us...
479
480
481
482
483
484
485
  }
  #endif
  
  void usb_show_tree(void)
  {
  #ifdef CONFIG_DM_USB
  	usb_for_each_root_dev(usb_show_subtree);
45bfa47e1   Simon Glass   usb: Refactor USB...
486
487
488
489
490
491
492
493
494
495
496
497
498
  #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...
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
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
  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
565

e887afc9d   wdenk   Initial revision
566
567
568
569
  /******************************************************************************
   * usb boot command intepreter. Derived from diskboot
   */
  #ifdef CONFIG_USB_STORAGE
088f1b199   Kim Phillips   common/cmd_*.c: s...
570
  static int do_usbboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
e887afc9d   wdenk   Initial revision
571
  {
7405a1331   Rob Herring   combine block dev...
572
  	return common_diskboot(cmdtp, "usb", argc, argv);
e887afc9d   wdenk   Initial revision
573
574
  }
  #endif /* CONFIG_USB_STORAGE */
8a8a2257e   Hans de Goede   usb: kbd: Allow "...
575
  static int do_usb_stop_keyboard(int force)
6e78c74f6   Hans de Goede   usb: kbd: On a "u...
576
  {
9a80e7143   Hans de Goede   usb: kbd: Do not ...
577
  #if !defined CONFIG_DM_USB && defined CONFIG_USB_KEYBOARD
8a8a2257e   Hans de Goede   usb: kbd: Allow "...
578
  	if (usb_kbd_deregister(force) != 0) {
6e78c74f6   Hans de Goede   usb: kbd: On a "u...
579
580
581
582
583
584
585
  		printf("USB not stopped: usbkbd still using USB
  ");
  		return 1;
  	}
  #endif
  	return 0;
  }
e887afc9d   wdenk   Initial revision
586

b50722640   Hans de Goede   USB: make "usb st...
587
588
589
590
591
592
  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 ...
593
  	/* Driver model will probe the devices as they are found */
34ab37eef   Simon Glass   dm: usb: Add supp...
594
  # ifdef CONFIG_USB_STORAGE
b50722640   Hans de Goede   USB: make "usb st...
595
596
  	/* try to recognize storage devices immediately */
  	usb_stor_curr_dev = usb_stor_scan(1);
34ab37eef   Simon Glass   dm: usb: Add supp...
597
  # endif
b984700ca   Michal Simek   usb: storage: Sho...
598
  #ifndef CONFIG_DM_USB
34ab37eef   Simon Glass   dm: usb: Add supp...
599
600
601
602
  # ifdef CONFIG_USB_KEYBOARD
  	drv_usb_kbd_init();
  # endif
  #endif /* !CONFIG_DM_USB */
b50722640   Hans de Goede   USB: make "usb st...
603
  #ifdef CONFIG_USB_HOST_ETHER
69559093f   Simon Glass   dm: usb: Avoid us...
604
  # ifdef CONFIG_DM_ETH
389f1856b   Marcel Ziswiler   dm: usb: fix USB ...
605
606
607
608
  #  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...
609
610
  	/* try to recognize ethernet devices immediately */
  	usb_ether_curr_dev = usb_host_eth_scan(1);
389f1856b   Marcel Ziswiler   dm: usb: fix USB ...
611
  # endif
69559093f   Simon Glass   dm: usb: Avoid us...
612
  #endif
b50722640   Hans de Goede   USB: make "usb st...
613
  }
6a1b206dc   Simon Glass   dm: usb: Convert ...
614
  #ifdef CONFIG_DM_USB
e6e188f56   Hans de Goede   usb: dm: Make "us...
615
  static void usb_show_info(struct usb_device *udev)
6a1b206dc   Simon Glass   dm: usb: Convert ...
616
617
  {
  	struct udevice *child;
6a1b206dc   Simon Glass   dm: usb: Convert ...
618

6a1b206dc   Simon Glass   dm: usb: Convert ...
619
620
  	usb_display_desc(udev);
  	usb_display_config(udev);
e6e188f56   Hans de Goede   usb: dm: Make "us...
621
  	for (device_find_first_child(udev->dev, &child);
6a1b206dc   Simon Glass   dm: usb: Convert ...
622
623
  	     child;
  	     device_find_next_child(&child)) {
abd7cedb1   Suneel Garapati   cmd: usb: ignore ...
624
625
626
  		if (device_active(child) &&
  		    (device_get_uclass_id(child) != UCLASS_USB_EMUL) &&
  		    (device_get_uclass_id(child) != UCLASS_BLK)) {
e6e188f56   Hans de Goede   usb: dm: Make "us...
627
628
  			udev = dev_get_parent_priv(child);
  			usb_show_info(udev);
6a1b206dc   Simon Glass   dm: usb: Convert ...
629
630
  		}
  	}
6a1b206dc   Simon Glass   dm: usb: Convert ...
631
632
  }
  #endif
de39f8c19   Michael Trimarchi   USB style patch, ...
633
  /******************************************************************************
e887afc9d   wdenk   Initial revision
634
635
   * usb command intepreter
   */
088f1b199   Kim Phillips   common/cmd_*.c: s...
636
  static int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
e887afc9d   wdenk   Initial revision
637
  {
cad4291cd   Simon Glass   dm: usb: Adjust u...
638
  	struct usb_device *udev = NULL;
e887afc9d   wdenk   Initial revision
639
  	int i;
e51aae382   Bartlomiej Sieka   Prevent USB comma...
640
  	extern char usb_started;
e887afc9d   wdenk   Initial revision
641

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

b50722640   Hans de Goede   USB: make "usb st...
645
646
647
648
649
650
651
652
653
654
655
656
  	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 "...
657
  		if (do_usb_stop_keyboard(1) != 0)
6e78c74f6   Hans de Goede   usb: kbd: On a "u...
658
  			return 1;
e887afc9d   wdenk   Initial revision
659
  		usb_stop();
b50722640   Hans de Goede   USB: make "usb st...
660
  		do_usb_start();
e887afc9d   wdenk   Initial revision
661
662
  		return 0;
  	}
de39f8c19   Michael Trimarchi   USB style patch, ...
663
  	if (strncmp(argv[1], "stop", 4) == 0) {
6e78c74f6   Hans de Goede   usb: kbd: On a "u...
664
  		if (argc != 2)
de39f8c19   Michael Trimarchi   USB style patch, ...
665
  			console_assign(stdin, "serial");
8a8a2257e   Hans de Goede   usb: kbd: Allow "...
666
  		if (do_usb_stop_keyboard(0) != 0)
6e78c74f6   Hans de Goede   usb: kbd: On a "u...
667
  			return 1;
e887afc9d   wdenk   Initial revision
668
669
670
671
672
  		printf("stopping USB..
  ");
  		usb_stop();
  		return 0;
  	}
e51aae382   Bartlomiej Sieka   Prevent USB comma...
673
674
675
676
677
  	if (!usb_started) {
  		printf("USB is stopped. Please issue 'usb start' first.
  ");
  		return 1;
  	}
de39f8c19   Michael Trimarchi   USB style patch, ...
678
  	if (strncmp(argv[1], "tree", 4) == 0) {
93c2582fe   Lucas Stach   usb: add support ...
679
680
  		puts("USB device tree:
  ");
45bfa47e1   Simon Glass   usb: Refactor USB...
681
  		usb_show_tree();
e887afc9d   wdenk   Initial revision
682
683
  		return 0;
  	}
de39f8c19   Michael Trimarchi   USB style patch, ...
684
  	if (strncmp(argv[1], "inf", 3) == 0) {
de39f8c19   Michael Trimarchi   USB style patch, ...
685
  		if (argc == 2) {
6a1b206dc   Simon Glass   dm: usb: Convert ...
686
  #ifdef CONFIG_DM_USB
e6e188f56   Hans de Goede   usb: dm: Make "us...
687
  			usb_for_each_root_dev(usb_show_info);
6a1b206dc   Simon Glass   dm: usb: Convert ...
688
689
  #else
  			int d;
de39f8c19   Michael Trimarchi   USB style patch, ...
690
  			for (d = 0; d < USB_MAX_DEVICE; d++) {
cad4291cd   Simon Glass   dm: usb: Adjust u...
691
692
  				udev = usb_get_dev_index(d);
  				if (udev == NULL)
e887afc9d   wdenk   Initial revision
693
  					break;
cad4291cd   Simon Glass   dm: usb: Adjust u...
694
695
  				usb_display_desc(udev);
  				usb_display_config(udev);
e887afc9d   wdenk   Initial revision
696
  			}
6a1b206dc   Simon Glass   dm: usb: Convert ...
697
  #endif
e887afc9d   wdenk   Initial revision
698
  			return 0;
de39f8c19   Michael Trimarchi   USB style patch, ...
699
  		} else {
6a1b206dc   Simon Glass   dm: usb: Convert ...
700
701
702
703
704
  			/*
  			 * 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...
705
  			i = simple_strtoul(argv[2], NULL, 10);
de39f8c19   Michael Trimarchi   USB style patch, ...
706
707
  			printf("config for device %d
  ", i);
cad4291cd   Simon Glass   dm: usb: Adjust u...
708
709
  			udev = usb_find_device(i);
  			if (udev == NULL) {
6052cbab4   Loïc Minier   Fix misc spelling...
710
711
  				printf("*** No device available ***
  ");
e887afc9d   wdenk   Initial revision
712
  				return 0;
de39f8c19   Michael Trimarchi   USB style patch, ...
713
  			} else {
cad4291cd   Simon Glass   dm: usb: Adjust u...
714
715
  				usb_display_desc(udev);
  				usb_display_config(udev);
e887afc9d   wdenk   Initial revision
716
717
718
719
  			}
  		}
  		return 0;
  	}
7d9aa8fd8   Julius Werner   usb: Add new comm...
720
721
722
723
  	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...
724
725
  		udev = usb_find_device(i);
  		if (udev == NULL) {
7d9aa8fd8   Julius Werner   usb: Add new comm...
726
727
728
729
730
  			printf("Device %d does not exist.
  ", i);
  			return 1;
  		}
  		i = simple_strtoul(argv[3], NULL, 10);
cad4291cd   Simon Glass   dm: usb: Adjust u...
731
  		return usb_test(udev, i, argv[4]);
7d9aa8fd8   Julius Werner   usb: Add new comm...
732
  	}
e887afc9d   wdenk   Initial revision
733
  #ifdef CONFIG_USB_STORAGE
de39f8c19   Michael Trimarchi   USB style patch, ...
734
  	if (strncmp(argv[1], "stor", 4) == 0)
f6b44e0e4   Aras Vaichas   USB Storage, add ...
735
  		return usb_stor_info();
9c998aa83   Wolfgang Denk   Fix low-level OHC...
736

c16ad675d   Simon Glass   dm: usb: Adjust t...
737
738
  	return blk_common_cmd(argc, argv, IF_TYPE_USB, &usb_stor_curr_dev);
  #else
4c12eeb8b   Simon Glass   Convert cmd_usage...
739
  	return CMD_RET_USAGE;
c16ad675d   Simon Glass   dm: usb: Adjust t...
740
  #endif /* CONFIG_USB_STORAGE */
e887afc9d   wdenk   Initial revision
741
  }
0d4983930   wdenk   Patch by Kenneth ...
742
743
  U_BOOT_CMD(
  	usb,	5,	1,	do_usb,
2fb2604d5   Peter Tyser   Command usage cle...
744
  	"USB sub-system",
1af9f9633   Veli-Pekka Peltola   usb: add help for...
745
746
747
748
  	"start - start (scan) USB controller
  "
  	"usb reset - reset (rescan) USB controller
  "
b3813a221   Veli-Pekka Peltola   cosmetic: remove ...
749
750
751
752
  	"usb stop [f] - stop USB [f]=force stop
  "
  	"usb tree - show USB device tree
  "
5cf91d6bd   wdenk   * Modify KUP4X bo...
753
754
  	"usb info [dev] - show available USB devices
  "
7d9aa8fd8   Julius Werner   usb: Add new comm...
755
756
757
758
759
760
761
  	"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 ...
762
763
  	"usb storage - show details of USB storage devices
  "
342717f72   wdenk   * Fix baudrate ca...
764
765
  	"usb dev [dev] - show or set current USB storage device
  "
de39f8c19   Michael Trimarchi   USB style patch, ...
766
  	"usb part [dev] - print partition table of one or all USB storage"
7d9aa8fd8   Julius Werner   usb: Add new comm...
767
768
  	"    devices
  "
5cf91d6bd   wdenk   * Modify KUP4X bo...
769
770
  	"usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'
  "
842404ea0   Sergei Poselenov   Fixed clobbered o...
771
772
  	"    to memory address `addr'
  "
127e10842   Mahavir Jain   usb: write comman...
773
774
775
  	"usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'
  "
  	"    from memory address `addr'"
7d9aa8fd8   Julius Werner   usb: Add new comm...
776
  #endif /* CONFIG_USB_STORAGE */
8bde7f776   wdenk   * Code cleanup:
777
  );
7d9aa8fd8   Julius Werner   usb: Add new comm...
778
  #ifdef CONFIG_USB_STORAGE
0d4983930   wdenk   Patch by Kenneth ...
779
780
  U_BOOT_CMD(
  	usbboot,	3,	1,	do_usbboot,
2fb2604d5   Peter Tyser   Command usage cle...
781
  	"boot from USB device",
a89c33db9   Wolfgang Denk   General help mess...
782
  	"loadAddr dev:part"
8bde7f776   wdenk   * Code cleanup:
783
  );
7d9aa8fd8   Julius Werner   usb: Add new comm...
784
  #endif /* CONFIG_USB_STORAGE */