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