]>
Commit | Line | Data |
---|---|---|
e887afc9 WD |
1 | /* |
2 | * (C) Copyright 2001 | |
3 | * Denis Peter, MPL AG Switzerland | |
4 | * | |
5 | * Most of this source has been derived from the Linux USB | |
6 | * project. | |
7 | * | |
8 | * See file CREDITS for list of people who contributed to this | |
9 | * project. | |
10 | * | |
11 | * This program is free software; you can redistribute it and/or | |
12 | * modify it under the terms of the GNU General Public License as | |
13 | * published by the Free Software Foundation; either version 2 of | |
14 | * the License, or (at your option) any later version. | |
15 | * | |
16 | * This program is distributed in the hope that it will be useful, | |
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 | * GNU General Public License for more details. | |
20 | * | |
21 | * You should have received a copy of the GNU General Public License | |
22 | * along with this program; if not, write to the Free Software | |
23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, | |
24 | * MA 02111-1307 USA | |
25 | * | |
26 | */ | |
27 | ||
28 | #include <common.h> | |
29 | #include <command.h> | |
414eec35 | 30 | #include <asm/byteorder.h> |
b2fb47f1 | 31 | #include <asm/unaligned.h> |
735dd97b | 32 | #include <part.h> |
e887afc9 | 33 | #include <usb.h> |
e887afc9 | 34 | |
1968e615 | 35 | #ifdef CONFIG_USB_STORAGE |
d0ff51ba | 36 | static int usb_stor_curr_dev = -1; /* current device */ |
1968e615 | 37 | #endif |
89d48367 SG |
38 | #ifdef CONFIG_USB_HOST_ETHER |
39 | static int usb_ether_curr_dev = -1; /* current ethernet device */ | |
40 | #endif | |
e887afc9 | 41 | |
a2663ea4 | 42 | /* some display routines (info command) */ |
de39f8c1 | 43 | char *usb_get_class_desc(unsigned char dclass) |
e887afc9 | 44 | { |
de39f8c1 MT |
45 | switch (dclass) { |
46 | case USB_CLASS_PER_INTERFACE: | |
47 | return "See Interface"; | |
48 | case USB_CLASS_AUDIO: | |
49 | return "Audio"; | |
50 | case USB_CLASS_COMM: | |
51 | return "Communication"; | |
52 | case USB_CLASS_HID: | |
53 | return "Human Interface"; | |
54 | case USB_CLASS_PRINTER: | |
55 | return "Printer"; | |
56 | case USB_CLASS_MASS_STORAGE: | |
57 | return "Mass Storage"; | |
58 | case USB_CLASS_HUB: | |
59 | return "Hub"; | |
60 | case USB_CLASS_DATA: | |
61 | return "CDC Data"; | |
62 | case USB_CLASS_VENDOR_SPEC: | |
63 | return "Vendor specific"; | |
64 | default: | |
65 | return ""; | |
e887afc9 WD |
66 | } |
67 | } | |
68 | ||
de39f8c1 MT |
69 | void usb_display_class_sub(unsigned char dclass, unsigned char subclass, |
70 | unsigned char proto) | |
e887afc9 | 71 | { |
de39f8c1 MT |
72 | switch (dclass) { |
73 | case USB_CLASS_PER_INTERFACE: | |
74 | printf("See Interface"); | |
75 | break; | |
76 | case USB_CLASS_HID: | |
77 | printf("Human Interface, Subclass: "); | |
78 | switch (subclass) { | |
79 | case USB_SUB_HID_NONE: | |
80 | printf("None"); | |
e887afc9 | 81 | break; |
de39f8c1 MT |
82 | case USB_SUB_HID_BOOT: |
83 | printf("Boot "); | |
84 | switch (proto) { | |
85 | case USB_PROT_HID_NONE: | |
86 | printf("None"); | |
87 | break; | |
88 | case USB_PROT_HID_KEYBOARD: | |
89 | printf("Keyboard"); | |
90 | break; | |
91 | case USB_PROT_HID_MOUSE: | |
92 | printf("Mouse"); | |
93 | break; | |
94 | default: | |
95 | printf("reserved"); | |
96 | break; | |
e887afc9 WD |
97 | } |
98 | break; | |
de39f8c1 MT |
99 | default: |
100 | printf("reserved"); | |
101 | break; | |
102 | } | |
103 | break; | |
104 | case USB_CLASS_MASS_STORAGE: | |
105 | printf("Mass Storage, "); | |
106 | switch (subclass) { | |
107 | case US_SC_RBC: | |
108 | printf("RBC "); | |
109 | break; | |
110 | case US_SC_8020: | |
111 | printf("SFF-8020i (ATAPI)"); | |
112 | break; | |
113 | case US_SC_QIC: | |
114 | printf("QIC-157 (Tape)"); | |
115 | break; | |
116 | case US_SC_UFI: | |
117 | printf("UFI"); | |
118 | break; | |
119 | case US_SC_8070: | |
120 | printf("SFF-8070"); | |
121 | break; | |
122 | case US_SC_SCSI: | |
123 | printf("Transp. SCSI"); | |
124 | break; | |
125 | default: | |
126 | printf("reserved"); | |
127 | break; | |
128 | } | |
129 | printf(", "); | |
130 | switch (proto) { | |
131 | case US_PR_CB: | |
132 | printf("Command/Bulk"); | |
133 | break; | |
134 | case US_PR_CBI: | |
135 | printf("Command/Bulk/Int"); | |
136 | break; | |
137 | case US_PR_BULK: | |
138 | printf("Bulk only"); | |
e887afc9 WD |
139 | break; |
140 | default: | |
de39f8c1 MT |
141 | printf("reserved"); |
142 | break; | |
143 | } | |
144 | break; | |
145 | default: | |
146 | printf("%s", usb_get_class_desc(dclass)); | |
147 | break; | |
e887afc9 WD |
148 | } |
149 | } | |
150 | ||
de39f8c1 | 151 | void usb_display_string(struct usb_device *dev, int index) |
e887afc9 | 152 | { |
f5766139 PS |
153 | ALLOC_CACHE_ALIGN_BUFFER(char, buffer, 256); |
154 | ||
de39f8c1 MT |
155 | if (index != 0) { |
156 | if (usb_string(dev, index, &buffer[0], 256) > 0) | |
157 | printf("String: \"%s\"", buffer); | |
e887afc9 WD |
158 | } |
159 | } | |
160 | ||
161 | void usb_display_desc(struct usb_device *dev) | |
162 | { | |
de39f8c1 MT |
163 | if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) { |
164 | printf("%d: %s, USB Revision %x.%x\n", dev->devnum, | |
8f8bd565 | 165 | usb_get_class_desc(dev->config.if_desc[0].desc.bInterfaceClass), |
de39f8c1 MT |
166 | (dev->descriptor.bcdUSB>>8) & 0xff, |
167 | dev->descriptor.bcdUSB & 0xff); | |
168 | ||
169 | if (strlen(dev->mf) || strlen(dev->prod) || | |
170 | strlen(dev->serial)) | |
171 | printf(" - %s %s %s\n", dev->mf, dev->prod, | |
172 | dev->serial); | |
e887afc9 WD |
173 | if (dev->descriptor.bDeviceClass) { |
174 | printf(" - Class: "); | |
de39f8c1 MT |
175 | usb_display_class_sub(dev->descriptor.bDeviceClass, |
176 | dev->descriptor.bDeviceSubClass, | |
177 | dev->descriptor.bDeviceProtocol); | |
e887afc9 | 178 | printf("\n"); |
de39f8c1 MT |
179 | } else { |
180 | printf(" - Class: (from Interface) %s\n", | |
181 | usb_get_class_desc( | |
8f8bd565 | 182 | dev->config.if_desc[0].desc.bInterfaceClass)); |
e887afc9 | 183 | } |
de39f8c1 MT |
184 | printf(" - PacketSize: %d Configurations: %d\n", |
185 | dev->descriptor.bMaxPacketSize0, | |
186 | dev->descriptor.bNumConfigurations); | |
187 | printf(" - Vendor: 0x%04x Product 0x%04x Version %d.%d\n", | |
188 | dev->descriptor.idVendor, dev->descriptor.idProduct, | |
189 | (dev->descriptor.bcdDevice>>8) & 0xff, | |
190 | dev->descriptor.bcdDevice & 0xff); | |
e887afc9 WD |
191 | } |
192 | ||
193 | } | |
194 | ||
8f8bd565 | 195 | void usb_display_conf_desc(struct usb_configuration_descriptor *config, |
de39f8c1 | 196 | struct usb_device *dev) |
e887afc9 | 197 | { |
de39f8c1 MT |
198 | printf(" Configuration: %d\n", config->bConfigurationValue); |
199 | printf(" - Interfaces: %d %s%s%dmA\n", config->bNumInterfaces, | |
200 | (config->bmAttributes & 0x40) ? "Self Powered " : "Bus Powered ", | |
201 | (config->bmAttributes & 0x20) ? "Remote Wakeup " : "", | |
8f8bd565 | 202 | config->bMaxPower*2); |
e887afc9 WD |
203 | if (config->iConfiguration) { |
204 | printf(" - "); | |
de39f8c1 | 205 | usb_display_string(dev, config->iConfiguration); |
e887afc9 WD |
206 | printf("\n"); |
207 | } | |
208 | } | |
209 | ||
de39f8c1 MT |
210 | void usb_display_if_desc(struct usb_interface_descriptor *ifdesc, |
211 | struct usb_device *dev) | |
e887afc9 | 212 | { |
de39f8c1 MT |
213 | printf(" Interface: %d\n", ifdesc->bInterfaceNumber); |
214 | printf(" - Alternate Setting %d, Endpoints: %d\n", | |
215 | ifdesc->bAlternateSetting, ifdesc->bNumEndpoints); | |
e887afc9 | 216 | printf(" - Class "); |
de39f8c1 MT |
217 | usb_display_class_sub(ifdesc->bInterfaceClass, |
218 | ifdesc->bInterfaceSubClass, ifdesc->bInterfaceProtocol); | |
e887afc9 WD |
219 | printf("\n"); |
220 | if (ifdesc->iInterface) { | |
221 | printf(" - "); | |
de39f8c1 | 222 | usb_display_string(dev, ifdesc->iInterface); |
e887afc9 WD |
223 | printf("\n"); |
224 | } | |
225 | } | |
226 | ||
227 | void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc) | |
228 | { | |
de39f8c1 MT |
229 | printf(" - Endpoint %d %s ", epdesc->bEndpointAddress & 0xf, |
230 | (epdesc->bEndpointAddress & 0x80) ? "In" : "Out"); | |
231 | switch ((epdesc->bmAttributes & 0x03)) { | |
232 | case 0: | |
233 | printf("Control"); | |
234 | break; | |
235 | case 1: | |
236 | printf("Isochronous"); | |
237 | break; | |
238 | case 2: | |
239 | printf("Bulk"); | |
240 | break; | |
241 | case 3: | |
242 | printf("Interrupt"); | |
243 | break; | |
e887afc9 | 244 | } |
b2fb47f1 | 245 | printf(" MaxPacket %d", get_unaligned(&epdesc->wMaxPacketSize)); |
de39f8c1 MT |
246 | if ((epdesc->bmAttributes & 0x03) == 0x3) |
247 | printf(" Interval %dms", epdesc->bInterval); | |
e887afc9 WD |
248 | printf("\n"); |
249 | } | |
250 | ||
251 | /* main routine to diasplay the configs, interfaces and endpoints */ | |
252 | void usb_display_config(struct usb_device *dev) | |
253 | { | |
8f8bd565 TR |
254 | struct usb_config *config; |
255 | struct usb_interface *ifdesc; | |
e887afc9 | 256 | struct usb_endpoint_descriptor *epdesc; |
de39f8c1 MT |
257 | int i, ii; |
258 | ||
259 | config = &dev->config; | |
8f8bd565 | 260 | usb_display_conf_desc(&config->desc, dev); |
de39f8c1 MT |
261 | for (i = 0; i < config->no_of_if; i++) { |
262 | ifdesc = &config->if_desc[i]; | |
8f8bd565 | 263 | usb_display_if_desc(&ifdesc->desc, dev); |
de39f8c1 MT |
264 | for (ii = 0; ii < ifdesc->no_of_ep; ii++) { |
265 | epdesc = &ifdesc->ep_desc[ii]; | |
e887afc9 WD |
266 | usb_display_ep_desc(epdesc); |
267 | } | |
268 | } | |
269 | printf("\n"); | |
270 | } | |
271 | ||
f1c1f540 SR |
272 | static inline char *portspeed(int speed) |
273 | { | |
274 | if (speed == USB_SPEED_HIGH) | |
275 | return "480 Mb/s"; | |
276 | else if (speed == USB_SPEED_LOW) | |
277 | return "1.5 Mb/s"; | |
278 | else | |
279 | return "12 Mb/s"; | |
280 | } | |
281 | ||
e887afc9 | 282 | /* shows the device tree recursively */ |
de39f8c1 | 283 | void usb_show_tree_graph(struct usb_device *dev, char *pre) |
e887afc9 | 284 | { |
de39f8c1 | 285 | int i, index; |
10f4dd78 | 286 | int has_child, last_child; |
e887afc9 | 287 | |
de39f8c1 MT |
288 | index = strlen(pre); |
289 | printf(" %s", pre); | |
e887afc9 | 290 | /* check if the device has connected children */ |
de39f8c1 MT |
291 | has_child = 0; |
292 | for (i = 0; i < dev->maxchild; i++) { | |
293 | if (dev->children[i] != NULL) | |
294 | has_child = 1; | |
e887afc9 WD |
295 | } |
296 | /* check if we are the last one */ | |
de39f8c1 MT |
297 | last_child = 1; |
298 | if (dev->parent != NULL) { | |
299 | for (i = 0; i < dev->parent->maxchild; i++) { | |
e887afc9 | 300 | /* search for children */ |
de39f8c1 MT |
301 | if (dev->parent->children[i] == dev) { |
302 | /* found our pointer, see if we have a | |
303 | * little sister | |
304 | */ | |
de39f8c1 MT |
305 | while (i++ < dev->parent->maxchild) { |
306 | if (dev->parent->children[i] != NULL) { | |
e887afc9 | 307 | /* found a sister */ |
de39f8c1 | 308 | last_child = 0; |
e887afc9 WD |
309 | break; |
310 | } /* if */ | |
311 | } /* while */ | |
312 | } /* device found */ | |
313 | } /* for all children of the parent */ | |
314 | printf("\b+-"); | |
315 | /* correct last child */ | |
de39f8c1 MT |
316 | if (last_child) |
317 | pre[index-1] = ' '; | |
e887afc9 WD |
318 | } /* if not root hub */ |
319 | else | |
320 | printf(" "); | |
de39f8c1 MT |
321 | printf("%d ", dev->devnum); |
322 | pre[index++] = ' '; | |
323 | pre[index++] = has_child ? '|' : ' '; | |
324 | pre[index] = 0; | |
325 | printf(" %s (%s, %dmA)\n", usb_get_class_desc( | |
8f8bd565 | 326 | dev->config.if_desc[0].desc.bInterfaceClass), |
f1c1f540 | 327 | portspeed(dev->speed), |
8f8bd565 | 328 | dev->config.desc.bMaxPower * 2); |
de39f8c1 MT |
329 | if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial)) |
330 | printf(" %s %s %s %s\n", pre, dev->mf, dev->prod, dev->serial); | |
331 | printf(" %s\n", pre); | |
332 | if (dev->maxchild > 0) { | |
333 | for (i = 0; i < dev->maxchild; i++) { | |
334 | if (dev->children[i] != NULL) { | |
335 | usb_show_tree_graph(dev->children[i], pre); | |
336 | pre[index] = 0; | |
e887afc9 WD |
337 | } |
338 | } | |
339 | } | |
340 | } | |
341 | ||
342 | /* main routine for the tree command */ | |
343 | void usb_show_tree(struct usb_device *dev) | |
344 | { | |
345 | char preamble[32]; | |
346 | ||
de39f8c1 MT |
347 | memset(preamble, 0, 32); |
348 | usb_show_tree_graph(dev, &preamble[0]); | |
e887afc9 WD |
349 | } |
350 | ||
351 | ||
e887afc9 WD |
352 | /****************************************************************************** |
353 | * usb boot command intepreter. Derived from diskboot | |
354 | */ | |
355 | #ifdef CONFIG_USB_STORAGE | |
54841ab5 | 356 | int do_usbboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
e887afc9 WD |
357 | { |
358 | char *boot_device = NULL; | |
359 | char *ep; | |
67d668bf | 360 | int dev, part = 1; |
b97a2a0a | 361 | ulong addr, cnt; |
e887afc9 WD |
362 | disk_partition_t info; |
363 | image_header_t *hdr; | |
364 | block_dev_desc_t *stor_dev; | |
09475f75 | 365 | #if defined(CONFIG_FIT) |
3bab76a2 | 366 | const void *fit_hdr = NULL; |
09475f75 | 367 | #endif |
e887afc9 WD |
368 | |
369 | switch (argc) { | |
370 | case 1: | |
6d0f6bcf | 371 | addr = CONFIG_SYS_LOAD_ADDR; |
de39f8c1 | 372 | boot_device = getenv("bootdevice"); |
e887afc9 WD |
373 | break; |
374 | case 2: | |
375 | addr = simple_strtoul(argv[1], NULL, 16); | |
de39f8c1 | 376 | boot_device = getenv("bootdevice"); |
e887afc9 WD |
377 | break; |
378 | case 3: | |
379 | addr = simple_strtoul(argv[1], NULL, 16); | |
380 | boot_device = argv[2]; | |
381 | break; | |
382 | default: | |
4c12eeb8 | 383 | return CMD_RET_USAGE; |
e887afc9 WD |
384 | } |
385 | ||
386 | if (!boot_device) { | |
de39f8c1 | 387 | puts("\n** No boot device **\n"); |
e887afc9 WD |
388 | return 1; |
389 | } | |
390 | ||
391 | dev = simple_strtoul(boot_device, &ep, 16); | |
de39f8c1 | 392 | stor_dev = usb_stor_get_dev(dev); |
aaad108b | 393 | if (stor_dev == NULL || stor_dev->type == DEV_TYPE_UNKNOWN) { |
de39f8c1 | 394 | printf("\n** Device %d not available\n", dev); |
e887afc9 WD |
395 | return 1; |
396 | } | |
de39f8c1 | 397 | if (stor_dev->block_read == NULL) { |
e887afc9 WD |
398 | printf("storage device not initialized. Use usb scan\n"); |
399 | return 1; | |
400 | } | |
401 | if (*ep) { | |
402 | if (*ep != ':') { | |
de39f8c1 | 403 | puts("\n** Invalid boot device, use `dev[:part]' **\n"); |
e887afc9 WD |
404 | return 1; |
405 | } | |
406 | part = simple_strtoul(++ep, NULL, 16); | |
407 | } | |
408 | ||
de39f8c1 | 409 | if (get_partition_info(stor_dev, part, &info)) { |
e887afc9 | 410 | /* try to boot raw .... */ |
de39f8c1 MT |
411 | strncpy((char *)&info.type[0], BOOT_PART_TYPE, |
412 | sizeof(BOOT_PART_TYPE)); | |
77ddac94 | 413 | strncpy((char *)&info.name[0], "Raw", 4); |
de39f8c1 MT |
414 | info.start = 0; |
415 | info.blksz = 0x200; | |
416 | info.size = 2880; | |
e887afc9 WD |
417 | printf("error reading partinfo...try to boot raw\n"); |
418 | } | |
de39f8c1 MT |
419 | if ((strncmp((char *)info.type, BOOT_PART_TYPE, |
420 | sizeof(info.type)) != 0) && | |
421 | (strncmp((char *)info.type, BOOT_PART_COMP, | |
422 | sizeof(info.type)) != 0)) { | |
423 | printf("\n** Invalid partition type \"%.32s\"" | |
e887afc9 WD |
424 | " (expect \"" BOOT_PART_TYPE "\")\n", |
425 | info.type); | |
426 | return 1; | |
427 | } | |
de39f8c1 | 428 | printf("\nLoading from USB device %d, partition %d: " |
e887afc9 WD |
429 | "Name: %.32s Type: %.32s\n", |
430 | dev, part, info.name, info.type); | |
431 | ||
de39f8c1 | 432 | debug("First Block: %ld, # of blocks: %ld, Block Size: %ld\n", |
e887afc9 WD |
433 | info.start, info.size, info.blksz); |
434 | ||
435 | if (stor_dev->block_read(dev, info.start, 1, (ulong *)addr) != 1) { | |
de39f8c1 | 436 | printf("** Read error on %d:%d\n", dev, part); |
e887afc9 WD |
437 | return 1; |
438 | } | |
439 | ||
de39f8c1 | 440 | switch (genimg_get_format((void *)addr)) { |
d5934ad7 MB |
441 | case IMAGE_FORMAT_LEGACY: |
442 | hdr = (image_header_t *)addr; | |
e887afc9 | 443 | |
de39f8c1 MT |
444 | if (!image_check_hcrc(hdr)) { |
445 | puts("\n** Bad Header Checksum **\n"); | |
d5934ad7 MB |
446 | return 1; |
447 | } | |
e887afc9 | 448 | |
de39f8c1 | 449 | image_print_contents(hdr); |
1a344f29 | 450 | |
de39f8c1 | 451 | cnt = image_get_image_size(hdr); |
d5934ad7 MB |
452 | break; |
453 | #if defined(CONFIG_FIT) | |
454 | case IMAGE_FORMAT_FIT: | |
09475f75 | 455 | fit_hdr = (const void *)addr; |
de39f8c1 | 456 | puts("Fit image detected...\n"); |
09475f75 | 457 | |
de39f8c1 | 458 | cnt = fit_get_size(fit_hdr); |
09475f75 | 459 | break; |
d5934ad7 MB |
460 | #endif |
461 | default: | |
de39f8c1 | 462 | puts("** Unknown image type\n"); |
1a344f29 WD |
463 | return 1; |
464 | } | |
465 | ||
1a344f29 WD |
466 | cnt += info.blksz - 1; |
467 | cnt /= info.blksz; | |
468 | cnt -= 1; | |
469 | ||
de39f8c1 | 470 | if (stor_dev->block_read(dev, info.start+1, cnt, |
e887afc9 | 471 | (ulong *)(addr+info.blksz)) != cnt) { |
de39f8c1 | 472 | printf("\n** Read error on %d:%d\n", dev, part); |
e887afc9 WD |
473 | return 1; |
474 | } | |
09475f75 MB |
475 | |
476 | #if defined(CONFIG_FIT) | |
de39f8c1 MT |
477 | /* This cannot be done earlier, we need complete FIT image in RAM |
478 | * first | |
479 | */ | |
480 | if (genimg_get_format((void *)addr) == IMAGE_FORMAT_FIT) { | |
481 | if (!fit_check_format(fit_hdr)) { | |
482 | puts("** Bad FIT image format\n"); | |
3bab76a2 MB |
483 | return 1; |
484 | } | |
de39f8c1 | 485 | fit_print_contents(fit_hdr); |
3bab76a2 | 486 | } |
09475f75 MB |
487 | #endif |
488 | ||
e887afc9 WD |
489 | /* Loading ok, update default load address */ |
490 | load_addr = addr; | |
491 | ||
de39f8c1 | 492 | flush_cache(addr, (cnt+1)*info.blksz); |
e887afc9 | 493 | |
67d668bf | 494 | return bootm_maybe_autostart(cmdtp, argv[0]); |
e887afc9 WD |
495 | } |
496 | #endif /* CONFIG_USB_STORAGE */ | |
497 | ||
498 | ||
de39f8c1 | 499 | /****************************************************************************** |
e887afc9 WD |
500 | * usb command intepreter |
501 | */ | |
54841ab5 | 502 | int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
e887afc9 WD |
503 | { |
504 | ||
505 | int i; | |
506 | struct usb_device *dev = NULL; | |
e51aae38 | 507 | extern char usb_started; |
1968e615 | 508 | #ifdef CONFIG_USB_STORAGE |
e887afc9 | 509 | block_dev_desc_t *stor_dev; |
1968e615 | 510 | #endif |
e887afc9 | 511 | |
47e26b1b | 512 | if (argc < 2) |
4c12eeb8 | 513 | return CMD_RET_USAGE; |
65d34254 | 514 | |
9c998aa8 | 515 | if ((strncmp(argv[1], "reset", 5) == 0) || |
de39f8c1 | 516 | (strncmp(argv[1], "start", 5) == 0)) { |
573f14fe | 517 | bootstage_mark_name(BOOTSTAGE_ID_USB_START, "usb_start"); |
e887afc9 WD |
518 | usb_stop(); |
519 | printf("(Re)start USB...\n"); | |
9c998aa8 | 520 | i = usb_init(); |
89d48367 | 521 | if (i >= 0) { |
9c998aa8 | 522 | #ifdef CONFIG_USB_STORAGE |
89d48367 | 523 | /* try to recognize storage devices immediately */ |
53677ef1 | 524 | usb_stor_curr_dev = usb_stor_scan(1); |
9c998aa8 | 525 | #endif |
89d48367 SG |
526 | #ifdef CONFIG_USB_HOST_ETHER |
527 | /* try to recognize ethernet devices immediately */ | |
528 | usb_ether_curr_dev = usb_host_eth_scan(1); | |
529 | #endif | |
530 | } | |
e887afc9 WD |
531 | return 0; |
532 | } | |
de39f8c1 | 533 | if (strncmp(argv[1], "stop", 4) == 0) { |
e887afc9 | 534 | #ifdef CONFIG_USB_KEYBOARD |
de39f8c1 MT |
535 | if (argc == 2) { |
536 | if (usb_kbd_deregister() != 0) { | |
537 | printf("USB not stopped: usbkbd still" | |
538 | " using USB\n"); | |
e887afc9 WD |
539 | return 1; |
540 | } | |
de39f8c1 MT |
541 | } else { |
542 | /* forced stop, switch console in to serial */ | |
543 | console_assign(stdin, "serial"); | |
e887afc9 WD |
544 | usb_kbd_deregister(); |
545 | } | |
546 | #endif | |
547 | printf("stopping USB..\n"); | |
548 | usb_stop(); | |
549 | return 0; | |
550 | } | |
e51aae38 BS |
551 | if (!usb_started) { |
552 | printf("USB is stopped. Please issue 'usb start' first.\n"); | |
553 | return 1; | |
554 | } | |
de39f8c1 | 555 | if (strncmp(argv[1], "tree", 4) == 0) { |
e887afc9 WD |
556 | printf("\nDevice Tree:\n"); |
557 | usb_show_tree(usb_get_dev_index(0)); | |
558 | return 0; | |
559 | } | |
de39f8c1 | 560 | if (strncmp(argv[1], "inf", 3) == 0) { |
e887afc9 | 561 | int d; |
de39f8c1 MT |
562 | if (argc == 2) { |
563 | for (d = 0; d < USB_MAX_DEVICE; d++) { | |
564 | dev = usb_get_dev_index(d); | |
565 | if (dev == NULL) | |
e887afc9 WD |
566 | break; |
567 | usb_display_desc(dev); | |
568 | usb_display_config(dev); | |
569 | } | |
570 | return 0; | |
de39f8c1 | 571 | } else { |
e887afc9 WD |
572 | int d; |
573 | ||
de39f8c1 MT |
574 | i = simple_strtoul(argv[2], NULL, 16); |
575 | printf("config for device %d\n", i); | |
576 | for (d = 0; d < USB_MAX_DEVICE; d++) { | |
577 | dev = usb_get_dev_index(d); | |
578 | if (dev == NULL) | |
e887afc9 | 579 | break; |
de39f8c1 | 580 | if (dev->devnum == i) |
e887afc9 WD |
581 | break; |
582 | } | |
de39f8c1 | 583 | if (dev == NULL) { |
6052cbab | 584 | printf("*** No device available ***\n"); |
e887afc9 | 585 | return 0; |
de39f8c1 | 586 | } else { |
e887afc9 WD |
587 | usb_display_desc(dev); |
588 | usb_display_config(dev); | |
589 | } | |
590 | } | |
591 | return 0; | |
592 | } | |
593 | #ifdef CONFIG_USB_STORAGE | |
de39f8c1 | 594 | if (strncmp(argv[1], "stor", 4) == 0) |
f6b44e0e | 595 | return usb_stor_info(); |
9c998aa8 | 596 | |
de39f8c1 | 597 | if (strncmp(argv[1], "part", 4) == 0) { |
d4b5f3fa | 598 | int devno, ok = 0; |
de39f8c1 | 599 | if (argc == 2) { |
aaad108b | 600 | for (devno = 0; ; ++devno) { |
de39f8c1 | 601 | stor_dev = usb_stor_get_dev(devno); |
aaad108b KH |
602 | if (stor_dev == NULL) |
603 | break; | |
de39f8c1 | 604 | if (stor_dev->type != DEV_TYPE_UNKNOWN) { |
d4b5f3fa CE |
605 | ok++; |
606 | if (devno) | |
607 | printf("\n"); | |
060f2853 | 608 | debug("print_part of %x\n", devno); |
d4b5f3fa CE |
609 | print_part(stor_dev); |
610 | } | |
611 | } | |
de39f8c1 MT |
612 | } else { |
613 | devno = simple_strtoul(argv[2], NULL, 16); | |
614 | stor_dev = usb_stor_get_dev(devno); | |
aaad108b KH |
615 | if (stor_dev != NULL && |
616 | stor_dev->type != DEV_TYPE_UNKNOWN) { | |
e887afc9 | 617 | ok++; |
060f2853 | 618 | debug("print_part of %x\n", devno); |
e887afc9 WD |
619 | print_part(stor_dev); |
620 | } | |
621 | } | |
622 | if (!ok) { | |
623 | printf("\nno USB devices available\n"); | |
624 | return 1; | |
625 | } | |
626 | return 0; | |
627 | } | |
de39f8c1 MT |
628 | if (strcmp(argv[1], "read") == 0) { |
629 | if (usb_stor_curr_dev < 0) { | |
e887afc9 WD |
630 | printf("no current device selected\n"); |
631 | return 1; | |
632 | } | |
de39f8c1 | 633 | if (argc == 5) { |
e887afc9 WD |
634 | unsigned long addr = simple_strtoul(argv[2], NULL, 16); |
635 | unsigned long blk = simple_strtoul(argv[3], NULL, 16); | |
636 | unsigned long cnt = simple_strtoul(argv[4], NULL, 16); | |
637 | unsigned long n; | |
de39f8c1 MT |
638 | printf("\nUSB read: device %d block # %ld, count %ld" |
639 | " ... ", usb_stor_curr_dev, blk, cnt); | |
640 | stor_dev = usb_stor_get_dev(usb_stor_curr_dev); | |
641 | n = stor_dev->block_read(usb_stor_curr_dev, blk, cnt, | |
642 | (ulong *)addr); | |
643 | printf("%ld blocks read: %s\n", n, | |
644 | (n == cnt) ? "OK" : "ERROR"); | |
645 | if (n == cnt) | |
e887afc9 WD |
646 | return 0; |
647 | return 1; | |
648 | } | |
649 | } | |
127e1084 MJ |
650 | if (strcmp(argv[1], "write") == 0) { |
651 | if (usb_stor_curr_dev < 0) { | |
652 | printf("no current device selected\n"); | |
653 | return 1; | |
654 | } | |
655 | if (argc == 5) { | |
656 | unsigned long addr = simple_strtoul(argv[2], NULL, 16); | |
657 | unsigned long blk = simple_strtoul(argv[3], NULL, 16); | |
658 | unsigned long cnt = simple_strtoul(argv[4], NULL, 16); | |
659 | unsigned long n; | |
660 | printf("\nUSB write: device %d block # %ld, count %ld" | |
661 | " ... ", usb_stor_curr_dev, blk, cnt); | |
662 | stor_dev = usb_stor_get_dev(usb_stor_curr_dev); | |
663 | n = stor_dev->block_write(usb_stor_curr_dev, blk, cnt, | |
664 | (ulong *)addr); | |
665 | printf("%ld blocks write: %s\n", n, | |
666 | (n == cnt) ? "OK" : "ERROR"); | |
667 | if (n == cnt) | |
668 | return 0; | |
669 | return 1; | |
670 | } | |
671 | } | |
9c998aa8 WD |
672 | if (strncmp(argv[1], "dev", 3) == 0) { |
673 | if (argc == 3) { | |
e887afc9 | 674 | int dev = (int)simple_strtoul(argv[2], NULL, 10); |
de39f8c1 | 675 | printf("\nUSB device %d: ", dev); |
aaad108b KH |
676 | stor_dev = usb_stor_get_dev(dev); |
677 | if (stor_dev == NULL) { | |
e887afc9 WD |
678 | printf("unknown device\n"); |
679 | return 1; | |
680 | } | |
de39f8c1 | 681 | printf("\n Device %d: ", dev); |
e887afc9 | 682 | dev_print(stor_dev); |
de39f8c1 | 683 | if (stor_dev->type == DEV_TYPE_UNKNOWN) |
e887afc9 | 684 | return 1; |
e887afc9 WD |
685 | usb_stor_curr_dev = dev; |
686 | printf("... is now current device\n"); | |
687 | return 0; | |
de39f8c1 MT |
688 | } else { |
689 | printf("\nUSB device %d: ", usb_stor_curr_dev); | |
690 | stor_dev = usb_stor_get_dev(usb_stor_curr_dev); | |
e887afc9 | 691 | dev_print(stor_dev); |
de39f8c1 | 692 | if (stor_dev->type == DEV_TYPE_UNKNOWN) |
e887afc9 | 693 | return 1; |
e887afc9 WD |
694 | return 0; |
695 | } | |
696 | return 0; | |
697 | } | |
698 | #endif /* CONFIG_USB_STORAGE */ | |
4c12eeb8 | 699 | return CMD_RET_USAGE; |
e887afc9 WD |
700 | } |
701 | ||
8bde7f77 | 702 | #ifdef CONFIG_USB_STORAGE |
0d498393 WD |
703 | U_BOOT_CMD( |
704 | usb, 5, 1, do_usb, | |
2fb2604d | 705 | "USB sub-system", |
1af9f963 VPP |
706 | "start - start (scan) USB controller\n" |
707 | "usb reset - reset (rescan) USB controller\n" | |
b3813a22 VPP |
708 | "usb stop [f] - stop USB [f]=force stop\n" |
709 | "usb tree - show USB device tree\n" | |
5cf91d6b | 710 | "usb info [dev] - show available USB devices\n" |
b3813a22 | 711 | "usb storage - show details of USB storage devices\n" |
342717f7 | 712 | "usb dev [dev] - show or set current USB storage device\n" |
de39f8c1 MT |
713 | "usb part [dev] - print partition table of one or all USB storage" |
714 | " devices\n" | |
5cf91d6b | 715 | "usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n" |
842404ea | 716 | " to memory address `addr'\n" |
127e1084 MJ |
717 | "usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'\n" |
718 | " from memory address `addr'" | |
8bde7f77 WD |
719 | ); |
720 | ||
721 | ||
0d498393 WD |
722 | U_BOOT_CMD( |
723 | usbboot, 3, 1, do_usbboot, | |
2fb2604d | 724 | "boot from USB device", |
a89c33db | 725 | "loadAddr dev:part" |
8bde7f77 WD |
726 | ); |
727 | ||
728 | #else | |
0d498393 WD |
729 | U_BOOT_CMD( |
730 | usb, 5, 1, do_usb, | |
2fb2604d | 731 | "USB sub-system", |
1af9f963 VPP |
732 | "start - start (scan) USB controller\n" |
733 | "usb reset - reset (rescan) USB controller\n" | |
b3813a22 VPP |
734 | "usb tree - show USB device tree\n" |
735 | "usb info [dev] - show available USB devices" | |
8bde7f77 WD |
736 | ); |
737 | #endif |