blob: 8c87265668d73715bc1a8f872cc2af8514ac2111 [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
Simon Glass89d48362011-02-16 11:14:33 -080037#ifdef CONFIG_USB_HOST_ETHER
38static int usb_ether_curr_dev = -1; /* current ethernet device */
39#endif
wdenke887afc2002-08-27 09:44:07 +000040
wdenka2663ea2003-12-07 18:32:37 +000041/* some display routines (info command) */
Michael Trimarchide39f8c2008-11-26 17:41:34 +010042char *usb_get_class_desc(unsigned char dclass)
wdenke887afc2002-08-27 09:44:07 +000043{
Michael Trimarchide39f8c2008-11-26 17:41:34 +010044 switch (dclass) {
45 case USB_CLASS_PER_INTERFACE:
46 return "See Interface";
47 case USB_CLASS_AUDIO:
48 return "Audio";
49 case USB_CLASS_COMM:
50 return "Communication";
51 case USB_CLASS_HID:
52 return "Human Interface";
53 case USB_CLASS_PRINTER:
54 return "Printer";
55 case USB_CLASS_MASS_STORAGE:
56 return "Mass Storage";
57 case USB_CLASS_HUB:
58 return "Hub";
59 case USB_CLASS_DATA:
60 return "CDC Data";
61 case USB_CLASS_VENDOR_SPEC:
62 return "Vendor specific";
63 default:
64 return "";
wdenke887afc2002-08-27 09:44:07 +000065 }
66}
67
Michael Trimarchide39f8c2008-11-26 17:41:34 +010068void usb_display_class_sub(unsigned char dclass, unsigned char subclass,
69 unsigned char proto)
wdenke887afc2002-08-27 09:44:07 +000070{
Michael Trimarchide39f8c2008-11-26 17:41:34 +010071 switch (dclass) {
72 case USB_CLASS_PER_INTERFACE:
73 printf("See Interface");
74 break;
75 case USB_CLASS_HID:
76 printf("Human Interface, Subclass: ");
77 switch (subclass) {
78 case USB_SUB_HID_NONE:
79 printf("None");
wdenke887afc2002-08-27 09:44:07 +000080 break;
Michael Trimarchide39f8c2008-11-26 17:41:34 +010081 case USB_SUB_HID_BOOT:
82 printf("Boot ");
83 switch (proto) {
84 case USB_PROT_HID_NONE:
85 printf("None");
86 break;
87 case USB_PROT_HID_KEYBOARD:
88 printf("Keyboard");
89 break;
90 case USB_PROT_HID_MOUSE:
91 printf("Mouse");
92 break;
93 default:
94 printf("reserved");
95 break;
wdenke887afc2002-08-27 09:44:07 +000096 }
97 break;
98 default:
Michael Trimarchide39f8c2008-11-26 17:41:34 +010099 printf("reserved");
100 break;
101 }
102 break;
103 case USB_CLASS_MASS_STORAGE:
104 printf("Mass Storage, ");
105 switch (subclass) {
106 case US_SC_RBC:
107 printf("RBC ");
108 break;
109 case US_SC_8020:
110 printf("SFF-8020i (ATAPI)");
111 break;
112 case US_SC_QIC:
113 printf("QIC-157 (Tape)");
114 break;
115 case US_SC_UFI:
116 printf("UFI");
117 break;
118 case US_SC_8070:
119 printf("SFF-8070");
120 break;
121 case US_SC_SCSI:
122 printf("Transp. SCSI");
123 break;
124 default:
125 printf("reserved");
126 break;
127 }
128 printf(", ");
129 switch (proto) {
130 case US_PR_CB:
131 printf("Command/Bulk");
132 break;
133 case US_PR_CBI:
134 printf("Command/Bulk/Int");
135 break;
136 case US_PR_BULK:
137 printf("Bulk only");
138 break;
139 default:
140 printf("reserved");
141 break;
142 }
143 break;
144 default:
145 printf("%s", usb_get_class_desc(dclass));
146 break;
wdenke887afc2002-08-27 09:44:07 +0000147 }
148}
149
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100150void usb_display_string(struct usb_device *dev, int index)
wdenke887afc2002-08-27 09:44:07 +0000151{
152 char buffer[256];
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100153 if (index != 0) {
154 if (usb_string(dev, index, &buffer[0], 256) > 0)
155 printf("String: \"%s\"", buffer);
wdenke887afc2002-08-27 09:44:07 +0000156 }
157}
158
159void usb_display_desc(struct usb_device *dev)
160{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100161 if (dev->descriptor.bDescriptorType == USB_DT_DEVICE) {
162 printf("%d: %s, USB Revision %x.%x\n", dev->devnum,
Tom Rix8f8bd562009-10-31 12:37:38 -0500163 usb_get_class_desc(dev->config.if_desc[0].desc.bInterfaceClass),
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100164 (dev->descriptor.bcdUSB>>8) & 0xff,
165 dev->descriptor.bcdUSB & 0xff);
166
167 if (strlen(dev->mf) || strlen(dev->prod) ||
168 strlen(dev->serial))
169 printf(" - %s %s %s\n", dev->mf, dev->prod,
170 dev->serial);
wdenke887afc2002-08-27 09:44:07 +0000171 if (dev->descriptor.bDeviceClass) {
172 printf(" - Class: ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100173 usb_display_class_sub(dev->descriptor.bDeviceClass,
174 dev->descriptor.bDeviceSubClass,
175 dev->descriptor.bDeviceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000176 printf("\n");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100177 } else {
178 printf(" - Class: (from Interface) %s\n",
179 usb_get_class_desc(
Tom Rix8f8bd562009-10-31 12:37:38 -0500180 dev->config.if_desc[0].desc.bInterfaceClass));
wdenke887afc2002-08-27 09:44:07 +0000181 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100182 printf(" - PacketSize: %d Configurations: %d\n",
183 dev->descriptor.bMaxPacketSize0,
184 dev->descriptor.bNumConfigurations);
185 printf(" - Vendor: 0x%04x Product 0x%04x Version %d.%d\n",
186 dev->descriptor.idVendor, dev->descriptor.idProduct,
187 (dev->descriptor.bcdDevice>>8) & 0xff,
188 dev->descriptor.bcdDevice & 0xff);
wdenke887afc2002-08-27 09:44:07 +0000189 }
190
191}
192
Tom Rix8f8bd562009-10-31 12:37:38 -0500193void usb_display_conf_desc(struct usb_configuration_descriptor *config,
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100194 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000195{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100196 printf(" Configuration: %d\n", config->bConfigurationValue);
197 printf(" - Interfaces: %d %s%s%dmA\n", config->bNumInterfaces,
198 (config->bmAttributes & 0x40) ? "Self Powered " : "Bus Powered ",
199 (config->bmAttributes & 0x20) ? "Remote Wakeup " : "",
Tom Rix8f8bd562009-10-31 12:37:38 -0500200 config->bMaxPower*2);
wdenke887afc2002-08-27 09:44:07 +0000201 if (config->iConfiguration) {
202 printf(" - ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100203 usb_display_string(dev, config->iConfiguration);
wdenke887afc2002-08-27 09:44:07 +0000204 printf("\n");
205 }
206}
207
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100208void usb_display_if_desc(struct usb_interface_descriptor *ifdesc,
209 struct usb_device *dev)
wdenke887afc2002-08-27 09:44:07 +0000210{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100211 printf(" Interface: %d\n", ifdesc->bInterfaceNumber);
212 printf(" - Alternate Setting %d, Endpoints: %d\n",
213 ifdesc->bAlternateSetting, ifdesc->bNumEndpoints);
wdenke887afc2002-08-27 09:44:07 +0000214 printf(" - Class ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100215 usb_display_class_sub(ifdesc->bInterfaceClass,
216 ifdesc->bInterfaceSubClass, ifdesc->bInterfaceProtocol);
wdenke887afc2002-08-27 09:44:07 +0000217 printf("\n");
218 if (ifdesc->iInterface) {
219 printf(" - ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100220 usb_display_string(dev, ifdesc->iInterface);
wdenke887afc2002-08-27 09:44:07 +0000221 printf("\n");
222 }
223}
224
225void usb_display_ep_desc(struct usb_endpoint_descriptor *epdesc)
226{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100227 printf(" - Endpoint %d %s ", epdesc->bEndpointAddress & 0xf,
228 (epdesc->bEndpointAddress & 0x80) ? "In" : "Out");
229 switch ((epdesc->bmAttributes & 0x03)) {
230 case 0:
231 printf("Control");
232 break;
233 case 1:
234 printf("Isochronous");
235 break;
236 case 2:
237 printf("Bulk");
238 break;
239 case 3:
240 printf("Interrupt");
241 break;
wdenke887afc2002-08-27 09:44:07 +0000242 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100243 printf(" MaxPacket %d", epdesc->wMaxPacketSize);
244 if ((epdesc->bmAttributes & 0x03) == 0x3)
245 printf(" Interval %dms", epdesc->bInterval);
wdenke887afc2002-08-27 09:44:07 +0000246 printf("\n");
247}
248
249/* main routine to diasplay the configs, interfaces and endpoints */
250void usb_display_config(struct usb_device *dev)
251{
Tom Rix8f8bd562009-10-31 12:37:38 -0500252 struct usb_config *config;
253 struct usb_interface *ifdesc;
wdenke887afc2002-08-27 09:44:07 +0000254 struct usb_endpoint_descriptor *epdesc;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100255 int i, ii;
wdenke887afc2002-08-27 09:44:07 +0000256
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100257 config = &dev->config;
Tom Rix8f8bd562009-10-31 12:37:38 -0500258 usb_display_conf_desc(&config->desc, dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100259 for (i = 0; i < config->no_of_if; i++) {
260 ifdesc = &config->if_desc[i];
Tom Rix8f8bd562009-10-31 12:37:38 -0500261 usb_display_if_desc(&ifdesc->desc, dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100262 for (ii = 0; ii < ifdesc->no_of_ep; ii++) {
263 epdesc = &ifdesc->ep_desc[ii];
wdenke887afc2002-08-27 09:44:07 +0000264 usb_display_ep_desc(epdesc);
265 }
266 }
267 printf("\n");
268}
269
Stefan Roesef1c1f542009-01-22 10:11:21 +0100270static inline char *portspeed(int speed)
271{
272 if (speed == USB_SPEED_HIGH)
273 return "480 Mb/s";
274 else if (speed == USB_SPEED_LOW)
275 return "1.5 Mb/s";
276 else
277 return "12 Mb/s";
278}
279
wdenke887afc2002-08-27 09:44:07 +0000280/* shows the device tree recursively */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100281void usb_show_tree_graph(struct usb_device *dev, char *pre)
wdenke887afc2002-08-27 09:44:07 +0000282{
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100283 int i, index;
Wolfgang Denk10f4dd72011-10-05 23:01:59 +0200284 int has_child, last_child;
wdenke887afc2002-08-27 09:44:07 +0000285
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100286 index = strlen(pre);
287 printf(" %s", pre);
wdenke887afc2002-08-27 09:44:07 +0000288 /* check if the device has connected children */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100289 has_child = 0;
290 for (i = 0; i < dev->maxchild; i++) {
291 if (dev->children[i] != NULL)
292 has_child = 1;
wdenke887afc2002-08-27 09:44:07 +0000293 }
294 /* check if we are the last one */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100295 last_child = 1;
296 if (dev->parent != NULL) {
297 for (i = 0; i < dev->parent->maxchild; i++) {
wdenke887afc2002-08-27 09:44:07 +0000298 /* search for children */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100299 if (dev->parent->children[i] == dev) {
300 /* found our pointer, see if we have a
301 * little sister
302 */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100303 while (i++ < dev->parent->maxchild) {
304 if (dev->parent->children[i] != NULL) {
wdenke887afc2002-08-27 09:44:07 +0000305 /* found a sister */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100306 last_child = 0;
wdenke887afc2002-08-27 09:44:07 +0000307 break;
308 } /* if */
309 } /* while */
310 } /* device found */
311 } /* for all children of the parent */
312 printf("\b+-");
313 /* correct last child */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100314 if (last_child)
315 pre[index-1] = ' ';
wdenke887afc2002-08-27 09:44:07 +0000316 } /* if not root hub */
317 else
318 printf(" ");
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100319 printf("%d ", dev->devnum);
320 pre[index++] = ' ';
321 pre[index++] = has_child ? '|' : ' ';
322 pre[index] = 0;
323 printf(" %s (%s, %dmA)\n", usb_get_class_desc(
Tom Rix8f8bd562009-10-31 12:37:38 -0500324 dev->config.if_desc[0].desc.bInterfaceClass),
Stefan Roesef1c1f542009-01-22 10:11:21 +0100325 portspeed(dev->speed),
Tom Rix8f8bd562009-10-31 12:37:38 -0500326 dev->config.desc.bMaxPower * 2);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100327 if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial))
328 printf(" %s %s %s %s\n", pre, dev->mf, dev->prod, dev->serial);
329 printf(" %s\n", pre);
330 if (dev->maxchild > 0) {
331 for (i = 0; i < dev->maxchild; i++) {
332 if (dev->children[i] != NULL) {
333 usb_show_tree_graph(dev->children[i], pre);
334 pre[index] = 0;
wdenke887afc2002-08-27 09:44:07 +0000335 }
336 }
337 }
338}
339
340/* main routine for the tree command */
341void usb_show_tree(struct usb_device *dev)
342{
343 char preamble[32];
344
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100345 memset(preamble, 0, 32);
346 usb_show_tree_graph(dev, &preamble[0]);
wdenke887afc2002-08-27 09:44:07 +0000347}
348
349
wdenke887afc2002-08-27 09:44:07 +0000350/******************************************************************************
351 * usb boot command intepreter. Derived from diskboot
352 */
353#ifdef CONFIG_USB_STORAGE
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200354int do_usbboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000355{
356 char *boot_device = NULL;
357 char *ep;
Mike Frysinger67d668b2011-06-05 13:43:02 +0000358 int dev, part = 1;
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100359 ulong addr, cnt;
wdenke887afc2002-08-27 09:44:07 +0000360 disk_partition_t info;
361 image_header_t *hdr;
362 block_dev_desc_t *stor_dev;
Marian Balakowicz09475f72008-03-12 10:33:01 +0100363#if defined(CONFIG_FIT)
Marian Balakowicz3bab76a2008-06-06 23:07:40 +0200364 const void *fit_hdr = NULL;
Marian Balakowicz09475f72008-03-12 10:33:01 +0100365#endif
wdenke887afc2002-08-27 09:44:07 +0000366
367 switch (argc) {
368 case 1:
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200369 addr = CONFIG_SYS_LOAD_ADDR;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100370 boot_device = getenv("bootdevice");
wdenke887afc2002-08-27 09:44:07 +0000371 break;
372 case 2:
373 addr = simple_strtoul(argv[1], NULL, 16);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100374 boot_device = getenv("bootdevice");
wdenke887afc2002-08-27 09:44:07 +0000375 break;
376 case 3:
377 addr = simple_strtoul(argv[1], NULL, 16);
378 boot_device = argv[2];
379 break;
380 default:
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200381 return cmd_usage(cmdtp);
wdenke887afc2002-08-27 09:44:07 +0000382 }
383
384 if (!boot_device) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100385 puts("\n** No boot device **\n");
wdenke887afc2002-08-27 09:44:07 +0000386 return 1;
387 }
388
389 dev = simple_strtoul(boot_device, &ep, 16);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100390 stor_dev = usb_stor_get_dev(dev);
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200391 if (stor_dev == NULL || stor_dev->type == DEV_TYPE_UNKNOWN) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100392 printf("\n** Device %d not available\n", dev);
wdenke887afc2002-08-27 09:44:07 +0000393 return 1;
394 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100395 if (stor_dev->block_read == NULL) {
wdenke887afc2002-08-27 09:44:07 +0000396 printf("storage device not initialized. Use usb scan\n");
397 return 1;
398 }
399 if (*ep) {
400 if (*ep != ':') {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100401 puts("\n** Invalid boot device, use `dev[:part]' **\n");
wdenke887afc2002-08-27 09:44:07 +0000402 return 1;
403 }
404 part = simple_strtoul(++ep, NULL, 16);
405 }
406
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100407 if (get_partition_info(stor_dev, part, &info)) {
wdenke887afc2002-08-27 09:44:07 +0000408 /* try to boot raw .... */
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100409 strncpy((char *)&info.type[0], BOOT_PART_TYPE,
410 sizeof(BOOT_PART_TYPE));
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200411 strncpy((char *)&info.name[0], "Raw", 4);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100412 info.start = 0;
413 info.blksz = 0x200;
414 info.size = 2880;
wdenke887afc2002-08-27 09:44:07 +0000415 printf("error reading partinfo...try to boot raw\n");
416 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100417 if ((strncmp((char *)info.type, BOOT_PART_TYPE,
418 sizeof(info.type)) != 0) &&
419 (strncmp((char *)info.type, BOOT_PART_COMP,
420 sizeof(info.type)) != 0)) {
421 printf("\n** Invalid partition type \"%.32s\""
wdenke887afc2002-08-27 09:44:07 +0000422 " (expect \"" BOOT_PART_TYPE "\")\n",
423 info.type);
424 return 1;
425 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100426 printf("\nLoading from USB device %d, partition %d: "
wdenke887afc2002-08-27 09:44:07 +0000427 "Name: %.32s Type: %.32s\n",
428 dev, part, info.name, info.type);
429
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100430 debug("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
wdenke887afc2002-08-27 09:44:07 +0000431 info.start, info.size, info.blksz);
432
433 if (stor_dev->block_read(dev, info.start, 1, (ulong *)addr) != 1) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100434 printf("** Read error on %d:%d\n", dev, part);
wdenke887afc2002-08-27 09:44:07 +0000435 return 1;
436 }
437
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100438 switch (genimg_get_format((void *)addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100439 case IMAGE_FORMAT_LEGACY:
440 hdr = (image_header_t *)addr;
wdenke887afc2002-08-27 09:44:07 +0000441
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100442 if (!image_check_hcrc(hdr)) {
443 puts("\n** Bad Header Checksum **\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100444 return 1;
445 }
446
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100447 image_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100448
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100449 cnt = image_get_image_size(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100450 break;
451#if defined(CONFIG_FIT)
452 case IMAGE_FORMAT_FIT:
Marian Balakowicz09475f72008-03-12 10:33:01 +0100453 fit_hdr = (const void *)addr;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100454 puts("Fit image detected...\n");
Marian Balakowicz09475f72008-03-12 10:33:01 +0100455
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100456 cnt = fit_get_size(fit_hdr);
Marian Balakowicz09475f72008-03-12 10:33:01 +0100457 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100458#endif
459 default:
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100460 puts("** Unknown image type\n");
wdenke887afc2002-08-27 09:44:07 +0000461 return 1;
462 }
463
wdenk1a344f22005-02-03 23:00:49 +0000464 cnt += info.blksz - 1;
465 cnt /= info.blksz;
466 cnt -= 1;
467
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100468 if (stor_dev->block_read(dev, info.start+1, cnt,
wdenke887afc2002-08-27 09:44:07 +0000469 (ulong *)(addr+info.blksz)) != cnt) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100470 printf("\n** Read error on %d:%d\n", dev, part);
wdenke887afc2002-08-27 09:44:07 +0000471 return 1;
472 }
Marian Balakowicz09475f72008-03-12 10:33:01 +0100473
474#if defined(CONFIG_FIT)
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100475 /* This cannot be done earlier, we need complete FIT image in RAM
476 * first
477 */
478 if (genimg_get_format((void *)addr) == IMAGE_FORMAT_FIT) {
479 if (!fit_check_format(fit_hdr)) {
480 puts("** Bad FIT image format\n");
Marian Balakowicz3bab76a2008-06-06 23:07:40 +0200481 return 1;
482 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100483 fit_print_contents(fit_hdr);
Marian Balakowicz3bab76a2008-06-06 23:07:40 +0200484 }
Marian Balakowicz09475f72008-03-12 10:33:01 +0100485#endif
486
wdenke887afc2002-08-27 09:44:07 +0000487 /* Loading ok, update default load address */
488 load_addr = addr;
489
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100490 flush_cache(addr, (cnt+1)*info.blksz);
wdenke887afc2002-08-27 09:44:07 +0000491
Mike Frysinger67d668b2011-06-05 13:43:02 +0000492 return bootm_maybe_autostart(cmdtp, argv[0]);
wdenke887afc2002-08-27 09:44:07 +0000493}
494#endif /* CONFIG_USB_STORAGE */
495
496
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100497/******************************************************************************
wdenke887afc2002-08-27 09:44:07 +0000498 * usb command intepreter
499 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200500int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenke887afc2002-08-27 09:44:07 +0000501{
502
503 int i;
504 struct usb_device *dev = NULL;
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200505 extern char usb_started;
wdenk1968e612005-02-24 23:23:29 +0000506#ifdef CONFIG_USB_STORAGE
wdenke887afc2002-08-27 09:44:07 +0000507 block_dev_desc_t *stor_dev;
wdenk1968e612005-02-24 23:23:29 +0000508#endif
wdenke887afc2002-08-27 09:44:07 +0000509
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200510 if (argc < 2)
511 return cmd_usage(cmdtp);
Serge Ziryukin65d34252010-04-25 21:32:36 +0300512
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200513 if ((strncmp(argv[1], "reset", 5) == 0) ||
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100514 (strncmp(argv[1], "start", 5) == 0)) {
wdenke887afc2002-08-27 09:44:07 +0000515 usb_stop();
516 printf("(Re)start USB...\n");
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200517 i = usb_init();
Simon Glass89d48362011-02-16 11:14:33 -0800518 if (i >= 0) {
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200519#ifdef CONFIG_USB_STORAGE
Simon Glass89d48362011-02-16 11:14:33 -0800520 /* try to recognize storage devices immediately */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200521 usb_stor_curr_dev = usb_stor_scan(1);
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200522#endif
Simon Glass89d48362011-02-16 11:14:33 -0800523#ifdef CONFIG_USB_HOST_ETHER
524 /* try to recognize ethernet devices immediately */
525 usb_ether_curr_dev = usb_host_eth_scan(1);
526#endif
527 }
wdenke887afc2002-08-27 09:44:07 +0000528 return 0;
529 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100530 if (strncmp(argv[1], "stop", 4) == 0) {
wdenke887afc2002-08-27 09:44:07 +0000531#ifdef CONFIG_USB_KEYBOARD
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100532 if (argc == 2) {
533 if (usb_kbd_deregister() != 0) {
534 printf("USB not stopped: usbkbd still"
535 " using USB\n");
wdenke887afc2002-08-27 09:44:07 +0000536 return 1;
537 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100538 } else {
539 /* forced stop, switch console in to serial */
540 console_assign(stdin, "serial");
wdenke887afc2002-08-27 09:44:07 +0000541 usb_kbd_deregister();
542 }
543#endif
544 printf("stopping USB..\n");
545 usb_stop();
546 return 0;
547 }
Bartlomiej Siekae51aae32006-08-03 23:20:13 +0200548 if (!usb_started) {
549 printf("USB is stopped. Please issue 'usb start' first.\n");
550 return 1;
551 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100552 if (strncmp(argv[1], "tree", 4) == 0) {
wdenke887afc2002-08-27 09:44:07 +0000553 printf("\nDevice Tree:\n");
554 usb_show_tree(usb_get_dev_index(0));
555 return 0;
556 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100557 if (strncmp(argv[1], "inf", 3) == 0) {
wdenke887afc2002-08-27 09:44:07 +0000558 int d;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100559 if (argc == 2) {
560 for (d = 0; d < USB_MAX_DEVICE; d++) {
561 dev = usb_get_dev_index(d);
562 if (dev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000563 break;
564 usb_display_desc(dev);
565 usb_display_config(dev);
566 }
567 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100568 } else {
wdenke887afc2002-08-27 09:44:07 +0000569 int d;
570
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100571 i = simple_strtoul(argv[2], NULL, 16);
572 printf("config for device %d\n", i);
573 for (d = 0; d < USB_MAX_DEVICE; d++) {
574 dev = usb_get_dev_index(d);
575 if (dev == NULL)
wdenke887afc2002-08-27 09:44:07 +0000576 break;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100577 if (dev->devnum == i)
wdenke887afc2002-08-27 09:44:07 +0000578 break;
579 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100580 if (dev == NULL) {
Loïc Minier6052cba2011-02-03 22:04:26 +0100581 printf("*** No device available ***\n");
wdenke887afc2002-08-27 09:44:07 +0000582 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100583 } else {
wdenke887afc2002-08-27 09:44:07 +0000584 usb_display_desc(dev);
585 usb_display_config(dev);
586 }
587 }
588 return 0;
589 }
590#ifdef CONFIG_USB_STORAGE
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100591 if (strncmp(argv[1], "stor", 4) == 0)
Aras Vaichasf6b44e02008-03-25 12:09:07 +1100592 return usb_stor_info();
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200593
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100594 if (strncmp(argv[1], "part", 4) == 0) {
Christian Eggersd4b5f3f2008-06-27 19:46:51 +0200595 int devno, ok = 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100596 if (argc == 2) {
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200597 for (devno = 0; ; ++devno) {
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100598 stor_dev = usb_stor_get_dev(devno);
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200599 if (stor_dev == NULL)
600 break;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100601 if (stor_dev->type != DEV_TYPE_UNKNOWN) {
Christian Eggersd4b5f3f2008-06-27 19:46:51 +0200602 ok++;
603 if (devno)
604 printf("\n");
Wolfgang Denk060f2852010-03-25 14:07:23 +0100605 debug("print_part of %x\n", devno);
Christian Eggersd4b5f3f2008-06-27 19:46:51 +0200606 print_part(stor_dev);
607 }
608 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100609 } else {
610 devno = simple_strtoul(argv[2], NULL, 16);
611 stor_dev = usb_stor_get_dev(devno);
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200612 if (stor_dev != NULL &&
613 stor_dev->type != DEV_TYPE_UNKNOWN) {
wdenke887afc2002-08-27 09:44:07 +0000614 ok++;
Wolfgang Denk060f2852010-03-25 14:07:23 +0100615 debug("print_part of %x\n", devno);
wdenke887afc2002-08-27 09:44:07 +0000616 print_part(stor_dev);
617 }
618 }
619 if (!ok) {
620 printf("\nno USB devices available\n");
621 return 1;
622 }
623 return 0;
624 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100625 if (strcmp(argv[1], "read") == 0) {
626 if (usb_stor_curr_dev < 0) {
wdenke887afc2002-08-27 09:44:07 +0000627 printf("no current device selected\n");
628 return 1;
629 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100630 if (argc == 5) {
wdenke887afc2002-08-27 09:44:07 +0000631 unsigned long addr = simple_strtoul(argv[2], NULL, 16);
632 unsigned long blk = simple_strtoul(argv[3], NULL, 16);
633 unsigned long cnt = simple_strtoul(argv[4], NULL, 16);
634 unsigned long n;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100635 printf("\nUSB read: device %d block # %ld, count %ld"
636 " ... ", usb_stor_curr_dev, blk, cnt);
637 stor_dev = usb_stor_get_dev(usb_stor_curr_dev);
638 n = stor_dev->block_read(usb_stor_curr_dev, blk, cnt,
639 (ulong *)addr);
640 printf("%ld blocks read: %s\n", n,
641 (n == cnt) ? "OK" : "ERROR");
642 if (n == cnt)
wdenke887afc2002-08-27 09:44:07 +0000643 return 0;
644 return 1;
645 }
646 }
Mahavir Jain127e1082009-11-03 12:22:10 +0530647 if (strcmp(argv[1], "write") == 0) {
648 if (usb_stor_curr_dev < 0) {
649 printf("no current device selected\n");
650 return 1;
651 }
652 if (argc == 5) {
653 unsigned long addr = simple_strtoul(argv[2], NULL, 16);
654 unsigned long blk = simple_strtoul(argv[3], NULL, 16);
655 unsigned long cnt = simple_strtoul(argv[4], NULL, 16);
656 unsigned long n;
657 printf("\nUSB write: device %d block # %ld, count %ld"
658 " ... ", usb_stor_curr_dev, blk, cnt);
659 stor_dev = usb_stor_get_dev(usb_stor_curr_dev);
660 n = stor_dev->block_write(usb_stor_curr_dev, blk, cnt,
661 (ulong *)addr);
662 printf("%ld blocks write: %s\n", n,
663 (n == cnt) ? "OK" : "ERROR");
664 if (n == cnt)
665 return 0;
666 return 1;
667 }
668 }
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200669 if (strncmp(argv[1], "dev", 3) == 0) {
670 if (argc == 3) {
wdenke887afc2002-08-27 09:44:07 +0000671 int dev = (int)simple_strtoul(argv[2], NULL, 10);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100672 printf("\nUSB device %d: ", dev);
Kim B. Heinoaaad1082010-03-12 15:46:56 +0200673 stor_dev = usb_stor_get_dev(dev);
674 if (stor_dev == NULL) {
wdenke887afc2002-08-27 09:44:07 +0000675 printf("unknown device\n");
676 return 1;
677 }
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100678 printf("\n Device %d: ", dev);
wdenke887afc2002-08-27 09:44:07 +0000679 dev_print(stor_dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100680 if (stor_dev->type == DEV_TYPE_UNKNOWN)
wdenke887afc2002-08-27 09:44:07 +0000681 return 1;
wdenke887afc2002-08-27 09:44:07 +0000682 usb_stor_curr_dev = dev;
683 printf("... is now current device\n");
684 return 0;
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100685 } else {
686 printf("\nUSB device %d: ", usb_stor_curr_dev);
687 stor_dev = usb_stor_get_dev(usb_stor_curr_dev);
wdenke887afc2002-08-27 09:44:07 +0000688 dev_print(stor_dev);
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100689 if (stor_dev->type == DEV_TYPE_UNKNOWN)
wdenke887afc2002-08-27 09:44:07 +0000690 return 1;
wdenke887afc2002-08-27 09:44:07 +0000691 return 0;
692 }
693 return 0;
694 }
695#endif /* CONFIG_USB_STORAGE */
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200696 return cmd_usage(cmdtp);
wdenke887afc2002-08-27 09:44:07 +0000697}
698
wdenk8bde7f72003-06-27 21:31:46 +0000699#ifdef CONFIG_USB_STORAGE
wdenk0d498392003-07-01 21:06:45 +0000700U_BOOT_CMD(
701 usb, 5, 1, do_usb,
Peter Tyser2fb26042009-01-27 18:03:12 -0600702 "USB sub-system",
wdenk8bde7f72003-06-27 21:31:46 +0000703 "reset - reset (rescan) USB controller\n"
wdenk5cf91d62004-04-23 20:32:05 +0000704 "usb stop [f] - stop USB [f]=force stop\n"
705 "usb tree - show USB device tree\n"
706 "usb info [dev] - show available USB devices\n"
Wolfgang Denk9c998aa2005-07-21 11:57:57 +0200707 "usb storage - show details of USB storage devices\n"
wdenk342717f2005-06-27 13:30:03 +0000708 "usb dev [dev] - show or set current USB storage device\n"
Michael Trimarchide39f8c2008-11-26 17:41:34 +0100709 "usb part [dev] - print partition table of one or all USB storage"
710 " devices\n"
wdenk5cf91d62004-04-23 20:32:05 +0000711 "usb read addr blk# cnt - read `cnt' blocks starting at block `blk#'\n"
Sergei Poselenov842404e2010-08-09 16:01:42 +0400712 " to memory address `addr'\n"
Mahavir Jain127e1082009-11-03 12:22:10 +0530713 "usb write addr blk# cnt - write `cnt' blocks starting at block `blk#'\n"
714 " from memory address `addr'"
wdenk8bde7f72003-06-27 21:31:46 +0000715);
716
717
wdenk0d498392003-07-01 21:06:45 +0000718U_BOOT_CMD(
719 usbboot, 3, 1, do_usbboot,
Peter Tyser2fb26042009-01-27 18:03:12 -0600720 "boot from USB device",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200721 "loadAddr dev:part"
wdenk8bde7f72003-06-27 21:31:46 +0000722);
723
724#else
wdenk0d498392003-07-01 21:06:45 +0000725U_BOOT_CMD(
726 usb, 5, 1, do_usb,
Peter Tyser2fb26042009-01-27 18:03:12 -0600727 "USB sub-system",
wdenk8bde7f72003-06-27 21:31:46 +0000728 "reset - reset (rescan) USB controller\n"
729 "usb tree - show USB device tree\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200730 "usb info [dev] - show available USB devices"
wdenk8bde7f72003-06-27 21:31:46 +0000731);
732#endif