blob: 8b19240a840bc99b8a2d0568cf6e95558be5f683 [file] [log] [blame]
wdenke887afc2002-08-27 09:44:07 +00001/*
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>
wdenk414eec32005-04-02 22:37:54 +000030#include <asm/byteorder.h>
Grant Likely735dd972007-02-20 09:04:34 +010031#include <part.h>
wdenke887afc2002-08-27 09:44:07 +000032#include <usb.h>
wdenke887afc2002-08-27 09:44:07 +000033
wdenk1968e612005-02-24 23:23:29 +000034#ifdef CONFIG_USB_STORAGE
Wolfgang Denkd0ff51b2008-07-14 15:19:07 +020035static int usb_stor_curr_dev = -1; /* current device */
wdenk1968e612005-02-24 23:23:29 +000036#endif
wdenke887afc2002-08-27 09:44:07 +000037
wdenka2663ea2003-12-07 18:32:37 +000038/* some display routines (info command) */
Michael Trimarchide39f8c2008-11-26 17:41:34 +010039char *usb_get_class_desc(unsigned char dclass)
wdenke887afc2002-08-27 09:44:07 +000040{
Michael Trimarchide39f8c2008-11-26 17:41:34 +010041 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 "";
wdenke887afc2002-08-27 09:44:07 +000062 }
63}
64
Michael Trimarchide39f8c2008-11-26 17:41:34 +010065void usb_display_class_sub(unsigned char dclass, unsigned char subclass,
66 unsigned char proto)
wdenke887afc2002-08-27 09:44:07 +000067{
Michael Trimarchide39f8c2008-11-26 17:41:34 +010068 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");
wdenke887afc2002-08-27 09:44:07 +000077 break;
Michael Trimarchide39f8c2008-11-26 17:41:34 +010078 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;
wdenke887afc2002-08-27 09:44:07 +000093 }
94 break;
95 default:
Michael Trimarchide39f8c2008-11-26 17:41:34 +010096 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");
135 break;
136 default:
137 printf("reserved");
138 break;
139 }
140 break;
141 default:
142 printf("%s", usb_get_class_desc(dclass));
143 break;
wdenke887afc2002-08-27 09:44:07 +0000144 }
145}
146
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100147void usb_display_string(struct usb_device *dev, int index)
wdenke887afc2002-08-27 09:44:07 +0000148{
149 char buffer[256];
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100150 if (index != 0) {
151 if (usb_string(dev, index, &buffer[0], 256) > 0)
152 printf("String: \"%s\"", buffer);
wdenke887afc2002-08-27 09:44:07 +0000153 }
154}
155
156void usb_display_desc(struct usb_device *dev)
157{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100158 if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) {
159 printf("%d: %s, USB Revision %x.%x\n", dev->devnum,
160 usb_get_class_desc(dev->config.if_desc[0].bInterfaceClass),
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);
wdenke887afc2002-08-27 09:44:07 +0000168 if (dev->descriptor.bDeviceClass) {
169 printf(" - Class: ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100170 usb_display_class_sub(dev->descriptor.bDeviceClass,
171 dev->descriptor.bDeviceSubClass,
172 dev->descriptor.bDeviceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000173 printf("\n");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100174 } else {
175 printf(" - Class: (from Interface) %s\n",
176 usb_get_class_desc(
177 dev->config.if_desc[0].bInterfaceClass));
wdenke887afc2002-08-27 09:44:07 +0000178 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100179 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);
wdenke887afc2002-08-27 09:44:07 +0000186 }
187
188}
189
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100190void usb_display_conf_desc(struct usb_config_descriptor *config,
191 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000192{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100193 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 " : "",
197 config->MaxPower*2);
wdenke887afc2002-08-27 09:44:07 +0000198 if (config->iConfiguration) {
199 printf(" - ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100200 usb_display_string(dev, config->iConfiguration);
wdenke887afc2002-08-27 09:44:07 +0000201 printf("\n");
202 }
203}
204
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100205void usb_display_if_desc(struct usb_interface_descriptor *ifdesc,
206 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000207{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100208 printf(" Interface: %d\n", ifdesc->bInterfaceNumber);
209 printf(" - Alternate Setting %d, Endpoints: %d\n",
210 ifdesc->bAlternateSetting, ifdesc->bNumEndpoints);
wdenke887afc2002-08-27 09:44:07 +0000211 printf(" - Class ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100212 usb_display_class_sub(ifdesc->bInterfaceClass,
213 ifdesc->bInterfaceSubClass, ifdesc->bInterfaceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000214 printf("\n");
215 if (ifdesc->iInterface) {
216 printf(" - ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100217 usb_display_string(dev, ifdesc->iInterface);
wdenke887afc2002-08-27 09:44:07 +0000218 printf("\n");
219 }
220}
221
222void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc)
223{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100224 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;
wdenke887afc2002-08-27 09:44:07 +0000239 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100240 printf(" MaxPacket %d", epdesc->wMaxPacketSize);
241 if ((epdesc->bmAttributes & 0x03) == 0x3)
242 printf(" Interval %dms", epdesc->bInterval);
wdenke887afc2002-08-27 09:44:07 +0000243 printf("\n");
244}
245
246/* main routine to diasplay the configs, interfaces and endpoints */
247void usb_display_config(struct usb_device *dev)
248{
249 struct usb_config_descriptor *config;
250 struct usb_interface_descriptor *ifdesc;
251 struct usb_endpoint_descriptor *epdesc;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100252 int i, ii;
wdenke887afc2002-08-27 09:44:07 +0000253
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100254 config = &dev->config;
255 usb_display_conf_desc(config, dev);
256 for (i = 0; i < config->no_of_if; i++) {
257 ifdesc = &config->if_desc[i];
258 usb_display_if_desc(ifdesc, dev);
259 for (ii = 0; ii < ifdesc->no_of_ep; ii++) {
260 epdesc = &ifdesc->ep_desc[ii];
wdenke887afc2002-08-27 09:44:07 +0000261 usb_display_ep_desc(epdesc);
262 }
263 }
264 printf("\n");
265}
266
267/* shows the device tree recursively */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100268void usb_show_tree_graph(struct usb_device *dev, char *pre)
wdenke887afc2002-08-27 09:44:07 +0000269{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100270 int i, index;
271 int has_child, last_child, port;
wdenke887afc2002-08-27 09:44:07 +0000272
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100273 index = strlen(pre);
274 printf(" %s", pre);
wdenke887afc2002-08-27 09:44:07 +0000275 /* check if the device has connected children */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100276 has_child = 0;
277 for (i = 0; i < dev->maxchild; i++) {
278 if (dev->children[i] != NULL)
279 has_child = 1;
wdenke887afc2002-08-27 09:44:07 +0000280 }
281 /* check if we are the last one */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100282 last_child = 1;
283 if (dev->parent != NULL) {
284 for (i = 0; i < dev->parent->maxchild; i++) {
wdenke887afc2002-08-27 09:44:07 +0000285 /* search for children */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100286 if (dev->parent->children[i] == dev) {
287 /* found our pointer, see if we have a
288 * little sister
289 */
290 port = i;
291 while (i++ < dev->parent->maxchild) {
292 if (dev->parent->children[i] != NULL) {
wdenke887afc2002-08-27 09:44:07 +0000293 /* found a sister */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100294 last_child = 0;
wdenke887afc2002-08-27 09:44:07 +0000295 break;
296 } /* if */
297 } /* while */
298 } /* device found */
299 } /* for all children of the parent */
300 printf("\b+-");
301 /* correct last child */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100302 if (last_child)
303 pre[index-1] = ' ';
wdenke887afc2002-08-27 09:44:07 +0000304 } /* if not root hub */
305 else
306 printf(" ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100307 printf("%d ", dev->devnum);
308 pre[index++] = ' ';
309 pre[index++] = has_child ? '|' : ' ';
310 pre[index] = 0;
311 printf(" %s (%s, %dmA)\n", usb_get_class_desc(
312 dev->config.if_desc[0].bInterfaceClass),
313 dev->slow ? "1.5MBit/s" : "12MBit/s",
314 dev->config.MaxPower * 2);
315 if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial))
316 printf(" %s %s %s %s\n", pre, dev->mf, dev->prod, dev->serial);
317 printf(" %s\n", pre);
318 if (dev->maxchild > 0) {
319 for (i = 0; i < dev->maxchild; i++) {
320 if (dev->children[i] != NULL) {
321 usb_show_tree_graph(dev->children[i], pre);
322 pre[index] = 0;
wdenke887afc2002-08-27 09:44:07 +0000323 }
324 }
325 }
326}
327
328/* main routine for the tree command */
329void usb_show_tree(struct usb_device *dev)
330{
331 char preamble[32];
332
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100333 memset(preamble, 0, 32);
334 usb_show_tree_graph(dev, &preamble[0]);
wdenke887afc2002-08-27 09:44:07 +0000335}
336
337
wdenke887afc2002-08-27 09:44:07 +0000338/******************************************************************************
339 * usb boot command intepreter. Derived from diskboot
340 */
341#ifdef CONFIG_USB_STORAGE
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100342int do_usbboot(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenke887afc2002-08-27 09:44:07 +0000343{
344 char *boot_device = NULL;
345 char *ep;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100346 int dev, part = 1, rcode;
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100347 ulong addr, cnt;
wdenke887afc2002-08-27 09:44:07 +0000348 disk_partition_t info;
349 image_header_t *hdr;
350 block_dev_desc_t *stor_dev;
Marian Balakowicz09475f72008-03-12 10:33:01 +0100351#if defined(CONFIG_FIT)
Marian Balakowicz3bab76a2008-06-06 23:07:40 +0200352 const void *fit_hdr = NULL;
Marian Balakowicz09475f72008-03-12 10:33:01 +0100353#endif
wdenke887afc2002-08-27 09:44:07 +0000354
355 switch (argc) {
356 case 1:
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200357 addr = CONFIG_SYS_LOAD_ADDR;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100358 boot_device = getenv("bootdevice");
wdenke887afc2002-08-27 09:44:07 +0000359 break;
360 case 2:
361 addr = simple_strtoul(argv[1], NULL, 16);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100362 boot_device = getenv("bootdevice");
wdenke887afc2002-08-27 09:44:07 +0000363 break;
364 case 3:
365 addr = simple_strtoul(argv[1], NULL, 16);
366 boot_device = argv[2];
367 break;
368 default:
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100369 printf("Usage:\n%s\n", cmdtp->usage);
wdenke887afc2002-08-27 09:44:07 +0000370 return 1;
371 }
372
373 if (!boot_device) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100374 puts("\n** No boot device **\n");
wdenke887afc2002-08-27 09:44:07 +0000375 return 1;
376 }
377
378 dev = simple_strtoul(boot_device, &ep, 16);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100379 stor_dev = usb_stor_get_dev(dev);
wdenke887afc2002-08-27 09:44:07 +0000380 if (stor_dev->type == DEV_TYPE_UNKNOWN) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100381 printf("\n** Device %d not available\n", dev);
wdenke887afc2002-08-27 09:44:07 +0000382 return 1;
383 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100384 if (stor_dev->block_read == NULL) {
wdenke887afc2002-08-27 09:44:07 +0000385 printf("storage device not initialized. Use usb scan\n");
386 return 1;
387 }
388 if (*ep) {
389 if (*ep != ':') {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100390 puts("\n** Invalid boot device, use `dev[:part]' **\n");
wdenke887afc2002-08-27 09:44:07 +0000391 return 1;
392 }
393 part = simple_strtoul(++ep, NULL, 16);
394 }
395
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100396 if (get_partition_info(stor_dev, part, &info)) {
wdenke887afc2002-08-27 09:44:07 +0000397 /* try to boot raw .... */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100398 strncpy((char *)&info.type[0], BOOT_PART_TYPE,
399 sizeof(BOOT_PART_TYPE));
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200400 strncpy((char *)&info.name[0], "Raw", 4);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100401 info.start = 0;
402 info.blksz = 0x200;
403 info.size = 2880;
wdenke887afc2002-08-27 09:44:07 +0000404 printf("error reading partinfo...try to boot raw\n");
405 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100406 if ((strncmp((char *)info.type, BOOT_PART_TYPE,
407 sizeof(info.type)) != 0) &&
408 (strncmp((char *)info.type, BOOT_PART_COMP,
409 sizeof(info.type)) != 0)) {
410 printf("\n** Invalid partition type \"%.32s\""
wdenke887afc2002-08-27 09:44:07 +0000411 " (expect \"" BOOT_PART_TYPE "\")\n",
412 info.type);
413 return 1;
414 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100415 printf("\nLoading from USB device %d, partition %d: "
wdenke887afc2002-08-27 09:44:07 +0000416 "Name: %.32s Type: %.32s\n",
417 dev, part, info.name, info.type);
418
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100419 debug("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
wdenke887afc2002-08-27 09:44:07 +0000420 info.start, info.size, info.blksz);
421
422 if (stor_dev->block_read(dev, info.start, 1, (ulong *)addr) != 1) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100423 printf("** Read error on %d:%d\n", dev, part);
wdenke887afc2002-08-27 09:44:07 +0000424 return 1;
425 }
426
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100427 switch (genimg_get_format((void *)addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100428 case IMAGE_FORMAT_LEGACY:
429 hdr = (image_header_t *)addr;
wdenke887afc2002-08-27 09:44:07 +0000430
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100431 if (!image_check_hcrc(hdr)) {
432 puts("\n** Bad Header Checksum **\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100433 return 1;
434 }
435
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100436 image_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100437
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100438 cnt = image_get_image_size(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100439 break;
440#if defined(CONFIG_FIT)
441 case IMAGE_FORMAT_FIT:
Marian Balakowicz09475f72008-03-12 10:33:01 +0100442 fit_hdr = (const void *)addr;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100443 puts("Fit image detected...\n");
Marian Balakowicz09475f72008-03-12 10:33:01 +0100444
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100445 cnt = fit_get_size(fit_hdr);
Marian Balakowicz09475f72008-03-12 10:33:01 +0100446 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100447#endif
448 default:
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100449 puts("** Unknown image type\n");
wdenke887afc2002-08-27 09:44:07 +0000450 return 1;
451 }
452
wdenk1a344f22005-02-03 23:00:49 +0000453 cnt += info.blksz - 1;
454 cnt /= info.blksz;
455 cnt -= 1;
456
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100457 if (stor_dev->block_read(dev, info.start+1, cnt,
wdenke887afc2002-08-27 09:44:07 +0000458 (ulong *)(addr+info.blksz)) != cnt) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100459 printf("\n** Read error on %d:%d\n", dev, part);
wdenke887afc2002-08-27 09:44:07 +0000460 return 1;
461 }
Marian Balakowicz09475f72008-03-12 10:33:01 +0100462
463#if defined(CONFIG_FIT)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100464 /* This cannot be done earlier, we need complete FIT image in RAM
465 * first
466 */
467 if (genimg_get_format((void *)addr) == IMAGE_FORMAT_FIT) {
468 if (!fit_check_format(fit_hdr)) {
469 puts("** Bad FIT image format\n");
Marian Balakowicz3bab76a2008-06-06 23:07:40 +0200470 return 1;
471 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100472 fit_print_contents(fit_hdr);
Marian Balakowicz3bab76a2008-06-06 23:07:40 +0200473 }
Marian Balakowicz09475f72008-03-12 10:33:01 +0100474#endif
475
wdenke887afc2002-08-27 09:44:07 +0000476 /* Loading ok, update default load address */
477 load_addr = addr;
478
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100479 flush_cache(addr, (cnt+1)*info.blksz);
wdenke887afc2002-08-27 09:44:07 +0000480
481 /* Check if we should attempt an auto-start */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100482 if (((ep = getenv("autostart")) != NULL) && (strcmp(ep, "yes") == 0)) {
wdenke887afc2002-08-27 09:44:07 +0000483 char *local_args[2];
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100484 extern int do_bootm(cmd_tbl_t *, int, int, char *[]);
wdenke887afc2002-08-27 09:44:07 +0000485 local_args[0] = argv[0];
486 local_args[1] = NULL;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100487 printf("Automatic boot of image at addr 0x%08lX ...\n", addr);
488 rcode = do_bootm(cmdtp, 0, 1, local_args);
wdenke887afc2002-08-27 09:44:07 +0000489 return rcode;
490 }
491 return 0;
492}
493#endif /* CONFIG_USB_STORAGE */
494
495
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100496/******************************************************************************
wdenke887afc2002-08-27 09:44:07 +0000497 * usb command intepreter
498 */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100499int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenke887afc2002-08-27 09:44:07 +0000500{
501
502 int i;
503 struct usb_device *dev = NULL;
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200504 extern char usb_started;
wdenk1968e612005-02-24 23:23:29 +0000505#ifdef CONFIG_USB_STORAGE
wdenke887afc2002-08-27 09:44:07 +0000506 block_dev_desc_t *stor_dev;
wdenk1968e612005-02-24 23:23:29 +0000507#endif
wdenke887afc2002-08-27 09:44:07 +0000508
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200509 if ((strncmp(argv[1], "reset", 5) == 0) ||
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100510 (strncmp(argv[1], "start", 5) == 0)) {
wdenke887afc2002-08-27 09:44:07 +0000511 usb_stop();
512 printf("(Re)start USB...\n");
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200513 i = usb_init();
514#ifdef CONFIG_USB_STORAGE
515 /* try to recognize storage devices immediately */
Wolfgang Denk095b8a32005-08-02 17:06:17 +0200516 if (i >= 0)
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200517 usb_stor_curr_dev = usb_stor_scan(1);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200518#endif
wdenke887afc2002-08-27 09:44:07 +0000519 return 0;
520 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100521 if (strncmp(argv[1], "stop", 4) == 0) {
wdenke887afc2002-08-27 09:44:07 +0000522#ifdef CONFIG_USB_KEYBOARD
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100523 if (argc == 2) {
524 if (usb_kbd_deregister() != 0) {
525 printf("USB not stopped: usbkbd still"
526 " using USB\n");
wdenke887afc2002-08-27 09:44:07 +0000527 return 1;
528 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100529 } else {
530 /* forced stop, switch console in to serial */
531 console_assign(stdin, "serial");
wdenke887afc2002-08-27 09:44:07 +0000532 usb_kbd_deregister();
533 }
534#endif
535 printf("stopping USB..\n");
536 usb_stop();
537 return 0;
538 }
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200539 if (!usb_started) {
540 printf("USB is stopped. Please issue 'usb start' first.\n");
541 return 1;
542 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100543 if (strncmp(argv[1], "tree", 4) == 0) {
wdenke887afc2002-08-27 09:44:07 +0000544 printf("\nDevice Tree:\n");
545 usb_show_tree(usb_get_dev_index(0));
546 return 0;
547 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100548 if (strncmp(argv[1], "inf", 3) == 0) {
wdenke887afc2002-08-27 09:44:07 +0000549 int d;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100550 if (argc == 2) {
551 for (d = 0; d < USB_MAX_DEVICE; d++) {
552 dev = usb_get_dev_index(d);
553 if (dev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000554 break;
555 usb_display_desc(dev);
556 usb_display_config(dev);
557 }
558 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100559 } else {
wdenke887afc2002-08-27 09:44:07 +0000560 int d;
561
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100562 i = simple_strtoul(argv[2], NULL, 16);
563 printf("config for device %d\n", i);
564 for (d = 0; d < USB_MAX_DEVICE; d++) {
565 dev = usb_get_dev_index(d);
566 if (dev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000567 break;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100568 if (dev->devnum == i)
wdenke887afc2002-08-27 09:44:07 +0000569 break;
570 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100571 if (dev == NULL) {
wdenke887afc2002-08-27 09:44:07 +0000572 printf("*** NO Device avaiable ***\n");
573 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100574 } else {
wdenke887afc2002-08-27 09:44:07 +0000575 usb_display_desc(dev);
576 usb_display_config(dev);
577 }
578 }
579 return 0;
580 }
581#ifdef CONFIG_USB_STORAGE
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100582 if (strncmp(argv[1], "stor", 4) == 0)
Aras Vaichasf6b44e02008-03-25 12:09:07 +1100583 return usb_stor_info();
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200584
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100585 if (strncmp(argv[1], "part", 4) == 0) {
Christian Eggersd4b5f3f2008-06-27 19:46:51 +0200586 int devno, ok = 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100587 if (argc == 2) {
588 for (devno = 0; devno < USB_MAX_STOR_DEV; ++devno) {
589 stor_dev = usb_stor_get_dev(devno);
590 if (stor_dev->type != DEV_TYPE_UNKNOWN) {
Christian Eggersd4b5f3f2008-06-27 19:46:51 +0200591 ok++;
592 if (devno)
593 printf("\n");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100594 printf("print_part of %x\n", devno);
Christian Eggersd4b5f3f2008-06-27 19:46:51 +0200595 print_part(stor_dev);
596 }
597 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100598 } else {
599 devno = simple_strtoul(argv[2], NULL, 16);
600 stor_dev = usb_stor_get_dev(devno);
601 if (stor_dev->type != DEV_TYPE_UNKNOWN) {
wdenke887afc2002-08-27 09:44:07 +0000602 ok++;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100603 printf("print_part of %x\n", devno);
wdenke887afc2002-08-27 09:44:07 +0000604 print_part(stor_dev);
605 }
606 }
607 if (!ok) {
608 printf("\nno USB devices available\n");
609 return 1;
610 }
611 return 0;
612 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100613 if (strcmp(argv[1], "read") == 0) {
614 if (usb_stor_curr_dev < 0) {
wdenke887afc2002-08-27 09:44:07 +0000615 printf("no current device selected\n");
616 return 1;
617 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100618 if (argc == 5) {
wdenke887afc2002-08-27 09:44:07 +0000619 unsigned long addr = simple_strtoul(argv[2], NULL, 16);
620 unsigned long blk = simple_strtoul(argv[3], NULL, 16);
621 unsigned long cnt = simple_strtoul(argv[4], NULL, 16);
622 unsigned long n;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100623 printf("\nUSB read: device %d block # %ld, count %ld"
624 " ... ", usb_stor_curr_dev, blk, cnt);
625 stor_dev = usb_stor_get_dev(usb_stor_curr_dev);
626 n = stor_dev->block_read(usb_stor_curr_dev, blk, cnt,
627 (ulong *)addr);
628 printf("%ld blocks read: %s\n", n,
629 (n == cnt) ? "OK" : "ERROR");
630 if (n == cnt)
wdenke887afc2002-08-27 09:44:07 +0000631 return 0;
632 return 1;
633 }
634 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200635 if (strncmp(argv[1], "dev", 3) == 0) {
636 if (argc == 3) {
wdenke887afc2002-08-27 09:44:07 +0000637 int dev = (int)simple_strtoul(argv[2], NULL, 10);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100638 printf("\nUSB device %d: ", dev);
wdenke887afc2002-08-27 09:44:07 +0000639 if (dev >= USB_MAX_STOR_DEV) {
640 printf("unknown device\n");
641 return 1;
642 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100643 printf("\n Device %d: ", dev);
644 stor_dev = usb_stor_get_dev(dev);
wdenke887afc2002-08-27 09:44:07 +0000645 dev_print(stor_dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100646 if (stor_dev->type == DEV_TYPE_UNKNOWN)
wdenke887afc2002-08-27 09:44:07 +0000647 return 1;
wdenke887afc2002-08-27 09:44:07 +0000648 usb_stor_curr_dev = dev;
649 printf("... is now current device\n");
650 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100651 } else {
652 printf("\nUSB device %d: ", usb_stor_curr_dev);
653 stor_dev = usb_stor_get_dev(usb_stor_curr_dev);
wdenke887afc2002-08-27 09:44:07 +0000654 dev_print(stor_dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100655 if (stor_dev->type == DEV_TYPE_UNKNOWN)
wdenke887afc2002-08-27 09:44:07 +0000656 return 1;
wdenke887afc2002-08-27 09:44:07 +0000657 return 0;
658 }
659 return 0;
660 }
661#endif /* CONFIG_USB_STORAGE */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100662 printf("Usage:\n%s\n", cmdtp->usage);
wdenke887afc2002-08-27 09:44:07 +0000663 return 1;
664}
665
wdenk8bde7f72003-06-27 21:31:46 +0000666#ifdef CONFIG_USB_STORAGE
wdenk0d498392003-07-01 21:06:45 +0000667U_BOOT_CMD(
668 usb, 5, 1, do_usb,
wdenk8bde7f72003-06-27 21:31:46 +0000669 "usb - USB sub-system\n",
670 "reset - reset (rescan) USB controller\n"
wdenk5cf91d62004-04-23 20:32:05 +0000671 "usb stop [f] - stop USB [f]=force stop\n"
672 "usb tree - show USB device tree\n"
673 "usb info [dev] - show available USB devices\n"
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200674 "usb storage - show details of USB storage devices\n"
wdenk342717f2005-06-27 13:30:03 +0000675 "usb dev [dev] - show or set current USB storage device\n"
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100676 "usb part [dev] - print partition table of one or all USB storage"
677 " devices\n"
wdenk5cf91d62004-04-23 20:32:05 +0000678 "usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
679 " to memory address `addr'\n"
wdenk8bde7f72003-06-27 21:31:46 +0000680);
681
682
wdenk0d498392003-07-01 21:06:45 +0000683U_BOOT_CMD(
684 usbboot, 3, 1, do_usbboot,
wdenk8bde7f72003-06-27 21:31:46 +0000685 "usbboot - boot from USB device\n",
686 "loadAddr dev:part\n"
687);
688
689#else
wdenk0d498392003-07-01 21:06:45 +0000690U_BOOT_CMD(
691 usb, 5, 1, do_usb,
wdenk8bde7f72003-06-27 21:31:46 +0000692 "usb - USB sub-system\n",
693 "reset - reset (rescan) USB controller\n"
694 "usb tree - show USB device tree\n"
695 "usb info [dev] - show available USB devices\n"
696);
697#endif